Booking Calendar - Version 8.6

Version Description

  • Changes in all versions:
    • New. Updated new interface of Calendar Overview in admin panel and Timeline at front-end side with new clean, flex design.
    • New. Timeline & Calendar Overview - mobile friendly look.
    • New. Timeline & Calendar Overview - nicely showing several bookings for the same date(s) (dividing day into several rows). For example during bookings for specific times, while showing Month Timeline view.
    • New. Timeline & Calendar Overview - very handy hints for each day of booking, when mouse over specific booking day.
    • New. Timeline & Calendar Overview - aggregated booking details title marked with different color for easy finding and checking how many bookings in specific date(s).
    • New. Timeline & Calendar Overview - ability to restore old Timeline look at Booking > Settings General page in Timeline section.
    • New. Settings section "Calendar Overview | Timeline" at Booking > Settings General page (8.5.2.20)
    • New. Button "Empty Trash" at Booking Listing page in Action toolbar to completely delete All bookings from Trash (8.5.2.24)
    • Translation. French translation [100% completed] by Philippe Nowak and Alain Pruvost
    • Translation. Hungarian translation [99% completed] by Vincze Istvn
    • Improvement More clean colors for booking details at the Booking Listing page (8.5.2.5)
    • Improvement Added [add_to_google_cal_url] - shortcode in "Approved booking" email template for fast manual adding of booking to Google Calendar (8.5.2.13)
    • Fix. Issue of blocking entire day, if in booking form was used start time and end or duration of time fields and visitor use multiple days selection mode, and all start time options for specific day was booked. In multiple day selection mode its incorrect, because user can start days selection at available day, and finish selection with end time at this partially booked day, where no available start-time. Now system block such dates only during single day selection mode. (8.5.2.4)
    • Fix. Disable send button, after submit booking, for prevent of several same bookings (8.5.2.7)
    • Fix. Issue of not showing bookings that start from 'yesterday' date at Booking Listing page, when selecting 'Current dates' in Filter toolbar. (8.5.2.14)
    • Fix. Issue of not showing bookings that start from 'today' date at Booking Listing page, when selecting 'Past dates' in Filter toolbar. (8.5.2.16)
    • Under Hub. Added useful hook for Auto approve bookings only for specific booking resources: apply_filters( 'wpbc_get_booking_resources_arr_to_auto_approve', $booking_resources_to_approve );. Add code similar to this in your functions.php file in your theme, or in some other php file: function my_wpbc_get_booking_resources_arr_to_auto_approve( $resources_to_approve ) { $resources_to_approve
Download this release

Release Info

Developer wpdevelop
Plugin Icon 128x128 Booking Calendar
Version 8.6
Comparing to
See all releases

Code changes from version 8.5.1.2 to 8.6

Files changed (69) hide show
  1. core/admin/api-settings.php +18 -4
  2. core/admin/page-bookings.php +4 -2
  3. core/admin/page-email-approved.php +6 -6
  4. core/admin/page-form-free.php +18 -1
  5. core/admin/page-ics-general.php +9 -0
  6. core/admin/page-settings.php +15 -1
  7. core/admin/page-timeline.php +21 -7
  8. core/admin/wpbc-sql.php +41 -25
  9. core/admin/wpbc-toolbars.php +61 -12
  10. core/any/admin-bs-ui.php +9 -9
  11. core/any/api-emails.php +8 -2
  12. core/any/css/admin-listing-table.css +7 -10
  13. core/class/wpbc-class-welcome.php +185 -93
  14. core/lib/wpbc-ajax.php +87 -0
  15. core/lib/wpbc-booking-new.php +55 -1
  16. core/lib/wpbc_all_translations.php +27 -5
  17. core/lib/wpdev-booking-class.php +10 -2
  18. core/timeline/flex-timeline.php +30 -0
  19. core/timeline/v2/_out/timeline_v2.js +38 -0
  20. core/timeline/v2/_out/timeline_v2.min.js +2 -0
  21. core/timeline/v2/_src/timeline_v2.js +40 -0
  22. core/timeline/v2/css/timeline_skin_v2.css +300 -0
  23. core/timeline/v2/css/timeline_v2.css +608 -0
  24. core/timeline/v2/wpbc-class-timeline_v2.php +3049 -0
  25. core/wpbc-activation.php +8 -2
  26. core/wpbc-constants.php +1 -1
  27. core/wpbc-css.php +8 -3
  28. core/wpbc-dates.php +1 -1
  29. core/wpbc-functions.php +1 -1
  30. core/wpbc-include.php +9 -1
  31. core/wpbc-js.php +3 -5
  32. css/admin-skin.css +5 -5
  33. js/admin.js +94 -11
  34. js/client.js +66 -32
  35. js/wpbc_times.js +1 -1
  36. languages/booking-ar_SA.mo +0 -0
  37. languages/booking-be_BY.mo +0 -0
  38. languages/booking-bg_BG.mo +0 -0
  39. languages/booking-ca.mo +0 -0
  40. languages/booking-cs_CZ.mo +0 -0
  41. languages/booking-da_DK.mo +0 -0
  42. languages/booking-de_DE.mo +0 -0
  43. languages/booking-el.mo +0 -0
  44. languages/booking-es_ES.mo +0 -0
  45. languages/booking-fi.mo +0 -0
  46. languages/booking-fr_FR.mo +0 -0
  47. languages/booking-gl_ES.mo +0 -0
  48. languages/booking-he_IL.mo +0 -0
  49. languages/booking-hr.mo +0 -0
  50. languages/booking-hu_HU.mo +0 -0
  51. languages/booking-it_IT.mo +0 -0
  52. languages/booking-nb_NO.mo +0 -0
  53. languages/booking-nl_NL.mo +0 -0
  54. languages/booking-pl_PL.mo +0 -0
  55. languages/booking-pt_BR.mo +0 -0
  56. languages/booking-pt_PT.mo +0 -0
  57. languages/booking-ro_RO.mo +0 -0
  58. languages/booking-ru_RU.mo +0 -0
  59. languages/booking-sk_SK.mo +0 -0
  60. languages/booking-sl_SI.mo +0 -0
  61. languages/booking-sv_SE.mo +0 -0
  62. languages/booking-th_TH.mo +0 -0
  63. languages/booking-tr_TR.mo +0 -0
  64. languages/booking-uk_UK.mo +0 -0
  65. languages/booking-zh_CN.mo +0 -0
  66. languages/booking-zh_TW.mo +0 -0
  67. languages/booking.pot +2253 -2083
  68. readme.txt +71 -31
  69. wpdev-booking.php +58 -58
core/admin/api-settings.php CHANGED
@@ -606,7 +606,20 @@ class WPBC_Settings_API_General extends WPBC_Settings_API {
606
 
607
  // Divider ///////////////////////////////////////////////////////////
608
  $this->fields['hr_booking_listing_before_view_days_num'] = array( 'type' => 'hr', 'group' => 'booking_listing' );
609
-
 
 
 
 
 
 
 
 
 
 
 
 
 
610
  // Calendar Default View mode
611
  if ( class_exists( 'wpdev_bk_personal' ) )
612
  $field_options = array(
@@ -629,7 +642,7 @@ class WPBC_Settings_API_General extends WPBC_Settings_API {
629
  , 'title' => __('Default calendar view mode', 'booking')
630
  , 'description' => __('Select your default calendar view mode at booking calendar overview page' ,'booking')
631
  , 'options' => $field_options
632
- , 'group' => 'booking_listing'
633
  );
634
 
635
  //Default Titles in Calendar cells
@@ -1094,9 +1107,10 @@ class WPBC_Settings_API_General extends WPBC_Settings_API {
1094
  $this->fields['help_translation_section_after_legend_items']['value'][] =
1095
  '<div class="clear"></div><hr/><center><a class="button button" href="'
1096
  . wpbc_get_bookings_url()
1097
- . '&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">'
 
1098
  . 'Find Lost Bookings'
1099
- . '</a></center>';
1100
  }
1101
  if ( 0 ) { // ! wpbc_is_this_demo() ) {
1102
 
606
 
607
  // Divider ///////////////////////////////////////////////////////////
608
  $this->fields['hr_booking_listing_before_view_days_num'] = array( 'type' => 'hr', 'group' => 'booking_listing' );
609
+
610
+
611
+ $this->fields['booking_timeline_load'] = array(
612
+ 'type' => 'select'
613
+ , 'default' => $default_options_values['booking_view_days_num'] //'30'
614
+ , 'title' => __('Timeline type', 'booking')
615
+ , 'description' => __('Select type of timeline to load' ,'booking')
616
+ , 'options' => array(
617
+ 'timeline_v2_flex' => __( 'Flex Timeline', 'booking' )
618
+ , 'timeline_v1' => __( 'Old Timeline', 'booking' )
619
+ )
620
+ , 'group' => 'booking_timeline' //FixIn: 8.5.2.20
621
+ );
622
+
623
  // Calendar Default View mode
624
  if ( class_exists( 'wpdev_bk_personal' ) )
625
  $field_options = array(
642
  , 'title' => __('Default calendar view mode', 'booking')
643
  , 'description' => __('Select your default calendar view mode at booking calendar overview page' ,'booking')
644
  , 'options' => $field_options
645
+ , 'group' => 'booking_timeline' //FixIn: 8.5.2.20
646
  );
647
 
648
  //Default Titles in Calendar cells
1107
  $this->fields['help_translation_section_after_legend_items']['value'][] =
1108
  '<div class="clear"></div><hr/><center><a class="button button" href="'
1109
  . wpbc_get_bookings_url()
1110
+ . '&wh_booking_type=lost">'
1111
+ //. '&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">'
1112
  . 'Find Lost Bookings'
1113
+ . '</a></center>'; //FixIn: 8.5.2.19
1114
  }
1115
  if ( 0 ) { // ! wpbc_is_this_demo() ) {
1116
 
core/admin/page-bookings.php CHANGED
@@ -81,7 +81,9 @@ class WPBC_Page_Bookings extends WPBC_Page_Structure {
81
  wpbc_js_for_bookings_page(); // JavaScript functions
82
 
83
  wpbc_welcome_panel(); // Welcome Panel (links)
84
-
 
 
85
  /* Executed in \core\admin\page-bookings.php on hook wpbc_define_nav_tabs
86
  *
87
  * Get saved filters set, (if its not set in request yet). Like "tab" & "view_mode" and set to $_REQUEST
@@ -91,7 +93,7 @@ class WPBC_Page_Bookings extends WPBC_Page_Structure {
91
  //wpbc_set_default_saved_params_to_request_for_booking_listing( 'default' );
92
 
93
  make_bk_action( 'wpbc_check_request_param__wh_booking_type' ); // Setting $_REQUEST['wh_booking_type'] - remove empty and duplicates ID of booking resources in this list
94
-
95
  make_bk_action( 'check_for_resources_of_notsuperadmin_in_booking_listing' ); // If "Regular User", then filter resources in $_REQUEST['wh_booking_type'] to show only resources of this user
96
 
97
 
81
  wpbc_js_for_bookings_page(); // JavaScript functions
82
 
83
  wpbc_welcome_panel(); // Welcome Panel (links)
84
+
85
+
86
+
87
  /* Executed in \core\admin\page-bookings.php on hook wpbc_define_nav_tabs
88
  *
89
  * Get saved filters set, (if its not set in request yet). Like "tab" & "view_mode" and set to $_REQUEST
93
  //wpbc_set_default_saved_params_to_request_for_booking_listing( 'default' );
94
 
95
  make_bk_action( 'wpbc_check_request_param__wh_booking_type' ); // Setting $_REQUEST['wh_booking_type'] - remove empty and duplicates ID of booking resources in this list
96
+
97
  make_bk_action( 'check_for_resources_of_notsuperadmin_in_booking_listing' ); // If "Regular User", then filter resources in $_REQUEST['wh_booking_type'] to show only resources of this user
98
 
99
 
core/admin/page-email-approved.php CHANGED
@@ -1042,12 +1042,12 @@ function wpbc__get_replace_shortcodes__email_approved( $booking_id, $bktype, $fo
1042
  $replace[ 'visitorbookingpayurl' ] = apply_bk_filter( 'wpdev_booking_set_booking_edit_link_at_email', '[visitorbookingpayurl]', $booking_id );
1043
  $replace[ 'bookinghash' ] = apply_bk_filter( 'wpdev_booking_set_booking_edit_link_at_email', '[bookinghash]', $booking_id );
1044
 
1045
- // //FixIn: 7.1.2.5
1046
- // $booking_data = array( 'form_data' => $booking_form_show_array );
1047
- // $booking_data[ 'dates_short' ] = array( $my_dates4emeil_check_in_out[ 0 ], '-', $my_dates4emeil_check_in_out[ count( $my_dates4emeil_check_in_out ) - 1 ] );
1048
- // $replace[ 'add_to_google_cal_url' ] = htmlspecialchars_decode( esc_url(
1049
- // wpbc_btn_add_booking_to_google_calendar( $booking_data , array( 'is_only_url' => true ), false )
1050
- // ) );
1051
 
1052
  ////////////////////////////////////////////////////////////////////////////
1053
  // Get additional replace paramaters to the email shortcodes
1042
  $replace[ 'visitorbookingpayurl' ] = apply_bk_filter( 'wpdev_booking_set_booking_edit_link_at_email', '[visitorbookingpayurl]', $booking_id );
1043
  $replace[ 'bookinghash' ] = apply_bk_filter( 'wpdev_booking_set_booking_edit_link_at_email', '[bookinghash]', $booking_id );
1044
 
1045
+ //FixIn: 7.1.2.5 8.5.2.13
1046
+ $booking_data = array( 'form_data' => $booking_form_show_array );
1047
+ $booking_data[ 'dates_short' ] = array( $my_dates4emeil_check_in_out[ 0 ], '-', $my_dates4emeil_check_in_out[ count( $my_dates4emeil_check_in_out ) - 1 ] );
1048
+ $replace[ 'add_to_google_cal_url' ] = htmlspecialchars_decode( esc_url(
1049
+ wpbc_btn_add_booking_to_google_calendar( $booking_data , array( 'is_only_url' => true ), false )
1050
+ ) );
1051
 
1052
  ////////////////////////////////////////////////////////////////////////////
1053
  // Get additional replace paramaters to the email shortcodes
core/admin/page-form-free.php CHANGED
@@ -175,7 +175,24 @@ class WPBC_Page_SettingsFormFieldsFree extends WPBC_Page_Structure {
175
  </span>
176
  <?php
177
 
178
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
179
  ////////////////////////////////////////////////////////////////////////
180
  // Content ////////////////////////////////////////////////////////////
181
  ?>
175
  </span>
176
  <?php
177
 
178
+ ?><span class="wpdevelop">
179
+ <?php $my_close_open_alert_id = 'bk_alert_timessettings_form_in_free'; ?>
180
+ <div class="alert alert-block alert-info <?php if ( '1' == get_user_option( 'booking_win_' . $my_close_open_alert_id ) ) echo 'hide'; ?>"
181
+ id="<?php echo $my_close_open_alert_id; ?>"
182
+ style="line-height: 1.7em; color: #3a87ad; background: #d9edf7 ; text-shadow:0 1px 0 #f5f5f5;margin:0;">
183
+ <a data-original-title="Don't show the message anymore"
184
+ class="close tooltip_left"
185
+ style="margin-top:0px;" rel="tooltip" data-dismiss="alert"
186
+ href="javascript:void(0)"
187
+ onclick="javascript:wpbc_verify_window_opening(<?php echo get_bk_current_user_id(); ?>, '<?php echo $my_close_open_alert_id; ?>');"
188
+ >&times;</a>
189
+ <strong class="alert-heading"><?php _e( 'Note', 'booking' ); ?>!</strong>
190
+ <?php printf( __( 'You can add %sTime Slots%s to booking form, by activating and configure %sTime Slots%s field in booking form (below) or by adding this field from (above) toolbar.', 'booking' ),
191
+ '<strong>', '</strong>',
192
+ '<strong>', '</strong>'
193
+ ); ?>
194
+ </div>
195
+ </span><?php
196
  ////////////////////////////////////////////////////////////////////////
197
  // Content ////////////////////////////////////////////////////////////
198
  ?>
core/admin/page-ics-general.php CHANGED
@@ -181,6 +181,15 @@ class WPBC_API_SettingsGeneralSync extends WPBC_Settings_API {
181
  , 'description' => ''
182
  , 'group' => 'import_advanced'
183
  );
 
 
 
 
 
 
 
 
 
184
  }
185
 
186
  //FixIn: 8.5.1.1
181
  , 'description' => ''
182
  , 'group' => 'import_advanced'
183
  );
184
+ //FixIn: 8.5.2.3
185
+ $this->fields['booking_is_ics_export_only_approved'] = array(
186
+ 'type' => 'checkbox'
187
+ , 'default' => 'Off'
188
+ , 'title' => __('Export only approved bookings', 'booking')
189
+ , 'label' => __('Enable of export only approved bookings in .ics feeds' ,'booking')
190
+ , 'description' => ''
191
+ , 'group' => 'import_advanced'
192
+ );
193
  }
194
 
195
  //FixIn: 8.5.1.1
core/admin/page-settings.php CHANGED
@@ -104,6 +104,11 @@ class WPBC_Page_SettingsGeneral extends WPBC_Page_Structure {
104
  , 'show_section' => 'wpbc_general_settings_booking_listing_metabox'
105
  );
106
 
 
 
 
 
 
107
  if ( class_exists('wpdev_bk_biz_s') ) {
108
 
109
 
@@ -221,7 +226,16 @@ class WPBC_Page_SettingsGeneral extends WPBC_Page_Structure {
221
  <?php $this->settings_api()->show( 'booking_listing' ); ?>
222
 
223
  <?php wpbc_close_meta_box_section(); ?>
224
-
 
 
 
 
 
 
 
 
 
225
 
226
  <?php if ( class_exists('wpdev_bk_biz_s') ) { ?>
227
 
104
  , 'show_section' => 'wpbc_general_settings_booking_listing_metabox'
105
  );
106
 
107
+ $subtabs['wpbc-settings-booking-timeline'] = array( 'type' => 'goto-link'
108
+ , 'title' => __('Timeline', 'booking')
109
+ , 'show_section' => 'wpbc_general_settings_booking_timeline_metabox'
110
+ );
111
+
112
  if ( class_exists('wpdev_bk_biz_s') ) {
113
 
114
 
226
  <?php $this->settings_api()->show( 'booking_listing' ); ?>
227
 
228
  <?php wpbc_close_meta_box_section(); ?>
229
+
230
+
231
+ <?php wpbc_open_meta_box_section( 'wpbc_general_settings_booking_timeline', __('Calendar Overview', 'booking') . ' | ' . __('Timeline', 'booking') ); ?>
232
+
233
+ <?php //FixIn: 8.5.2.20
234
+ $this->settings_api()->show( 'booking_timeline' );
235
+ ?>
236
+
237
+ <?php wpbc_close_meta_box_section(); ?>
238
+
239
 
240
  <?php if ( class_exists('wpdev_bk_biz_s') ) { ?>
241
 
core/admin/page-timeline.php CHANGED
@@ -52,7 +52,7 @@ class WPBC_Page_CalendarOverview extends WPBC_Page_Structure {
52
  , 'font_icon' => 'glyphon glyphicon-calendar' // CSS definition of forn Icon
53
  , 'default' => false // Is this tab activated by default or not: true || false.
54
  , 'disabled' => false // Is this tab disbaled: true || false.
55
- , 'hided' => true // Is this tab hided: true || false.
56
  , 'subtabs' => array()
57
 
58
  );
@@ -102,12 +102,26 @@ class WPBC_Page_CalendarOverview extends WPBC_Page_Structure {
102
  ?><div class="clear" style="height:40px;"></div><?php
103
 
104
  // Show T i m e L i n e ///////////////////////////////////////
105
-
106
- $this->timeline = new WPBC_Timeline();
107
-
108
- $this->timeline->admin_init(); // Define all REQUEST parameters and get bookings
109
-
110
- $this->timeline->show_timeline();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
111
 
112
  ////////////////////////////////////////////////////////////////////
113
 
52
  , 'font_icon' => 'glyphon glyphicon-calendar' // CSS definition of forn Icon
53
  , 'default' => false // Is this tab activated by default or not: true || false.
54
  , 'disabled' => false // Is this tab disbaled: true || false.
55
+ , 'hided' => true // Is this tab hided: true || false.
56
  , 'subtabs' => array()
57
 
58
  );
102
  ?><div class="clear" style="height:40px;"></div><?php
103
 
104
  // Show T i m e L i n e ///////////////////////////////////////
105
+
106
+ //FixIn: 8.5.2.20
107
+ $booking_timeline_load = get_bk_option( 'booking_timeline_load' );
108
+
109
+ if ( 'timeline_v1' == $booking_timeline_load ){
110
+
111
+ $this->timeline = new WPBC_Timeline();
112
+
113
+ $this->timeline->admin_init(); // Define all REQUEST parameters and get bookings
114
+
115
+ $this->timeline->show_timeline();
116
+
117
+ } else {
118
+
119
+ $this->timeline = new WPBC_TimelineFlex();
120
+
121
+ $this->timeline->admin_init(); // Define all REQUEST parameters and get bookings
122
+
123
+ $this->timeline->show_timeline();
124
+ }
125
 
126
  ////////////////////////////////////////////////////////////////////
127
 
core/admin/wpbc-sql.php CHANGED
@@ -28,8 +28,8 @@ function wpbc_get_default_saved_view_mode_for_wpbc_page() {
28
  $booking_default_view_mode = get_bk_option( 'booking_listing_default_view_mode' );
29
  else
30
  $booking_default_view_mode = $_REQUEST['view_mode'];
31
-
32
- if ( ! in_array( $booking_default_view_mode, array('vm_calendar' , 'vm_listing')))
33
  $booking_default_view_mode = 'vm_listing';
34
 
35
  return $booking_default_view_mode; // 'vm_calendar' / 'vm_listing' ;
@@ -129,7 +129,11 @@ function wpbc_check_request_paramters() {
129
  $clean_params = array();
130
 
131
  $clean_params['wh_booking_id'] = 'digit_or_csd';
132
- $clean_params['wh_booking_type'] = 'digit_or_csd';
 
 
 
 
133
  $clean_params['wh_approved'] = 'digit_or_csd'; // '0' | '1' | ''
134
 
135
  $clean_params['wh_booking_date'] = 'digit_or_date'; // number | date 2016-07-20
@@ -661,7 +665,6 @@ function wpbc_get_bookings_objects( $args ){
661
  // Initial variables //////////////////////////////////////////////////////
662
 
663
  $sql_boking_listing = wpbc_get_sql_for_booking_listing( $args );
664
-
665
  $sql_start_count = $sql_boking_listing[ 'sql_start_count' ];
666
  $sql_start_select = $sql_boking_listing[ 'sql_start_select' ];
667
  $sql = $sql_boking_listing[ 'sql' ];
@@ -696,11 +699,11 @@ function wpbc_get_bookings_objects( $args ){
696
  extract( $r, EXTR_SKIP );
697
 
698
  $page_start = ( $page_num - 1 ) * $page_items_count;
699
-
700
  //debuge( $sql_start_select . $sql . $sql_where . $sql_order . $sql_limit );
701
 
702
  ////////////////////////////////////////////////////////////////////////////
703
-
704
 
705
  $bookings_res = $wpdb->get_results( $sql_start_select . $sql . $sql_where . $sql_order . $sql_limit ); // Get Bookings
706
 
@@ -926,7 +929,7 @@ function wpbc_get_bookings_objects( $args ){
926
  * @return array - Get array with SQL for getting bookings
927
  */
928
  function wpbc_get_sql_for_booking_listing( $args ){
929
-
930
  global $wpdb;
931
 
932
  $num_per_page_check = get_bk_option( 'booking_num_per_page' );
@@ -988,28 +991,38 @@ function wpbc_get_sql_for_booking_listing( $args ){
988
  " EXISTS (
989
  SELECT *
990
  FROM {$wpdb->prefix}bookingdates as dt
991
- WHERE bk.booking_id = dt.booking_id ";
992
- if ( $wh_approved !== '' )
993
- $sql_where.= " AND approved = $wh_approved "; // Approved or Pending
994
 
995
- $sql_where .= wpbc_set_sql_where_for_dates( $wh_booking_date, $wh_booking_date2 );
996
 
997
- $sql_where.= " ) ";
 
 
998
 
999
- $sql_where .= " {$trash_bookings} "; //FixIn: 6.1.1.10
1000
-
1001
- if ( $wh_is_new !== '' )
1002
- $sql_where .= " AND bk.is_new = " . $wh_is_new . " ";
1003
 
1004
- $sql_where .= apply_bk_filter( 'get_bklist_sql_keyword', '', $wh_keyword ); // P
 
1005
 
1006
- $sql_where .= wpbc_set_sql_where_for_modification_date( $wh_modification_date, $wh_modification_date2 );
1007
 
1008
- $sql_where .= apply_bk_filter( 'get_bklist_sql_paystatus', '', $wh_pay_status ); // BS
1009
- $sql_where .= apply_bk_filter( 'get_bklist_sql_cost', '', $wh_cost, $wh_cost2 ); // BS
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1010
 
1011
- $sql_where .= apply_bk_filter( 'get_bklist_sql_resources', '', $wh_booking_type, $wh_approved, $wh_booking_date, $wh_booking_date2 ); // P || BL
1012
-
1013
  } else {
1014
 
1015
  if ( strpos( $wh_booking_id, ',' ) !== false ) $sql_where = " WHERE bk.booking_id IN (" . $wh_booking_id . ") ";
@@ -1029,7 +1042,7 @@ function wpbc_get_sql_for_booking_listing( $args ){
1029
 
1030
  $sql_limit = $wpdb->prepare( " LIMIT %d, %d ", $page_start, $page_items_count );
1031
 
1032
- return array(
1033
  'sql_start_count' => $sql_start_count
1034
  , 'sql_start_select' => $sql_start_select
1035
  , 'sql' => $sql
@@ -1037,6 +1050,9 @@ function wpbc_get_sql_for_booking_listing( $args ){
1037
  , 'order' => $sql_order
1038
  , 'limit' => $sql_limit
1039
  );
 
 
 
1040
  }
1041
 
1042
 
@@ -1060,7 +1076,7 @@ function wpbc_set_sql_where_for_dates( $wh_booking_date, $wh_booking_date2, $pre
1060
 
1061
  // Actual
1062
  if ( ( ( $wh_booking_date === '' ) && ( $wh_booking_date2 === '' ) ) || ($wh_booking_date === '0') ) {
1063
- $sql_where = $and_pre."( ".$pref."booking_date >= ( CURDATE() - INTERVAL 1 DAY ) ) ".$and_suf ;
1064
 
1065
  } else if ($wh_booking_date === '1') { // Today //FixIn: 7.1.2.8
1066
  $sql_where = $and_pre."( ".$pref."booking_date <= ( CURDATE() + INTERVAL '23:59:59' HOUR_SECOND ) ) ".$and_suf ;
@@ -1068,7 +1084,7 @@ function wpbc_set_sql_where_for_dates( $wh_booking_date, $wh_booking_date2, $pre
1068
 
1069
 
1070
  } else if ($wh_booking_date === '2') { // Previous
1071
- $sql_where = $and_pre."( ".$pref."booking_date <= ( CURDATE() + INTERVAL 1 DAY ) ) ".$and_suf ;
1072
 
1073
  } else if ($wh_booking_date === '3') { // All
1074
  $sql_where = '';
28
  $booking_default_view_mode = get_bk_option( 'booking_listing_default_view_mode' );
29
  else
30
  $booking_default_view_mode = $_REQUEST['view_mode'];
31
+
32
+ if ( ! in_array( $booking_default_view_mode, array( 'vm_calendar', 'vm_listing' ) ) )
33
  $booking_default_view_mode = 'vm_listing';
34
 
35
  return $booking_default_view_mode; // 'vm_calendar' / 'vm_listing' ;
129
  $clean_params = array();
130
 
131
  $clean_params['wh_booking_id'] = 'digit_or_csd';
132
+ if ( ( ! empty( $_REQUEST['wh_booking_type'] ) ) && ( 'lost' == $_REQUEST['wh_booking_type'] ) ) { //FixIn: 8.5.2.19
133
+ $clean_params['wh_booking_type'] = 'checked_skip_it';
134
+ } else {
135
+ $clean_params['wh_booking_type'] = 'digit_or_csd';
136
+ }
137
  $clean_params['wh_approved'] = 'digit_or_csd'; // '0' | '1' | ''
138
 
139
  $clean_params['wh_booking_date'] = 'digit_or_date'; // number | date 2016-07-20
665
  // Initial variables //////////////////////////////////////////////////////
666
 
667
  $sql_boking_listing = wpbc_get_sql_for_booking_listing( $args );
 
668
  $sql_start_count = $sql_boking_listing[ 'sql_start_count' ];
669
  $sql_start_select = $sql_boking_listing[ 'sql_start_select' ];
670
  $sql = $sql_boking_listing[ 'sql' ];
699
  extract( $r, EXTR_SKIP );
700
 
701
  $page_start = ( $page_num - 1 ) * $page_items_count;
702
+
703
  //debuge( $sql_start_select . $sql . $sql_where . $sql_order . $sql_limit );
704
 
705
  ////////////////////////////////////////////////////////////////////////////
706
+
707
 
708
  $bookings_res = $wpdb->get_results( $sql_start_select . $sql . $sql_where . $sql_order . $sql_limit ); // Get Bookings
709
 
929
  * @return array - Get array with SQL for getting bookings
930
  */
931
  function wpbc_get_sql_for_booking_listing( $args ){
932
+
933
  global $wpdb;
934
 
935
  $num_per_page_check = get_bk_option( 'booking_num_per_page' );
991
  " EXISTS (
992
  SELECT *
993
  FROM {$wpdb->prefix}bookingdates as dt
994
+ WHERE bk.booking_id = dt.booking_id ";
 
 
995
 
996
+ if ( 'lost' == $wh_booking_type ) { //FixIn: 8.5.2.19
997
 
998
+ $sql_where.= " AND bk.booking_type NOT IN ( SELECT DISTINCT booking_type_id FROM {$wpdb->prefix}bookingtypes ) ";
999
+ $sql_where.= " ) ";
1000
+ $wh_booking_type = '';
1001
 
1002
+ } else {
 
 
 
1003
 
1004
+ if ( $wh_approved !== '' )
1005
+ $sql_where.= " AND approved = $wh_approved "; // Approved or Pending
1006
 
1007
+ $sql_where .= wpbc_set_sql_where_for_dates( $wh_booking_date, $wh_booking_date2 );
1008
 
1009
+ $sql_where.= " ) ";
1010
+
1011
+ $sql_where .= " {$trash_bookings} "; //FixIn: 6.1.1.10
1012
+
1013
+ if ( $wh_is_new !== '' )
1014
+ $sql_where .= " AND bk.is_new = " . $wh_is_new . " ";
1015
+
1016
+ $sql_where .= apply_bk_filter( 'get_bklist_sql_keyword', '', $wh_keyword ); // P
1017
+
1018
+ $sql_where .= wpbc_set_sql_where_for_modification_date( $wh_modification_date, $wh_modification_date2 );
1019
+
1020
+ $sql_where .= apply_bk_filter( 'get_bklist_sql_paystatus', '', $wh_pay_status ); // BS
1021
+ $sql_where .= apply_bk_filter( 'get_bklist_sql_cost', '', $wh_cost, $wh_cost2 ); // BS
1022
+
1023
+ $sql_where .= apply_bk_filter( 'get_bklist_sql_resources', '', $wh_booking_type, $wh_approved, $wh_booking_date, $wh_booking_date2 ); // P || BL
1024
+ }
1025
 
 
 
1026
  } else {
1027
 
1028
  if ( strpos( $wh_booking_id, ',' ) !== false ) $sql_where = " WHERE bk.booking_id IN (" . $wh_booking_id . ") ";
1042
 
1043
  $sql_limit = $wpdb->prepare( " LIMIT %d, %d ", $page_start, $page_items_count );
1044
 
1045
+ $return_res = array(
1046
  'sql_start_count' => $sql_start_count
1047
  , 'sql_start_select' => $sql_start_select
1048
  , 'sql' => $sql
1050
  , 'order' => $sql_order
1051
  , 'limit' => $sql_limit
1052
  );
1053
+
1054
+ //debuge($return_res);
1055
+ return $return_res;
1056
  }
1057
 
1058
 
1076
 
1077
  // Actual
1078
  if ( ( ( $wh_booking_date === '' ) && ( $wh_booking_date2 === '' ) ) || ($wh_booking_date === '0') ) {
1079
+ $sql_where = $and_pre."( ".$pref."booking_date >= ( CURDATE() - INTERVAL '00:00:01' HOUR_SECOND ) ) ".$and_suf ; //FixIn: 8.5.2.14
1080
 
1081
  } else if ($wh_booking_date === '1') { // Today //FixIn: 7.1.2.8
1082
  $sql_where = $and_pre."( ".$pref."booking_date <= ( CURDATE() + INTERVAL '23:59:59' HOUR_SECOND ) ) ".$and_suf ;
1084
 
1085
 
1086
  } else if ($wh_booking_date === '2') { // Previous
1087
+ $sql_where = $and_pre."( ".$pref."booking_date <= ( CURDATE() - INTERVAL '00:00:01' HOUR_SECOND ) ) ".$and_suf ; //FixIn: 8.5.2.16
1088
 
1089
  } else if ($wh_booking_date === '3') { // All
1090
  $sql_where = '';
core/admin/wpbc-toolbars.php CHANGED
@@ -102,6 +102,8 @@ function wpbc_bookings_toolbar() {
102
 
103
  if ( function_exists( 'wpbc_filter_text_keyword' ) ) wpbc_filter_text_keyword();
104
 
 
 
105
  ?></span><?php
106
 
107
  make_bk_action( 'wpbc_br_selection_for_listing' );
@@ -135,6 +137,8 @@ function wpbc_bookings_toolbar() {
135
  make_bk_action('wpbc_extend_buttons_in_action_toolbar_booking_listing' );
136
 
137
  if ( function_exists('wpbc_toolbar_action_export_print_buttons') ) wpbc_toolbar_action_export_print_buttons();
 
 
138
 
139
  wpbc_clear_div();
140
 
@@ -1053,6 +1057,42 @@ function wpbc_toolbar_btn__delete_reason( $user_bk_id ) {
1053
  }
1054
 
1055
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1056
  /** Read All - B u t t o n s */
1057
  function wpbc_toolbar_btn__read_all( $user_bk_id ) {
1058
 
@@ -1140,42 +1180,51 @@ function wpbc_toolbar_btn__timeline_view_mode() {
1140
  , 'style' => '' // CSS Style of entire div element
1141
  , 'items' => array(
1142
  array(
1143
- 'type' => 'button'
1144
- , 'title' => __('Month', 'booking') . '&nbsp;&nbsp;' // Title of the button
1145
- , 'hint' => array( 'title' => __('Show month' ,'booking') , 'position' => 'top' ) // Hint
 
 
 
1146
  , 'link' => $bk_admin_url . '&view_days_num=30' // Direct link or skip it
1147
  , 'action' => "" // Some JavaScript to execure, for example run the function
1148
  , 'class' => 'button-secondary btn_dn_30' // button-secondary | button-primary
1149
  , 'icon' => ''
1150
- , 'font_icon' => 'glyphicon glyphicon-align-justify'
1151
  , 'icon_position' => 'right' // Position of icon relative to Text: left | right
1152
  , 'style' => '' // Any CSS class here
1153
  , 'mobile_show_text' => true // Show or hide text, when viewing on Mobile devices (small window size).
1154
  , 'attr' => array()
1155
  )
1156
  , array(
1157
- 'type' => 'button'
1158
- , 'title' => __('3 Months', 'booking') . '&nbsp;&nbsp;' // Title of the button
1159
- , 'hint' => array( 'title' => __('Show 3 months' ,'booking') , 'position' => 'top' ) // Hint
 
 
 
1160
  , 'link' => $bk_admin_url . '&view_days_num=90' // Direct link or skip it
1161
  , 'action' => "" // Some JavaScript to execure, for example run the function
1162
  , 'class' => 'button-secondary btn_dn_90' // button-secondary | button-primary
1163
  , 'icon' => ''
1164
- , 'font_icon' => 'glyphicon glyphicon-th-list'
1165
  , 'icon_position' => 'right' // Position of icon relative to Text: left | right
1166
  , 'style' => '' // Any CSS class here
1167
  , 'mobile_show_text' => true // Show or hide text, when viewing on Mobile devices (small window size).
1168
  , 'attr' => array()
1169
  )
1170
  , array(
1171
- 'type' => 'button'
1172
- , 'title' => __('Year', 'booking') . '&nbsp;&nbsp;' // Title of the button
1173
- , 'hint' => array( 'title' => __('Show year' ,'booking') , 'position' => 'top' ) // Hint
 
 
 
1174
  , 'link' => $bk_admin_url . '&view_days_num=365' // Direct link or skip it
1175
  , 'action' => "" // Some JavaScript to execure, for example run the function
1176
  , 'class' => 'button-secondary btn_dn_365' // button-secondary | button-primary
1177
  , 'icon' => ''
1178
- , 'font_icon' => 'glyphicon glyphicon-th'
1179
  , 'icon_position' => 'right' // Position of icon relative to Text: left | right
1180
  , 'style' => '' // Any CSS class here
1181
  , 'mobile_show_text' => true // Show or hide text, when viewing on Mobile devices (small window size).
102
 
103
  if ( function_exists( 'wpbc_filter_text_keyword' ) ) wpbc_filter_text_keyword();
104
 
105
+ if ( function_exists( 'wpbc_filter_find_lost_bookings' ) ) wpbc_filter_find_lost_bookings(); //FixIn: 8.5.2.19
106
+
107
  ?></span><?php
108
 
109
  make_bk_action( 'wpbc_br_selection_for_listing' );
137
  make_bk_action('wpbc_extend_buttons_in_action_toolbar_booking_listing' );
138
 
139
  if ( function_exists('wpbc_toolbar_action_export_print_buttons') ) wpbc_toolbar_action_export_print_buttons();
140
+
141
+ wpbc_toolbar_btn__empty_trash( $user_bk_id ); // Empty Trash //FixIn: 8.5.2.24
142
 
143
  wpbc_clear_div();
144
 
1057
  }
1058
 
1059
 
1060
+ //FixIn: 8.5.2.24
1061
+ /**
1062
+ * Empty Trash
1063
+ *
1064
+ * @param $user_bk_id
1065
+ */
1066
+ function wpbc_toolbar_btn__empty_trash( $user_bk_id ) {
1067
+
1068
+ $params = array(
1069
+ 'label_for' => 'actions_empty_trash' // "For" parameter of button group element
1070
+ , 'label' => '' //__('Actions:', 'booking') // Label above the button group
1071
+ , 'style' => '' // CSS Style of entire div element
1072
+ , 'items' => array(
1073
+ array(
1074
+ 'type' => 'button'
1075
+ , 'title' => __('Empty Trash', 'booking') . '&nbsp;&nbsp;' // Title of the button
1076
+ , 'hint' => array( 'title' => __('Empty Trash' ,'booking') , 'position' => 'top' ) // Hint
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_booking_locale() . "' );" // Some JavaScript to execure, for example run the function
1081
+
1082
+ , 'class' => '' // button-secondary | button-primary
1083
+ , 'icon' => ''
1084
+ , 'font_icon' => 'glyphicon glyphicon-remove'
1085
+ , 'icon_position' => 'right' // Position of icon relative to Text: left | right
1086
+ , 'style' => '' // Any CSS class here
1087
+ , 'mobile_show_text' => true // Show or hide text, when viewing on Mobile devices (small window size).
1088
+ , 'attr' => array()
1089
+ )
1090
+ )
1091
+ );
1092
+ wpbc_bs_button_group( $params );
1093
+ }
1094
+
1095
+
1096
  /** Read All - B u t t o n s */
1097
  function wpbc_toolbar_btn__read_all( $user_bk_id ) {
1098
 
1180
  , 'style' => '' // CSS Style of entire div element
1181
  , 'items' => array(
1182
  array(
1183
+ 'type' => 'button'
1184
+ , 'title' => __('Day', 'booking') . '&nbsp;&nbsp;' // Title of the button //FixIn: Flex TimeLine 1.0
1185
+ , 'hint' => array( 'title' => __('Show day' ,'booking') , 'position' => 'top' ) // Hint
1186
+ , 'font_icon' => 'glyphicon glyphicon-stop'
1187
+ // , 'title' => __('Month', 'booking') . '&nbsp;&nbsp;' // Title of the button
1188
+ // , 'hint' => array( 'title' => __('Show month' ,'booking') , 'position' => 'top' ) // Hint
1189
  , 'link' => $bk_admin_url . '&view_days_num=30' // Direct link or skip it
1190
  , 'action' => "" // Some JavaScript to execure, for example run the function
1191
  , 'class' => 'button-secondary btn_dn_30' // button-secondary | button-primary
1192
  , 'icon' => ''
1193
+ // , 'font_icon' => 'glyphicon glyphicon-align-justify'
1194
  , 'icon_position' => 'right' // Position of icon relative to Text: left | right
1195
  , 'style' => '' // Any CSS class here
1196
  , 'mobile_show_text' => true // Show or hide text, when viewing on Mobile devices (small window size).
1197
  , 'attr' => array()
1198
  )
1199
  , array(
1200
+ 'type' => 'button'
1201
+ , 'title' => __('Week', 'booking') . '&nbsp;&nbsp;' // Title of the button //FixIn: Flex TimeLine 1.0
1202
+ , 'hint' => array( 'title' => __('Show week' ,'booking') , 'position' => 'top' ) // Hint
1203
+ , 'font_icon' => 'glyphicon glyphicon-th-large'
1204
+ // , 'title' => __('3 Months', 'booking') . '&nbsp;&nbsp;' // Title of the button
1205
+ // , 'hint' => array( 'title' => __('Show 3 months' ,'booking') , 'position' => 'top' ) // Hint
1206
  , 'link' => $bk_admin_url . '&view_days_num=90' // Direct link or skip it
1207
  , 'action' => "" // Some JavaScript to execure, for example run the function
1208
  , 'class' => 'button-secondary btn_dn_90' // button-secondary | button-primary
1209
  , 'icon' => ''
1210
+ // , 'font_icon' => 'glyphicon glyphicon-th-list'
1211
  , 'icon_position' => 'right' // Position of icon relative to Text: left | right
1212
  , 'style' => '' // Any CSS class here
1213
  , 'mobile_show_text' => true // Show or hide text, when viewing on Mobile devices (small window size).
1214
  , 'attr' => array()
1215
  )
1216
  , array(
1217
+ 'type' => 'button'
1218
+ , 'title' => __('Month', 'booking') . '&nbsp;&nbsp;' // Title of the button
1219
+ , 'hint' => array( 'title' => __('Show month' ,'booking') , 'position' => 'top' ) // Hint
1220
+ , 'font_icon' => 'glyphicon glyphicon-th'
1221
+ // , 'title' => __('Year', 'booking') . '&nbsp;&nbsp;' // Title of the button
1222
+ // , 'hint' => array( 'title' => __('Show year' ,'booking') , 'position' => 'top' ) // Hint
1223
  , 'link' => $bk_admin_url . '&view_days_num=365' // Direct link or skip it
1224
  , 'action' => "" // Some JavaScript to execure, for example run the function
1225
  , 'class' => 'button-secondary btn_dn_365' // button-secondary | button-primary
1226
  , 'icon' => ''
1227
+ // , 'font_icon' => 'glyphicon glyphicon-th'
1228
  , 'icon_position' => 'right' // Position of icon relative to Text: left | right
1229
  , 'style' => '' // Any CSS class here
1230
  , 'mobile_show_text' => true // Show or hide text, when viewing on Mobile devices (small window size).
core/any/admin-bs-ui.php CHANGED
@@ -1942,7 +1942,7 @@ function wpbc_bs_javascript_popover() {
1942
  //, delay: {show: 100, hide: 8}
1943
  , content: ''
1944
  , template: '<div class="popover" role="tooltip"><div class="arrow"></div><div class="popover-close"><a href="javascript:void(0)" data-dismiss="popover" aria-hidden="true">&times;</a></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'
1945
- , container: '.wpbc_timeline_frame'
1946
  , html: 'true'
1947
  });
1948
  jQuery('.popover_click.popover_top').popover( {
@@ -1951,7 +1951,7 @@ function wpbc_bs_javascript_popover() {
1951
  //, delay: {show: 100, hide: 8}
1952
  , content: ''
1953
  , template: '<div class="popover" role="tooltip"><div class="arrow"></div><div class="popover-close"><a href="javascript:void(0)" data-dismiss="popover" aria-hidden="true">&times;</a></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'
1954
- , container: '.wpbc_timeline_frame'
1955
  , html: 'true'
1956
  });
1957
  jQuery('.popover_click.popover_left').popover( {
@@ -1960,7 +1960,7 @@ function wpbc_bs_javascript_popover() {
1960
  //, delay: {show: 100, hide: 8}
1961
  , content: ''
1962
  , template: '<div class="popover" role="tooltip"><div class="arrow"></div><div class="popover-close"><a href="javascript:void(0)" data-dismiss="popover" aria-hidden="true">&times;</a></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'
1963
- , container: '.wpbc_timeline_frame'
1964
  , html: 'true'
1965
  });
1966
  jQuery('.popover_click.popover_right').popover( {
@@ -1969,7 +1969,7 @@ function wpbc_bs_javascript_popover() {
1969
  //, delay: {show: 100, hide: 8}
1970
  , content: ''
1971
  , template: '<div class="popover" role="tooltip"><div class="arrow"></div><div class="popover-close"><a href="javascript:void(0)" data-dismiss="popover" aria-hidden="true">&times;</a></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'
1972
- , container: '.wpbc_timeline_frame'
1973
  , html: 'true'
1974
  });
1975
 
@@ -1992,7 +1992,7 @@ function wpbc_bs_javascript_popover() {
1992
  , delay: {show: 100, hide: 100}
1993
  , content: ''
1994
  , template: '<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'
1995
- , container: '.wpbc_timeline_frame'
1996
  , html: 'true'
1997
  });
1998
  jQuery('.popover_hover.popover_top').popover( {
@@ -2001,7 +2001,7 @@ function wpbc_bs_javascript_popover() {
2001
  , delay: {show: 100, hide: 100}
2002
  , content: ''
2003
  , template: '<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'
2004
- , container: '.wpbc_timeline_frame'
2005
  , html: 'true'
2006
  });
2007
  jQuery('.popover_hover.popover_left').popover( {
@@ -2010,7 +2010,7 @@ function wpbc_bs_javascript_popover() {
2010
  , delay: {show: 100, hide: 100}
2011
  , content: ''
2012
  , template: '<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'
2013
- , container: '.wpbc_timeline_frame'
2014
  , html: 'true'
2015
  });
2016
  jQuery('.popover_hover.popover_right').popover( {
@@ -2019,7 +2019,7 @@ function wpbc_bs_javascript_popover() {
2019
  , delay: {show: 100, hide: 100}
2020
  , content: ''
2021
  , template: '<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'
2022
- , container: '.wpbc_timeline_frame'
2023
  , html: 'true'
2024
  });
2025
  //////////////////////////////////////////////////////////////////////
@@ -2055,7 +2055,7 @@ function wpbc_bs_javascript_popover() {
2055
  //, delay: {show: 100, hide: 8}
2056
  , content: ''
2057
  , template: '<div class="popover" role="tooltip"><div class="arrow"></div><div class="popover-close"><a href="javascript:void(0)" data-dismiss="popover" aria-hidden="true">&times;</a></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'
2058
- , container: '.wpbc_timeline_frame'
2059
  , html: 'true'
2060
  });
2061
  // .on('shown.bs.popover', function(e){
1942
  //, delay: {show: 100, hide: 8}
1943
  , content: ''
1944
  , template: '<div class="popover" role="tooltip"><div class="arrow"></div><div class="popover-close"><a href="javascript:void(0)" data-dismiss="popover" aria-hidden="true">&times;</a></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'
1945
+ , container: '.wpbc_timeline_frame,.flex_timeline_frame' //FixIn: Flex TimeLine 1.0
1946
  , html: 'true'
1947
  });
1948
  jQuery('.popover_click.popover_top').popover( {
1951
  //, delay: {show: 100, hide: 8}
1952
  , content: ''
1953
  , template: '<div class="popover" role="tooltip"><div class="arrow"></div><div class="popover-close"><a href="javascript:void(0)" data-dismiss="popover" aria-hidden="true">&times;</a></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'
1954
+ , container: '.wpbc_timeline_frame,.flex_timeline_frame' //FixIn: Flex TimeLine 1.0
1955
  , html: 'true'
1956
  });
1957
  jQuery('.popover_click.popover_left').popover( {
1960
  //, delay: {show: 100, hide: 8}
1961
  , content: ''
1962
  , template: '<div class="popover" role="tooltip"><div class="arrow"></div><div class="popover-close"><a href="javascript:void(0)" data-dismiss="popover" aria-hidden="true">&times;</a></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'
1963
+ , container: '.wpbc_timeline_frame,.flex_timeline_frame' //FixIn: Flex TimeLine 1.0
1964
  , html: 'true'
1965
  });
1966
  jQuery('.popover_click.popover_right').popover( {
1969
  //, delay: {show: 100, hide: 8}
1970
  , content: ''
1971
  , template: '<div class="popover" role="tooltip"><div class="arrow"></div><div class="popover-close"><a href="javascript:void(0)" data-dismiss="popover" aria-hidden="true">&times;</a></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'
1972
+ , container: '.wpbc_timeline_frame,.flex_timeline_frame' //FixIn: Flex TimeLine 1.0
1973
  , html: 'true'
1974
  });
1975
 
1992
  , delay: {show: 100, hide: 100}
1993
  , content: ''
1994
  , template: '<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'
1995
+ , container: '.wpbc_timeline_frame,.flex_timeline_frame' //FixIn: Flex TimeLine 1.0
1996
  , html: 'true'
1997
  });
1998
  jQuery('.popover_hover.popover_top').popover( {
2001
  , delay: {show: 100, hide: 100}
2002
  , content: ''
2003
  , template: '<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'
2004
+ , container: '.wpbc_timeline_frame,.flex_timeline_frame' //FixIn: Flex TimeLine 1.0
2005
  , html: 'true'
2006
  });
2007
  jQuery('.popover_hover.popover_left').popover( {
2010
  , delay: {show: 100, hide: 100}
2011
  , content: ''
2012
  , template: '<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'
2013
+ , container: '.wpbc_timeline_frame,.flex_timeline_frame' //FixIn: Flex TimeLine 1.0
2014
  , html: 'true'
2015
  });
2016
  jQuery('.popover_hover.popover_right').popover( {
2019
  , delay: {show: 100, hide: 100}
2020
  , content: ''
2021
  , template: '<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'
2022
+ , container: '.wpbc_timeline_frame,.flex_timeline_frame' //FixIn: Flex TimeLine 1.0
2023
  , html: 'true'
2024
  });
2025
  //////////////////////////////////////////////////////////////////////
2055
  //, delay: {show: 100, hide: 8}
2056
  , content: ''
2057
  , template: '<div class="popover" role="tooltip"><div class="arrow"></div><div class="popover-close"><a href="javascript:void(0)" data-dismiss="popover" aria-hidden="true">&times;</a></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'
2058
+ , container: '.wpbc_timeline_frame,.flex_timeline_frame' //FixIn: Flex TimeLine 1.0
2059
  , html: 'true'
2060
  });
2061
  // .on('shown.bs.popover', function(e){
core/any/api-emails.php CHANGED
@@ -488,7 +488,10 @@ abstract class WPBC_Emails_API extends WPBC_Settings_API {
488
 
489
  if ( $is_send_email ) {
490
  $to = apply_filters( 'wpbc_email_api_send_field_to', $to ); //FixIn: 8.1.3.1
491
- $return = wp_mail( $to, $subject, $message, $headers, $attachments );
 
 
 
492
  }
493
 
494
  $this->sending = false;
@@ -557,7 +560,10 @@ if ( ! empty( $this->fields_values['to'] ) ) {
557
 
558
  if ( $is_send_email ) {
559
  $to = apply_filters( 'wpbc_email_api_send_copy_field_to', $to ); //FixIn: 8.1.3.1
560
- $return_copy = wp_mail( $to, $subject, $message, $headers, $attachments );
 
 
 
561
  }
562
 
563
  $this->sending = false;
488
 
489
  if ( $is_send_email ) {
490
  $to = apply_filters( 'wpbc_email_api_send_field_to', $to ); //FixIn: 8.1.3.1
491
+ //FixIn: 8.5.2.22
492
+ if ( ! empty( $to ) ) {
493
+ $return = wp_mail( $to, $subject, $message, $headers, $attachments );
494
+ }
495
  }
496
 
497
  $this->sending = false;
560
 
561
  if ( $is_send_email ) {
562
  $to = apply_filters( 'wpbc_email_api_send_copy_field_to', $to ); //FixIn: 8.1.3.1
563
+ //FixIn: 8.5.2.22
564
+ if ( ! empty( $to ) ) {
565
+ $return_copy = wp_mail( $to, $subject, $message, $headers, $attachments );
566
+ }
567
  }
568
 
569
  $this->sending = false;
core/any/css/admin-listing-table.css CHANGED
@@ -55,7 +55,7 @@
55
  font-weight: 600;
56
  text-align: right;
57
 
58
- /* background-color: #777;
59
  border: 1px solid #FFF;
60
  border-radius: 10px 10px 10px 10px;
61
  box-shadow: 0 0 2px #888;
@@ -66,16 +66,13 @@
66
  text-shadow: 0 0 3px #333;*/
67
  }
68
  .wpbc-listing-collumn .field-id span.label {
69
- border-radius: 10px;
70
- -moz-border-radius: 10px;
71
- -webkit-border-radius: 10px;
72
  background: #bbb;
73
  color: #fff;
74
  margin: 0;
75
  padding: 2px 5px;
76
  background: #888;
77
  border:none;
78
- line-height:2.8em;
79
  }
80
  .wpbc-listing-collumn.field-system-info {
81
  font-size: 9px;
@@ -105,15 +102,15 @@
105
  }
106
  /* Data Titles style - Yellow Values*/
107
  .wpbc-listing-collumn .fieldvalue {
108
- background: #FE9;
109
  color: #333;
110
  font-size: 0.9em;
111
  font-weight: 400;
112
- margin: 0 3px 0 0;
113
  padding: 2px 3px;
114
- border-radius: 3px;
115
- -moz-border-radius: 3px;
116
- -webkit-border-radius: 3px;
117
  /* text-shadow: 0 1px 1px #EEE;*/
118
  }
119
 
55
  font-weight: 600;
56
  text-align: right;
57
 
58
+ /* background-color: #777;
59
  border: 1px solid #FFF;
60
  border-radius: 10px 10px 10px 10px;
61
  box-shadow: 0 0 2px #888;
66
  text-shadow: 0 0 3px #333;*/
67
  }
68
  .wpbc-listing-collumn .field-id span.label {
69
+ border-radius: 5px;
 
 
70
  background: #bbb;
71
  color: #fff;
72
  margin: 0;
73
  padding: 2px 5px;
74
  background: #888;
75
  border:none;
 
76
  }
77
  .wpbc-listing-collumn.field-system-info {
78
  font-size: 9px;
102
  }
103
  /* Data Titles style - Yellow Values*/
104
  .wpbc-listing-collumn .fieldvalue {
105
+ background: #FFF3C3; /*#FE9;*/ /* FixIn: 8.5.2.5 */
106
  color: #333;
107
  font-size: 0.9em;
108
  font-weight: 400;
109
+ margin: 0 2px 0 1px;
110
  padding: 2px 3px;
111
+ border-radius: 2px;
112
+ -moz-border-radius: 2px;
113
+ -webkit-border-radius: 2px;
114
  /* text-shadow: 0 1px 1px #EEE;*/
115
  }
116
 
core/class/wpbc-class-welcome.php CHANGED
@@ -268,7 +268,6 @@ class WPBC_Welcome {
268
  remove_submenu_page( 'index.php', 'wpbc-about' );
269
  remove_submenu_page( 'index.php', 'wpbc-getting-started' );
270
  remove_submenu_page( 'index.php', 'wpbc-about-premium' );
271
-
272
  }
273
 
274
  // Head
@@ -286,7 +285,7 @@ class WPBC_Welcome {
286
  <div class="about-text"><?php
287
  //echo('Thank you for updating to the latest version!');
288
  // printf( '%s is more polished, powerful and easy to use than ever before.' , ' Booking Calendar ' . $display_version );
289
- // printf( '%s become more powerful and flexible in configuration and easy to use than ever before.' , '<br/>Booking Calendar ');
290
  printf( 'Booking Calendar is ready to receive and manage bookings from your visitors!' );
291
  ?></div>
292
 
@@ -425,7 +424,7 @@ class WPBC_Welcome {
425
  <td>
426
  <?php list( $display_version ) = explode( '-', WPDEV_BK_VERSION ); ?>
427
  Thank you for updating to the latest version. <strong><code><?php echo $display_version; ?></code></strong>
428
- <br/>Booking Calendar become more polished, powerful and easy to use than ever before.
429
  </td>
430
  <td style="width:10%">
431
  <a href="<?php echo esc_url( admin_url( add_query_arg( array( 'page' => 'wpbc-getting-started' ), 'index.php' ) ) ); ?>"
@@ -441,110 +440,203 @@ class WPBC_Welcome {
441
  $this->maintence_section();
442
 
443
  ////////////////////////////////////////////////////////////////////////////////////////////////////////////
444
- // 8.5
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;">8.5</span></h2><?php
449
  $this->show_separator();
 
 
 
 
 
 
 
 
 
 
 
 
 
450
 
451
- // $this->show_col_section( array(
452
- //
453
- // array( 'h4' => wpbc_recheck_strong_symbols( 'Different structures of booking forms' ),
454
- // 'text' => wpbc_recheck_strong_symbols( '<ul style="list-style: none;padding: 5px;margin:0;">'
455
- // . '<li>' . 'Ability to define different structures of booking forms at Booking > Settings > Form page' . '</li>'
456
- // . '<li style="list-style: disc inside;">' . '**Vertical** - form under calendar' . '</li>'
457
- // . '<li style="list-style: disc inside;">' . '**Side by side** - form at right side of calendar' . '</li>'
458
- // . '<li style="list-style: disc inside;">' . '**Centered** - form and calendar are centered' . '</li>'
459
- // . '<li style="list-style: disc inside;">' . '**Dark** - form for dark background' . '</li>'
460
- // . '</ul>' )
461
- //
462
- // . '<span style="font-size:0.85em;">' .wpbc_recheck_strong_symbols( 'Available in Booking Calendar **Free** version' ) . '</span>'
463
- //
464
- // )
465
- // //, array( 'img' => '8.1/booking-form-structure-2.png', 'img_style'=>'margin-top:20px;width: 85%;' )
466
- // )
467
- // );
468
 
469
  $this->show_col_section( array(
470
  array( 'text' =>
471
- '<h4>' .wpbc_recheck_strong_symbols( 'New' ) . '</h4>'
472
- . '<ul style="list-style: disc outside;padding: 20px;margin:0;">'
473
- . '<li>' . wpbc_recheck_strong_symbols( '**Highlight code syntax** for **booking form** configuration at Booking > Settings > Form page, and show warnings about possible issues. (8.4.7.18) *(Personal Business Small/Medium/Large, MultiUser)*' ) . '</li>'
474
- . '<li>' . wpbc_recheck_strong_symbols( '**Highlight code syntax** for **search form** and search results form configuration at Booking > Settings > Search page, and show warnings about possible issues. (8.4.7.18) *(Business Large, MultiUser)*' ) . '</li>'
475
- . '<li>' . wpbc_recheck_strong_symbols( 'Update of **Stripe** Integration via "**Checkout Server**" method, which use "**Strong Customer Authentication**" (SCA) - a new rule coming into effect on September 14, 2019 as part of PSD2 regulation in Europe, will require changes to how your European customers authenticate online payments. (8.4.7.20)' ) . '</li>'
476
- . '<li>' . wpbc_recheck_strong_symbols( '**Approve booking in 1 mouse click** on link in email about new booking sending to Administrator. Even without requirement to login to WordPress admin panel. Its require to use **[click2approve]** shortcode at Booking > Settings > Emails > New (admin) page. (8.4.7.25)' ) . '</li>'
477
- . '<li>' . wpbc_recheck_strong_symbols( '**Decline booking in 1 mouse click** on link in email about new booking sending to Administrator. Even without requirement to login to WordPress admin panel. Its require to use **[click2decline]** shortcode at Booking > Settings > Emails > New (admin) page. (8.4.7.25)' ) . '</li>'
478
- . '<li>' . wpbc_recheck_strong_symbols( '**Trash booking in 1 mouse click** on link in email about new booking sending to Administrator. Even without requirement to login to WordPress admin panel. Its require to use **[click2trash]** shortcode at Booking > Settings > Emails > New (admin) page. (8.4.7.25)' ) . '</li>'
479
- . '<li>' . wpbc_recheck_strong_symbols( 'Ability to define sort **order of search availability results** at the Booking > Settings > Search page. (8.4.7.8) *(Business Large, MultiUser)*' ) . '</li>'
480
- . '<li>' . wpbc_recheck_strong_symbols( '** Experimental Feature**. Trash all imported bookings before new import. Move all previously imported bookings to trash before new import bookings. Its can **resolve issue of updating deleted and edited events in external sources**. Activate this option at Booking > Settings > Sync > "General" page. Its work only, if you are using one source (.ics feed) for importing into specific booking resource! Work only in update of Booking Manager 2.0.10 or newer. (8.4.7.12)' ) . '</li>'
481
- . '<li>' . wpbc_recheck_strong_symbols( '**Force import**. Ability to import bookings without checking, if such bookings already have been imported. Activate this option at Booking > Settings > Sync > "General" page. Available in the Booking Manager 2.0.10 or newer. (2.0.10.1)(8.4.7.1)' ) . '</li>'
482
- . '</ul>'
483
-
484
- . '<h4>' .wpbc_recheck_strong_symbols( 'Improvement' ) . '</h4>'
485
- . '<ul style="list-style: disc outside;padding: 20px;margin:0;">'
486
- . '<li>' . wpbc_recheck_strong_symbols( '**Improvement** Changed color of "Imported" label for bookings in Booking Listing page (8.4.7.2)' ) . '</li>'
487
- . '<li>' . wpbc_recheck_strong_symbols( '**Improvement** Show "Do you really want to do this ?" popup, when admin try to Trash or Delete booking in Calendar Overview page (8.4.7.14)' ) . '</li>'
488
- . '<li>' . wpbc_recheck_strong_symbols( '**Improvement** Show button "Find Lost Bookings" at the Booking Settings General page in Help section, for ability to show all exist bookings, and find possible some lost bookings. (8.4.7.19)' ) . '</li>'
489
- . '<li>' . wpbc_recheck_strong_symbols( '**Improvement** Booking Calendar does not require jquery-migrate library, as obligatory library anymore. Its means that plugin can work with latest jQuery versions (like 3.4.1) just in strait way, without additional libraries. (8.4.7.23)' ) . '</li>'
490
-
491
- . '<li>' . wpbc_recheck_strong_symbols( '**Improvement**. Checking for seasonal availability in "child booking resources" during submitting booking for booking resource with specific capacity. If you have set unavailable dates in child booking resource via season filters, system will not save bookings in this child booking resource. (8.4.7.3) *(Business Large, MultiUser)*' ) . '</li>'
492
- . '<li>' . wpbc_recheck_strong_symbols( '**Improvement**. Set as unavailable the end time fields options, depend from selected date with booked timeslots (8.4.7.6) *(Business Small/Medium/Large, MultiUser)*' ) . '</li>'
493
- . '<li>' . wpbc_recheck_strong_symbols( '**Improvement**. Added autocomplete Off to the search form fields, to prevent of showing tooltips in search fields. (8.4.7.7) *(Business Large, MultiUser)*' ) . '</li>'
494
- . '</ul>'
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
495
 
496
- )
497
- , array( 'text' =>
498
- '<h4>' .wpbc_recheck_strong_symbols( 'Translation' ) . '</h4>'
499
- . '<ul style="list-style: disc outside;padding: 20px;margin:0;">'
500
 
501
- . '<li>' . wpbc_recheck_strong_symbols( 'New Romanian translation by Silviu Nita' ) . '</li>'
502
- . '<li>' . wpbc_recheck_strong_symbols( 'Update of Slovenian translation by Klemen Gaber' ) . '</li>'
503
- . '<li>' . wpbc_recheck_strong_symbols( 'Update of Dutch translation by Boris Hoekmeijer' ) . '</li>'
504
- . '<li>' . wpbc_recheck_strong_symbols( 'Update of German translation by Dominik Ziegler' ) . '</li>'
505
- . '</ul>'
506
 
507
- . '<h4>' .wpbc_recheck_strong_symbols( 'Fixes' ) . '</h4>'
508
- . '<ul style="list-style: disc outside;padding: 20px;margin:0;">'
509
- . '<li>' . wpbc_recheck_strong_symbols( '**Fix**. Issue of not working "Read All" button (issue was exist in updates 8.4.5, 8.4.6. (8.4.7.15)' ) . '</li>'
510
- . '<li>' . wpbc_recheck_strong_symbols( '**Fix**. Issue of incorrectly showing months scroll in calendar at some iPads (8.4.7.17)' ) . '</li>'
511
- . '<li>' . wpbc_recheck_strong_symbols( '**Fix**. Issue of not showing bookings for "Today" date in Booking Listing page, when bookings was made for entire date. (8.4.7.21)' ) . '</li>'
512
- . '<li>' . wpbc_recheck_strong_symbols( '**Fix**. Issue of showing bookings, that was made during "Today" date in Booking Listing page. Previously system was show some bookings, that was made yesterday, as well. (8.4.7.22)' ) . '</li>'
513
- . '<li>' . wpbc_recheck_strong_symbols( '**Fix**. Warnings in PHP 7.2 relative INI directive safe_mode is deprecated since PHP 5.3 and removed since PHP 5.4 (8.4.7.24)' ) . '</li>'
514
-
515
- . '<li>' . wpbc_recheck_strong_symbols( '**Fix**. Warning: Invalid argument supplied for foreach() in ..\multiuser.php on line 558 (8.4.7.4) *(MultiUser)*' ) . '</li>'
516
- . '<li>' . wpbc_recheck_strong_symbols( '**Fix**. Showing of users in Booking > Settings > Users page in WordPress MU installation (8.4.7.5) *(MultiUser)*' ) . '</li>'
517
- . '<li>' . wpbc_recheck_strong_symbols( '**Fix**. Issue with Stripe payment, when "Subject" have too long description with dates to book. (8.4.7.10) *(Business Small/Medium/Large, MultiUser)*' ) . '</li>'
518
- . '<li>' . wpbc_recheck_strong_symbols( '**Fix**. Translation issue of Completed payment status (8.4.7.11) *(Business Small/Medium/Large, MultiUser)*' ) . '</li>'
519
- . '<li>' . wpbc_recheck_strong_symbols( '**Fix**. Showing of showing dates instead of titles of booking resources in Timeline, when some Regular user was logged in and try to scroll timeline (8.4.7.13) *(MultiUser)*' ) . '</li>'
520
-
521
- . '<li>' . wpbc_recheck_strong_symbols( '**Fix**. Showing Notice: Undefined offset: 9 in ../inc/_bl/wpbc-search-availability.php on line 689 (8.4.7.16) *(Business Large, MultiUser)*' ) . '</li>'
522
- . '<li>' . wpbc_recheck_strong_symbols( '**Fix**. Issue of not updating cost by making booking at Booking > Add booking page, while using [cost_correction] shortcode in the booking form (8.4.7.28) *(Business Small/Medium/Large, MultiUser)*' ) . '</li>'
523
- . '<li>' . wpbc_recheck_strong_symbols( '**Fix**. Issue of not showing change over days in calendar for single booking resource (capacity = 1), where maximum number of visitors > 1 (8.4.7.29) *(Business Large, MultiUser)*' ) . '</li>'
524
 
525
- . '</ul>'
526
- )
527
- )
528
- );
529
- $this->show_separator();
530
 
531
- // $this->show_col_section( array(
532
- //
533
- // //array( 'img' => '8.1/booking-calendar-stripe-gateway-2.png', 'img_style'=>'margin-top:20px;width: 85%;' ),
534
- //
535
- // array( 'h4' => wpbc_recheck_strong_symbols( '**Stripe** payment system integration' ),
536
- // 'text' => wpbc_recheck_strong_symbols( '<ul style="list-style: none;padding: 5px;margin:0;">'
537
- // . '<li>' . 'Integration with **<a target="_blank" href="https://stripe.com/">Stripe</a>** payment gateway.' . '</li>'
538
- // . '<li>' . 'Showing on screen (same page) payment form, with ability to pay by cards.' . '</li>'
539
- // . '<li>' . 'Ability to auto approve or auto decline booking, after successful or failed payment.' . '</li>'
540
- // . '</ul>' )
541
- //
542
- // . '<span style="font-size:0.85em;">' .wpbc_recheck_strong_symbols( 'Available in **Business Small / Business Medium / Business Large / MultiUser** versions' ) . '</span>'
543
- //
544
- // )
545
- // )
546
- // );
547
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
548
 
549
  ////////////////////////////////////////////////////////////////////////////////////////////////////////////
550
  // 8.4
268
  remove_submenu_page( 'index.php', 'wpbc-about' );
269
  remove_submenu_page( 'index.php', 'wpbc-getting-started' );
270
  remove_submenu_page( 'index.php', 'wpbc-about-premium' );
 
271
  }
272
 
273
  // Head
285
  <div class="about-text"><?php
286
  //echo('Thank you for updating to the latest version!');
287
  // printf( '%s is more polished, powerful and easy to use than ever before.' , ' Booking Calendar ' . $display_version );
288
+ // printf( '%s has become more powerful and flexible in configuration and easy to use than ever before.' , '<br/>Booking Calendar ');
289
  printf( 'Booking Calendar is ready to receive and manage bookings from your visitors!' );
290
  ?></div>
291
 
424
  <td>
425
  <?php list( $display_version ) = explode( '-', WPDEV_BK_VERSION ); ?>
426
  Thank you for updating to the latest version. <strong><code><?php echo $display_version; ?></code></strong>
427
+ <br/>Booking Calendar has become more polished, powerful and easy to use than ever before.
428
  </td>
429
  <td style="width:10%">
430
  <a href="<?php echo esc_url( admin_url( add_query_arg( array( 'page' => 'wpbc-getting-started' ), 'index.php' ) ) ); ?>"
440
  $this->maintence_section();
441
 
442
  ////////////////////////////////////////////////////////////////////////////////////////////////////////////
443
+ // 8.6
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.6</span></h2><?php
448
  $this->show_separator();
449
+ /*
450
+ $this->show_col_section( array(
451
+
452
+ array( 'h4' => wpbc_recheck_strong_symbols( 'Different structures of booking forms' ),
453
+ 'text' => wpbc_recheck_strong_symbols( '<ul style="list-style: none;padding: 5px;margin:0;">'
454
+ . '<li>' . 'Ability to define different structures of booking forms at Booking > Settings > Form page' . '</li>'
455
+ . '<li style="list-style: disc inside;">' . '**Vertical** - form under calendar' . '</li>'
456
+ . '<li style="list-style: disc inside;">' . '**Side by side** - form at right side of calendar' . '</li>'
457
+ . '<li style="list-style: disc inside;">' . '**Centered** - form and calendar are centered' . '</li>'
458
+ . '<li style="list-style: disc inside;">' . '**Dark** - form for dark background' . '</li>'
459
+ . '</ul>' )
460
+
461
+ . '<span style="font-size:0.85em;">' .wpbc_recheck_strong_symbols( 'Available in Booking Calendar **Free** version' ) . '</span>'
462
 
463
+ )
464
+ //, array( 'img' => '8.1/booking-form-structure-2.png', 'img_style'=>'margin-top:20px;width: 85%;' )
465
+ )
466
+ );
467
+ */
468
+ /*
469
+ * This update in memory of my Father - great, very responsible and lovely person, that set right direction in my life. [ SVI 2.19.52 - 8.6.19 ]
470
+ */
471
+ ?>
472
+ <p style="text-align:center;"><?php echo wpbc_recheck_strong_symbols( 'New interface of **Calendar Overview** in admin panel and **Timeline** at front-end side with new clean, flex design.'); ?></p>
473
+ <img src="<?php echo $this->asset_path; ?>8.6/flex-timeline-single-month-pure-2.png" style="border:none;box-shadow: 0 0px 2px #bbb;margin: 2%;width:98%;display:block;" />
474
+ <div class="clear"></div>
475
+ <?php
 
 
 
 
476
 
477
  $this->show_col_section( array(
478
  array( 'text' =>
479
+ '<h4>' .wpbc_recheck_strong_symbols( 'New' ) . '</h4>'
480
+ . '<ul style="list-style: disc outside;padding: 20px;margin:0;">'
481
+ . '<li>' . wpbc_recheck_strong_symbols( 'Updated new interface of **Calendar Overview** in admin panel and **Timeline** at front-end side with new clean, flex design.' ) . '</li>'
482
+ . '<li>' . wpbc_recheck_strong_symbols( '**Timeline & Calendar Overview** - mobile friendly look.' ) . '</li>'
483
+ . '<li>' . wpbc_recheck_strong_symbols( '**Timeline & Calendar Overview** - nicely showing several bookings for the same date(s) (dividing day into several rows). For example during bookings for specific times, while showing Month Timeline view.' ) . '</li>'
484
+ . '<li>' . wpbc_recheck_strong_symbols( '**Timeline & Calendar Overview** - very handy hints for each day of booking, when mouse over specific booking day.' ) . '</li>'
485
+ . '<li>' . wpbc_recheck_strong_symbols( '**Timeline & Calendar Overview** - aggregated booking details title marked with different color for easy finding and checking how many bookings in specific date(s).' ) . '</li>'
486
+ . '<li>' . wpbc_recheck_strong_symbols( '**Timeline & Calendar Overview** - ability to restore old Timeline look at Booking > Settings General page in Timeline section.' ) . '</li>'
487
+ . '<li>' . wpbc_recheck_strong_symbols( 'Section "Calendar Overview | Timeline" at Booking > Settings General page (8.5.2.20)' ) . '</li>'
488
+ . '<li>' . wpbc_recheck_strong_symbols( 'Button "**Empty Trash**" at Booking Listing page in Action toolbar to completely delete All bookings from Trash (8.5.2.24)' ) . '</li>'
489
+ . '<li>' . wpbc_recheck_strong_symbols( 'Ability to **export only approved bookings into .ics feeds**. Available in Booking Manager plugin since 2.0.11 or newer update. (8.5.2.3)' ) . '</li>'
490
+ . '<li>' . wpbc_recheck_strong_symbols( 'Do not update cost of booking, while editing this booking. (8.5.2.1) *(Business Small/Medium/Large, MultiUser)*' ) . '</li>'
491
+ . '</ul>'
492
+
493
+ . '<h4>' .wpbc_recheck_strong_symbols( 'Improvement' ) . '</h4>'
494
+ . '<ul style="list-style: disc outside;padding: 20px;margin:0;">'
495
+ . '<li>' . wpbc_recheck_strong_symbols( 'More clean colors for booking details at the Booking Listing page (8.5.2.5)' ) . '</li>'
496
+ . '<li>' . wpbc_recheck_strong_symbols( 'Added <code>[add_to_google_cal_url]</code> - shortcode in "Approved booking" email template for fast manual adding of booking to Google Calendar (8.5.2.13)' ) . '</li>'
497
+ . '<li>' . wpbc_recheck_strong_symbols( 'New Flex Template for search form - more nice CSS style for search form and search results (8.5.2.11) *(Business Large, MultiUser)*' ) . '</li>'
498
+ . '</ul>'
499
+
500
+
501
+ . '<h4>' .wpbc_recheck_strong_symbols( 'Under Hub' ) . '</h4>'
502
+ . '<ul style="list-style: disc outside;padding: 20px;margin:0;">'
503
+ . '<li>' . wpbc_recheck_strong_symbols( 'Useful **hook** for **Auto approve** bookings only for **specific booking resources**: <code>apply_filters( \'wpbc_get_booking_resources_arr_to_auto_approve\', $booking_resources_to_approve );</code>.<br> Add code similar to this in your functions.php file in your theme, or in some other php file: <br/><code>function my_wpbc_get_booking_resources_arr_to_auto_approve( $resources_to_approve ) { <br>$resources_to_approve = array( 1, 9, 12, 33 ); <br>return $resources_to_approve; } <br>add_filter( \'wpbc_get_booking_resources_arr_to_auto_approve\', \'my_wpbc_get_booking_resources_arr_to_auto_approve\' );</code> (8.5.2.27)' ) . '</li>'
504
+ . '<li>' . wpbc_recheck_strong_symbols( 'Useful **hook** for Google Adwords Conversion tracking: <code>do_action( \'wpbc_track_new_booking\', $params );</code> Add code similar to this in your functions.php file in your theme, or in some other php file: <code>add_action( \'wpbc_track_new_booking\', \'my_booking_tracking\' ); <br>function my_booking_tracking( $params ){ <br>//*Your Google Code for Booking Conversion Page*<br>}</code> (8.5.2.25)' ) . '</li>'
505
+ . '<li>' . wpbc_recheck_strong_symbols( 'Ability to define rechecking cost with PayPal tax during response of PayPal IPN. Require of adding function like this: <br/><code>function my_wpbc_paypal_ipn_tax( $paypal_tax_percent ){ return 20; } <br/>add_filter( \'wpbc_paypal_ipn_tax\', \'my_wpbc_paypal_ipn_tax\' );</code> (8.5.2.2) *(Business Small/Medium/Large, MultiUser)*' ) . '</li>'
506
+ . '<li>' . wpbc_recheck_strong_symbols( 'More easy find lost bookings (in booking resource(s) that have been deleted). Now, its show only lost bookings. Use link like this: <br/><code>http://server/wp-admin/admin.php?page=wpbc&wh_booking_type=lost</code> (8.5.2.19) *(Personal, Business Small/Medium/Large, MultiUser)*' ) . '</li>'
507
+ . '<li>' . wpbc_recheck_strong_symbols( 'Show only one payment system after booking process, if visitor selected payment system in booking form. Example: of shortcode for showing selection of payment forms: <code>Select payment method: [select payment-method "All payment methods@@" "Stripe@@stripe_v3" "PayPal@@paypal" "Authorize.Net@@authorizenet" "Sage Pay@@sage" "Bank Transfer@@bank_transfer" "Pay in Cash@@pay_cash" "iPay88@@ipay88" "iDEAL@@ideal"]</code> This solution was suggested by "Dan Brown". Thank you. (8.5.2.28) *(Business Small/Medium/Large, MultiUser)*' ) . '</li>'
508
+ . '</ul>'
509
+
510
+ . '<h4>' .wpbc_recheck_strong_symbols( 'Translation' ) . '</h4>'
511
+ . '<ul style="list-style: disc outside;padding: 20px;margin:0;">'
512
+
513
+ . '<li>' . wpbc_recheck_strong_symbols( 'French translation [100% completed] by Philippe Nowak and Alain Pruvost' ) . '</li>'
514
+ . '<li>' . wpbc_recheck_strong_symbols( 'Hungarian translation [99% completed] by Vincze István' ) . '</li>'
515
+ . '</ul>'
516
+
517
+ )
518
+ , array( 'text' =>
519
+
520
+ '<h4>' .wpbc_recheck_strong_symbols( 'Fixes' ) . '</h4>'
521
+ . '<ul style="list-style: disc outside;padding: 20px;margin:0;">'
522
+ . '<li>' . wpbc_recheck_strong_symbols( 'Issue of blocking entire day, if in booking form was used start time and end or duration of time fields and visitor use multiple days selection mode, and all start time options for specific day was booked. In multiple day selection mode its incorrect, because user can start days selection at available day, and finish selection with end time at this partially booked day, where no available start-time. Now system block such dates only during single day selection mode. (8.5.2.4)' ) . '</li>'
523
+ . '<li>' . wpbc_recheck_strong_symbols( 'Disable send button, after submit booking, for prevent of several same bookings (8.5.2.7)' ) . '</li>'
524
+ . '<li>' . wpbc_recheck_strong_symbols( 'Issue of not showing bookings that start from \'yesterday\' date at Booking Listing page, when selecting \'Current dates\' in Filter toolbar. (8.5.2.14)' ) . '</li>'
525
+ . '<li>' . wpbc_recheck_strong_symbols( 'Issue of not showing bookings that start from \'today\' date at Booking Listing page, when selecting \'Past dates\' in Filter toolbar. (8.5.2.16)' ) . '</li>'
526
+ . '<li>' . wpbc_recheck_strong_symbols( 'Issue of not ability to submit the booking for additional calendar(s), if used booking form with several calendars and was not selected date(s) in main calendar (8.5.2.26) *(Business Medium/Large, MultiUser)*' ) . '</li>'
527
+ . '<li>' . wpbc_recheck_strong_symbols( 'Issue of not showing booking resource in search availability results, if resource was booked for specific time-slot on specific date, where we search availability. (8.5.2.7) *(Business Large, MultiUser)*' ) . '</li>'
528
+ . '<li>' . wpbc_recheck_strong_symbols( 'Issue of showing default booking resource instead of "All booking resources" for Regular user in MultiUser version at the Booking Listing and Calendar Overview pages, while was set show "All resources" at the Booking > Settings General page. (8.5.2.8) *(MultiUser)*' ) . '</li>'
529
+ . '<li>' . wpbc_recheck_strong_symbols( 'Issue of prevent loading Stripe v.3 at some systems, where PHP version lower than PHP 5.4 (8.5.2.9) *(Business Small/Medium/Large, MultiUser)*' ) . '</li>'
530
+ . '<li>' . wpbc_recheck_strong_symbols( 'Issue of "not auto selecting dates" during editing/cancellation of the booking by visitor, and not updating cost / dates hints in some systems. Conflict with "WPBakery Page Builder" plugin. (8.5.2.10) *(Personal, Business Small/Medium/Large, MultiUser)*' ) . '</li>'
531
+ . '<li>' . wpbc_recheck_strong_symbols( 'Issue of not showing warning message about not checked checkbox, during validation required checkboxes that have several options and one option was checked. (8.5.2.12) *(Personal, Business Small/Medium/Large, MultiUser)*' ) . '</li>'
532
+ . '<li>' . wpbc_recheck_strong_symbols( 'Issue of not submitting booking for additional calendars (if using several calendars and one booking form), if payment form does not show for such bookings (8.5.2.17) *(Business Medium/Large, MultiUser)*' ) . '</li>'
533
+ . '<li>' . wpbc_recheck_strong_symbols( 'Issue of not showing as booked dates in calendar, that relative to change-over days, while activated "Allow unlimited bookings per same day(s)" option. (8.5.2.18) *(Business Large, MultiUser)*' ) . '</li>'
534
+ . '<li>' . wpbc_recheck_strong_symbols( 'Issue of incorrectly showing additional cost hints for options, that was defined as percentage at the Booking > Resources > Advanced cost page. (8.5.2.21) *(Business Medium/Large, MultiUser)*' ) . '</li>'
535
+ . '<li>' . wpbc_recheck_strong_symbols( 'Do not send emails, if was empty email field (its possible in situation, when in booking form several email fields for several persons), otherwise was showing error (8.5.2.22) *(Personal, Business Small/Medium/Large, MultiUser)*' ) . '</li>'
536
+ . '<li>' . wpbc_recheck_strong_symbols( 'Start using "choozen" library for selection of booking resources just during page loading (because library loaded in head), instead of using after full page loaded. Its prevent issue of showing wide selectbox during page loading. (8.5.2.23)' ) . '</li>'
537
+
538
+ . '</ul>'
539
+ )
540
+ )
541
+ );
542
+ $this->show_separator();
543
 
544
+ /*
545
+ $this->show_col_section( array(
 
 
546
 
547
+ //array( 'img' => '8.1/booking-calendar-stripe-gateway-2.png', 'img_style'=>'margin-top:20px;width: 85%;' ),
 
 
 
 
548
 
549
+ array( 'h4' => wpbc_recheck_strong_symbols( '**Stripe** payment system integration' ),
550
+ 'text' => wpbc_recheck_strong_symbols( '<ul style="list-style: none;padding: 5px;margin:0;">'
551
+ . '<li>' . 'Integration with **<a target="_blank" href="https://stripe.com/">Stripe</a>** payment gateway.' . '</li>'
552
+ . '<li>' . 'Showing on screen (same page) payment form, with ability to pay by cards.' . '</li>'
553
+ . '<li>' . 'Ability to auto approve or auto decline booking, after successful or failed payment.' . '</li>'
554
+ . '</ul>' )
 
 
 
 
 
 
 
 
 
 
 
555
 
556
+ . '<span style="font-size:0.85em;">' .wpbc_recheck_strong_symbols( 'Available in **Business Small / Business Medium / Business Large / MultiUser** versions' ) . '</span>'
 
 
 
 
557
 
558
+ )
559
+ )
560
+ );
561
+ */
 
 
 
 
 
 
 
 
 
 
 
 
562
 
563
+ ////////////////////////////////////////////////////////////////////////////////////////////////////////////
564
+ // 8.5
565
+ ////////////////////////////////////////////////////////////////////////////////////////////////////////////
566
+ ?>
567
+ <div class="clear" style="margin-top:20px;"></div>
568
+ <a id="wpbc_show_advanced_section_link_show" class="wpbc_expand_section_link" href="javascript:void(0)"
569
+ onclick="javascript:jQuery( '.version_update_8_5' ).toggle();"
570
+ >+ 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.5</span></a>
571
+
572
+ <div class="version_update_8_5" style="display:none;">
573
+
574
+ <h2 style='font-size: 2.1em;'>What's New in Booking Calendar <span style="font-size: 1.1em;
575
+ font-weight: 600;font-family: Consolas,Monaco,monospace;padding-left: 10px;color: #5F5F5F;">8.5</span></h2><?php
576
+ $this->show_separator();
577
+
578
+ $this->show_col_section( array(
579
+ array( 'text' =>
580
+ '<h4>' .wpbc_recheck_strong_symbols( 'New' ) . '</h4>'
581
+ . '<ul style="list-style: disc outside;padding: 20px;margin:0;">'
582
+ . '<li>' . wpbc_recheck_strong_symbols( '**Highlight code syntax** for **booking form** configuration at Booking > Settings > Form page, and show warnings about possible issues. (8.4.7.18) *(Personal Business Small/Medium/Large, MultiUser)*' ) . '</li>'
583
+ . '<li>' . wpbc_recheck_strong_symbols( '**Highlight code syntax** for **search form** and search results form configuration at Booking > Settings > Search page, and show warnings about possible issues. (8.4.7.18) *(Business Large, MultiUser)*' ) . '</li>'
584
+ . '<li>' . wpbc_recheck_strong_symbols( 'Update of **Stripe** Integration via "**Checkout Server**" method, which use "**Strong Customer Authentication**" (SCA) - a new rule coming into effect on September 14, 2019 as part of PSD2 regulation in Europe, will require changes to how your European customers authenticate online payments. (8.4.7.20)' ) . '</li>'
585
+ . '<li>' . wpbc_recheck_strong_symbols( '**Approve booking in 1 mouse click** on link in email about new booking sending to Administrator. Even without requirement to login to WordPress admin panel. Its require to use **[click2approve]** shortcode at Booking > Settings > Emails > New (admin) page. (8.4.7.25)' ) . '</li>'
586
+ . '<li>' . wpbc_recheck_strong_symbols( '**Decline booking in 1 mouse click** on link in email about new booking sending to Administrator. Even without requirement to login to WordPress admin panel. Its require to use **[click2decline]** shortcode at Booking > Settings > Emails > New (admin) page. (8.4.7.25)' ) . '</li>'
587
+ . '<li>' . wpbc_recheck_strong_symbols( '**Trash booking in 1 mouse click** on link in email about new booking sending to Administrator. Even without requirement to login to WordPress admin panel. Its require to use **[click2trash]** shortcode at Booking > Settings > Emails > New (admin) page. (8.4.7.25)' ) . '</li>'
588
+ . '<li>' . wpbc_recheck_strong_symbols( 'Ability to define sort **order of search availability results** at the Booking > Settings > Search page. (8.4.7.8) *(Business Large, MultiUser)*' ) . '</li>'
589
+ . '<li>' . wpbc_recheck_strong_symbols( '** Experimental Feature**. Trash all imported bookings before new import. Move all previously imported bookings to trash before new import bookings. Its can **resolve issue of updating deleted and edited events in external sources**. Activate this option at Booking > Settings > Sync > "General" page. Its work only, if you are using one source (.ics feed) for importing into specific booking resource! Work only in update of Booking Manager 2.0.10 or newer. (8.4.7.12)' ) . '</li>'
590
+ . '<li>' . wpbc_recheck_strong_symbols( '**Force import**. Ability to import bookings without checking, if such bookings already have been imported. Activate this option at Booking > Settings > Sync > "General" page. Available in the Booking Manager 2.0.10 or newer. (2.0.10.1)(8.4.7.1)' ) . '</li>'
591
+ . '</ul>'
592
+
593
+ . '<h4>' .wpbc_recheck_strong_symbols( 'Improvement' ) . '</h4>'
594
+ . '<ul style="list-style: disc outside;padding: 20px;margin:0;">'
595
+ . '<li>' . wpbc_recheck_strong_symbols( '**Improvement** Changed color of "Imported" label for bookings in Booking Listing page (8.4.7.2)' ) . '</li>'
596
+ . '<li>' . wpbc_recheck_strong_symbols( '**Improvement** Show "Do you really want to do this ?" popup, when admin try to Trash or Delete booking in Calendar Overview page (8.4.7.14)' ) . '</li>'
597
+ . '<li>' . wpbc_recheck_strong_symbols( '**Improvement** Show button "Find Lost Bookings" at the Booking Settings General page in Help section, for ability to show all exist bookings, and find possible some lost bookings. (8.4.7.19)' ) . '</li>'
598
+ . '<li>' . wpbc_recheck_strong_symbols( '**Improvement** Booking Calendar does not require jquery-migrate library, as obligatory library anymore. Its means that plugin can work with latest jQuery versions (like 3.4.1) just in strait way, without additional libraries. (8.4.7.23)' ) . '</li>'
599
+
600
+ . '<li>' . wpbc_recheck_strong_symbols( '**Improvement**. Checking for seasonal availability in "child booking resources" during submitting booking for booking resource with specific capacity. If you have set unavailable dates in child booking resource via season filters, system will not save bookings in this child booking resource. (8.4.7.3) *(Business Large, MultiUser)*' ) . '</li>'
601
+ . '<li>' . wpbc_recheck_strong_symbols( '**Improvement**. Set as unavailable the end time fields options, depend from selected date with booked timeslots (8.4.7.6) *(Business Small/Medium/Large, MultiUser)*' ) . '</li>'
602
+ . '<li>' . wpbc_recheck_strong_symbols( '**Improvement**. Added autocomplete Off to the search form fields, to prevent of showing tooltips in search fields. (8.4.7.7) *(Business Large, MultiUser)*' ) . '</li>'
603
+ . '</ul>'
604
+
605
+ )
606
+ , array( 'text' =>
607
+ '<h4>' .wpbc_recheck_strong_symbols( 'Translation' ) . '</h4>'
608
+ . '<ul style="list-style: disc outside;padding: 20px;margin:0;">'
609
+
610
+ . '<li>' . wpbc_recheck_strong_symbols( 'New Romanian translation by Silviu Nita' ) . '</li>'
611
+ . '<li>' . wpbc_recheck_strong_symbols( 'Update of Slovenian translation by Klemen Gaber' ) . '</li>'
612
+ . '<li>' . wpbc_recheck_strong_symbols( 'Update of Dutch translation by Boris Hoekmeijer' ) . '</li>'
613
+ . '<li>' . wpbc_recheck_strong_symbols( 'Update of German translation by Dominik Ziegler' ) . '</li>'
614
+ . '</ul>'
615
+
616
+ . '<h4>' .wpbc_recheck_strong_symbols( 'Fixes' ) . '</h4>'
617
+ . '<ul style="list-style: disc outside;padding: 20px;margin:0;">'
618
+ . '<li>' . wpbc_recheck_strong_symbols( '**Fix**. Issue of not working "Read All" button (issue was exist in updates 8.4.5, 8.4.6. (8.4.7.15)' ) . '</li>'
619
+ . '<li>' . wpbc_recheck_strong_symbols( '**Fix**. Issue of incorrectly showing months scroll in calendar at some iPads (8.4.7.17)' ) . '</li>'
620
+ . '<li>' . wpbc_recheck_strong_symbols( '**Fix**. Issue of not showing bookings for "Today" date in Booking Listing page, when bookings was made for entire date. (8.4.7.21)' ) . '</li>'
621
+ . '<li>' . wpbc_recheck_strong_symbols( '**Fix**. Issue of showing bookings, that was made during "Today" date in Booking Listing page. Previously system was show some bookings, that was made yesterday, as well. (8.4.7.22)' ) . '</li>'
622
+ . '<li>' . wpbc_recheck_strong_symbols( '**Fix**. Warnings in PHP 7.2 relative INI directive safe_mode is deprecated since PHP 5.3 and removed since PHP 5.4 (8.4.7.24)' ) . '</li>'
623
+
624
+ . '<li>' . wpbc_recheck_strong_symbols( '**Fix**. Warning: Invalid argument supplied for foreach() in ..\multiuser.php on line 558 (8.4.7.4) *(MultiUser)*' ) . '</li>'
625
+ . '<li>' . wpbc_recheck_strong_symbols( '**Fix**. Showing of users in Booking > Settings > Users page in WordPress MU installation (8.4.7.5) *(MultiUser)*' ) . '</li>'
626
+ . '<li>' . wpbc_recheck_strong_symbols( '**Fix**. Issue with Stripe payment, when "Subject" have too long description with dates to book. (8.4.7.10) *(Business Small/Medium/Large, MultiUser)*' ) . '</li>'
627
+ . '<li>' . wpbc_recheck_strong_symbols( '**Fix**. Translation issue of Completed payment status (8.4.7.11) *(Business Small/Medium/Large, MultiUser)*' ) . '</li>'
628
+ . '<li>' . wpbc_recheck_strong_symbols( '**Fix**. Showing of showing dates instead of titles of booking resources in Timeline, when some Regular user was logged in and try to scroll timeline (8.4.7.13) *(MultiUser)*' ) . '</li>'
629
+
630
+ . '<li>' . wpbc_recheck_strong_symbols( '**Fix**. Showing Notice: Undefined offset: 9 in ../inc/_bl/wpbc-search-availability.php on line 689 (8.4.7.16) *(Business Large, MultiUser)*' ) . '</li>'
631
+ . '<li>' . wpbc_recheck_strong_symbols( '**Fix**. Issue of not updating cost by making booking at Booking > Add booking page, while using [cost_correction] shortcode in the booking form (8.4.7.28) *(Business Small/Medium/Large, MultiUser)*' ) . '</li>'
632
+ . '<li>' . wpbc_recheck_strong_symbols( '**Fix**. Issue of not showing change over days in calendar for single booking resource (capacity = 1), where maximum number of visitors > 1 (8.4.7.29) *(Business Large, MultiUser)*' ) . '</li>'
633
+
634
+ . '</ul>'
635
+ )
636
+ )
637
+ );
638
+ $this->show_separator();
639
+ ?></div><?php
640
 
641
  ////////////////////////////////////////////////////////////////////////////////////////////////////////////
642
  // 8.4
core/lib/wpbc-ajax.php CHANGED
@@ -71,6 +71,21 @@ function wpbc_ajax_WPBC_TIMELINE_NAV() {
71
  }
72
 
73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
74
  function wpbc_ajax_CALCULATE_THE_COST() {
75
 
76
  if ( ! wpdev_check_nonce_in_admin_panel( $_POST['action'] ) ) return false; //FixIn: 7.2.1.10
@@ -278,6 +293,76 @@ function wpbc_ajax_TRASH_RESTORE() {
278
  }
279
 
280
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
281
  function wpbc_ajax_DELETE_APPROVE() {
282
 
283
  global $wpdb;
@@ -518,6 +603,7 @@ if ( is_admin() && ( defined( 'DOING_AJAX' ) ) && ( DOING_AJAX ) ) {
518
 
519
  // Hooks list
520
  $actions_list = array( 'WPBC_TIMELINE_NAV' => 'both'
 
521
  ,'CALCULATE_THE_COST' => 'both'
522
  ,'INSERT_INTO_TABLE' => 'both'
523
  ,'UPDATE_READ_UNREAD' => 'admin'
@@ -525,6 +611,7 @@ if ( is_admin() && ( defined( 'DOING_AJAX' ) ) && ( DOING_AJAX ) ) {
525
  ,'DELETE_APPROVE' => 'admin'
526
  ,'DELETE_BY_VISITOR' => 'both'
527
  ,'TRASH_RESTORE' => 'admin' //FixIn: 6.1.1.10
 
528
  ,'SAVE_BK_COST' => 'admin'
529
  ,'SEND_PAYMENT_REQUEST' => 'admin'
530
  ,'CHANGE_PAYMENT_STATUS' => 'both' // Only Admin for Ajax requests (also exist exectution of the changing status for IPN)
71
  }
72
 
73
 
74
+ //FixIn: Flex TimeLine 1.0
75
+ function wpbc_ajax_WPBC_FLEXTIMELINE_NAV() {
76
+
77
+ // if ( ! wpdev_check_nonce_in_admin_panel( $_POST['action'] ) ) return false; //FixIn: 7.2.1.10 // This line for admin panel
78
+
79
+
80
+ $nonce = ( isset($_REQUEST['wpbc_nonce']) ) ? $_REQUEST['wpbc_nonce'] : '';
81
+ if ( ! wp_verify_nonce( $nonce, $_POST['action'] ) ) { // This nonce is not valid.
82
+ wp_die( sprintf(__('%sError!%s Request do not pass security check! Please refresh the page and try one more time.' ,'booking'),'<strong>','</strong>') ); // Its prevent of showing '0' et the end of request.
83
+ }
84
+ make_bk_action('wpbc_ajax_flex_timeline');
85
+ wp_die(''); // Its prevent of showing '0' et the end of request.
86
+ }
87
+
88
+
89
  function wpbc_ajax_CALCULATE_THE_COST() {
90
 
91
  if ( ! wpdev_check_nonce_in_admin_panel( $_POST['action'] ) ) return false; //FixIn: 7.2.1.10
293
  }
294
 
295
 
296
+ /**
297
+ * Empty Trash
298
+ *
299
+ * @return bool
300
+ */
301
+ function wpbc_ajax_EMPTY_TRASH() { //FixIn: 8.5.2.24
302
+
303
+ global $wpdb;
304
+
305
+ if ( ! wpdev_check_nonce_in_admin_panel() ) return false; //FixIn: 7.2.1.10
306
+
307
+ $user_id = intval( $_POST['user_id'] );
308
+ make_bk_action('check_multiuser_params_for_client_side_by_user_id', $user_id );
309
+
310
+
311
+ $sql = "SELECT * FROM {$wpdb->prefix}booking as bk WHERE bk.trash = 1";
312
+
313
+ $sql = apply_bk_filter('update_where_sql_for_getting_bookings_in_multiuser', $sql , $user_id ); // Get booking resources of this user only: $user_id
314
+
315
+ $bookings_in_trash = $wpdb->get_results( $sql ); //Get ID of all bookings in a trash.
316
+
317
+ //debuge($sql, $bookings_in_trash );
318
+
319
+ $bookings_id_in_trash_arr = array();
320
+
321
+ foreach ( $bookings_in_trash as $booking_obj ) {
322
+ $bookings_id_in_trash_arr[] = $booking_obj->booking_id;
323
+ }
324
+
325
+ if ( ! empty( $bookings_id_in_trash_arr ) ) {
326
+
327
+ $bookings_id_in_trash_str = implode( ',', $bookings_id_in_trash_arr );
328
+
329
+ $is_send_emeils = 0; // Set here to 1, if need to send emails after Empty Trash
330
+ if ( ! empty( $is_send_emeils ) ) {
331
+ $approved_id_str = wpbc_clean_like_string_for_db( $bookings_id_in_trash_str );
332
+ wpbc_send_email_deleted( $approved_id_str, $is_send_emeils, __( 'Empty Trash', 'booking' ) );
333
+ }
334
+
335
+ if ( false === $wpdb->query( "DELETE FROM {$wpdb->prefix}bookingdates WHERE booking_id IN ({$bookings_id_in_trash_str})" ) ) {
336
+ ?>
337
+ <script type="text/javascript">
338
+ var my_message = '<?php echo html_entity_decode( esc_js( get_debuge_error( 'Error during deleting dates in DB', __FILE__, __LINE__ ) ), ENT_QUOTES ); ?>';
339
+ wpbc_admin_show_message( my_message, 'error', 30000 );
340
+ </script> <?php
341
+ die();
342
+ }
343
+
344
+ if ( false === $wpdb->query( "DELETE FROM {$wpdb->prefix}booking WHERE booking_id IN ({$bookings_id_in_trash_str})" ) ) {
345
+ ?>
346
+ <script type="text/javascript">
347
+ var my_message = '<?php echo html_entity_decode( esc_js( get_debuge_error( 'Error during deleting booking in DB', __FILE__, __LINE__ ) ), ENT_QUOTES ); ?>';
348
+ wpbc_admin_show_message( my_message, 'error', 30000 );
349
+ </script> <?php
350
+ die();
351
+ }
352
+ }
353
+ ?><script type="text/javascript">
354
+ <?php foreach ($bookings_id_in_trash_arr as $bk_id) { ?>
355
+ set_booking_row_deleted_in_timeline(<?php echo $bk_id ?>);
356
+ set_booking_row_deleted(<?php echo $bk_id ?>);
357
+ <?php } ?>
358
+ var my_message = '<?php echo html_entity_decode( esc_js( sprintf( __( 'Deleted %d bookings from trash', 'booking' ), count( $bookings_id_in_trash_arr ) ) ), ENT_QUOTES ); ?>';
359
+ wpbc_admin_show_message( my_message, 'success', 3000 );
360
+ </script><?php
361
+
362
+ }
363
+
364
+
365
+
366
  function wpbc_ajax_DELETE_APPROVE() {
367
 
368
  global $wpdb;
603
 
604
  // Hooks list
605
  $actions_list = array( 'WPBC_TIMELINE_NAV' => 'both'
606
+ ,'WPBC_FLEXTIMELINE_NAV' => 'both' //FixIn: Flex TimeLine 1.0
607
  ,'CALCULATE_THE_COST' => 'both'
608
  ,'INSERT_INTO_TABLE' => 'both'
609
  ,'UPDATE_READ_UNREAD' => 'admin'
611
  ,'DELETE_APPROVE' => 'admin'
612
  ,'DELETE_BY_VISITOR' => 'both'
613
  ,'TRASH_RESTORE' => 'admin' //FixIn: 6.1.1.10
614
+ ,'EMPTY_TRASH' => 'admin' //FixIn: 8.5.2.24
615
  ,'SAVE_BK_COST' => 'admin'
616
  ,'SEND_PAYMENT_REQUEST' => 'admin'
617
  ,'CHANGE_PAYMENT_STATUS' => 'both' // Only Admin for Ajax requests (also exist exectution of the changing status for IPN)
core/lib/wpbc-booking-new.php CHANGED
@@ -338,7 +338,26 @@ function wpbc_add_new_booking( $params , $is_edit_booking = false ){
338
 
339
 
340
  $auto_approve_new_bookings_is_active = trim( get_bk_option( 'booking_auto_approve_new_bookings_is_active' ) );
341
- $is_approved_dates = ( $auto_approve_new_bookings_is_active == 'On' ) ? '1' : '0';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
342
 
343
  // // Auto approve if number of visitors < 10
344
  // $booking_form_show = get_form_content ( $formdata, $bktype );
@@ -442,6 +461,41 @@ function wpbc_add_new_booking( $params , $is_edit_booking = false ){
442
  } else
443
  do_action('wpbc_update_cost_of_new_booking',$booking_id, $bktype, $str_dates__dd_mm_yyyy, array($start_time, $end_time ) ,$formdata );
444
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
445
  wpbc_integrate_MailChimp($formdata, $bktype);
446
 
447
  if ( ( $auto_approve_new_bookings_is_active == 'On') && ($is_send_emeils != 0 ) ){
338
 
339
 
340
  $auto_approve_new_bookings_is_active = trim( get_bk_option( 'booking_auto_approve_new_bookings_is_active' ) );
341
+ $is_approved_dates = ( $auto_approve_new_bookings_is_active == 'On' ) ? '1' : '0';
342
+
343
+ //FixIn: 8.5.2.27
344
+ // Auto approve only for specific booking resources
345
+ $booking_resources_to_approve = array();
346
+ $booking_resources_to_approve = apply_filters( 'wpbc_get_booking_resources_arr_to_auto_approve', $booking_resources_to_approve );
347
+ if ( in_array( $bktype, $booking_resources_to_approve ) ) {
348
+ $is_approved_dates = 1;
349
+ }
350
+ /**
351
+ * How to use "Auto approve bookings only for specific booking resources" ?
352
+ * Add code similar to this in your functions.php file in your theme, or in some other php file:
353
+ *
354
+ function my_wpbc_get_booking_resources_arr_to_auto_approve( $resources_to_approve ) {
355
+ $resources_to_approve = array( 9, 12, 33 ); // Array of booking resources ID, which you need to auto approve
356
+ return $resources_to_approve;
357
+ }
358
+ add_filter( 'wpbc_get_booking_resources_arr_to_auto_approve', 'my_wpbc_get_booking_resources_arr_to_auto_approve' );
359
+ */
360
+
361
 
362
  // // Auto approve if number of visitors < 10
363
  // $booking_form_show = get_form_content ( $formdata, $bktype );
461
  } else
462
  do_action('wpbc_update_cost_of_new_booking',$booking_id, $bktype, $str_dates__dd_mm_yyyy, array($start_time, $end_time ) ,$formdata );
463
  }
464
+
465
+ // Useful hook for Google Adwords Conversion tracking. //FixIn: 8.5.2.25
466
+ do_action( 'wpbc_track_new_booking', array(
467
+ 'booking_id' => $booking_id,
468
+ 'resource_id' => $bktype,
469
+ 'dates' => $str_dates__dd_mm_yyyy,
470
+ 'times' => array( $start_time, $end_time ),
471
+ 'formdata' => $formdata
472
+ )
473
+ );
474
+ /**
475
+ * How to use this hook?
476
+ *
477
+ * Add code similar to this in your functions.php file in your theme, or in some other php file:
478
+
479
+ // Track Google Adwords Conversion
480
+ //
481
+ // @param $params = array(
482
+ // 'booking_id' => $booking_id,
483
+ // 'resource_id' => $bktype,
484
+ // 'dates' => $str_dates__dd_mm_yyyy,
485
+ // 'times' => array( $start_time, $end_time ),
486
+ // 'formdata' => $formdata
487
+ // )
488
+ function my_booking_tracking( $params ){
489
+
490
+ ?><!-- Google Code for Booking Conversion Page -->
491
+ <script type="text/javascript">
492
+ // Insert bellow your Google Conversion Code
493
+ </script><?php
494
+ }
495
+ add_action( 'wpbc_track_new_booking', 'my_booking_tracking' );
496
+ */
497
+
498
+
499
  wpbc_integrate_MailChimp($formdata, $bktype);
500
 
501
  if ( ( $auto_approve_new_bookings_is_active == 'On') && ($is_send_emeils != 0 ) ){
core/lib/wpbc_all_translations.php CHANGED
@@ -28,7 +28,7 @@
28
  $wpbc_all_translations[] = __('Booking Form', 'booking');
29
  $wpbc_all_translations[] = __('Check the box, if you want to use simple booking form customization from Free plugin version at Settings - Form page.', 'booking');
30
  $wpbc_all_translations[] = __('Syntax highlighter', 'booking');
31
- $wpbc_all_translations[] = __('Check the box, if you want to use syntax highlighter during customization booking form at Settings - Form page.', 'booking');
32
  $wpbc_all_translations[] = __('CAPTCHA', 'booking');
33
  $wpbc_all_translations[] = __('Check the box to activate CAPTCHA inside the booking form.', 'booking');
34
  $wpbc_all_translations[] = __('Auto-fill fields', 'booking');
@@ -67,6 +67,10 @@
67
  $wpbc_all_translations[] = __('Calendar Overview', 'booking');
68
  $wpbc_all_translations[] = __('Default booking admin page', 'booking');
69
  $wpbc_all_translations[] = __('Select your default view mode of bookings at the booking listing page', 'booking');
 
 
 
 
70
  $wpbc_all_translations[] = __('Day', 'booking');
71
  $wpbc_all_translations[] = __('Week', 'booking');
72
  $wpbc_all_translations[] = __('Month', 'booking');
@@ -235,6 +239,7 @@
235
  $wpbc_all_translations[] = __('Check Premium Features', 'booking');
236
  $wpbc_all_translations[] = __('Upgrade to higher versions', 'booking');
237
  $wpbc_all_translations[] = __('Form Field Configuration', 'booking');
 
238
  $wpbc_all_translations[] = __('Send', 'booking');
239
  $wpbc_all_translations[] = __('Reset to default form', 'booking');
240
  $wpbc_all_translations[] = __('Do you really want to do this ?', 'booking');
@@ -308,6 +313,8 @@
308
  $wpbc_all_translations[] = __('Use check in/out time of plugin, during import .ics feeds', 'booking');
309
  $wpbc_all_translations[] = __('Append check out day', 'booking');
310
  $wpbc_all_translations[] = __('Append one check out day, during import .ics feeds, if activated using check in/out times', 'booking');
 
 
311
  $wpbc_all_translations[] = __('Force import', 'booking');
312
  $wpbc_all_translations[] = __('Import bookings without checking, if such bookings already have been imported.', 'booking');
313
  $wpbc_all_translations[] = __('Trash all imported bookings before new import', 'booking');
@@ -391,6 +398,7 @@
391
  $wpbc_all_translations[] = __('Calendar', 'booking');
392
  $wpbc_all_translations[] = __('Availability', 'booking');
393
  $wpbc_all_translations[] = __('Booking Admin Panel', 'booking');
 
394
  $wpbc_all_translations[] = __('Auto cancellation / approval', 'booking');
395
  $wpbc_all_translations[] = __('Plugin Menu', 'booking');
396
  $wpbc_all_translations[] = __('Uninstall', 'booking');
@@ -573,17 +581,16 @@
573
  $wpbc_all_translations[] = __('Delete selected bookings', 'booking');
574
  $wpbc_all_translations[] = __('Do you really want to delete selected booking(s) ?', 'booking');
575
  $wpbc_all_translations[] = __('Reason of cancellation', 'booking');
 
576
  $wpbc_all_translations[] = __('Read All', 'booking');
577
  $wpbc_all_translations[] = __('Mark as read all bookings', 'booking');
578
  $wpbc_all_translations[] = __('Read', 'booking');
579
  $wpbc_all_translations[] = __('Mark as read selected bookings', 'booking');
580
  $wpbc_all_translations[] = __('Unread', 'booking');
581
  $wpbc_all_translations[] = __('Mark as Unread selected bookings', 'booking');
582
- $wpbc_all_translations[] = __('Show month', 'booking');
583
- $wpbc_all_translations[] = __('Show 3 months', 'booking');
584
- $wpbc_all_translations[] = __('Show year', 'booking');
585
  $wpbc_all_translations[] = __('Show day', 'booking');
586
  $wpbc_all_translations[] = __('Show week', 'booking');
 
587
  $wpbc_all_translations[] = __('Show 2 months', 'booking');
588
  $wpbc_all_translations[] = __('Previous 4 weeks', 'booking');
589
  $wpbc_all_translations[] = __('Previous week', 'booking');
@@ -621,12 +628,16 @@
621
  $wpbc_all_translations[] = __('Reason of cancellation here', 'booking');
622
  $wpbc_all_translations[] = __('Moved to trash', 'booking');
623
  $wpbc_all_translations[] = __('Restored', 'booking');
 
624
  $wpbc_all_translations[] = __('Saved', 'booking');
625
  $wpbc_all_translations[] = __('The code you entered is incorrect', 'booking');
626
  $wpbc_all_translations[] = __('Updating...', 'booking');
627
  $wpbc_all_translations[] = __('Updated successfully', 'booking');
628
  $wpbc_all_translations[] = __('Error!', 'booking');
629
  $wpbc_all_translations[] = __('Probably these date(s) just was booking by other visitor. Please reload this page and make booking again.', 'booking');
 
 
 
630
  $wpbc_all_translations[] = __('Number of months', 'booking');
631
  $wpbc_all_translations[] = __('Paid OK', 'booking');
632
  $wpbc_all_translations[] = __('Email is sent to Visitor after Canceling of booking (moved to trash).', 'booking');
@@ -1736,7 +1747,6 @@
1736
  $wpbc_all_translations[] = __('Custom booking form', 'booking');
1737
  $wpbc_all_translations[] = __('Unavailable dates from other booking resources', 'booking');
1738
  $wpbc_all_translations[] = __('Availability Calendar', 'booking');
1739
- $wpbc_all_translations[] = __('Timeline', 'booking');
1740
  $wpbc_all_translations[] = __('Booking resource(s)', 'booking');
1741
  $wpbc_all_translations[] = __('Show from/to', 'booking');
1742
  $wpbc_all_translations[] = __('All booking resources', 'booking');
@@ -1789,4 +1799,16 @@
1789
  $wpbc_all_translations[] = __('Click Copy to Clipboard.', 'booking');
1790
  $wpbc_all_translations[] = __('For more information, please check %shere%s', 'booking');
1791
  $wpbc_all_translations[] = __('If you have no account on this system, please sign up for a %sdeveloper test account%s to obtain an API Login ID and Signature Key. These keys will authenticate requests to the payment gateway.', 'booking');
 
 
 
 
 
 
 
 
 
 
 
 
1792
  }
28
  $wpbc_all_translations[] = __('Booking Form', 'booking');
29
  $wpbc_all_translations[] = __('Check the box, if you want to use simple booking form customization from Free plugin version at Settings - Form page.', 'booking');
30
  $wpbc_all_translations[] = __('Syntax highlighter', 'booking');
31
+ $wpbc_all_translations[] = __('Check the box, if you want to use syntax highlighter during customization booking form.', 'booking');
32
  $wpbc_all_translations[] = __('CAPTCHA', 'booking');
33
  $wpbc_all_translations[] = __('Check the box to activate CAPTCHA inside the booking form.', 'booking');
34
  $wpbc_all_translations[] = __('Auto-fill fields', 'booking');
67
  $wpbc_all_translations[] = __('Calendar Overview', 'booking');
68
  $wpbc_all_translations[] = __('Default booking admin page', 'booking');
69
  $wpbc_all_translations[] = __('Select your default view mode of bookings at the booking listing page', 'booking');
70
+ $wpbc_all_translations[] = __('Timeline type', 'booking');
71
+ $wpbc_all_translations[] = __('Select type of timeline to load', 'booking');
72
+ $wpbc_all_translations[] = __('Flex Timeline', 'booking');
73
+ $wpbc_all_translations[] = __('Old Timeline', 'booking');
74
  $wpbc_all_translations[] = __('Day', 'booking');
75
  $wpbc_all_translations[] = __('Week', 'booking');
76
  $wpbc_all_translations[] = __('Month', 'booking');
239
  $wpbc_all_translations[] = __('Check Premium Features', 'booking');
240
  $wpbc_all_translations[] = __('Upgrade to higher versions', 'booking');
241
  $wpbc_all_translations[] = __('Form Field Configuration', 'booking');
242
+ $wpbc_all_translations[] = __('You can add %sTime Slots%s to booking form, by activating and configure %sTime Slots%s field in booking form (below) or by adding this field from (above) toolbar.', 'booking');
243
  $wpbc_all_translations[] = __('Send', 'booking');
244
  $wpbc_all_translations[] = __('Reset to default form', 'booking');
245
  $wpbc_all_translations[] = __('Do you really want to do this ?', 'booking');
313
  $wpbc_all_translations[] = __('Use check in/out time of plugin, during import .ics feeds', 'booking');
314
  $wpbc_all_translations[] = __('Append check out day', 'booking');
315
  $wpbc_all_translations[] = __('Append one check out day, during import .ics feeds, if activated using check in/out times', 'booking');
316
+ $wpbc_all_translations[] = __('Export only approved bookings', 'booking');
317
+ $wpbc_all_translations[] = __('Enable of export only approved bookings in .ics feeds', 'booking');
318
  $wpbc_all_translations[] = __('Force import', 'booking');
319
  $wpbc_all_translations[] = __('Import bookings without checking, if such bookings already have been imported.', 'booking');
320
  $wpbc_all_translations[] = __('Trash all imported bookings before new import', 'booking');
398
  $wpbc_all_translations[] = __('Calendar', 'booking');
399
  $wpbc_all_translations[] = __('Availability', 'booking');
400
  $wpbc_all_translations[] = __('Booking Admin Panel', 'booking');
401
+ $wpbc_all_translations[] = __('Timeline', 'booking');
402
  $wpbc_all_translations[] = __('Auto cancellation / approval', 'booking');
403
  $wpbc_all_translations[] = __('Plugin Menu', 'booking');
404
  $wpbc_all_translations[] = __('Uninstall', 'booking');
581
  $wpbc_all_translations[] = __('Delete selected bookings', 'booking');
582
  $wpbc_all_translations[] = __('Do you really want to delete selected booking(s) ?', 'booking');
583
  $wpbc_all_translations[] = __('Reason of cancellation', 'booking');
584
+ $wpbc_all_translations[] = __('Empty Trash', 'booking');
585
  $wpbc_all_translations[] = __('Read All', 'booking');
586
  $wpbc_all_translations[] = __('Mark as read all bookings', 'booking');
587
  $wpbc_all_translations[] = __('Read', 'booking');
588
  $wpbc_all_translations[] = __('Mark as read selected bookings', 'booking');
589
  $wpbc_all_translations[] = __('Unread', 'booking');
590
  $wpbc_all_translations[] = __('Mark as Unread selected bookings', 'booking');
 
 
 
591
  $wpbc_all_translations[] = __('Show day', 'booking');
592
  $wpbc_all_translations[] = __('Show week', 'booking');
593
+ $wpbc_all_translations[] = __('Show month', 'booking');
594
  $wpbc_all_translations[] = __('Show 2 months', 'booking');
595
  $wpbc_all_translations[] = __('Previous 4 weeks', 'booking');
596
  $wpbc_all_translations[] = __('Previous week', 'booking');
628
  $wpbc_all_translations[] = __('Reason of cancellation here', 'booking');
629
  $wpbc_all_translations[] = __('Moved to trash', 'booking');
630
  $wpbc_all_translations[] = __('Restored', 'booking');
631
+ $wpbc_all_translations[] = __('Deleted %d bookings from trash', 'booking');
632
  $wpbc_all_translations[] = __('Saved', 'booking');
633
  $wpbc_all_translations[] = __('The code you entered is incorrect', 'booking');
634
  $wpbc_all_translations[] = __('Updating...', 'booking');
635
  $wpbc_all_translations[] = __('Updated successfully', 'booking');
636
  $wpbc_all_translations[] = __('Error!', 'booking');
637
  $wpbc_all_translations[] = __('Probably these date(s) just was booking by other visitor. Please reload this page and make booking again.', 'booking');
638
+ $wpbc_all_translations[] = __('Check the box, if you want to use syntax highlighter during customization booking form at Settings - Form page.', 'booking');
639
+ $wpbc_all_translations[] = __('Show 3 months', 'booking');
640
+ $wpbc_all_translations[] = __('Show year', 'booking');
641
  $wpbc_all_translations[] = __('Number of months', 'booking');
642
  $wpbc_all_translations[] = __('Paid OK', 'booking');
643
  $wpbc_all_translations[] = __('Email is sent to Visitor after Canceling of booking (moved to trash).', 'booking');
1747
  $wpbc_all_translations[] = __('Custom booking form', 'booking');
1748
  $wpbc_all_translations[] = __('Unavailable dates from other booking resources', 'booking');
1749
  $wpbc_all_translations[] = __('Availability Calendar', 'booking');
 
1750
  $wpbc_all_translations[] = __('Booking resource(s)', 'booking');
1751
  $wpbc_all_translations[] = __('Show from/to', 'booking');
1752
  $wpbc_all_translations[] = __('All booking resources', 'booking');
1799
  $wpbc_all_translations[] = __('Click Copy to Clipboard.', 'booking');
1800
  $wpbc_all_translations[] = __('For more information, please check %shere%s', 'booking');
1801
  $wpbc_all_translations[] = __('If you have no account on this system, please sign up for a %sdeveloper test account%s to obtain an API Login ID and Signature Key. These keys will authenticate requests to the payment gateway.', 'booking');
1802
+ $wpbc_all_translations[] = __('Loading', 'booking');
1803
+ $wpbc_all_translations[] = __('%s - inserting link to approve booking in 1 mouse click ', 'booking');
1804
+ $wpbc_all_translations[] = __('%s - inserting link to set booking as pending in 1 mouse click ', 'booking');
1805
+ $wpbc_all_translations[] = __('%s - inserting link for move booking to trash in 1 mouse click ', 'booking');
1806
+ $wpbc_all_translations[] = __('Flex Search Form Template', 'booking');
1807
+ $wpbc_all_translations[] = __('Flex', 'booking');
1808
+ $wpbc_all_translations[] = __('Booking %s have been approved.', 'booking');
1809
+ $wpbc_all_translations[] = __('Booking %s have been set as pending.', 'booking');
1810
+ $wpbc_all_translations[] = __('Booking %s have been moved to trash.', 'booking');
1811
+ $wpbc_all_translations[] = __('Find lost bookings', 'booking');
1812
+ $wpbc_all_translations[] = __('require correct configuration of this option: %sURL to edit bookings%s', 'booking');
1813
+ $wpbc_all_translations[] = __('You may test your integration over HTTP. However, live integrations must use HTTPS.', 'booking');
1814
  }
core/lib/wpdev-booking-class.php CHANGED
@@ -3,7 +3,7 @@ if ( ! defined( 'ABSPATH' ) ) exit;
3
 
4
  class wpdev_booking {
5
 
6
- private $popover_front_end_js_is_writed;
7
 
8
  // <editor-fold defaultstate="collapsed" desc=" C O N S T R U C T O R & P r o p e r t i e s ">
9
 
@@ -1061,7 +1061,15 @@ class wpdev_booking {
1061
 
1062
  //if ( function_exists( 'wpbc_br_cache' ) ) $br_cache = wpbc_br_cache(); // Init booking resources cache
1063
 
1064
-
 
 
 
 
 
 
 
 
1065
  if ( ! isset( $attr['type' ] ) ) {
1066
  $attr['type' ] = wpbc_get_default_resource();
1067
  }
3
 
4
  class wpdev_booking {
5
 
6
+ public $popover_front_end_js_is_writed; //FixIn: Flex TimeLine 1.0 -- previos this was private and not public property
7
 
8
  // <editor-fold defaultstate="collapsed" desc=" C O N S T R U C T O R & P r o p e r t i e s ">
9
 
1061
 
1062
  //if ( function_exists( 'wpbc_br_cache' ) ) $br_cache = wpbc_br_cache(); // Init booking resources cache
1063
 
1064
+ //FixIn: 8.5.2.20
1065
+ $booking_timeline_load = get_bk_option( 'booking_timeline_load' );
1066
+ if ( 'timeline_v1' != $booking_timeline_load ){
1067
+ $timeline_results = bookingflextimeline_shortcode($attr);
1068
+ return $timeline_results;
1069
+ }
1070
+
1071
+
1072
+
1073
  if ( ! isset( $attr['type' ] ) ) {
1074
  $attr['type' ] = wpbc_get_default_resource();
1075
  }
core/timeline/flex-timeline.php ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * @package Load Flex Timeline files
4
+ * @description Templates for Timeline
5
+ *
6
+ * Author: wpdevelop, oplugins
7
+ * @link http://oplugins.com/
8
+ * @email info@oplugins.com
9
+ *
10
+ * @version 1.0
11
+ * @modified 2019-06-28 11:20
12
+ */
13
+
14
+
15
+ /**
16
+ * Delete Changes
17
+ * If we need to rollback all these changes, so then need,
18
+ *
19
+ *
20
+ * 2. And search for this '//FixIn: Flex TimeLine 1.0'
21
+ *
22
+ * 3. Comment in wp-config.php this line
23
+ if ( ! defined( 'SCRIPT_DEBUG' ) ) { define( 'SCRIPT_DEBUG', true ); }
24
+ * for do not load full src files.
25
+ */
26
+
27
+ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
28
+
29
+
30
+ require_once( WPBC_PLUGIN_DIR . '/core/timeline/v2/wpbc-class-timeline_v2.php' ); // Version 2.0 of Timeline
core/timeline/v2/_out/timeline_v2.js ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "use strict";
2
+
3
+ function wpbc_flextimeline_nav(timeline_obj, nav_step) {
4
+ jQuery(".wpbc_timeline_front_end").trigger("timeline_nav", [timeline_obj, nav_step]); //FixIn:7.0.1.48
5
+ // jQuery( '#'+timeline_obj.html_client_id + ' .wpbc_tl_prev,#'+timeline_obj.html_client_id + ' .wpbc_tl_next').remove();
6
+ // jQuery('#'+timeline_obj.html_client_id + ' .wpbc_tl_title').html( '<span class="glyphicon glyphicon-refresh wpbc_spin"></span> &nbsp Loading...' ); // '<div style="height:20px;width:100%;text-align:center;margin:15px auto;">Loading ... <img style="vertical-align:middle;box-shadow:none;width:14px;" src="'+wpdev_bk_plugin_url+'/assets/img/ajax-loader.gif"><//div>'
7
+
8
+ jQuery('#' + timeline_obj.html_client_id + ' .flex_tl_prev,#' + timeline_obj.html_client_id + ' .flex_tl_next').remove();
9
+ jQuery('#' + timeline_obj.html_client_id + ' .flex_tl_title').html('<span class="glyphicon glyphicon-refresh wpbc_spin"></span> &nbsp Loading...'); // '<div style="height:20px;width:100%;text-align:center;margin:15px auto;">Loading ... <img style="vertical-align:middle;box-shadow:none;width:14px;" src="'+wpdev_bk_plugin_url+'/assets/img/ajax-loader.gif"><//div>'
10
+
11
+ if (jQuery.isFunction(jQuery(".popover_click.popover_bottom").popover)) //FixIn: 7.0.1.2 - 2016-12-10
12
+ jQuery('.popover_click.popover_bottom').popover('hide'); //Hide all opned popovers
13
+
14
+ jQuery.ajax({
15
+ url: wpbc_ajaxurl,
16
+ type: 'POST',
17
+ success: function success(data, textStatus) {
18
+ // Note, here we direct show HTML to TimeLine frame
19
+ if (textStatus == 'success') {
20
+ jQuery('#' + timeline_obj.html_client_id + ' .wpbc_timeline_ajax_replace').html(data);
21
+ return true;
22
+ }
23
+ },
24
+ error: function error(XMLHttpRequest, textStatus, errorThrown) {
25
+ window.status = 'Ajax Error! Status: ' + textStatus;
26
+ alert('Ajax Error! Status: ' + XMLHttpRequest.status + ' ' + XMLHttpRequest.statusText);
27
+ },
28
+ // beforeSend: someFunction,
29
+ data: {
30
+ action: 'WPBC_FLEXTIMELINE_NAV',
31
+ timeline_obj: timeline_obj,
32
+ nav_step: nav_step,
33
+ wpdev_active_locale: wpbc_active_locale,
34
+ wpbc_nonce: document.getElementById('wpbc_nonce_' + timeline_obj.html_client_id).value
35
+ }
36
+ });
37
+ }
38
+ //# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInYyL19zcmMvdGltZWxpbmVfdjIuanMiXSwibmFtZXMiOlsid3BiY19mbGV4dGltZWxpbmVfbmF2IiwidGltZWxpbmVfb2JqIiwibmF2X3N0ZXAiLCJqUXVlcnkiLCJ0cmlnZ2VyIiwiaHRtbF9jbGllbnRfaWQiLCJyZW1vdmUiLCJodG1sIiwiaXNGdW5jdGlvbiIsInBvcG92ZXIiLCJhamF4IiwidXJsIiwid3BiY19hamF4dXJsIiwidHlwZSIsInN1Y2Nlc3MiLCJkYXRhIiwidGV4dFN0YXR1cyIsImVycm9yIiwiWE1MSHR0cFJlcXVlc3QiLCJlcnJvclRocm93biIsIndpbmRvdyIsInN0YXR1cyIsImFsZXJ0Iiwic3RhdHVzVGV4dCIsImFjdGlvbiIsIndwZGV2X2FjdGl2ZV9sb2NhbGUiLCJ3cGJjX2FjdGl2ZV9sb2NhbGUiLCJ3cGJjX25vbmNlIiwiZG9jdW1lbnQiLCJnZXRFbGVtZW50QnlJZCIsInZhbHVlIl0sIm1hcHBpbmdzIjoiOztBQUNBLFNBQVNBLHFCQUFULENBQWdDQyxZQUFoQyxFQUE4Q0MsUUFBOUMsRUFBd0Q7QUFFcERDLEVBQUFBLE1BQU0sQ0FBRSwwQkFBRixDQUFOLENBQXFDQyxPQUFyQyxDQUE4QyxjQUE5QyxFQUErRCxDQUFFSCxZQUFGLEVBQWdCQyxRQUFoQixDQUEvRCxFQUZvRCxDQUVnRDtBQUVwRztBQUNBOztBQUVBQyxFQUFBQSxNQUFNLENBQUUsTUFBSUYsWUFBWSxDQUFDSSxjQUFqQixHQUFrQyxrQkFBbEMsR0FBcURKLFlBQVksQ0FBQ0ksY0FBbEUsR0FBbUYsZ0JBQXJGLENBQU4sQ0FBNkdDLE1BQTdHO0FBQ0FILEVBQUFBLE1BQU0sQ0FBQyxNQUFJRixZQUFZLENBQUNJLGNBQWpCLEdBQWtDLGlCQUFuQyxDQUFOLENBQTRERSxJQUE1RCxDQUFrRSw4RUFBbEUsRUFSb0QsQ0FRcUc7O0FBSXpKLE1BQUtKLE1BQU0sQ0FBQ0ssVUFBUCxDQUFtQkwsTUFBTSxDQUFDLCtCQUFELENBQU4sQ0FBeUNNLE9BQTVELENBQUwsRUFBb0Y7QUFDaEZOLElBQUFBLE1BQU0sQ0FBQywrQkFBRCxDQUFOLENBQXdDTSxPQUF4QyxDQUFpRCxNQUFqRCxFQWJnRCxDQWFnQzs7QUFFcEZOLEVBQUFBLE1BQU0sQ0FBQ08sSUFBUCxDQUFZO0FBQ1JDLElBQUFBLEdBQUcsRUFBRUMsWUFERztBQUVSQyxJQUFBQSxJQUFJLEVBQUMsTUFGRztBQUdSQyxJQUFBQSxPQUFPLEVBQUUsaUJBQVdDLElBQVgsRUFBaUJDLFVBQWpCLEVBQTZCO0FBQWtDO0FBQzVELFVBQUlBLFVBQVUsSUFBSSxTQUFsQixFQUE2QjtBQUN6QmIsUUFBQUEsTUFBTSxDQUFDLE1BQU1GLFlBQVksQ0FBQ0ksY0FBbkIsR0FBb0MsOEJBQXJDLENBQU4sQ0FBNEVFLElBQTVFLENBQWtGUSxJQUFsRjtBQUNBLGVBQU8sSUFBUDtBQUNIO0FBQ0osS0FSRDtBQVNSRSxJQUFBQSxLQUFLLEVBQUcsZUFBV0MsY0FBWCxFQUEyQkYsVUFBM0IsRUFBdUNHLFdBQXZDLEVBQW1EO0FBQy9DQyxNQUFBQSxNQUFNLENBQUNDLE1BQVAsR0FBZ0IseUJBQXlCTCxVQUF6QztBQUNBTSxNQUFBQSxLQUFLLENBQUUseUJBQXlCSixjQUFjLENBQUNHLE1BQXhDLEdBQWlELEdBQWpELEdBQXVESCxjQUFjLENBQUNLLFVBQXhFLENBQUw7QUFDSCxLQVpEO0FBYVI7QUFDQVIsSUFBQUEsSUFBSSxFQUFDO0FBQ0dTLE1BQUFBLE1BQU0sRUFBYyx1QkFEdkI7QUFFR3ZCLE1BQUFBLFlBQVksRUFBUUEsWUFGdkI7QUFHR0MsTUFBQUEsUUFBUSxFQUFZQSxRQUh2QjtBQUlHdUIsTUFBQUEsbUJBQW1CLEVBQUNDLGtCQUp2QjtBQUtHQyxNQUFBQSxVQUFVLEVBQVVDLFFBQVEsQ0FBQ0MsY0FBVCxDQUF3QixnQkFBZTVCLFlBQVksQ0FBQ0ksY0FBcEQsRUFBb0V5QjtBQUwzRjtBQWRHLEdBQVo7QUFzQkgiLCJzb3VyY2VzQ29udGVudCI6WyJcclxuZnVuY3Rpb24gd3BiY19mbGV4dGltZWxpbmVfbmF2KCB0aW1lbGluZV9vYmosIG5hdl9zdGVwICl7XHJcblxyXG4gICAgalF1ZXJ5KCBcIi53cGJjX3RpbWVsaW5lX2Zyb250X2VuZFwiICkudHJpZ2dlciggXCJ0aW1lbGluZV9uYXZcIiAsIFsgdGltZWxpbmVfb2JqLCBuYXZfc3RlcCBdICk7ICAgICAgICAvL0ZpeEluOjcuMC4xLjQ4XHJcblxyXG4gICAgLy8galF1ZXJ5KCAnIycrdGltZWxpbmVfb2JqLmh0bWxfY2xpZW50X2lkICsgJyAud3BiY190bF9wcmV2LCMnK3RpbWVsaW5lX29iai5odG1sX2NsaWVudF9pZCArICcgLndwYmNfdGxfbmV4dCcpLnJlbW92ZSgpO1xyXG4gICAgLy8galF1ZXJ5KCcjJyt0aW1lbGluZV9vYmouaHRtbF9jbGllbnRfaWQgKyAnIC53cGJjX3RsX3RpdGxlJykuaHRtbCggJzxzcGFuIGNsYXNzPVwiZ2x5cGhpY29uIGdseXBoaWNvbi1yZWZyZXNoIHdwYmNfc3BpblwiPjwvc3Bhbj4gJm5ic3AgTG9hZGluZy4uLicgKTsgICAgICAvLyAnPGRpdiBzdHlsZT1cImhlaWdodDoyMHB4O3dpZHRoOjEwMCU7dGV4dC1hbGlnbjpjZW50ZXI7bWFyZ2luOjE1cHggYXV0bztcIj5Mb2FkaW5nIC4uLiA8aW1nIHN0eWxlPVwidmVydGljYWwtYWxpZ246bWlkZGxlO2JveC1zaGFkb3c6bm9uZTt3aWR0aDoxNHB4O1wiIHNyYz1cIicrd3BkZXZfYmtfcGx1Z2luX3VybCsnL2Fzc2V0cy9pbWcvYWpheC1sb2FkZXIuZ2lmXCI+PC8vZGl2PidcclxuXHJcbiAgICBqUXVlcnkoICcjJyt0aW1lbGluZV9vYmouaHRtbF9jbGllbnRfaWQgKyAnIC5mbGV4X3RsX3ByZXYsIycrdGltZWxpbmVfb2JqLmh0bWxfY2xpZW50X2lkICsgJyAuZmxleF90bF9uZXh0JykucmVtb3ZlKCk7XHJcbiAgICBqUXVlcnkoJyMnK3RpbWVsaW5lX29iai5odG1sX2NsaWVudF9pZCArICcgLmZsZXhfdGxfdGl0bGUnKS5odG1sKCAnPHNwYW4gY2xhc3M9XCJnbHlwaGljb24gZ2x5cGhpY29uLXJlZnJlc2ggd3BiY19zcGluXCI+PC9zcGFuPiAmbmJzcCBMb2FkaW5nLi4uJyApOyAgICAgIC8vICc8ZGl2IHN0eWxlPVwiaGVpZ2h0OjIwcHg7d2lkdGg6MTAwJTt0ZXh0LWFsaWduOmNlbnRlcjttYXJnaW46MTVweCBhdXRvO1wiPkxvYWRpbmcgLi4uIDxpbWcgc3R5bGU9XCJ2ZXJ0aWNhbC1hbGlnbjptaWRkbGU7Ym94LXNoYWRvdzpub25lO3dpZHRoOjE0cHg7XCIgc3JjPVwiJyt3cGRldl9ia19wbHVnaW5fdXJsKycvYXNzZXRzL2ltZy9hamF4LWxvYWRlci5naWZcIj48Ly9kaXY+J1xyXG5cclxuXHJcblxyXG4gICAgaWYgKCBqUXVlcnkuaXNGdW5jdGlvbiggalF1ZXJ5KFwiLnBvcG92ZXJfY2xpY2sucG9wb3Zlcl9ib3R0b21cIiApLnBvcG92ZXIgKSAgKSAgICAgICAvL0ZpeEluOiA3LjAuMS4yICAtIDIwMTYtMTItMTBcclxuICAgICAgICBqUXVlcnkoJy5wb3BvdmVyX2NsaWNrLnBvcG92ZXJfYm90dG9tJykucG9wb3ZlciggJ2hpZGUnICk7ICAgICAgICAgICAgICAgICAgICAgIC8vSGlkZSBhbGwgb3BuZWQgcG9wb3ZlcnNcclxuXHJcbiAgICBqUXVlcnkuYWpheCh7XHJcbiAgICAgICAgdXJsOiB3cGJjX2FqYXh1cmwsXHJcbiAgICAgICAgdHlwZTonUE9TVCcsXHJcbiAgICAgICAgc3VjY2VzczogZnVuY3Rpb24gKCBkYXRhLCB0ZXh0U3RhdHVzICl7ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgLy8gTm90ZSwgIGhlcmUgd2UgZGlyZWN0IHNob3cgSFRNTCB0byBUaW1lTGluZSBmcmFtZVxyXG4gICAgICAgICAgICAgICAgICAgIGlmKCB0ZXh0U3RhdHVzID09ICdzdWNjZXNzJykge1xyXG4gICAgICAgICAgICAgICAgICAgICAgICBqUXVlcnkoJyMnICsgdGltZWxpbmVfb2JqLmh0bWxfY2xpZW50X2lkICsgJyAud3BiY190aW1lbGluZV9hamF4X3JlcGxhY2UnICkuaHRtbCggZGF0YSApO1xyXG4gICAgICAgICAgICAgICAgICAgICAgICByZXR1cm4gdHJ1ZTtcclxuICAgICAgICAgICAgICAgICAgICB9XHJcbiAgICAgICAgICAgICAgICB9LFxyXG4gICAgICAgIGVycm9yOiAgZnVuY3Rpb24gKCBYTUxIdHRwUmVxdWVzdCwgdGV4dFN0YXR1cywgZXJyb3JUaHJvd24pe1xyXG4gICAgICAgICAgICAgICAgICAgIHdpbmRvdy5zdGF0dXMgPSAnQWpheCBFcnJvciEgU3RhdHVzOiAnICsgdGV4dFN0YXR1cztcclxuICAgICAgICAgICAgICAgICAgICBhbGVydCggJ0FqYXggRXJyb3IhIFN0YXR1czogJyArIFhNTEh0dHBSZXF1ZXN0LnN0YXR1cyArICcgJyArIFhNTEh0dHBSZXF1ZXN0LnN0YXR1c1RleHQgKTtcclxuICAgICAgICAgICAgICAgIH0sXHJcbiAgICAgICAgLy8gYmVmb3JlU2VuZDogc29tZUZ1bmN0aW9uLFxyXG4gICAgICAgIGRhdGE6e1xyXG4gICAgICAgICAgICAgICAgYWN0aW9uOiAgICAgICAgICAgICAnV1BCQ19GTEVYVElNRUxJTkVfTkFWJyxcclxuICAgICAgICAgICAgICAgIHRpbWVsaW5lX29iajogICAgICAgdGltZWxpbmVfb2JqLFxyXG4gICAgICAgICAgICAgICAgbmF2X3N0ZXA6ICAgICAgICAgICBuYXZfc3RlcCxcclxuICAgICAgICAgICAgICAgIHdwZGV2X2FjdGl2ZV9sb2NhbGU6d3BiY19hY3RpdmVfbG9jYWxlLFxyXG4gICAgICAgICAgICAgICAgd3BiY19ub25jZTogICAgICAgICBkb2N1bWVudC5nZXRFbGVtZW50QnlJZCgnd3BiY19ub25jZV8nKyB0aW1lbGluZV9vYmouaHRtbF9jbGllbnRfaWQpLnZhbHVlXHJcbiAgICAgICAgfVxyXG4gICAgfSk7XHJcbn1cclxuXHJcbiJdLCJmaWxlIjoidjIvX291dC90aW1lbGluZV92Mi5qcyJ9
core/timeline/v2/_out/timeline_v2.min.js ADDED
@@ -0,0 +1,2 @@
 
 
1
+ "use strict";function wpbc_flextimeline_nav(_,e){jQuery(".wpbc_timeline_front_end").trigger("timeline_nav",[_,e]),jQuery("#"+_.html_client_id+" .flex_tl_prev,#"+_.html_client_id+" .flex_tl_next").remove(),jQuery("#"+_.html_client_id+" .flex_tl_title").html('<span class="glyphicon glyphicon-refresh wpbc_spin"></span> &nbsp Loading...'),jQuery.isFunction(jQuery(".popover_click.popover_bottom").popover)&&jQuery(".popover_click.popover_bottom").popover("hide"),jQuery.ajax({url:wpbc_ajaxurl,type:"POST",success:function(e,t){if("success"==t)return jQuery("#"+_.html_client_id+" .wpbc_timeline_ajax_replace").html(e),!0},error:function(e,t,_){window.status="Ajax Error! Status: "+t,alert("Ajax Error! Status: "+e.status+" "+e.statusText)},data:{action:"WPBC_FLEXTIMELINE_NAV",timeline_obj:_,nav_step:e,wpdev_active_locale:wpbc_active_locale,wpbc_nonce:document.getElementById("wpbc_nonce_"+_.html_client_id).value}})}
2
+ //# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInYyL19vdXQvdGltZWxpbmVfdjIuanMiXSwibmFtZXMiOlsid3BiY19mbGV4dGltZWxpbmVfbmF2IiwidGltZWxpbmVfb2JqIiwibmF2X3N0ZXAiLCJqUXVlcnkiLCJ0cmlnZ2VyIiwiaHRtbF9jbGllbnRfaWQiLCJyZW1vdmUiLCJodG1sIiwiaXNGdW5jdGlvbiIsInBvcG92ZXIiLCJhamF4IiwidXJsIiwid3BiY19hamF4dXJsIiwidHlwZSIsInN1Y2Nlc3MiLCJkYXRhIiwidGV4dFN0YXR1cyIsImVycm9yIiwiWE1MSHR0cFJlcXVlc3QiLCJlcnJvclRocm93biIsIndpbmRvdyIsInN0YXR1cyIsImFsZXJ0Iiwic3RhdHVzVGV4dCIsImFjdGlvbiIsIndwZGV2X2FjdGl2ZV9sb2NhbGUiLCJ3cGJjX2FjdGl2ZV9sb2NhbGUiLCJ3cGJjX25vbmNlIiwiZG9jdW1lbnQiLCJnZXRFbGVtZW50QnlJZCIsInZhbHVlIl0sIm1hcHBpbmdzIjoiQUFBQSxhQUVBLFNBQVNBLHNCQUFzQkMsRUFBY0MsR0FDM0NDLE9BQU8sNEJBQTRCQyxRQUFRLGVBQWdCLENBQUNILEVBQWNDLElBSTFFQyxPQUFPLElBQU1GLEVBQWFJLGVBQWlCLG1CQUFxQkosRUFBYUksZUFBaUIsa0JBQWtCQyxTQUNoSEgsT0FBTyxJQUFNRixFQUFhSSxlQUFpQixtQkFBbUJFLEtBQUssZ0ZBRS9ESixPQUFPSyxXQUFXTCxPQUFPLGlDQUFpQ00sVUFDNUROLE9BQU8saUNBQWlDTSxRQUFRLFFBRWxETixPQUFPTyxLQUFLLENBQ1ZDLElBQUtDLGFBQ0xDLEtBQU0sT0FDTkMsUUFBUyxTQUFpQkMsRUFBTUMsR0FFOUIsR0FBa0IsV0FBZEEsRUFFRixPQURBYixPQUFPLElBQU1GLEVBQWFJLGVBQWlCLGdDQUFnQ0UsS0FBS1EsSUFDekUsR0FHWEUsTUFBTyxTQUFlQyxFQUFnQkYsRUFBWUcsR0FDaERDLE9BQU9DLE9BQVMsdUJBQXlCTCxFQUN6Q00sTUFBTSx1QkFBeUJKLEVBQWVHLE9BQVMsSUFBTUgsRUFBZUssYUFHOUVSLEtBQU0sQ0FDSlMsT0FBUSx3QkFDUnZCLGFBQWNBLEVBQ2RDLFNBQVVBLEVBQ1Z1QixvQkFBcUJDLG1CQUNyQkMsV0FBWUMsU0FBU0MsZUFBZSxjQUFnQjVCLEVBQWFJLGdCQUFnQnlCIiwiZmlsZSI6InYyL19vdXQvdGltZWxpbmVfdjIubWluLmpzIiwic291cmNlc0NvbnRlbnQiOlsiXCJ1c2Ugc3RyaWN0XCI7XG5cbmZ1bmN0aW9uIHdwYmNfZmxleHRpbWVsaW5lX25hdih0aW1lbGluZV9vYmosIG5hdl9zdGVwKSB7XG4gIGpRdWVyeShcIi53cGJjX3RpbWVsaW5lX2Zyb250X2VuZFwiKS50cmlnZ2VyKFwidGltZWxpbmVfbmF2XCIsIFt0aW1lbGluZV9vYmosIG5hdl9zdGVwXSk7IC8vRml4SW46Ny4wLjEuNDhcbiAgLy8galF1ZXJ5KCAnIycrdGltZWxpbmVfb2JqLmh0bWxfY2xpZW50X2lkICsgJyAud3BiY190bF9wcmV2LCMnK3RpbWVsaW5lX29iai5odG1sX2NsaWVudF9pZCArICcgLndwYmNfdGxfbmV4dCcpLnJlbW92ZSgpO1xuICAvLyBqUXVlcnkoJyMnK3RpbWVsaW5lX29iai5odG1sX2NsaWVudF9pZCArICcgLndwYmNfdGxfdGl0bGUnKS5odG1sKCAnPHNwYW4gY2xhc3M9XCJnbHlwaGljb24gZ2x5cGhpY29uLXJlZnJlc2ggd3BiY19zcGluXCI+PC9zcGFuPiAmbmJzcCBMb2FkaW5nLi4uJyApOyAgICAgIC8vICc8ZGl2IHN0eWxlPVwiaGVpZ2h0OjIwcHg7d2lkdGg6MTAwJTt0ZXh0LWFsaWduOmNlbnRlcjttYXJnaW46MTVweCBhdXRvO1wiPkxvYWRpbmcgLi4uIDxpbWcgc3R5bGU9XCJ2ZXJ0aWNhbC1hbGlnbjptaWRkbGU7Ym94LXNoYWRvdzpub25lO3dpZHRoOjE0cHg7XCIgc3JjPVwiJyt3cGRldl9ia19wbHVnaW5fdXJsKycvYXNzZXRzL2ltZy9hamF4LWxvYWRlci5naWZcIj48Ly9kaXY+J1xuXG4gIGpRdWVyeSgnIycgKyB0aW1lbGluZV9vYmouaHRtbF9jbGllbnRfaWQgKyAnIC5mbGV4X3RsX3ByZXYsIycgKyB0aW1lbGluZV9vYmouaHRtbF9jbGllbnRfaWQgKyAnIC5mbGV4X3RsX25leHQnKS5yZW1vdmUoKTtcbiAgalF1ZXJ5KCcjJyArIHRpbWVsaW5lX29iai5odG1sX2NsaWVudF9pZCArICcgLmZsZXhfdGxfdGl0bGUnKS5odG1sKCc8c3BhbiBjbGFzcz1cImdseXBoaWNvbiBnbHlwaGljb24tcmVmcmVzaCB3cGJjX3NwaW5cIj48L3NwYW4+ICZuYnNwIExvYWRpbmcuLi4nKTsgLy8gJzxkaXYgc3R5bGU9XCJoZWlnaHQ6MjBweDt3aWR0aDoxMDAlO3RleHQtYWxpZ246Y2VudGVyO21hcmdpbjoxNXB4IGF1dG87XCI+TG9hZGluZyAuLi4gPGltZyBzdHlsZT1cInZlcnRpY2FsLWFsaWduOm1pZGRsZTtib3gtc2hhZG93Om5vbmU7d2lkdGg6MTRweDtcIiBzcmM9XCInK3dwZGV2X2JrX3BsdWdpbl91cmwrJy9hc3NldHMvaW1nL2FqYXgtbG9hZGVyLmdpZlwiPjwvL2Rpdj4nXG5cbiAgaWYgKGpRdWVyeS5pc0Z1bmN0aW9uKGpRdWVyeShcIi5wb3BvdmVyX2NsaWNrLnBvcG92ZXJfYm90dG9tXCIpLnBvcG92ZXIpKSAvL0ZpeEluOiA3LjAuMS4yICAtIDIwMTYtMTItMTBcbiAgICBqUXVlcnkoJy5wb3BvdmVyX2NsaWNrLnBvcG92ZXJfYm90dG9tJykucG9wb3ZlcignaGlkZScpOyAvL0hpZGUgYWxsIG9wbmVkIHBvcG92ZXJzXG5cbiAgalF1ZXJ5LmFqYXgoe1xuICAgIHVybDogd3BiY19hamF4dXJsLFxuICAgIHR5cGU6ICdQT1NUJyxcbiAgICBzdWNjZXNzOiBmdW5jdGlvbiBzdWNjZXNzKGRhdGEsIHRleHRTdGF0dXMpIHtcbiAgICAgIC8vIE5vdGUsICBoZXJlIHdlIGRpcmVjdCBzaG93IEhUTUwgdG8gVGltZUxpbmUgZnJhbWVcbiAgICAgIGlmICh0ZXh0U3RhdHVzID09ICdzdWNjZXNzJykge1xuICAgICAgICBqUXVlcnkoJyMnICsgdGltZWxpbmVfb2JqLmh0bWxfY2xpZW50X2lkICsgJyAud3BiY190aW1lbGluZV9hamF4X3JlcGxhY2UnKS5odG1sKGRhdGEpO1xuICAgICAgICByZXR1cm4gdHJ1ZTtcbiAgICAgIH1cbiAgICB9LFxuICAgIGVycm9yOiBmdW5jdGlvbiBlcnJvcihYTUxIdHRwUmVxdWVzdCwgdGV4dFN0YXR1cywgZXJyb3JUaHJvd24pIHtcbiAgICAgIHdpbmRvdy5zdGF0dXMgPSAnQWpheCBFcnJvciEgU3RhdHVzOiAnICsgdGV4dFN0YXR1cztcbiAgICAgIGFsZXJ0KCdBamF4IEVycm9yISBTdGF0dXM6ICcgKyBYTUxIdHRwUmVxdWVzdC5zdGF0dXMgKyAnICcgKyBYTUxIdHRwUmVxdWVzdC5zdGF0dXNUZXh0KTtcbiAgICB9LFxuICAgIC8vIGJlZm9yZVNlbmQ6IHNvbWVGdW5jdGlvbixcbiAgICBkYXRhOiB7XG4gICAgICBhY3Rpb246ICdXUEJDX0ZMRVhUSU1FTElORV9OQVYnLFxuICAgICAgdGltZWxpbmVfb2JqOiB0aW1lbGluZV9vYmosXG4gICAgICBuYXZfc3RlcDogbmF2X3N0ZXAsXG4gICAgICB3cGRldl9hY3RpdmVfbG9jYWxlOiB3cGJjX2FjdGl2ZV9sb2NhbGUsXG4gICAgICB3cGJjX25vbmNlOiBkb2N1bWVudC5nZXRFbGVtZW50QnlJZCgnd3BiY19ub25jZV8nICsgdGltZWxpbmVfb2JqLmh0bWxfY2xpZW50X2lkKS52YWx1ZVxuICAgIH1cbiAgfSk7XG59XG4vLyMgc291cmNlTWFwcGluZ1VSTD1kYXRhOmFwcGxpY2F0aW9uL2pzb247Y2hhcnNldD11dGY4O2Jhc2U2NCxleUoyWlhKemFXOXVJam96TENKemIzVnlZMlZ6SWpwYkluWXlMMTl6Y21NdmRHbHRaV3hwYm1WZmRqSXVhbk1pWFN3aWJtRnRaWE1pT2xzaWQzQmlZMTltYkdWNGRHbHRaV3hwYm1WZmJtRjJJaXdpZEdsdFpXeHBibVZmYjJKcUlpd2libUYyWDNOMFpYQWlMQ0pxVVhWbGNua2lMQ0owY21sbloyVnlJaXdpYUhSdGJGOWpiR2xsYm5SZmFXUWlMQ0p5WlcxdmRtVWlMQ0pvZEcxc0lpd2lhWE5HZFc1amRHbHZiaUlzSW5CdmNHOTJaWElpTENKaGFtRjRJaXdpZFhKc0lpd2lkM0JpWTE5aGFtRjRkWEpzSWl3aWRIbHdaU0lzSW5OMVkyTmxjM01pTENKa1lYUmhJaXdpZEdWNGRGTjBZWFIxY3lJc0ltVnljbTl5SWl3aVdFMU1TSFIwY0ZKbGNYVmxjM1FpTENKbGNuSnZjbFJvY205M2JpSXNJbmRwYm1SdmR5SXNJbk4wWVhSMWN5SXNJbUZzWlhKMElpd2ljM1JoZEhWelZHVjRkQ0lzSW1GamRHbHZiaUlzSW5kd1pHVjJYMkZqZEdsMlpWOXNiMk5oYkdVaUxDSjNjR0pqWDJGamRHbDJaVjlzYjJOaGJHVWlMQ0ozY0dKalgyNXZibU5sSWl3aVpHOWpkVzFsYm5RaUxDSm5aWFJGYkdWdFpXNTBRbmxKWkNJc0luWmhiSFZsSWwwc0ltMWhjSEJwYm1keklqb2lPenRCUVVOQkxGTkJRVk5CTEhGQ1FVRlVMRU5CUVdkRFF5eFpRVUZvUXl4RlFVRTRRME1zVVVGQk9VTXNSVUZCZDBRN1FVRkZjRVJETEVWQlFVRkJMRTFCUVUwc1EwRkJSU3d3UWtGQlJpeERRVUZPTEVOQlFYRkRReXhQUVVGeVF5eERRVUU0UXl4alFVRTVReXhGUVVFclJDeERRVUZGU0N4WlFVRkdMRVZCUVdkQ1F5eFJRVUZvUWl4RFFVRXZSQ3hGUVVadlJDeERRVVZuUkR0QlFVVndSenRCUVVOQk96dEJRVVZCUXl4RlFVRkJRU3hOUVVGTkxFTkJRVVVzVFVGQlNVWXNXVUZCV1N4RFFVRkRTU3hqUVVGcVFpeEhRVUZyUXl4clFrRkJiRU1zUjBGQmNVUktMRmxCUVZrc1EwRkJRMGtzWTBGQmJFVXNSMEZCYlVZc1owSkJRWEpHTEVOQlFVNHNRMEZCTmtkRExFMUJRVGRITzBGQlEwRklMRVZCUVVGQkxFMUJRVTBzUTBGQlF5eE5RVUZKUml4WlFVRlpMRU5CUVVOSkxHTkJRV3BDTEVkQlFXdERMR2xDUVVGdVF5eERRVUZPTEVOQlFUUkVSU3hKUVVFMVJDeERRVUZyUlN3NFJVRkJiRVVzUlVGU2IwUXNRMEZSY1VjN08wRkJTWHBLTEUxQlFVdEtMRTFCUVUwc1EwRkJRMHNzVlVGQlVDeERRVUZ0UWt3c1RVRkJUU3hEUVVGRExDdENRVUZFTEVOQlFVNHNRMEZCZVVOTkxFOUJRVFZFTEVOQlFVd3NSVUZCYjBZN1FVRkRhRVpPTEVsQlFVRkJMRTFCUVUwc1EwRkJReXdyUWtGQlJDeERRVUZPTEVOQlFYZERUU3hQUVVGNFF5eERRVUZwUkN4TlFVRnFSQ3hGUVdKblJDeERRV0ZuUXpzN1FVRkZjRVpPTEVWQlFVRkJMRTFCUVUwc1EwRkJRMDhzU1VGQlVDeERRVUZaTzBGQlExSkRMRWxCUVVGQkxFZEJRVWNzUlVGQlJVTXNXVUZFUnp0QlFVVlNReXhKUVVGQlFTeEpRVUZKTEVWQlFVTXNUVUZHUnp0QlFVZFNReXhKUVVGQlFTeFBRVUZQTEVWQlFVVXNhVUpCUVZkRExFbEJRVmdzUlVGQmFVSkRMRlZCUVdwQ0xFVkJRVFpDTzBGQlFXdERPMEZCUXpWRUxGVkJRVWxCTEZWQlFWVXNTVUZCU1N4VFFVRnNRaXhGUVVFMlFqdEJRVU42UW1Jc1VVRkJRVUVzVFVGQlRTeERRVUZETEUxQlFVMUdMRmxCUVZrc1EwRkJRMGtzWTBGQmJrSXNSMEZCYjBNc09FSkJRWEpETEVOQlFVNHNRMEZCTkVWRkxFbEJRVFZGTEVOQlFXdEdVU3hKUVVGc1JqdEJRVU5CTEdWQlFVOHNTVUZCVUR0QlFVTklPMEZCUTBvc1MwRlNSRHRCUVZOU1JTeEpRVUZCUVN4TFFVRkxMRVZCUVVjc1pVRkJWME1zWTBGQldDeEZRVUV5UWtZc1ZVRkJNMElzUlVGQmRVTkhMRmRCUVhaRExFVkJRVzFFTzBGQlF5OURReXhOUVVGQlFTeE5RVUZOTEVOQlFVTkRMRTFCUVZBc1IwRkJaMElzZVVKQlFYbENUQ3hWUVVGNlF6dEJRVU5CVFN4TlFVRkJRU3hMUVVGTExFTkJRVVVzZVVKQlFYbENTaXhqUVVGakxFTkJRVU5ITEUxQlFYaERMRWRCUVdsRUxFZEJRV3BFTEVkQlFYVkVTQ3hqUVVGakxFTkJRVU5MTEZWQlFYaEZMRU5CUVV3N1FVRkRTQ3hMUVZwRU8wRkJZVkk3UVVGRFFWSXNTVUZCUVVFc1NVRkJTU3hGUVVGRE8wRkJRMGRUTEUxQlFVRkJMRTFCUVUwc1JVRkJZeXgxUWtGRWRrSTdRVUZGUjNaQ0xFMUJRVUZCTEZsQlFWa3NSVUZCVVVFc1dVRkdka0k3UVVGSFIwTXNUVUZCUVVFc1VVRkJVU3hGUVVGWlFTeFJRVWgyUWp0QlFVbEhkVUlzVFVGQlFVRXNiVUpCUVcxQ0xFVkJRVU5ETEd0Q1FVcDJRanRCUVV0SFF5eE5RVUZCUVN4VlFVRlZMRVZCUVZWRExGRkJRVkVzUTBGQlEwTXNZMEZCVkN4RFFVRjNRaXhuUWtGQlpUVkNMRmxCUVZrc1EwRkJRMGtzWTBGQmNFUXNSVUZCYjBWNVFqdEJRVXd6Ump0QlFXUkhMRWRCUVZvN1FVRnpRa2dpTENKemIzVnlZMlZ6UTI5dWRHVnVkQ0k2V3lKY2NseHVablZ1WTNScGIyNGdkM0JpWTE5bWJHVjRkR2x0Wld4cGJtVmZibUYyS0NCMGFXMWxiR2x1WlY5dlltb3NJRzVoZGw5emRHVndJQ2w3WEhKY2JseHlYRzRnSUNBZ2FsRjFaWEo1S0NCY0lpNTNjR0pqWDNScGJXVnNhVzVsWDJaeWIyNTBYMlZ1WkZ3aUlDa3VkSEpwWjJkbGNpZ2dYQ0owYVcxbGJHbHVaVjl1WVhaY0lpQXNJRnNnZEdsdFpXeHBibVZmYjJKcUxDQnVZWFpmYzNSbGNDQmRJQ2s3SUNBZ0lDQWdJQ0F2TDBacGVFbHVPamN1TUM0eExqUTRYSEpjYmx4eVhHNGdJQ0FnTHk4Z2FsRjFaWEo1S0NBbkl5Y3JkR2x0Wld4cGJtVmZiMkpxTG1oMGJXeGZZMnhwWlc1MFgybGtJQ3NnSnlBdWQzQmlZMTkwYkY5d2NtVjJMQ01uSzNScGJXVnNhVzVsWDI5aWFpNW9kRzFzWDJOc2FXVnVkRjlwWkNBcklDY2dMbmR3WW1OZmRHeGZibVY0ZENjcExuSmxiVzkyWlNncE8xeHlYRzRnSUNBZ0x5OGdhbEYxWlhKNUtDY2pKeXQwYVcxbGJHbHVaVjl2WW1vdWFIUnRiRjlqYkdsbGJuUmZhV1FnS3lBbklDNTNjR0pqWDNSc1gzUnBkR3hsSnlrdWFIUnRiQ2dnSnp4emNHRnVJR05zWVhOelBWd2laMng1Y0docFkyOXVJR2RzZVhCb2FXTnZiaTF5WldaeVpYTm9JSGR3WW1OZmMzQnBibHdpUGp3dmMzQmhiajRnSm01aWMzQWdURzloWkdsdVp5NHVMaWNnS1RzZ0lDQWdJQ0F2THlBblBHUnBkaUJ6ZEhsc1pUMWNJbWhsYVdkb2REb3lNSEI0TzNkcFpIUm9PakV3TUNVN2RHVjRkQzFoYkdsbmJqcGpaVzUwWlhJN2JXRnlaMmx1T2pFMWNIZ2dZWFYwYnp0Y0lqNU1iMkZrYVc1bklDNHVMaUE4YVcxbklITjBlV3hsUFZ3aWRtVnlkR2xqWVd3dFlXeHBaMjQ2Yldsa1pHeGxPMkp2ZUMxemFHRmtiM2M2Ym05dVpUdDNhV1IwYURveE5IQjRPMXdpSUhOeVl6MWNJaWNyZDNCa1pYWmZZbXRmY0d4MVoybHVYM1Z5YkNzbkwyRnpjMlYwY3k5cGJXY3ZZV3BoZUMxc2IyRmtaWEl1WjJsbVhDSStQQzh2WkdsMlBpZGNjbHh1WEhKY2JpQWdJQ0JxVVhWbGNua29JQ2NqSnl0MGFXMWxiR2x1WlY5dlltb3VhSFJ0YkY5amJHbGxiblJmYVdRZ0t5QW5JQzVtYkdWNFgzUnNYM0J5WlhZc0l5Y3JkR2x0Wld4cGJtVmZiMkpxTG1oMGJXeGZZMnhwWlc1MFgybGtJQ3NnSnlBdVpteGxlRjkwYkY5dVpYaDBKeWt1Y21WdGIzWmxLQ2s3WEhKY2JpQWdJQ0JxVVhWbGNua29KeU1uSzNScGJXVnNhVzVsWDI5aWFpNW9kRzFzWDJOc2FXVnVkRjlwWkNBcklDY2dMbVpzWlhoZmRHeGZkR2wwYkdVbktTNW9kRzFzS0NBblBITndZVzRnWTJ4aGMzTTlYQ0puYkhsd2FHbGpiMjRnWjJ4NWNHaHBZMjl1TFhKbFpuSmxjMmdnZDNCaVkxOXpjR2x1WENJK1BDOXpjR0Z1UGlBbWJtSnpjQ0JNYjJGa2FXNW5MaTR1SnlBcE95QWdJQ0FnSUM4dklDYzhaR2wySUhOMGVXeGxQVndpYUdWcFoyaDBPakl3Y0hnN2QybGtkR2c2TVRBd0pUdDBaWGgwTFdGc2FXZHVPbU5sYm5SbGNqdHRZWEpuYVc0Nk1UVndlQ0JoZFhSdk8xd2lQa3h2WVdScGJtY2dMaTR1SUR4cGJXY2djM1I1YkdVOVhDSjJaWEowYVdOaGJDMWhiR2xuYmpwdGFXUmtiR1U3WW05NExYTm9ZV1J2ZHpwdWIyNWxPM2RwWkhSb09qRTBjSGc3WENJZ2MzSmpQVndpSnl0M2NHUmxkbDlpYTE5d2JIVm5hVzVmZFhKc0t5Y3ZZWE56WlhSekwybHRaeTloYW1GNExXeHZZV1JsY2k1bmFXWmNJajQ4THk5a2FYWStKMXh5WEc1Y2NseHVYSEpjYmx4eVhHNGdJQ0FnYVdZZ0tDQnFVWFZsY25rdWFYTkdkVzVqZEdsdmJpZ2dhbEYxWlhKNUtGd2lMbkJ2Y0c5MlpYSmZZMnhwWTJzdWNHOXdiM1psY2w5aWIzUjBiMjFjSWlBcExuQnZjRzkyWlhJZ0tTQWdLU0FnSUNBZ0lDQXZMMFpwZUVsdU9pQTNMakF1TVM0eUlDQXRJREl3TVRZdE1USXRNVEJjY2x4dUlDQWdJQ0FnSUNCcVVYVmxjbmtvSnk1d2IzQnZkbVZ5WDJOc2FXTnJMbkJ2Y0c5MlpYSmZZbTkwZEc5dEp5a3VjRzl3YjNabGNpZ2dKMmhwWkdVbklDazdJQ0FnSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdJQ0FnSUM4dlNHbGtaU0JoYkd3Z2IzQnVaV1FnY0c5d2IzWmxjbk5jY2x4dVhISmNiaUFnSUNCcVVYVmxjbmt1WVdwaGVDaDdYSEpjYmlBZ0lDQWdJQ0FnZFhKc09pQjNjR0pqWDJGcVlYaDFjbXdzWEhKY2JpQWdJQ0FnSUNBZ2RIbHdaVG9uVUU5VFZDY3NYSEpjYmlBZ0lDQWdJQ0FnYzNWalkyVnpjem9nWm5WdVkzUnBiMjRnS0NCa1lYUmhMQ0IwWlhoMFUzUmhkSFZ6SUNsN0lDQWdJQ0FnSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdJQ0FnTHk4Z1RtOTBaU3dnSUdobGNtVWdkMlVnWkdseVpXTjBJSE5vYjNjZ1NGUk5UQ0IwYnlCVWFXMWxUR2x1WlNCbWNtRnRaVnh5WEc0Z0lDQWdJQ0FnSUNBZ0lDQWdJQ0FnSUNBZ0lHbG1LQ0IwWlhoMFUzUmhkSFZ6SUQwOUlDZHpkV05qWlhOekp5a2dlMXh5WEc0Z0lDQWdJQ0FnSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdJQ0JxVVhWbGNua29KeU1uSUNzZ2RHbHRaV3hwYm1WZmIySnFMbWgwYld4ZlkyeHBaVzUwWDJsa0lDc2dKeUF1ZDNCaVkxOTBhVzFsYkdsdVpWOWhhbUY0WDNKbGNHeGhZMlVuSUNrdWFIUnRiQ2dnWkdGMFlTQXBPMXh5WEc0Z0lDQWdJQ0FnSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdJQ0J5WlhSMWNtNGdkSEoxWlR0Y2NseHVJQ0FnSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdJQ0I5WEhKY2JpQWdJQ0FnSUNBZ0lDQWdJQ0FnSUNCOUxGeHlYRzRnSUNBZ0lDQWdJR1Z5Y205eU9pQWdablZ1WTNScGIyNGdLQ0JZVFV4SWRIUndVbVZ4ZFdWemRDd2dkR1Y0ZEZOMFlYUjFjeXdnWlhKeWIzSlVhSEp2ZDI0cGUxeHlYRzRnSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdJQ0FnSUhkcGJtUnZkeTV6ZEdGMGRYTWdQU0FuUVdwaGVDQkZjbkp2Y2lFZ1UzUmhkSFZ6T2lBbklDc2dkR1Y0ZEZOMFlYUjFjenRjY2x4dUlDQWdJQ0FnSUNBZ0lDQWdJQ0FnSUNBZ0lDQmhiR1Z5ZENnZ0owRnFZWGdnUlhKeWIzSWhJRk4wWVhSMWN6b2dKeUFySUZoTlRFaDBkSEJTWlhGMVpYTjBMbk4wWVhSMWN5QXJJQ2NnSnlBcklGaE5URWgwZEhCU1pYRjFaWE4wTG5OMFlYUjFjMVJsZUhRZ0tUdGNjbHh1SUNBZ0lDQWdJQ0FnSUNBZ0lDQWdJSDBzWEhKY2JpQWdJQ0FnSUNBZ0x5OGdZbVZtYjNKbFUyVnVaRG9nYzI5dFpVWjFibU4wYVc5dUxGeHlYRzRnSUNBZ0lDQWdJR1JoZEdFNmUxeHlYRzRnSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdZV04wYVc5dU9pQWdJQ0FnSUNBZ0lDQWdJQ0FuVjFCQ1ExOUdURVZZVkVsTlJVeEpUa1ZmVGtGV0p5eGNjbHh1SUNBZ0lDQWdJQ0FnSUNBZ0lDQWdJSFJwYldWc2FXNWxYMjlpYWpvZ0lDQWdJQ0FnZEdsdFpXeHBibVZmYjJKcUxGeHlYRzRnSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdibUYyWDNOMFpYQTZJQ0FnSUNBZ0lDQWdJQ0J1WVhaZmMzUmxjQ3hjY2x4dUlDQWdJQ0FnSUNBZ0lDQWdJQ0FnSUhkd1pHVjJYMkZqZEdsMlpWOXNiMk5oYkdVNmQzQmlZMTloWTNScGRtVmZiRzlqWVd4bExGeHlYRzRnSUNBZ0lDQWdJQ0FnSUNBZ0lDQWdkM0JpWTE5dWIyNWpaVG9nSUNBZ0lDQWdJQ0JrYjJOMWJXVnVkQzVuWlhSRmJHVnRaVzUwUW5sSlpDZ25kM0JpWTE5dWIyNWpaVjhuS3lCMGFXMWxiR2x1WlY5dlltb3VhSFJ0YkY5amJHbGxiblJmYVdRcExuWmhiSFZsWEhKY2JpQWdJQ0FnSUNBZ2ZWeHlYRzRnSUNBZ2ZTazdYSEpjYm4xY2NseHVYSEpjYmlKZExDSm1hV3hsSWpvaWRqSXZYMjkxZEM5MGFXMWxiR2x1WlY5Mk1pNXFjeUo5XG4iXX0=
core/timeline/v2/_src/timeline_v2.js ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ function wpbc_flextimeline_nav( timeline_obj, nav_step ){
3
+
4
+ jQuery( ".wpbc_timeline_front_end" ).trigger( "timeline_nav" , [ timeline_obj, nav_step ] ); //FixIn:7.0.1.48
5
+
6
+ // jQuery( '#'+timeline_obj.html_client_id + ' .wpbc_tl_prev,#'+timeline_obj.html_client_id + ' .wpbc_tl_next').remove();
7
+ // jQuery('#'+timeline_obj.html_client_id + ' .wpbc_tl_title').html( '<span class="glyphicon glyphicon-refresh wpbc_spin"></span> &nbsp Loading...' ); // '<div style="height:20px;width:100%;text-align:center;margin:15px auto;">Loading ... <img style="vertical-align:middle;box-shadow:none;width:14px;" src="'+wpdev_bk_plugin_url+'/assets/img/ajax-loader.gif"><//div>'
8
+
9
+ jQuery( '#'+timeline_obj.html_client_id + ' .flex_tl_prev,#'+timeline_obj.html_client_id + ' .flex_tl_next').remove();
10
+ jQuery('#'+timeline_obj.html_client_id + ' .flex_tl_title').html( '<span class="glyphicon glyphicon-refresh wpbc_spin"></span> &nbsp Loading...' ); // '<div style="height:20px;width:100%;text-align:center;margin:15px auto;">Loading ... <img style="vertical-align:middle;box-shadow:none;width:14px;" src="'+wpdev_bk_plugin_url+'/assets/img/ajax-loader.gif"><//div>'
11
+
12
+
13
+
14
+ if ( jQuery.isFunction( jQuery(".popover_click.popover_bottom" ).popover ) ) //FixIn: 7.0.1.2 - 2016-12-10
15
+ jQuery('.popover_click.popover_bottom').popover( 'hide' ); //Hide all opned popovers
16
+
17
+ jQuery.ajax({
18
+ url: wpbc_ajaxurl,
19
+ type:'POST',
20
+ success: function ( data, textStatus ){ // Note, here we direct show HTML to TimeLine frame
21
+ if( textStatus == 'success') {
22
+ jQuery('#' + timeline_obj.html_client_id + ' .wpbc_timeline_ajax_replace' ).html( data );
23
+ return true;
24
+ }
25
+ },
26
+ error: function ( XMLHttpRequest, textStatus, errorThrown){
27
+ window.status = 'Ajax Error! Status: ' + textStatus;
28
+ alert( 'Ajax Error! Status: ' + XMLHttpRequest.status + ' ' + XMLHttpRequest.statusText );
29
+ },
30
+ // beforeSend: someFunction,
31
+ data:{
32
+ action: 'WPBC_FLEXTIMELINE_NAV',
33
+ timeline_obj: timeline_obj,
34
+ nav_step: nav_step,
35
+ wpdev_active_locale:wpbc_active_locale,
36
+ wpbc_nonce: document.getElementById('wpbc_nonce_'+ timeline_obj.html_client_id).value
37
+ }
38
+ });
39
+ }
40
+
core/timeline/v2/css/timeline_skin_v2.css ADDED
@@ -0,0 +1,300 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* T i m e l i n e - C O L O R S K I N ****************************/
2
+ /*
3
+ * For better compatibility, please change here only folowing properties:
4
+ * background , background-color, background-repeat, background-image, background-repeat, background-position
5
+ * border
6
+ * box-shadow
7
+ * border-radius
8
+ * color
9
+ * font-weight
10
+ * text-shadow
11
+ * text-transform
12
+ *
13
+ */
14
+ /* Loading message */
15
+ .flex_tl_table_loading{
16
+ text-align: center;
17
+ font-size: 1.1em;
18
+ }
19
+ .flex_tl_table_loading span {
20
+ padding: 0 0.4em;
21
+ }
22
+ /**********************************************************************************************************************/
23
+ /* Timeline Main Container */
24
+ .flex_tl_table {
25
+ background: #fff;
26
+ border: 1px solid #ddd;
27
+ box-shadow: 0 1px 2px #eef;
28
+ font-size:12px;
29
+ }
30
+ /* Timeline: Header */
31
+ .flex_tl_table .flex_tl_table_header{
32
+ background: #e9e9e9;
33
+ }
34
+ .flex_tl_table .flex_tl_table_header .flex_tl_collumn_1,
35
+ .flex_tl_table .flex_tl_table_header .flex_tl_collumn_2{
36
+ font-weight: 600;
37
+ padding: 8px;
38
+ line-height: 1.42857143em;
39
+ }
40
+ .flex_tl_table .flex_tl_table_header .flex_tl_collumn_2{
41
+ text-align: center;
42
+ }
43
+
44
+ /**********************************************************************************************************************/
45
+ /* Ajax Navigation TOP menu */
46
+ .flex_tl_table .flex_tl_table_header .flex_tl_collumn_2 .flex_tl_nav .flex_tl_title{
47
+ color:#777;
48
+ }
49
+ .flex_tl_table .flex_tl_table_header .flex_tl_collumn_2 .flex_tl_nav .flex_tl_prev,
50
+ .flex_tl_table .flex_tl_table_header .flex_tl_collumn_2 .flex_tl_nav .flex_tl_next{
51
+ font-size: 22px;
52
+ font-weight: 600;
53
+ line-height: 12px;
54
+ color:#777;
55
+ }
56
+ .flex_tl_table .flex_tl_table_header .flex_tl_collumn_2 .flex_tl_nav .flex_tl_prev a,
57
+ .flex_tl_table .flex_tl_table_header .flex_tl_collumn_2 .flex_tl_nav .flex_tl_next a,
58
+ .flex_tl_table .flex_tl_table_header .flex_tl_collumn_2 .flex_tl_nav .flex_tl_prev a:hover,
59
+ .flex_tl_table .flex_tl_table_header .flex_tl_collumn_2 .flex_tl_nav .flex_tl_next a:hover {
60
+ text-decoration: none;
61
+ color: #757575;
62
+ cursor: pointer;
63
+ }
64
+ /**********************************************************************************************************************/
65
+ /* Booking Rows - background colors */
66
+ .flex_tl_table .flex_tl_table_row_bookings {
67
+ border-top: 1px solid #dddddd;
68
+ }
69
+ .flex_tl_table .flex_tl_table_row_bookings:nth-of-type(2n+1) {
70
+ background-color: #f9f9f9;
71
+ }
72
+ /**********************************************************************************************************************/
73
+ /* 1st C o l u m n */
74
+ .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_1,
75
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 {
76
+ font-weight: 600;
77
+ padding: 4px;
78
+ line-height: 1.42857143em;
79
+ box-shadow: none;
80
+ }
81
+ /* Booking resources Titles*/
82
+ .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_1,
83
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 .flex_tl_resource_title{
84
+ color: #999;
85
+ font-weight: 400;
86
+ overflow: hidden;
87
+ white-space: nowrap;
88
+ }
89
+ /**********************************************************************************************************************/
90
+ /* Booking resources Links */
91
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 .flex_tl_resource_title a,
92
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 .flex_tl_resource_title a:hover {
93
+ border-bottom: 1px dashed;
94
+ color: #789;
95
+ text-decoration: none;
96
+ text-shadow: none;/*0 -1px 0 #EEEEEE;*/
97
+ }
98
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 .flex_tl_resource_title.parent {
99
+ font-weight: 600;
100
+ }
101
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 .flex_tl_resource_title.child {
102
+ margin-left: 20px;
103
+ }
104
+ /**********************************************************************************************************************/
105
+ /* 2nd C o l u m n - T i t l e D a t e s B a r - .flex_tl_table_titles */
106
+ /**********************************************************************************************************************/
107
+ /* Header "Dates number" Row */
108
+ .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar {
109
+
110
+ }
111
+ /* Header "Dates number" Cell */
112
+ .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell {
113
+ border-left:1px solid #eee;
114
+ }
115
+ .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell.new_month .in_cell_date_container{
116
+ border-left:2px solid #C54;
117
+ }
118
+ /* Weekend Days */
119
+ .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell.flex_tl_weekday6,
120
+ .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell.flex_tl_weekday7,
121
+ .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell.flex_tl_weekday6 a,
122
+ .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell.flex_tl_weekday7 a{
123
+ color: #c32;
124
+ background: #FFFCF4;
125
+ }
126
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell.flex_tl_weekday6 .in_cell_date_container_show_dates,
127
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell.flex_tl_weekday7 .in_cell_date_container_show_dates{
128
+ color: #bd7f78;
129
+ background: #FFFCF4;
130
+ }
131
+ /* Header "Top Dates Line" */
132
+ .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell a,
133
+ .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell a:hover{
134
+ color: #789;
135
+ text-decoration: none;
136
+ text-shadow: 0 -1px 0 #EEEEEE;
137
+ }
138
+ /**********************************************************************************************************************/
139
+ /* "Top Month Line" - in - T i t l e D a t e s B a r */
140
+ .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar_month {
141
+ height: 1.5em;
142
+ border-bottom:1px solid #eee;
143
+ border-left:1px solid #eee;
144
+ }
145
+ /* Header "Month Name" Cell */
146
+ .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_month_year {
147
+ color: #c32;
148
+ font-size: 0.85em;
149
+ font-weight: 600;
150
+ padding:0 0.5em;
151
+ }
152
+ /**********************************************************************************************************************/
153
+ /* "Time Slots" - in - T i t l e D a t e s B a r */
154
+ .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_time_section_in_day {
155
+
156
+ }
157
+ .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_time_section_in_day .in_cell_time_hour {
158
+ border-left:1px solid #eee;
159
+ border-top:1px solid #eee;
160
+
161
+ font-size: 0.7em;
162
+
163
+ display: flex;
164
+ justify-content:flex-start;
165
+ align-items: center;
166
+ padding: 0 0 0 2px;
167
+
168
+ white-space: nowrap;
169
+ overflow: hidden;
170
+ min-height: 12px;
171
+ }
172
+ /* Date Number during showing 1 day */
173
+ .flex_tl_matrix_resources.flex_frame_view_days_num_1 .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container .in_cell_day_num,
174
+ .flex_tl_single_resource.flex_frame_view_days_num_30 .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container .in_cell_day_num{
175
+ font-size: 0.85em;
176
+ font-weight:600;
177
+ text-align: left;
178
+ padding: 4px 1em;
179
+ }
180
+ /**********************************************************************************************************************/
181
+ /* Dates in First Column during single resource view mode */
182
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 .flex_tl_resource_title_dates_container .flex_tl_resource_title_dates_days.flex_tl_weekday6,
183
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 .flex_tl_resource_title_dates_container .flex_tl_resource_title_dates_days.flex_tl_weekday7,
184
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 .flex_tl_resource_title_dates_container .flex_tl_resource_title_dates_weeks.flex_tl_weekday6,
185
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 .flex_tl_resource_title_dates_container .flex_tl_resource_title_dates_weeks.flex_tl_weekday7{
186
+ color: #bd7f78;
187
+ }
188
+ /**********************************************************************************************************************/
189
+ /* B o o k i n g s R o w - B o o k i n g s D a t e s B a r - .flex_tl_table_row_bookings */
190
+ /**********************************************************************************************************************/
191
+ /* Header "Dates number" Row */
192
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar {
193
+
194
+ }
195
+ /* Header "Dates number" Cell */
196
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell {
197
+ border-left:1px solid #eee;
198
+ color:#aaa;
199
+ font-size: 0.7em;
200
+ }
201
+ /* New Month */
202
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell.new_month .in_cell_time_hour:first-child .in_cell_date_container{
203
+ border-left:2px solid #C54;
204
+ }
205
+ /* Cross months - booking on 1st day of some month */
206
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell.new_month.exist_booking_in_cell .in_cell_time_hour:first-child .in_cell_date_container{
207
+ border-left:1px solid #C54;
208
+ }
209
+ /**********************************************************************************************************************/
210
+ /* B o o k i n g C e l l */
211
+ /**********************************************************************************************************************/
212
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id{
213
+ background: none repeat scroll 0 0 #FC4;
214
+ margin-left: -1px; /* Hide White 1px border in Cells in booking pipeline */
215
+ }
216
+ /* Start New Booking */
217
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id.start_new_booking{
218
+ border-left:2px solid #f3a844;
219
+ }
220
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id.approved_booking {
221
+ background-color: #78A;
222
+ }
223
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id.approved_booking.start_new_booking{
224
+ border-color: #616f8b;
225
+ }
226
+ /* Bookings in a Past*/
227
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id.past_date{
228
+ background-color:#f0cf77;
229
+ }
230
+ /* Bookings in a Past Approved */
231
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id.approved_booking.past_date{
232
+ background-color:#9099aa;
233
+ }
234
+ /* Trash Booking */
235
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id.start_new_booking.booking_trash {
236
+ border-left:2px solid #901c1a;
237
+ }
238
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id.booking_trash {
239
+ background-color:#DB6F6D;
240
+ }
241
+ /** T O D A Y ******************************************************************/
242
+ /* Today Background for DAYS */
243
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar.flex_tl_row_bar_show_dates .flex_tl_day_cell.today_date .in_cell_time_section_in_day{
244
+ /*background-color: #efc;*/
245
+ }
246
+ /* Today Border for DAYS */
247
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar.flex_tl_row_bar_show_booking_titles .flex_tl_day_cell.today_date .in_cell_time_section_in_day{
248
+ border-left: 1px solid #090;
249
+ }
250
+ /* Disasable Today Border for DAYS in 1 day view mode */
251
+ .flex_timeline_frame.flex_frame_view_days_num_30.flex_tl_single_resource
252
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar.flex_tl_row_bar_show_booking_titles .flex_tl_day_cell.today_date .in_cell_time_section_in_day,
253
+ .flex_timeline_frame.flex_frame_view_days_num_1.flex_tl_matrix_resources
254
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar.flex_tl_row_bar_show_booking_titles .flex_tl_day_cell.today_date .in_cell_time_section_in_day{
255
+ border-left: none;
256
+ }
257
+ /* Today Border for Hours in 1 day view mode */
258
+ .flex_timeline_frame.flex_frame_view_days_num_30.flex_tl_single_resource
259
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar.flex_tl_row_bar_show_booking_titles .flex_tl_day_cell .in_cell_time_section_in_day .in_cell_time_hour.today_time,
260
+ .flex_timeline_frame.flex_frame_view_days_num_1.flex_tl_matrix_resources
261
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar.flex_tl_row_bar_show_booking_titles .flex_tl_day_cell .in_cell_time_section_in_day .in_cell_time_hour.today_time {
262
+ border-left: 1px solid #77ce0f;
263
+ }
264
+
265
+ /********************************************************************************/
266
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id a {
267
+ font-size:7px;
268
+ font-weight:600;
269
+ color:#fff;
270
+ cursor: pointer;
271
+ }
272
+ /* Show Booking Titles ***************************/
273
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_booking_titles .in_cell_date_booking_title{
274
+ background: #777;
275
+ color: #fff;
276
+ border-left: 2px solid #555;
277
+ cursor: pointer;
278
+ border-radius: 3px;
279
+ }
280
+ /* Title for Several bookings in cell */
281
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_booking_titles .in_cell_date_booking_title.several_bookings_in_cell{
282
+ font-weight: bold;
283
+ background: #fdab36;
284
+ color: #455366;
285
+ border-left: 2px solid #dd8b16;
286
+ }
287
+ /* Show Times in Cells during 1 day view mode */
288
+ .flex_timeline_frame.flex_frame_view_days_num_30.flex_tl_single_resource
289
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_dates,
290
+ .flex_timeline_frame.flex_frame_view_days_num_1.flex_tl_matrix_resources
291
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_dates{
292
+ border-left:1px solid #eee;
293
+ border-top:1px solid #eee;
294
+
295
+ font-size:0.8em;
296
+ word-wrap: normal;
297
+ white-space: nowrap;
298
+ overflow: hidden;
299
+ padding:0 2px;
300
+ }
core/timeline/v2/css/timeline_v2.css ADDED
@@ -0,0 +1,608 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Timeline Main Container */
2
+ .flex_tl_table {
3
+ display: flex;
4
+ flex-flow: column nowrap;
5
+ box-sizing: border-box;
6
+ }
7
+ /* Timeline: Header, Dates number, all bookings Rows */
8
+ .flex_tl_table .flex_tl_table_header,
9
+ .flex_tl_table .flex_tl_table_titles,
10
+ .flex_tl_table .flex_tl_table_row_bookings {
11
+ flex: 1;
12
+ display: flex;
13
+ flex-flow: row nowrap;
14
+ justify-content: space-between;
15
+ }
16
+ /* Column 1 - booking resources */
17
+ .flex_tl_table .flex_tl_table_header .flex_tl_collumn_1,
18
+ .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_1,
19
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 {
20
+ flex:0 1 auto;
21
+ width: 180px;
22
+ min-width: 0;
23
+ word-wrap: break-word;
24
+
25
+ display: flex;
26
+ flex-flow: column nowrap;
27
+ justify-content: center;
28
+ }
29
+ /* Column 2 - dates/bookings */
30
+ .flex_tl_table .flex_tl_table_header .flex_tl_collumn_2,
31
+ .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2,
32
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 {
33
+ flex: 1 1 0;
34
+ min-width: 0;
35
+ }
36
+ /**********************************************************************************************************************/
37
+ @media (max-width: 782px) {
38
+
39
+ /* Wrap to New lines */
40
+ .flex_tl_table .flex_tl_table_header,
41
+ .flex_tl_table .flex_tl_table_titles,
42
+ .flex_tl_table .flex_tl_table_row_bookings {
43
+ flex-flow: row wrap;
44
+ }
45
+ /* Show booking resources in a ROW above the dates */
46
+ .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_1,
47
+ .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2,
48
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1,
49
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 {
50
+ width: 100%;
51
+ flex: 1 1 auto;
52
+ }
53
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1{
54
+ border-bottom: 1px solid #eee;
55
+ }
56
+ }
57
+ /**********************************************************************************************************************/
58
+ /**********************************************************************************************************************/
59
+ /**********************************************************************************************************************/
60
+ /* Ajax Header Nav */
61
+ /**********************************************************************************************************************/
62
+ .flex_tl_table .flex_tl_table_header .flex_tl_collumn_2 .flex_tl_nav{
63
+ display: flex;
64
+ flex-flow: row nowrap;
65
+ justify-content: space-between;
66
+ }
67
+ .flex_tl_table .flex_tl_table_header .flex_tl_collumn_2 .flex_tl_nav .flex_tl_title {
68
+ flex: 1 1 0;
69
+ word-break: break-word;
70
+ min-width: 0;
71
+ }
72
+ /**********************************************************************************************************************/
73
+ /**********************************************************************************************************************/
74
+ /**********************************************************************************************************************/
75
+ /* T i t l e D a t e s B a r - .flex_tl_table_titles */
76
+ /**********************************************************************************************************************/
77
+ .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar {
78
+ display:flex;
79
+ flex-flow: row nowrap;
80
+ justify-content: space-between;
81
+ }
82
+ /* Header "Dates number" Cell */
83
+ .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell {
84
+ flex: 1 1 0;
85
+ min-width: 0;
86
+
87
+ display:flex;
88
+ flex-flow: column nowrap;
89
+ justify-content: space-between;
90
+ }
91
+ /* "Top Month Line" & "Date Number CELL container" */
92
+ .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_month_year,
93
+ .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container {
94
+ flex: 1;
95
+
96
+ display: flex;
97
+ flex-flow: column wrap;
98
+ justify-content: space-between;
99
+ overflow: hidden;
100
+ }
101
+ /* Day Number & WeekDay - in - Title D a t e s B a r */
102
+ .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container .in_cell_day_num,
103
+ .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container .in_cell_day_week {
104
+ flex: 1;
105
+
106
+ font-size:0.85em;
107
+ font-weight: 600;
108
+ text-align: center;
109
+ }
110
+ .flex_tl_matrix_resources .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container .in_cell_day_week {
111
+ font-weight: 400;
112
+ font-size:0.75em;
113
+ }
114
+ .flex_tl_single_resource .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container .in_cell_day_week {
115
+ font-size:0.9em;
116
+ padding: 4px 0;
117
+ }
118
+ .flex_frame_view_days_num_60 .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container .in_cell_day_num,
119
+ .flex_frame_view_days_num_60 .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container .in_cell_day_week {
120
+ font-size:0.7em;
121
+ font-weight: 400;
122
+ }
123
+ /**********************************************************************************************************************/
124
+ /* "Responsive Mode" - in - T i t l e D a t e s B a r */
125
+ @media (max-width: 782px) {
126
+ .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container {
127
+ overflow: hidden;
128
+ padding:0;
129
+ }
130
+ /* Show Scroller for Months and 2 Months view modes */
131
+ .flex_tl_matrix_resources.flex_frame_view_days_num_1,
132
+ .flex_tl_matrix_resources.flex_frame_view_days_num_30,
133
+ .flex_tl_matrix_resources.flex_frame_view_days_num_60,
134
+ .flex_tl_single_resource.flex_frame_view_days_num_30,
135
+ .flex_tl_single_resource.flex_frame_view_days_num_365 {
136
+ width: 100%;
137
+ overflow-x: scroll;
138
+ }
139
+ .flex_tl_matrix_resources.flex_frame_view_days_num_30 .flex_tl_table,
140
+ .flex_tl_single_resource.flex_frame_view_days_num_365 .flex_tl_table{
141
+ min-width: 500px;
142
+ }
143
+ .flex_tl_matrix_resources.flex_frame_view_days_num_1 .flex_tl_table,
144
+ .flex_tl_matrix_resources.flex_frame_view_days_num_60 .flex_tl_table,
145
+ .flex_tl_single_resource.flex_frame_view_days_num_30 .flex_tl_table {
146
+ min-width: 1000px;
147
+ }
148
+ }
149
+ /**********************************************************************************************************************/
150
+ /* "Top Month Line" - in - D a t e s B a r */
151
+ .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar_month {
152
+ height: 1.5em;
153
+ overflow: hidden;
154
+ }
155
+ .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar_month.flex_tl_dates_bar .flex_tl_day_cell {
156
+ border:none;
157
+ }
158
+ /* Header "Month Name" Cell */
159
+ .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar_month .flex_tl_day_cell .in_cell_month_year {
160
+ overflow: visible;
161
+ word-wrap: normal;
162
+ white-space: nowrap;
163
+ }
164
+ /**********************************************************************************************************************/
165
+ /* "Time Slots" - in - D a t e s B a r */
166
+ .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_time_section_in_day {
167
+ flex: 1;
168
+
169
+ display: flex;
170
+ flex-flow: row nowrap;
171
+ justify-content: space-between;
172
+ overflow: hidden;
173
+ }
174
+
175
+ .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_time_section_in_day .in_cell_time_hour {
176
+ flex: 1 1 0;
177
+ min-width: 0;
178
+ }
179
+ /* Date Number during showing 1 day */
180
+ .flex_tl_matrix_resources.flex_frame_view_days_num_1 .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container,
181
+ .flex_tl_single_resource.flex_frame_view_days_num_30 .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container {
182
+ flex-flow: row nowrap;
183
+ align-items: center;
184
+ }
185
+
186
+ /**********************************************************************************************************************/
187
+ /* Dates in First Column during single resource view mode */
188
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 .flex_tl_resource_title_dates_container {
189
+ display: flex;
190
+ flex-flow: row wrap;
191
+ justify-content: space-around;
192
+ }
193
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 .flex_tl_resource_title_dates_container .flex_tl_resource_title_dates_days,
194
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 .flex_tl_resource_title_dates_container .flex_tl_resource_title_dates_weeks {
195
+ flex: 1 1 0;
196
+ text-align: left;
197
+
198
+ }
199
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 .flex_tl_resource_title_dates_container .flex_tl_resource_title_dates_weeks{
200
+ text-align: right;
201
+ padding:0 1em;
202
+ }
203
+ @media (max-width: 782px) {
204
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 .flex_tl_resource_title_dates_container {
205
+ justify-content: flex-start;
206
+ }
207
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 .flex_tl_resource_title_dates_container .flex_tl_resource_title_dates_days,
208
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 .flex_tl_resource_title_dates_container .flex_tl_resource_title_dates_weeks {
209
+ flex: 0 1 auto;
210
+ text-align: left;
211
+ padding:0 1em;
212
+ }
213
+ }
214
+ /**********************************************************************************************************************/
215
+ /* B o o k i n g s R o w - B o o k i n g s D a t e s B a r - .flex_tl_table_row_bookings */
216
+ /**********************************************************************************************************************/
217
+ /* Define Height of Bookings Row for .flex_tl_row_bar_show_bookings & .flex_tl_row_bar_show_dates */
218
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar{
219
+ min-height: 3em;
220
+ }
221
+ /* Move Bookings Row to Dates Row */
222
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar.flex_tl_row_bar_show_bookings {
223
+ margin-top:-3em;
224
+ }
225
+ /* Move Bookings Titles Row to Dates Row */
226
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar.flex_tl_row_bar_show_booking_titles {
227
+ margin-top:-3em;
228
+ overflow: hidden; /* Hide booking titles, that overflow timeline frame */
229
+ }
230
+ /* Bookings Row */
231
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar {
232
+ display:flex;
233
+ flex-flow: row nowrap;
234
+ justify-content: space-between;
235
+ }
236
+ /**********************************************************************************************************************/
237
+ /* B o o k i n g T i m e s C e l l */
238
+ /**********************************************************************************************************************/
239
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .in_cell_time_section_in_day {
240
+ flex: 1 1 0;
241
+ min-width: 0;
242
+
243
+ display:flex;
244
+ flex-flow: row nowrap;
245
+ justify-content: space-between;
246
+
247
+ }
248
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .in_cell_time_section_in_day .in_cell_time_hour {
249
+ flex: 1 1 0;
250
+ min-width: 0;
251
+
252
+ display:flex;
253
+ flex-flow: row nowrap;
254
+ justify-content: space-between;
255
+ }
256
+ /**********************************************************************************************************************/
257
+ /* B o o k i n g C e l l */
258
+ /**********************************************************************************************************************/
259
+ /* Cell - "Container" */
260
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell {
261
+ flex: 1 1 0;
262
+ min-width: 0;
263
+ display: flex;
264
+ flex-flow: row nowrap;
265
+ justify-content: space-between;
266
+ }
267
+ /* Cell - Date Number */
268
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_dates {
269
+ flex: 1 1 0;
270
+ display: flex;
271
+ flex-flow: row nowrap;
272
+ justify-content: center;
273
+ align-items: center;
274
+ }
275
+ /* Show Times in Cells during 1 day view mode */
276
+ .flex_timeline_frame.flex_frame_view_days_num_30.flex_tl_single_resource
277
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_dates,
278
+ .flex_timeline_frame.flex_frame_view_days_num_1.flex_tl_matrix_resources
279
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_dates{
280
+ justify-content: flex-start;
281
+ align-items: flex-start;
282
+ }
283
+ /* Cell - Booking Pipelines (container for several bookings in cell) */
284
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings {
285
+ flex: 1 1 0;
286
+ min-width: 0;
287
+ display: flex;
288
+ flex-flow: column nowrap; /* Show booking pipeline in a CELL - Horizontally */
289
+ /*flex-flow: row nowrap;*/ /* Show booking pipeline in a CELL - Vertically */
290
+ justify-content: space-between;
291
+ }
292
+ /* Cell - Booking Pipeline for specific one booking in Cell */
293
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id{
294
+ flex: 1 1 0;
295
+ min-width: 0;
296
+ word-wrap: normal;
297
+ white-space: nowrap;
298
+ }
299
+ /* Borders for several horizontal booking pipelines in day cell */
300
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id.pending_booking{
301
+ border-bottom:1px dashed #555;
302
+ }
303
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id.approved_booking{
304
+ border-bottom:1px dashed #ccc;
305
+ }
306
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id:last-child{
307
+ border-bottom:none;
308
+ }
309
+ /* Booking Pipeline ( background bar ) - Link for showing titles */
310
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id .in_cell_date_booking_pipeline_a:hover,
311
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id .in_cell_date_booking_pipeline_a:active,
312
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id .in_cell_date_booking_pipeline_a{
313
+ position: relative;
314
+ cursor: default;
315
+ outline : none;
316
+ box-shadow: none;
317
+ }
318
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id .in_cell_date_booking_pipeline_a .in_cell_date_booking_pipeline_a_sizer {
319
+ width: 100%;
320
+ height: 100%;
321
+ }
322
+ /* Cell - Show Booking Titles (container) *****************************************************************************/
323
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_booking_titles {
324
+ display: flex;
325
+ flex-flow: column wrap;
326
+ justify-content: flex-start;
327
+ }
328
+ /* Cell - Show Booking Title */
329
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_booking_titles .in_cell_date_booking_title{
330
+ overflow: visible;
331
+ white-space: nowrap;
332
+ word-wrap: initial;
333
+ padding: 0px 0.5em;
334
+ margin-left: 4px;
335
+ margin-top: 4px;
336
+ z-index: 1; /* Important for working links in neighborhood cells, when title overflow to them */
337
+ }
338
+ /* Cell - Do not show border for Booking Cell title */
339
+ .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar.flex_tl_row_bar_show_booking_titles .flex_tl_day_cell{
340
+ border:none;
341
+ }
342
+ /**********************************************************************************************************************/
343
+
344
+
345
+ /**********************************************************************************************************************/
346
+ /* On initial Loading - Showing with JavaScript */
347
+ .flex_tl_table {
348
+ display:none;
349
+ }
350
+
351
+ /**********************************************************************************************************************/
352
+ /* P O P O V E R in T i m e l i n e ****************************************************/
353
+ /**********************************************************************************************************************/
354
+ .hidden_items {
355
+ display: none;
356
+ }
357
+ @media (max-width: 782px) {
358
+ .flex_timeline_frame .popover{
359
+ width:98%;
360
+ max-width:98%;
361
+ }
362
+ }
363
+ .flex_timeline_frame .popover {
364
+ border: 2px solid #555;
365
+ font-size: 12px;
366
+ max-width: 299px;
367
+ }
368
+ /** P o p o v e r T i t l e **/
369
+ .flex_timeline_frame .popover .popover-title {
370
+ display: flex;
371
+ flex-flow:row wrap;
372
+ justify-content: flex-start;
373
+ align-items: center;
374
+
375
+ min-height: 2.5em;
376
+ margin:0;
377
+ padding: 5px 30px 5px 6px;
378
+ border-radius: 5px 5px 0 0;
379
+ background-color: #f7f7f7;
380
+ }
381
+ .flex_timeline_frame .popover .popover-title .popover-title-id {
382
+ flex: 0 0 auto;
383
+ width: 100%; /*Start with new line*/
384
+
385
+ font-size:14px;
386
+ font-weight: 500;
387
+ line-height: 1.8;
388
+ margin: 0;
389
+ padding: 0 12px 0 5px;
390
+ border: 0;
391
+ vertical-align: baseline;
392
+ }
393
+ /** Buttons **************************************/
394
+ .flex_timeline_frame .popover .popover-title .popover-title-buttons{
395
+ flex: 1 1 auto;
396
+
397
+ display: flex;
398
+ flex-flow: row wrap;
399
+ justify-content: flex-start;
400
+ margin: 2px 0;
401
+ }
402
+ .flex_timeline_frame .popover .popover-title .popover-title-buttons a,
403
+ .flex_timeline_frame .popover .popover-title .popover-title-buttons a:hover,
404
+ .flex_timeline_frame .popover .popover-title .popover-title-buttons a:focus {
405
+ flex: none;
406
+
407
+ box-sizing: border-box;
408
+ margin: 0 5px 0 0;
409
+ padding: 0 10px 1px;
410
+ font-size: 13px;
411
+ height: 28px;
412
+ line-height: 28px;
413
+ white-space: nowrap;
414
+ text-decoration: none;
415
+ cursor: pointer;
416
+ -webkit-appearance: none;
417
+ color: #555;
418
+ background: #f7f7f7;
419
+ border-radius: 3px;
420
+ border: 1px solid #d8d8d8;
421
+ box-shadow: none;
422
+ outline: none;
423
+ }
424
+ .flex_timeline_frame .popover .popover-title .popover-title-buttons a:hover {
425
+ background: #fafafa;
426
+ border-color: #ccc;
427
+ color: #23282d;
428
+ }
429
+ .flex_timeline_frame .popover .popover-title .popover-title-buttons a.timeline_button_print{
430
+ margin-right:1.5em;
431
+ }
432
+ /** Close X ********************************/
433
+ .flex_timeline_frame .popover .popover-close,
434
+ .flex_timeline_frame .popover .popover-close:hover {
435
+ position: absolute;
436
+ right: 0;
437
+ top: 0;
438
+ font-size: 20px;
439
+ line-height: 1.5em;
440
+ padding: 5px;
441
+ }
442
+ .flex_timeline_frame .popover .popover-close a,
443
+ .flex_timeline_frame .popover .popover-close a:hover,
444
+ .flex_timeline_frame .popover .popover-close a:active,
445
+ .flex_timeline_frame .popover .popover-close a:focus {
446
+ text-decoration: none;
447
+ border-style: none;
448
+ outline: 0;
449
+ color:#444;
450
+ background: transparent;
451
+ padding: 0 5px;
452
+ }
453
+ /**********************************************/
454
+ .flex_timeline_frame .popover.bottom > .arrow::after {
455
+ border-bottom-color: transparent;
456
+ }
457
+ /**********************************************************************************************************************/
458
+ /** P o p o v e r C o n t e n t **/
459
+ /**********************************************************************************************************************/
460
+ .popover-content .flex-popover-content-data {
461
+ display:flex;
462
+ flex-flow:column wrap;
463
+ justify-content: space-between;
464
+ }
465
+ .popover-content .flex-popover-content-data .flex-popover-bars,
466
+ .popover-content .wpbc-popover-content-data .wpbc-popover-cost-bar,
467
+ .popover-content .wpbc-popover-content-data .booking-labels,
468
+ .popover-content .wpbc-popover-content-data .wpbc-popover-booking-data,
469
+ .popover-content .wpbc-popover-content-data .wpbc-popover-booking-notes,
470
+ .popover-content .wpbc-popover-content-data .booking-dates{
471
+ flex: 1 1 0;
472
+ }
473
+ .popover-content .flex-popover-content-data .flex-popover-bars {
474
+ display:flex;
475
+ flex-flow:row nowrap;
476
+ justify-content: space-between;
477
+ }
478
+ .popover-content .flex-popover-content-data .flex-popover-bars .flex-popover-labels-bar{
479
+ flex: 1 1 0;
480
+ }
481
+ .popover-content .flex-popover-content-data .flex-popover-bars .flex-popover-cost-bar {
482
+ flex: none;
483
+ padding: 0.3em 0;
484
+ margin: 0;
485
+ }
486
+ .popover-content .flex-popover-content-data .flex-popover-labels-bar{
487
+ display:flex;
488
+ flex-flow:row wrap;
489
+ justify-content: flex-start;
490
+ }
491
+
492
+ .popover-content .flex-popover-content-data .flex-popover-labels-bar .flex-label {
493
+ flex: 0 1 auto;
494
+ min-width: 0;
495
+ }
496
+ .popover-content .flex-popover-content-data .flex-label {
497
+ border: 0;
498
+ border-radius: 3px;
499
+ text-shadow: none;
500
+ box-shadow: 0 0 1px #ddd;
501
+ font-weight: 400;
502
+ font-size: 95%;
503
+
504
+ line-height: 1.7em;
505
+ padding: .2em .8em 0.2em;
506
+ background-color: #5bc0de;
507
+ color: #ffffff;
508
+ text-align: center;
509
+ vertical-align: baseline;
510
+ margin: 0.15em 0.75em 0.5em 0;
511
+
512
+ word-wrap: break-word;
513
+ word-wrap: anywhere;
514
+ white-space: pre-wrap;
515
+ }
516
+ .popover-content .flex-popover-content-data .flex-label .label-prefix {
517
+ font-size: 70%;
518
+ font-weight: 400;
519
+ }
520
+ .popover-content .flex-popover-content-data .flex-label.flex-label-id {
521
+ background: #888;
522
+ }
523
+ .popover-content .flex-popover-content-data .flex-label.flex-label-booking-status.label-pending {
524
+ background: #FFBB45;
525
+ }
526
+ .popover-content .flex-popover-content-data .flex-label.flex-label-booking-status.label-approved {
527
+ background: #9BE;
528
+ }
529
+ .popover-content .flex-popover-content-data .flex-label.flex-label-payment.payment-label-success {
530
+ background: #468847;
531
+ }
532
+ .popover-content .flex-popover-content-data .flex-label.flex-label-payment.payment-label-unknown {
533
+ background: #999;
534
+ }
535
+ .popover-content .flex-popover-content-data .flex-label.flex-label-trash {
536
+ background: #D94A48;
537
+ }
538
+ .popover-content .flex-popover-content-data .flex-label.flex-label-resource {
539
+ text-align: left;
540
+ }
541
+ /* Move cost to right side*/
542
+ .popover-content .flex-popover-content-data .flex-label.flex-label-cost {
543
+ margin-left:auto;
544
+ background: transparent;
545
+ font-weight: 600;
546
+ color:#333;
547
+ box-shadow: none;
548
+ padding: 0;
549
+ margin: 0;
550
+ }
551
+
552
+ .popover-content .flex-popover-content-data .flex-popover-booking-data {
553
+ margin: 1em 0;
554
+ text-align: left;
555
+ font-size: 1.05em;
556
+ line-height: 1.8em;
557
+ color: #333;
558
+ max-width: 100%;
559
+ word-wrap: break-word;
560
+ word-wrap: anywhere;
561
+ }
562
+ .popover-content .flex-popover-content-data .flex-popover-booking-data span.fieldvalue {
563
+ background: transparent; /* #FFF9E3; */
564
+ padding: 4px 5px;
565
+ border-radius: 2px;
566
+ }
567
+ /* Notes ***************************************************/
568
+ .popover-content .flex-popover-content-data .wpbc-popover-booking-notes{
569
+ margin: 0 0 1em 0;
570
+ }
571
+ /* Dates ***************************************************/
572
+ .popover-content .flex-popover-content-data .flex-label-dates {
573
+ display: flex;
574
+ flex-flow: row wrap;
575
+ justify-content: flex-start;
576
+ align-items: flex-start;
577
+ }
578
+ .popover-content .flex-popover-content-data .flex-label-dates .flex-label.field-booking-date{
579
+ flex:0 1 auto;
580
+ font-size: 103%;
581
+ padding: 0.1em .7em 0.1em;
582
+ margin: 0 0 0.2em;
583
+ }
584
+ .popover-content .flex-popover-content-data .flex-label-dates .date_tire{
585
+ flex:0 1 auto;
586
+ margin: 0 0.2em;
587
+ font-size: 175%;
588
+ line-height: 1em;
589
+ }
590
+ .popover-content .flex-popover-content-data .flex-label-dates .flex-label.field-booking-date .field-booking-time{
591
+ font-size: 0.7em;
592
+ font-weight: 400;
593
+ color:#23282d;
594
+ }
595
+ /* Pending Background */
596
+ .popover-content .flex-popover-content-data .flex-label-dates .flex-label.field-booking-date{
597
+ background: #FFBB45;
598
+ }
599
+ /* Approved Background */
600
+ .popover-content .flex-popover-content-data .flex-label-dates .flex-label.field-booking-date.approved{
601
+ background: #9BE;
602
+ }
603
+ /* HR separator for several bookings in popover */
604
+ .popover-content .wpbc_tl_popover_booking_separator {
605
+ margin: 20px 0;
606
+ border-top: 1px solid #ddd;
607
+ box-shadow: 0 1px 1px #f9f9f9;
608
+ }
core/timeline/v2/wpbc-class-timeline_v2.php ADDED
@@ -0,0 +1,3049 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php /**
2
+ * @version 1.1
3
+ * @package Booking Calendar
4
+ * @category Timeline for Admin Panel
5
+ * @author wpdevelop
6
+ *
7
+ * @web-site https://wpbookingcalendar.com/
8
+ * @email info@wpbookingcalendar.com
9
+ *
10
+ * @modified 2016-01-18
11
+ */
12
+
13
+ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
14
+
15
+
16
+ class WPBC_TimelineFlex {
17
+
18
+
19
+ public $bookings; // Booking objects from external function
20
+ public $booking_types; // Resources objects from external function
21
+
22
+ public $dates_array; // Dates for Timeline format
23
+ public $time_array_new; // Times for Timeline format
24
+
25
+ public $request_args; // Parsed paramaters
26
+
27
+ private $is_frontend; // Client ot Admin sides.
28
+
29
+ public $timeline_titles;
30
+
31
+ private $week_days_titles;
32
+ private $current_user_id;
33
+
34
+ private $html_client_id; // ID of border element at client side.
35
+ public $options; //FixIn:7.0.1.50
36
+
37
+ private $data_in_previous_cell; //FixIn: 8.5.2.6
38
+
39
+ public function __construct(){// $bookings, $booking_types ) {
40
+
41
+ $this->reset_data_in_previous_cell();
42
+
43
+ $this->options = array(); //FixIn:7.0.1.50
44
+
45
+ $this->html_client_id = false;
46
+
47
+ $this->current_user_id = 0;
48
+
49
+ $this->is_frontend = false;
50
+
51
+ //FixIn: 8.1.3.31
52
+ $calendar_overview_start_time = get_bk_option( 'booking_calendar_overview_start_time' );
53
+ $calendar_overview_end_time = get_bk_option( 'booking_calendar_overview_end_time' );
54
+ $hours_limit = ( empty( $calendar_overview_start_time ) ? '0' : $calendar_overview_start_time )
55
+ . ','
56
+ . ( empty( $calendar_overview_end_time ) ? '24' : $calendar_overview_end_time );
57
+ $this->request_args = array(
58
+ 'wh_booking_type' => '1'
59
+ , 'is_matrix' => false
60
+ , 'view_days_num' => '90'
61
+ , 'scroll_start_date' => ''
62
+ , 'scroll_day' => 0
63
+ , 'scroll_month' => 0
64
+ , 'wh_trash' => ''
65
+ , 'limit_hours' => $hours_limit // '0,24' //FixIn: 7.0.1.14 if ( ! ( ( $tt >= $start_hour_for_1day_view ) && ( $tt <= $end_hour_for_1day_view ) ) ) continue;
66
+ , 'only_booked_resources' => ( isset( $_REQUEST['only_booked_resources'] ) ) ? 1 : 0 //FixIn: 7.0.1.51
67
+ , 'booking_hash' => ( isset( $_REQUEST['booking_hash'] ) ) ? $_REQUEST['booking_hash'] : '' //FixIn: 8.1.3.5
68
+
69
+ );
70
+
71
+ $this->timeline_titles = array(
72
+ 'header_column1' => __('Resources', 'booking')
73
+ , 'header_column2' => __('Dates', 'booking')
74
+ , 'header_title' => __('Bookings', 'booking')
75
+ );
76
+
77
+
78
+ $this->week_days_titles = array(
79
+ 'full' => array(
80
+ 1 => __( 'Monday', 'booking' )
81
+ , 2 => __( 'Tuesday', 'booking' )
82
+ , 3 => __( 'Wednesday', 'booking' )
83
+ , 4 => __( 'Thursday', 'booking' )
84
+ , 5 => __( 'Friday', 'booking' )
85
+ , 6 => __( 'Saturday', 'booking' )
86
+ , 7 => __( 'Sunday', 'booking' )
87
+ )
88
+ , '3' => array( //FixIn: 7.0.1.11
89
+ 1 => __( 'Mon', 'booking' )
90
+ , 2 => __( 'Tue', 'booking' )
91
+ , 3 => __( 'Wed', 'booking' )
92
+ , 4 => __( 'Thu', 'booking' )
93
+ , 5 => __( 'Fri', 'booking' )
94
+ , 6 => __( 'Sat', 'booking' )
95
+ , 7 => __( 'Sun', 'booking' )
96
+ )
97
+ , '1' => array( //FixIn: 7.0.1.11
98
+ 1 => substr( __( 'Mon', 'booking' ), 0, -1 )
99
+ , 2 => substr( __( 'Tue', 'booking' ), 0, -1 )
100
+ , 3 => substr( __( 'Wed', 'booking' ), 0, -1 )
101
+ , 4 => substr( __( 'Thu', 'booking' ), 0, -1 )
102
+ , 5 => substr( __( 'Fri', 'booking' ), 0, -1 )
103
+ , 6 => substr( __( 'Sat', 'booking' ), 0, -1 )
104
+ , 7 => substr( __( 'Sun', 'booking' ), 0, -1 )
105
+ )
106
+ , 'short' => array(
107
+ 1 => substr( __( 'Mon', 'booking' ), 0, 1 )
108
+ , 2 => substr( __( 'Tue', 'booking' ), 0, 1 )
109
+ , 3 => substr( __( 'Wed', 'booking' ), 0, 1 )
110
+ , 4 => substr( __( 'Thu', 'booking' ), 0, 1 )
111
+ , 5 => substr( __( 'Fri', 'booking' ), 0, 1 )
112
+ , 6 => substr( __( 'Sat', 'booking' ), 0, 1 )
113
+ , 7 => substr( __( 'Sun', 'booking' ), 0, 1 )
114
+ )
115
+ );
116
+
117
+
118
+ }
119
+
120
+
121
+ /**
122
+ * Rezet data in previos cell
123
+ */
124
+ private function reset_data_in_previous_cell(){
125
+
126
+ $this->data_in_previous_cell = array(
127
+ 'bookings_in_cell' => array(),
128
+ 'previous_month' => ''
129
+ );
130
+
131
+ }
132
+
133
+ ////////////////////////////////////////////////////////////////////////////
134
+
135
+ /**
136
+ * Init Timeline From page shortcode
137
+ *
138
+ * @param array $attr = array(
139
+ 'wh_booking_type' => ''
140
+ , 'is_matrix' => false
141
+ , 'view_days_num' => '30'
142
+ , 'scroll_start_date' => ''
143
+ , 'scroll_day' => 0
144
+ , 'scroll_month' => 0
145
+ );
146
+ */
147
+ public function client_init( $attr ) {
148
+
149
+ $this->is_frontend = true;
150
+
151
+ //FixIn:7.0.1.50
152
+ if ( isset( $attr['options'] ) ) {
153
+
154
+ $bk_otions = $attr['options'];
155
+ $custom_params = array();
156
+ if (! empty($bk_otions)) {
157
+ $param ='\s*([^\s]+)=[\'"]{1}([^\'"]+)[\'"]{1}\s*'; // Find all possible options
158
+ $pattern_to_search='%\s*{([^\s]+)' . $param .'}\s*[,]?\s*%';
159
+ preg_match_all($pattern_to_search, $bk_otions, $matches, PREG_SET_ORDER);
160
+ //debuge($matches);
161
+ /**
162
+ * [bookingtimeline ... options='{resource_link 3="http://beta/resource-apartment3-id3/"},{resource_link 4="http://beta/resource-3-id4/"}' ... ]
163
+ [0] => {resource_link 3="http://beta/resource-apartment3-id3/"},
164
+ [1] => resource_link // Name
165
+ [2] => 3 // ID
166
+ [3] => http://beta/resource-apartment3-id3/ // Value
167
+ */
168
+ foreach ( $matches as $matche_value ) {
169
+
170
+ if ( ! isset( $this->options[ $matche_value[1] ] ) ) {
171
+ $this->options[ $matche_value[1] ] = array();
172
+ }
173
+ $this->options[ $matche_value[1] ][ $matche_value[2] ] = $matche_value[3];
174
+ }
175
+ }
176
+
177
+ //debuge($this->options);
178
+ }
179
+ //FixIn:7.0.1.50
180
+
181
+
182
+ //Ovverride some parameters
183
+ if ( isset( $attr['type'] ) ) {
184
+ $attr['wh_booking_type'] = $attr['type']; //Instead of 'wh_booking_type' paramter in shortcode is used 'type' parameter
185
+ }
186
+
187
+ // Get paramaters from shortcode paramaters
188
+ $this->define_request_view_params_from_params( $attr );
189
+
190
+ if ( ! $this->request_args['is_matrix'] )
191
+ $this->timeline_titles['header_column1'] = '';
192
+
193
+ //Override any possible titles from shortcode paramaters
194
+ $this->timeline_titles = wp_parse_args( $attr, $this->timeline_titles );
195
+
196
+ // Get clean parameters to request booking data
197
+ $args = $this->wpbc_get_clean_paramas_from_request_for_timeline();
198
+
199
+
200
+ //FixIn: 8.1.3.5
201
+ /** Client - Page first load
202
+ *
203
+ * If provided valid request_args['booking_hash']
204
+ * - Firstly defined in constructor in $_REQUEST['booking_hash']
205
+ * - or overwrited in define_request_view_params_from_params from parameters in shortcode 'booking_hash'
206
+ * then check, if exist booking for this hash.
207
+ * If exist, get Email of this booking, and
208
+ * filter getting all other bookings by email keyword.
209
+ * Addtionly set param ['only_booked_resources'] for showing only booking resources with exist bookings.
210
+ */
211
+ if ( isset( $this->request_args['booking_hash'] ) ) {
212
+
213
+ // Get booking details by HASH, and then return Email (or other data of booking, or false if error
214
+ $booking_details_email = wpbc_check_hash_get_booking_details( $this->request_args['booking_hash'] , 'email' );
215
+
216
+ if ( ! empty( $booking_details_email ) ) {
217
+
218
+ // Do not show booking resources with no bookings
219
+ $this->request_args['only_booked_resources'] = 1;
220
+
221
+ //Set keyword for showing bookings ony relative to this email
222
+ $args['wh_keyword'] = $booking_details_email; // 'jo@wpbookingcalendar.com';
223
+ }
224
+ }
225
+ //FixIn: 8.1.3.5 - End
226
+
227
+
228
+ // Get booking data
229
+ $bk_listing = wpbc_get_bookings_objects( $args );
230
+ $this->bookings = $bk_listing['bookings'];
231
+ $this->booking_types = $bk_listing['resources'];
232
+
233
+ //Get Dates and Times for Timeline format
234
+ //debuge($this->bookings[84]);
235
+ $bookings_date_time = $this->wpbc_get_dates_and_times_for_timeline( $this->bookings );
236
+ $this->dates_array = $bookings_date_time[0];
237
+ $this->time_array_new = $bookings_date_time[1];
238
+ //debuge($this->time_array_new['2017-01-13']);
239
+
240
+
241
+ //$milliseconds = round(microtime(true) * 1000); //FixIn: 7.0.Beta.18
242
+ $milliseconds = rand( 10000, 99999 );
243
+
244
+ $this->html_client_id = 'wpbc_timeline_' . $milliseconds;
245
+
246
+ return $this->html_client_id;
247
+ }
248
+
249
+
250
+ /**
251
+ * Init parameters after Ajax Navigation actions
252
+ *
253
+ * @param array $attr
254
+ * @return string html_client_id - exist from input parameters
255
+ */
256
+ public function ajax_init( $attr ) {
257
+
258
+ if ( ! defined( 'WPBC_TIMELINE_AJAX' ) ) { define( 'WPBC_TIMELINE_AJAX', true ); } //FixIn: 8.4.7.13
259
+
260
+ $this->is_frontend = (bool) $attr['is_frontend'];;
261
+
262
+ //Ovverride some parameters
263
+ if ( isset( $attr['type'] ) ) {
264
+ $attr['wh_booking_type'] = $attr['type']; //Instead of 'wh_booking_type' paramter in shortcode is used 'type' parameter
265
+ }
266
+ //debuge($this->request_args, $attr);
267
+ // Get paramaters from shortcode paramaters
268
+ $this->define_request_view_params_from_params( $attr );
269
+
270
+ //debuge($this->request_args);
271
+ if ( ! $this->request_args['is_matrix'] ) {
272
+
273
+ switch ( $this->request_args['view_days_num'] ) {
274
+ case '90':
275
+ case '30':
276
+ if ( isset( $this->request_args['scroll_day'] ) ) $scroll_day = intval( $this->request_args['scroll_day'] );
277
+ else $scroll_day = 0;
278
+
279
+ if ( $attr['nav_step'] == '-1' ) $this->request_args['scroll_day'] = intval( $scroll_day - 7 );
280
+ if ( $attr['nav_step'] == '1' ) $this->request_args['scroll_day'] = intval( $scroll_day + 7 );
281
+
282
+ /*
283
+ $scroll_params = array( '&scroll_day='.intval($scroll_day-4*7),
284
+ '&scroll_day='.intval($scroll_day-7),
285
+ '&scroll_day=0',
286
+ '&scroll_day='.intval($scroll_day+7 ),
287
+ '&scroll_day='.intval($scroll_day+4*7) );
288
+ $scroll_titles = array( __('Previous 4 weeks' ,'booking'),
289
+ __('Previous week' ,'booking'),
290
+ __('Current week' ,'booking'),
291
+ __('Next week' ,'booking'),
292
+ __('Next 4 weeks' ,'booking') ); */
293
+ break;
294
+ default: // 365
295
+ if ( !isset( $this->request_args['scroll_month'] ) ) $this->request_args['scroll_month'] = 0;
296
+ $scroll_month = intval( $this->request_args['scroll_month'] );
297
+
298
+ if ( $attr['nav_step'] == '-1' ) $this->request_args['scroll_month'] = intval( $scroll_month - 1 );
299
+ if ( $attr['nav_step'] == '1' ) $this->request_args['scroll_month'] = intval( $scroll_month + 1 );
300
+ /*
301
+ $scroll_params = array( '&scroll_month='.intval($scroll_month-3),
302
+ '&scroll_month='.intval($scroll_month-1),
303
+ '&scroll_month=0',
304
+ '&scroll_month='.intval($scroll_month+1 ),
305
+ '&scroll_month='.intval($scroll_month+3) );
306
+ $scroll_titles = array( __('Previous 3 months' ,'booking'),
307
+ __('Previous month' ,'booking'),
308
+ __('Current month' ,'booking'),
309
+ __('Next month' ,'booking'),
310
+ __('Next 3 months' ,'booking') );*/
311
+ break;
312
+ }
313
+ } else { // Matrix
314
+
315
+ switch ( $this->request_args['view_days_num'] ) {
316
+ case '1': //Day
317
+ if ( isset( $this->request_args['scroll_day'] ) ) $scroll_day = intval( $this->request_args['scroll_day'] );
318
+ else $scroll_day = 0;
319
+
320
+ if ( $attr['nav_step'] == '-1' ) $this->request_args['scroll_day'] = intval( $scroll_day - 1 );
321
+ if ( $attr['nav_step'] == '1' ) $this->request_args['scroll_day'] = intval( $scroll_day + 1 );
322
+ /*
323
+ $scroll_params = array( '&scroll_day='.intval($scroll_day-7),
324
+ '&scroll_day='.intval($scroll_day-1),
325
+ '&scroll_day=0',
326
+ '&scroll_day='.intval($scroll_day+1 ),
327
+ '&scroll_day='.intval($scroll_day+7) );
328
+ $scroll_titles = array( __('Previous 7 days' ,'booking'),
329
+ __('Previous day' ,'booking'),
330
+ __('Current day' ,'booking'),
331
+ __('Next day' ,'booking'),
332
+ __('Next 7 days' ,'booking') );*/
333
+ break;
334
+
335
+ case '7': //Week
336
+
337
+ if ( isset( $this->request_args['scroll_day'] ) ) $scroll_day = intval( $this->request_args['scroll_day'] );
338
+ else $scroll_day = 0;
339
+
340
+ if ( $attr['nav_step'] == '-1' ) $this->request_args['scroll_day'] = intval( $scroll_day - 7 );
341
+ if ( $attr['nav_step'] == '1' ) $this->request_args['scroll_day'] = intval( $scroll_day + 7 );
342
+ /*
343
+ $scroll_params = array( '&scroll_day='.intval($scroll_day-4*7),
344
+ '&scroll_day='.intval($scroll_day-7),
345
+ '&scroll_day=0',
346
+ '&scroll_day='.intval($scroll_day+7 ),
347
+ '&scroll_day='.intval($scroll_day+4*7) );
348
+ $scroll_titles = array( __('Previous 4 weeks' ,'booking'),
349
+ __('Previous week' ,'booking'),
350
+ __('Current week' ,'booking'),
351
+ __('Next week' ,'booking'),
352
+ __('Next 4 weeks' ,'booking') );*/
353
+ break;
354
+
355
+ case '30':
356
+ case '60':
357
+ case '90': //3 months
358
+
359
+ if ( !isset( $this->request_args['scroll_month'] ) ) $this->request_args['scroll_month'] = 0;
360
+ $scroll_month = intval( $this->request_args['scroll_month'] );
361
+
362
+ if ( $attr['nav_step'] == '-1' ) $this->request_args['scroll_month'] = intval( $scroll_month - 1 );
363
+ if ( $attr['nav_step'] == '1' ) $this->request_args['scroll_month'] = intval( $scroll_month + 1 );
364
+ /*
365
+ $scroll_params = array( '&scroll_month='.intval($scroll_month-3),
366
+ '&scroll_month='.intval($scroll_month-1),
367
+ '&scroll_month=0',
368
+ '&scroll_month='.intval($scroll_month+1 ),
369
+ '&scroll_month='.intval($scroll_month+3) );
370
+ $scroll_titles = array( __('Previous 3 months' ,'booking'),
371
+ __('Previous month' ,'booking'),
372
+ __('Current month' ,'booking'),
373
+ __('Next month' ,'booking'),
374
+ __('Next 3 months' ,'booking') );*/
375
+ break;
376
+
377
+ default: // 30, 60, 90...
378
+ if ( !isset( $this->request_args['scroll_month'] ) ) $this->request_args['scroll_month'] = 0;
379
+ $scroll_month = intval( $this->request_args['scroll_month'] );
380
+
381
+ if ( $attr['nav_step'] == '-1' ) $this->request_args['scroll_month'] = intval( $scroll_month - 1 );
382
+ if ( $attr['nav_step'] == '1' ) $this->request_args['scroll_month'] = intval( $scroll_month + 1 );
383
+ /*
384
+ $scroll_params = array( '&scroll_month='.intval($scroll_month-3),
385
+ '&scroll_month='.intval($scroll_month-1),
386
+ '&scroll_month=0',
387
+ '&scroll_month='.intval($scroll_month+1 ),
388
+ '&scroll_month='.intval($scroll_month+3) );
389
+ $scroll_titles = array( __('Previous 3 months' ,'booking'),
390
+ __('Previous month' ,'booking'),
391
+ __('Current month' ,'booking'),
392
+ __('Next month' ,'booking'),
393
+ __('Next 3 months' ,'booking') );
394
+ */
395
+ break;
396
+ }
397
+ }
398
+
399
+ // Titles
400
+ if ( ! $this->request_args['is_matrix'] )
401
+ $this->timeline_titles['header_column1'] = '';
402
+
403
+ //Override any possible titles from shortcode paramaters
404
+ $this->timeline_titles = wp_parse_args( $attr, $this->timeline_titles );
405
+
406
+
407
+ // Get clean parameters to request booking data
408
+ $args = $this->wpbc_get_clean_paramas_from_request_for_timeline();
409
+
410
+
411
+ //FixIn: 8.1.3.5
412
+ /**
413
+ * If provided valid ['booking_hash'] in timeline_obj in JavaScript param during Ajax request,
414
+ * then check, if exist booking for this hash. If exist, get Email of this booking, and
415
+ * filter getting all other bookings by email keyword.
416
+ * Addtionly set param ['only_booked_resources'] for showing only booking resources with exist bookings
417
+ */
418
+ if ( isset( $attr['booking_hash'] ) ) {
419
+
420
+ // Get booking details by HASH, and then return Email (or other data of booking, or false if error
421
+ $booking_details_email = wpbc_check_hash_get_booking_details( $attr['booking_hash'] , 'email' );
422
+ //debuge($attr, $booking_details_email);
423
+ if ( ! empty( $booking_details_email ) ) {
424
+
425
+ // Do not show booking resources with no bookings
426
+ $this->request_args['only_booked_resources'] = 1;
427
+
428
+ //Set keyword for showing bookings ony relative to this email
429
+ $args['wh_keyword'] = $booking_details_email; // 'jo@wpbookingcalendar.com';
430
+ }
431
+ if ( ( empty( $booking_details_email ) ) && ( ! empty( $attr['booking_hash'] ) ) ) { //FixIn: 8.4.6.1
432
+ //FixIn: 8.4.5.13
433
+ $this->request_args['only_booked_resources'] = 1;
434
+ $args['wh_keyword'] = '``^`````^^````^`````````';
435
+ }
436
+ }
437
+ //FixIn: 8.1.3.5 - End
438
+
439
+
440
+ // Get booking data
441
+ $bk_listing = wpbc_get_bookings_objects( $args );
442
+
443
+ $this->bookings = $bk_listing['bookings'];
444
+ $this->booking_types = $bk_listing['resources'];
445
+
446
+ //Get Dates and Times for Timeline format
447
+ $bookings_date_time = $this->wpbc_get_dates_and_times_for_timeline( $this->bookings );
448
+ $this->dates_array = $bookings_date_time[0];
449
+ $this->time_array_new = $bookings_date_time[1];
450
+
451
+
452
+ $this->html_client_id = $attr['html_client_id'];
453
+
454
+ return $this->html_client_id;
455
+ }
456
+
457
+
458
+ /**
459
+ * Define initial REQUEST parameters for Admin Panel and Get bookings and resources
460
+ */
461
+ public function admin_init() {
462
+
463
+ // User ////////////////////////////////////////////////////////////////
464
+ $user = wp_get_current_user();
465
+ $this->current_user_id = $user->ID;
466
+
467
+ $this->is_frontend = false;
468
+
469
+ // Get paramaters from REQUEST
470
+ $this->define_request_view_params();
471
+
472
+ if ( ! $this->request_args['is_matrix'] )
473
+ $this->timeline_titles['header_column1'] = '';
474
+
475
+ // debuge($this->request_args);
476
+
477
+ // Get clean parameters to request booking data
478
+ $args = $this->wpbc_get_clean_paramas_from_request_for_timeline();
479
+
480
+ // Get booking data
481
+ $bk_listing = wpbc_get_bookings_objects( $args );
482
+ $this->bookings = $bk_listing['bookings'];
483
+ $this->booking_types = $bk_listing['resources'];
484
+
485
+ //Get Dates and Times for Timeline format
486
+ $bookings_date_time = $this->wpbc_get_dates_and_times_for_timeline( $this->bookings );
487
+ $this->dates_array = $bookings_date_time[0];
488
+ $this->time_array_new = $bookings_date_time[1];
489
+ }
490
+
491
+
492
+ public function client_navigation( $param ) {
493
+ ?>
494
+ <script type="text/javascript">
495
+ wpbc_timeline_obj["<?php echo $this->html_client_id; ?>"] = {
496
+ is_frontend: "<?php echo ( $this->is_frontend ? '1' : '0' ); ?>"
497
+ , html_client_id: "<?php echo $this->html_client_id; ?>"
498
+ , wh_booking_type: "<?php echo $this->request_args['wh_booking_type']; ?>"
499
+ , is_matrix: "<?php echo ( $this->request_args['is_matrix'] ? '1' : '0' ); ?>"
500
+ , view_days_num: "<?php echo $this->request_args['view_days_num']; ?>"
501
+ , scroll_start_date: "<?php echo $this->request_args['scroll_start_date']; ?>"
502
+ , scroll_day: "<?php echo $this->request_args['scroll_day']; ?>"
503
+ , scroll_month: "<?php echo $this->request_args['scroll_month']; ?>"
504
+ , 'header_column1': "<?php echo esc_js( $this->timeline_titles['header_column1'] ); ?>"
505
+ , 'header_column2': "<?php echo esc_js( $this->timeline_titles['header_column2'] ); ?>"
506
+ , 'header_title': "<?php echo esc_js( $this->timeline_titles['header_title'] ); ?>"
507
+ , 'wh_trash': "<?php echo esc_js( $this->request_args['wh_trash'] ); ?>"
508
+ , 'limit_hours': "<?php echo esc_js( $this->request_args['limit_hours'] ); ?>" //FixIn: 7.0.1.14
509
+ , 'only_booked_resources': "<?php echo esc_js( $this->request_args['only_booked_resources'] ); ?>" //FixIn: 7.0.1.51
510
+ , 'options': '<?php echo maybe_serialize( $this->options ) ; ?>' //FixIn: 7.2.1.14
511
+ , 'booking_hash': "<?php echo esc_js( $this->request_args['booking_hash'] ); ?>" //FixIn: 8.1.3.5
512
+ };
513
+ </script>
514
+ <div class="flex_tl_nav">
515
+ <div class="flex_tl_prev" href="javascript:void(0)" onclick="javascript:wpbc_flextimeline_nav( wpbc_timeline_obj['<?php echo $this->html_client_id; ?>'], -1 );"><a>&laquo;</a></div>
516
+ <div class="flex_tl_title"><?php echo $param['title'] ?></div>
517
+ <div class="flex_tl_next" href="javascript:void(0)" onclick="javascript:wpbc_flextimeline_nav( wpbc_timeline_obj['<?php echo $this->html_client_id; ?>'], 1 );"><a>&raquo;</a></div>
518
+ </div>
519
+ <?php
520
+ }
521
+
522
+ ////////////////////////////////////////////////////////////////////////////
523
+ // S u p p o r t
524
+ ////////////////////////////////////////////////////////////////////////////
525
+
526
+ /**
527
+ * Get array of cleaned (limited number) paramas from request for getting bookings by "wpbc_get_bookings_objects"
528
+ *
529
+ * @return array
530
+ */
531
+ public function wpbc_get_clean_paramas_from_request_for_timeline() {
532
+
533
+ //FixIn: 7.0.1.15 - replacing in this file from date( to date_i18n(
534
+ $start_year = intval( date_i18n( "Y" ) );
535
+ $start_month = intval( date_i18n( "m" ) );
536
+ $start_day = 1;
537
+ //debuge( '1.( $start_year, $start_month, $start_day , $this->request_args ', $start_year, $start_month, $start_day , $this->request_args );
538
+ if ( ! empty( $this->request_args['scroll_start_date'] ) ) { // scroll_start_date=2013-07-01
539
+
540
+ list( $start_year, $start_month, $start_day ) = explode( '-', $this->request_args['scroll_start_date'] );
541
+ $start_year = intval( $start_year );
542
+ $start_month = intval( $start_month );
543
+ $start_day = intval( $start_day );
544
+ }
545
+ //debuge( '2.( $start_year, $start_month, $start_day )', $start_year, $start_month, $start_day );
546
+ $scroll_day = 0;
547
+ $scroll_month = 0;
548
+
549
+ if ( ( isset( $this->request_args['view_days_num'] ) )
550
+ //&& ($this->request_args['view_days_num'] != '30')
551
+ )
552
+ $view_days_num = $this->request_args['view_days_num'];
553
+ else
554
+ $view_days_num = get_bk_option( 'booking_view_days_num' );
555
+
556
+ $view_days_num = intval( $view_days_num );
557
+ //debuge( '2.1( $view_days_num )', $view_days_num );
558
+ $is_matrix = (bool) $this->request_args['is_matrix'];
559
+
560
+ if ( $is_matrix ) {
561
+
562
+ switch ( $view_days_num ) {
563
+
564
+ case '1':
565
+ if ( empty( $this->request_args['scroll_start_date'] ) )
566
+ $start_day = intval( date_i18n( "d" ) ); // Today date
567
+
568
+ if ( isset( $this->request_args['scroll_day'] ) )
569
+ $scroll_day = intval( $this->request_args['scroll_day'] );
570
+
571
+ $real_date = mktime( 0, 0, 0, $start_month, ($start_day + $scroll_day ), $start_year );
572
+ $wh_booking_date = date_i18n( "Y-m-d", $real_date );
573
+
574
+ $real_date = mktime( 0, 0, 0, $start_month, ($start_day + 0 + $scroll_day ), $start_year );
575
+ $wh_booking_date2 = date_i18n( "Y-m-d", $real_date );
576
+ break;
577
+
578
+ case '7':
579
+ if ( empty( $this->request_args['scroll_start_date'] ) )
580
+ $start_day = intval( date_i18n( "d" ) ); //Today date
581
+ $start_week_day_num = intval( date_i18n( "w" ) );
582
+ $start_day_weeek = intval( get_bk_option( 'booking_start_day_weeek' ) ); //[0]:Sun .. [6]:Sut
583
+ if ( $start_week_day_num != $start_day_weeek ) {
584
+ for ( $d_inc = 1; $d_inc < 8; $d_inc++ ) { // Just get week back
585
+ $real_date = mktime( 0, 0, 0, $start_month, ($start_day - $d_inc ), $start_year );
586
+ $start_week_day_num = intval( date_i18n( "w", $real_date ) );
587
+ if ( $start_week_day_num == $start_day_weeek ) {
588
+ $start_day = intval( date_i18n( "d", $real_date ) );
589
+ $start_year = intval( date_i18n( "Y", $real_date ) );
590
+ $start_month = intval( date_i18n( "m", $real_date ) );
591
+ $d_inc = 9;
592
+ }
593
+ }
594
+ }
595
+
596
+ if ( isset( $this->request_args['scroll_day'] ) )
597
+ $scroll_day = intval( $this->request_args['scroll_day'] );
598
+
599
+ $real_date = mktime( 0, 0, 0, $start_month, ( $start_day + $scroll_day ), $start_year );
600
+ $wh_booking_date = date_i18n( "Y-m-d", $real_date );
601
+
602
+ $real_date = mktime( 0, 0, 0, $start_month, ($start_day + 7 + $scroll_day ), $start_year );
603
+ $wh_booking_date2 = date_i18n( "Y-m-d", $real_date );
604
+ break;
605
+
606
+ case '30':
607
+ if ( isset( $this->request_args['scroll_month'] ) )
608
+ $scroll_month = intval( $this->request_args['scroll_month'] );
609
+
610
+ //debuge('3.$scroll_month, $start_month, $start_day, $start_year', $scroll_month, $start_month, $start_day, $start_year );
611
+ $real_date = mktime( 0, 0, 0, ($start_month + $scroll_month ), ( $start_day ), $start_year );
612
+ //debuge('4.$real_date',$real_date);
613
+ $wh_booking_date = date_i18n( "Y-m-d", $real_date );
614
+ //debuge('5.$wh_booking_date',$wh_booking_date);
615
+ $real_date = mktime( 0, 0, 0, ($start_month + 1 + $scroll_month ), ($start_day - 1 ), $start_year );
616
+ //debuge('6.$real_date',$real_date);
617
+ $wh_booking_date2 = date_i18n( "Y-m-d", $real_date );
618
+ //debuge('7.$wh_booking_date2', $wh_booking_date2);
619
+ break;
620
+
621
+ case '60':
622
+ if ( isset( $this->request_args['scroll_month'] ) )
623
+ $scroll_month = intval( $this->request_args['scroll_month'] );
624
+
625
+ $real_date = mktime( 0, 0, 0, ($start_month + $scroll_month ), ( $start_day ), $start_year );
626
+ $wh_booking_date = date_i18n( "Y-m-d", $real_date ); // '2012-12-01';
627
+
628
+ $real_date = mktime( 0, 0, 0, ($start_month + 2 + $scroll_month ), ($start_day - 1 ), $start_year );
629
+ $wh_booking_date2 = date_i18n( "Y-m-d", $real_date ); // '2013-02-31';
630
+ break;
631
+
632
+ ////////////////////////////////////////////////////////////////////////////////
633
+ default: // 30 - default
634
+ if ( isset( $this->request_args['scroll_month'] ) )
635
+ $scroll_month = intval( $this->request_args['scroll_month'] );
636
+
637
+ $real_date = mktime( 0, 0, 0, ($start_month + $scroll_month ), ( $start_day ), $start_year );
638
+ $wh_booking_date = date_i18n( "Y-m-d", $real_date ); // '2012-12-01';
639
+
640
+ $real_date = mktime( 0, 0, 0, ($start_month + 1 + $scroll_month ), ($start_day - 1 ), $start_year );
641
+ $wh_booking_date2 = date_i18n( "Y-m-d", $real_date ); // '2012-12-31';
642
+ break;
643
+ }
644
+
645
+ } else { // Single resource
646
+
647
+ switch ( $view_days_num ) {
648
+
649
+ case '90':
650
+
651
+ if ( empty( $this->request_args['scroll_start_date'] ) )
652
+ $start_day = intval( date_i18n( "d" ) ); //Today Date
653
+ $start_week_day_num = intval( date_i18n( "w" ) );
654
+ $start_day_weeek = intval( get_bk_option( 'booking_start_day_weeek' ) ); //[0]:Sun .. [6]:Sut
655
+
656
+ if ( $start_week_day_num != $start_day_weeek ) {
657
+ for ( $d_inc = 1; $d_inc < 8; $d_inc++ ) { // Just get week back
658
+ $real_date = mktime( 0, 0, 0, $start_month, ($start_day - $d_inc ), $start_year );
659
+ $start_week_day_num = intval( date_i18n( "w", $real_date ) );
660
+ if ( $start_week_day_num == $start_day_weeek ) {
661
+ $start_day = intval( date_i18n( "d", $real_date ) );
662
+ $start_year = intval( date_i18n( "Y", $real_date ) );
663
+ $start_month = intval( date_i18n( "m", $real_date ) );
664
+ $d_inc = 9;
665
+ }
666
+ }
667
+ }
668
+
669
+ if ( isset( $this->request_args['scroll_day'] ) )
670
+ $scroll_day = intval( $this->request_args['scroll_day'] );
671
+
672
+ $real_date = mktime( 0, 0, 0, $start_month, ( $start_day + $scroll_day ), $start_year );
673
+ $wh_booking_date = date_i18n( "Y-m-d", $real_date ); // '2012-12-01';
674
+
675
+ $real_date = mktime( 0, 0, 0, $start_month, ($start_day + 7 * 12 + 7 + $scroll_day ), $start_year );
676
+ $wh_booking_date2 = date_i18n( "Y-m-d", $real_date ); // '2013-12-31';
677
+ break;
678
+
679
+ case '30':
680
+ if ( empty( $this->request_args['scroll_start_date'] ) )
681
+ $start_day = intval( date_i18n( "d" ) ); //Today Date
682
+
683
+ if ( isset( $this->request_args['scroll_day'] ) )
684
+ $scroll_day = intval( $this->request_args['scroll_day'] );
685
+
686
+ $real_date = mktime( 0, 0, 0, $start_month, ( $start_day + $scroll_day ), $start_year );
687
+ $wh_booking_date = date_i18n( "Y-m-d", $real_date ); // '2012-12-01';
688
+
689
+ $real_date = mktime( 0, 0, 0, $start_month, ($start_day + 31 + $scroll_day ), $start_year );
690
+ $wh_booking_date2 = date_i18n( "Y-m-d", $real_date ); // '2013-12-31';
691
+ break;
692
+
693
+ default: // 365
694
+
695
+ if ( isset( $this->request_args['scroll_month'] ) )
696
+ $scroll_month = intval( $this->request_args['scroll_month'] );
697
+ else
698
+ $scroll_month = 0;
699
+
700
+ $real_date = mktime( 0, 0, 0, ($start_month + $scroll_month ), $start_day, $start_year );
701
+ $wh_booking_date = date_i18n( "Y-m-d", $real_date ); // '2012-12-01';
702
+
703
+ $real_date = mktime( 0, 0, 0, ($start_month + $scroll_month + 13 ), ($start_day - 1 ), $start_year );
704
+ $wh_booking_date2 = date_i18n( "Y-m-d", $real_date ); // '2013-12-31';
705
+
706
+ break;
707
+ }
708
+ }
709
+
710
+ $or_sort = get_bk_option( 'booking_sort_order' );
711
+
712
+ $args = array(
713
+ 'wh_booking_type' => $this->request_args['wh_booking_type'],
714
+ 'wh_approved' => '',
715
+ 'wh_booking_id' => '',
716
+ 'wh_is_new' => '',
717
+ 'wh_pay_status' => 'all',
718
+ 'wh_keyword' => '',
719
+ 'wh_booking_date' => $wh_booking_date,
720
+ 'wh_booking_date2' => $wh_booking_date2,
721
+ 'wh_modification_date' => '3',
722
+ 'wh_modification_date2' => '',
723
+ 'wh_cost' => '',
724
+ 'wh_cost2' => '',
725
+ 'or_sort' => $or_sort,
726
+ 'page_num' => '1',
727
+ 'wh_trash' => $this->request_args['wh_trash'],
728
+ 'limit_hours' => $this->request_args['limit_hours'],
729
+ 'only_booked_resources' => $this->request_args['only_booked_resources'], //FixIn: 7.0.1.51
730
+ 'page_items_count' => '100000'
731
+ );
732
+ //debuge('8.',$args);
733
+ return $args;
734
+ }
735
+
736
+
737
+ /**
738
+ * Define View Params from $_REQUEST
739
+ */
740
+ public function define_request_view_params() {
741
+
742
+ if ( isset( $_REQUEST['wh_booking_type'] ) ) {
743
+ $this->request_args['wh_booking_type'] = $_REQUEST['wh_booking_type']; // Used once for comma seperated resources only.
744
+ } elseif ( isset( $_GET['booking_type'] ) ) { $this->request_args['wh_booking_type'] = $_GET['booking_type'];
745
+ }
746
+
747
+ if ( ( isset( $_REQUEST['wh_booking_type'] ) ) && ( strpos( $_REQUEST['wh_booking_type'], ',' ) !== false ) )
748
+ $this->request_args['is_matrix'] = true;
749
+ if ( isset( $_REQUEST['view_days_num'] ) ) $this->request_args['view_days_num'] = $_REQUEST['view_days_num'];
750
+ if ( isset( $_REQUEST['scroll_start_date'] ) ) $this->request_args['scroll_start_date'] = $_REQUEST['scroll_start_date'];
751
+ if ( isset( $_REQUEST['scroll_day'] ) ) $this->request_args['scroll_day'] = $_REQUEST['scroll_day'];
752
+ if ( isset( $_REQUEST['scroll_month'] ) ) $this->request_args['scroll_month'] = $_REQUEST['scroll_month'];
753
+ if ( isset( $_REQUEST['wh_trash'] ) ) $this->request_args['wh_trash'] = $_REQUEST['wh_trash'];
754
+
755
+ if ( isset( $_REQUEST['limit_hours'] ) ) $this->request_args['limit_hours'] = $_REQUEST['limit_hours']; //FixIn: 7.0.1.14
756
+ if ( isset( $_REQUEST['only_booked_resources'] ) ) $this->request_args['only_booked_resources'] = 1;//$_REQUEST['only_booked_resources']; //FixIn: 7.0.1.51
757
+ }
758
+
759
+
760
+ /**
761
+ * Define Request View Params
762
+ *
763
+ * @param array $param = = array(
764
+ 'wh_booking_type' => ''
765
+ , 'is_matrix' => false
766
+ , 'view_days_num' => '30'
767
+ , 'scroll_start_date' => ''
768
+ , 'scroll_day' => 0
769
+ , 'scroll_month' => 0
770
+ );
771
+ */
772
+ public function define_request_view_params_from_params( $param ) {
773
+ //debuge( $param , $this->options , maybe_unserialize( wp_unslash( $param['options'] ) ) );die;
774
+ if ( isset( $param['wh_booking_type'] ) ) $this->request_args['wh_booking_type'] = $param['wh_booking_type']; // Used once for comma seperated resources only.
775
+
776
+ if ( ( isset( $param['wh_booking_type'] ) ) && ( strpos( $param['wh_booking_type'], ',' ) !== false ) )
777
+ $this->request_args['is_matrix'] = true;
778
+ if ( isset( $param['view_days_num'] ) ) $this->request_args['view_days_num'] = $param['view_days_num'];
779
+ if ( isset( $param['scroll_start_date'] ) ) $this->request_args['scroll_start_date'] = $param['scroll_start_date'];
780
+ if ( isset( $param['scroll_day'] ) ) $this->request_args['scroll_day'] = $param['scroll_day'];
781
+ if ( isset( $param['scroll_month'] ) ) $this->request_args['scroll_month'] = $param['scroll_month'];
782
+ if ( isset( $param['wh_trash'] ) ) $this->request_args['wh_trash'] = $param['wh_trash'];
783
+ if ( isset( $param['limit_hours'] ) ) $this->request_args['limit_hours'] = $param['limit_hours']; //FixIn: 7.0.1.14
784
+ if ( isset( $param['only_booked_resources'] ) ) $this->request_args['only_booked_resources'] = $param['only_booked_resources']; //FixIn: 7.0.1.14
785
+ if ( isset( $param['booking_hash'] ) ) $this->request_args['booking_hash'] = $param['booking_hash']; //FixIn: 8.1.3.5
786
+ if ( ( empty( $this->options ) ) && ( isset( $param['options'] ) ) ) {
787
+ $this->options = maybe_unserialize( wp_unslash( $param['options'] ) ); //FixIn: 7.2.1.14
788
+ }
789
+
790
+ }
791
+
792
+
793
+ /**
794
+ * Get D A T E S and T I M E S from B o o k i n g s
795
+ *
796
+ * @param array $bookings - Booking input array
797
+ * @return array - array( $dates_array, $time_array_new )
798
+ */
799
+ public function wpbc_get_dates_and_times_for_timeline( $bookings ) {
800
+
801
+ // Generate: Array ( [0] => array(), [3600] => array(), [7200] => array(), ..... [43200] => array(),.... [82800] => array() )
802
+ $fixed_time_hours_array = array();
803
+ for ( $tt = 0; $tt < 24; $tt++ ) {
804
+ $fixed_time_hours_array[$tt * 60 * 60] = array();
805
+ }
806
+ //debuge($bookings[911],$bookings[910]);
807
+ // Dates array: { '2012-12-24' => array( Booking ID 1, Booking ID 2, ....), ... }
808
+ $dates_array = $time_array = array();
809
+ foreach ( $bookings as $bk ) {
810
+
811
+
812
+ /**
813
+ * Check situation , while we are having end time but do not have start time, like here:
814
+ * $bk->dates = Array(
815
+ [0] => stdClass Object (
816
+ [booking_id] => 911
817
+ [booking_date] => 2019-07-22 00:00:00
818
+ [approved] => 1
819
+ [type_id] => )
820
+
821
+ [1] => stdClass Object (
822
+ [booking_id] => 911
823
+ [booking_date] => 2019-07-23 00:00:00
824
+ [approved] => 1
825
+ [type_id] => )
826
+
827
+ [2] => stdClass Object (
828
+ [booking_id] => 911
829
+ [booking_date] => 2019-07-24 15:00:02
830
+ [approved] => 1
831
+ [type_id] => )
832
+ )
833
+ *
834
+ * So we need to add the new Start time before End time, like this:
835
+ *
836
+ [0] => stdClass Object (
837
+ [booking_id] => 911
838
+ [booking_date] => 2019-07-22 00:00:00
839
+ [approved] => 1
840
+ [type_id] => )
841
+
842
+ [1] => stdClass Object (
843
+ [booking_id] => 911
844
+ [booking_date] => 2019-07-23 00:00:00
845
+ [approved] => 1
846
+ [type_id] => )
847
+ [2] => stdClass Object (
848
+ [booking_id] => 911
849
+ [booking_date] => 2019-07-24 00:00:01
850
+ [approved] => 1
851
+ [type_id] => )
852
+ [2] => stdClass Object (
853
+ [booking_id] => 911
854
+ [booking_date] => 2019-07-24 15:00:02
855
+ [approved] => 1
856
+ [type_id] => )
857
+ *
858
+ */
859
+ $dates_to_check = array();
860
+ $is_started = 0;
861
+ foreach ( $bk->dates as $dt ) {
862
+
863
+ $last_second = substr( $dt->booking_date, -1);
864
+
865
+ // Count start end end times started.
866
+ switch ( $last_second ) {
867
+ case '1': // Start
868
+ $is_started++;
869
+ break;
870
+ case '2': // End
871
+ $is_started--;
872
+ break;
873
+ case '0': // Full
874
+ default:
875
+ }
876
+
877
+ // Its means that we have now end time, but was not having start time
878
+ if ( $is_started < 0 ) {
879
+ $is_started++;
880
+ $my_temp_start_time = clone $dt;
881
+
882
+ $temp_time = explode( ' ' ,$my_temp_start_time->booking_date );
883
+ $temp_time = $temp_time[0] . ' 00:00:01';
884
+
885
+ $my_temp_start_time->booking_date = $temp_time;
886
+ // Add start time day
887
+ $dates_to_check[] = $my_temp_start_time;
888
+ }
889
+ $dates_to_check[] = $dt;
890
+ }
891
+
892
+ if ( 0 != $is_started ) {
893
+ ?><div class="warning_check_in_out_not_equal"><?php
894
+ debuge( 'Warning! Number of check in != check out times.', $dates_to_check, $is_started) ;
895
+ ?></div><script type="text/javascript"> jQuery( '.warning_check_in_out_not_equal' ).animate( {opacity: 1}, 3000 ).slideToggle(1000); </script><?php
896
+ }
897
+
898
+
899
+ foreach ( $dates_to_check as $dt ) {
900
+ //foreach ( $bk->dates as $dt ) {
901
+
902
+ // Transform from MySQL date to PHP date
903
+ $dt->booking_date = trim( $dt->booking_date );
904
+ $dta = explode( ' ', $dt->booking_date );
905
+ $tms = $dta[1];
906
+ //FixIn: 8.2.1.21
907
+ //if ( substr( $dta[1], - 1 ) == '2' ) { continue; }
908
+ $tms = explode( ':', $tms ); // array('13','30','40')
909
+ $dta = $dta[0];
910
+ $dta = explode( '-', $dta ); // array('2012','12','30')
911
+ $php_dt = mktime( $tms[0], $tms[1], $tms[2], $dta[1], $dta[2], $dta[0] );
912
+
913
+ if ( ( isset( $dt->type_id ) ) && (!empty( $dt->type_id )) )
914
+ $date_bk_res_id = $dt->type_id;
915
+ else
916
+ $date_bk_res_id = $bk->booking_type;
917
+
918
+
919
+ $my_date = date_i18n( "Y-m-d", $php_dt ); // '2012-12-01';
920
+ if ( !isset( $dates_array[$my_date] ) ) {
921
+ $dates_array[$my_date] = array( array( 'id' => $bk->booking_id, 'resource' => $date_bk_res_id ) );
922
+ } else {
923
+ $dates_array[$my_date][] = array( 'id' => $bk->booking_id, 'resource' => $date_bk_res_id );
924
+ }
925
+
926
+ $my_time = date_i18n( "H:i:s", $php_dt ); // '21:55:01';
927
+
928
+ $my_time_index = explode( ':', $my_time );
929
+ $my_time_index = (int) ($my_time_index[0] * 60 * 60 + $my_time_index[1] * 60 + $my_time_index[2]);
930
+
931
+ $my_time = strtotime( $my_time ); //FixIn: 8.1.1.6
932
+
933
+ if ( !isset( $time_array[$my_date] ) ) {
934
+ $time_array[$my_date] = array( $my_time_index => array( $my_time => array( 'id' => $bk->booking_id, 'resource' => $date_bk_res_id ) ) );
935
+ } else {
936
+
937
+ if ( !isset( $time_array[$my_date][$my_time_index] ) )
938
+ $time_array[$my_date][$my_time_index] = array( $my_time => array( 'id' => $bk->booking_id, 'resource' => $date_bk_res_id ) );
939
+ else {
940
+ if ( !isset( $time_array[$my_date][$my_time_index][$my_time] ) )
941
+ $time_array[$my_date][$my_time_index][$my_time] = array( 'id' => $bk->booking_id, 'resource' => $date_bk_res_id );
942
+ else {
943
+ $my_time_inc = 3;
944
+ while ( isset( $time_array[$my_date][$my_time_index][$my_time + $my_time_inc] ) ) {
945
+ $my_time_inc++;
946
+ }
947
+ //Just in case if we are have the booking in the same time, so we are
948
+ $time_array[$my_date][$my_time_index][($my_time + $my_time_inc)] = array( 'id' => $bk->booking_id, 'resource' => $date_bk_res_id );
949
+ }
950
+ }
951
+ }
952
+ }
953
+ }
954
+
955
+
956
+ //debuge($time_array);
957
+ // Sorting ..........
958
+ foreach ( $time_array as $key => $value_t ) { // Sort the times from lower to higher
959
+ ksort( $value_t );
960
+ $time_array[$key] = $value_t;
961
+ }
962
+ ksort( $time_array ); // Sort array by dates from lower to higher.
963
+ /* $time_array:
964
+ $key_date $value_t
965
+ [2012-12-13] => Array ( $tt_index $times_bk_id_array
966
+ [44401] => Array ( [12:20:01] => 19)
967
+ ),
968
+ [2012-12-14] => Array (
969
+ [10802] => Array([03:00:02] => 19),
970
+ [43801] => Array([12:10:01] => 2)
971
+ ),
972
+ .... */
973
+
974
+ //debuge($time_array);
975
+
976
+ $time_array_new = array();
977
+ foreach ( $time_array as $key_date => $value_t ) { // fill the $time_array_new - by bookings of full dates....
978
+ $new_times_array = $fixed_time_hours_array; // Array ( [0] => Array, [3600] => Array, [7200] => Array .....
979
+
980
+ foreach ( $value_t as $tt_index => $times_bk_id_array ) { // [44401] => Array ( [12:20:01] => 19 ), .....
981
+ $tt_index_round = floor( ($tt_index / 60) / 60 ) * 60 * 60; // 14400, 18000,
982
+ $is_bk_for_full_date = $tt_index % 10; // 0, 1, 2
983
+
984
+ switch ( $is_bk_for_full_date ) {
985
+ case 0: // Full date - fill every time slot
986
+ foreach ( $new_times_array as $round_time_slot => $bk_id_array ) {
987
+ $new_times_array[$round_time_slot] = array_merge( $bk_id_array, array_values( $times_bk_id_array ) );
988
+ }
989
+ //debuge('$time_array[$key_date][$tt_index]',$time_array[$key_date][$tt_index], $round_time_slot);
990
+ unset( $time_array[$key_date][$tt_index] );
991
+ break;
992
+
993
+ case 1: break;
994
+ case 2: break;
995
+ default: break;
996
+ }
997
+ }
998
+ if ( count( $time_array[$key_date] ) == 0 )
999
+ unset( $time_array[$key_date] );
1000
+
1001
+ $time_array_new[$key_date] = $new_times_array;
1002
+ }
1003
+ //$time_array_new - Array filled by bookings FOR FULL DAY booking only
1004
+
1005
+ //debuge($time_array_new);
1006
+
1007
+
1008
+ foreach ( $time_array as $key_date => $value_t ) {
1009
+ $new_times_array_for_day_start = $new_times_array_for_day_end = array();
1010
+ foreach ( $value_t as $tt_index => $times_bk_id_array ) { // [44401] => Array ( [12:20:01] => 19 ), .....
1011
+ $tt_index_round = floor( ($tt_index / 60) / 60 ) * 60 * 60; // 14400, 18000,
1012
+ //debuge($tt_index, $tt_index_round);
1013
+ $is_bk_for_full_date = $tt_index % 10; // 0, 1, 2
1014
+
1015
+ if ( $is_bk_for_full_date == 1 ) {
1016
+ if ( !isset( $new_times_array_for_day_start[$tt_index_round] ) )
1017
+ $new_times_array_for_day_start[$tt_index_round] = array();
1018
+ $new_times_array_for_day_start[$tt_index_round] = array_merge( $new_times_array_for_day_start[$tt_index_round], array_values( $times_bk_id_array ) );
1019
+ }
1020
+ if ( $is_bk_for_full_date == 2 ) {
1021
+
1022
+ // Its mean that the booking is finished exactly at the beginig of this hour,
1023
+ // so we will not fill the end of booking in this hour, but in previous
1024
+ if ( ($tt_index_round - $tt_index) == -2 ) {
1025
+ $tt_index_round = $tt_index_round - 60 * 60;
1026
+ }
1027
+
1028
+ if ( !isset( $new_times_array_for_day_end[$tt_index_round] ) )
1029
+ $new_times_array_for_day_end[$tt_index_round] = array();
1030
+ $new_times_array_for_day_end[$tt_index_round] = array_merge( $new_times_array_for_day_end[$tt_index_round], array_values( $times_bk_id_array ) );
1031
+ }
1032
+ }
1033
+ $time_array[$key_date] = array( 'start' => $new_times_array_for_day_start, 'end' => $new_times_array_for_day_end );
1034
+ }
1035
+
1036
+ //debuge($time_array);
1037
+ //$time_array['2019-07-24']['start'][0] = $time_array['2019-07-24']['end'][82800];
1038
+
1039
+ /* $time_array
1040
+ [2012-12-24] => Array
1041
+ (
1042
+ [start] => Array (
1043
+ [68400] => Array ( [0] => 15 ) )
1044
+ [end] => Array (
1045
+ [64800] => Array ( [0] => 6 ) )
1046
+
1047
+ ) */
1048
+ $fill_this_date = array();
1049
+ //debuge($time_array_new['2017-01-13']);
1050
+
1051
+ //debuge($time_array_new);
1052
+ // Fil specific times based on start and end times
1053
+ foreach ( $time_array_new as $ddate => $ttime_round_array ) {
1054
+ foreach ( $ttime_round_array as $ttime_round => $bk_id_array ) { // [3600] => Array( [0] => Array ( [id] => 214 [resource] => 9 ), [1] => Array ( [id] => 154 [resource] => 7
1055
+ //if ('2019-07-24' == $ddate ) {
1056
+ //debuge($time_array[$ddate]['end'][$ttime_round]);
1057
+ //}
1058
+ if ( isset( $time_array[$ddate] ) ) {
1059
+
1060
+ if ( isset( $time_array[$ddate]['start'][$ttime_round] ) ) // array
1061
+ $fill_this_date = array_merge( $fill_this_date, array_values( $time_array[$ddate]['start'][$ttime_round] ) );
1062
+ //debuge($fill_this_date);
1063
+ $time_array_new[$ddate][$ttime_round] = array_merge( $time_array_new[$ddate][$ttime_round], $fill_this_date );
1064
+ //debuge('$ttime_round',$ttime_round);
1065
+ //debuge($ddate, $ttime_round, $time_array_new[$ddate][$ttime_round]);
1066
+
1067
+ //FixIn: 7.0.1.16 - advanced checking about delettion of times in $time_array[$ddate]['end']
1068
+
1069
+ // End array checking for deleting.
1070
+ if ( isset( $time_array[$ddate]['end'][$ttime_round] ) ) // array
1071
+ foreach ( $time_array[$ddate]['end'][$ttime_round] as $toDelete ) {
1072
+ //debuge($ddate, $ttime_round, $fill_this_date);
1073
+ //if ( $ddate == '2019-07-24' ) {
1074
+ // debuge('$toDelete, $fill_this_date',$toDelete, $fill_this_date);
1075
+ //}
1076
+ //debuge($toDelete);
1077
+ $fill_this_date_keys_to_delete = array();
1078
+ foreach ( $fill_this_date as $fill_this_date_key => $check_element_array ) { // [0] => Array ( [id] => 54 [resource] => 5 )
1079
+ //debuge($ddate,'$toDelete, $check_element_array', $toDelete, $check_element_array);
1080
+ if ( // Check if arrays equals - identical
1081
+ ( is_array( $toDelete ) && is_array( $check_element_array ) )
1082
+ && ( count( $toDelete ) == count( $check_element_array ) )
1083
+ && ( array_diff( $toDelete, $check_element_array ) === array_diff( $check_element_array, $toDelete ) )
1084
+ ) {
1085
+ $fill_this_date_keys_to_delete[] = $fill_this_date_key; // $toDelete element exist so save key in original array
1086
+ }
1087
+ }
1088
+
1089
+
1090
+ //FixIn: on 2019-07-24 14:22
1091
+ /**
1092
+ // Fix, when we are having END time but was not having START time (usually when first booking
1093
+ // was booked for entire day, and last day booking, have the end time.
1094
+ // So in this case at day with end time we need to fill all "round times" with End time data
1095
+ */
1096
+ if(0)
1097
+ if ( empty( $fill_this_date_keys_to_delete ) ) {
1098
+ // Fill the date by data $toDelete
1099
+ foreach ( $time_array_new[ $ddate ] as $time_round_refill => $time_array_new_value_refill ) {
1100
+
1101
+ if ( $time_round_refill <= $ttime_round ) {
1102
+ // Refill
1103
+ $time_array_new[ $ddate ][ $time_round_refill ][] = $toDelete;
1104
+ }
1105
+ }
1106
+ }
1107
+
1108
+
1109
+ //debuge(' $fill_this_date_keys_to_delete ',$fill_this_date_keys_to_delete );
1110
+ $fill_this_date_new = array();
1111
+ foreach ( $fill_this_date as $fill_this_date_key => $fill_this_date_value ) {
1112
+ if ( ! in_array( $fill_this_date_key, $fill_this_date_keys_to_delete ) ) {
1113
+ $fill_this_date_new[] = $fill_this_date_value;
1114
+ }
1115
+ }
1116
+ $fill_this_date = $fill_this_date_new; // Reassign cleared array (with deleted values)
1117
+
1118
+ //debuge($toDelete);
1119
+ if ( !empty( $fill_this_date ) ) {
1120
+ // $fill_this_date = array_diff( $fill_this_date, array( $toDelete ) );
1121
+
1122
+ //if ( $ddate == '2017-01-13' ) {
1123
+ // debuge('AFTER:: $toDelete, $fill_this_date',$toDelete, $fill_this_date);
1124
+ //}
1125
+ }
1126
+ }
1127
+ }
1128
+ }
1129
+ }
1130
+ //debuge( $time_array_new );
1131
+ return array( $dates_array, $time_array_new );
1132
+ }
1133
+
1134
+
1135
+ ////////////////////////////////////////////////////////////////////////////
1136
+ // C a l e n d a r T i m e l i n e ///////////////////////////////
1137
+ ////////////////////////////////////////////////////////////////////////////
1138
+
1139
+ private function wpbc_dates_only_of_specific_resource( $booked_dates_array, $resource_id, $bookings ) {
1140
+
1141
+ foreach ( $booked_dates_array as $key => $value ) {
1142
+
1143
+ $new_array = array();
1144
+ foreach ( $value as $bk_id ) {
1145
+ if ( $bk_id['resource'] == $resource_id ) {
1146
+ $new_array[] = $bk_id['id'];
1147
+ }
1148
+ }
1149
+ if ( !empty( $new_array ) )
1150
+ $booked_dates_array[$key] = $new_array;
1151
+ else
1152
+ unset( $booked_dates_array[$key] );
1153
+ }
1154
+ return $booked_dates_array;
1155
+ }
1156
+
1157
+
1158
+ private function wpbc_times_only_of_specific_resource( $time_array_new, $resource_id, $bookings ) {
1159
+
1160
+ foreach ( $time_array_new as $date_key => $times_array ) {
1161
+
1162
+ foreach ( $times_array as $time_key => $value ) {
1163
+
1164
+ $new_array = array();
1165
+ foreach ( $value as $bk_id ) {
1166
+
1167
+ if ( $bk_id['resource'] == $resource_id ) {
1168
+ $new_array[] = $bk_id['id'];
1169
+ }
1170
+ }
1171
+ $time_array_new[$date_key][$time_key] = $new_array;
1172
+ }
1173
+ }
1174
+ return $time_array_new;
1175
+ }
1176
+
1177
+
1178
+ private function wpbc_write_bk_id_css_classes( $prefix, $previous_booking_id ) {
1179
+
1180
+ if ( (!isset( $previous_booking_id )) || (empty( $previous_booking_id )) )
1181
+ return '';
1182
+
1183
+ if ( is_string( $previous_booking_id ) )
1184
+ $bk_id_array = explode( ',', $previous_booking_id );
1185
+ else if ( is_array( $previous_booking_id ) )
1186
+ $bk_id_array = $previous_booking_id;
1187
+ else // Some Unknown situation
1188
+ return '';
1189
+
1190
+ $bk_id_array = array_unique( $bk_id_array );
1191
+
1192
+ // If we are have several bookings, so add this special class
1193
+ if ( count( $bk_id_array ) > 1 )
1194
+ $css_class = 'here_several_bk_id ';
1195
+ else
1196
+ $css_class = '';
1197
+
1198
+ foreach ( $bk_id_array as $bk_id ) {
1199
+ $css_class .= $prefix . $bk_id . ' ';
1200
+ }
1201
+
1202
+ return $css_class;
1203
+ }
1204
+
1205
+
1206
+ ////////////////////////////////////////////////////////////////////////////
1207
+ // Header
1208
+ ////////////////////////////////////////////////////////////////////////////
1209
+
1210
+ /** Header */
1211
+ public function wpbc_show_timeline_header_row( $start_date = false ) {
1212
+
1213
+ $current_resource_id = '';
1214
+ $is_matrix = $this->request_args['is_matrix'];
1215
+ $view_days_num = $this->request_args['view_days_num'];
1216
+ $start_hour_for_1day_view = 0; //FixIn: 7.0.1.14
1217
+ $end_hour_for_1day_view = 24;
1218
+ $limit_hours = 24;
1219
+
1220
+ if ( $is_matrix ) {
1221
+
1222
+ // MATRIX VIEW
1223
+ switch ( $view_days_num ) {
1224
+ case '1':
1225
+ $days_num = 1;
1226
+ $dwa = $this->week_days_titles['full'];
1227
+ $time_selles_num = 24;
1228
+ if ( isset( $this->request_args[ 'limit_hours' ] ) ) { //FixIn: 7.0.1.14
1229
+ $limit_hours = explode(',',$this->request_args[ 'limit_hours' ]);
1230
+ $start_hour_for_1day_view = intval( $limit_hours[0] );
1231
+ $end_hour_for_1day_view = intval( $limit_hours[1] );
1232
+ $limit_hours = $limit_hours[1] - $limit_hours[0];
1233
+ }
1234
+ break;
1235
+ case '7':
1236
+ $days_num = 7;
1237
+ $dwa = $this->week_days_titles['3'];
1238
+ $time_selles_num = 1;
1239
+ break;
1240
+ case '30':
1241
+ $days_num = 31;
1242
+ $days_num = intval( date_i18n('t',$start_date) ); // num of days in the specific month, wchih relative to $real_date from header //FixIn: 7.0.1.47
1243
+ $dwa = $this->week_days_titles['1'];
1244
+ $time_selles_num = 1;
1245
+ break;
1246
+ case '60':
1247
+ $days_num = 62;
1248
+ $dwa = $this->week_days_titles['short'];
1249
+ $time_selles_num = 1;
1250
+ break;
1251
+ default: // 30
1252
+ $days_num = 31;
1253
+ $dwa = $this->week_days_titles['3'];
1254
+ $time_selles_num = 1;
1255
+ break;
1256
+ }
1257
+
1258
+ } else {
1259
+
1260
+ switch ( $view_days_num ) {
1261
+ case '90':
1262
+ $days_num = 7;
1263
+ $dwa = $this->week_days_titles['3'];
1264
+ $time_selles_num = 1;
1265
+ break;
1266
+ case '365':
1267
+ $days_num = 32;
1268
+ $days_num = intval( date_i18n('t',$start_date) ); // num of days in the specific month, wchih relative to $real_date from header //FixIn: 7.0.1.47
1269
+ $dwa = $this->week_days_titles['3'];
1270
+ $time_selles_num = 1;
1271
+ break;
1272
+ default: // 30
1273
+ $days_num = 1;
1274
+ $dwa = $this->week_days_titles['full'];
1275
+ $time_selles_num = 24;
1276
+ if ( isset( $this->request_args[ 'limit_hours' ] ) ) { //FixIn: 7.0.1.14
1277
+ $limit_hours = explode(',',$this->request_args[ 'limit_hours' ]);
1278
+ $start_hour_for_1day_view = intval( $limit_hours[0] );
1279
+ $end_hour_for_1day_view = intval( $limit_hours[1] );
1280
+ $limit_hours = $limit_hours[1] - $limit_hours[0];
1281
+ }
1282
+ break;
1283
+ }
1284
+ }
1285
+
1286
+ if ( $start_date === false ) {
1287
+
1288
+ if ( ! empty( $this->request_args['scroll_start_date'] ) )
1289
+ list( $start_year, $start_month, $start_day ) = explode( '-', $this->request_args['scroll_start_date'] ); // scroll_start_date=2013-07-01
1290
+ else
1291
+ list( $start_year, $start_month, $start_day ) = explode( '-', date_i18n( 'Y-n-j' ) );
1292
+
1293
+ } else {
1294
+ list( $start_year, $start_month, $start_day ) = explode( '-', date_i18n( 'Y-m-d', $start_date ) );
1295
+ }
1296
+
1297
+ ////////////////////////////////////////////////////////////////////////////////////////////////////////////////
1298
+ // Month Line
1299
+ ////////////////////////////////////////////////////////////////////////////////////////////////////////////////
1300
+ ?><div class="flex_tl_dates_bar flex_tl_dates_bar_month"><?php
1301
+ $previous_month = '';
1302
+ //Scroll months Firstly
1303
+ for ( $d_inc = 0; $d_inc < $days_num; $d_inc++ ) {
1304
+
1305
+ $real_date = mktime( 0, 0, 0, $start_month, ( $start_day + $d_inc ), $start_year );
1306
+ $yy = date_i18n( "Y", $real_date ); //2012
1307
+ $mm = date_i18n( "m", $real_date ); //09
1308
+ $dd = date_i18n( "d", $real_date ); //31
1309
+ $ww = date_i18n( "N", $real_date ); //7
1310
+ $day_week = $dwa[$ww]; //Su
1311
+
1312
+ if ( ( $previous_month != $mm ) || ( 1 == $dd ) ) {
1313
+ $previous_month = $mm;
1314
+ $month_title = date_i18n( "F", $real_date ); //09
1315
+ $month_class = ' new_month ';
1316
+ } else {
1317
+ $month_title = '';
1318
+ $month_class = '';
1319
+ }
1320
+ ?>
1321
+ <div class="<?php echo implode(' ', array(
1322
+ 'flex_tl_day_cell',
1323
+ 'flex_tl_day_cell_header',
1324
+ 'flex_time_in_days_num_' . $view_days_num,
1325
+ $month_class
1326
+ )); ?>"
1327
+ ><?php
1328
+ // New Month !
1329
+ if ($month_title != '') {
1330
+ ?><div class="in_cell_month_year"><?php
1331
+
1332
+ if ( $is_matrix ) {
1333
+
1334
+ echo $dd . ' ' . $month_title .', ' . $yy ;
1335
+
1336
+ if ( '1' == $view_days_num ) {
1337
+ echo ' &nbsp; (' . $day_week . ')';
1338
+ }
1339
+
1340
+ } else {
1341
+ if ( '30' == $view_days_num ) {
1342
+ //echo '(' . $day_week . ') &nbsp; ' . $dd . ' ';
1343
+ }
1344
+ }
1345
+
1346
+
1347
+ ?></div><?php
1348
+ }
1349
+ ?> </div> <?php
1350
+ }
1351
+ ?>
1352
+ </div><?php
1353
+
1354
+
1355
+ ////////////////////////////////////////////////////////////////////////////////////////////////////////////////
1356
+ // Dates / Times Line
1357
+ ////////////////////////////////////////////////////////////////////////////////////////////////////////////////
1358
+ ?><div class="flex_tl_dates_bar <?php echo $is_matrix ? ' flex_tl_matrix_resources ' : ' flex_tl_single_resource '; ?>"
1359
+ id="timeline_scroller<?php echo $current_resource_id; ?>"
1360
+ ><?php
1361
+ $previous_month = '';
1362
+
1363
+ $bk_admin_url_today = wpbc_get_params_in_url( wpbc_get_bookings_url( false, false ), array( 'scroll_month', 'scroll_day', 'scroll_start_date' ) );
1364
+
1365
+ for ( $d_inc = 0; $d_inc < $days_num; $d_inc++ ) {
1366
+
1367
+ $real_date = mktime( 0, 0, 0, $start_month, ($start_day + $d_inc ), $start_year );
1368
+
1369
+ if ( date_i18n( 'm.d.Y' ) == date_i18n( "m.d.Y", $real_date ) )
1370
+ $is_today = ' today_date ';
1371
+ else
1372
+ $is_today = '';
1373
+
1374
+ $yy = date_i18n( "Y", $real_date ); //2012
1375
+ $mm = date_i18n( "m", $real_date ); //09
1376
+ $dd = date_i18n( "d", $real_date ); //31
1377
+ $ww = date_i18n( "N", $real_date ); //7
1378
+ $day_week = $dwa[$ww]; //Su
1379
+
1380
+ $day_title = $dd . ' ' . $day_week;
1381
+ if ( $is_matrix ) {
1382
+ if ( $view_days_num == 1 ) {
1383
+ $day_title = '<div class="in_cell_day_num">' . __( 'Times', 'booking' ) . '</div>';
1384
+ }
1385
+ if ( $view_days_num == 7 ) {
1386
+ $day_title = '<div class="in_cell_day_num">' . $dd . '</div><div class="in_cell_day_week">' . $day_week . '</div>';
1387
+ }
1388
+ if ( $view_days_num == 30 ) {
1389
+ $day_title = '<div class="in_cell_day_num">' . $dd . '</div><div class="in_cell_day_week">' . $day_week . '</div>';
1390
+ }
1391
+ if ( $view_days_num == 60 ) {
1392
+ $day_title = '<div class="in_cell_day_num">' . $dd . '</div><div class="in_cell_day_week">' . $day_week . '</div>';
1393
+ }
1394
+ } else {
1395
+ if ( $view_days_num == 30 ) {
1396
+ $day_title = '<div class="in_cell_day_num">' . __( 'Times', 'booking' ) . '</div>';
1397
+ }
1398
+ if ( $view_days_num == 90 ) {
1399
+ $day_title = '<div class="in_cell_day_week">' . $day_week . '</div>';
1400
+ }
1401
+ if ( $view_days_num == 365 ) {
1402
+ $day_title = '<div class="in_cell_day_num">' . $dd . '</div>';
1403
+ }
1404
+ }
1405
+ $day_filter_id = $yy . '-' . $mm . '-' . $dd;
1406
+
1407
+ if ( ( $previous_month != $mm ) || ( 1 == $dd ) ) {
1408
+ $previous_month = $mm;
1409
+ $month_class = ' new_month ';
1410
+ } else {
1411
+ $month_class = '';
1412
+ }
1413
+
1414
+ ?>
1415
+ <div id="cell_<?php echo $current_resource_id . '_' . $day_filter_id ; ?>"
1416
+ class="<?php echo implode(' ', array(
1417
+ 'flex_tl_day_cell',
1418
+ 'flex_tl_day_cell_header',
1419
+ 'flex_time_in_days_num_' . $view_days_num,
1420
+ 'flex_tl_weekday' . $ww,
1421
+ $day_filter_id,
1422
+ $month_class
1423
+ )); ?>"
1424
+ ><?php
1425
+
1426
+ if ( ( $is_matrix ) && ( ( $view_days_num == 30 ) || ( $view_days_num == 60 ) ) ) {
1427
+
1428
+ ?><div class="in_cell_date_container day_num<?php echo $d_inc ?>"><?php
1429
+
1430
+ if ( ! $this->is_frontend ) {
1431
+ ?><a href='<?php echo $bk_admin_url_today . '&scroll_start_date=' . $yy . '-' . $mm . '-' . $dd; ?>'><?php
1432
+ }
1433
+ echo $day_title;
1434
+
1435
+ if ( ! $this->is_frontend ) {
1436
+ ?></a><?php
1437
+ }
1438
+
1439
+ ?></div><?php
1440
+
1441
+ } else {
1442
+ ?><div class="in_cell_date_container day_num<?php echo $d_inc ?>"><?php echo $day_title;?></div><?php
1443
+ }
1444
+
1445
+ ////////////////////////////////////////////////////////////////////////////////////////
1446
+ // T i m e c e l l s
1447
+ ////////////////////////////////////////////////////////////////////////////////////////
1448
+ $tm = floor( 24 / $time_selles_num );
1449
+ if ( $time_selles_num > 1 ) {
1450
+ ?><div class="<?php echo implode(' ', array(
1451
+ 'in_cell_time_section_in_day',
1452
+ 'flex_time_section_in_day_header',
1453
+ 'flex_time_in_days_num_' . $view_days_num
1454
+ )); ?>"><?php
1455
+
1456
+ for ( $tt = 0; $tt < $time_selles_num; $tt++ ) { ?>
1457
+
1458
+ <?php if ( ( $tt < $start_hour_for_1day_view ) || ( $tt > $end_hour_for_1day_view ) ) { continue; } //FixIn: 7.0.1.14 ?>
1459
+
1460
+ <div class="<?php echo 'in_cell_time_hour time_hour' . ( $tt * $tm ); ?>" ><?php
1461
+
1462
+ $this->show_time_number_in_correct_format( $tt * $tm , $view_days_num );
1463
+
1464
+ ?></div><?php
1465
+ }
1466
+ ?></div><?php
1467
+ }
1468
+ ?></div><?php
1469
+
1470
+ }
1471
+ ?></div><?php
1472
+
1473
+ return $real_date ;
1474
+ }
1475
+
1476
+
1477
+ ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
1478
+ // Booking Row Support functions
1479
+ ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
1480
+
1481
+ /**
1482
+ * Define Init Row settings parameters
1483
+ *
1484
+ * @param $row_settings array
1485
+ *
1486
+ * @return array
1487
+ */
1488
+ private function get_init_row_settings( $row_settings ){
1489
+
1490
+ // Initial params
1491
+ $row_settings['is_matrix'] = $this->request_args['is_matrix'];
1492
+ $row_settings['start_hour_for_1day_view'] = 0;
1493
+ $row_settings['end_hour_for_1day_view'] = 24;
1494
+ $row_settings['limit_hours'] = 24;
1495
+ $row_settings['view_days_num'] = $this->request_args['view_days_num'];
1496
+
1497
+ // Single booking resource
1498
+ if ( ! $row_settings['is_matrix'] ) {
1499
+
1500
+ switch ($row_settings['view_days_num']) {
1501
+ case '90':
1502
+ $row_settings['days_num'] = 7;
1503
+ $row_settings['dwa'] = $this->week_days_titles['full'];
1504
+ $row_settings['time_selles_num'] = 1;
1505
+ break;
1506
+ case '365':
1507
+ $row_settings['days_num'] = 31;
1508
+ //$row_settings['days_num'] = intval( date_i18n('t',$row_settings['start_date']) ); // num of days in the specific month, wchih relative to $row_settings['real_date'] from header //FixIn: 7.0.1.47
1509
+ $row_settings['dwa'] = $this->week_days_titles['1'];
1510
+ $row_settings['time_selles_num'] = 1;
1511
+ break;
1512
+ default: // 30
1513
+ $row_settings['days_num'] = 1;
1514
+ $row_settings['dwa'] = $this->week_days_titles['3'];
1515
+ $row_settings['time_selles_num'] = 24;//25;
1516
+
1517
+ if ( isset( $this->request_args[ 'limit_hours' ] ) ) { //FixIn: 7.0.1.14
1518
+ $row_settings['limit_hours'] = explode(',',$this->request_args[ 'limit_hours' ]);
1519
+ $row_settings['start_hour_for_1day_view'] = intval( $row_settings['limit_hours'][0] );
1520
+ $row_settings['end_hour_for_1day_view'] = intval( $row_settings['limit_hours'][1] );
1521
+ $row_settings['limit_hours'] = $row_settings['limit_hours'][1] - $row_settings['limit_hours'][0];
1522
+ }
1523
+
1524
+ //$row_settings['view_days_num'] = 1;
1525
+ break;
1526
+ }
1527
+
1528
+ } else { // Multiple booking resources
1529
+
1530
+ //$row_settings['view_days_num'] = 365;
1531
+ switch ($row_settings['view_days_num']) {
1532
+ case '1':
1533
+ $row_settings['days_num'] = 1;
1534
+ $row_settings['dwa'] = $this->week_days_titles['full'];
1535
+ $row_settings['time_selles_num'] = 24;
1536
+
1537
+ if ( isset( $this->request_args[ 'limit_hours' ] ) ) { //FixIn: 7.0.1.14
1538
+ $row_settings['limit_hours'] = explode(',',$this->request_args[ 'limit_hours' ]);
1539
+ $row_settings['start_hour_for_1day_view'] = intval( $row_settings['limit_hours'][0] );
1540
+ $row_settings['end_hour_for_1day_view'] = intval( $row_settings['limit_hours'][1] );
1541
+ $row_settings['limit_hours'] = $row_settings['limit_hours'][1] - $row_settings['limit_hours'][0];
1542
+ }
1543
+
1544
+ break;
1545
+ case '7':
1546
+ $row_settings['days_num'] = 7;
1547
+ $row_settings['dwa'] = $this->week_days_titles['full'];
1548
+ $row_settings['time_selles_num'] = 1;
1549
+ break;
1550
+ case '60':
1551
+ $row_settings['days_num'] = 62;
1552
+ $row_settings['dwa'] = $this->week_days_titles['1'];
1553
+ $row_settings['time_selles_num'] = 1;
1554
+ break;
1555
+ case 'old_365':
1556
+ $row_settings['days_num'] = 365;
1557
+ $row_settings['time_selles_num'] = 1;
1558
+ $row_settings['dwa'] = $this->week_days_titles['1'];
1559
+ break;
1560
+
1561
+ default: // 30
1562
+ $row_settings['days_num'] = 32;
1563
+ $row_settings['days_num'] = intval( date_i18n('t',$row_settings['start_date']) ); // num of days in the specific month, wchih relative to $row_settings['real_date'] from header //FixIn: 7.0.1.47
1564
+ $row_settings['dwa'] = $this->week_days_titles['3'];
1565
+ $row_settings['time_selles_num'] = 1;//25;
1566
+ break;
1567
+ }
1568
+ }
1569
+
1570
+ return $row_settings;
1571
+ }
1572
+
1573
+
1574
+ /**
1575
+ * Show time in correct format - showing in Header, and in time CELLs
1576
+ *
1577
+ * @param $time_milliseconds
1578
+ * @param $view_days_num
1579
+ */
1580
+ private function show_time_number_in_correct_format( $time_milliseconds , $view_days_num ){
1581
+
1582
+ //FixIn: 8.1.3.34
1583
+ $bc_time_format = get_bk_option( 'booking_time_format' );
1584
+ if ( ! empty( $bc_time_format ) ) { //FixIn: 8.2.1.2
1585
+ $time_show = date_i18n( str_replace( ':i', '', get_bk_option( 'booking_time_format' ) ), mktime( $time_milliseconds, 0, 0 ) );
1586
+ echo ( $view_days_num < 31 ) ? $time_show : '';
1587
+ } else {
1588
+ echo( ( $view_days_num < 31 ) ? ( ( ( $time_milliseconds ) < 10 ? '0' : '' ) . ( $time_milliseconds ) . '<sup>:00</sup>' ) : '' );
1589
+ }
1590
+
1591
+ }
1592
+
1593
+
1594
+ /**
1595
+ * Is show Day View ( showing days || times )
1596
+ * @param $row_settings
1597
+ *
1598
+ * @return bool
1599
+ */
1600
+ private function is_show_day_view( $row_settings ){
1601
+ if (
1602
+ ( ( 30 == $row_settings['view_days_num'] ) && ( ! $row_settings['is_matrix'] ) ) // Day View for Single
1603
+ || ( ( 1 == $row_settings['view_days_num'] ) && ( $row_settings['is_matrix'] ) ) // Day View for Matrix
1604
+ ) {
1605
+ return true;
1606
+ } else {
1607
+ return false;
1608
+ }
1609
+ }
1610
+
1611
+
1612
+ /**
1613
+ * Check, if starting new booking (something changed) relative to previous CELL
1614
+ *
1615
+ * @param array $bookings_in_cell
1616
+ * @param array $previous_bookings_in_cell
1617
+ *
1618
+ * @return bool
1619
+ */
1620
+ private function is_start_new_booking_cell( $bookings_in_cell, $previous_bookings_in_cell ) {
1621
+
1622
+ $bookings_in_cell = implode( '|', $bookings_in_cell );
1623
+ $previous_bookings_in_cell = implode( '|', $previous_bookings_in_cell );
1624
+
1625
+ if ( $bookings_in_cell !== $previous_bookings_in_cell ) {
1626
+ return true;
1627
+ } else {
1628
+ return false;
1629
+ }
1630
+ }
1631
+
1632
+
1633
+ /**
1634
+ * Get Text for booking Title in PIPELINE
1635
+ *
1636
+ * @param $bk_id
1637
+ * @param $bookings
1638
+ *
1639
+ * @return string
1640
+ */
1641
+ private function get_booking_title_for_timeline( $bk_id, $bookings ){
1642
+
1643
+ $text_in_day_cell = '';
1644
+
1645
+ if ( $this->is_frontend ) $what_show_in_day_template = get_bk_option( 'booking_default_title_in_day_for_timeline_front_end' );
1646
+ else $what_show_in_day_template = get_bk_option( 'booking_default_title_in_day_for_calendar_view_mode' );
1647
+
1648
+ if ( function_exists( 'get_title_for_showing_in_day' ) ) {
1649
+ $text_in_day_cell .= esc_textarea( get_title_for_showing_in_day( $bk_id, $bookings, $what_show_in_day_template ) ); //FixIn: 7.1.1.2
1650
+ } else {
1651
+ if ( ! $this->is_frontend )
1652
+ $text_in_day_cell .= $bk_id . ':' . esc_textarea( $bookings[$bk_id]->form_data['_all_fields_']['name'] ); // Default Free //FixIn: 7.1.1.2
1653
+ }
1654
+
1655
+ return $text_in_day_cell;
1656
+ }
1657
+
1658
+
1659
+ /**
1660
+ * Title, when mouse-over booking Pipeline (bar with background)
1661
+ *
1662
+ * @param $booking_id
1663
+ * @param $row_settings
1664
+ */
1665
+ private function show_booking_title_for_pipeline_bar( $booking_id, $row_settings ){
1666
+
1667
+ $bk_title = wpbc_get_date_in_correct_format( date_i18n( "Y-m-d", $row_settings['real_date'] ) )[0];
1668
+
1669
+ $bk_title .= " \n" . $this->get_booking_title_for_timeline( $booking_id, $row_settings['bookings'] );
1670
+
1671
+ $bk_title .= " \n" . strip_tags( wpbc_get_short_dates_formated_to_show( $row_settings['bookings'][ $booking_id ]->dates_short ) ) ;
1672
+
1673
+ ?><a href="javascript:void(0)"
1674
+ class="in_cell_date_booking_pipeline_a"
1675
+ title="<?php echo str_replace( '"', "", $bk_title ); ?>"
1676
+ ><?php
1677
+ ?><div class="in_cell_date_booking_pipeline_a_sizer"></div><?php
1678
+ ?></a><?php
1679
+ }
1680
+
1681
+
1682
+ /**
1683
+ * Show booking TITLE in PIPELINE
1684
+ *
1685
+ * @param $bookings_in_cell
1686
+ * @param $row_settings
1687
+ */
1688
+ private function show_booking_title_for_timeline( $bookings_in_cell, $row_settings ){
1689
+
1690
+ $bk_a_title_arr = array();
1691
+ $popup_content_arr = array();
1692
+ $popup_title_arr = array();
1693
+
1694
+ $is_show_popover_in_timeline = wpbc_is_show_popover_in_flex_timeline( $this->is_frontend, $this->request_args['booking_hash'] ); //FixIn: 8.1.3.5
1695
+
1696
+ foreach ( $bookings_in_cell as $booking_id ) {
1697
+
1698
+ $bk_a_title = $this->get_booking_title_for_timeline( $booking_id, $row_settings['bookings'] );
1699
+ $bk_a_title_arr[] = $bk_a_title;
1700
+
1701
+ $title_in_day = $title = $title_hint = '';
1702
+
1703
+ if ( $is_show_popover_in_timeline ) {
1704
+ $popup_content = $this->wpbc_get_booking_info_4_popover( $booking_id, $row_settings['bookings'], $row_settings['booking_types'] );
1705
+ $popup_title_arr[] = $popup_content['title'];
1706
+ $popup_content_arr[] = $popup_content['content'];
1707
+ }
1708
+ //$popup_content_arr[] = $bk_a_title . ': ' . strip_tags( wpbc_get_short_dates_formated_to_show( $row_settings['bookings'][ $booking_id ]->dates_short ) ) ;
1709
+ }
1710
+
1711
+ // Title A link
1712
+ $bk_a_title__text = implode( ', ', $bk_a_title_arr );
1713
+
1714
+ if ( strlen( $bk_a_title__text ) > 20 ) {
1715
+ $bk_a_title__text = substr( $bk_a_title__text, 0, 20 ) . '...';
1716
+ }
1717
+ if ( count( $bookings_in_cell ) > 1 ) {
1718
+ $bk_a_title__text = '<sup>[' . count( $bookings_in_cell ) . ']</sup> ' . $bk_a_title__text;
1719
+ }
1720
+
1721
+
1722
+ if ( ! $this->is_frontend ) { $line_separator = '<div class=\'clear\'></div>'; }
1723
+ else { $line_separator = ''; }
1724
+ $popup_title_arr = implode( $line_separator, $popup_title_arr );
1725
+
1726
+ $line_separator = '<hr class="wpbc_tl_popover_booking_separator" />';
1727
+ $popup_content_arr = implode( $line_separator, $popup_content_arr );
1728
+
1729
+ // Booking CELL Title
1730
+ ?><a href="javascript:void(0)"
1731
+ class="<?php echo implode(' ', array(
1732
+ 'in_cell_date_booking_title',
1733
+ ( $is_show_popover_in_timeline ) ? 'popover_bottom' : '',
1734
+ ( $is_show_popover_in_timeline ) ? 'popover_click' : '',
1735
+ ( count( $bookings_in_cell ) > 1 ) ? 'several_bookings_in_cell' : ''
1736
+ )); ?>"
1737
+ <?php if ( $is_show_popover_in_timeline ) { ?>
1738
+ data-content="<?php echo str_replace( '"', "", $popup_content_arr ); ?>"
1739
+ data-original-title="<?php echo str_replace( '"', "", $popup_title_arr ); ?>"
1740
+ <?php } ?>
1741
+ ><?php
1742
+ echo $bk_a_title__text;
1743
+ ?></a><?php
1744
+ }
1745
+
1746
+
1747
+ /**
1748
+ * Get array of CSS classes for booking bar
1749
+ * @param int $booking_id
1750
+ * @param array $bookings
1751
+ *
1752
+ * @return array
1753
+ */
1754
+ function get_booking_class_arr( $booking_id, $row_settings , $real_date, $time_hour ){
1755
+
1756
+ $bookings = $row_settings['bookings'];
1757
+
1758
+ $class_arr = array();
1759
+
1760
+ if ( ( ! empty( $booking_id ) ) && isset( $bookings[ $booking_id ] ) ) {
1761
+
1762
+ // Appoved | Pending
1763
+ if ( count( $bookings[ $booking_id ]->dates ) > 0 ) {
1764
+ $is_approved = $bookings[ $booking_id ]->dates[0]->approved;
1765
+ } else {
1766
+ $is_approved = 0;
1767
+ }
1768
+ $class_arr[] = $is_approved ? 'approved_booking' : 'pending_booking';
1769
+
1770
+ /////////////////////////////////////////////////////////////////
1771
+
1772
+ if ( isset( $bookings[ $booking_id ]->trash ) ) {
1773
+ $is_trash = $bookings[ $booking_id ]->trash;
1774
+ } else {
1775
+ $is_trash = false;
1776
+ }
1777
+ $class_arr[] = $is_trash ? 'booking_trash' : '';
1778
+
1779
+ /////////////////////////////////////////////////////////////////
1780
+
1781
+ if ( ( isset( $bookings[ $booking_id ]->form_data['email'] ) )
1782
+ && ( 'admin@blank.com' == $bookings[ $booking_id ]->form_data['email'] )
1783
+ ) {
1784
+ $is_blank_bookings = true;
1785
+ } else {
1786
+ $is_blank_bookings = false;
1787
+ }
1788
+ $class_arr[] = $is_blank_bookings ? 'booking_blank' : '';
1789
+
1790
+ /////////////////////////////////////////////////////////////////
1791
+
1792
+ if ( date_i18n( 'Y.m.d' ) > date_i18n( "Y.m.d", $real_date ) ) {
1793
+ $class_arr[] = 'past_date';
1794
+ }
1795
+ if ( date_i18n( 'Y.m.d' ) == date_i18n( "Y.m.d", $real_date ) ) {
1796
+ $class_arr[] = 'today_date';
1797
+ }
1798
+
1799
+ if ( $this->is_show_day_view( $row_settings ) ) {
1800
+ if ( ( date_i18n( 'm.d.Y' ) == date_i18n( "m.d.Y", $real_date ) ) // Today Date
1801
+ && ( intval( date_i18n( 'H' ) ) > intval( $time_hour ) ) ) {
1802
+ $class_arr[] = 'past_date';
1803
+ }
1804
+ }
1805
+ /////////////////////////////////////////////////////////////////
1806
+
1807
+ $css_class_additional = apply_filters( 'wpbc_timeline_booking_header_css', '', $booking_id, $bookings ); //FixIn: 7.0.1.41
1808
+ $class_arr[] = $css_class_additional;
1809
+ }
1810
+
1811
+ // Remove empty values from array
1812
+ $class_arr = array_filter( $class_arr );
1813
+
1814
+ return $class_arr;
1815
+ }
1816
+
1817
+
1818
+ /**
1819
+ * Show Date cell :: 3 variants :: Date Number | Booking Pipeline | Booking Title
1820
+ * @param $row_settings
1821
+ */
1822
+ private function show_day_cell( $row_settings ){
1823
+
1824
+ $data_in_previous_cell = $this->data_in_previous_cell;
1825
+
1826
+ $yy = date_i18n( "Y", $row_settings[ 'real_date' ] ); // 2012
1827
+ $mm = date_i18n( "m", $row_settings[ 'real_date' ] ); // 09
1828
+ $dd = date_i18n( "d", $row_settings[ 'real_date' ] ); // 31
1829
+ $ww = date_i18n( "N", $row_settings[ 'real_date' ] ); // 7
1830
+ $day_week = $row_settings[ 'dwa' ][$ww]; // Su
1831
+
1832
+ $row_settings['day_filter_id'] = $yy . '-' . $mm . '-' . $dd;
1833
+
1834
+
1835
+ // <editor-fold defaultstate="collapsed" desc=" = $bookings_in_day_cell - Array of booking ID - Sorted by Time in this date cell = " >
1836
+
1837
+ $bookings_in__times_arr = array();
1838
+ /**
1839
+ * $bookings_in__times_arr = array( [0] => array( [0] => 918, [1] => 917 ), [3600] => array( [0] => 918 [1] => 917 ), ...
1840
+ [82800] => Array (
1841
+ [0] => 918
1842
+ [1] => 917
1843
+ )
1844
+ )
1845
+ */
1846
+ if ( ! empty ( $row_settings['time_array_new'][ $row_settings['day_filter_id'] ] ) ) { // $row_settings['time_array_new'][ '2019-07-19' ]
1847
+ $bookings_in__times_arr = $row_settings['time_array_new'][ $row_settings['day_filter_id'] ];
1848
+ }
1849
+
1850
+ $bookings_in_day_cell = array();
1851
+ if ( ! empty ( $bookings_in__times_arr ) ) {
1852
+ foreach ( $bookings_in__times_arr as $times_milliseconds => $bookings_in_times_arr ) {
1853
+
1854
+ foreach ( $bookings_in_times_arr as $booking_id_in_time_interval ) {
1855
+
1856
+ if ( ! in_array( $booking_id_in_time_interval, $bookings_in_day_cell ) ) {
1857
+ /**
1858
+ * Array ( [0] => 15 [1] => 16 [2] => 13 [3] => 14 )
1859
+ */
1860
+ $bookings_in_day_cell[] = $booking_id_in_time_interval;
1861
+ }
1862
+ }
1863
+ }
1864
+ }
1865
+ // </editor-fold>
1866
+
1867
+ //debuge($bookings_in__times_arr);
1868
+ // <editor-fold defaultstate="collapsed" desc=" = $cell_css[] - Define CSS classes of day cell = " >
1869
+
1870
+ $cell_css = array();
1871
+ $cell_css[] = 'flex_tl_day_cell';
1872
+ $cell_css[] = 'flex_tl_weekday' . $ww;
1873
+ $cell_css[] = $row_settings['day_filter_id'];
1874
+
1875
+ if ( date_i18n( 'm.d.Y' ) == date_i18n( "m.d.Y", $row_settings['real_date'] ) ) {
1876
+ $cell_css[] = 'today_date';
1877
+ } else if ( date_i18n( 'Y.m.d' ) > date_i18n( "Y.m.d", $row_settings['real_date'] ) ) {
1878
+ $cell_css[] = 'past_date';
1879
+ }
1880
+
1881
+ if ( ( $data_in_previous_cell['previous_month'] != $mm ) || ( 1 == $dd ) ) {
1882
+
1883
+ $data_in_previous_cell['previous_month'] = $mm;
1884
+ $cell_css[] = 'new_month';
1885
+ }
1886
+
1887
+ if ( ! empty( $bookings_in_day_cell ) ) {
1888
+ $cell_css[] = 'exist_booking_in_cell';
1889
+ } else {
1890
+ $cell_css[] = 'no_booking_in_cell';
1891
+ }
1892
+
1893
+ // </editor-fold>
1894
+
1895
+
1896
+ ?><div id="cell_<?php echo $row_settings[ 'current_resource_id' ] . '_' . $row_settings['day_filter_id'] ; ?>"
1897
+ class="<?php echo implode(' ', $cell_css ); ?>"
1898
+ ><?php
1899
+
1900
+ ////////////////////////////////////////////////////////////////////////////////////////
1901
+ // T i m e c e l l s
1902
+ ////////////////////////////////////////////////////////////////////////////////////////
1903
+ $time_selles_num = $row_settings['time_selles_num'];
1904
+ $tm = floor( 24 / $time_selles_num );
1905
+
1906
+
1907
+ ?><div class="<?php echo implode(' ', array(
1908
+ 'in_cell_time_section_in_day',
1909
+ 'flex_time_section_in_day_booking',
1910
+ 'flex_time_in_days_num_' . $row_settings['view_days_num']
1911
+ )); ?>"
1912
+ ><?php
1913
+
1914
+ for ( $tt = 0; $tt < $time_selles_num; $tt++ ) {
1915
+
1916
+ // Get bookings for time-slot
1917
+ if ( $this->is_show_day_view( $row_settings ) ) {
1918
+
1919
+ $time_ms = $tt * 60 * 60;
1920
+ $bookings_in_this_time_arr = empty( $bookings_in__times_arr[ $time_ms ] ) ? array() : $bookings_in__times_arr[ $time_ms ];
1921
+ $is_start_new_booking = $this->is_start_new_booking_cell( $bookings_in_this_time_arr, $data_in_previous_cell['bookings_in_cell'] );
1922
+
1923
+ $bookings_in_day_cell = $bookings_in_this_time_arr;
1924
+
1925
+ } else { // Get bookings for a day
1926
+
1927
+ $is_start_new_booking = $this->is_start_new_booking_cell( $bookings_in_day_cell, $data_in_previous_cell['bookings_in_cell'] );
1928
+ }
1929
+
1930
+ // Skip timeslots for day view
1931
+ if ( $this->is_show_day_view( $row_settings ) ) {
1932
+ if ( ( $tt < $row_settings['start_hour_for_1day_view'] ) || ( $tt > $row_settings['end_hour_for_1day_view'] ) ) {
1933
+ continue;
1934
+ }
1935
+ }
1936
+
1937
+
1938
+ $today_time_css_class='';
1939
+ if ( date_i18n( 'Y.m.d' ) == date_i18n( "Y.m.d", $row_settings[ 'real_date' ] ) ) {
1940
+ if ( $this->is_show_day_view( $row_settings ) ) {
1941
+ if ( ( date_i18n( 'm.d.Y' ) == date_i18n( "m.d.Y", $row_settings[ 'real_date' ] ) ) // Today Date
1942
+ && ( intval( date_i18n( 'H' ) ) == intval( $tt ) ) ) {
1943
+ $today_time_css_class = 'today_time';
1944
+ }
1945
+ }
1946
+
1947
+ }
1948
+
1949
+ ?><div class="<?php echo 'in_cell_time_hour time_hour' . ( $tt * $tm ). ' ' . $today_time_css_class; ?>" ><?php
1950
+
1951
+
1952
+ if ( 'show_dates' == $row_settings['what_to_show'] ) {
1953
+
1954
+ ?>
1955
+ <div class="in_cell_date_container in_cell_date_container_<?php echo $row_settings['what_to_show'] ?>"><?php
1956
+ //if ( empty( $bookings_in_day_cell ) ) {
1957
+ if ( $this->is_show_day_view( $row_settings ) ) {
1958
+ $this->show_time_number_in_correct_format( $tt * $tm , $row_settings['view_days_num'] );
1959
+ } else {
1960
+ echo $dd;
1961
+ }
1962
+ //}
1963
+ ?></div><?php
1964
+ }
1965
+
1966
+
1967
+ if ( 'show_bookings' == $row_settings['what_to_show'] ) {
1968
+
1969
+ if ( ! empty( $bookings_in_day_cell ) ) {
1970
+
1971
+ $booking_id_title = array();
1972
+
1973
+ ?>
1974
+ <div class="in_cell_date_container in_cell_date_container_<?php echo $row_settings['what_to_show'] ?>"><?php
1975
+
1976
+ foreach ( $bookings_in_day_cell as $booking_id ) {
1977
+
1978
+ $booking_css_class_arr = $this->get_booking_class_arr( $booking_id, $row_settings, $row_settings['real_date'], $tt );
1979
+
1980
+ ?>
1981
+ <div class="<?php echo implode( ' ', array(
1982
+ 'booking_id',
1983
+ 'booking_id_' . $booking_id,
1984
+ $is_start_new_booking ? 'start_new_booking' : '',
1985
+ ) );
1986
+ echo ' ' . implode( ' ', $booking_css_class_arr );
1987
+ ?>"
1988
+ ><?php
1989
+
1990
+ // Booking CELL background
1991
+ $this->show_booking_title_for_pipeline_bar( $booking_id, $row_settings ); // Title, when mouse-over booking Pipeline (bar with background)
1992
+
1993
+ ?></div><?php
1994
+ }
1995
+ ?></div><?php
1996
+ }
1997
+ }
1998
+
1999
+
2000
+ if ( 'show_booking_titles' == $row_settings['what_to_show'] ) {
2001
+
2002
+ if ( ! empty( $bookings_in_day_cell ) ) {
2003
+
2004
+ // Title of new booking(s)
2005
+ if ( $is_start_new_booking ) {
2006
+
2007
+ ?><div class="<?php echo implode( ' ', array(
2008
+ 'in_cell_date_container',
2009
+ 'in_cell_date_container_booking_id_title',
2010
+ 'in_cell_date_container_' . $row_settings['what_to_show']
2011
+ ) );
2012
+ echo ' booking_id_' . implode( '_', $bookings_in_day_cell );
2013
+ ?>"
2014
+ ><?php
2015
+
2016
+ $this->show_booking_title_for_timeline( $bookings_in_day_cell, $row_settings );
2017
+
2018
+ ?></div><?php
2019
+ }
2020
+ }
2021
+ }
2022
+
2023
+ ?></div><?php
2024
+
2025
+ $data_in_previous_cell['bookings_in_cell'] = $bookings_in_day_cell;
2026
+ }
2027
+
2028
+ ?></div><?php
2029
+
2030
+ ?></div><?php
2031
+
2032
+
2033
+ $this->data_in_previous_cell = $data_in_previous_cell;
2034
+ }
2035
+
2036
+ ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
2037
+ // Booking R O W
2038
+ ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
2039
+
2040
+ /** Row */
2041
+ public function wpbc_show_timeline_booking_row( $start_date, $booking_arr = array() ) {
2042
+
2043
+ $row_settings = array( 'start_date' => $start_date );
2044
+
2045
+ $row_settings = $this->get_init_row_settings( $row_settings );
2046
+
2047
+ if ( $row_settings['start_date'] !== false ) {
2048
+ list( $start_year, $start_month, $start_day ) = explode( '-', date_i18n( 'Y-m-d', $row_settings['start_date'] ) );
2049
+ } else {
2050
+ if ( ! empty( $this->request_args['scroll_start_date'] ) )
2051
+ list( $start_year, $start_month, $start_day ) = explode( '-', $this->request_args['scroll_start_date'] ); // scroll_start_date=2013-07-01
2052
+ else
2053
+ list( $start_year, $start_month, $start_day ) = explode( '-', date_i18n( 'Y-n-j' ) );
2054
+ }
2055
+
2056
+ ////////////////////////////////////////////////////////////////////////////////////////////////////////////////
2057
+ // Dates / Times Line
2058
+ ////////////////////////////////////////////////////////////////////////////////////////////////////////////////
2059
+
2060
+ $this->data_in_previous_cell['previous_booking_id'] = false;
2061
+
2062
+ $saved_previos_data_cell = $this->data_in_previous_cell;
2063
+
2064
+ foreach ( array( 'show_dates', 'show_bookings', 'show_booking_titles' ) as $what_to_show ) {
2065
+
2066
+ $this->data_in_previous_cell = $saved_previos_data_cell;
2067
+
2068
+ ?><div id="flex_resource_row_<?php echo $what_to_show . '_' . $booking_arr['current_resource_id']; ?>"
2069
+ class="<?php echo implode(' ', array(
2070
+ 'flex_tl_dates_bar',
2071
+ 'flex_tl_row_bar_' . $what_to_show ,
2072
+ $row_settings['is_matrix'] ? 'flex_tl_matrix_resources' : 'flex_tl_single_resource'
2073
+ ) ); ?>"
2074
+ ><?php
2075
+
2076
+ for ( $d_inc = 0; $d_inc < $row_settings['days_num']; $d_inc ++ ) {
2077
+
2078
+ $row_settings['real_date'] = mktime( 0, 0, 0, $start_month, ( $start_day + $d_inc ), $start_year );
2079
+
2080
+ $day_cell_params = array_merge( $row_settings, $booking_arr );
2081
+
2082
+ $day_cell_params['what_to_show'] = $what_to_show;
2083
+
2084
+ $this->show_day_cell( $day_cell_params );
2085
+ }
2086
+
2087
+ ?></div><?php
2088
+ }
2089
+ }
2090
+
2091
+
2092
+ ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
2093
+ // Timeline
2094
+ ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
2095
+
2096
+ /** Show Structure of the TimeLine */
2097
+ public function wpbc_show_timeline( $dates_array, $bookings, $booking_types, $time_array_new = array() ){
2098
+ //debuge( $time_array_new['2019-07-24']);die;
2099
+ // Skip showing rows of booking resource(s) in TimeLine or Calendar Overview, if no any exist booking(s) for current view
2100
+ $booked_booking_resources = array(); //FixIn: 7.0.1.51
2101
+ if ( ! empty( $this->request_args['only_booked_resources'] ) ) {
2102
+
2103
+ foreach ( $bookings as $single_booking ) {
2104
+
2105
+ if ( ! empty( $single_booking->booking_type ) )
2106
+ $booked_booking_resources[] = $single_booking->booking_type;
2107
+
2108
+ foreach ( $single_booking->dates as $booking_date_obj ) {
2109
+ if ( ( isset( $booking_date_obj->type_id ) ) && ( ! empty( $booking_date_obj->type_id ) ) )
2110
+ $booked_booking_resources[] = $booking_date_obj->type_id;
2111
+ }
2112
+ }
2113
+ $booked_booking_resources = array_unique( $booked_booking_resources );
2114
+ }
2115
+
2116
+ $view_days_num = $this->request_args['view_days_num']; // Get start date and number of rows, which is depend from the view days mode
2117
+ $is_matrix = $this->request_args['is_matrix'];
2118
+ $scroll_day = 0;
2119
+ $scroll_month = 0;
2120
+ $start_year = date_i18n( "Y" );
2121
+ $start_month = date_i18n( "m" ); // 09
2122
+
2123
+ if ( ! empty( $this->request_args['scroll_start_date'] ) ) { // scroll_start_date=2013-07-01
2124
+ // Set the correct start date, if was selected the stard date different from the today in the Filters Tab.
2125
+ list( $start_year, $start_month, $start_day ) = explode( '-', $this->request_args['scroll_start_date'] );
2126
+ }
2127
+
2128
+ ////////////////////////////////////////////////////////////////////////
2129
+ // Get Start Date and Scroll Day/Month Variables
2130
+ ////////////////////////////////////////////////////////////////////////
2131
+ if ( $is_matrix ) { // MATRIX VIEW
2132
+
2133
+ $bk_resources_id = explode( ',', $this->request_args['wh_booking_type'] );
2134
+ $max_rows_number = count( $bk_resources_id );
2135
+
2136
+ switch ( $view_days_num ) {
2137
+ case '1':
2138
+ if ( isset( $this->request_args['scroll_day'] ) )
2139
+ $scroll_day = $this->request_args['scroll_day'];
2140
+ if ( empty( $this->request_args['scroll_start_date'] ) )
2141
+ $start_day = date_i18n( "d" ); //FixIn: 7.0.1.13
2142
+ break;
2143
+
2144
+ case '30':
2145
+ case '60':
2146
+ if ( isset( $this->request_args['scroll_month'] ) )
2147
+ $scroll_month = $this->request_args['scroll_month'];
2148
+ if ( empty( $this->request_args['scroll_start_date'] ) )
2149
+ $start_day = 1;
2150
+ break;
2151
+
2152
+ case '7': // 7 Week - start from Monday (or other start week day)
2153
+ if ( isset( $this->request_args['scroll_day'] ) )
2154
+ $scroll_day = $this->request_args['scroll_day'];
2155
+ if ( empty( $this->request_args['scroll_start_date'] ) )
2156
+ $start_day = date_i18n( "d" );
2157
+ $start_week_day_num = date_i18n( "w" );
2158
+ $start_day_weeek = get_bk_option( 'booking_start_day_weeek' ); //[0]:Sun .. [6]:Sut
2159
+
2160
+ if ( $start_week_day_num != $start_day_weeek ) {
2161
+ for ( $d_inc = 1; $d_inc < 8; $d_inc++ ) { // Just get week back
2162
+
2163
+ $real_date = mktime( 0, 0, 0, $start_month, ($start_day - $d_inc ), $start_year );
2164
+
2165
+ $start_week_day_num = date_i18n( "w", $real_date );
2166
+ if ( $start_week_day_num == $start_day_weeek ) {
2167
+ $start_day = date_i18n( "d", $real_date );
2168
+ $start_year = date_i18n( "Y", $real_date );
2169
+ $start_month = date_i18n( "m", $real_date );
2170
+ $d_inc = 9;
2171
+ }
2172
+ }
2173
+ }
2174
+ break;
2175
+
2176
+ default: //30
2177
+ if ( isset( $this->request_args['scroll_month'] ) )
2178
+ $scroll_month = $this->request_args['scroll_month'];
2179
+ if ( empty( $this->request_args['scroll_start_date'] ) )
2180
+ $start_day = 1;
2181
+ break;
2182
+ }
2183
+
2184
+ } else { // SINGLE Resource VIEW
2185
+
2186
+ switch ( $view_days_num ) {
2187
+ case '90':
2188
+ if ( isset( $this->request_args['scroll_day'] ) )
2189
+ $scroll_day = $this->request_args['scroll_day'];
2190
+ else
2191
+ $scroll_day = 0;
2192
+
2193
+ $max_rows_number = 12;
2194
+ if ( empty( $this->request_args['scroll_start_date'] ) )
2195
+ $start_day = date_i18n( "d" );
2196
+ $start_week_day_num = date_i18n( "w" );
2197
+ $start_day_weeek = get_bk_option( 'booking_start_day_weeek' ); //[0]:Sun .. [6]:Sut
2198
+
2199
+ if ( $start_week_day_num != $start_day_weeek ) {
2200
+ for ( $d_inc = 1; $d_inc < 8; $d_inc++ ) { // Just get week back
2201
+ $real_date = mktime( 0, 0, 0, $start_month, ($start_day - $d_inc ), $start_year );
2202
+
2203
+ $start_week_day_num = date_i18n( "w", $real_date );
2204
+ if ( $start_week_day_num == $start_day_weeek ) {
2205
+ $start_day = date_i18n( "d", $real_date );
2206
+ $start_year = date_i18n( "Y", $real_date );
2207
+ $start_month = date_i18n( "m", $real_date );
2208
+ $d_inc = 9;
2209
+ }
2210
+ }
2211
+ }
2212
+ break;
2213
+
2214
+ case '365':
2215
+ if ( isset( $this->request_args['scroll_month'] ) )
2216
+ $scroll_month = $this->request_args['scroll_month'];
2217
+ else
2218
+ $scroll_month = 0;
2219
+ $max_rows_number = 12;
2220
+ if ( empty( $this->request_args['scroll_start_date'] ) )
2221
+ $start_day = 1;
2222
+ break;
2223
+
2224
+ default: // 30
2225
+ if ( isset( $this->request_args['scroll_day'] ) )
2226
+ $scroll_day = $this->request_args['scroll_day'];
2227
+ else
2228
+ $scroll_day = 0;
2229
+
2230
+ $max_rows_number = 31;
2231
+ if ( empty( $this->request_args['scroll_start_date'] ) )
2232
+ $start_day = date_i18n( "d" ); //FixIn: 7.0.1.13
2233
+ break;
2234
+ }
2235
+ }
2236
+
2237
+ ////////////////////////////////////////////////////////////////////////////////////////////////
2238
+
2239
+ //TODO: Start from replacing Table to DIV flex elements here
2240
+
2241
+ ?><div class="flex_timeline_frame<?php
2242
+ if ( $this->is_frontend ) echo ' wpbc_timeline_front_end' ?> flex_frame_view_days_num_<?php echo $view_days_num;
2243
+ if ($is_matrix) { echo ' flex_tl_matrix_resources '; } else { echo ' flex_tl_single_resource '; }
2244
+ ?>">
2245
+ <div class="flex_tl_table">
2246
+ <div class="flex_tl_table_header">
2247
+ <?php
2248
+ if ( $this->is_frontend ) {
2249
+ ?><div class="flex_tl_collumn_2"><?php
2250
+
2251
+ $title = apply_bk_filter('wpdev_check_for_active_language', $this->timeline_titles['header_title'] );
2252
+
2253
+ $params_nav = array();
2254
+ $params_nav['title'] = $title;
2255
+ $this->client_navigation( $params_nav );
2256
+
2257
+ ?></div><?php
2258
+
2259
+ } else {
2260
+ ?>
2261
+ <div class="flex_tl_collumn_1"><?php
2262
+ $title = apply_bk_filter('wpdev_check_for_active_language', $this->timeline_titles['header_column1'] );
2263
+ echo $title; // Resources
2264
+ ?></div>
2265
+ <div class="flex_tl_collumn_2"><?php
2266
+ $title = apply_bk_filter('wpdev_check_for_active_language', $this->timeline_titles['header_column2'] );
2267
+ echo $title; // Dates
2268
+ ?></div>
2269
+ <?php } ?>
2270
+ </div>
2271
+ <div class="flex_tl_table_titles">
2272
+ <div class="flex_tl_collumn_1"></div>
2273
+ <div class="flex_tl_collumn_2"><?php
2274
+ // Header above the calendar table
2275
+ $real_date = mktime( 0, 0, 0, ($start_month ), $start_day, $start_year );
2276
+
2277
+ if ( $is_matrix ) { // MATRIX VIEW
2278
+ switch ( $view_days_num ) { // Set real start date for the each rows in calendar
2279
+ case '1':
2280
+ case '7':
2281
+ $real_date = mktime( 0, 0, 0, $start_month, ( $start_day + $scroll_day ), $start_year );
2282
+ break;
2283
+
2284
+ case '30':
2285
+ case '60':
2286
+ $real_date = mktime( 0, 0, 0, ($start_month + $scroll_month ), $start_day, $start_year );
2287
+ break;
2288
+
2289
+ default: // 30
2290
+ $real_date = mktime( 0, 0, 0, ($start_month + $scroll_month ), $start_day, $start_year );
2291
+ break;
2292
+ }
2293
+ } else { // Single Resource View
2294
+ switch ( $view_days_num ) { // Set real start date for the each rows in calendar
2295
+ case '90':
2296
+ $real_date = mktime( 0, 0, 0, $start_month, ( $start_day + $scroll_day ), $start_year );
2297
+ break;
2298
+
2299
+ case '365':
2300
+ $real_date = mktime( 0, 0, 0, ($start_month + $scroll_month ), $start_day, $start_year );
2301
+ break;
2302
+
2303
+ default: // 30
2304
+ $real_date = mktime( 0, 0, 0, $start_month, ( $start_day + $scroll_day ), $start_year );
2305
+ break;
2306
+ }
2307
+ }
2308
+
2309
+ $this->wpbc_show_timeline_header_row( $real_date );
2310
+ ?>
2311
+ </div>
2312
+ </div><?php
2313
+
2314
+ for ( $d_inc = 0; $d_inc < $max_rows_number; $d_inc++ ) {
2315
+
2316
+ // Skip showing rows of booking resource(s) in TimeLine or Calendar Overview, if no any exist booking(s) for current view
2317
+ if ( ! empty( $this->request_args['only_booked_resources'] ) ) { //FixIn: 7.0.1.51
2318
+
2319
+ if ( $is_matrix ) $resource_id = $bk_resources_id[$d_inc];
2320
+ else $resource_id = $this->request_args['wh_booking_type']; // Request from GET or REQUEST
2321
+
2322
+ if ( ! in_array( $resource_id, $booked_booking_resources ) ) {
2323
+ continue;
2324
+ }
2325
+ }
2326
+
2327
+
2328
+ // Ger Start Date to real_date variabale /////////////////////
2329
+ if ( $is_matrix ) { // MATRIX VIEW
2330
+ switch ( $view_days_num ) { // Set real start date for the each rows in calendar
2331
+ case '1':
2332
+ case '7':
2333
+ $real_date = mktime( 0, 0, 0, $start_month, ( $start_day + $scroll_day ), $start_year );
2334
+ break;
2335
+
2336
+ case '30':
2337
+ case '90':
2338
+ $real_date = mktime( 0, 0, 0, ($start_month + $scroll_month ), $start_day, $start_year );
2339
+ break;
2340
+
2341
+ default: // 30
2342
+ $real_date = mktime( 0, 0, 0, ($start_month + $scroll_month ), $start_day, $start_year );
2343
+ break;
2344
+ }
2345
+ } else { // Single Resource View
2346
+ switch ( $view_days_num ) { // Set real start date for the each rows in calendar
2347
+ case '90':
2348
+ $real_date = mktime( 0, 0, 0, $start_month, ( $start_day + $d_inc * 7 + $scroll_day ), $start_year );
2349
+ break;
2350
+
2351
+ case '365':
2352
+ $real_date = mktime( 0, 0, 0, ($start_month + $d_inc + $scroll_month ), $start_day, $start_year );
2353
+ break;
2354
+
2355
+ default: // 30
2356
+ $real_date = mktime( 0, 0, 0, $start_month, ( $start_day + $d_inc + $scroll_day ), $start_year );
2357
+ break;
2358
+ }
2359
+ }
2360
+ ////////////////////////////////////////////////////////////////
2361
+ ?>
2362
+ <div class="flex_tl_table_row_bookings">
2363
+ <div class="flex_tl_collumn_1"><?php
2364
+
2365
+ // Title in first collumn of the each row in calendar //////
2366
+ if ( ( $is_matrix ) && ( isset( $bk_resources_id[$d_inc] ) ) && (isset( $booking_types[$bk_resources_id[$d_inc]] )) ) { // Matrix - resource titles
2367
+
2368
+ $resource_value = $booking_types[$bk_resources_id[$d_inc]];
2369
+ $bk_admin_url = wpbc_get_params_in_url( wpbc_get_bookings_url( false, false ), array( 'wh_booking_type' ) );
2370
+
2371
+ ?><div class="flex_tl_resource_title <?php
2372
+ if ( isset( $resource_value->parent ) ) { if ( $resource_value->parent == 0 ) { echo 'parent'; } else { echo 'child'; } }
2373
+ ?> "><?php
2374
+ if ( $this->is_frontend ) {
2375
+
2376
+ if ( ( isset( $this->options['resource_link'] ) ) && ( isset( $this->options['resource_link'][ $resource_value->booking_type_id ] ) ) ){ //FixIn: 7.0.1.50
2377
+
2378
+ ?><a href="<?php echo $this->options['resource_link'][ $resource_value->booking_type_id ]; ?>" ><?php //FixIn: 7.2.1.14
2379
+ }
2380
+
2381
+ echo apply_bk_filter('wpdev_check_for_active_language', $resource_value->title ); //FixIn: 7.0.1.11
2382
+
2383
+ if ( ( isset( $this->options['resource_link'] ) ) && ( isset( $this->options['resource_link'][ $resource_value->booking_type_id ] ) ) ){ //FixIn: 7.0.1.50
2384
+ ?></a><?php
2385
+ }
2386
+ } else {
2387
+ ?><a href="<?php echo $bk_admin_url . '&wh_booking_type=' . $bk_resources_id[$d_inc]; ?>"
2388
+ title="<?php echo apply_bk_filter('wpdev_check_for_active_language', $resource_value->title ); ?>"
2389
+ ><?php
2390
+ echo apply_bk_filter('wpdev_check_for_active_language', $resource_value->title );
2391
+ ?></a><?php
2392
+ }
2393
+ ?></div><?php
2394
+
2395
+ } else { // Single Resource - Dates titles
2396
+
2397
+ ?><div class="flex_tl_resource_title"><?php
2398
+
2399
+ switch ( $view_days_num ) {
2400
+ case '90':
2401
+ $end_real_date = mktime( 0, 0, 0, $start_month, ( $start_day + $d_inc * 7 + $scroll_day ) + 6, $start_year );
2402
+ $date_format = ' j, Y'; //get_bk_option( 'booking_date_format');
2403
+ echo __( date_i18n( "M", $real_date ) ) . date_i18n( $date_format, $real_date ) . ' - ' . __( date_i18n( "M", $end_real_date ) ) . date_i18n( $date_format, $end_real_date );
2404
+ break;
2405
+
2406
+ case '365':
2407
+ echo __( date_i18n( "F", $real_date ) ) . ', ' . date_i18n( "Y", $real_date );
2408
+ break;
2409
+
2410
+ default: // 30
2411
+ //$date_format = 'd / m / Y';
2412
+ $date_format = get_bk_option( 'booking_date_format' ); //FixIn:5.4.5.13
2413
+ $ww = date_i18n( "N", $real_date ); //7
2414
+ ?>
2415
+ <div class="flex_tl_resource_title_dates_container">
2416
+ <div class="flex_tl_resource_title_dates_days flex_tl_weekday<?php echo $ww; ?>"><?php echo date_i18n( $date_format, $real_date ); ?></div>
2417
+ <div class="flex_tl_resource_title_dates_weeks flex_tl_weekday<?php echo $ww; ?>"><?php echo __( date_i18n( "D", $real_date ) ); ?></div>
2418
+ </div>
2419
+ <?php
2420
+ break;
2421
+ }
2422
+
2423
+ ?></div><?php
2424
+ }
2425
+ ?>
2426
+ </div>
2427
+ <div class="flex_tl_collumn_2"><?php
2428
+
2429
+ if ( $is_matrix ) {
2430
+
2431
+ $this->reset_data_in_previous_cell();
2432
+
2433
+ $resource_id = $bk_resources_id[ $d_inc ];
2434
+
2435
+ } else {
2436
+ $resource_id = $this->request_args['wh_booking_type'];
2437
+ } // Request from GET or REQUEST
2438
+
2439
+ $booking_arr = array(
2440
+ 'current_resource_id' => ( ( ! empty( $resource_id ) ) ? $resource_id : 1 ), // Remove dates and Times from the arrays, which is not belong to the $booking_arr['current_resource_id'] We do not remove it only, when the $booking_arr['current_resource_id'] - is empty - OLD ALL Resources VIEW
2441
+ 'booked_dates_array' => $dates_array,
2442
+ 'bookings' => $bookings,
2443
+ 'booking_types' => $booking_types,
2444
+ 'time_array_new' => $time_array_new
2445
+ );
2446
+
2447
+ /**
2448
+ * FROM: [2019-07-19] => Array ( [0] => Array (
2449
+ * [id] => 19
2450
+ [resource] => 3
2451
+ )
2452
+ [1] => Array (
2453
+ [id] => 19
2454
+ [resource] => 3
2455
+ ), ....
2456
+ * TO
2457
+ *
2458
+ * [2019-07-19] => Array (
2459
+ * [0] => 19
2460
+ * [1] => 19
2461
+ * [2] => 18
2462
+ * [3] => 18 ...
2463
+ */
2464
+ $booking_arr['booked_dates_array'] = $this->wpbc_dates_only_of_specific_resource(
2465
+ $booking_arr['booked_dates_array'],
2466
+ $booking_arr['current_resource_id'],
2467
+ $booking_arr['bookings']
2468
+ );
2469
+ /**
2470
+ * FROM: [2019-07-19] => Array ( ... , [28800] => Array(
2471
+ [0] => Array (
2472
+ [id] => 15
2473
+ [resource] => 3
2474
+ )
2475
+ [1] => Array (
2476
+ [id] => 16
2477
+ [resource] => 3
2478
+ )
2479
+ [2] => Array (
2480
+ [id] => 13
2481
+ [resource] => 3
2482
+ ) ....
2483
+ * TO
2484
+ * [2019-07-19] => Array ( ... , [28800] => Array(
2485
+ [0] => 15
2486
+ [1] => 16
2487
+ [2] => 13
2488
+ )
2489
+ */
2490
+ $booking_arr['time_array_new'] = $this->wpbc_times_only_of_specific_resource(
2491
+ $booking_arr['time_array_new'],
2492
+ $booking_arr['current_resource_id'],
2493
+ $booking_arr['bookings']
2494
+ );
2495
+
2496
+ $this->wpbc_show_timeline_booking_row( $real_date, $booking_arr );
2497
+
2498
+
2499
+ ?>
2500
+ </div>
2501
+ </div><?php
2502
+ }
2503
+
2504
+ ?></div></div><?php
2505
+ }
2506
+
2507
+
2508
+ /**
2509
+ * Show timeline
2510
+ * All parameters must be defined.
2511
+ */
2512
+ public function show_timeline() {
2513
+
2514
+ ?><div class="flex_tl_table_loading">
2515
+ <span class="glyphicon glyphicon-refresh wpbc_spin"></span>
2516
+ <span><?php _e('Loading','booking'); ?>...</span>
2517
+ </div><?php
2518
+
2519
+
2520
+ $this->wpbc_show_timeline( $this->dates_array, $this->bookings, $this->booking_types, $this->time_array_new );
2521
+
2522
+ ?><script type="text/javascript">
2523
+ jQuery( '.flex_tl_table_loading').hide()
2524
+ jQuery( '.flex_tl_table' ).show();
2525
+ </script><?php
2526
+ }
2527
+
2528
+
2529
+ ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
2530
+ // P O P O V E R
2531
+ ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
2532
+
2533
+ //TODO: Refactor this: 2019-07-29 09:01
2534
+
2535
+ /**
2536
+ * Get Data for Popover
2537
+ *
2538
+ * @param int $bk_id
2539
+ * @param array $bookings
2540
+ * @param array $booking_types
2541
+ * @param string $text_in_day_cell
2542
+ * @param string $header_title
2543
+ * @param string $content_text
2544
+ *
2545
+ * @return array
2546
+ */
2547
+ public function wpbc_get_booking_info_4_popover( $bk_id, $bookings, $booking_types ){
2548
+
2549
+ if ( isset( $bookings[ $bk_id ] ) ) {
2550
+ $bookings[ $bk_id ]->form_show = str_replace( "&amp;", '&', $bookings[ $bk_id ]->form_show ); //FixIn:7.1.2.12
2551
+ }
2552
+
2553
+ if ( count( $bookings[ $bk_id ]->dates ) > 0 ) {
2554
+ $is_approved = $bookings[ $bk_id ]->dates[0]->approved;
2555
+ } else {
2556
+ $is_approved = 0;
2557
+ }
2558
+
2559
+ ////////////////////////////////////////////////////////////////////////////////////////////////////////////////
2560
+ // Title
2561
+ ////////////////////////////////////////////////////////////////////////////////////////////////////////////////
2562
+ $header_title = '<div class=\'popover-title-id\' > ID: ' . $bk_id . '</div>'; // ID
2563
+
2564
+
2565
+ $is_can = true; //current_user_can( 'edit_posts' );
2566
+
2567
+ if (
2568
+ ( ( $is_can ) && ( ! $this->is_frontend ) )
2569
+ || ( ( $this->is_frontend ) && ( ! empty( $this->request_args['booking_hash'] ) ) )
2570
+ ) {
2571
+
2572
+ // Buttons
2573
+ $header_title .= '<div class=\'popover-title-buttons control-group timeline_info_bk_actionsbar_' . $bk_id . '\' >';
2574
+
2575
+
2576
+ if ( ( ! $this->is_frontend ) && ( $is_can ) ) {
2577
+ // Link
2578
+ $header_title .= '<a class=\'button button-secondary\'
2579
+ title=\'' . esc_js( str_replace( "'", '', __( 'Booking Listing', 'booking' ) ) ) . '\'
2580
+ href=\''.wpbc_get_bookings_url( true, false ).'&wh_booking_id='.$bk_id.'&view_mode=vm_listing&tab=actions\' ><i class=\'glyphicon glyphicon-screenshot\'></i></a>';
2581
+ //Edit
2582
+ if ( class_exists( 'wpdev_bk_personal' ) ) {
2583
+ $bk_url_add = wpbc_get_new_booking_url( true, false );
2584
+ $bk_hash = (isset( $bookings[$bk_id]->hash )) ? $bookings[$bk_id]->hash : '';
2585
+ $bk_booking_type = $bookings[$bk_id]->booking_type;
2586
+ $edit_booking_url = $bk_url_add . '&booking_type=' . $bk_booking_type . '&booking_hash=' . $bk_hash . '&parent_res=1';
2587
+ $header_title .= '<a class=\'button button-secondary\'
2588
+ title=\'' . esc_js( str_replace( "'", '', __( 'Edit', 'booking' ) ) ) . '\'
2589
+ href=\'' . $edit_booking_url . '\' onclick=\'\' ><i class=\'glyphicon glyphicon-edit\'></i></a>';
2590
+
2591
+ // Print
2592
+ if ( class_exists( 'wpdev_bk_biz_s' ) )
2593
+ $header_title .= '<a href=\'javascript:void(0)\'
2594
+ onclick=\'javascript: wpbc_print_specific_booking_for_timeline( '.$bk_id.' );\'
2595
+ class=\'tooltip_top button-secondary button timeline_button_print\'
2596
+ title=\'' . esc_js( str_replace( "'", '', __( 'Print', 'booking' ) ) ) . '\'
2597
+ ><i class=\'glyphicon glyphicon-print\'></i></a>';
2598
+
2599
+ $header_title .= '<span class=\'wpbc-buttons-separator\'></span>';
2600
+ }
2601
+ // Trash
2602
+ //$header_title .= '<a class=\'button button-secondary\' href=\'javascript:;\' onclick=\'javascript:delete_booking(' . $bk_id . ', ' . $this->current_user_id . ', &quot;' . wpbc_get_booking_locale() . '&quot; , 1 );\' ><i class=\'glyphicon glyphicon-trash\'></i></a>';
2603
+ //FixIn: 6.1.1.10
2604
+ $is_trash = $bookings[$bk_id]->trash;
2605
+
2606
+ // Trash
2607
+ $header_title .= '<a class=\'button button-secondary trash_bk_link'.(( $is_trash)?' hidden_items ':'').'\'
2608
+ title=\'' . esc_js( str_replace( "'", '', __( 'Trash', 'booking' ) ) ) . '\'
2609
+ href=\'javascript:;\' onclick=\'javascript:if ( wpbc_are_you_sure_popup() ) trash__restore_booking(1,' . $bk_id . ', ' . $this->current_user_id . ', &quot;' . wpbc_get_booking_locale() . '&quot; , 1 );\' ><i class=\'glyphicon glyphicon-trash\'></i></a>'; //FixIn: 8.4.7.14
2610
+ // Restore
2611
+ $header_title .= '<a class=\'button button-secondary restore_bk_link'.((!$is_trash)?' hidden_items ':'').'\'
2612
+ title=\'' . esc_js( str_replace( "'", '', __( 'Restore', 'booking' ) ) ) . '\'
2613
+ href=\'javascript:;\' onclick=\'javascript:trash__restore_booking(0,' . $bk_id . ', ' . $this->current_user_id . ', &quot;' . wpbc_get_booking_locale() . '&quot; , 1 );\' ><i class=\'glyphicon glyphicon-repeat\'></i></a>';
2614
+ // Delete
2615
+ $header_title .= '<a class=\'button button-secondary delete_bk_link'.((!$is_trash)?' hidden_items ':'').'\'
2616
+ title=\'' . esc_js( str_replace( "'", '', __( 'Delete', 'booking' ) ) ) . '\'
2617
+ href=\'javascript:;\' onclick=\'javascript:if ( wpbc_are_you_sure_popup() ) delete_booking(' . $bk_id . ', ' . $this->current_user_id . ', &quot;' . wpbc_get_booking_locale() . '&quot; , 1 );\' ><i class=\'glyphicon glyphicon-remove\'></i></a>'; //FixIn: 8.4.7.14
2618
+ //End FixIn: 6.1.1.10
2619
+
2620
+ // Approve | Decline
2621
+ $header_title .= '<a class=\'button button-secondary approve_bk_link ' . ($is_approved ? 'hidden_items' : '') . '\'
2622
+ title=\'' . esc_js( str_replace( "'", '', __( 'Approve', 'booking' ) ) ) . '\'
2623
+ href=\'javascript:;\' onclick=\'javascript:approve_unapprove_booking(' . $bk_id . ',1, ' . $this->current_user_id . ', &quot;' . wpbc_get_booking_locale() . '&quot; , 1 );\' ><i class=\'glyphicon glyphicon-ok-circle\'></i></a>';
2624
+ $header_title .= '<a class=\'button button-secondary pending_bk_link ' . ($is_approved ? '' : 'hidden_items') . '\'
2625
+ title=\'' . esc_js( str_replace( "'", '', __( 'Decline', 'booking' ) ) ) . '\'
2626
+ href=\'javascript:;\' onclick=\'javascript:approve_unapprove_booking(' . $bk_id . ',0, ' . $this->current_user_id . ', &quot;' . wpbc_get_booking_locale() . '&quot; , 1 );\' ><i class=\'glyphicon glyphicon-ban-circle\'></i></a>';
2627
+
2628
+
2629
+ }
2630
+
2631
+ else if ( ( $this->is_frontend ) && ( ! empty( $this->request_args['booking_hash'] ) ) ) { //FixIn: 8.1.3.5
2632
+ // Valid or not valid hash we was checked at beginning of function.
2633
+
2634
+ //Edit
2635
+ if ( class_exists( 'wpdev_bk_personal' ) ) {
2636
+
2637
+ // $edit_booking_url_admin = wpbc_get_bookings_url( true, false ).'&wh_booking_id='.$bk_id.'&view_mode=vm_listing&tab=actions';
2638
+ // $trash_booking_url_admin = wpbc_get_bookings_url( true, false ).'&wh_booking_id='.$bk_id.'&view_mode=vm_listing&tab=actions';
2639
+
2640
+ if ( ( ! $is_approved ) || ( true ) ) { //FixIn: 8.2.1.14
2641
+ $visitorbookingediturl = apply_bk_filter( 'wpdev_booking_set_booking_edit_link_at_email', '[visitorbookingediturl]', $bk_id );
2642
+ $visitorbookingcancelurl = apply_bk_filter( 'wpdev_booking_set_booking_edit_link_at_email', '[visitorbookingcancelurl]', $bk_id );
2643
+ $visitorbookingpayurl = apply_bk_filter( 'wpdev_booking_set_booking_edit_link_at_email', '[visitorbookingpayurl]', $bk_id );
2644
+
2645
+ $header_title .= '<a class=\'btn btn-default wpbc_btn_in_timeline\' title=\''. esc_js( __( 'Edit', 'booking' ) ).'\' href=\'' . $visitorbookingediturl . '\' ><i class=\'glyphicon glyphicon-edit\'></i></a>';
2646
+ $header_title .= '<a class=\'btn btn-default wpbc_btn_in_timeline\' title=\''. esc_js( __( 'Decline', 'booking' ) ).'\' href=\'' . $visitorbookingcancelurl . '\' ><i class=\'glyphicon glyphicon-trash\'></i></a>';
2647
+ $header_title .= '<a class=\'btn btn-default wpbc_btn_in_timeline\' title=\''. esc_js( __( 'Pay', 'booking' ) ).'\' href=\'' . $visitorbookingpayurl . '\' ><i class=\'glyphicon glyphicon-credit-card\'></i></a>';
2648
+ }
2649
+ }
2650
+ }
2651
+
2652
+ $header_title .= '</div>';
2653
+ }
2654
+
2655
+ ////////////////////////////////////////////////////////////////////////////////////////////////////////////////
2656
+ // Content
2657
+ ////////////////////////////////////////////////////////////////////////////////////////////////////////////////
2658
+
2659
+ // Container
2660
+ $content_text = '<div id=\'wpbc-booking-id-'.$bk_id.'\' class=\'flex-popover-content-data\' >';
2661
+
2662
+
2663
+ ////////////////////////////////////////////////////////////////////////////////////////////////////////////////
2664
+ // Labels
2665
+ ////////////////////////////////////////////////////////////////////////////////////////////////////////////////
2666
+ $content_text .= '<div class=\'flex-popover-bars\' >';
2667
+
2668
+ $content_text .= '<div class=\'flex-popover-labels-bar\' >';
2669
+
2670
+ // ID
2671
+ $content_text .= '<div class=\'flex-label flex-label-id\'>';
2672
+ $content_text .= '<span class=\'label0\'>' . $bk_id . '</span>';
2673
+ $content_text .= '</div>';
2674
+
2675
+ // Labels
2676
+ $content_text .= '<div class=\'flex-label flex-label-booking-status label-pending' . ( $is_approved ? ' hidden_items' : '' ) . '\'>'
2677
+ . __('Pending' ,'booking')
2678
+ . '</div>';
2679
+ $content_text .= '<div class=\'flex-label flex-label-booking-status label-approved' . ( ! $is_approved ? ' hidden_items' : '' ) . '\'>'
2680
+ . __('Approved' ,'booking')
2681
+ . '</div>';
2682
+
2683
+ // Resource
2684
+ if ( function_exists( 'get_booking_title' ) ) {
2685
+
2686
+ if ( isset( $booking_types[$bookings[$bk_id]->booking_type] ) ) $bk_title = $booking_types[$bookings[$bk_id]->booking_type]->title;
2687
+ else $bk_title = get_booking_title( $bookings[$bk_id]->booking_type );
2688
+
2689
+ $content_text .= '<div class=\'flex-label flex-label-resource\'>';
2690
+ $content_text .= '<span class=\'\'>' . esc_textarea( $bk_title ) . '</span>'; //FixIn: 7.1.1.2
2691
+ $content_text .= '</div>';
2692
+ }
2693
+
2694
+ // Payment Status
2695
+ if ( ( function_exists( 'wpdev_bk_get_payment_status_simple' ) )
2696
+ && ( floatval( $bookings[ $bk_id ]->cost ) > 0 )
2697
+ ) {
2698
+ $pay_status = wpdev_bk_get_payment_status_simple( $bookings[ $bk_id ]->pay_status );
2699
+ $is_payment_ok = wpbc_is_payment_status_ok( trim( $bookings[ $bk_id ]->pay_status ) );
2700
+
2701
+ $payment_label_status = $is_payment_ok ? 'payment-label-success' : 'payment-label-unknown';
2702
+
2703
+ $content_text .= '<div class=\'flex-label flex-label-payment '. $payment_label_status .'\'>';
2704
+
2705
+ if ( $is_payment_ok )
2706
+ $content_text .= '<span class=\'label-prefix\'>' . esc_js( __( 'Payment', 'booking' ) ). '</span> ' . esc_js( $pay_status );
2707
+ else {
2708
+ $content_text .= '<span class=\'label-prefix\'>' . esc_js( __( 'Payment', 'booking' ) ) . '</span> ' . esc_js( $pay_status ); //FixIn: 7.1.1.3
2709
+ }
2710
+
2711
+ $content_text .= '</div>';
2712
+ }
2713
+
2714
+ if ( ! $this->is_frontend ) {
2715
+ // Trash
2716
+ $content_text .= '<div class=\'flex-label flex-label-trash' . ( ( ! $bookings[$bk_id]->trash ) ? ' hidden_items ' : '' ) . '\'>';
2717
+ $content_text .= '<span class=\'\'>' . esc_js( __('Trash' ,'booking') ) . '</span>'; //FixIn: 6.1.1.10 //FixIn: 7.1.1.3
2718
+ $content_text .= '</div>';
2719
+ }
2720
+
2721
+
2722
+ $content_text .= '</div>';
2723
+
2724
+
2725
+ ////////////////////////////////////////////////////////////////////////////////////////////////////////////
2726
+ // Cost Bar
2727
+ ////////////////////////////////////////////////////////////////////////////////////////////////////////////
2728
+ if ( ( class_exists( 'wpdev_bk_biz_s' ) ) ) { //&& ( ! $this->is_frontend ) ){
2729
+
2730
+ $content_text .= '<div class=\'flex-popover-cost-bar\' >';
2731
+
2732
+ //FixIn: 8.3.3.9
2733
+ if ( floatval( $bookings[ $bk_id ]->cost ) > 0 ) {
2734
+ // Cost
2735
+ $booking_cost = wpbc_get_cost_with_currency_for_user( $bookings[ $bk_id ]->cost, $bookings[ $bk_id ]->booking_type );
2736
+
2737
+ $content_text .= '<div class=\'flex-label flex-label-cost\' >';
2738
+ //$content_text .= '<div class=\'text-left field-labels booking-labels\'>';
2739
+ $content_text .= '<div class=\'\'>' . $booking_cost . '</div>';
2740
+ //$content_text .= '</div>';
2741
+ $content_text .= '</div>';
2742
+ }
2743
+
2744
+ $content_text .= '</div>';
2745
+
2746
+ }
2747
+
2748
+ $content_text .= '</div>';
2749
+
2750
+
2751
+
2752
+ ////////////////////////////////////////////////////////////////////////////////////////////////////////////////
2753
+ // Booking Data
2754
+ ////////////////////////////////////////////////////////////////////////////////////////////////////////////////
2755
+
2756
+ // Booking Data
2757
+ $content_text .= '<div class=\'flex-popover-booking-data\'>' . esc_textarea( $bookings[$bk_id]->form_show ) . '</div>'; //FixIn: 7.1.1.2
2758
+
2759
+ ////////////////////////////////////////////////////////////////////////////////////////////////////////////////
2760
+ // Notes
2761
+ ////////////////////////////////////////////////////////////////////////////////////////////////////////////////
2762
+
2763
+ // Notes
2764
+ if ( ! empty( $bookings[$bk_id]->remark ) ) {
2765
+ $content_text .= '<div class=\'wpbc-popover-booking-notes\'>' . '<strong>' . esc_js( __('Note', 'booking') ). ':</strong> ' . esc_textarea( $bookings[$bk_id]->remark ) . '</div>'; //FixIn: 7.1.1.2 //FixIn: 7.1.1.3
2766
+ }
2767
+
2768
+ ////////////////////////////////////////////////////////////////////////////////////////////////////////////////
2769
+ // Dates
2770
+ ////////////////////////////////////////////////////////////////////////////////////////////////////////////////
2771
+
2772
+ $bk_dates_short_id = array(); //BL
2773
+ if ( count( $bookings[$bk_id]->dates ) > 0 )
2774
+ $bk_dates_short_id = (isset( $bookings[$bk_id]->dates_short_id )) ? $bookings[$bk_id]->dates_short_id : array(); // Array ([0] => [1] => .... [4] => 6... [11] => [12] => 8 )
2775
+
2776
+ $short_dates_content = wpbc_get_short_dates_formated_to_show( $bookings[$bk_id]->dates_short, $is_approved, $bk_dates_short_id, $booking_types );
2777
+ $short_dates_content = str_replace( '"', "'", $short_dates_content );
2778
+
2779
+ $content_text .= '<div class=\'flex-label-dates \'>';
2780
+ $content_text .= $short_dates_content;
2781
+ $content_text .= '</div>';
2782
+
2783
+
2784
+
2785
+ $content_text .= '</div>'; // Main Container: 'flex-popover-content-data'
2786
+
2787
+ return array(
2788
+ 'title' => $header_title,
2789
+ 'content' => $content_text
2790
+ );
2791
+ }
2792
+
2793
+ }
2794
+
2795
+
2796
+
2797
+ /** Navigation of Timeline in Ajax request */
2798
+ function wpbc_ajax_flex_timeline() {
2799
+ /*
2800
+ [timeline_obj] => Array
2801
+ (
2802
+ [is_frontend] => 1
2803
+ [html_client_id] => wpbc_timeline_1454680376080
2804
+ [wh_booking_type] => 3,4,1,5,6,7,8,9,2,10,11,12,14
2805
+ [is_matrix] => 1
2806
+ [view_days_num] => 30
2807
+ [scroll_start_date] =>
2808
+ [scroll_day] => 0
2809
+ [scroll_month] => 0
2810
+ )
2811
+ */
2812
+
2813
+
2814
+ $attr = $_POST['timeline_obj'];
2815
+ $attr['nav_step'] = $_POST['nav_step'];
2816
+
2817
+ ob_start();
2818
+
2819
+ $timeline = new WPBC_TimelineFlex();
2820
+
2821
+ $html_client_id = $timeline->ajax_init( $attr ); // Define arameters and get bookings
2822
+ //debuge($timeline->options);
2823
+
2824
+ //echo '<div class="wpbc_timeline_ajax_replace">'; // Replace content of this container
2825
+ $timeline->show_timeline();
2826
+
2827
+
2828
+ $is_show_popover_in_timeline = wpbc_is_show_popover_in_flex_timeline( $attr['is_frontend'], $attr['booking_hash'] ); //FixIn: 8.1.3.5
2829
+
2830
+ if ( $is_show_popover_in_timeline ) { // Update New Popovers
2831
+
2832
+ ?><script type="text/javascript">
2833
+ if ( jQuery.isFunction( jQuery(".popover_click.popover_bottom" ).popover ) ) { //FixIn: 7.0.1.2 - 2016-12-10
2834
+ jQuery('.popover_click.popover_bottom').popover( {
2835
+ placement: 'bottom' //FixIn: 8.4.5.12
2836
+ , trigger:'manual'
2837
+ //, delay: {show: 100, hide: 8}
2838
+ , content: ''
2839
+ , template: '<div class="popover" role="tooltip"><div class="arrow"></div><div class="popover-close"><a href="javascript:void(0)" data-dismiss="popover" aria-hidden="true">&times;</a></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'
2840
+ , container: '.wpbc_timeline_frame,.flex_timeline_frame'
2841
+ , html: 'true'
2842
+ });
2843
+ }
2844
+ </script><?php
2845
+ }
2846
+ //echo '</div>';
2847
+
2848
+
2849
+ $timeline_results = ob_get_contents();
2850
+
2851
+ ob_end_clean();
2852
+
2853
+ echo $timeline_results ;
2854
+ }
2855
+ add_bk_action('wpbc_ajax_flex_timeline', 'wpbc_ajax_flex_timeline');
2856
+
2857
+
2858
+
2859
+ /** Check if we are showing booking details or not
2860
+ * Admin panel - always show
2861
+ * Timeline - show if activated setting option
2862
+ * Customer listing - show always, if valid hash.
2863
+ *
2864
+ * @param $is_frontend
2865
+ * @param $booking_hash
2866
+ *
2867
+ * @return bool
2868
+ */
2869
+ function wpbc_is_show_popover_in_flex_timeline( $is_frontend, $booking_hash ){
2870
+
2871
+ // Default for admin
2872
+ $is_show_popover_in_timeline = true;
2873
+
2874
+ // For client Timeline
2875
+ if ( $is_frontend )
2876
+ $is_show_popover_in_timeline = ( get_bk_option( 'booking_is_show_popover_in_timeline_front_end' ) == 'On' ) ? true : false ;
2877
+
2878
+ // For customer booking listing with ability to edit
2879
+ //FixIn: 8.1.3.5
2880
+ if ( ( $is_frontend ) && ( ! empty( $booking_hash ) ) ) {
2881
+
2882
+ //In case if we have valid valid hash then show booking details
2883
+ $my_booking_id_type = apply_bk_filter( 'wpdev_booking_get_hash_to_id', false, $booking_hash );
2884
+
2885
+ if ( ! empty( $my_booking_id_type ) ) {
2886
+ $is_show_popover_in_timeline = true;
2887
+ } else {
2888
+ $is_show_popover_in_timeline = false;
2889
+ }
2890
+ }
2891
+ return $is_show_popover_in_timeline;
2892
+ }
2893
+
2894
+
2895
+
2896
+ /**
2897
+ * TimeLine shortcode
2898
+ *
2899
+ * @param type $attr
2900
+ * @return type
2901
+ *
2902
+ * Shortcodes exmaples:
2903
+ *
2904
+ *
2905
+ ** Matrix:
2906
+ * 1 Month View Mode:
2907
+ [bookingtimeline type="3,4,1,5,6,7,8,9,2,10,11,12,14" view_days_num=30 scroll_start_date="" scroll_month=0 header_title='All Bookings']
2908
+ * 2 Months View Mode:
2909
+ [bookingtimeline type="1,5,6,7,8,9,2,10,11,12,3,4,14" view_days_num=60 scroll_start_date="" scroll_month=-1 header_title='All Bookings']
2910
+ * 1 Week View Mode:
2911
+ [bookingtimeline type="3,4" view_days_num=7 scroll_start_date="" scroll_day=-7 header_title='All Bookings']
2912
+ * 1 Day View Mode:
2913
+ [bookingtimeline type="3,4" view_days_num=1 scroll_start_date="" scroll_day=0 header_title='All Bookings']
2914
+
2915
+ ** Single:
2916
+ * 1 Month View Mode:
2917
+ [bookingtimeline type="4" view_days_num=30 scroll_start_date="" scroll_day=-15 scroll_month=0 header_title='All Bookings']
2918
+ * 3 Months View Mode:
2919
+ [bookingtimeline type="4" view_days_num=90 scroll_start_date="" scroll_day=-30]
2920
+ * 1 Year View Mode:
2921
+ [bookingtimeline type="4" view_days_num=365 scroll_start_date="" scroll_month=-3]
2922
+
2923
+
2924
+ */
2925
+ function bookingflextimeline_shortcode($attr) {
2926
+
2927
+ //if ( function_exists( 'wpbc_br_cache' ) ) $br_cache = wpbc_br_cache(); // Init booking resources cache
2928
+
2929
+
2930
+ if ( ! isset( $attr['type' ] ) ) {
2931
+ $attr['type' ] = wpbc_get_default_resource();
2932
+ }
2933
+ if ( ! isset( $attr['view_days_num' ] ) ) {
2934
+ $attr['view_days_num' ] = 30;
2935
+ }
2936
+ if ( ! isset( $attr['scroll_start_date' ] ) ) {
2937
+ $attr['scroll_start_date' ] = '';
2938
+ }
2939
+ if ( ! isset( $attr['scroll_day' ] ) ) {
2940
+ $attr['scroll_day' ] = 0;
2941
+ }
2942
+ if ( ! isset( $attr['scroll_month' ] ) ) {
2943
+ $attr['scroll_month' ] = 0;
2944
+ }
2945
+ if ( ! isset( $attr['header_title' ] ) ) {
2946
+ $attr['header_title' ] = '';
2947
+ }
2948
+
2949
+ ob_start();
2950
+
2951
+ $timeline = new WPBC_TimelineFlex();
2952
+
2953
+ $html_client_id = $timeline->client_init( $attr ); // Define arameters and get bookings
2954
+
2955
+ //wpbc_bs_javascript_tooltips(); // JS Tooltips
2956
+ // if ( ! WPBC()->booking_obj->popover_front_end_js_is_writed ) { //Write this JS only once at page
2957
+ // wpbc_bs_javascript_popover(); // JS Popover
2958
+ // WPBC()->booking_obj->popover_front_end_js_is_writed = true;
2959
+ // }
2960
+ //wpbc_datepicker_js(); // JS Datepicker
2961
+ //wpbc_datepicker_css(); // CSS DatePicker
2962
+
2963
+
2964
+ echo '<div class="wpdevelop">';
2965
+
2966
+ echo '<div id="'.$html_client_id.'" class="wpbc_timeline_client_border">';
2967
+
2968
+ echo wp_nonce_field( 'WPBC_FLEXTIMELINE_NAV', 'wpbc_nonce_' . $html_client_id , true , false );
2969
+ echo '<div id="ajax_respond_insert'.$html_client_id.'" class="ajax_respond_insert" style="display:none;"></div>';
2970
+
2971
+ echo '<div class="wpbc_timeline_ajax_replace">';
2972
+ if ( ! WPBC()->booking_obj->popover_front_end_js_is_writed ) { //Write this JS only once at page
2973
+ wpbc_bs_javascript_popover(); // JS Popover
2974
+ WPBC()->booking_obj->popover_front_end_js_is_writed = true;
2975
+
2976
+ //Define Globar JavaScript Object - array of objects.
2977
+ ?>
2978
+ <script type="text/javascript">
2979
+ var wpbc_timeline_obj = {};
2980
+ </script>
2981
+ <?php
2982
+ }
2983
+
2984
+ $timeline->show_timeline();
2985
+ echo '</div>';
2986
+
2987
+ echo '</div>';
2988
+
2989
+ echo '</div>';
2990
+
2991
+ $timeline_results = ob_get_contents();
2992
+
2993
+ ob_end_clean();
2994
+
2995
+ return $timeline_results ;
2996
+ }
2997
+ add_shortcode( 'bookingflextimeline', 'bookingflextimeline_shortcode' );
2998
+
2999
+
3000
+
3001
+ /** JSS */
3002
+ function wpbc_timeline_js_load_files( $where_to_load ) {
3003
+
3004
+ $booking_timeline_load = get_bk_option( 'booking_timeline_load' );
3005
+ if ( 'timeline_v1' == $booking_timeline_load ){
3006
+ return;
3007
+ }
3008
+
3009
+ $is_in_footer = ! true;
3010
+
3011
+ if ( in_array( $where_to_load, array( 'admin', 'both', 'client' ) ) ) {
3012
+
3013
+ wp_enqueue_script( 'wpbc-timeline-flex'
3014
+ , trailingslashit( plugins_url( '', __FILE__ ) ) . '_out/timeline_v2.js' /* wpbc_plugin_url( '/core/timeline/wpbc-flex-timeline.js' ) */
3015
+ , array( 'wpbc-global-vars' /*, 'wp-element'*/ )
3016
+ , WP_BK_VERSION_NUM
3017
+ , $is_in_footer
3018
+ );
3019
+ }
3020
+ }
3021
+ add_action( 'wpbc_enqueue_js_files', 'wpbc_timeline_js_load_files', 50 );
3022
+
3023
+
3024
+ /** CSS */
3025
+ function wpbc_timeline_enqueue_css_files( $where_to_load ) {
3026
+
3027
+ $booking_timeline_load = get_bk_option( 'booking_timeline_load' );
3028
+ if ( 'timeline_v1' == $booking_timeline_load ){
3029
+ return;
3030
+ }
3031
+
3032
+ if ( in_array( $where_to_load, array( 'admin', 'both', 'client' ) ) ) {
3033
+
3034
+ if ( ( ( isset($_REQUEST['view_mode']) ) && ( $_REQUEST['view_mode']== 'vm_calendar' ) )
3035
+ || ( 'client' == $where_to_load ) ){
3036
+ //wp_deregister_style( 'wpbc-admin-timeline');
3037
+ wp_enqueue_style( 'wpbc-flex-timeline'
3038
+ , trailingslashit( plugins_url( '', __FILE__ ) ) . 'css/timeline_v2.css' /* wpbc_plugin_url( '/src/css/codemirror.css' ) */
3039
+ , array()
3040
+ , WP_BK_VERSION_NUM );
3041
+ wp_enqueue_style( 'wpbc-flex-timeline-skin'
3042
+ , trailingslashit( plugins_url( '', __FILE__ ) ) . 'css/timeline_skin_v2.css' /* wpbc_plugin_url( '/src/css/codemirror.css' ) */
3043
+ , array()
3044
+ , WP_BK_VERSION_NUM );
3045
+ }
3046
+
3047
+ }
3048
+ }
3049
+ add_action( 'wpbc_enqueue_css_files', 'wpbc_timeline_enqueue_css_files', 50 );
core/wpbc-activation.php CHANGED
@@ -858,6 +858,8 @@ function wpbc_get_default_options( $option_name = '', $is_get_multiuser_general_
858
  $mu_option4delete[]='booking_listing_default_view_mode';
859
  $default_options['booking_view_days_num'] = ( ( ! class_exists( 'wpdev_bk_personal' ) ) ? '90' : '30' );
860
  $mu_option4delete[]='booking_view_days_num';
 
 
861
  $default_options['booking_max_monthes_in_calendar'] = '1y';
862
  $mu_option4delete[]='booking_max_monthes_in_calendar';
863
  $default_options['booking_client_cal_count'] = '1';
@@ -1157,6 +1159,10 @@ function wpbc_get_default_options( $option_name = '', $is_get_multiuser_general_
1157
  $default_options['booking_ics_import_append_checkout_day'] = 'On';
1158
  //$mu_option4delete[]='booking_ics_import_append_checkout_day'; // No need to delete ^
1159
 
 
 
 
 
1160
  $default_options['booking_recurrent_time'] = 'Off';
1161
  $mu_option4delete[]='booking_recurrent_time';
1162
  $default_options['booking_highlight_timeslot_word'] = __( 'Booked Times:', 'booking' );
@@ -1286,9 +1292,9 @@ function wpbc_get_default_options( $option_name = '', $is_get_multiuser_general_
1286
  $mu_option4delete[]='booking_availability_based_on';
1287
  $default_options['booking_is_dissbale_booking_for_different_sub_resources'] = 'Off';
1288
  $mu_option4delete[]='booking_is_dissbale_booking_for_different_sub_resources';
1289
- $default_options['booking_search_form_show'] = str_replace( '\\n\\r', "\n", wpbc_get_default_search_form_template( 'inline' ) ); //FixIn:6.1.0.1
1290
  $mu_option4delete[]='booking_search_form_show';
1291
- $default_options['booking_found_search_item'] = str_replace( '\\n\\r', "\n", wpbc_get_default_search_results_template() ); //FixIn:6.1.0.1
1292
  $mu_option4delete[]='booking_found_search_item';
1293
  $default_options['booking_cache_expiration'] = '2d';
1294
  $mu_option4delete[]='booking_cache_expiration';
858
  $mu_option4delete[]='booking_listing_default_view_mode';
859
  $default_options['booking_view_days_num'] = ( ( ! class_exists( 'wpdev_bk_personal' ) ) ? '90' : '30' );
860
  $mu_option4delete[]='booking_view_days_num';
861
+ $default_options['booking_timeline_load'] = 'timeline_v2_flex'; //FixIn: 8.5.2.20
862
+ $mu_option4delete[]='booking_timeline_load';
863
  $default_options['booking_max_monthes_in_calendar'] = '1y';
864
  $mu_option4delete[]='booking_max_monthes_in_calendar';
865
  $default_options['booking_client_cal_count'] = '1';
1159
  $default_options['booking_ics_import_append_checkout_day'] = 'On';
1160
  //$mu_option4delete[]='booking_ics_import_append_checkout_day'; // No need to delete ^
1161
 
1162
+ //FixIn: 8.5.2.3
1163
+ $default_options['booking_is_ics_export_only_approved'] = 'Off';
1164
+ //$mu_option4delete[]='booking_is_ics_export_only_approved'; // No need to delete ^
1165
+
1166
  $default_options['booking_recurrent_time'] = 'Off';
1167
  $mu_option4delete[]='booking_recurrent_time';
1168
  $default_options['booking_highlight_timeslot_word'] = __( 'Booked Times:', 'booking' );
1292
  $mu_option4delete[]='booking_availability_based_on';
1293
  $default_options['booking_is_dissbale_booking_for_different_sub_resources'] = 'Off';
1294
  $mu_option4delete[]='booking_is_dissbale_booking_for_different_sub_resources';
1295
+ $default_options['booking_search_form_show'] = str_replace( '\\n\\r', "\n", wpbc_get_default_search_form_template( 'flex' ) ); //FixIn:6.1.0.1 //FixIn: 8.5.2.11
1296
  $mu_option4delete[]='booking_search_form_show';
1297
+ $default_options['booking_found_search_item'] = str_replace( '\\n\\r', "\n", wpbc_get_default_search_results_template( 'flex' ) ); //FixIn:6.1.0.1 //FixIn: 8.5.2.11
1298
  $mu_option4delete[]='booking_found_search_item';
1299
  $default_options['booking_cache_expiration'] = '2d';
1300
  $mu_option4delete[]='booking_cache_expiration';
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-css.php CHANGED
@@ -71,11 +71,16 @@ class WPBC_CSS extends WPBC_JS_CSS{
71
  }
72
  if ( ( $where_to_load != 'admin' ) || ( wpbc_is_new_booking_page() ) ){ // Client or Add New Booking page
73
  wp_enqueue_style( 'wpbc-client-pages', wpbc_plugin_url( '/css/client.css' ), array(), WP_BK_VERSION_NUM);
74
- }
75
- if ( ( $where_to_load != 'admin' ) || ( wpbc_is_bookings_page() ) ){ // Client or Booking Listing / Timeline pages
76
- wp_enqueue_style( 'wpbc-admin-timeline', wpbc_plugin_url( '/css/timeline.css' ), array(), WP_BK_VERSION_NUM);
77
  }
78
 
 
 
 
 
 
 
 
 
79
  // wp_enqueue_style('wpbc-datepicker-main', wpbc_plugin_url( '/js/datepick.5.1/css/jquery.datepick.css' ), array(), WP_BK_VERSION_NUM);
80
 
81
  wp_enqueue_style('wpbc-calendar', wpbc_plugin_url( '/css/calendar.css' ), array(), WP_BK_VERSION_NUM);
71
  }
72
  if ( ( $where_to_load != 'admin' ) || ( wpbc_is_new_booking_page() ) ){ // Client or Add New Booking page
73
  wp_enqueue_style( 'wpbc-client-pages', wpbc_plugin_url( '/css/client.css' ), array(), WP_BK_VERSION_NUM);
 
 
 
74
  }
75
 
76
+ ////FixIn: 8.5.2.20
77
+ $booking_timeline_load = get_bk_option( 'booking_timeline_load' );
78
+ if ( 'timeline_v1' == $booking_timeline_load ) {
79
+ if ( ( $where_to_load != 'admin' ) || ( wpbc_is_bookings_page() ) ) { // Client or Booking Listing / Timeline pages
80
+ wp_enqueue_style( 'wpbc-admin-timeline', wpbc_plugin_url( '/css/timeline.css' ), array(), WP_BK_VERSION_NUM );
81
+ }
82
+ }
83
+
84
  // wp_enqueue_style('wpbc-datepicker-main', wpbc_plugin_url( '/js/datepick.5.1/css/jquery.datepick.css' ), array(), WP_BK_VERSION_NUM);
85
 
86
  wp_enqueue_style('wpbc-calendar', wpbc_plugin_url( '/css/calendar.css' ), array(), WP_BK_VERSION_NUM);
core/wpbc-dates.php CHANGED
@@ -732,7 +732,7 @@ function wpbc_get_short_dates_formated_to_show( $bk_dates_short, $is_approved =
732
  } elseif ( $dt == ',' ) {
733
  $short_dates_content .= '<span class="date_tire">, </span>';
734
  } else {
735
- $short_dates_content .= '<a href="javascript:void(0)" class="field-booking-date label ';
736
  if ( $is_approved )
737
  $short_dates_content .= ' approved';
738
  $short_dates_content .= '">';
732
  } elseif ( $dt == ',' ) {
733
  $short_dates_content .= '<span class="date_tire">, </span>';
734
  } else {
735
+ $short_dates_content .= '<a href="javascript:void(0)" class="field-booking-date label flex-label ';
736
  if ( $is_approved )
737
  $short_dates_content .= ' approved';
738
  $short_dates_content .= '">';
core/wpbc-functions.php CHANGED
@@ -1865,7 +1865,7 @@ $is_old = false;
1865
  'href' => wpbc_get_bookings_url()
1866
  )
1867
  );
1868
-
1869
  $wp_admin_bar->add_menu(
1870
  array(
1871
  'id' => 'bar_wpbc_calendar_overview',
1865
  'href' => wpbc_get_bookings_url()
1866
  )
1867
  );
1868
+
1869
  $wp_admin_bar->add_menu(
1870
  array(
1871
  'id' => 'bar_wpbc_calendar_overview',
core/wpbc-include.php CHANGED
@@ -45,7 +45,15 @@ require_once( WPBC_PLUGIN_DIR . '/core/wpbc-js.php' );
45
  require_once( WPBC_PLUGIN_DIR . '/core/admin/wpbc-toolbars.php' ); // Toolbar - BS UI Elements
46
  require_once( WPBC_PLUGIN_DIR . '/core/admin/wpbc-sql.php' ); // Data Engine for Booking Listing / Calendar Overview pages
47
  require_once( WPBC_PLUGIN_DIR . '/core/admin/wpbc-class-listing.php' ); // CLASS. Booking Listing Table
48
- require_once( WPBC_PLUGIN_DIR . '/core/admin/wpbc-class-timeline.php' ); // CLASS. Timeline
 
 
 
 
 
 
 
 
49
  require_once( WPBC_PLUGIN_DIR . '/core/admin/wpbc-dashboard.php' ); // Dashboard Widget
50
  // Admin Pages
51
  require_once( WPBC_PLUGIN_DIR . '/core/admin/page-bookings.php' ); // Booking Listing
45
  require_once( WPBC_PLUGIN_DIR . '/core/admin/wpbc-toolbars.php' ); // Toolbar - BS UI Elements
46
  require_once( WPBC_PLUGIN_DIR . '/core/admin/wpbc-sql.php' ); // Data Engine for Booking Listing / Calendar Overview pages
47
  require_once( WPBC_PLUGIN_DIR . '/core/admin/wpbc-class-listing.php' ); // CLASS. Booking Listing Table
48
+
49
+ ////FixIn: 8.5.2.20
50
+ $booking_timeline_load = get_bk_option( 'booking_timeline_load' );
51
+ if ( 'timeline_v1' == $booking_timeline_load ){
52
+ require_once( WPBC_PLUGIN_DIR . '/core/admin/wpbc-class-timeline.php' ); // CLASS. Timeline
53
+ } else {
54
+ require_once( WPBC_PLUGIN_DIR . '/core/timeline/flex-timeline.php' ); // New. Flex. Timeline
55
+ }
56
+
57
  require_once( WPBC_PLUGIN_DIR . '/core/admin/wpbc-dashboard.php' ); // Dashboard Widget
58
  // Admin Pages
59
  require_once( WPBC_PLUGIN_DIR . '/core/admin/page-bookings.php' ); // Booking Listing
core/wpbc-js.php CHANGED
@@ -146,7 +146,7 @@ function wpbc_js_load_vars( $where_to_load ) {
146
 
147
  /** Default JavaScripts Libraries */
148
  function wpbc_js_load_libs( $where_to_load ) {
149
-
150
  // jQuery
151
  wp_enqueue_script( 'jquery' );
152
 
@@ -202,10 +202,8 @@ function wpbc_js_load_libs( $where_to_load ) {
202
  wp_enqueue_style( 'wp-color-picker' ); // Color Picker
203
  wp_enqueue_script( 'wp-color-picker' );
204
  wp_enqueue_script( 'jquery-ui-sortable' ); // UI Sortable
205
- wp_enqueue_script( 'wp-utils' ); // WP Utils, that support wp.teplate, based on undescore _.template system //FixIn: TimeFreeGenerator
206
- // if ( wpbc_is_bookings_page() )
207
- // wp_enqueue_script( 'jquery-ui-dialog' ); // UI Dialog - for payment request dialog
208
- }
209
 
210
  }
211
 
146
 
147
  /** Default JavaScripts Libraries */
148
  function wpbc_js_load_libs( $where_to_load ) {
149
+
150
  // jQuery
151
  wp_enqueue_script( 'jquery' );
152
 
202
  wp_enqueue_style( 'wp-color-picker' ); // Color Picker
203
  wp_enqueue_script( 'wp-color-picker' );
204
  wp_enqueue_script( 'jquery-ui-sortable' ); // UI Sortable
205
+ wp_enqueue_script( 'wp-util' ); // WP Util, that support wp.template, based on underscore _.template system //FixIn: TimeFreeGenerator
206
+ }
 
 
207
 
208
  }
209
 
css/admin-skin.css CHANGED
@@ -103,7 +103,7 @@
103
  box-shadow: 0 0 1px #ddd;
104
  padding: 5px 10px;
105
  white-space: nowrap;
106
- line-height: 2.8em;
107
  margin-right: 3px;
108
  font-size: 11px;
109
  border-radius: .2em;
@@ -111,7 +111,7 @@
111
  /* TimeLine Popover Labels - ID */
112
  .wpdevelop .popover-content .wpbc-popover-content-data.wpbc-listing-collumn .field-id span.label {
113
  border-radius: 0.9em;
114
- line-height: 3em;
115
  }
116
  .wpdevelop .popover-content .wpbc-popover-content-data.wpbc-listing-collumn .field-dates .field-booking-date,
117
  .wpdevelop .popover-content .wpbc-popover-content-data.wpbc-listing-collumn .field-dates .field-booking-date:hover,
@@ -142,11 +142,11 @@
142
  }
143
  /* "Content of booking fields data" in booking listing */
144
  .wpbc-listing-collumn .fieldvalue{
145
- padding: 4px 5px;
146
- line-height: 2.3em;
147
  }
148
  /* Cehckbox for Selection */
149
  .wpbc_page .wpdevelop .wpbc-listing-collumn.col-sm-2 .field-checkbox input[type="checkbox"],
150
  .wpbc_page .wpdevelop .wpbc-listing-collumn.col-sm-3 .field-checkbox input[type="checkbox"] {
151
- margin-top:7px;
152
  }
103
  box-shadow: 0 0 1px #ddd;
104
  padding: 5px 10px;
105
  white-space: nowrap;
106
+ line-height: 2.5em;
107
  margin-right: 3px;
108
  font-size: 11px;
109
  border-radius: .2em;
111
  /* TimeLine Popover Labels - ID */
112
  .wpdevelop .popover-content .wpbc-popover-content-data.wpbc-listing-collumn .field-id span.label {
113
  border-radius: 0.9em;
114
+ line-height: 2.7em;
115
  }
116
  .wpdevelop .popover-content .wpbc-popover-content-data.wpbc-listing-collumn .field-dates .field-booking-date,
117
  .wpdevelop .popover-content .wpbc-popover-content-data.wpbc-listing-collumn .field-dates .field-booking-date:hover,
142
  }
143
  /* "Content of booking fields data" in booking listing */
144
  .wpbc-listing-collumn .fieldvalue{
145
+ padding: 4px 5px 5px; /* FixIn: 8.5.2.5 */
146
+ line-height: 2.5em;
147
  }
148
  /* Cehckbox for Selection */
149
  .wpbc_page .wpdevelop .wpbc-listing-collumn.col-sm-2 .field-checkbox input[type="checkbox"],
150
  .wpbc_page .wpdevelop .wpbc-listing-collumn.col-sm-3 .field-checkbox input[type="checkbox"] {
151
+ margin-top:5px;
152
  }
js/admin.js CHANGED
@@ -71,32 +71,74 @@ function decrese_new_counter () {
71
  * @param {type} booking_id
72
  * @returns {undefined}
73
  */
74
- function set_booking_row_approved_in_timeline(booking_id){
75
  ////Approve Add to [cell_bk_id_9] class [approved] -- TODO: Also in the [a_bk_id_9] - chnaged "data-content" attribute
76
- jQuery('.cell_bk_id_'+booking_id).addClass('approved');
77
- jQuery('.timeline_info_bk_actionsbar_' + booking_id + ' .approve_bk_link').addClass('hidden_items');
78
- jQuery('.timeline_info_bk_actionsbar_' + booking_id + ' .pending_bk_link').removeClass('hidden_items');
 
 
79
  }
80
 
81
- function set_booking_row_pending_in_timeline(booking_id){
82
  //Remove Remove from [cell_bk_id_9] class [approved] -- TODO: Also in the [a_bk_id_9] - chnaged "data-content" attribute
83
- jQuery('.cell_bk_id_'+booking_id).removeClass('approved');
84
- jQuery('.timeline_info_bk_actionsbar_' + booking_id + ' .pending_bk_link').addClass('hidden_items');
85
- jQuery('.timeline_info_bk_actionsbar_' + booking_id + ' .approve_bk_link').removeClass('hidden_items');
 
 
86
  }
87
 
88
- function set_booking_row_deleted_in_timeline(booking_id){
89
  // Remove in [cell_bk_id_9] classes [time_booked_in_day]
90
  // Delete element: [a_bk_id_]
91
  // TODO: Here is possible issue, if we are have several bookings per the same date and deleted only one
92
 
93
  // make actions on the elements, which are not have CLASS: "here_several_bk_id"
94
  // And have CLASS a_bk_id_ OR cell_bk_id_
95
- jQuery(':not(.here_several_bk_id).a_bk_id_'+booking_id).fadeOut(1000);
96
- jQuery(':not(.here_several_bk_id).cell_bk_id_'+booking_id).removeClass('time_booked_in_day');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
97
  }
98
 
99
 
 
100
  // Set Booking listing R O W Approved
101
  function set_booking_row_approved(booking_id){
102
  jQuery('#booking_row_'+booking_id + ' .booking-labels .label-approved').removeClass('hidden_items');
@@ -260,6 +302,8 @@ function set_booking_row_trash( booking_id ){
260
  jQuery('.timeline_info_bk_actionsbar_'+booking_id + ' .delete_bk_link').removeClass('hidden_items');
261
 
262
  jQuery('#wpbc-booking-id-'+booking_id + ' .label-trash').removeClass('hidden_items');
 
 
263
  }
264
 
265
  //FixIn: 6.1.1.10
@@ -415,6 +459,45 @@ function mark_read_booking(booking_id, is_read_or_unread, user_id, wpdev_active_
415
  }
416
 
417
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
418
  // Get Selected rows in imported Events list
419
  function get_selected_bookings_id_in_this_list( list_tag, skip_id_length ) {
420
 
71
  * @param {type} booking_id
72
  * @returns {undefined}
73
  */
74
+ function set_booking_row_approved_in_timeline( booking_id ){
75
  ////Approve Add to [cell_bk_id_9] class [approved] -- TODO: Also in the [a_bk_id_9] - chnaged "data-content" attribute
76
+ jQuery( '.cell_bk_id_' + booking_id ).addClass( 'approved' );
77
+ jQuery( '.timeline_info_bk_actionsbar_' + booking_id + ' .approve_bk_link' ).addClass( 'hidden_items' );
78
+ jQuery( '.timeline_info_bk_actionsbar_' + booking_id + ' .pending_bk_link' ).removeClass( 'hidden_items' );
79
+
80
+ set_booking_row_approved_in_flextimeline( booking_id );
81
  }
82
 
83
+ function set_booking_row_pending_in_timeline( booking_id ){
84
  //Remove Remove from [cell_bk_id_9] class [approved] -- TODO: Also in the [a_bk_id_9] - chnaged "data-content" attribute
85
+ jQuery( '.cell_bk_id_' + booking_id ).removeClass( 'approved' );
86
+ jQuery( '.timeline_info_bk_actionsbar_' + booking_id + ' .pending_bk_link' ).addClass( 'hidden_items' );
87
+ jQuery( '.timeline_info_bk_actionsbar_' + booking_id + ' .approve_bk_link' ).removeClass( 'hidden_items' );
88
+
89
+ set_booking_row_pending_in_flextimeline( booking_id );
90
  }
91
 
92
+ function set_booking_row_deleted_in_timeline( booking_id ){
93
  // Remove in [cell_bk_id_9] classes [time_booked_in_day]
94
  // Delete element: [a_bk_id_]
95
  // TODO: Here is possible issue, if we are have several bookings per the same date and deleted only one
96
 
97
  // make actions on the elements, which are not have CLASS: "here_several_bk_id"
98
  // And have CLASS a_bk_id_ OR cell_bk_id_
99
+ jQuery( ':not(.here_several_bk_id).a_bk_id_' + booking_id ).fadeOut( 1000 );
100
+ jQuery( ':not(.here_several_bk_id).cell_bk_id_' + booking_id ).removeClass( 'time_booked_in_day' );
101
+
102
+ set_booking_row_deleted_in_flextimeline( booking_id );
103
+ }
104
+
105
+ //FixIn: Flex TimeLine 1.0
106
+
107
+ function set_booking_row_approved_in_flextimeline( booking_id ){
108
+ jQuery( '.flex_tl_row_bar_show_bookings .booking_id.booking_id_' + booking_id ).removeClass( 'pending_booking' );
109
+ jQuery( '.flex_tl_row_bar_show_bookings .booking_id.booking_id_' + booking_id ).addClass( 'approved_booking' );
110
+
111
+ //Popover
112
+ jQuery( '#wpbc-booking-id-' + booking_id + ' .flex-popover-labels-bar .label-pending').addClass( 'hidden_items' );
113
+ jQuery( '#wpbc-booking-id-' + booking_id + ' .flex-popover-labels-bar .label-approved').removeClass( 'hidden_items' );
114
+ //Dates
115
+ jQuery( '#wpbc-booking-id-' + booking_id + ' .field-booking-date').addClass( 'approved' );
116
+ }
117
+
118
+ function set_booking_row_pending_in_flextimeline( booking_id ){
119
+ jQuery( '.flex_tl_row_bar_show_bookings .booking_id.booking_id_' + booking_id ).removeClass( 'approved_booking' );
120
+ jQuery( '.flex_tl_row_bar_show_bookings .booking_id.booking_id_' + booking_id ).addClass( 'pending_booking' );
121
+
122
+ //Popover
123
+ jQuery( '#wpbc-booking-id-' + booking_id + ' .flex-popover-labels-bar .label-pending').removeClass( 'hidden_items' );
124
+ jQuery( '#wpbc-booking-id-' + booking_id + ' .flex-popover-labels-bar .label-approved').addClass( 'hidden_items' );
125
+ //Dates
126
+ jQuery( '#wpbc-booking-id-' + booking_id + ' .field-booking-date').removeClass( 'approved' );
127
+ }
128
+
129
+ function set_booking_row_deleted_in_flextimeline( booking_id ){
130
+
131
+ jQuery( '.flex_tl_row_bar_show_bookings .booking_id.booking_id_' + booking_id ).fadeOut( 1000 );
132
+ jQuery( '.flex_tl_row_bar_show_booking_titles .in_cell_date_container_show_booking_titles.booking_id_' + booking_id ).fadeOut( 1000 );
133
+
134
+ //jQuery( '.flex_timeline_frame .popover' )
135
+ if ( jQuery.isFunction( jQuery( ".popover_click.popover_bottom" ).popover ) ) //FixIn: 7.0.1.2 - 2016-12-10
136
+ jQuery( '.popover_click.popover_bottom' ).popover( 'hide' ); //Hide all opned popovers
137
+
138
  }
139
 
140
 
141
+
142
  // Set Booking listing R O W Approved
143
  function set_booking_row_approved(booking_id){
144
  jQuery('#booking_row_'+booking_id + ' .booking-labels .label-approved').removeClass('hidden_items');
302
  jQuery('.timeline_info_bk_actionsbar_'+booking_id + ' .delete_bk_link').removeClass('hidden_items');
303
 
304
  jQuery('#wpbc-booking-id-'+booking_id + ' .label-trash').removeClass('hidden_items');
305
+
306
+ set_booking_row_deleted_in_flextimeline( booking_id ); //FixIn: Flex TimeLine 1.0
307
  }
308
 
309
  //FixIn: 6.1.1.10
459
  }
460
 
461
 
462
+ //FixIn: 8.5.2.24
463
+ /**
464
+ * Emptpy Trash
465
+ *
466
+ * @param user_id
467
+ * @param wpdev_active_locale
468
+ * @returns {boolean}
469
+ */
470
+ function wpbc_empty_trash( user_id, wpdev_active_locale ) {
471
+
472
+ var ajax_type_action = 'EMPTY_TRASH';
473
+
474
+ wpbc_admin_show_message_processing( '' );
475
+
476
+ jQuery.ajax({
477
+ url: wpbc_ajaxurl,
478
+ type:'POST',
479
+ success: function ( data, textStatus ){
480
+ if ( textStatus == 'success' ) jQuery( '#ajax_respond' ).html( data );
481
+ },
482
+ error : function ( XMLHttpRequest, textStatus, errorThrown ){
483
+ console.log( 'Ajax sending Error status:' + textStatus );
484
+ alert( XMLHttpRequest.status + ' ' + XMLHttpRequest.statusText );
485
+ if ( XMLHttpRequest.status == 500 ){
486
+ alert( 'Please check at this page according this error:' + ' https://wpbookingcalendar.com/faq/#ajax-sending-error' );
487
+ }
488
+ },
489
+ // beforeSend: someFunction,
490
+ data:{
491
+ action : ajax_type_action, // Action
492
+ user_id : user_id,
493
+ wpdev_active_locale: wpdev_active_locale,
494
+ wpbc_nonce : document.getElementById( 'wpbc_admin_panel_nonce' ).value
495
+ }
496
+ });
497
+ return false;
498
+ }
499
+
500
+
501
  // Get Selected rows in imported Events list
502
  function get_selected_bookings_id_in_this_list( list_tag, skip_id_length ) {
503
 
js/client.js CHANGED
@@ -134,7 +134,7 @@ function init_datepick_cal(bk_type, date_approved_par, my_num_month, start_day_
134
  }
135
 
136
  if (is_this_admin == false) {
137
- var my_test_date = new Date( wpdev_bk_today[0],(wpdev_bk_today[1]-1), wpdev_bk_today[2] ,0,0,0 ); //Get today
138
  if ( (days_between( date, my_test_date)) < block_some_dates_from_today )
139
  return [false, 'cal4date-' + class_day +' date_user_unavailable'];
140
 
@@ -560,6 +560,14 @@ function setReservedSelectedDates( bk_type ){
560
  }, 1000);
561
  } else { // Message
562
  document.getElementById('submiting' + bk_type).innerHTML = '<div class=\"submiting_content wpdev-help-message alert alert-warning alert-success\" >' + new_booking_title + '</div>';
 
 
 
 
 
 
 
 
563
  makeScroll( '#submiting' + bk_type );
564
  jQuery('.submiting_content').fadeOut( new_booking_title_time );
565
  setTimeout( function () { location.reload( true ); }, parseInt( 1000 + new_booking_title_time ) ); //FixIn: 8.1.2.14
@@ -575,6 +583,33 @@ function setReservedSelectedDates( bk_type ){
575
  }
576
 
577
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
578
  ////////////////////////////////////////////////////////////////////////////
579
  // Submit Booking Data
580
  ////////////////////////////////////////////////////////////////////////////
@@ -582,42 +617,24 @@ function setReservedSelectedDates( bk_type ){
582
  // Check fields at form and then send request
583
  function mybooking_submit( submit_form , bk_type, wpdev_active_locale){
584
 
 
 
585
  //FixIn: 8.4.0.2
586
  var is_error = wpbc_check_errors_in_booking_form( bk_type );
587
  if ( is_error ) { return false; }
588
 
589
- //Show message if no selected days
590
  if (document.getElementById('date_booking' + bk_type).value == '') {
591
 
592
- if ( document.getElementById('additional_calendars' + bk_type) != null ) { // Checking according additional calendars.
593
 
594
- var id_additional_str = document.getElementById('additional_calendars' + bk_type).value; //Loop have to be here based on , sign
595
- var id_additional_arr = id_additional_str.split(',');
596
- var is_all_additional_days_unselected = true;
597
- for (var ia=0;ia<id_additional_arr.length;ia++) {
598
- if (document.getElementById('date_booking' + id_additional_arr[ia] ).value != '' ) {
599
- is_all_additional_days_unselected = false;
600
- }
601
- }
602
-
603
- if (is_all_additional_days_unselected) {
604
-
605
- showMessageUnderElement( '#date_booking' + bk_type, message_verif_selectdts, '');
606
- makeScroll('#calendar_booking' + bk_type); // Scroll to the calendar
607
-
608
- //alert(message_verif_selectdts);
609
- return;
610
- }
611
-
612
- } else {
613
- //alert(message_verif_selectdts);
614
- showMessageUnderElement( '#date_booking' + bk_type, message_verif_selectdts, '');
615
- makeScroll('#calendar_booking' + bk_type); // Scroll to the calendar
616
  return;
617
  }
618
  }
619
-
620
-
621
  var count = submit_form.elements.length;
622
  var formdata = '';
623
  var inp_value;
@@ -660,7 +677,7 @@ function mybooking_submit( submit_form , bk_type, wpdev_active_locale){
660
  // We need to check it here, because radio have the several otions with same name and type and otherwsie we will save several options with selcted and empty values.
661
  if ( //FixIn: 7.0.1.62
662
  ( element.className.indexOf('wpdev-validates-as-required') !== -1 )
663
- && ( jQuery( element ).is( ':visible' ) ) //FixIn: 7.2.1.12.2 // Its prevent of saving hints, and some other hidden element
664
  && ( ! jQuery(':radio[name="'+element.name+'"]', submit_form).is(":checked") ) ) {
665
  showErrorMessage( element , message_verif_requred_for_radio_box, false ); //FixIn: 8.5.1.3
666
  return;
@@ -852,7 +869,8 @@ function mybooking_submit( submit_form , bk_type, wpdev_active_locale){
852
  var captcha = document.getElementById('wpdev_captcha_challenge_' + bk_type);
853
 
854
  //Disable Submit button
855
- jQuery('#booking_form_div' + bk_type + ' input[type=button]').prop("disabled", true);
 
856
  if (captcha != null) form_submit_send( bk_type, formdata, captcha.value, document.getElementById('captcha_input' + bk_type).value ,wpdev_active_locale);
857
  else form_submit_send( bk_type, formdata, '', '' , wpdev_active_locale);
858
  return;
@@ -897,6 +915,15 @@ function form_submit_send( bk_type, formdata, captcha_chalange, user_captcha ,wp
897
  id_additional_str = document.getElementById('additional_calendars' + bk_type).value; //Loop have to be here based on , sign
898
  id_additional_arr = id_additional_str.split(',');
899
 
 
 
 
 
 
 
 
 
 
900
  for (var ia=0;ia<id_additional_arr.length;ia++) {
901
  formdata_additional_arr = formdata;
902
  formdata_additional = '';
@@ -920,8 +947,9 @@ function form_submit_send( bk_type, formdata, captcha_chalange, user_captcha ,wp
920
  if ( jQuery('#gateway_payment_forms' + bk_type).length > 0 ) { // If Payment form for main booking resources is showing then append payment form for additional calendars.
921
  jQuery('#gateway_payment_forms' + bk_type).after('<div id="gateway_payment_forms'+id_additional+'"></div>');
922
  jQuery('#gateway_payment_forms' + bk_type).after('<div id="ajax_respond_insert'+id_additional+'" style="display:none;"></div>');
923
- send_ajax_submit( id_additional ,formdata_additional,captcha_chalange,user_captcha,is_send_emeils,my_booking_hash,my_booking_form ,wpdev_active_locale ); // Submit
924
  }
 
 
925
 
926
  // if (document.getElementById('date_booking' + id_additional).value != '' ) {
927
  // setUnavailableSelectedDays(id_additional); // Set selected days unavailable in this calendar
@@ -1258,7 +1286,10 @@ function wpbc_check_errors_in_booking_form( bk_type ) {
1258
  if ( ( 'date_booking' + bk_type ) == jQuery( el ).attr( 'name' ) ) {
1259
 
1260
  // Show Warning only if the calendar visible ( we are at step with calendar)
1261
- if ( ( jQuery( '#calendar_booking' + bk_type ).is( ':visible' ) ) && ( '' == jQuery( el ).val() ) ) { //FixIn: 8.4.4.5
 
 
 
1262
  showMessageUnderElement( '#date_booking' + bk_type, message_verif_selectdts, '' );
1263
  makeScroll('#calendar_booking' + bk_type); // Scroll to the calendar //FixIn: 8.5.1.3
1264
  is_error_in_field = true; // Error
@@ -1275,7 +1306,10 @@ function wpbc_check_errors_in_booking_form( bk_type ) {
1275
  // Checkboxes
1276
  if ( 'checkbox' == jQuery( el ).attr( 'type' ) ){
1277
 
1278
- if ( !jQuery( el ).is( ':checked' ) ){
 
 
 
1279
  showErrorMessage( el, message_verif_requred_for_check_box, is_error_in_field );
1280
  is_error_in_field = true; // Error
1281
  }
134
  }
135
 
136
  if (is_this_admin == false) {
137
+ var my_test_date = new Date( wpdev_bk_today[0],(wpdev_bk_today[1]-1), wpdev_bk_today[2] ,0,0,0 ); //Get today
138
  if ( (days_between( date, my_test_date)) < block_some_dates_from_today )
139
  return [false, 'cal4date-' + class_day +' date_user_unavailable'];
140
 
560
  }, 1000);
561
  } else { // Message
562
  document.getElementById('submiting' + bk_type).innerHTML = '<div class=\"submiting_content wpdev-help-message alert alert-warning alert-success\" >' + new_booking_title + '</div>';
563
+
564
+ //FixIn: 8.5.2.26
565
+ if ( ! jQuery('#submiting' + bk_type ).is('visible') ) {
566
+ jQuery('#submiting' + bk_type ).closest( 'form.booking_form').before( jQuery('#submiting' + bk_type ) );
567
+ jQuery('#submiting' + bk_type ).show();
568
+ jQuery(".wpbc_submit_spinner").hide();
569
+ }
570
+
571
  makeScroll( '#submiting' + bk_type );
572
  jQuery('.submiting_content').fadeOut( new_booking_title_time );
573
  setTimeout( function () { location.reload( true ); }, parseInt( 1000 + new_booking_title_time ) ); //FixIn: 8.1.2.14
583
  }
584
 
585
 
586
+ /**
587
+ * Check ID of selected additional calendars
588
+ *
589
+ * @param int bk_type
590
+ * @returns array
591
+ */
592
+ function wpbc_get_arr_of_selected_additional_calendars( bk_type ){ //FixIn: 8.5.2.26
593
+
594
+ var selected_additionl_calendars = [];
595
+
596
+ // Checking according additional calendars
597
+ if ( document.getElementById( 'additional_calendars' + bk_type ) != null ){
598
+
599
+ var id_additional_str = document.getElementById( 'additional_calendars' + bk_type ).value;
600
+ var id_additional_arr = id_additional_str.split( ',' );
601
+
602
+ var is_all_additional_days_unselected = true;
603
+
604
+ for ( var ia = 0; ia < id_additional_arr.length; ia++ ){
605
+ if ( document.getElementById( 'date_booking' + id_additional_arr[ ia ] ).value != '' ){
606
+ selected_additionl_calendars.push( id_additional_arr[ ia ] );
607
+ }
608
+ }
609
+ }
610
+ return selected_additionl_calendars;
611
+ }
612
+
613
  ////////////////////////////////////////////////////////////////////////////
614
  // Submit Booking Data
615
  ////////////////////////////////////////////////////////////////////////////
617
  // Check fields at form and then send request
618
  function mybooking_submit( submit_form , bk_type, wpdev_active_locale){
619
 
620
+ //console.log( wpbc_get_arr_of_selected_additional_calendars( bk_type ) );
621
+
622
  //FixIn: 8.4.0.2
623
  var is_error = wpbc_check_errors_in_booking_form( bk_type );
624
  if ( is_error ) { return false; }
625
 
626
+ // Show message if no selected days in Calendar(s)
627
  if (document.getElementById('date_booking' + bk_type).value == '') {
628
 
629
+ var arr_of_selected_additional_calendars = wpbc_get_arr_of_selected_additional_calendars( bk_type ); //FixIn: 8.5.2.26
630
 
631
+ if ( arr_of_selected_additional_calendars.length == 0 ) {
632
+ showMessageUnderElement( '#date_booking' + bk_type, message_verif_selectdts, '');
633
+ makeScroll('#calendar_booking' + bk_type); // Scroll to the calendar
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
634
  return;
635
  }
636
  }
637
+
 
638
  var count = submit_form.elements.length;
639
  var formdata = '';
640
  var inp_value;
677
  // We need to check it here, because radio have the several otions with same name and type and otherwsie we will save several options with selcted and empty values.
678
  if ( //FixIn: 7.0.1.62
679
  ( element.className.indexOf('wpdev-validates-as-required') !== -1 )
680
+ && ( jQuery( element ).is( ':visible' ) ) //FixIn: 7.2.1.12.2 // Its prevent of saving hints, and some other hidden element
681
  && ( ! jQuery(':radio[name="'+element.name+'"]', submit_form).is(":checked") ) ) {
682
  showErrorMessage( element , message_verif_requred_for_radio_box, false ); //FixIn: 8.5.1.3
683
  return;
869
  var captcha = document.getElementById('wpdev_captcha_challenge_' + bk_type);
870
 
871
  //Disable Submit button
872
+ jQuery('#booking_form_div' + bk_type + ' input[type="button"]').prop("disabled", true);
873
+ jQuery('#booking_form_div' + bk_type + ' button').prop("disabled", true); //FixIn: 8.5.2.7
874
  if (captcha != null) form_submit_send( bk_type, formdata, captcha.value, document.getElementById('captcha_input' + bk_type).value ,wpdev_active_locale);
875
  else form_submit_send( bk_type, formdata, '', '' , wpdev_active_locale);
876
  return;
915
  id_additional_str = document.getElementById('additional_calendars' + bk_type).value; //Loop have to be here based on , sign
916
  id_additional_arr = id_additional_str.split(',');
917
 
918
+ //FixIn: 8.5.2.26
919
+ if ( ! jQuery( '#booking_form_div' + bk_type ).is( ':visible' ) ) {
920
+ jQuery( '#booking_form_div' + bk_type ).after(
921
+ '<div class="wpbc_submit_spinner" style="height:20px;width:100%;text-align:center;margin:15px auto;"><img style="vertical-align:middle;box-shadow:none;width:14px;" src="'+wpdev_bk_plugin_url+'/assets/img/ajax-loader.gif"></div>'
922
+ );
923
+ }
924
+
925
+
926
+
927
  for (var ia=0;ia<id_additional_arr.length;ia++) {
928
  formdata_additional_arr = formdata;
929
  formdata_additional = '';
947
  if ( jQuery('#gateway_payment_forms' + bk_type).length > 0 ) { // If Payment form for main booking resources is showing then append payment form for additional calendars.
948
  jQuery('#gateway_payment_forms' + bk_type).after('<div id="gateway_payment_forms'+id_additional+'"></div>');
949
  jQuery('#gateway_payment_forms' + bk_type).after('<div id="ajax_respond_insert'+id_additional+'" style="display:none;"></div>');
 
950
  }
951
+ //FixIn: 8.5.2.17
952
+ send_ajax_submit( id_additional ,formdata_additional,captcha_chalange,user_captcha,is_send_emeils,my_booking_hash,my_booking_form ,wpdev_active_locale ); // Submit
953
 
954
  // if (document.getElementById('date_booking' + id_additional).value != '' ) {
955
  // setUnavailableSelectedDays(id_additional); // Set selected days unavailable in this calendar
1286
  if ( ( 'date_booking' + bk_type ) == jQuery( el ).attr( 'name' ) ) {
1287
 
1288
  // Show Warning only if the calendar visible ( we are at step with calendar)
1289
+ if (
1290
+ ( ( jQuery( '#calendar_booking' + bk_type ).is( ':visible' ) ) && ( '' == jQuery( el ).val() ) )
1291
+ && ( wpbc_get_arr_of_selected_additional_calendars( bk_type ).length == 0 ) //FixIn: 8.5.2.26
1292
+ ){ //FixIn: 8.4.4.5
1293
  showMessageUnderElement( '#date_booking' + bk_type, message_verif_selectdts, '' );
1294
  makeScroll('#calendar_booking' + bk_type); // Scroll to the calendar //FixIn: 8.5.1.3
1295
  is_error_in_field = true; // Error
1306
  // Checkboxes
1307
  if ( 'checkbox' == jQuery( el ).attr( 'type' ) ){
1308
 
1309
+ if (
1310
+ ( ! jQuery( el ).is( ':checked' ))
1311
+ && ( ! jQuery( ':checkbox[name="' + el.name + '"]', my_form ).is( ":checked" ) ) //FixIn: 8.5.2.12
1312
+ ){
1313
  showErrorMessage( el, message_verif_requred_for_check_box, is_error_in_field );
1314
  is_error_in_field = true; // Error
1315
  }
js/wpbc_times.js CHANGED
@@ -1258,7 +1258,7 @@ function wpbc_is_time_field_in_booking_form( resource_id, form_elements ){
1258
  var my_start_time_options = jQuery( start_time_fields + ' option,'+start_time_fields2 + ' option');
1259
 
1260
  if ( ( my_start_time_options.length > 0 )
1261
- && ( ( bk_days_selection_mode == 'single' ) || ( bk_days_selection_mode == 'multiple' ) )
1262
  ){ // Only if range selections exist and we are have single days selections
1263
  var removed_time_slots = is_time_slot_booked_for_this_time_array( bk_type, times_array, td_class, [ start_time_fields, start_time_fields2 ] );
1264
  var some_exist_time_slots = [];
1258
  var my_start_time_options = jQuery( start_time_fields + ' option,'+start_time_fields2 + ' option');
1259
 
1260
  if ( ( my_start_time_options.length > 0 )
1261
+ && ( ( bk_days_selection_mode == 'single' ) /*|| ( bk_days_selection_mode == 'multiple' )*/ ) //FixIn: 8.5.2.4
1262
  ){ // Only if range selections exist and we are have single days selections
1263
  var removed_time_slots = is_time_slot_booked_for_this_time_array( bk_type, times_array, td_class, [ start_time_fields, start_time_fields2 ] );
1264
  var some_exist_time_slots = [];
languages/booking-ar_SA.mo CHANGED
Binary file
languages/booking-be_BY.mo CHANGED
Binary file
languages/booking-bg_BG.mo CHANGED
Binary file
languages/booking-ca.mo CHANGED
Binary file
languages/booking-cs_CZ.mo CHANGED
Binary file
languages/booking-da_DK.mo CHANGED
Binary file
languages/booking-de_DE.mo CHANGED
Binary file
languages/booking-el.mo CHANGED
Binary file
languages/booking-es_ES.mo CHANGED
Binary file
languages/booking-fi.mo CHANGED
Binary file
languages/booking-fr_FR.mo CHANGED
Binary file
languages/booking-gl_ES.mo CHANGED
Binary file
languages/booking-he_IL.mo CHANGED
Binary file
languages/booking-hr.mo CHANGED
Binary file
languages/booking-hu_HU.mo CHANGED
Binary file
languages/booking-it_IT.mo CHANGED
Binary file
languages/booking-nb_NO.mo CHANGED
Binary file
languages/booking-nl_NL.mo CHANGED
Binary file
languages/booking-pl_PL.mo CHANGED
Binary file
languages/booking-pt_BR.mo CHANGED
Binary file
languages/booking-pt_PT.mo CHANGED
Binary file
languages/booking-ro_RO.mo CHANGED
Binary file
languages/booking-ru_RU.mo CHANGED
Binary file
languages/booking-sk_SK.mo CHANGED
Binary file
languages/booking-sl_SI.mo CHANGED
Binary file
languages/booking-sv_SE.mo CHANGED
Binary file
languages/booking-th_TH.mo CHANGED
Binary file
languages/booking-tr_TR.mo CHANGED
Binary file
languages/booking-uk_UK.mo CHANGED
Binary file
languages/booking-zh_CN.mo CHANGED
Binary file
languages/booking-zh_TW.mo CHANGED
Binary file
languages/booking.pot CHANGED
@@ -3,7 +3,7 @@ msgid ""
3
  msgstr ""
4
  "Project-Id-Version: booking\n"
5
  "Report-Msgid-Bugs-To: \n"
6
- "POT-Creation-Date: 2019-04-22 12:32+0300\n"
7
  "PO-Revision-Date: \n"
8
  "Last-Translator: wpdevelop <info@wpdevelop.com>\n"
9
  "Language-Team: wpdevelop <info@wpbookingcalendar.com>\n"
@@ -35,7 +35,7 @@ msgid "year(s)"
35
  msgstr ""
36
 
37
  #: core/admin/api-settings.php:94 core/admin/wpbc-toolbar-tiny.php:460
38
- #: core/lib/wpbc_all_translations.php:455 js/wpbc-gutenberg.js:743
39
  msgid "Number of months to scroll"
40
  msgstr ""
41
 
@@ -53,57 +53,57 @@ msgstr ""
53
 
54
  #: core/admin/api-settings.php:109 core/admin/api-settings.php:192
55
  #: core/admin/wpbc-class-timeline.php:82 core/lib/wpbc_all_translations.php:9
56
- #: inc/_bm/admin/page-seasons.php:991 inc/_bs/admin/api-settings-s.php:108
57
- #: inc/_bs/admin/api-settings-s.php:241 inc/_ps/form/class-wpbc-form-help.php:451
58
- #: inc/_ps/form/class-wpbc-form-help.php:598
59
  msgid "Sunday"
60
  msgstr ""
61
 
62
  #: core/admin/api-settings.php:110 core/admin/api-settings.php:195
63
  #: core/admin/wpbc-class-timeline.php:76 core/lib/wpbc_all_translations.php:10
64
- #: inc/_bm/admin/page-seasons.php:992 inc/_bs/admin/api-settings-s.php:109
65
- #: inc/_bs/admin/api-settings-s.php:242 inc/_ps/form/class-wpbc-form-help.php:452
66
- #: inc/_ps/form/class-wpbc-form-help.php:599
67
  msgid "Monday"
68
  msgstr ""
69
 
70
  #: core/admin/api-settings.php:111 core/admin/api-settings.php:198
71
  #: core/admin/wpbc-class-timeline.php:77 core/lib/wpbc_all_translations.php:11
72
- #: inc/_bm/admin/page-seasons.php:993 inc/_bs/admin/api-settings-s.php:110
73
- #: inc/_bs/admin/api-settings-s.php:243 inc/_ps/form/class-wpbc-form-help.php:453
74
- #: inc/_ps/form/class-wpbc-form-help.php:600
75
  msgid "Tuesday"
76
  msgstr ""
77
 
78
  #: core/admin/api-settings.php:112 core/admin/api-settings.php:201
79
  #: core/admin/wpbc-class-timeline.php:78 core/lib/wpbc_all_translations.php:12
80
- #: inc/_bm/admin/page-seasons.php:994 inc/_bs/admin/api-settings-s.php:111
81
- #: inc/_bs/admin/api-settings-s.php:244 inc/_ps/form/class-wpbc-form-help.php:454
82
- #: inc/_ps/form/class-wpbc-form-help.php:601
83
  msgid "Wednesday"
84
  msgstr ""
85
 
86
  #: core/admin/api-settings.php:113 core/admin/api-settings.php:204
87
  #: core/admin/wpbc-class-timeline.php:79 core/lib/wpbc_all_translations.php:13
88
- #: inc/_bm/admin/page-seasons.php:995 inc/_bs/admin/api-settings-s.php:112
89
- #: inc/_bs/admin/api-settings-s.php:245 inc/_ps/form/class-wpbc-form-help.php:455
90
- #: inc/_ps/form/class-wpbc-form-help.php:602
91
  msgid "Thursday"
92
  msgstr ""
93
 
94
  #: core/admin/api-settings.php:114 core/admin/api-settings.php:207
95
  #: core/admin/wpbc-class-timeline.php:80 core/lib/wpbc_all_translations.php:14
96
- #: inc/_bm/admin/page-seasons.php:996 inc/_bs/admin/api-settings-s.php:113
97
- #: inc/_bs/admin/api-settings-s.php:246 inc/_ps/form/class-wpbc-form-help.php:456
98
- #: inc/_ps/form/class-wpbc-form-help.php:603
99
  msgid "Friday"
100
  msgstr ""
101
 
102
  #: core/admin/api-settings.php:115 core/admin/api-settings.php:210
103
  #: core/admin/wpbc-class-timeline.php:81 core/lib/wpbc_all_translations.php:15
104
- #: inc/_bm/admin/page-seasons.php:997 inc/_bs/admin/api-settings-s.php:114
105
- #: inc/_bs/admin/api-settings-s.php:247 inc/_ps/form/class-wpbc-form-help.php:457
106
- #: inc/_ps/form/class-wpbc-form-help.php:604
107
  msgid "Saturday"
108
  msgstr ""
109
 
@@ -131,11 +131,13 @@ msgid "Show partially booked days with same background as in legend item"
131
  msgstr ""
132
 
133
  #: core/admin/api-settings.php:164 core/admin/api-settings.php:314 core/admin/api-settings.php:474
134
- #: core/admin/api-settings.php:509 core/admin/api-settings.php:817
135
- #: core/admin/page-ics-export.php:467 core/admin/wpbc-class-timeline.php:2331
136
- #: core/lib/wpbc_all_translations.php:21 inc/_bl/admin/api-settings-l.php:179
 
137
  #: inc/_bl/admin/api-settings-l.php:185 inc/_bl/admin/api-settings-l.php:216
138
- #: inc/gateways/page-gateways.php:177 js/wpbc-gutenberg.js:964
 
139
  msgid "Note"
140
  msgstr ""
141
 
@@ -160,7 +162,7 @@ msgstr ""
160
  msgid "Select number of unavailable days in calendar start from today."
161
  msgstr ""
162
 
163
- #: core/admin/api-settings.php:275 core/lib/wpbc_all_translations.php:27 inc/_ps/lib_p.php:264
164
  msgid "Simple"
165
  msgstr ""
166
 
@@ -168,270 +170,285 @@ msgstr ""
168
  #: core/admin/wpbc-toolbar-tiny.php:698 core/admin/wpbc-toolbar-tiny.php:1199
169
  #: core/admin/wpbc-toolbar-tiny.php:1615 core/lib/wpbc_all_translations.php:28
170
  #: inc/_bm/m-toolbar.php:29 inc/_bm/m-toolbar.php:113 inc/_bm/m-toolbar.php:392
171
- #: inc/_ps/lib_p.php:264 js/wpbc-gutenberg.js:532
172
  msgid "Booking Form"
173
  msgstr ""
174
 
175
- #: core/admin/api-settings.php:276 core/lib/wpbc_all_translations.php:29 inc/_ps/lib_p.php:260
176
  msgid ""
177
  "Check the box, if you want to use simple booking form customization from Free plugin version at "
178
  "Settings - Form page."
179
  msgstr ""
180
 
181
- #: core/admin/api-settings.php:284
182
  msgid "Syntax highlighter"
183
  msgstr ""
184
 
185
  #: core/admin/api-settings.php:285
186
- msgid ""
187
- "Check the box, if you want to use syntax highlighter during customization booking form at "
188
- "Settings - Form page."
189
  msgstr ""
190
 
191
- #: core/admin/api-settings.php:296 core/lib/wpbc_all_translations.php:30
192
  #: inc/_ps/form/class-wpbc-form-help.php:194
193
  msgid "CAPTCHA"
194
  msgstr ""
195
 
196
- #: core/admin/api-settings.php:297 core/lib/wpbc_all_translations.php:31
197
  msgid "Check the box to activate CAPTCHA inside the booking form."
198
  msgstr ""
199
 
200
- #: core/admin/api-settings.php:304 core/lib/wpbc_all_translations.php:32
201
  msgid "Auto-fill fields"
202
  msgstr ""
203
 
204
- #: core/admin/api-settings.php:305 core/lib/wpbc_all_translations.php:33
205
  msgid "Check the box to activate auto-fill form fields for logged in users."
206
  msgstr ""
207
 
208
- #: core/admin/api-settings.php:312 core/lib/wpbc_all_translations.php:34
209
  msgid "Use CSS BootStrap"
210
  msgstr ""
211
 
212
- #: core/admin/api-settings.php:313 core/lib/wpbc_all_translations.php:35
213
  msgid "Using BootStrap CSS for the form fields"
214
  msgstr ""
215
 
216
- #: core/admin/api-settings.php:314 core/lib/wpbc_all_translations.php:36
217
  msgid "You must not deactivate loading BootStrap files at advanced section of these settings!"
218
  msgstr ""
219
 
220
- #: core/admin/api-settings.php:324 core/lib/wpbc_all_translations.php:37
221
  msgid "Show legend below calendar"
222
  msgstr ""
223
 
224
- #: core/admin/api-settings.php:325 core/lib/wpbc_all_translations.php:38
225
  msgid "Check this box to display a legend of dates below the booking calendar."
226
  msgstr ""
227
 
228
- #: core/admin/api-settings.php:337 core/lib/wpbc_all_translations.php:39
229
  msgid "Available item"
230
  msgstr ""
231
 
232
- #: core/admin/api-settings.php:351 core/lib/wpbc_all_translations.php:40
233
- #: core/wpbc-activation.php:1026
234
  msgid "Available"
235
  msgstr ""
236
 
237
- #: core/admin/api-settings.php:360 core/lib/wpbc_all_translations.php:41
238
  #, php-format
239
  msgid "Activate and type your %stitle of available%s item in legend"
240
  msgstr ""
241
 
242
- #: core/admin/api-settings.php:374 core/lib/wpbc_all_translations.php:42
243
  msgid "Pending item"
244
  msgstr ""
245
 
246
  #: core/admin/api-settings.php:388 core/admin/page-email-deny.php:558
247
  #: core/admin/wpbc-class-listing.php:329 core/admin/wpbc-class-listing.php:427
248
- #: core/admin/wpbc-toolbars.php:545 core/admin/wpbc-toolbars.php:960
249
- #: core/lib/wpbc_all_translations.php:43 core/wpbc-activation.php:1030 inc/_bs/lib_s.php:326
250
- #: inc/_ps/personal.php:353 inc/_ps/wpbc-print.php:119
 
251
  msgid "Pending"
252
  msgstr ""
253
 
254
- #: core/admin/api-settings.php:397 core/lib/wpbc_all_translations.php:44
255
  #, php-format
256
  msgid "Activate and type your %stitle of pending%s item in legend"
257
  msgstr ""
258
 
259
- #: core/admin/api-settings.php:411 core/lib/wpbc_all_translations.php:45
260
  msgid "Approved item"
261
  msgstr ""
262
 
263
- #: core/admin/api-settings.php:425 core/lib/wpbc_all_translations.php:46
264
- #: core/wpbc-activation.php:1034
265
  msgid "Booked"
266
  msgstr ""
267
 
268
- #: core/admin/api-settings.php:434 core/lib/wpbc_all_translations.php:47
269
  #, php-format
270
  msgid "Activate and type your %stitle of approved%s item in legend"
271
  msgstr ""
272
 
273
- #: core/admin/api-settings.php:449 core/lib/wpbc_all_translations.php:48
274
  msgid "Partially booked item"
275
  msgstr ""
276
 
277
- #: core/admin/api-settings.php:463 core/lib/wpbc_all_translations.php:49
278
- #: core/wpbc-activation.php:1040
279
  msgid "Partially booked"
280
  msgstr ""
281
 
282
- #: core/admin/api-settings.php:472 core/lib/wpbc_all_translations.php:50
283
  #, php-format
284
  msgid "Activate and type your %stitle of partially booked%s item in legend"
285
  msgstr ""
286
 
287
- #: core/admin/api-settings.php:497 core/lib/wpbc_all_translations.php:51
288
  msgid "Show date number in legend"
289
  msgstr ""
290
 
291
- #: core/admin/api-settings.php:498 core/lib/wpbc_all_translations.php:52
292
  msgid "Check this box to display today date number in legend cells. "
293
  msgstr ""
294
 
295
- #: core/admin/api-settings.php:506 core/lib/wpbc_all_translations.php:53
296
  msgid "Show \"Thank You\" message"
297
  msgstr ""
298
 
299
- #: core/admin/api-settings.php:507 core/lib/wpbc_all_translations.php:54
300
  msgid "Redirect visitor to a new \"Thank You\" page"
301
  msgstr ""
302
 
303
- #: core/admin/api-settings.php:509 core/lib/wpbc_all_translations.php:55
304
  msgid "This action will have no effect, if the payment form(s) is active!"
305
  msgstr ""
306
 
307
- #: core/admin/api-settings.php:514 core/lib/wpbc_all_translations.php:56
308
  msgid "Action after booking is done"
309
  msgstr ""
310
 
311
- #: core/admin/api-settings.php:523 core/lib/wpbc_all_translations.php:57
312
- #: core/wpbc-activation.php:867
313
  #, php-format
314
  msgid ""
315
  "Thank you for your online booking. %s We will send confirmation of your booking as soon as "
316
  "possible."
317
  msgstr ""
318
 
319
- #: core/admin/api-settings.php:524 core/lib/wpbc_all_translations.php:58
320
  msgid "Message title"
321
  msgstr ""
322
 
323
- #: core/admin/api-settings.php:525 core/lib/wpbc_all_translations.php:59
324
  #, php-format
325
  msgid "Type title of message %safter booking has done by user%s"
326
  msgstr ""
327
 
328
- #: core/admin/api-settings.php:536 core/lib/wpbc_all_translations.php:60
329
  msgid "Time of message showing"
330
  msgstr ""
331
 
332
- #: core/admin/api-settings.php:537 core/lib/wpbc_all_translations.php:61
333
  msgid "Set duration of time (milliseconds) to show this message"
334
  msgstr ""
335
 
336
- #: core/admin/api-settings.php:564 core/lib/wpbc_all_translations.php:62
337
  msgid "URL of \"thank you\" page"
338
  msgstr ""
339
 
340
- #: core/admin/api-settings.php:580 core/lib/wpbc_all_translations.php:63
341
  #, php-format
342
  msgid "Type URL of %s\"Thank You\" page%s"
343
  msgstr ""
344
 
345
- #: core/admin/api-settings.php:592 core/lib/wpbc_all_translations.php:64 core/wpbc.php:137
346
  #: core/wpbc.php:138
347
  msgid "Bookings Listing"
348
  msgstr ""
349
 
350
- #: core/admin/api-settings.php:593 core/admin/page-timeline.php:45 core/admin/page-timeline.php:46
351
- #: core/admin/page-timeline.php:47 core/admin/wpbc-toolbars.php:478
352
- #: core/lib/wpbc_all_translations.php:65 core/wpbc-functions.php:1872
353
  msgid "Calendar Overview"
354
  msgstr ""
355
 
356
- #: core/admin/api-settings.php:598 core/lib/wpbc_all_translations.php:66
357
  msgid "Default booking admin page"
358
  msgstr ""
359
 
360
- #: core/admin/api-settings.php:599 core/lib/wpbc_all_translations.php:67
361
  msgid "Select your default view mode of bookings at the booking listing page"
362
  msgstr ""
363
 
364
- #: core/admin/api-settings.php:613 core/admin/wpbc-toolbar-tiny.php:393
365
- #: core/admin/wpbc-toolbars.php:1195 core/lib/wpbc_all_translations.php:68
366
- #: inc/_bl/admin/page-coupons.php:526
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
367
  msgid "Day"
368
  msgstr ""
369
 
370
- #: core/admin/api-settings.php:614 core/admin/wpbc-toolbar-tiny.php:394
371
- #: core/admin/wpbc-toolbars.php:1209 core/lib/wpbc_all_translations.php:69
 
372
  msgid "Week"
373
  msgstr ""
374
 
375
- #: core/admin/api-settings.php:615 core/admin/api-settings.php:622
376
- #: core/admin/wpbc-toolbar-tiny.php:396 core/admin/wpbc-toolbars.php:1144
377
- #: core/admin/wpbc-toolbars.php:1223 core/lib/wpbc_all_translations.php:70
378
  #: inc/_bl/admin/page-coupons.php:525
379
  msgid "Month"
380
  msgstr ""
381
 
382
- #: core/admin/api-settings.php:616 core/admin/wpbc-toolbar-tiny.php:398
383
- #: core/admin/wpbc-toolbars.php:1237 core/lib/wpbc_all_translations.php:71
384
  msgid "2 Months"
385
  msgstr ""
386
 
387
- #: core/admin/api-settings.php:617 core/admin/api-settings.php:623
388
- #: core/admin/wpbc-toolbar-tiny.php:400 core/admin/wpbc-toolbars.php:1158
389
- #: core/lib/wpbc_all_translations.php:72
390
  msgid "3 Months"
391
  msgstr ""
392
 
393
- #: core/admin/api-settings.php:618 core/admin/api-settings.php:624
394
- #: core/admin/wpbc-toolbar-tiny.php:401 core/admin/wpbc-toolbars.php:575
395
- #: core/admin/wpbc-toolbars.php:809 core/admin/wpbc-toolbars.php:1172
396
- #: core/lib/wpbc_all_translations.php:73 inc/_bl/admin/page-coupons.php:524
397
  msgid "Year"
398
  msgstr ""
399
 
400
- #: core/admin/api-settings.php:629 core/lib/wpbc_all_translations.php:74
401
  msgid "Default calendar view mode"
402
  msgstr ""
403
 
404
- #: core/admin/api-settings.php:630 core/lib/wpbc_all_translations.php:75
405
  msgid "Select your default calendar view mode at booking calendar overview page"
406
  msgstr ""
407
 
408
- #: core/admin/api-settings.php:640 core/lib/wpbc_all_translations.php:76
409
  msgid "Filter tab"
410
  msgstr ""
411
 
412
- #: core/admin/api-settings.php:641 core/lib/wpbc_all_translations.php:77
413
  msgid "Actions tab"
414
  msgstr ""
415
 
416
- #: core/admin/api-settings.php:646 core/lib/wpbc_all_translations.php:78
417
  msgid "Default toolbar tab"
418
  msgstr ""
419
 
420
- #: core/admin/api-settings.php:647 core/lib/wpbc_all_translations.php:79
421
  msgid "Select your default opened tab in toolbar at booking listing page"
422
  msgstr ""
423
 
424
- #: core/admin/api-settings.php:659 core/lib/wpbc_all_translations.php:80
425
  msgid "Bookings number per page"
426
  msgstr ""
427
 
428
- #: core/admin/api-settings.php:660 core/lib/wpbc_all_translations.php:81
429
  msgid "Select number of bookings per page in booking listing"
430
  msgstr ""
431
 
432
- #: core/admin/api-settings.php:667 core/admin/api-settings.php:668
433
- #: core/admin/wpbc-class-listing.php:122 core/admin/wpbc-toolbars.php:731
434
- #: core/admin/wpbc-toolbars.php:734 core/lib/wpbc_all_translations.php:82
435
  #: core/sync/wpbc-gcal-class.php:605 core/sync/wpbc-gcal-class.php:626
436
  #: inc/_bl/admin/page-coupons.php:495 inc/_bm/admin/page-availability.php:491
437
  #: inc/_bm/admin/page-availability.php:972 inc/_bm/admin/page-cost-rate.php:148
@@ -444,105 +461,105 @@ msgstr ""
444
  msgid "ID"
445
  msgstr ""
446
 
447
- #: core/admin/api-settings.php:667 core/admin/api-settings.php:669 core/admin/api-settings.php:673
448
- #: core/admin/api-settings.php:677 core/lib/wpbc_all_translations.php:83
449
- #: inc/_bl/admin/page-search.php:168 inc/_bl/admin/page-search.php:170
450
- #: inc/_bl/admin/page-search.php:172 inc/_bl/admin/page-search.php:174
451
- #: inc/_bl/admin/page-search.php:176
452
  msgid "ASC"
453
  msgstr ""
454
 
455
- #: core/admin/api-settings.php:668 core/admin/api-settings.php:670 core/admin/api-settings.php:674
456
- #: core/admin/api-settings.php:678 core/lib/wpbc_all_translations.php:84
457
- #: inc/_bl/admin/page-search.php:169 inc/_bl/admin/page-search.php:171
458
- #: inc/_bl/admin/page-search.php:173 inc/_bl/admin/page-search.php:175
459
- #: inc/_bl/admin/page-search.php:177
460
  msgid "DESC"
461
  msgstr ""
462
 
463
- #: core/admin/api-settings.php:669 core/admin/api-settings.php:670
464
- #: core/admin/wpbc-class-timeline.php:69 core/admin/wpbc-toolbars.php:584
465
- #: core/admin/wpbc-toolbars.php:646 core/admin/wpbc-toolbars.php:732
466
- #: core/admin/wpbc-toolbars.php:735 core/admin/wpbc-toolbars.php:851
467
- #: core/lib/wpbc_all_translations.php:85 core/sync/wpbc-gcal-class.php:608
468
- #: core/sync/wpbc-gcal-class.php:643 inc/_bs/lib_s.php:180 inc/_bs/lib_s.php:185
469
- #: inc/_ps/lib_p.php:125 inc/_ps/lib_p.php:129 inc/_ps/wpbc-form-templates.php:89
470
- #: inc/_ps/wpbc-form-templates.php:111 inc/_ps/wpbc-print.php:85
471
  msgid "Dates"
472
  msgstr ""
473
 
474
- #: core/admin/api-settings.php:673 core/admin/api-settings.php:674
475
- #: core/lib/wpbc_all_translations.php:86 inc/_bl/admin/page-search.php:822
476
  #: inc/_bm/admin/page-availability.php:876 inc/_bm/admin/page-cost-rate.php:106
477
  #: inc/_bm/admin/page-cost-valuation.php:134 inc/_bs/lib_s.php:181 inc/_bs/lib_s.php:186
478
  #: inc/_ps/lib_p.php:126 inc/_ps/lib_p.php:130
479
  msgid "Resource"
480
  msgstr ""
481
 
482
- #: core/admin/api-settings.php:677 core/admin/api-settings.php:678
483
- #: core/admin/wpbc-toolbar-tiny.php:1803 core/lib/wpbc_all_translations.php:87
484
  #: inc/_bs/admin/api-settings-s.php:924 inc/_bs/lib_s.php:139 inc/_bs/lib_s.php:182
485
  #: inc/_bs/lib_s.php:187 inc/_ps/wpbc-print.php:86
486
  msgid "Cost"
487
  msgstr ""
488
 
489
- #: core/admin/api-settings.php:683 core/lib/wpbc_all_translations.php:88
490
  msgid "Bookings default order"
491
  msgstr ""
492
 
493
- #: core/admin/api-settings.php:684 core/lib/wpbc_all_translations.php:89
494
  msgid "Select your default order of bookings in the booking listing"
495
  msgstr ""
496
 
497
- #: core/admin/api-settings.php:701 core/lib/wpbc_all_translations.php:90
498
  msgid "Date Format"
499
  msgstr ""
500
 
501
- #: core/admin/api-settings.php:706 core/lib/wpbc_all_translations.php:91
502
  msgid "F j, Y"
503
  msgstr ""
504
 
505
- #: core/admin/api-settings.php:709 core/admin/wpbc-toolbars.php:1435
506
- #: core/lib/wpbc_all_translations.php:92 inc/_bm/admin/api-settings-m.php:197
507
  #: inc/_bs/admin/api-settings-s.php:426 inc/_bs/lib_s.php:54
508
  msgid "Custom"
509
  msgstr ""
510
 
511
- #: core/admin/api-settings.php:735 core/lib/wpbc_all_translations.php:93
512
  #, php-format
513
  msgid ""
514
  "Type your date format for emails and the booking table. %sDocumentation on date formatting%s"
515
  msgstr ""
516
 
517
- #: core/admin/api-settings.php:748 core/lib/wpbc_all_translations.php:94
518
  msgid "Short days view"
519
  msgstr ""
520
 
521
- #: core/admin/api-settings.php:749 core/lib/wpbc_all_translations.php:95
522
  msgid "Wide days view"
523
  msgstr ""
524
 
525
- #: core/admin/api-settings.php:754 core/lib/wpbc_all_translations.php:96
526
  msgid "Dates view"
527
  msgstr ""
528
 
529
- #: core/admin/api-settings.php:755 core/lib/wpbc_all_translations.php:97
530
  msgid "Select the default view for dates on the booking tables"
531
  msgstr ""
532
 
533
- #: core/admin/api-settings.php:771 core/lib/wpbc_all_translations.php:98
534
  msgid "Show / hide hints"
535
  msgstr ""
536
 
537
- #: core/admin/api-settings.php:772 core/lib/wpbc_all_translations.php:99
538
  msgid "Check this box if you want to show help hints on the admin panel."
539
  msgstr ""
540
 
541
- #: core/admin/api-settings.php:792 core/lib/wpbc_all_translations.php:100
542
  msgid "Allow unlimited bookings per same day(s)"
543
  msgstr ""
544
 
545
- #: core/admin/api-settings.php:793 core/lib/wpbc_all_translations.php:101
546
  #, php-format
547
  msgid ""
548
  "Check this box, if you want to %sset any days as available%s in calendar. Your visitors will be "
@@ -550,148 +567,149 @@ msgid ""
550
  "date(s)%s of other visitors."
551
  msgstr ""
552
 
553
- #: core/admin/api-settings.php:803 core/lib/wpbc_all_translations.php:102
554
  #: inc/_bl/admin/api-settings-l.php:101
555
  msgid "Use pending days as available"
556
  msgstr ""
557
 
558
- #: core/admin/api-settings.php:804 core/lib/wpbc_all_translations.php:103
559
  #: inc/_bl/admin/api-settings-l.php:102
560
  msgid "Check this box if you want to show the pending days as available in calendars"
561
  msgstr ""
562
 
563
- #: core/admin/api-settings.php:815 core/lib/wpbc_all_translations.php:104
564
  msgid "Checking to prevent double booking, during submitting booking"
565
  msgstr ""
566
 
567
- #: core/admin/api-settings.php:816 core/lib/wpbc_all_translations.php:105
568
  #, php-format
569
  msgid ""
570
  "Check this box, if you want to %sre-check if the selected dates available during submitting "
571
  "booking%s."
572
  msgstr ""
573
 
574
- #: core/admin/api-settings.php:818 core/lib/wpbc_all_translations.php:106
575
  msgid ""
576
  "This feature useful to prevent double booking of the same date(s) or time(s), if several "
577
  "visitors try to book the same date(s) in same calendar during the same time."
578
  msgstr ""
579
 
580
- #: core/admin/api-settings.php:819 core/lib/wpbc_all_translations.php:107
581
  msgid "This feature does not work for booking resources with capacity higher than one."
582
  msgstr ""
583
 
584
- #: core/admin/api-settings.php:836 core/lib/wpbc_all_translations.php:108
585
  msgid "Show advanced settings of JavaScript loading"
586
  msgstr ""
587
 
588
- #: core/admin/api-settings.php:837 core/lib/wpbc_all_translations.php:109
589
  msgid "Hide advanced settings of JavaScript loading"
590
  msgstr ""
591
 
592
- #: core/admin/api-settings.php:845 core/lib/wpbc_all_translations.php:110
593
  msgid "Disable Bootstrap loading on Front-End"
594
  msgstr ""
595
 
596
- #: core/admin/api-settings.php:846 core/admin/api-settings.php:855
597
- #: core/lib/wpbc_all_translations.php:111
598
  msgid ""
599
  " If your theme or some other plugin is load the BootStrap JavaScripts, you can disable loading "
600
  "of this script by this plugin."
601
  msgstr ""
602
 
603
- #: core/admin/api-settings.php:854 core/lib/wpbc_all_translations.php:112
604
  msgid "Disable Bootstrap loading on Back-End"
605
  msgstr ""
606
 
607
- #: core/admin/api-settings.php:864 core/lib/wpbc_all_translations.php:113
608
  msgid "Load JS and CSS files only on specific pages"
609
  msgstr ""
610
 
611
- #: core/admin/api-settings.php:865 core/lib/wpbc_all_translations.php:114
612
  msgid "Activate loading of CSS and JavaScript files of plugin only at specific pages."
613
  msgstr ""
614
 
615
- #: core/admin/api-settings.php:875 core/lib/wpbc_all_translations.php:115
616
  msgid "Relative URLs of pages, where to load plugin CSS and JS files"
617
  msgstr ""
618
 
619
- #: core/admin/api-settings.php:876 core/lib/wpbc_all_translations.php:116
620
  #, php-format
621
  msgid ""
622
  "Enter relative URLs of pages, where you have Booking Calendar elements (booking forms or "
623
  "availability calendars). Please enter one URL per line. Example: %s"
624
  msgstr ""
625
 
626
- #: core/admin/api-settings.php:890 core/lib/wpbc_all_translations.php:117
627
  msgid "Show system debugging log for beta features"
628
  msgstr ""
629
 
630
- #: core/admin/api-settings.php:891 core/lib/wpbc_all_translations.php:118
631
  msgid "Activate this option only for testing beta features"
632
  msgstr ""
633
 
634
- #: core/admin/api-settings.php:907 core/lib/wpbc_all_translations.php:119
635
  msgid "Show settings of powered by notice"
636
  msgstr ""
637
 
638
- #: core/admin/api-settings.php:908 core/lib/wpbc_all_translations.php:120
639
  msgid "Hide settings of powered by notice"
640
  msgstr ""
641
 
642
- #: core/admin/api-settings.php:915 core/lib/wpbc_all_translations.php:121
643
  msgid "Powered by notice"
644
  msgstr ""
645
 
646
- #: core/admin/api-settings.php:916 core/lib/wpbc_all_translations.php:122
647
  msgid " Turn On/Off powered by \"Booking Calendar\" notice under the calendar."
648
  msgstr ""
649
 
650
- #: core/admin/api-settings.php:924 core/lib/wpbc_all_translations.php:123
651
  msgid "Help and info notices"
652
  msgstr ""
653
 
654
- #: core/admin/api-settings.php:925 core/lib/wpbc_all_translations.php:124
655
  msgid " Turn On/Off version notice and help info links at booking admin panel."
656
  msgstr ""
657
 
658
- #: core/admin/api-settings.php:953 core/lib/wpbc_all_translations.php:125
659
  msgid "Plugin menu position"
660
  msgstr ""
661
 
662
- #: core/admin/api-settings.php:956 core/lib/wpbc_all_translations.php:126
663
  msgid "Top"
664
  msgstr ""
665
 
666
- #: core/admin/api-settings.php:957 core/lib/wpbc_all_translations.php:127
667
  msgid "Middle"
668
  msgstr ""
669
 
670
- #: core/admin/api-settings.php:958 core/lib/wpbc_all_translations.php:128
671
  msgid "Bottom"
672
  msgstr ""
673
 
674
- #: core/admin/api-settings.php:969 core/lib/wpbc_all_translations.php:129
675
  msgid "User permissions for plugin menu pages"
676
  msgstr ""
677
 
678
- #: core/admin/api-settings.php:984 core/admin/wpbc-class-timeline.php:70
679
- #: core/admin/wpbc-toolbars.php:552 core/admin/wpbc-toolbars.php:767
680
- #: core/lib/wpbc_all_translations.php:130 core/wpbc.php:136
 
681
  msgid "Bookings"
682
  msgstr ""
683
 
684
- #: core/admin/api-settings.php:993 core/admin/page-new.php:33 core/admin/page-new.php:34
685
- #: core/admin/page-new.php:35 core/admin/wpbc-toolbars.php:1798
686
- #: core/lib/wpbc_all_translations.php:131 core/wpbc-functions.php:1902 core/wpbc.php:165
687
  #: core/wpbc.php:166 core/wpbc.php:167
688
  msgid "Add booking"
689
  msgstr ""
690
 
691
- #: core/admin/api-settings.php:1003 core/admin/page-import-gcal.php:491
692
- #: core/admin/wpbc-class-timeline.php:68 core/lib/wpbc_all_translations.php:132
693
- #: core/wpbc-functions.php:1912 core/wpbc.php:176 core/wpbc.php:178
694
- #: inc/_bl/admin/page-coupons.php:540 inc/_bl/admin/page-coupons.php:1355
695
  #: inc/_bm/admin/page-availability.php:875 inc/_bm/admin/page-cost-rate.php:105
696
  #: inc/_bm/admin/page-cost-valuation.php:133 inc/_mu/admin/page-users.php:446
697
  #: inc/_ps/admin/br-table-export-feeds.php:172 inc/_ps/admin/br-table-import-gcal-p.php:144
@@ -699,47 +717,47 @@ msgstr ""
699
  msgid "Resources"
700
  msgstr ""
701
 
702
- #: core/admin/api-settings.php:1012 core/lib/wpbc_all_translations.php:133
703
  #: core/wpbc-functions.php:1967 core/wpbc.php:187 core/wpbc.php:189 core/wpbc.php:396
704
  #: inc/_bl/admin/page-coupons.php:47 inc/_bm/admin/page-seasons.php:47
705
  msgid "Settings"
706
  msgstr ""
707
 
708
- #: core/admin/api-settings.php:1013 core/lib/wpbc_all_translations.php:134
709
  msgid "Select user access level for the menu pages of plugin"
710
  msgstr ""
711
 
712
- #: core/admin/api-settings.php:1024 core/lib/wpbc_all_translations.php:135 core/wpbc.php:204
713
  msgid "Premium"
714
  msgstr ""
715
 
716
- #: core/admin/api-settings.php:1025 core/lib/wpbc_all_translations.php:136
717
  msgid "Show / hide menu"
718
  msgstr ""
719
 
720
- #: core/admin/api-settings.php:1028 core/admin/wpbc-toolbar-tiny.php:591
721
- #: core/admin/wpbc-toolbar-tiny.php:1810 core/admin/wpbc-toolbars.php:786
722
- #: core/lib/wpbc_all_translations.php:137 core/lib/wpdev-booking-widget.php:104
723
  #: js/wpbc-gutenberg.js:1264
724
  msgid "Show"
725
  msgstr ""
726
 
727
- #: core/admin/api-settings.php:1029 core/class/wpbc-class-notices.php:104
728
- #: core/lib/wpbc_all_translations.php:138 core/sync/wpbc-gcal-class.php:669
729
  #: core/wpbc-functions.php:2371
730
  msgid "Hide"
731
  msgstr ""
732
 
733
- #: core/admin/api-settings.php:1046 core/lib/wpbc_all_translations.php:139
734
  msgid "Delete booking data, when plugin deactivated"
735
  msgstr ""
736
 
737
- #: core/admin/api-settings.php:1047 core/lib/wpbc_all_translations.php:140
738
  msgid "Check this box to delete all booking data when you uninstal this plugin."
739
  msgstr ""
740
 
741
- #: core/admin/api-settings.php:1073 core/admin/page-form-free.php:969
742
- #: core/lib/wpbc_all_translations.php:141 core/sync/wpbc-gcal-class.php:439
743
  #: core/sync/wpbc-gcal-class.php:607 core/sync/wpbc-gcal-class.php:633
744
  #: inc/_bl/admin/api-settings-l.php:368 inc/_bm/admin/page-availability.php:990
745
  #: inc/_bm/admin/page-cost-rate.php:176 inc/_bm/admin/page-seasons.php:519
@@ -747,70 +765,70 @@ msgstr ""
747
  msgid "Info"
748
  msgstr ""
749
 
750
- #: core/admin/api-settings.php:1107 core/admin/page-settings.php:282
751
- #: core/lib/wpbc_all_translations.php:142
752
  msgid "Restore all dismissed windows"
753
  msgstr ""
754
 
755
- #: core/admin/api-settings.php:1231 core/admin/api-settings.php:1262
756
- #: core/admin/api-settings.php:1294 core/admin/api-settings.php:1307
757
- #: core/admin/api-settings.php:1340 core/lib/wpbc_all_translations.php:143
758
- #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:543
759
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:412 inc/gateways/page-gateways.php:896
760
  #: inc/gateways/paypal/wpbc-gw-paypal.php:640 inc/gateways/sage/wpbc-gw-sage.php:591
761
- #: inc/gateways/stripe/wpbc-gw-stripe.php:721
762
  msgid "Warning"
763
  msgstr ""
764
 
765
- #: core/admin/api-settings.php:1232 core/lib/wpbc_all_translations.php:144
766
  msgid ""
767
  "You allow unlimited number of bookings per same dates, its can be a reason of double bookings on "
768
  "the same date. Do you really want to do this?"
769
  msgstr ""
770
 
771
- #: core/admin/api-settings.php:1263 core/lib/wpbc_all_translations.php:145
772
  msgid "This feature can impact to speed of submitting booking. Do you really want to do this?"
773
  msgstr ""
774
 
775
- #: core/admin/api-settings.php:1295 core/admin/api-settings.php:1308
776
- #: core/lib/wpbc_all_translations.php:146
777
  msgid ""
778
  "You are need to be sure what you are doing. You are disable of loading some JavaScripts Do you "
779
  "really want to do this?"
780
  msgstr ""
781
 
782
- #: core/admin/api-settings.php:1341 core/lib/wpbc_all_translations.php:147
783
  msgid ""
784
  "If you check this option, all booking data will be deleted when you uninstall this plugin. Do "
785
  "you really want to do this?"
786
  msgstr ""
787
 
788
  #: core/admin/page-bookings.php:45 core/admin/page-bookings.php:46 core/admin/page-bookings.php:47
789
- #: core/admin/wpbc-toolbars.php:463 core/lib/wpbc_all_translations.php:148
790
- #: core/wpbc-functions.php:1880
791
  msgid "Booking Listing"
792
  msgstr ""
793
 
794
  #: core/admin/page-email-approved.php:177 core/admin/page-email-deleted.php:178
795
  #: core/admin/page-email-deny.php:178 core/admin/page-email-new-admin.php:176
796
  #: core/admin/page-email-new-visitor.php:176 core/admin/page-email-trash.php:178
797
- #: core/lib/wpbc_all_translations.php:149 inc/_bm/admin/page-cost-deposit.php:134
798
  #: inc/_bm/admin/page-cost-early-late-booking.php:138
799
  #: inc/_bm/admin/page-cost-early-late-booking.php:339 inc/_bs/admin/page-email-payment.php:179
800
- #: inc/_ps/admin/page-email-edit.php:178 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:276
801
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:218
802
  #: inc/gateways/ideal/wpbc-gw-ideal.php:377 inc/gateways/ipay88/wpbc-gw-ipay88.php:254
803
  #: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:146 inc/gateways/paypal/wpbc-gw-paypal.php:343
804
  #: inc/gateways/paypal/wpbc-gw-paypal.php:681 inc/gateways/paypal/wpbc-gw-paypal.php:704
805
  #: inc/gateways/paypal/wpbc-gw-paypal.php:727 inc/gateways/sage/wpbc-gw-sage.php:384
806
- #: inc/gateways/stripe/wpbc-gw-stripe.php:349
807
  msgid "Enable / Disable"
808
  msgstr ""
809
 
810
  #: core/admin/page-email-approved.php:178 core/admin/page-email-deleted.php:179
811
  #: core/admin/page-email-deny.php:179 core/admin/page-email-new-admin.php:177
812
  #: core/admin/page-email-new-visitor.php:177 core/admin/page-email-trash.php:179
813
- #: core/lib/wpbc_all_translations.php:150 inc/_bs/admin/page-email-payment.php:180
814
  #: inc/_ps/admin/page-email-edit.php:179
815
  msgid "Enable this email notification"
816
  msgstr ""
@@ -819,7 +837,7 @@ msgstr ""
819
  #: core/admin/page-email-deleted.php:190 core/admin/page-email-deleted.php:205
820
  #: core/admin/page-email-deny.php:190 core/admin/page-email-deny.php:207
821
  #: core/admin/page-email-trash.php:190 core/admin/page-email-trash.php:205
822
- #: core/lib/wpbc_all_translations.php:151 inc/_bs/admin/page-email-payment.php:191
823
  #: inc/_bs/admin/page-email-payment.php:206 inc/_ps/admin/page-email-edit.php:190
824
  #: inc/_ps/admin/page-email-edit.php:205
825
  msgid "Copy(ies)"
@@ -827,14 +845,14 @@ msgstr ""
827
 
828
  #: core/admin/page-email-approved.php:190 core/admin/page-email-deleted.php:191
829
  #: core/admin/page-email-deny.php:191 core/admin/page-email-trash.php:191
830
- #: core/lib/wpbc_all_translations.php:152 inc/_bs/admin/page-email-payment.php:192
831
  #: inc/_ps/admin/page-email-edit.php:191
832
  msgid "Enable / disable sending email(s) to additional addresses"
833
  msgstr ""
834
 
835
  #: core/admin/page-email-approved.php:205 core/admin/page-email-deleted.php:205
836
  #: core/admin/page-email-deny.php:207 core/admin/page-email-new-admin.php:192
837
- #: core/admin/page-email-trash.php:205 core/lib/wpbc_all_translations.php:153
838
  #: inc/_bm/admin/page-cost-valuation.php:275 inc/_bm/admin/page-cost-valuation.php:278
839
  #: inc/_bs/admin/page-email-payment.php:206 inc/_ps/admin/page-email-edit.php:205
840
  msgid "To"
@@ -845,7 +863,7 @@ msgstr ""
845
  #: core/admin/page-email-deny.php:217 core/admin/page-email-deny.php:272
846
  #: core/admin/page-email-new-admin.php:202 core/admin/page-email-new-admin.php:254
847
  #: core/admin/page-email-new-visitor.php:254 core/admin/page-email-trash.php:215
848
- #: core/admin/page-email-trash.php:277 core/lib/wpbc_all_translations.php:154
849
  #: inc/_bs/admin/page-email-payment.php:216 inc/_bs/admin/page-email-payment.php:273
850
  #: inc/_ps/admin/page-email-edit.php:215 inc/_ps/admin/page-email-edit.php:272
851
  #: inc/gateways/paypal/wpbc-gw-paypal.php:691 inc/gateways/paypal/wpbc-gw-paypal.php:714
@@ -861,25 +879,28 @@ msgstr ""
861
  #: core/admin/page-email-new-admin.php:254 core/admin/page-email-new-admin.php:295
862
  #: core/admin/page-email-new-visitor.php:254 core/admin/page-email-new-visitor.php:295
863
  #: core/admin/page-email-trash.php:215 core/admin/page-email-trash.php:277
864
- #: core/admin/page-email-trash.php:319 core/admin/page-form-free.php:1130
865
- #: core/admin/page-form-free.php:2054 core/lib/wpbc_all_translations.php:155
866
  #: inc/_bs/admin/page-email-payment.php:216 inc/_bs/admin/page-email-payment.php:273
867
  #: inc/_bs/admin/page-email-payment.php:317 inc/_ps/admin/page-email-edit.php:215
868
  #: inc/_ps/admin/page-email-edit.php:272 inc/_ps/admin/page-email-edit.php:313
869
- #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:288
870
- #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:322 inc/gateways/ideal/wpbc-gw-ideal.php:389
871
  #: inc/gateways/ideal/wpbc-gw-ideal.php:404 inc/gateways/ipay88/wpbc-gw-ipay88.php:266
872
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:281 inc/gateways/paypal/wpbc-gw-paypal.php:376
873
  #: inc/gateways/paypal/wpbc-gw-paypal.php:392 inc/gateways/sage/wpbc-gw-sage.php:396
874
  #: inc/gateways/sage/wpbc-gw-sage.php:411 inc/gateways/stripe/wpbc-gw-stripe.php:377
875
  #: inc/gateways/stripe/wpbc-gw-stripe.php:392 inc/gateways/stripe/wpbc-gw-stripe.php:409
876
- #: inc/gateways/stripe/wpbc-gw-stripe.php:424
 
 
 
877
  msgid "Required"
878
  msgstr ""
879
 
880
  #: core/admin/page-email-approved.php:216 core/admin/page-email-deleted.php:216
881
  #: core/admin/page-email-deny.php:218 core/admin/page-email-trash.php:216
882
- #: core/lib/wpbc_all_translations.php:156 inc/_bs/admin/page-email-payment.php:217
883
  #: inc/_ps/admin/page-email-edit.php:216
884
  msgid "You can put multiple emails separated by"
885
  msgstr ""
@@ -891,7 +912,7 @@ msgstr ""
891
  #: core/admin/page-email-new-visitor.php:272 core/admin/page-email-trash.php:234
892
  #: core/admin/page-email-trash.php:295 core/admin/page-form-timeslots.php:767
893
  #: core/admin/wpbc-toolbar-tiny.php:430 core/admin/wpbc-toolbar-tiny.php:1801
894
- #: core/lib/wpbc_all_translations.php:157 core/lib/wpdev-booking-widget.php:96
895
  #: core/sync/wpbc-gcal-class.php:606 core/sync/wpbc-gcal-class.php:629
896
  #: inc/_bm/admin/page-availability.php:985 inc/_bm/admin/page-seasons.php:514
897
  #: inc/_bs/admin/page-email-payment.php:235 inc/_bs/admin/page-email-payment.php:291
@@ -906,7 +927,7 @@ msgstr ""
906
  #: core/admin/page-email-new-admin.php:220 core/admin/page-email-new-admin.php:272
907
  #: core/admin/page-email-new-visitor.php:272 core/admin/page-email-trash.php:234
908
  #: core/admin/page-email-trash.php:295 core/admin/page-form-timeslots.php:132
909
- #: core/admin/wpbc-toolbar-tiny.php:430 core/lib/wpbc_all_translations.php:158
910
  #: inc/_bs/admin/page-email-payment.php:235 inc/_bs/admin/page-email-payment.php:291
911
  #: inc/_ps/admin/page-email-edit.php:234 inc/_ps/admin/page-email-edit.php:290
912
  #: inc/_ps/form/class-wpbc-field-help-button.php:73
@@ -926,26 +947,26 @@ msgstr ""
926
  #: core/admin/page-email-deny.php:262 core/admin/page-email-new-admin.php:244
927
  #: core/admin/page-email-new-visitor.php:244 core/admin/page-email-trash.php:262
928
  #: core/admin/page-import-gcal.php:159 core/admin/wpbc-toolbar-tiny.php:594
929
- #: core/lib/wpbc_all_translations.php:159 core/sync/wpbc-gcal.php:171
930
  #: inc/_bm/admin/page-cost-valuation.php:275 inc/_bm/admin/page-cost-valuation.php:278
931
  #: inc/_bm/admin/page-cost-valuation.php:449 inc/_bm/admin/page-seasons.php:1564
932
  #: inc/_bs/admin/page-email-payment.php:263 inc/_ps/admin/page-email-edit.php:262
933
  msgid "From"
934
  msgstr ""
935
 
936
- #: core/admin/page-email-approved.php:272 core/lib/wpbc_all_translations.php:160
937
  msgid "Email Address will be used in the FROM field of response to Visitor."
938
  msgstr ""
939
 
940
- #: core/admin/page-email-approved.php:310 core/lib/wpbc_all_translations.php:161
941
- #: core/wpbc-activation.php:994
942
  msgid "Your booking has been approved"
943
  msgstr ""
944
 
945
  #: core/admin/page-email-approved.php:312 core/admin/page-email-deleted.php:313
946
  #: core/admin/page-email-deny.php:313 core/admin/page-email-new-admin.php:294
947
  #: core/admin/page-email-new-visitor.php:294 core/admin/page-email-trash.php:318
948
- #: core/lib/wpbc_all_translations.php:162 inc/_bs/admin/page-email-payment.php:316
949
  #: inc/_ps/admin/page-email-edit.php:312
950
  msgid "Subject"
951
  msgstr ""
@@ -953,22 +974,22 @@ msgstr ""
953
  #: core/admin/page-email-approved.php:313 core/admin/page-email-deleted.php:314
954
  #: core/admin/page-email-deny.php:314 core/admin/page-email-new-admin.php:295
955
  #: core/admin/page-email-new-visitor.php:295 core/admin/page-email-trash.php:319
956
- #: core/lib/wpbc_all_translations.php:163 inc/_bs/admin/page-email-payment.php:317
957
  #: inc/_ps/admin/page-email-edit.php:313
958
  #, php-format
959
  msgid "Type your email %ssubject%s for the booking confimation message."
960
  msgstr ""
961
 
962
- #: core/admin/page-email-approved.php:325 core/lib/wpbc_all_translations.php:164
963
- #: core/wpbc-activation.php:996
964
  #, php-format
965
  msgid ""
966
  "Your reservation %s for: %s has been approved.%sYou can edit the booking on this page: %s Thank "
967
  "you, %s"
968
  msgstr ""
969
 
970
- #: core/admin/page-email-approved.php:327 core/lib/wpbc_all_translations.php:165
971
- #: core/wpbc-activation.php:998
972
  #, php-format
973
  msgid "Your booking %s for: %s has been approved.%sThank you, %s"
974
  msgstr ""
@@ -976,7 +997,7 @@ msgstr ""
976
  #: core/admin/page-email-approved.php:334 core/admin/page-email-deleted.php:331
977
  #: core/admin/page-email-deny.php:331 core/admin/page-email-new-admin.php:310
978
  #: core/admin/page-email-new-visitor.php:316 core/admin/page-email-trash.php:336
979
- #: core/lib/wpbc_all_translations.php:166 inc/_bs/admin/page-email-payment.php:334
980
  #: inc/_ps/admin/page-email-edit.php:330
981
  msgid "Content"
982
  msgstr ""
@@ -984,7 +1005,7 @@ msgstr ""
984
  #: core/admin/page-email-approved.php:335 core/admin/page-email-deleted.php:332
985
  #: core/admin/page-email-deny.php:332 core/admin/page-email-new-admin.php:311
986
  #: core/admin/page-email-new-visitor.php:317 core/admin/page-email-trash.php:337
987
- #: core/lib/wpbc_all_translations.php:167 inc/_bs/admin/page-email-payment.php:335
988
  #: inc/_ps/admin/page-email-edit.php:331
989
  msgid "Type your email message content. "
990
  msgstr ""
@@ -992,7 +1013,7 @@ msgstr ""
992
  #: core/admin/page-email-approved.php:356 core/admin/page-email-deleted.php:353
993
  #: core/admin/page-email-deny.php:353 core/admin/page-email-new-admin.php:332
994
  #: core/admin/page-email-new-visitor.php:338 core/admin/page-email-trash.php:358
995
- #: core/lib/wpbc_all_translations.php:168 inc/_bs/admin/page-email-payment.php:356
996
  #: inc/_ps/admin/page-email-edit.php:352
997
  msgid "Email Heading"
998
  msgstr ""
@@ -1000,7 +1021,7 @@ msgstr ""
1000
  #: core/admin/page-email-approved.php:357 core/admin/page-email-deleted.php:354
1001
  #: core/admin/page-email-deny.php:354 core/admin/page-email-new-admin.php:333
1002
  #: core/admin/page-email-new-visitor.php:339 core/admin/page-email-trash.php:359
1003
- #: core/lib/wpbc_all_translations.php:169 inc/_bs/admin/page-email-payment.php:357
1004
  #: inc/_ps/admin/page-email-edit.php:353
1005
  msgid "Enter main heading contained within the email notification."
1006
  msgstr ""
@@ -1008,7 +1029,7 @@ msgstr ""
1008
  #: core/admin/page-email-approved.php:366 core/admin/page-email-deleted.php:363
1009
  #: core/admin/page-email-deny.php:363 core/admin/page-email-new-admin.php:342
1010
  #: core/admin/page-email-new-visitor.php:348 core/admin/page-email-trash.php:368
1011
- #: core/lib/wpbc_all_translations.php:170 inc/_bs/admin/page-email-payment.php:366
1012
  #: inc/_ps/admin/page-email-edit.php:362
1013
  msgid "Email Footer Text"
1014
  msgstr ""
@@ -1016,7 +1037,7 @@ msgstr ""
1016
  #: core/admin/page-email-approved.php:367 core/admin/page-email-deleted.php:364
1017
  #: core/admin/page-email-deny.php:364 core/admin/page-email-new-admin.php:343
1018
  #: core/admin/page-email-new-visitor.php:349 core/admin/page-email-trash.php:369
1019
- #: core/lib/wpbc_all_translations.php:171 inc/_bs/admin/page-email-payment.php:367
1020
  #: inc/_ps/admin/page-email-edit.php:363
1021
  msgid "Enter text contained within footer of the email notification"
1022
  msgstr ""
@@ -1024,7 +1045,7 @@ msgstr ""
1024
  #: core/admin/page-email-approved.php:377 core/admin/page-email-deleted.php:374
1025
  #: core/admin/page-email-deny.php:374 core/admin/page-email-new-admin.php:353
1026
  #: core/admin/page-email-new-visitor.php:359 core/admin/page-email-trash.php:379
1027
- #: core/lib/wpbc_all_translations.php:172 inc/_bs/admin/page-email-payment.php:377
1028
  #: inc/_ps/admin/page-email-edit.php:373
1029
  msgid "Email template"
1030
  msgstr ""
@@ -1032,7 +1053,7 @@ msgstr ""
1032
  #: core/admin/page-email-approved.php:378 core/admin/page-email-deleted.php:375
1033
  #: core/admin/page-email-deny.php:375 core/admin/page-email-new-admin.php:354
1034
  #: core/admin/page-email-new-visitor.php:360 core/admin/page-email-trash.php:380
1035
- #: core/lib/wpbc_all_translations.php:173 inc/_bs/admin/page-email-payment.php:378
1036
  #: inc/_ps/admin/page-email-edit.php:374
1037
  msgid "Choose email template."
1038
  msgstr ""
@@ -1040,7 +1061,7 @@ msgstr ""
1040
  #: core/admin/page-email-approved.php:382 core/admin/page-email-deleted.php:379
1041
  #: core/admin/page-email-deny.php:379 core/admin/page-email-new-admin.php:358
1042
  #: core/admin/page-email-new-visitor.php:364 core/admin/page-email-trash.php:384
1043
- #: core/lib/wpbc_all_translations.php:174 inc/_bs/admin/page-email-payment.php:382
1044
  #: inc/_ps/admin/page-email-edit.php:378
1045
  msgid "Plain (without styles)"
1046
  msgstr ""
@@ -1048,7 +1069,7 @@ msgstr ""
1048
  #: core/admin/page-email-approved.php:383 core/admin/page-email-deleted.php:380
1049
  #: core/admin/page-email-deny.php:380 core/admin/page-email-new-admin.php:359
1050
  #: core/admin/page-email-new-visitor.php:365 core/admin/page-email-trash.php:385
1051
- #: core/lib/wpbc_all_translations.php:175 inc/_bs/admin/page-email-payment.php:383
1052
  #: inc/_ps/admin/page-email-edit.php:379
1053
  msgid "Standard 1 column"
1054
  msgstr ""
@@ -1056,7 +1077,7 @@ msgstr ""
1056
  #: core/admin/page-email-approved.php:390 core/admin/page-email-deleted.php:387
1057
  #: core/admin/page-email-deny.php:387 core/admin/page-email-new-admin.php:366
1058
  #: core/admin/page-email-new-visitor.php:372 core/admin/page-email-trash.php:392
1059
- #: core/lib/wpbc_all_translations.php:176 inc/_bs/admin/page-email-payment.php:390
1060
  #: inc/_ps/admin/page-email-edit.php:386
1061
  #, php-format
1062
  msgid "You can override this email template in this folder %s"
@@ -1065,7 +1086,7 @@ msgstr ""
1065
  #: core/admin/page-email-approved.php:400 core/admin/page-email-deleted.php:397
1066
  #: core/admin/page-email-deny.php:397 core/admin/page-email-new-admin.php:376
1067
  #: core/admin/page-email-new-visitor.php:382 core/admin/page-email-trash.php:402
1068
- #: core/lib/wpbc_all_translations.php:177 inc/_bs/admin/page-email-payment.php:400
1069
  #: inc/_ps/admin/page-email-edit.php:396
1070
  msgid "Base Color"
1071
  msgstr ""
@@ -1073,7 +1094,7 @@ msgstr ""
1073
  #: core/admin/page-email-approved.php:401 core/admin/page-email-deleted.php:398
1074
  #: core/admin/page-email-deny.php:398 core/admin/page-email-new-admin.php:377
1075
  #: core/admin/page-email-new-visitor.php:383 core/admin/page-email-trash.php:403
1076
- #: core/lib/wpbc_all_translations.php:178 inc/_bs/admin/page-email-payment.php:401
1077
  #: inc/_ps/admin/page-email-edit.php:397
1078
  msgid "The base color for email templates."
1079
  msgstr ""
@@ -1090,7 +1111,7 @@ msgstr ""
1090
  #: core/admin/page-email-new-visitor.php:402 core/admin/page-email-new-visitor.php:411
1091
  #: core/admin/page-email-trash.php:404 core/admin/page-email-trash.php:413
1092
  #: core/admin/page-email-trash.php:422 core/admin/page-email-trash.php:431
1093
- #: core/lib/wpbc_all_translations.php:179 inc/_bs/admin/page-email-payment.php:402
1094
  #: inc/_bs/admin/page-email-payment.php:411 inc/_bs/admin/page-email-payment.php:420
1095
  #: inc/_bs/admin/page-email-payment.php:429 inc/_ps/admin/page-email-edit.php:398
1096
  #: inc/_ps/admin/page-email-edit.php:407 inc/_ps/admin/page-email-edit.php:416
@@ -1101,7 +1122,7 @@ msgstr ""
1101
  #: core/admin/page-email-approved.php:409 core/admin/page-email-deleted.php:406
1102
  #: core/admin/page-email-deny.php:406 core/admin/page-email-new-admin.php:385
1103
  #: core/admin/page-email-new-visitor.php:391 core/admin/page-email-trash.php:411
1104
- #: core/lib/wpbc_all_translations.php:180 inc/_bs/admin/page-email-payment.php:409
1105
  #: inc/_ps/admin/page-email-edit.php:405
1106
  msgid "Background Color"
1107
  msgstr ""
@@ -1109,7 +1130,7 @@ msgstr ""
1109
  #: core/admin/page-email-approved.php:410 core/admin/page-email-deleted.php:407
1110
  #: core/admin/page-email-deny.php:407 core/admin/page-email-new-admin.php:386
1111
  #: core/admin/page-email-new-visitor.php:392 core/admin/page-email-trash.php:412
1112
- #: core/lib/wpbc_all_translations.php:181 inc/_bs/admin/page-email-payment.php:410
1113
  #: inc/_ps/admin/page-email-edit.php:406
1114
  msgid "The background color for email templates."
1115
  msgstr ""
@@ -1117,7 +1138,7 @@ msgstr ""
1117
  #: core/admin/page-email-approved.php:418 core/admin/page-email-deleted.php:415
1118
  #: core/admin/page-email-deny.php:415 core/admin/page-email-new-admin.php:394
1119
  #: core/admin/page-email-new-visitor.php:400 core/admin/page-email-trash.php:420
1120
- #: core/lib/wpbc_all_translations.php:182 inc/_bs/admin/page-email-payment.php:418
1121
  #: inc/_ps/admin/page-email-edit.php:414
1122
  msgid "Email Body Background Color"
1123
  msgstr ""
@@ -1125,7 +1146,7 @@ msgstr ""
1125
  #: core/admin/page-email-approved.php:419 core/admin/page-email-deleted.php:416
1126
  #: core/admin/page-email-deny.php:416 core/admin/page-email-new-admin.php:395
1127
  #: core/admin/page-email-new-visitor.php:401 core/admin/page-email-trash.php:421
1128
- #: core/lib/wpbc_all_translations.php:183 inc/_bs/admin/page-email-payment.php:419
1129
  #: inc/_ps/admin/page-email-edit.php:415
1130
  msgid "The main body background color for email templates."
1131
  msgstr ""
@@ -1133,7 +1154,7 @@ msgstr ""
1133
  #: core/admin/page-email-approved.php:427 core/admin/page-email-deleted.php:424
1134
  #: core/admin/page-email-deny.php:424 core/admin/page-email-new-admin.php:403
1135
  #: core/admin/page-email-new-visitor.php:409 core/admin/page-email-trash.php:429
1136
- #: core/lib/wpbc_all_translations.php:184 inc/_bs/admin/page-email-payment.php:427
1137
  #: inc/_ps/admin/page-email-edit.php:423
1138
  msgid "Email Body Text Colour"
1139
  msgstr ""
@@ -1141,7 +1162,7 @@ msgstr ""
1141
  #: core/admin/page-email-approved.php:428 core/admin/page-email-deleted.php:425
1142
  #: core/admin/page-email-deny.php:425 core/admin/page-email-new-admin.php:404
1143
  #: core/admin/page-email-new-visitor.php:410 core/admin/page-email-trash.php:430
1144
- #: core/lib/wpbc_all_translations.php:185 inc/_bs/admin/page-email-payment.php:428
1145
  #: inc/_ps/admin/page-email-edit.php:424
1146
  msgid "The main body text color for email templates."
1147
  msgstr ""
@@ -1149,7 +1170,7 @@ msgstr ""
1149
  #: core/admin/page-email-approved.php:443 core/admin/page-email-deleted.php:440
1150
  #: core/admin/page-email-deny.php:440 core/admin/page-email-new-admin.php:419
1151
  #: core/admin/page-email-new-visitor.php:425 core/admin/page-email-trash.php:445
1152
- #: core/lib/wpbc_all_translations.php:186 inc/_bs/admin/page-email-payment.php:443
1153
  #: inc/_ps/admin/page-email-edit.php:439
1154
  msgid "Email format"
1155
  msgstr ""
@@ -1157,7 +1178,7 @@ msgstr ""
1157
  #: core/admin/page-email-approved.php:444 core/admin/page-email-deleted.php:441
1158
  #: core/admin/page-email-deny.php:441 core/admin/page-email-new-admin.php:420
1159
  #: core/admin/page-email-new-visitor.php:426 core/admin/page-email-trash.php:446
1160
- #: core/lib/wpbc_all_translations.php:187 inc/_bs/admin/page-email-payment.php:444
1161
  #: inc/_ps/admin/page-email-edit.php:440
1162
  msgid "Choose which format of email to send."
1163
  msgstr ""
@@ -1165,7 +1186,7 @@ msgstr ""
1165
  #: core/admin/page-email-approved.php:448 core/admin/page-email-deleted.php:445
1166
  #: core/admin/page-email-deny.php:445 core/admin/page-email-new-admin.php:424
1167
  #: core/admin/page-email-new-visitor.php:430 core/admin/page-email-trash.php:450
1168
- #: core/lib/wpbc_all_translations.php:188 inc/_bs/admin/page-email-payment.php:448
1169
  #: inc/_ps/admin/page-email-edit.php:444
1170
  msgid "Plain text"
1171
  msgstr ""
@@ -1173,7 +1194,7 @@ msgstr ""
1173
  #: core/admin/page-email-approved.php:455 core/admin/page-email-deleted.php:452
1174
  #: core/admin/page-email-deny.php:452 core/admin/page-email-new-admin.php:431
1175
  #: core/admin/page-email-new-visitor.php:437 core/admin/page-email-trash.php:457
1176
- #: core/lib/wpbc_all_translations.php:189 inc/_bs/admin/page-email-payment.php:455
1177
  #: inc/_ps/admin/page-email-edit.php:451 inc/_ps/admin/page-settings-form.php:667
1178
  #: inc/_ps/form/class-wpbc-form-help.php:92 inc/gateways/page-gateways.php:1102
1179
  msgid "HTML"
@@ -1182,7 +1203,7 @@ msgstr ""
1182
  #: core/admin/page-email-approved.php:456 core/admin/page-email-deleted.php:453
1183
  #: core/admin/page-email-deny.php:453 core/admin/page-email-new-admin.php:432
1184
  #: core/admin/page-email-new-visitor.php:438 core/admin/page-email-trash.php:458
1185
- #: core/lib/wpbc_all_translations.php:190 inc/_bs/admin/page-email-payment.php:456
1186
  #: inc/_ps/admin/page-email-edit.php:452
1187
  msgid "Multipart"
1188
  msgstr ""
@@ -1190,7 +1211,7 @@ msgstr ""
1190
  #: core/admin/page-email-approved.php:483 core/admin/page-email-deleted.php:480
1191
  #: core/admin/page-email-deny.php:480 core/admin/page-email-new-admin.php:458
1192
  #: core/admin/page-email-new-visitor.php:465 core/admin/page-email-trash.php:485
1193
- #: core/lib/wpbc_all_translations.php:191 inc/_bs/admin/page-email-payment.php:483
1194
  #: inc/_ps/admin/page-email-edit.php:479
1195
  #, php-format
1196
  msgid ""
@@ -1201,13 +1222,14 @@ msgstr ""
1201
  #: core/admin/page-email-approved.php:483 core/admin/page-email-deleted.php:480
1202
  #: core/admin/page-email-deny.php:480 core/admin/page-email-new-admin.php:458
1203
  #: core/admin/page-email-new-visitor.php:465 core/admin/page-email-trash.php:485
1204
- #: core/lib/wpbc_all_translations.php:192 core/sync/wpbc-gcal.php:406
1205
  #: inc/_bs/admin/page-email-payment.php:483 inc/_ps/admin/page-email-edit.php:479
1206
  msgid "here"
1207
  msgstr ""
1208
 
1209
  #: core/admin/page-email-approved.php:560 core/admin/wpbc-class-listing.php:330
1210
- #: core/admin/wpbc-toolbars.php:546 core/lib/wpbc_all_translations.php:193 inc/_ps/personal.php:352
 
1211
  #: inc/_ps/wpbc-print.php:118
1212
  msgid "Approved"
1213
  msgstr ""
@@ -1216,23 +1238,23 @@ msgstr ""
1216
  #: core/admin/page-email-deny.php:559 core/admin/page-email-new-admin.php:513
1217
  #: core/admin/page-email-new-admin.php:514 core/admin/page-email-new-admin.php:538
1218
  #: core/admin/page-email-new-visitor.php:538 core/admin/page-email-trash.php:564
1219
- #: core/lib/wpbc_all_translations.php:194 inc/_bs/admin/page-email-payment.php:561
1220
  #: inc/_ps/admin/page-email-edit.php:557
1221
  msgid "Emails Settings"
1222
  msgstr ""
1223
 
1224
- #: core/admin/page-email-approved.php:562 core/lib/wpbc_all_translations.php:195
1225
  msgid "Customization of email template, which is sent to Visitor after approval of booking"
1226
  msgstr ""
1227
 
1228
- #: core/admin/page-email-approved.php:699 core/lib/wpbc_all_translations.php:196
1229
  msgid "Email is sent to Visitor after Approval of booking."
1230
  msgstr ""
1231
 
1232
  #: core/admin/page-email-approved.php:706 core/admin/page-email-deleted.php:703
1233
  #: core/admin/page-email-deny.php:703 core/admin/page-email-new-admin.php:686
1234
  #: core/admin/page-email-new-visitor.php:682 core/admin/page-email-trash.php:708
1235
- #: core/lib/wpbc_all_translations.php:197 inc/_bs/admin/page-email-payment.php:705
1236
  #: inc/_ps/admin/page-email-edit.php:701
1237
  msgid "Header / Footer"
1238
  msgstr ""
@@ -1240,7 +1262,7 @@ msgstr ""
1240
  #: core/admin/page-email-approved.php:713 core/admin/page-email-deleted.php:710
1241
  #: core/admin/page-email-deny.php:710 core/admin/page-email-new-admin.php:693
1242
  #: core/admin/page-email-new-visitor.php:689 core/admin/page-email-trash.php:715
1243
- #: core/lib/wpbc_all_translations.php:198 inc/_bs/admin/page-email-payment.php:712
1244
  #: inc/_ps/admin/page-email-edit.php:708
1245
  msgid "Email Styles"
1246
  msgstr ""
@@ -1248,10 +1270,10 @@ msgstr ""
1248
  #: core/admin/page-email-approved.php:725 core/admin/page-email-deleted.php:722
1249
  #: core/admin/page-email-deny.php:722 core/admin/page-email-new-admin.php:705
1250
  #: core/admin/page-email-new-visitor.php:701 core/admin/page-email-trash.php:727
1251
- #: core/admin/page-form-free.php:1132 core/admin/page-form-timeslots.php:768
1252
  #: core/admin/wpbc-class-listing.php:125 core/admin/wpbc-class-listing.php:145
1253
- #: core/admin/wpbc-toolbars.php:52 core/admin/wpbc-toolbars.php:174
1254
- #: core/lib/wpbc_all_translations.php:199 inc/_bl/admin/page-coupons.php:548
1255
  #: inc/_bm/admin/page-cost-valuation.php:203 inc/_bm/admin/page-seasons.php:527
1256
  #: inc/_bs/admin/page-email-payment.php:724 inc/_mu/admin/page-users.php:449
1257
  #: inc/_ps/admin/page-email-edit.php:720
@@ -1261,7 +1283,7 @@ msgstr ""
1261
  #: core/admin/page-email-approved.php:729 core/admin/page-email-deleted.php:726
1262
  #: core/admin/page-email-deny.php:726 core/admin/page-email-new-admin.php:709
1263
  #: core/admin/page-email-new-visitor.php:705 core/admin/page-email-trash.php:731
1264
- #: core/lib/wpbc_all_translations.php:200 inc/_bs/admin/page-email-payment.php:728
1265
  #: inc/_ps/admin/page-email-edit.php:724
1266
  msgid "Send Test Email"
1267
  msgstr ""
@@ -1272,14 +1294,14 @@ msgstr ""
1272
  #: core/admin/page-email-new-admin.php:711 core/admin/page-email-new-admin.php:747
1273
  #: core/admin/page-email-new-visitor.php:707 core/admin/page-email-new-visitor.php:743
1274
  #: core/admin/page-email-trash.php:733 core/admin/page-email-trash.php:769
1275
- #: core/admin/page-form-free.php:146 core/admin/page-form-free.php:197
1276
- #: core/admin/page-form-free.php:2174 core/admin/page-ics-export.php:236
1277
- #: core/admin/page-ics-general.php:404 core/admin/page-ics-import.php:203
1278
- #: core/admin/page-import-gcal.php:570 core/admin/page-settings.php:137
1279
- #: core/admin/page-settings.php:276 core/admin/wpbc-toolbars.php:1777
1280
- #: core/lib/wpbc_all_translations.php:201 inc/_bl/admin/page-coupons.php:220
1281
- #: inc/_bl/admin/page-coupons.php:1378 inc/_bl/admin/page-search.php:378
1282
- #: inc/_bl/admin/page-search.php:478 inc/_bm/admin/page-availability.php:1024
1283
  #: inc/_bm/admin/page-cost-advanced.php:102 inc/_bm/admin/page-cost-advanced.php:161
1284
  #: inc/_bm/admin/page-cost-deposit.php:362 inc/_bm/admin/page-cost-early-late-booking.php:544
1285
  #: inc/_bm/admin/page-cost-rate.php:231 inc/_bm/admin/page-cost-valuation.php:257
@@ -1289,20 +1311,20 @@ msgstr ""
1289
  #: inc/_mu/admin/page-users.php:168 inc/_ps/admin/page-email-edit.php:726
1290
  #: inc/_ps/admin/page-email-edit.php:762 inc/_ps/admin/page-resources.php:193
1291
  #: inc/_ps/admin/page-settings-form.php:125 inc/_ps/admin/page-settings-form.php:187
1292
- #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:900
1293
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:489
1294
  #: inc/gateways/ideal/wpbc-gw-ideal.php:923 inc/gateways/ipay88/wpbc-gw-ipay88.php:783
1295
  #: inc/gateways/page-gateways.php:665 inc/gateways/pay_cash/wpbc-gw-pay_cash.php:402
1296
  #: inc/gateways/paypal/wpbc-gw-paypal.php:1085 inc/gateways/sage/wpbc-gw-sage.php:913
1297
- #: inc/gateways/stripe/wpbc-gw-stripe.php:986
1298
  msgid "Save Changes"
1299
  msgstr ""
1300
 
1301
  #: core/admin/page-email-approved.php:749 core/admin/page-email-deleted.php:746
1302
  #: core/admin/page-email-deny.php:746 core/admin/page-email-new-admin.php:729
1303
  #: core/admin/page-email-new-visitor.php:725 core/admin/page-email-trash.php:751
1304
- #: core/admin/page-form-free.php:1131 core/admin/wpbc-dashboard.php:471
1305
- #: core/lib/wpbc_all_translations.php:202 inc/_bs/admin/page-email-payment.php:748
1306
  #: inc/_ps/admin/page-email-edit.php:744
1307
  msgid "Type"
1308
  msgstr ""
@@ -1311,10 +1333,10 @@ msgstr ""
1311
  #: core/admin/page-email-deny.php:753 core/admin/page-email-new-admin.php:736
1312
  #: core/admin/page-email-new-visitor.php:732 core/admin/page-email-trash.php:758
1313
  #: core/admin/page-ics-import.php:194 core/admin/page-import-gcal.php:552
1314
- #: core/admin/page-settings.php:131 core/admin/page-settings.php:268
1315
- #: core/admin/wpbc-toolbars.php:430 core/admin/wpbc-toolbars.php:436
1316
- #: core/lib/wpbc_all_translations.php:203 inc/_bl/admin/page-search.php:428
1317
- #: inc/_bl/admin/page-search.php:456 inc/_bm/admin/page-cost-advanced.php:155
1318
  #: inc/_bs/admin/page-email-payment.php:755 inc/_ps/admin/page-email-edit.php:751
1319
  #: inc/_ps/admin/page-settings-form.php:181
1320
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:452 inc/gateways/page-gateways.php:654
@@ -1326,7 +1348,7 @@ msgstr ""
1326
  #: core/admin/page-email-approved.php:839 core/admin/page-email-deleted.php:835
1327
  #: core/admin/page-email-deny.php:835 core/admin/page-email-new-admin.php:826
1328
  #: core/admin/page-email-new-visitor.php:814 core/admin/page-email-trash.php:840
1329
- #: core/lib/wpbc_all_translations.php:204 inc/_bs/admin/page-email-payment.php:837
1330
  #: inc/_ps/admin/page-email-edit.php:833
1331
  msgid "Email sent to "
1332
  msgstr ""
@@ -1334,7 +1356,7 @@ msgstr ""
1334
  #: core/admin/page-email-approved.php:841 core/admin/page-email-deleted.php:837
1335
  #: core/admin/page-email-deny.php:837 core/admin/page-email-new-admin.php:828
1336
  #: core/admin/page-email-new-visitor.php:816 core/admin/page-email-trash.php:842
1337
- #: core/lib/wpbc_all_translations.php:205 core/wpbc-emails.php:441
1338
  #: inc/_bs/admin/page-email-payment.php:839 inc/_ps/admin/page-email-edit.php:835
1339
  msgid "Email had not sent. Some error occuered."
1340
  msgstr ""
@@ -1342,12 +1364,13 @@ msgstr ""
1342
  #: core/admin/page-email-approved.php:856 core/admin/page-email-deleted.php:852
1343
  #: core/admin/page-email-deny.php:852 core/admin/page-email-new-admin.php:912
1344
  #: core/admin/page-email-new-visitor.php:831 core/admin/page-email-trash.php:857
1345
- #: core/lib/wpbc_all_translations.php:206 inc/_bs/admin/page-email-payment.php:854
1346
- #: inc/_ps/admin/page-email-edit.php:850 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:921
1347
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:562
1348
  #: inc/gateways/ideal/wpbc-gw-ideal.php:944 inc/gateways/ipay88/wpbc-gw-ipay88.php:804
1349
  #: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:423 inc/gateways/paypal/wpbc-gw-paypal.php:1106
1350
  #: inc/gateways/sage/wpbc-gw-sage.php:934 inc/gateways/stripe/wpbc-gw-stripe.php:1005
 
1351
  msgid "Settings saved."
1352
  msgstr ""
1353
 
@@ -1357,7 +1380,7 @@ msgstr ""
1357
  #: core/admin/page-email-new-admin.php:974 core/admin/page-email-new-admin.php:977
1358
  #: core/admin/page-email-new-visitor.php:892 core/admin/page-email-new-visitor.php:895
1359
  #: core/admin/page-email-trash.php:918 core/admin/page-email-trash.php:921
1360
- #: core/lib/wpbc_all_translations.php:207 inc/_bs/admin/page-email-payment.php:915
1361
  #: inc/_bs/admin/page-email-payment.php:918 inc/_ps/admin/page-email-edit.php:911
1362
  #: inc/_ps/admin/page-email-edit.php:914
1363
  msgid "If empty then title defined as WordPress"
@@ -1366,7 +1389,7 @@ msgstr ""
1366
  #: core/admin/page-email-approved.php:937 core/admin/page-email-deleted.php:933
1367
  #: core/admin/page-email-deny.php:933 core/admin/page-email-new-admin.php:994
1368
  #: core/admin/page-email-new-visitor.php:912 core/admin/page-email-trash.php:938
1369
- #: core/lib/wpbc_all_translations.php:208 inc/_bs/admin/page-email-payment.php:935
1370
  #: inc/_ps/admin/page-email-edit.php:931
1371
  msgid ""
1372
  "Email different from website DNS, its can be a reason of not delivery emails. Please use the "
@@ -1374,259 +1397,269 @@ msgid ""
1374
  msgstr ""
1375
 
1376
  #: core/admin/page-email-deleted.php:311 core/admin/page-email-deny.php:311
1377
- #: core/admin/page-email-trash.php:316 core/lib/wpbc_all_translations.php:209
1378
- #: core/wpbc-activation.php:1005
1379
  msgid "Your booking has been declined"
1380
  msgstr ""
1381
 
1382
  #: core/admin/page-email-deleted.php:325 core/admin/page-email-deny.php:325
1383
- #: core/admin/page-email-trash.php:330 core/lib/wpbc_all_translations.php:210
1384
- #: core/wpbc-activation.php:1006
1385
  #, php-format
1386
  msgid "Your booking %s for: %s has been canceled. %sThank you, %s"
1387
  msgstr ""
1388
 
1389
- #: core/admin/page-email-deleted.php:558 core/lib/wpbc-ajax.php:331
1390
- #: core/lib/wpbc_all_translations.php:211 inc/_bl/admin/page-coupons.php:378
1391
  #: inc/_bl/admin/page-coupons.php:1023 inc/_bm/admin/page-availability.php:364
1392
  #: inc/_bm/admin/page-cost.php:325 inc/_bm/admin/page-seasons.php:313
1393
  #: inc/_bm/admin/page-seasons.php:843 inc/_bm/m-toolbar.php:547
1394
- #: inc/_ps/admin/page-resources.php:318 inc/_ps/personal.php:171
1395
  msgid "Deleted"
1396
  msgstr ""
1397
 
1398
  #: core/admin/page-email-deleted.php:560 core/admin/page-email-trash.php:565
1399
- #: core/lib/wpbc_all_translations.php:212
1400
  msgid "Customization of email template, which is sent to Visitor after Cancellation of booking"
1401
  msgstr ""
1402
 
1403
- #: core/admin/page-email-deleted.php:696 core/lib/wpbc_all_translations.php:213
1404
  msgid "Email is sent to Visitor after Deleting of booking."
1405
  msgstr ""
1406
 
1407
- #: core/admin/page-email-deny.php:560 core/lib/wpbc_all_translations.php:214
1408
  msgid ""
1409
  "Customization of email template, which is sent to Visitor, when booking status is set to Pending"
1410
  msgstr ""
1411
 
1412
- #: core/admin/page-email-deny.php:696 core/lib/wpbc_all_translations.php:215
1413
  msgid "Email is sent to Visitor after booking set as Pending."
1414
  msgstr ""
1415
 
1416
  #: core/admin/page-email-new-admin.php:292 core/admin/page-email-new-visitor.php:292
1417
- #: core/admin/wpbc-class-listing.php:302 core/lib/wpbc_all_translations.php:216
1418
- #: core/wpbc-activation.php:976 core/wpbc-activation.php:983
1419
  msgid "New booking"
1420
  msgstr ""
1421
 
1422
- #: core/admin/page-email-new-admin.php:308 core/lib/wpbc_all_translations.php:217
1423
- #: core/wpbc-activation.php:977
1424
  #, php-format
1425
  msgid ""
1426
  "You need to approve a new booking %s for: %s Person detail information:%s Currently a new "
1427
  "booking is waiting for approval. Please visit the moderation panel%sThank you, %s"
1428
  msgstr ""
1429
 
1430
- #: core/admin/page-email-new-admin.php:512 core/lib/wpbc_all_translations.php:218
1431
  #: core/wpbc-functions.php:1984
1432
  msgid "Emails"
1433
  msgstr ""
1434
 
1435
  #: core/admin/page-email-new-admin.php:537 core/admin/page-email-new-visitor.php:537
1436
- #: core/lib/wpbc_all_translations.php:219
1437
  msgid "New"
1438
  msgstr ""
1439
 
1440
- #: core/admin/page-email-new-admin.php:537 core/lib/wpbc_all_translations.php:220
1441
  msgid "admin"
1442
  msgstr ""
1443
 
1444
- #: core/admin/page-email-new-admin.php:539 core/lib/wpbc_all_translations.php:221
1445
  msgid "Customization of email template, which is sending to Admin after new booking"
1446
  msgstr ""
1447
 
1448
- #: core/admin/page-email-new-admin.php:679 core/lib/wpbc_all_translations.php:222
1449
  msgid "Email is sending to Admin after creation of booking."
1450
  msgstr ""
1451
 
1452
- #: core/admin/page-email-new-visitor.php:307 core/lib/wpbc_all_translations.php:223
1453
- #: core/wpbc-activation.php:985
1454
  #, php-format
1455
  msgid ""
1456
  "Your reservation %s for: %s is processing now! We will send confirmation by email. %sYou can "
1457
  "edit this booking at this page: %s Thank you, %s"
1458
  msgstr ""
1459
 
1460
- #: core/admin/page-email-new-visitor.php:309 core/lib/wpbc_all_translations.php:224
1461
- #: core/wpbc-activation.php:987
1462
  #, php-format
1463
  msgid ""
1464
  "Your reservation %s for: %s is processing now! We will send confirmation by email. %s Thank you, "
1465
  "%s"
1466
  msgstr ""
1467
 
1468
- #: core/admin/page-email-new-visitor.php:537 core/lib/wpbc_all_translations.php:225
1469
  msgid "visitor"
1470
  msgstr ""
1471
 
1472
- #: core/admin/page-email-new-visitor.php:539 core/lib/wpbc_all_translations.php:226
1473
  msgid "Customization of email template, which is sending to Visitor after new booking"
1474
  msgstr ""
1475
 
1476
- #: core/admin/page-email-new-visitor.php:675 core/lib/wpbc_all_translations.php:227
1477
  msgid "Email is sending to Visitor after creation of booking."
1478
  msgstr ""
1479
 
1480
  #: core/admin/page-email-trash.php:563 core/admin/wpbc-class-listing.php:332
1481
- #: core/admin/wpbc-class-timeline.php:2316 core/admin/wpbc-toolbars.php:990
1482
- #: core/lib/wpbc_all_translations.php:228
 
1483
  msgid "Trash"
1484
  msgstr ""
1485
 
1486
- #: core/admin/page-email-trash.php:701 core/lib/wpbc_all_translations.php:229
1487
  msgid "Email is sent to visitor after cancelling of booking (moved to trash)."
1488
  msgstr ""
1489
 
1490
  #: core/admin/page-form-free.php:61 core/admin/page-settings.php:98
1491
- #: core/admin/page-settings.php:212 core/lib/wpbc_all_translations.php:230
1492
  #: core/wpbc-functions.php:1976 inc/_ps/admin/page-settings-form.php:46
1493
  msgid "Form"
1494
  msgstr ""
1495
 
1496
- #: core/admin/page-form-free.php:62 core/lib/wpbc_all_translations.php:231
1497
  #: inc/_ps/admin/page-settings-form.php:47
1498
  msgid "Fields Settings"
1499
  msgstr ""
1500
 
1501
- #: core/admin/page-form-free.php:63 core/lib/wpbc_all_translations.php:232
1502
  #: inc/_ps/admin/page-settings-form.php:48
1503
  msgid "Customizaton of Form Fields"
1504
  msgstr ""
1505
 
1506
  #: core/admin/page-form-free.php:76 core/admin/wpbc-dashboard.php:503
1507
- #: core/lib/wpbc_all_translations.php:233
1508
  msgid "Check Premium Features"
1509
  msgstr ""
1510
 
1511
- #: core/admin/page-form-free.php:77 core/lib/wpbc_all_translations.php:234
1512
  msgid "Upgrade to higher versions"
1513
  msgstr ""
1514
 
1515
- #: core/admin/page-form-free.php:167 core/lib/wpbc_all_translations.php:235
1516
  msgid "Form Field Configuration"
1517
  msgstr ""
1518
 
1519
- #: core/admin/page-form-free.php:281 core/admin/page-form-free.php:404
1520
- #: core/admin/page-form-free.php:562 core/lib/wpbc_all_translations.php:236
1521
- #: inc/_ps/personal.php:2072 inc/_ps/wpbc-form-templates.php:42 inc/_ps/wpbc-form-templates.php:61
 
 
 
 
 
 
 
1522
  #: inc/_ps/wpbc-form-templates.php:81 inc/_ps/wpbc-form-templates.php:104
1523
  #: inc/_ps/wpbc-form-templates.php:127
1524
  msgid "Send"
1525
  msgstr ""
1526
 
1527
- #: core/admin/page-form-free.php:835 core/lib/wpbc_all_translations.php:237
1528
  msgid "Reset to default form"
1529
  msgstr ""
1530
 
1531
- #: core/admin/page-form-free.php:839 core/admin/page-form-free.php:1449
1532
  #: core/admin/wpbc-class-listing.php:397 core/admin/wpbc-class-listing.php:403
1533
- #: core/admin/wpbc-toolbars.php:993 core/admin/wpbc-toolbars.php:1010
1534
- #: core/lib/wpbc_all_translations.php:238 inc/_bl/admin/page-coupons.php:236
1535
- #: inc/_bl/admin/page-coupons.php:808 inc/_bm/admin/page-availability.php:274
1536
- #: inc/_bm/admin/page-cost-valuation.php:354 inc/_bm/admin/page-cost.php:513
1537
- #: inc/_bm/admin/page-seasons.php:221 inc/_bm/admin/page-seasons.php:602
1538
- #: inc/_ps/admin/page-resources.php:222 inc/_ps/personal.php:2106
 
1539
  msgid "Do you really want to do this ?"
1540
  msgstr ""
1541
 
1542
- #: core/admin/page-form-free.php:867 core/admin/page-form-free.php:2160
1543
- #: core/lib/wpbc_all_translations.php:239
1544
  msgid "Add New Field"
1545
  msgstr ""
1546
 
1547
- #: core/admin/page-form-free.php:884 core/admin/page-form-free.php:919
1548
- #: core/lib/wpbc_all_translations.php:240 inc/_ps/admin/page-settings-form.php:312
1549
  msgid "Select"
1550
  msgstr ""
1551
 
1552
- #: core/admin/page-form-free.php:884 core/lib/wpbc_all_translations.php:241
1553
  msgid "Form Field"
1554
  msgstr ""
1555
 
1556
- #: core/admin/page-form-free.php:906 core/lib/wpbc_all_translations.php:242
1557
  #: inc/_ps/form/class-wpbc-form-help.php:141
1558
  msgid "Standard Fields"
1559
  msgstr ""
1560
 
1561
- #: core/admin/page-form-free.php:909 core/lib/wpbc_all_translations.php:243
1562
  #: inc/_ps/form/class-wpbc-form-help.php:147
1563
  msgid "Text"
1564
  msgstr ""
1565
 
1566
- #: core/admin/page-form-free.php:929 core/lib/wpbc_all_translations.php:244
1567
  #: inc/_ps/form/class-wpbc-form-help.php:156
1568
  msgid "Textarea"
1569
  msgstr ""
1570
 
1571
- #: core/admin/page-form-free.php:939 core/lib/wpbc_all_translations.php:245
1572
  msgid "Checkbox"
1573
  msgstr ""
1574
 
1575
- #: core/admin/page-form-free.php:954 core/lib/wpbc_all_translations.php:246
1576
  #: inc/_ps/form/class-wpbc-form-help.php:486
1577
  msgid "Advanced Fields"
1578
  msgstr ""
1579
 
1580
- #: core/admin/page-form-free.php:958 core/admin/page-form-free.php:1974
1581
- #: core/admin/page-form-free.php:1975 core/admin/page-form-timeslots.php:106
1582
  #: core/admin/page-form-timeslots.php:201 core/admin/page-form-timeslots.php:766
1583
- #: core/admin/page-form-timeslots.php:816 core/lib/wpbc_all_translations.php:247
1584
  #: inc/_ps/admin/page-settings-form.php:373 inc/_ps/admin/page-settings-form.php:383
1585
  #: inc/_ps/admin/page-settings-form.php:393
1586
  msgid "Time Slots"
1587
  msgstr ""
1588
 
1589
- #: core/admin/page-form-free.php:1016 core/lib/wpbc_all_translations.php:248
1590
  msgid "View"
1591
  msgstr ""
1592
 
1593
- #: core/admin/page-form-free.php:1035 core/lib/wpbc_all_translations.php:249
1594
  msgid "Standard Forms"
1595
  msgstr ""
1596
 
1597
- #: core/admin/page-form-free.php:1038 core/lib/wpbc_all_translations.php:250
1598
  msgid "Form under calendar"
1599
  msgstr ""
1600
 
1601
- #: core/admin/page-form-free.php:1048 core/lib/wpbc_all_translations.php:251
1602
  msgid "Form at right side of calendar"
1603
  msgstr ""
1604
 
1605
- #: core/admin/page-form-free.php:1058 core/lib/wpbc_all_translations.php:252
1606
  msgid "Form and calendar are centered"
1607
  msgstr ""
1608
 
1609
- #: core/admin/page-form-free.php:1068 core/lib/wpbc_all_translations.php:253
1610
  msgid "Form for dark background"
1611
  msgstr ""
1612
 
1613
- #: core/admin/page-form-free.php:1128 core/admin/page-form-free.php:2033
1614
- #: core/lib/wpbc_all_translations.php:254
1615
  msgid "Active"
1616
  msgstr ""
1617
 
1618
- #: core/admin/page-form-free.php:1129 core/lib/wpbc_all_translations.php:255
1619
  msgid "Field Label"
1620
  msgstr ""
1621
 
1622
- #: core/admin/page-form-free.php:1131 core/admin/page-form-free.php:2099
1623
- #: core/lib/wpbc_all_translations.php:256 inc/_ps/form/class-wpbc-field-help-text.php:177
1624
  msgid "Name"
1625
  msgstr ""
1626
 
1627
- #: core/admin/page-form-free.php:1208 core/admin/page-form-free.php:1646
1628
- #: core/admin/page-form-free.php:1707 core/admin/wpbc-class-timeline.php:2230
1629
- #: core/lib/wpbc_all_translations.php:257 inc/_bl/admin/page-coupons.php:215
 
1630
  #: inc/_bl/admin/page-coupons.php:804 inc/_bl/admin/page-coupons.php:993
1631
  #: inc/_bm/admin/page-cost.php:218 inc/_bm/admin/page-seasons.php:200
1632
  #: inc/_bm/admin/page-seasons.php:598 inc/_bm/admin/page-seasons.php:815
@@ -1634,35 +1667,35 @@ msgstr ""
1634
  msgid "Edit"
1635
  msgstr ""
1636
 
1637
- #: core/admin/page-form-free.php:1209 core/admin/page-form-free.php:1647
1638
- #: core/admin/page-form-timeslots.php:788 core/lib/wpbc_all_translations.php:258
1639
  msgid "Remove"
1640
  msgstr ""
1641
 
1642
- #: core/admin/page-form-free.php:1877 core/lib/wpbc_all_translations.php:259
1643
  #: inc/_ps/form/class-wpbc-form-help.php:88
1644
  msgid "Shortcodes"
1645
  msgstr ""
1646
 
1647
- #: core/admin/page-form-free.php:1878 core/lib/wpbc_all_translations.php:260
1648
  #: inc/_ps/form/class-wpbc-form-help.php:89
1649
  msgid ""
1650
  "You can generate the form fields for your form (at the left side) by selection specific field in "
1651
  "the above selectbox."
1652
  msgstr ""
1653
 
1654
- #: core/admin/page-form-free.php:1879 core/lib/wpbc_all_translations.php:261
1655
  #: inc/_ps/form/class-wpbc-form-help.php:90
1656
  #, php-format
1657
  msgid "Please read more about the booking form fields configuration %shere%s."
1658
  msgstr ""
1659
 
1660
- #: core/admin/page-form-free.php:1881 core/lib/wpbc_all_translations.php:262
1661
  #: inc/_ps/form/class-wpbc-form-help.php:99
1662
  msgid "Default Form Templates"
1663
  msgstr ""
1664
 
1665
- #: core/admin/page-form-free.php:1882 core/lib/wpbc_all_translations.php:263
1666
  #: inc/_ps/form/class-wpbc-form-help.php:100
1667
  #, php-format
1668
  msgid ""
@@ -1672,92 +1705,92 @@ msgid ""
1672
  "reset both forms: Booking Form and Content of Booking Fields form."
1673
  msgstr ""
1674
 
1675
- #: core/admin/page-form-free.php:2012 core/lib/wpbc_all_translations.php:264
1676
  #: inc/_ps/wpbc-form-templates.php:144 inc/_ps/wpbc-form-templates.php:156
1677
  #: inc/_ps/wpbc-form-templates.php:171 inc/_ps/wpbc-form-templates.php:186
1678
  msgid "First Name"
1679
  msgstr ""
1680
 
1681
- #: core/admin/page-form-free.php:2034 core/lib/wpbc_all_translations.php:265
1682
  msgid "Show / hide field in booking form"
1683
  msgstr ""
1684
 
1685
- #: core/admin/page-form-free.php:2055 core/lib/wpbc_all_translations.php:266
1686
  msgid "Set field as required"
1687
  msgstr ""
1688
 
1689
- #: core/admin/page-form-free.php:2075 core/admin/page-form-timeslots.php:784
1690
  #: core/admin/wpbc-toolbar-tiny.php:428 core/admin/wpbc-toolbar-tiny.php:1219
1691
- #: core/lib/wpbc_all_translations.php:267 inc/_ps/form/class-wpbc-field-help-button.php:73
1692
  #: js/wpbc-gutenberg.js:816
1693
  msgid "Label"
1694
  msgstr ""
1695
 
1696
- #: core/admin/page-form-free.php:2104 core/lib/wpbc_all_translations.php:268
1697
  #, php-format
1698
  msgid "Type only %sunique field name%s, that is not using in form"
1699
  msgstr ""
1700
 
1701
- #: core/admin/page-form-free.php:2125 core/lib/wpbc_all_translations.php:269
1702
  msgid "Values"
1703
  msgstr ""
1704
 
1705
- #: core/admin/page-form-free.php:2130 core/lib/wpbc_all_translations.php:270
1706
  msgid "Enter dropdown options. One option per line."
1707
  msgstr ""
1708
 
1709
- #: core/admin/page-form-free.php:2165 core/admin/wpbc-toolbar-tiny.php:298
1710
- #: core/admin/wpbc-toolbars.php:706 core/admin/wpbc-toolbars.php:911
1711
- #: core/admin/wpbc-toolbars.php:1487 core/lib/wpbc_all_translations.php:271
1712
  #: core/sync/wpbc-gcal.php:445 inc/_bs/lib_s.php:104 inc/_bs/s-toolbar.php:209
1713
- #: inc/_ps/p-toolbar.php:477 inc/_ps/p-toolbar.php:522
1714
  msgid "Close"
1715
  msgstr ""
1716
 
1717
- #: core/admin/page-form-free.php:2179 core/lib/wpbc_all_translations.php:272
1718
- #: inc/_bm/m-toolbar.php:367 inc/_bm/m-toolbar.php:368 inc/_ps/p-toolbar.php:356
1719
- #: inc/_ps/p-toolbar.php:408 inc/_ps/p-toolbar.php:441
1720
  msgid "Cancel"
1721
  msgstr ""
1722
 
1723
- #: core/admin/page-form-timeslots.php:106 core/lib/wpbc_all_translations.php:273
1724
  msgid "in 24 hour format"
1725
  msgstr ""
1726
 
1727
- #: core/admin/page-form-timeslots.php:126 core/lib/wpbc_all_translations.php:274
1728
  #: inc/_ps/form/class-wpbc-field-help-checkbox.php:154
1729
  #: inc/_ps/form/class-wpbc-field-help-select.php:119
1730
  msgid "One option per line"
1731
  msgstr ""
1732
 
1733
- #: core/admin/page-form-timeslots.php:132 core/lib/wpbc_all_translations.php:275
1734
  msgid "Titles"
1735
  msgstr ""
1736
 
1737
- #: core/admin/page-form-timeslots.php:151 core/lib/wpbc_all_translations.php:276
1738
  #: inc/_ps/form/class-wpbc-field-help-checkbox.php:172
1739
  #: inc/_ps/form/class-wpbc-field-help-select.php:137
1740
  msgid "One title per line"
1741
  msgstr ""
1742
 
1743
- #: core/admin/page-form-timeslots.php:151 core/lib/wpbc_all_translations.php:277
1744
  msgid "Visible options in selectbox"
1745
  msgstr ""
1746
 
1747
- #: core/admin/page-form-timeslots.php:193 core/lib/wpbc_all_translations.php:278
1748
  msgid "Reset times by"
1749
  msgstr ""
1750
 
1751
  #: core/admin/page-form-timeslots.php:195 core/admin/page-import-gcal.php:69
1752
  #: core/admin/page-import-gcal.php:196 core/admin/page-import-gcal.php:278
1753
- #: core/admin/wpbc-toolbar-tiny.php:634 core/lib/wpbc_all_translations.php:279
1754
  #: core/sync/wpbc-gcal.php:207 core/sync/wpbc-gcal.php:271 inc/_bm/admin/api-settings-m.php:67
1755
  #: inc/_bm/admin/api-settings-m.php:104 inc/_bs/admin/api-settings-s.php:532
1756
  msgid "hours"
1757
  msgstr ""
1758
 
1759
  #: core/admin/page-form-timeslots.php:196 core/admin/page-import-gcal.php:67
1760
- #: core/lib/wpbc_all_translations.php:280 inc/_bm/admin/api-settings-m.php:98
1761
  #: inc/_bm/admin/api-settings-m.php:100 inc/_bs/admin/api-settings-s.php:528
1762
  #: inc/_bs/admin/api-settings-s.php:901
1763
  msgid "hour"
@@ -1765,7 +1798,7 @@ msgstr ""
1765
 
1766
  #: core/admin/page-form-timeslots.php:197 core/admin/page-form-timeslots.php:198
1767
  #: core/admin/page-form-timeslots.php:199 core/admin/page-import-gcal.php:195
1768
- #: core/admin/page-import-gcal.php:277 core/lib/wpbc_all_translations.php:281
1769
  #: core/sync/wpbc-gcal.php:206 core/sync/wpbc-gcal.php:270 inc/_bm/admin/api-settings-m.php:67
1770
  #: inc/_bm/admin/api-settings-m.php:96 inc/_bm/admin/api-settings-m.php:100
1771
  #: inc/_bs/admin/api-settings-s.php:525 inc/_bs/admin/api-settings-s.php:526
@@ -1778,60 +1811,60 @@ msgstr ""
1778
  #: core/admin/page-form-timeslots.php:435 core/admin/page-form-timeslots.php:444
1779
  #: core/admin/page-form-timeslots.php:446 core/admin/page-form-timeslots.php:455
1780
  #: core/admin/page-form-timeslots.php:457 core/admin/page-form-timeslots.php:466
1781
- #: core/admin/page-form-timeslots.php:468 core/lib/wpbc_all_translations.php:282
1782
- #: core/wpbc-js.php:131 inc/_ps/personal.php:264
1783
  msgid "Processing"
1784
  msgstr ""
1785
 
1786
- #: core/admin/page-form-timeslots.php:595 core/lib/wpbc_all_translations.php:283
1787
  msgid "+ Add Time Slot"
1788
  msgstr ""
1789
 
1790
  #: core/admin/page-ics-export.php:42 core/admin/page-ics-export.php:43
1791
- #: core/admin/page-ics-general.php:251 core/admin/page-ics-general.php:252
1792
- #: core/admin/page-ics-general.php:271 core/admin/page-ics-general.php:272
1793
  #: core/admin/page-ics-import.php:40 core/admin/page-ics-import.php:41
1794
  #: core/admin/page-import-gcal.php:388 core/admin/page-import-gcal.php:389
1795
- #: core/lib/wpbc_all_translations.php:284 core/wpbc-functions.php:2001
1796
  msgid "Sync"
1797
  msgstr ""
1798
 
1799
- #: core/admin/page-ics-export.php:44 core/admin/page-ics-general.php:253
1800
- #: core/admin/page-ics-general.php:386 core/admin/page-ics-general.php:394
1801
  #: core/admin/page-ics-import.php:42 core/admin/page-ics-import.php:59
1802
  #: core/admin/page-ics-import.php:60 core/admin/page-ics-import.php:62
1803
  #: core/admin/page-ics-import.php:186 core/admin/page-ics-import.php:464
1804
- #: core/admin/page-import-gcal.php:390 core/lib/wpbc_all_translations.php:285
1805
  #: core/sync/wpbc-gcal.php:465
1806
  msgid "Import"
1807
  msgstr ""
1808
 
1809
  #: core/admin/page-ics-export.php:44 core/admin/page-ics-export.php:61
1810
  #: core/admin/page-ics-export.php:62 core/admin/page-ics-export.php:64
1811
- #: core/admin/page-ics-export.php:228 core/admin/page-ics-general.php:253
1812
  #: core/admin/page-ics-import.php:42 core/admin/page-import-gcal.php:390
1813
- #: core/lib/wpbc_all_translations.php:286 inc/_ps/p-toolbar.php:142
1814
  msgid "Export"
1815
  msgstr ""
1816
 
1817
  #: core/admin/page-ics-export.php:64 core/admin/page-ics-export.php:228
1818
- #: core/lib/wpbc_all_translations.php:287
1819
  msgid "feed"
1820
  msgstr ""
1821
 
1822
  #: core/admin/page-ics-export.php:139 core/class/wpbc-class-notices.php:25
1823
- #: core/lib/wpbc_all_translations.php:288 core/sync/wpbc-gcal.php:398
1824
- #: inc/_bm/admin/page-cost-valuation.php:290 inc/_mu/multiuser.php:766
1825
  msgid "Warning!"
1826
  msgstr ""
1827
 
1828
- #: core/admin/page-ics-export.php:141 core/lib/wpbc_all_translations.php:289
1829
  #, php-format
1830
  msgid "This feature require %s"
1831
  msgstr ""
1832
 
1833
  #: core/admin/page-ics-export.php:163 core/admin/page-ics-import.php:162
1834
- #: core/lib/wpbc_all_translations.php:290 inc/_bl/admin/api-settings-l.php:162
1835
  #: inc/_bm/admin/api-settings-m.php:86 inc/_ps/form/class-wpbc-form-help.php:117
1836
  #: inc/_ps/form/class-wpbc-form-help.php:126 inc/_ps/form/class-wpbc-form-help.php:136
1837
  #: inc/_ps/form/class-wpbc-form-help.php:197 inc/_ps/form/class-wpbc-form-help.php:228
@@ -1841,187 +1874,197 @@ msgstr ""
1841
  #: inc/_ps/form/class-wpbc-form-help.php:343 inc/_ps/form/class-wpbc-form-help.php:380
1842
  #: inc/_ps/form/class-wpbc-form-help.php:382 inc/_ps/form/class-wpbc-form-help.php:497
1843
  #: inc/_ps/form/class-wpbc-form-help.php:515 inc/_ps/form/class-wpbc-form-help.php:645
1844
- #: inc/_ps/form/class-wpbc-form-help.php:659 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:439
1845
- #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:862
1846
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:750 inc/gateways/sage/wpbc-gw-sage.php:882
1847
- #: inc/gateways/stripe/wpbc-gw-stripe.php:955 js/wpbc-gutenberg.js:1102 js/wpbc-gutenberg.js:1188
 
 
1848
  msgid "Important!"
1849
  msgstr ""
1850
 
1851
  #: core/admin/page-ics-export.php:165 core/admin/page-ics-import.php:164
1852
- #: core/lib/wpbc_all_translations.php:291
1853
  #, php-format
1854
  msgid "This feature require %s plugin. You can install %s plugin from this %spage%s."
1855
  msgstr ""
1856
 
1857
  #: core/admin/page-ics-export.php:177 core/admin/page-ics-export.php:240
1858
- #: core/admin/page-ics-import.php:176 core/lib/wpbc_all_translations.php:292
1859
  msgid "How it works"
1860
  msgstr ""
1861
 
1862
  #: core/admin/page-ics-export.php:441 core/admin/page-ics-export.php:444
1863
- #: core/lib/wpbc_all_translations.php:293
1864
  msgid ".ics feed URL"
1865
  msgstr ""
1866
 
1867
- #: core/admin/page-ics-export.php:463 core/lib/wpbc_all_translations.php:294
1868
  #: inc/_ps/admin/br-table-export-feeds.php:69
1869
  msgid "Open in new window"
1870
  msgstr ""
1871
 
1872
- #: core/admin/page-ics-export.php:465 core/lib/wpbc_all_translations.php:295
1873
  msgid "Please enter URL for generating .ics feed"
1874
  msgstr ""
1875
 
1876
- #: core/admin/page-ics-export.php:468 core/lib/wpbc_all_translations.php:296
1877
  msgid "This .ics feed of bookings starting from today for 1 year"
1878
  msgstr ""
1879
 
1880
  #: core/admin/page-ics-general.php:68 core/admin/wpbc-toolbar-tiny.php:875
1881
  #: core/admin/wpbc-toolbar-tiny.php:1090 core/admin/wpbc-toolbar-tiny.php:1171
1882
- #: core/lib/wpbc_all_translations.php:297 inc/_bm/admin/api-settings-m.php:60
1883
  #: inc/_ps/wpbc-booking-select-widget.php:188
1884
  msgid "None"
1885
  msgstr ""
1886
 
1887
- #: core/admin/page-ics-general.php:101 core/lib/wpbc_all_translations.php:298
1888
  msgid "Event Title"
1889
  msgstr ""
1890
 
1891
  #: core/admin/page-ics-general.php:102 core/admin/page-ics-general.php:112
1892
- #: core/admin/page-ics-general.php:122 core/lib/wpbc_all_translations.php:299
1893
  #, php-format
1894
  msgid "Select field for assigning to %sevent property%s"
1895
  msgstr ""
1896
 
1897
- #: core/admin/page-ics-general.php:111 core/lib/wpbc_all_translations.php:300
1898
  msgid "Event Description (optional field)"
1899
  msgstr ""
1900
 
1901
- #: core/admin/page-ics-general.php:121 core/lib/wpbc_all_translations.php:301
1902
  msgid "Location"
1903
  msgstr ""
1904
 
1905
  #: core/admin/page-ics-general.php:132 core/admin/wpbc-class-listing.php:206
1906
- #: core/lib/wpbc_all_translations.php:302 core/sync/wpbc-gcal.php:314
1907
- #: inc/_bl/admin/activation-l.php:119 inc/_mu/multiuser.php:627 inc/_ps/admin/activation-p.php:45
1908
  msgid "Default"
1909
  msgstr ""
1910
 
1911
- #: core/admin/page-ics-general.php:158 core/lib/wpbc_all_translations.php:303
1912
  #: core/sync/wpbc-gcal.php:309
1913
  msgid "Timezone"
1914
  msgstr ""
1915
 
1916
- #: core/admin/page-ics-general.php:159 core/lib/wpbc_all_translations.php:304
1917
  #: core/sync/wpbc-gcal.php:343
1918
  msgid "Select a city in your required timezone, if you are having problems with dates and times."
1919
  msgstr ""
1920
 
1921
- #: core/admin/page-ics-general.php:171 core/lib/wpbc_all_translations.php:305
1922
  #: inc/_bs/admin/api-settings-s.php:314
1923
  msgid "Use check in/out time"
1924
  msgstr ""
1925
 
1926
- #: core/admin/page-ics-general.php:172 core/lib/wpbc_all_translations.php:306
1927
  msgid "Use check in/out time of plugin, during import .ics feeds"
1928
  msgstr ""
1929
 
1930
- #: core/admin/page-ics-general.php:179 core/lib/wpbc_all_translations.php:307
1931
  msgid "Append check out day"
1932
  msgstr ""
1933
 
1934
- #: core/admin/page-ics-general.php:180 core/lib/wpbc_all_translations.php:308
1935
  msgid "Append one check out day, during import .ics feeds, if activated using check in/out times"
1936
  msgstr ""
1937
 
1938
  #: core/admin/page-ics-general.php:188
1939
- msgid "Force import"
1940
  msgstr ""
1941
 
1942
  #: core/admin/page-ics-general.php:189
 
 
 
 
 
 
 
 
1943
  msgid "Import bookings without checking, if such bookings already have been imported."
1944
  msgstr ""
1945
 
1946
- #: core/admin/page-ics-general.php:197
1947
  msgid "Trash all imported bookings before new import"
1948
  msgstr ""
1949
 
1950
- #: core/admin/page-ics-general.php:198
1951
  msgid ""
1952
  "Move all previously imported bookings to trash before new import bookings. Its can resolve "
1953
  "issue of updating deleted and edited events in external sources. Its work only, if you are using "
1954
  "one source (.ics feed) for importing into specific booking resource!"
1955
  msgstr ""
1956
 
1957
- #: core/admin/page-ics-general.php:270 core/admin/page-settings.php:74
1958
- #: core/lib/wpbc_all_translations.php:309 inc/gateways/page-gateways.php:517
1959
  msgid "General"
1960
  msgstr ""
1961
 
1962
- #: core/admin/page-ics-general.php:271 core/admin/page-ics-general.php:272
1963
- #: core/admin/page-ics-general.php:379 core/admin/page-import-gcal.php:485
1964
  #: core/admin/page-settings.php:75 core/admin/page-settings.php:76
1965
- #: core/lib/wpbc_all_translations.php:310 core/wpbc.php:188
1966
  msgid "General Settings"
1967
  msgstr ""
1968
 
1969
- #: core/admin/page-ics-general.php:386 core/lib/wpbc_all_translations.php:311
1970
  msgid "Assign events fields to specific booking form field"
1971
  msgstr ""
1972
 
1973
- #: core/admin/page-ics-general.php:394 core/admin/page-settings.php:116
1974
- #: core/admin/page-settings.php:238 core/lib/wpbc_all_translations.php:312
1975
- #: inc/_bl/admin/page-search.php:472 inc/_bl/admin/page-search.php:632
1976
- #: inc/_bl/admin/page-search.php:666 inc/_bl/wpbc-search-availability.php:167
1977
- #: inc/_bl/wpbc-search-availability.php:619 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:891
1978
  #: inc/gateways/ideal/wpbc-gw-ideal.php:914 inc/gateways/ipay88/wpbc-gw-ipay88.php:774
1979
  #: inc/gateways/paypal/wpbc-gw-paypal.php:1052 inc/gateways/sage/wpbc-gw-sage.php:904
1980
- #: inc/gateways/stripe/wpbc-gw-stripe.php:977
1981
  msgid "Advanced"
1982
  msgstr ""
1983
 
1984
- #: core/admin/page-ics-import.php:62 core/lib/wpbc_all_translations.php:313
1985
  msgid "feeds"
1986
  msgstr ""
1987
 
1988
- #: core/admin/page-ics-import.php:433 core/admin/wpbc-sql.php:588
1989
- #: core/admin/wpbc-toolbar-tiny.php:331 core/lib/wpbc_all_translations.php:314
1990
- #: inc/_bl/admin/page-coupons.php:1409 inc/_ps/p-toolbar.php:925 inc/_ps/p-toolbar.php:956
1991
  msgid "parent resource"
1992
  msgstr ""
1993
 
1994
- #: core/admin/page-ics-import.php:455 core/lib/wpbc_all_translations.php:315
1995
  msgid "Enter URL to .ics feed"
1996
  msgstr ""
1997
 
1998
- #: core/admin/page-ics-import.php:460 core/lib/wpbc_all_translations.php:316
1999
  msgid "Choose file"
2000
  msgstr ""
2001
 
2002
- #: core/admin/page-ics-import.php:461 core/lib/wpbc_all_translations.php:317
2003
  msgid "Insert file URL"
2004
  msgstr ""
2005
 
2006
- #: core/admin/page-ics-import.php:462 core/lib/wpbc_all_translations.php:318
2007
  msgid "Upload / Select "
2008
  msgstr ""
2009
 
2010
- #: core/admin/page-ics-import.php:499 core/lib/wpbc_all_translations.php:319
2011
  msgid "What does .ics feeds import/export mean?"
2012
  msgstr ""
2013
 
2014
- #: core/admin/page-ics-import.php:507 core/lib/wpbc_all_translations.php:320
2015
  #, php-format
2016
  msgid "Its useful, if you need to import/export bookings from/to external websites, like %s"
2017
  msgstr ""
2018
 
2019
- #: core/admin/page-ics-import.php:515 core/lib/wpbc_all_translations.php:321
2020
  msgid "and any other calendar that uses .ics format"
2021
  msgstr ""
2022
 
2023
- #: core/admin/page-ics-import.php:529 core/class/wpbc-class-welcome.php:579
2024
- #: core/lib/wpbc_all_translations.php:322
2025
  #, php-format
2026
  msgid ""
2027
  ".ics - is a file format of iCalendar standard for exchanging calendar and scheduling information "
@@ -2029,34 +2072,34 @@ msgid ""
2029
  "calendars updated and synchronized."
2030
  msgstr ""
2031
 
2032
- #: core/admin/page-ics-import.php:550
2033
  msgid "Is it automatic process?"
2034
  msgstr ""
2035
 
2036
- #: core/admin/page-ics-import.php:560
2037
  msgid ""
2038
  "By default .ics import is not automatic process. You need to set up CRON script on your server "
2039
  "to periodically access front-end page(s) with import .ics feeds shortcodes."
2040
  msgstr ""
2041
 
2042
- #: core/admin/page-ics-import.php:579 core/lib/wpbc_all_translations.php:323
2043
  msgid "How to start import of .ics feeds (files)?"
2044
  msgstr ""
2045
 
2046
  #: core/admin/page-ics-import.php:586 core/admin/page-ics-import.php:633
2047
- #: core/lib/wpbc_all_translations.php:324
2048
  #, php-format
2049
  msgid "Install %s plugin."
2050
  msgstr ""
2051
 
2052
- #: core/admin/page-ics-import.php:590 core/lib/wpbc_all_translations.php:325
2053
  #, php-format
2054
  msgid ""
2055
  "Insert %s shortcode into some post(s) or page(s). Check more info about this %sshortcode "
2056
  "configuration%s"
2057
  msgstr ""
2058
 
2059
- #: core/admin/page-ics-import.php:599 core/lib/wpbc_all_translations.php:326
2060
  #, php-format
2061
  msgid ""
2062
  "Using such shortcodes in pages give a great flexibility to import from different .ics feeds "
@@ -2064,26 +2107,26 @@ msgid ""
2064
  "accessing such different pages with different time intervals."
2065
  msgstr ""
2066
 
2067
- #: core/admin/page-ics-import.php:608 core/lib/wpbc_all_translations.php:327
2068
  msgid "Or you can import .ics feed or file directly at current page."
2069
  msgstr ""
2070
 
2071
- #: core/admin/page-ics-import.php:615 core/lib/wpbc_all_translations.php:328
2072
  #, php-format
2073
  msgid ""
2074
  "If you have inserted import shortcodes from %s, then you can configure your CRON for "
2075
  "periodically access these pages and import .ics feeds."
2076
  msgstr ""
2077
 
2078
- #: core/admin/page-ics-import.php:626 core/lib/wpbc_all_translations.php:329
2079
  msgid "How to start export of .ics feeds (files)?"
2080
  msgstr ""
2081
 
2082
- #: core/admin/page-ics-import.php:637 core/lib/wpbc_all_translations.php:330
2083
  msgid "Configure ULR feed(s) at this settings page."
2084
  msgstr ""
2085
 
2086
- #: core/admin/page-ics-import.php:642 core/lib/wpbc_all_translations.php:331
2087
  #, php-format
2088
  msgid ""
2089
  "Using such URL(s) you can import .ics feeds, from interface of other websites. %sCheck more "
@@ -2091,26 +2134,26 @@ msgid ""
2091
  "website."
2092
  msgstr ""
2093
 
2094
- #: core/admin/page-ics-import.php:651 core/lib/wpbc_all_translations.php:332
2095
  msgid "Visit these (previously configured URL feeds) pages for downloading .ics files."
2096
  msgstr ""
2097
 
2098
- #: core/admin/page-ics-import.php:706 core/lib/wpbc_all_translations.php:333
2099
- #: core/sync/wpbc-gcal-class.php:457 core/sync/wpbc-gcal.php:102 inc/_ps/personal.php:429
2100
  msgid "Done"
2101
  msgstr ""
2102
 
2103
- #: core/admin/page-import-gcal.php:60 core/lib/wpbc_all_translations.php:334
2104
  msgid "Activate auto import"
2105
  msgstr ""
2106
 
2107
- #: core/admin/page-import-gcal.php:61 core/lib/wpbc_all_translations.php:335
2108
  #, php-format
2109
  msgid "Check this box to %sactivate%s auto import events and creation bookings from them"
2110
  msgstr ""
2111
 
2112
- #: core/admin/page-import-gcal.php:71 core/admin/wpbc-toolbars.php:563
2113
- #: core/admin/wpbc-toolbars.php:797 core/lib/wpbc_all_translations.php:336 core/wpbc-emails.php:206
2114
  #: inc/_bm/admin/page-cost-advanced.php:461 inc/_bm/admin/page-cost-deposit.php:223
2115
  #: inc/_bm/admin/page-cost-early-late-booking.php:230
2116
  #: inc/_bm/admin/page-cost-early-late-booking.php:428 inc/_bm/admin/page-cost-valuation.php:346
@@ -2120,217 +2163,218 @@ msgid "day"
2120
  msgstr ""
2121
 
2122
  #: core/admin/page-import-gcal.php:73 core/admin/page-import-gcal.php:197
2123
- #: core/admin/page-import-gcal.php:279 core/admin/wpbc-toolbars.php:564
2124
- #: core/admin/wpbc-toolbars.php:565 core/admin/wpbc-toolbars.php:566
2125
- #: core/admin/wpbc-toolbars.php:567 core/admin/wpbc-toolbars.php:568
2126
- #: core/admin/wpbc-toolbars.php:798 core/admin/wpbc-toolbars.php:799
2127
- #: core/admin/wpbc-toolbars.php:800 core/admin/wpbc-toolbars.php:801
2128
- #: core/admin/wpbc-toolbars.php:802 core/lib/wpbc_all_translations.php:337
2129
- #: core/sync/wpbc-gcal.php:208 core/sync/wpbc-gcal.php:272 inc/_bl/admin/page-search.php:82
2130
  #: inc/_bm/admin/page-cost-deposit.php:225 inc/_bm/admin/page-cost-early-late-booking.php:228
2131
  #: inc/_bm/admin/page-cost-early-late-booking.php:430 inc/_bm/admin/page-cost-valuation.php:190
2132
  #: inc/_bm/admin/page-cost-valuation.php:348 inc/_bm/admin/page-cost-valuation.php:481
2133
  #: inc/_bm/admin/page-seasons.php:1051 inc/_bs/admin/api-settings-s.php:536
2134
- #: inc/_ps/wpbc-form-templates.php:244
2135
  msgid "days"
2136
  msgstr ""
2137
 
2138
- #: core/admin/page-import-gcal.php:78 core/lib/wpbc_all_translations.php:338
2139
  msgid "Import events every"
2140
  msgstr ""
2141
 
2142
- #: core/admin/page-import-gcal.php:79 core/lib/wpbc_all_translations.php:339
2143
  msgid "Select time duration of import requests."
2144
  msgstr ""
2145
 
2146
- #: core/admin/page-import-gcal.php:95 core/lib/wpbc_all_translations.php:340
2147
  msgid "Google API Key"
2148
  msgstr ""
2149
 
2150
- #: core/admin/page-import-gcal.php:96 core/lib/wpbc_all_translations.php:341
2151
  msgid "Please enter your Google API key. This field required to import events."
2152
  msgstr ""
2153
 
2154
- #: core/admin/page-import-gcal.php:98 core/lib/wpbc_all_translations.php:342
2155
- #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:348
2156
- #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:386
2157
- #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:417 inc/gateways/ideal/wpbc-gw-ideal.php:422
2158
  #: inc/gateways/ideal/wpbc-gw-ideal.php:477 inc/gateways/ideal/wpbc-gw-ideal.php:481
2159
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:329 inc/gateways/paypal/wpbc-gw-paypal.php:529
2160
  #: inc/gateways/sage/wpbc-gw-sage.php:508 inc/gateways/stripe/wpbc-gw-stripe.php:428
2161
- #: inc/gateways/stripe/wpbc-gw-stripe.php:593
 
2162
  msgid "Note:"
2163
  msgstr ""
2164
 
2165
- #: core/admin/page-import-gcal.php:99 core/lib/wpbc_all_translations.php:343
2166
  #, php-format
2167
  msgid "You can check in this %sinstruction how to generate and use your Google API key%s."
2168
  msgstr ""
2169
 
2170
- #: core/admin/page-import-gcal.php:120 core/lib/wpbc_all_translations.php:344
2171
  #: inc/_ps/admin/br-table-import-gcal-p.php:148
2172
  msgid "Google Calendar ID"
2173
  msgstr ""
2174
 
2175
- #: core/admin/page-import-gcal.php:138 core/lib/wpbc_all_translations.php:345
2176
  #: core/sync/wpbc-gcal.php:295
2177
  msgid "Maximum number"
2178
  msgstr ""
2179
 
2180
- #: core/admin/page-import-gcal.php:139 core/lib/wpbc_all_translations.php:346
2181
  #: core/sync/wpbc-gcal.php:298
2182
  msgid "You can specify the maximum number of events to import during one session."
2183
  msgstr ""
2184
 
2185
  #: core/admin/page-import-gcal.php:148 core/admin/page-import-gcal.php:230
2186
- #: core/lib/wpbc_all_translations.php:347 core/sync/wpbc-gcal.php:184 core/sync/wpbc-gcal.php:248
2187
  msgid "Now"
2188
  msgstr ""
2189
 
2190
  #: core/admin/page-import-gcal.php:149 core/admin/page-import-gcal.php:231
2191
- #: core/lib/wpbc_all_translations.php:348 core/sync/wpbc-gcal.php:185 core/sync/wpbc-gcal.php:249
2192
  msgid "00:00 today"
2193
  msgstr ""
2194
 
2195
  #: core/admin/page-import-gcal.php:150 core/admin/page-import-gcal.php:232
2196
- #: core/lib/wpbc_all_translations.php:349 core/sync/wpbc-gcal.php:186 core/sync/wpbc-gcal.php:250
2197
  msgid "Start of current week"
2198
  msgstr ""
2199
 
2200
  #: core/admin/page-import-gcal.php:151 core/admin/page-import-gcal.php:233
2201
- #: core/lib/wpbc_all_translations.php:350 core/sync/wpbc-gcal.php:187 core/sync/wpbc-gcal.php:251
2202
  msgid "Start of current month"
2203
  msgstr ""
2204
 
2205
  #: core/admin/page-import-gcal.php:152 core/admin/page-import-gcal.php:234
2206
- #: core/lib/wpbc_all_translations.php:351 core/sync/wpbc-gcal.php:188 core/sync/wpbc-gcal.php:252
2207
  msgid "End of current month"
2208
  msgstr ""
2209
 
2210
- #: core/admin/page-import-gcal.php:153 core/lib/wpbc_all_translations.php:352
2211
  #: core/sync/wpbc-gcal.php:189
2212
  msgid "The start of time"
2213
  msgstr ""
2214
 
2215
  #: core/admin/page-import-gcal.php:154 core/admin/page-import-gcal.php:236
2216
- #: core/lib/wpbc_all_translations.php:353 core/sync/wpbc-gcal.php:190 core/sync/wpbc-gcal.php:254
2217
  msgid "Specific date / time"
2218
  msgstr ""
2219
 
2220
- #: core/admin/page-import-gcal.php:160 core/lib/wpbc_all_translations.php:354
2221
  #: core/sync/wpbc-gcal.php:197
2222
  msgid "Select option, when to start retrieving events."
2223
  msgstr ""
2224
 
2225
  #: core/admin/page-import-gcal.php:175 core/admin/page-import-gcal.php:257
2226
- #: core/lib/wpbc_all_translations.php:355 core/sync/wpbc-gcal.php:199 core/sync/wpbc-gcal.php:263
2227
  msgid "Offset"
2228
  msgstr ""
2229
 
2230
  #: core/admin/page-import-gcal.php:176 core/admin/page-import-gcal.php:258
2231
- #: core/lib/wpbc_all_translations.php:356 core/sync/wpbc-gcal.php:199 core/sync/wpbc-gcal.php:263
2232
  msgid "Enter date / time"
2233
  msgstr ""
2234
 
2235
  #: core/admin/page-import-gcal.php:194 core/admin/page-import-gcal.php:276
2236
- #: core/lib/wpbc_all_translations.php:357 core/sync/wpbc-gcal.php:205 core/sync/wpbc-gcal.php:269
2237
  msgid "seconds"
2238
  msgstr ""
2239
 
2240
  #: core/admin/page-import-gcal.php:216 core/admin/page-import-gcal.php:298
2241
- #: core/lib/wpbc_all_translations.php:358 core/sync/wpbc-gcal.php:215
2242
  msgid ""
2243
  "You can specify an additional offset from you chosen start point. The offset can be negative."
2244
  msgstr ""
2245
 
2246
  #: core/admin/page-import-gcal.php:219 core/admin/page-import-gcal.php:301
2247
- #: core/lib/wpbc_all_translations.php:359 core/sync/wpbc-gcal.php:218 core/sync/wpbc-gcal.php:282
2248
  #, php-format
2249
  msgid "Type your date in format %s. Example: %s"
2250
  msgstr ""
2251
 
2252
- #: core/admin/page-import-gcal.php:235 core/lib/wpbc_all_translations.php:360
2253
  #: core/sync/wpbc-gcal.php:253
2254
  msgid "The end of time"
2255
  msgstr ""
2256
 
2257
  #: core/admin/page-import-gcal.php:241 core/admin/wpbc-toolbar-tiny.php:614
2258
- #: core/lib/wpbc_all_translations.php:361 core/sync/wpbc-gcal.php:235
2259
  msgid "Until"
2260
  msgstr ""
2261
 
2262
- #: core/admin/page-import-gcal.php:242 core/lib/wpbc_all_translations.php:362
2263
  #: core/sync/wpbc-gcal.php:261
2264
  msgid "Select option, when to stop retrieving events."
2265
  msgstr ""
2266
 
2267
- #: core/admin/page-import-gcal.php:318 core/lib/wpbc_all_translations.php:363
2268
  msgid "To get Google Calendar API key please follow this instruction"
2269
  msgstr ""
2270
 
2271
- #: core/admin/page-import-gcal.php:320 core/lib/wpbc_all_translations.php:364
2272
  #, php-format
2273
  msgid "Go to Google Developer Console: %s."
2274
  msgstr ""
2275
 
2276
- #: core/admin/page-import-gcal.php:321 core/lib/wpbc_all_translations.php:365
2277
  msgid "Give your project a name and click \"Create\"."
2278
  msgstr ""
2279
 
2280
- #: core/admin/page-import-gcal.php:322 core/lib/wpbc_all_translations.php:366
2281
  msgid "In the sidebar click on \"APIs & auth\"."
2282
  msgstr ""
2283
 
2284
- #: core/admin/page-import-gcal.php:323 core/lib/wpbc_all_translations.php:367
2285
  msgid "Click APIs and make sure \"Calendar API\" is set to ON."
2286
  msgstr ""
2287
 
2288
- #: core/admin/page-import-gcal.php:324 core/lib/wpbc_all_translations.php:368
2289
  msgid "Now click on \"Credentials\" in the sidebar."
2290
  msgstr ""
2291
 
2292
- #: core/admin/page-import-gcal.php:325 core/lib/wpbc_all_translations.php:369
2293
  msgid "Under the section \"Public API access\" click the button \"Create new Key\"."
2294
  msgstr ""
2295
 
2296
- #: core/admin/page-import-gcal.php:326 core/lib/wpbc_all_translations.php:370
2297
  msgid "On the popup click the button \"Server Key\" and click \"Create\"."
2298
  msgstr ""
2299
 
2300
- #: core/admin/page-import-gcal.php:327 core/lib/wpbc_all_translations.php:371
2301
  #, php-format
2302
  msgid ""
2303
  "You will now see a table loaded with the top item being the API Key. Copy this and paste it into "
2304
  "%sGoogle API Key%s field at this page."
2305
  msgstr ""
2306
 
2307
- #: core/admin/page-import-gcal.php:330 core/lib/wpbc_all_translations.php:372
2308
  msgid "Set Your Calendar to Public"
2309
  msgstr ""
2310
 
2311
  #: core/admin/page-import-gcal.php:332 core/admin/page-import-gcal.php:340
2312
- #: core/lib/wpbc_all_translations.php:373
2313
  msgid "Navigate to your Google calendars."
2314
  msgstr ""
2315
 
2316
  #: core/admin/page-import-gcal.php:333 core/admin/page-import-gcal.php:341
2317
- #: core/lib/wpbc_all_translations.php:374
2318
  msgid "Open the settings for the calendar."
2319
  msgstr ""
2320
 
2321
- #: core/admin/page-import-gcal.php:334 core/lib/wpbc_all_translations.php:375
2322
  msgid "Click the \"Share this Calendar\" link."
2323
  msgstr ""
2324
 
2325
- #: core/admin/page-import-gcal.php:335 core/lib/wpbc_all_translations.php:376
2326
  msgid "Click the checkbox to make calendar public. Do not check the other option."
2327
  msgstr ""
2328
 
2329
- #: core/admin/page-import-gcal.php:338 core/lib/wpbc_all_translations.php:377
2330
  msgid "Find Your Calendar ID"
2331
  msgstr ""
2332
 
2333
- #: core/admin/page-import-gcal.php:342 core/lib/wpbc_all_translations.php:378
2334
  #, php-format
2335
  msgid ""
2336
  "Now copy the Calendar ID to use in the plugin settings in your WordPress admin. Make sure to "
@@ -2338,76 +2382,82 @@ msgid ""
2338
  msgstr ""
2339
 
2340
  #: core/admin/page-import-gcal.php:407 core/admin/page-import-gcal.php:408
2341
- #: core/admin/page-import-gcal.php:409 core/lib/wpbc_all_translations.php:379
2342
  #: core/sync/wpbc-gcal.php:443 core/sync/wpbc-gcal.php:466
2343
  msgid "Import Google Calendar Events"
2344
  msgstr ""
2345
 
2346
  #: core/admin/page-import-gcal.php:487 core/admin/page-import-gcal.php:534
2347
- #: core/lib/wpbc_all_translations.php:380
2348
  msgid "Auto import events"
2349
  msgstr ""
2350
 
2351
  #: core/admin/page-import-gcal.php:489 core/admin/page-import-gcal.php:542
2352
- #: core/lib/wpbc_all_translations.php:381
2353
  msgid "Default settings for retrieving events"
2354
  msgstr ""
2355
 
2356
- #: core/admin/page-import-gcal.php:525 core/lib/wpbc_all_translations.php:382
2357
  msgid "Google Calendar - General Settings"
2358
  msgstr ""
2359
 
2360
- #: core/admin/page-settings.php:88 core/admin/page-settings.php:198
2361
- #: core/admin/wpbc-toolbar-tiny.php:242 core/lib/wpbc_all_translations.php:383
2362
  #: inc/_ps/form/class-wpbc-form-help.php:115
2363
  msgid "Calendar"
2364
  msgstr ""
2365
 
2366
- #: core/admin/page-settings.php:93 core/admin/page-settings.php:205
2367
- #: core/lib/wpbc_all_translations.php:384 core/wpbc-functions.php:1948
2368
  #: inc/_bm/admin/page-availability.php:47 inc/_bm/admin/page-availability.php:504
2369
  #: inc/_bm/admin/page-availability.php:596 inc/_bm/admin/page-availability.php:597
2370
- #: inc/_ps/wpbc-form-templates.php:279 inc/_ps/wpbc-form-templates.php:296
 
2371
  msgid "Availability"
2372
  msgstr ""
2373
 
2374
- #: core/admin/page-settings.php:103 core/admin/page-settings.php:219
2375
- #: core/lib/wpbc_all_translations.php:385
2376
  msgid "Booking Admin Panel"
2377
  msgstr ""
2378
 
2379
- #: core/admin/page-settings.php:111 core/lib/wpbc_all_translations.php:386
 
 
 
 
 
2380
  msgid "Auto cancellation / approval"
2381
  msgstr ""
2382
 
2383
- #: core/admin/page-settings.php:121 core/admin/page-settings.php:254
2384
- #: core/lib/wpbc_all_translations.php:387
2385
  msgid "Plugin Menu"
2386
  msgstr ""
2387
 
2388
- #: core/admin/page-settings.php:126 core/lib/wpbc_all_translations.php:388
2389
  msgid "Uninstall"
2390
  msgstr ""
2391
 
2392
- #: core/admin/page-settings.php:229 core/lib/wpbc_all_translations.php:389
2393
  msgid "Auto cancellation / auto approval of bookings"
2394
  msgstr ""
2395
 
2396
- #: core/admin/page-settings.php:247 core/lib/wpbc_all_translations.php:390
2397
  msgid "Information"
2398
  msgstr ""
2399
 
2400
- #: core/admin/page-settings.php:261 core/lib/wpbc_all_translations.php:391
2401
  msgid "Uninstall / deactivation"
2402
  msgstr ""
2403
 
2404
  #: core/admin/page-up.php:38 core/admin/wpbc-dashboard.php:505
2405
- #: core/lib/wpbc_all_translations.php:392 inc/_ps/admin/page-settings-up.php:38
2406
  msgid "Upgrade"
2407
  msgstr ""
2408
 
2409
  #: core/admin/wpbc-class-listing.php:103 core/admin/wpbc-toolbar-tiny.php:1520
2410
- #: core/admin/wpbc-toolbar-tiny.php:1529 core/lib/wpbc_all_translations.php:393
2411
  #: inc/_bl/admin/page-coupons.php:1003 inc/_bl/admin/page-coupons.php:1005
2412
  #: inc/_bl/wpbc-search-availability.php:629 inc/_bl/wpdev-booking-search-widget.php:75
2413
  #: inc/_bm/admin/page-availability.php:814 inc/_bm/admin/page-cost-deposit.php:81
@@ -2417,313 +2467,325 @@ msgstr ""
2417
  msgid "Nothing Found"
2418
  msgstr ""
2419
 
2420
- #: core/admin/wpbc-class-listing.php:125 core/lib/wpbc_all_translations.php:394
2421
  #: inc/_ps/wpbc-print.php:83
2422
  msgid "Labels"
2423
  msgstr ""
2424
 
2425
- #: core/admin/wpbc-class-listing.php:129 core/lib/wpbc_all_translations.php:395
2426
  msgid "Booking Data"
2427
  msgstr ""
2428
 
2429
- #: core/admin/wpbc-class-listing.php:130 core/lib/wpbc_all_translations.php:396
2430
  msgid "Booking Dates"
2431
  msgstr ""
2432
 
2433
- #: core/admin/wpbc-class-listing.php:133 core/lib/wpbc_all_translations.php:397
2434
  msgid "Show ALL dates of booking"
2435
  msgstr ""
2436
 
2437
- #: core/admin/wpbc-class-listing.php:139 core/lib/wpbc_all_translations.php:398
2438
  msgid "Show only check in/out dates"
2439
  msgstr ""
2440
 
2441
- #: core/admin/wpbc-class-listing.php:221 core/lib/wpbc_all_translations.php:399
2442
  msgid "Resource not exist"
2443
  msgstr ""
2444
 
2445
- #: core/admin/wpbc-class-listing.php:252 core/lib/wpbc_all_translations.php:400
2446
  #: inc/_bs/lib_s.php:294 inc/_bs/lib_s.php:309
2447
  msgid "Unknown"
2448
  msgstr ""
2449
 
2450
- #: core/admin/wpbc-class-listing.php:335
2451
  msgid "Imported"
2452
  msgstr ""
2453
 
2454
- #: core/admin/wpbc-class-listing.php:399 core/lib/wpbc_all_translations.php:401
2455
  msgid "Move to trash"
2456
  msgstr ""
2457
 
2458
- #: core/admin/wpbc-class-listing.php:405 core/admin/wpbc-toolbars.php:1007
2459
- #: core/lib/wpbc_all_translations.php:402
2460
  msgid "Restore"
2461
  msgstr ""
2462
 
2463
- #: core/admin/wpbc-class-listing.php:409 core/lib/wpbc_all_translations.php:403
2464
  msgid "Do you really want to delete this booking ?"
2465
  msgstr ""
2466
 
2467
- #: core/admin/wpbc-class-listing.php:411 core/lib/wpbc_all_translations.php:404
2468
  #: inc/_bl/admin/page-coupons.php:814 inc/_bm/admin/page-seasons.php:608
2469
  msgid "Completely Delete"
2470
  msgstr ""
2471
 
2472
- #: core/admin/wpbc-class-listing.php:420 core/admin/wpbc-toolbars.php:945
2473
- #: core/lib/wpbc_all_translations.php:405
2474
  msgid "Approve"
2475
  msgstr ""
2476
 
2477
- #: core/admin/wpbc-class-listing.php:425 core/admin/wpbc-toolbars.php:963
2478
- #: core/lib/wpbc_all_translations.php:406
2479
  msgid "Do you really want to set booking as pending ?"
2480
  msgstr ""
2481
 
2482
- #: core/admin/wpbc-class-listing.php:436 core/lib/wpbc_all_translations.php:407
2483
  #: inc/_bs/lib_s.php:337
2484
  msgid "Created"
2485
  msgstr ""
2486
 
2487
  #: core/admin/wpbc-class-timeline.php:85 core/admin/wpbc-class-timeline.php:94
2488
- #: core/lib/wpbc_all_translations.php:408
 
2489
  msgid "Mon"
2490
  msgstr ""
2491
 
2492
  #: core/admin/wpbc-class-timeline.php:86 core/admin/wpbc-class-timeline.php:95
2493
- #: core/lib/wpbc_all_translations.php:409
 
2494
  msgid "Tue"
2495
  msgstr ""
2496
 
2497
  #: core/admin/wpbc-class-timeline.php:87 core/admin/wpbc-class-timeline.php:96
2498
- #: core/lib/wpbc_all_translations.php:410
 
2499
  msgid "Wed"
2500
  msgstr ""
2501
 
2502
  #: core/admin/wpbc-class-timeline.php:88 core/admin/wpbc-class-timeline.php:97
2503
- #: core/lib/wpbc_all_translations.php:411
 
2504
  msgid "Thu"
2505
  msgstr ""
2506
 
2507
  #: core/admin/wpbc-class-timeline.php:89 core/admin/wpbc-class-timeline.php:98
2508
- #: core/lib/wpbc_all_translations.php:412
 
2509
  msgid "Fri"
2510
  msgstr ""
2511
 
2512
  #: core/admin/wpbc-class-timeline.php:90 core/admin/wpbc-class-timeline.php:99
2513
- #: core/lib/wpbc_all_translations.php:413
 
2514
  msgid "Sat"
2515
  msgstr ""
2516
 
2517
  #: core/admin/wpbc-class-timeline.php:91 core/admin/wpbc-class-timeline.php:100
2518
- #: core/lib/wpbc_all_translations.php:414
 
2519
  msgid "Sun"
2520
  msgstr ""
2521
 
2522
  #: core/admin/wpbc-class-timeline.php:1208 core/admin/wpbc-class-timeline.php:1453
2523
- #: core/lib/wpbc_all_translations.php:415 inc/_ps/wpbc-form-templates.php:155
 
2524
  msgid "Times"
2525
  msgstr ""
2526
 
2527
- #: core/admin/wpbc-class-timeline.php:2231 core/lib/wpbc_all_translations.php:416
 
 
2528
  msgid "Decline"
2529
  msgstr ""
2530
 
2531
- #: core/admin/wpbc-class-timeline.php:2232 core/lib/wpbc_all_translations.php:417
 
2532
  msgid "Pay"
2533
  msgstr ""
2534
 
2535
  #: core/admin/wpbc-class-timeline.php:2285 core/admin/wpbc-class-timeline.php:2288
2536
- #: core/lib/wpbc_all_translations.php:418 core/wpbc-functions.php:1993 inc/_bs/lib_s.php:42
2537
- #: inc/_bs/lib_s.php:271 inc/_bs/lib_s.php:273 inc/_ps/admin/page-settings-form.php:352
2538
- #: inc/_ps/admin/page-settings-form.php:363
 
2539
  msgid "Payment"
2540
  msgstr ""
2541
 
2542
  #: core/admin/wpbc-dashboard.php:35 core/admin/wpbc-toolbar-tiny.php:227
2543
- #: core/lib/wpbc_all_translations.php:419 core/lib/wpdev-booking-widget.php:14
2544
  #: core/wpbc-functions.php:1844 core/wpbc.php:138 core/wpbc.php:167 core/wpbc.php:178
2545
  #: core/wpbc.php:189
2546
  msgid "Booking Calendar"
2547
  msgstr ""
2548
 
2549
  #: core/admin/wpbc-dashboard.php:319 core/admin/wpbc-dashboard.php:333
2550
- #: core/lib/wpbc_all_translations.php:420
2551
  msgid "Video guide"
2552
  msgstr ""
2553
 
2554
- #: core/admin/wpbc-dashboard.php:344 core/lib/wpbc_all_translations.php:421
2555
  msgid "Support"
2556
  msgstr ""
2557
 
2558
- #: core/admin/wpbc-dashboard.php:355 core/lib/wpbc_all_translations.php:422
2559
  msgid "Getting Started"
2560
  msgstr ""
2561
 
2562
- #: core/admin/wpbc-dashboard.php:359 core/lib/wpbc_all_translations.php:423
2563
  msgid "Help Info"
2564
  msgstr ""
2565
 
2566
- #: core/admin/wpbc-dashboard.php:362 core/admin/wpbc-toolbars.php:437
2567
- #: core/lib/wpbc_all_translations.php:424
2568
  msgid "FAQ"
2569
  msgstr ""
2570
 
2571
- #: core/admin/wpbc-dashboard.php:365 core/lib/wpbc_all_translations.php:425
2572
  msgid "Contact email"
2573
  msgstr ""
2574
 
2575
- #: core/admin/wpbc-dashboard.php:368 core/lib/wpbc_all_translations.php:426
2576
  msgid "Rate plugin (thanks:)"
2577
  msgstr ""
2578
 
2579
- #: core/admin/wpbc-dashboard.php:446 core/lib/wpbc_all_translations.php:427
2580
  msgid "Current version"
2581
  msgstr ""
2582
 
2583
- #: core/admin/wpbc-dashboard.php:451 core/lib/wpbc_all_translations.php:428
2584
  msgid "Demo"
2585
  msgstr ""
2586
 
2587
- #: core/admin/wpbc-dashboard.php:455 core/lib/wpbc_all_translations.php:429
2588
  msgid "Version"
2589
  msgstr ""
2590
 
2591
- #: core/admin/wpbc-dashboard.php:475 core/lib/wpbc_all_translations.php:430
2592
  msgid "Used for"
2593
  msgstr ""
2594
 
2595
- #: core/admin/wpbc-dashboard.php:484 core/lib/wpbc_all_translations.php:431
2596
  msgid "websites"
2597
  msgstr ""
2598
 
2599
- #: core/admin/wpbc-dashboard.php:486 core/lib/wpbc_all_translations.php:432
2600
  msgid "website"
2601
  msgstr ""
2602
 
2603
- #: core/admin/wpbc-dashboard.php:492 core/lib/wpbc_all_translations.php:433
2604
  msgid "Release date"
2605
  msgstr ""
2606
 
2607
- #: core/admin/wpbc-dashboard.php:507 core/lib/wpbc_all_translations.php:434
2608
  msgid "Explore Premium Features"
2609
  msgstr ""
2610
 
2611
- #: core/admin/wpbc-dashboard.php:525 core/lib/wpbc_all_translations.php:435
2612
  msgid "Statistic"
2613
  msgstr ""
2614
 
2615
- #: core/admin/wpbc-dashboard.php:529 core/lib/wpbc_all_translations.php:436
2616
  msgid "New (unverified) booking(s)"
2617
  msgstr ""
2618
 
2619
- #: core/admin/wpbc-dashboard.php:533 core/lib/wpbc_all_translations.php:437
2620
  msgid "Pending booking(s)"
2621
  msgstr ""
2622
 
2623
- #: core/admin/wpbc-dashboard.php:538 core/lib/wpbc_all_translations.php:438
2624
  msgid "Agenda"
2625
  msgstr ""
2626
 
2627
- #: core/admin/wpbc-dashboard.php:542 core/lib/wpbc_all_translations.php:439
2628
  msgid "New booking(s) made today"
2629
  msgstr ""
2630
 
2631
- #: core/admin/wpbc-dashboard.php:546 core/lib/wpbc_all_translations.php:440
2632
  msgid "Bookings for today"
2633
  msgstr ""
2634
 
2635
  #: core/admin/wpbc-toolbar-tiny.php:35 core/admin/wpbc-toolbar-tiny.php:2463
2636
- #: core/lib/wpbc_all_translations.php:441
2637
  msgid "Insert booking calendar"
2638
  msgstr ""
2639
 
2640
  #: core/admin/wpbc-toolbar-tiny.php:36 core/admin/wpbc-toolbar-tiny.php:2464
2641
- #: core/lib/wpbc_all_translations.php:442
2642
  msgid "Booking calendar"
2643
  msgstr ""
2644
 
2645
- #: core/admin/wpbc-toolbar-tiny.php:225 core/lib/wpbc_all_translations.php:443
2646
  msgid "Insert Shortcode"
2647
  msgstr ""
2648
 
2649
- #: core/admin/wpbc-toolbar-tiny.php:241 core/lib/wpbc_all_translations.php:444
2650
- #: inc/_ps/admin/api-settings-p.php:192
2651
  msgid "TimeLine"
2652
  msgstr ""
2653
 
2654
- #: core/admin/wpbc-toolbar-tiny.php:244 core/lib/wpbc_all_translations.php:445
2655
  msgid "Resources Selection"
2656
  msgstr ""
2657
 
2658
- #: core/admin/wpbc-toolbar-tiny.php:246 core/lib/wpbc_all_translations.php:446
2659
- #: core/wpbc-functions.php:2011 inc/_bl/admin/page-search.php:286 inc/_bl/biz_l.php:829
2660
  #: inc/_bl/biz_l.php:843
2661
  msgid "Search"
2662
  msgstr ""
2663
 
2664
- #: core/admin/wpbc-toolbar-tiny.php:247 core/lib/wpbc_all_translations.php:447
2665
  msgid "Only Form"
2666
  msgstr ""
2667
 
2668
- #: core/admin/wpbc-toolbar-tiny.php:250 core/lib/wpbc_all_translations.php:448
2669
  #: inc/_ps/form/class-wpbc-form-help.php:754
2670
  msgid "Other"
2671
  msgstr ""
2672
 
2673
- #: core/admin/wpbc-toolbar-tiny.php:298 core/lib/wpbc_all_translations.php:449
2674
  msgid "Insert into page"
2675
  msgstr ""
2676
 
2677
  #: core/admin/wpbc-toolbar-tiny.php:371 core/admin/wpbc-toolbar-tiny.php:1151
2678
- #: core/lib/wpbc_all_translations.php:450 core/wpbc.php:177 inc/_ps/admin/page-resources.php:40
2679
- #: inc/_ps/p-toolbar.php:696
2680
  msgid "Booking resources"
2681
  msgstr ""
2682
 
2683
- #: core/admin/wpbc-toolbar-tiny.php:372 core/lib/wpbc_all_translations.php:451
2684
  msgid "Select booking resources. Please use CTRL to select multiple booking resources."
2685
  msgstr ""
2686
 
2687
- #: core/admin/wpbc-toolbar-tiny.php:406 core/lib/wpbc_all_translations.php:452
2688
  #: js/wpbc-gutenberg.js:734
2689
  msgid "View mode"
2690
  msgstr ""
2691
 
2692
- #: core/admin/wpbc-toolbar-tiny.php:407 core/lib/wpbc_all_translations.php:453
2693
  msgid "Select type of view format"
2694
  msgstr ""
2695
 
2696
  #: core/admin/wpbc-toolbar-tiny.php:429 core/admin/wpbc-toolbar-tiny.php:438
2697
- #: core/admin/wpbc-toolbars.php:781 core/lib/wpbc_all_translations.php:454
2698
  msgid "All bookings"
2699
  msgstr ""
2700
 
2701
- #: core/admin/wpbc-toolbar-tiny.php:461 core/lib/wpbc_all_translations.php:456
2702
  msgid "Select number of months to scroll after loading"
2703
  msgstr ""
2704
 
2705
- #: core/admin/wpbc-toolbar-tiny.php:482 core/lib/wpbc_all_translations.php:457
2706
  #: js/wpbc-gutenberg.js:740
2707
  msgid "Number of days to scroll"
2708
  msgstr ""
2709
 
2710
- #: core/admin/wpbc-toolbar-tiny.php:483 core/lib/wpbc_all_translations.php:458
2711
  msgid "Select number of days to scroll after loading"
2712
  msgstr ""
2713
 
2714
- #: core/admin/wpbc-toolbar-tiny.php:503 core/admin/wpbc-toolbars.php:1454
2715
- #: core/lib/wpbc_all_translations.php:459 js/wpbc-gutenberg.js:746
2716
  msgid "Start Date"
2717
  msgstr ""
2718
 
2719
- #: core/admin/wpbc-toolbar-tiny.php:581 core/lib/wpbc_all_translations.php:460
2720
  msgid "Select start date"
2721
  msgstr ""
2722
 
2723
  #: core/admin/wpbc-toolbar-tiny.php:674 core/admin/wpbc-toolbar-tiny.php:917
2724
  #: core/admin/wpbc-toolbar-tiny.php:1591 core/admin/wpbc-toolbar-tiny.php:1783
2725
- #: core/lib/wpbc_all_translations.php:461 core/lib/wpdev-booking-widget.php:118
2726
- #: inc/_ps/admin/br-table-import-gcal-p.php:170 inc/_ps/p-toolbar.php:897
2727
  #: inc/_ps/wpbc-booking-select-widget.php:153 js/wpbc-gutenberg.js:562 js/wpbc-gutenberg.js:638
2728
  #: js/wpbc-gutenberg.js:896 js/wpbc-gutenberg.js:1261
2729
  msgid "Booking resource"
@@ -2731,82 +2793,82 @@ msgstr ""
2731
 
2732
  #: core/admin/wpbc-toolbar-tiny.php:675 core/admin/wpbc-toolbar-tiny.php:918
2733
  #: core/admin/wpbc-toolbar-tiny.php:1592 core/admin/wpbc-toolbar-tiny.php:1784
2734
- #: core/lib/wpbc_all_translations.php:462 inc/_ps/admin/br-table-import-gcal-p.php:184
2735
  msgid "Select booking resource"
2736
  msgstr ""
2737
 
2738
  #: core/admin/wpbc-toolbar-tiny.php:699 core/admin/wpbc-toolbar-tiny.php:1200
2739
- #: core/admin/wpbc-toolbar-tiny.php:1616 core/lib/wpbc_all_translations.php:463
2740
  #: inc/_bm/m-toolbar.php:30 inc/_ps/wpbc-booking-select-widget.php:238
2741
  msgid "Select default custom booking form"
2742
  msgstr ""
2743
 
2744
  #: core/admin/wpbc-toolbar-tiny.php:710 core/admin/wpbc-toolbar-tiny.php:940
2745
- #: core/admin/wpbc-toolbar-tiny.php:1288 core/admin/wpbc-toolbars.php:1569
2746
- #: core/lib/wpbc_all_translations.php:464 core/lib/wpdev-booking-widget.php:135
2747
  #: inc/_ps/wpbc-booking-select-widget.php:201
2748
  msgid "Visible months"
2749
  msgstr ""
2750
 
2751
  #: core/admin/wpbc-toolbar-tiny.php:711 core/admin/wpbc-toolbar-tiny.php:941
2752
- #: core/admin/wpbc-toolbar-tiny.php:1289 core/lib/wpbc_all_translations.php:465
2753
  msgid "Select number of month to show for calendar."
2754
  msgstr ""
2755
 
2756
  #: core/admin/wpbc-toolbar-tiny.php:731 core/admin/wpbc-toolbar-tiny.php:961
2757
- #: core/admin/wpbc-toolbar-tiny.php:1307 core/lib/wpbc_all_translations.php:466
2758
  msgid "Start month:"
2759
  msgstr ""
2760
 
2761
  #: core/admin/wpbc-toolbar-tiny.php:789 core/admin/wpbc-toolbar-tiny.php:1019
2762
- #: core/admin/wpbc-toolbar-tiny.php:1365 core/lib/wpbc_all_translations.php:467
2763
  msgid "Select start month of calendar"
2764
  msgstr ""
2765
 
2766
  #: core/admin/wpbc-toolbar-tiny.php:796 core/admin/wpbc-toolbar-tiny.php:1026
2767
- #: core/admin/wpbc-toolbar-tiny.php:1258 core/lib/wpbc_all_translations.php:468
2768
  msgid "Show advanced settings"
2769
  msgstr ""
2770
 
2771
  #: core/admin/wpbc-toolbar-tiny.php:797 core/admin/wpbc-toolbar-tiny.php:1027
2772
- #: core/admin/wpbc-toolbar-tiny.php:1259 core/lib/wpbc_all_translations.php:469
2773
  msgid "Hide advanced settings"
2774
  msgstr ""
2775
 
2776
  #: core/admin/wpbc-toolbar-tiny.php:807 core/admin/wpbc-toolbar-tiny.php:1037
2777
- #: core/admin/wpbc-toolbar-tiny.php:1269 core/lib/wpbc_all_translations.php:470
2778
  #, php-format
2779
  msgid "Setting advanced parameters of the calendar. %sLike width, height and structure %s"
2780
  msgstr ""
2781
 
2782
  #: core/admin/wpbc-toolbar-tiny.php:808 core/admin/wpbc-toolbar-tiny.php:1038
2783
- #: core/lib/wpbc_all_translations.php:471
2784
  #, php-format
2785
  msgid "%s or minimum and fixed number of days selection for the specific day of week or season.%s"
2786
  msgstr ""
2787
 
2788
  #: core/admin/wpbc-toolbar-tiny.php:818 core/admin/wpbc-toolbar-tiny.php:1048
2789
- #: core/admin/wpbc-toolbar-tiny.php:1372 core/admin/wpbc-toolbars.php:238
2790
- #: core/lib/wpbc_all_translations.php:472 inc/_ps/form/class-wpbc-field-help-checkbox.php:146
2791
  #: inc/_ps/form/class-wpbc-field-help-select.php:111 js/wpbc-gutenberg.js:577
2792
  #: js/wpbc-gutenberg.js:650 js/wpbc-gutenberg.js:837
2793
  msgid "Options"
2794
  msgstr ""
2795
 
2796
  #: core/admin/wpbc-toolbar-tiny.php:839 core/admin/wpbc-toolbar-tiny.php:1069
2797
- #: core/admin/wpbc-toolbar-tiny.php:1393 core/lib/wpbc_all_translations.php:473
2798
  #, php-format
2799
  msgid "Please read more about the possible customizations of these %soptions%s %shere%s"
2800
  msgstr ""
2801
 
2802
  #: core/admin/wpbc-toolbar-tiny.php:843 core/admin/wpbc-toolbar-tiny.php:1073
2803
- #: core/admin/wpbc-toolbar-tiny.php:1397 core/lib/wpbc_all_translations.php:474
2804
  msgid "Specify the full width of calendar, height of date cell and number of months in one row. "
2805
  msgstr ""
2806
 
2807
  #: core/admin/wpbc-toolbar-tiny.php:844 core/admin/wpbc-toolbar-tiny.php:852
2808
  #: core/admin/wpbc-toolbar-tiny.php:1074 core/admin/wpbc-toolbar-tiny.php:1398
2809
- #: core/lib/wpbc_all_translations.php:475 inc/_bm/admin/page-availability.php:510
2810
  #: inc/_ps/form/class-wpbc-form-help.php:418 inc/_ps/form/class-wpbc-form-help.php:565
2811
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:230
2812
  #: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:158
@@ -2814,7 +2876,7 @@ msgid "Description"
2814
  msgstr ""
2815
 
2816
  #: core/admin/wpbc-toolbar-tiny.php:845 core/admin/wpbc-toolbar-tiny.php:1075
2817
- #: core/admin/wpbc-toolbar-tiny.php:1399 core/lib/wpbc_all_translations.php:476
2818
  msgid ""
2819
  "Calendar have 2 months in a row, the cell height is 30px and calendar full width 568px (possible "
2820
  "to use percentage for width: 100%)"
@@ -2822,22 +2884,22 @@ msgstr ""
2822
 
2823
  #: core/admin/wpbc-toolbar-tiny.php:846 core/admin/wpbc-toolbar-tiny.php:854
2824
  #: core/admin/wpbc-toolbar-tiny.php:1076 core/admin/wpbc-toolbar-tiny.php:1400
2825
- #: core/lib/wpbc_all_translations.php:477
2826
  msgid "Code Example"
2827
  msgstr ""
2828
 
2829
- #: core/admin/wpbc-toolbar-tiny.php:851 core/lib/wpbc_all_translations.php:478
2830
  msgid ""
2831
  "Specify that during certain seasons (or days of week), the specific minimum number of days must "
2832
  "be booked. "
2833
  msgstr ""
2834
 
2835
- #: core/admin/wpbc-toolbar-tiny.php:853 core/lib/wpbc_all_translations.php:479
2836
  msgid ""
2837
  "Visitor can select only 4 days starting at Monday, 3 or 7 days – Friday, 2 days – Saturday, etc…"
2838
  msgstr ""
2839
 
2840
- #: core/admin/wpbc-toolbar-tiny.php:860 core/lib/wpbc_all_translations.php:480
2841
  #, php-format
2842
  msgid ""
2843
  "Please, read more about the shortcodes %shere%s or JavaScript customization of the specific "
@@ -2845,192 +2907,192 @@ msgid ""
2845
  msgstr ""
2846
 
2847
  #: core/admin/wpbc-toolbar-tiny.php:883 core/admin/wpbc-toolbar-tiny.php:1098
2848
- #: core/lib/wpbc_all_translations.php:481
2849
  msgid "Aggregate booking dates from other resources"
2850
  msgstr ""
2851
 
2852
  #: core/admin/wpbc-toolbar-tiny.php:884 core/admin/wpbc-toolbar-tiny.php:1099
2853
- #: core/lib/wpbc_all_translations.php:482
2854
  msgid ""
2855
  "Select booking resources, for getting booking dates from them and set such dates as unavailable "
2856
  "in destination calendar."
2857
  msgstr ""
2858
 
2859
- #: core/admin/wpbc-toolbar-tiny.php:1130 core/lib/wpbc_all_translations.php:483
2860
- #: inc/_bl/admin/page-search.php:411 inc/_bl/admin/page-search.php:444
2861
  #: inc/_bm/admin/api-settings-m.php:298 inc/_bm/admin/page-availability.php:252
2862
  #: inc/_bm/admin/page-cost-advanced.php:124 inc/_bm/admin/page-cost-deposit.php:341
2863
  #: inc/_bm/admin/page-cost-rate.php:214 inc/_bm/admin/page-cost.php:237
2864
- #: inc/_ps/admin/page-resources.php:201 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:855
2865
- #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:870
2866
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:479
2867
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:814
2868
  #: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:361 inc/gateways/sage/wpbc-gw-sage.php:875
2869
- #: inc/gateways/stripe/wpbc-gw-stripe.php:948
2870
  msgid "Note!"
2871
  msgstr ""
2872
 
2873
- #: core/admin/wpbc-toolbar-tiny.php:1131 core/lib/wpbc_all_translations.php:484
2874
  #, php-format
2875
  msgid ""
2876
  "This shortcode %s is using for selection of the booking form of specific booking resources in "
2877
  "selectbox"
2878
  msgstr ""
2879
 
2880
- #: core/admin/wpbc-toolbar-tiny.php:1144 core/admin/wpbc-toolbars.php:1617
2881
- #: core/lib/wpbc_all_translations.php:485 inc/_ps/admin/br-table-import-gcal-p.php:173
2882
  #: inc/_ps/wpbc-booking-select-widget.php:163
2883
  msgid "All"
2884
  msgstr ""
2885
 
2886
- #: core/admin/wpbc-toolbar-tiny.php:1153 core/lib/wpbc_all_translations.php:486
2887
  #: inc/_ps/wpbc-booking-select-widget.php:175
2888
  msgid ""
2889
  "Select booking resources, for showing in selectbox. Please use CTRL to select multiple booking "
2890
  "resources."
2891
  msgstr ""
2892
 
2893
- #: core/admin/wpbc-toolbar-tiny.php:1178 core/lib/wpbc_all_translations.php:487
2894
  #: inc/_ps/wpbc-booking-select-widget.php:181
2895
  msgid "Preselected resource"
2896
  msgstr ""
2897
 
2898
- #: core/admin/wpbc-toolbar-tiny.php:1179 core/lib/wpbc_all_translations.php:488
2899
  msgid "Define preselected resource."
2900
  msgstr ""
2901
 
2902
- #: core/admin/wpbc-toolbar-tiny.php:1204 core/lib/wpbc_all_translations.php:489
2903
- #: inc/_bm/admin/api-settings-m.php:485 inc/_ps/p-toolbar.php:1182
2904
  msgid "Default Form"
2905
  msgstr ""
2906
 
2907
  #: core/admin/wpbc-toolbar-tiny.php:1220 core/admin/wpbc-toolbar-tiny.php:1229
2908
- #: core/lib/wpbc_all_translations.php:490
2909
  msgid "Please select the resource:"
2910
  msgstr ""
2911
 
2912
- #: core/admin/wpbc-toolbar-tiny.php:1221 core/lib/wpbc_all_translations.php:491
2913
  msgid "Title near your select box."
2914
  msgstr ""
2915
 
2916
- #: core/admin/wpbc-toolbar-tiny.php:1238 core/lib/wpbc_all_translations.php:492
2917
  #: inc/_ps/wpbc-booking-select-widget.php:247
2918
  msgid "First option title"
2919
  msgstr ""
2920
 
2921
- #: core/admin/wpbc-toolbar-tiny.php:1239 core/lib/wpbc_all_translations.php:493
2922
- #: inc/_ps/personal.php:531 js/wpbc-gutenberg.js:771
2923
  msgid "Please Select"
2924
  msgstr ""
2925
 
2926
- #: core/admin/wpbc-toolbar-tiny.php:1240 core/lib/wpbc_all_translations.php:494
2927
  #: inc/_ps/wpbc-booking-select-widget.php:254
2928
  msgid "First option in dropdown list."
2929
  msgstr ""
2930
 
2931
- #: core/admin/wpbc-toolbar-tiny.php:1240 core/lib/wpbc_all_translations.php:495
2932
  #: inc/_ps/wpbc-booking-select-widget.php:256
2933
  msgid "Please leave it empty if you want to skip it."
2934
  msgstr ""
2935
 
2936
  #: core/admin/wpbc-toolbar-tiny.php:1430 core/admin/wpbc-toolbar-tiny.php:1710
2937
- #: core/lib/wpbc_all_translations.php:496
2938
  msgid "Select shortcode to insert"
2939
  msgstr ""
2940
 
2941
- #: core/admin/wpbc-toolbar-tiny.php:1442 core/lib/wpbc_all_translations.php:497
2942
  msgid "Search form"
2943
  msgstr ""
2944
 
2945
- #: core/admin/wpbc-toolbar-tiny.php:1445 core/lib/wpbc_all_translations.php:498
2946
  #: inc/_bl/wpbc-search-availability.php:167 inc/_bl/wpbc-search-availability.php:619
2947
  #: inc/_bl/wpbc-search-availability.php:634
2948
  msgid "Search results"
2949
  msgstr ""
2950
 
2951
- #: core/admin/wpbc-toolbar-tiny.php:1464 core/lib/wpbc_all_translations.php:499
2952
  msgid "Check this box to show search results on other page"
2953
  msgstr ""
2954
 
2955
- #: core/admin/wpbc-toolbar-tiny.php:1481 core/lib/wpbc_all_translations.php:500
2956
  msgid "URL of search results:"
2957
  msgstr ""
2958
 
2959
- #: core/admin/wpbc-toolbar-tiny.php:1483 core/lib/wpbc_all_translations.php:501
2960
  msgid "Type the URL of search results page."
2961
  msgstr ""
2962
 
2963
- #: core/admin/wpbc-toolbar-tiny.php:1500 core/lib/wpbc_all_translations.php:502
2964
  msgid "Title of Search results:"
2965
  msgstr ""
2966
 
2967
  #: core/admin/wpbc-toolbar-tiny.php:1501 core/admin/wpbc-toolbar-tiny.php:1510
2968
- #: core/lib/wpbc_all_translations.php:503 inc/_bl/wpdev-booking-search-widget.php:79
2969
  msgid "Result(s) Found"
2970
  msgstr ""
2971
 
2972
- #: core/admin/wpbc-toolbar-tiny.php:1502 core/lib/wpbc_all_translations.php:504
2973
  msgid "Type the title of Search results."
2974
  msgstr ""
2975
 
2976
- #: core/admin/wpbc-toolbar-tiny.php:1502 core/lib/wpbc_all_translations.php:505
2977
  msgid "show number of search results"
2978
  msgstr ""
2979
 
2980
- #: core/admin/wpbc-toolbar-tiny.php:1519 core/lib/wpbc_all_translations.php:506
2981
  msgid "Nothing Found Message:"
2982
  msgstr ""
2983
 
2984
- #: core/admin/wpbc-toolbar-tiny.php:1521 core/lib/wpbc_all_translations.php:507
2985
  msgid "Type the message, when nothing found."
2986
  msgstr ""
2987
 
2988
- #: core/admin/wpbc-toolbar-tiny.php:1541 core/lib/wpbc_all_translations.php:508
2989
  msgid "Search only for users:"
2990
  msgstr ""
2991
 
2992
- #: core/admin/wpbc-toolbar-tiny.php:1543 core/lib/wpbc_all_translations.php:509
2993
  msgid ""
2994
  "Type IDs of the users (separated by comma \",\") for searching availability only for these "
2995
  "users, or leave it blank for searching for all users."
2996
  msgstr ""
2997
 
2998
- #: core/admin/wpbc-toolbar-tiny.php:1563 core/lib/wpbc_all_translations.php:510
2999
  #, php-format
3000
  msgid ""
3001
  "This shortcode %s is using for showing the search results at specific page, if the search form "
3002
  "is submit showing the search results at different page"
3003
  msgstr ""
3004
 
3005
- #: core/admin/wpbc-toolbar-tiny.php:1625 core/lib/wpbc_all_translations.php:511
3006
  msgid "date"
3007
  msgstr ""
3008
 
3009
- #: core/admin/wpbc-toolbar-tiny.php:1685 core/lib/wpbc_all_translations.php:512
3010
  msgid "Define date for booking"
3011
  msgstr ""
3012
 
3013
- #: core/admin/wpbc-toolbar-tiny.php:1723 core/lib/wpbc_all_translations.php:513
3014
- #: inc/_ps/p-toolbar.php:206
3015
  msgid "Edit Booking"
3016
  msgstr ""
3017
 
3018
- #: core/admin/wpbc-toolbar-tiny.php:1726 core/lib/wpbc_all_translations.php:514
3019
  msgid "Show listing of customer bookings"
3020
  msgstr ""
3021
 
3022
- #: core/admin/wpbc-toolbar-tiny.php:1729 core/lib/wpbc_all_translations.php:515
3023
  msgid "Show info about Booking Resource"
3024
  msgstr ""
3025
 
3026
- #: core/admin/wpbc-toolbar-tiny.php:1745 core/lib/wpbc_all_translations.php:516
3027
  #, php-format
3028
  msgid ""
3029
  "This shortcode %s is used on a page, where visitors can %smodify%s their own booking(s), %scancel"
3030
  "%s or make %spayment%s after receiving an admin email payment request"
3031
  msgstr ""
3032
 
3033
- #: core/admin/wpbc-toolbar-tiny.php:1746 core/lib/wpbc_all_translations.php:517
3034
  #, php-format
3035
  msgid ""
3036
  "The content of field %sURL to edit bookings%s on the %sgeneral booking settings page%s must link "
@@ -3038,642 +3100,667 @@ msgid ""
3038
  msgstr ""
3039
 
3040
  #: core/admin/wpbc-toolbar-tiny.php:1747 core/admin/wpbc-toolbar-tiny.php:1763
3041
- #: core/lib/wpbc_all_translations.php:518
3042
  #, php-format
3043
  msgid "Email templates, which use shortcodes: %s, will be linked to this page"
3044
  msgstr ""
3045
 
3046
- #: core/admin/wpbc-toolbar-tiny.php:1761 core/lib/wpbc_all_translations.php:519
3047
  #, php-format
3048
  msgid ""
3049
  "This shortcode %s is used on a page, where visitors can %sview listing%s of their own booking(s)"
3050
  msgstr ""
3051
 
3052
- #: core/admin/wpbc-toolbar-tiny.php:1762 core/lib/wpbc_all_translations.php:520
3053
  #, php-format
3054
  msgid ""
3055
  "The content of field %sURL of page for customer bookings listing%s on the %sgeneral booking "
3056
  "settings page%s must link to this page"
3057
  msgstr ""
3058
 
3059
- #: core/admin/wpbc-toolbar-tiny.php:1764 core/lib/wpbc_all_translations.php:521
3060
  #, php-format
3061
  msgid "%s You can use in this shortcode the same parameters as for %s shortcode"
3062
  msgstr ""
3063
 
3064
- #: core/admin/wpbc-toolbar-tiny.php:1764 core/lib/wpbc_all_translations.php:522
3065
  msgid "Trick"
3066
  msgstr ""
3067
 
3068
- #: core/admin/wpbc-toolbar-tiny.php:1805 core/lib/wpbc_all_translations.php:523
3069
  #: inc/_bl/admin/api-settings-l.php:466 inc/_ps/admin/br-table-export-feeds.php:79
3070
  #: inc/_ps/admin/br-table-import-gcal-p.php:63
3071
  msgid "Capacity"
3072
  msgstr ""
3073
 
3074
- #: core/admin/wpbc-toolbar-tiny.php:1811 core/lib/wpbc_all_translations.php:524
3075
  msgid "Select type of info to show."
3076
  msgstr ""
3077
 
3078
  #: core/admin/wpbc-toolbar-tiny.php:2121 core/admin/wpbc-toolbar-tiny.php:2164
3079
  #: core/admin/wpbc-toolbar-tiny.php:2248 core/admin/wpbc-toolbar-tiny.php:2337
3080
- #: core/lib/wpbc_all_translations.php:525
3081
  msgid "No booking resources"
3082
  msgstr ""
3083
 
3084
- #: core/admin/wpbc-toolbars.php:41 core/lib/wpbc_all_translations.php:526
3085
  msgid "Filters"
3086
  msgstr ""
3087
 
3088
- #: core/admin/wpbc-toolbars.php:346 core/lib/wpbc_all_translations.php:527
3089
  msgid "Expand Advanced Toolbar"
3090
  msgstr ""
3091
 
3092
- #: core/admin/wpbc-toolbars.php:353 core/lib/wpbc_all_translations.php:528
3093
  msgid "Collapse Advanced Toolbar"
3094
  msgstr ""
3095
 
3096
- #: core/admin/wpbc-toolbars.php:375 core/lib/wpbc_all_translations.php:529
3097
  msgid "Send email notification to customer after approval, cancellation or deletion of bookings"
3098
  msgstr ""
3099
 
3100
- #: core/admin/wpbc-toolbars.php:376 core/lib/wpbc_all_translations.php:530
3101
  msgid "Emails sending"
3102
  msgstr ""
3103
 
3104
- #: core/admin/wpbc-toolbars.php:401 core/lib/wpbc_all_translations.php:531
3105
  msgid "Booking ID"
3106
  msgstr ""
3107
 
3108
- #: core/admin/wpbc-toolbars.php:404 core/admin/wpbc-toolbars.php:2192
3109
- #: core/lib/wpbc_all_translations.php:532
3110
  msgid "Go"
3111
  msgstr ""
3112
 
3113
- #: core/admin/wpbc-toolbars.php:438 core/lib/wpbc_all_translations.php:533
3114
  msgid "Technical Support"
3115
  msgstr ""
3116
 
3117
- #: core/admin/wpbc-toolbars.php:440 core/lib/wpbc_all_translations.php:534
3118
  msgid "About Booking Calendar"
3119
  msgstr ""
3120
 
3121
- #: core/admin/wpbc-toolbars.php:507 core/admin/wpbc-toolbars.php:687
3122
- #: core/admin/wpbc-toolbars.php:892 core/admin/wpbc-toolbars.php:1467
3123
- #: core/lib/wpbc_all_translations.php:535 inc/_bs/lib_s.php:84
3124
  msgid "Apply"
3125
  msgstr ""
3126
 
3127
- #: core/admin/wpbc-toolbars.php:508 core/lib/wpbc_all_translations.php:536
3128
  msgid "Refresh booking listing"
3129
  msgstr ""
3130
 
3131
- #: core/admin/wpbc-toolbars.php:522 core/lib/wpbc_all_translations.php:537
3132
  msgid "Reset filter to default values"
3133
  msgstr ""
3134
 
3135
- #: core/admin/wpbc-toolbars.php:548 core/admin/wpbc-toolbars.php:763
3136
- #: core/lib/wpbc_all_translations.php:538
3137
  msgid "Any"
3138
  msgstr ""
3139
 
3140
- #: core/admin/wpbc-toolbars.php:569 core/admin/wpbc-toolbars.php:803
3141
- #: core/lib/wpbc_all_translations.php:539
3142
  msgid "week"
3143
  msgstr ""
3144
 
3145
- #: core/admin/wpbc-toolbars.php:570 core/admin/wpbc-toolbars.php:804
3146
- #: core/lib/wpbc_all_translations.php:540
3147
  msgid "weeks"
3148
  msgstr ""
3149
 
3150
- #: core/admin/wpbc-toolbars.php:571 core/admin/wpbc-toolbars.php:805
3151
- #: core/lib/wpbc_all_translations.php:541
3152
  msgid "month"
3153
  msgstr ""
3154
 
3155
- #: core/admin/wpbc-toolbars.php:572 core/admin/wpbc-toolbars.php:573
3156
- #: core/admin/wpbc-toolbars.php:574 core/admin/wpbc-toolbars.php:806
3157
- #: core/admin/wpbc-toolbars.php:807 core/admin/wpbc-toolbars.php:808
3158
- #: core/lib/wpbc_all_translations.php:542
3159
  msgid "months"
3160
  msgstr ""
3161
 
3162
- #: core/admin/wpbc-toolbars.php:582 core/admin/wpbc-toolbars.php:817
3163
- #: core/lib/wpbc_all_translations.php:543
3164
  msgid "Filter bookings by booking dates"
3165
  msgstr ""
3166
 
3167
- #: core/admin/wpbc-toolbars.php:586 core/lib/wpbc_all_translations.php:544
3168
  msgid "Current dates"
3169
  msgstr ""
3170
 
3171
- #: core/admin/wpbc-toolbars.php:587 core/admin/wpbc-toolbars.php:821
3172
- #: core/lib/wpbc_all_translations.php:545
3173
  msgid "Today"
3174
  msgstr ""
3175
 
3176
- #: core/admin/wpbc-toolbars.php:588 core/lib/wpbc_all_translations.php:546
3177
  msgid "Previous dates"
3178
  msgstr ""
3179
 
3180
- #: core/admin/wpbc-toolbars.php:589 core/admin/wpbc-toolbars.php:822
3181
- #: core/lib/wpbc_all_translations.php:547
3182
  msgid "All dates"
3183
  msgstr ""
3184
 
3185
- #: core/admin/wpbc-toolbars.php:591 core/lib/wpbc_all_translations.php:548
3186
  msgid "Today check in/out"
3187
  msgstr ""
3188
 
3189
- #: core/admin/wpbc-toolbars.php:592 core/lib/wpbc_all_translations.php:549
3190
  msgid "Check In - Tomorrow"
3191
  msgstr ""
3192
 
3193
- #: core/admin/wpbc-toolbars.php:593 core/lib/wpbc_all_translations.php:550
3194
  msgid "Check Out - Tomorrow"
3195
  msgstr ""
3196
 
3197
- #: core/admin/wpbc-toolbars.php:598 core/lib/wpbc_all_translations.php:551
3198
  #: core/wpbc-functions.php:2521
3199
  msgid "Next"
3200
  msgstr ""
3201
 
3202
- #: core/admin/wpbc-toolbars.php:622 core/admin/wpbc-toolbars.php:827
3203
- #: core/lib/wpbc_all_translations.php:552
3204
  msgid "Prior"
3205
  msgstr ""
3206
 
3207
- #: core/admin/wpbc-toolbars.php:662 core/admin/wpbc-toolbars.php:867
3208
- #: core/lib/wpbc_all_translations.php:553
3209
  msgid "Check-in"
3210
  msgstr ""
3211
 
3212
- #: core/admin/wpbc-toolbars.php:674 core/admin/wpbc-toolbars.php:879
3213
- #: core/lib/wpbc_all_translations.php:554
3214
  msgid "Check-out"
3215
  msgstr ""
3216
 
3217
- #: core/admin/wpbc-toolbars.php:746 core/lib/wpbc_all_translations.php:555
3218
  msgid "Order by"
3219
  msgstr ""
3220
 
3221
- #: core/admin/wpbc-toolbars.php:760 core/lib/wpbc_all_translations.php:556
3222
  msgid "Exist"
3223
  msgstr ""
3224
 
3225
- #: core/admin/wpbc-toolbars.php:761 core/lib/wpbc_all_translations.php:557
3226
  msgid "In Trash"
3227
  msgstr ""
3228
 
3229
- #: core/admin/wpbc-toolbars.php:782 core/lib/wpbc_all_translations.php:558
3230
  msgid "New bookings"
3231
  msgstr ""
3232
 
3233
- #: core/admin/wpbc-toolbars.php:819 core/lib/wpbc_all_translations.php:559
3234
  msgid "Creation"
3235
  msgstr ""
3236
 
3237
- #: core/admin/wpbc-toolbars.php:946 core/lib/wpbc_all_translations.php:560
3238
  msgid "Approve selected bookings"
3239
  msgstr ""
3240
 
3241
- #: core/admin/wpbc-toolbars.php:961 core/lib/wpbc_all_translations.php:561
3242
  msgid "Set selected bookings as pending"
3243
  msgstr ""
3244
 
3245
- #: core/admin/wpbc-toolbars.php:991 core/lib/wpbc_all_translations.php:562
3246
  msgid "Move selected bookings to trash"
3247
  msgstr ""
3248
 
3249
- #: core/admin/wpbc-toolbars.php:1008 core/lib/wpbc_all_translations.php:563
3250
  msgid "Restore selected bookings"
3251
  msgstr ""
3252
 
3253
- #: core/admin/wpbc-toolbars.php:1024 core/lib/wpbc_all_translations.php:564
3254
- #: inc/_bl/admin/page-coupons.php:216 inc/_bl/admin/page-coupons.php:222
3255
- #: inc/_bm/admin/page-availability.php:240 inc/_bm/admin/page-availability.php:246
3256
- #: inc/_bm/admin/page-cost-valuation.php:567 inc/_bm/admin/page-cost.php:223
3257
- #: inc/_bm/admin/page-cost.php:233 inc/_bm/admin/page-seasons.php:201
3258
- #: inc/_bm/admin/page-seasons.php:207 inc/_bm/m-toolbar.php:287
3259
  #: inc/_ps/admin/page-resources.php:189 inc/_ps/admin/page-resources.php:195
3260
  msgid "Delete"
3261
  msgstr ""
3262
 
3263
- #: core/admin/wpbc-toolbars.php:1025 core/lib/wpbc_all_translations.php:565
3264
  msgid "Delete selected bookings"
3265
  msgstr ""
3266
 
3267
- #: core/admin/wpbc-toolbars.php:1027 core/lib/wpbc_all_translations.php:566
3268
  #: core/sync/wpbc-gcal-class.php:671
3269
  msgid "Do you really want to delete selected booking(s) ?"
3270
  msgstr ""
3271
 
3272
- #: core/admin/wpbc-toolbars.php:1043 core/lib/wpbc_all_translations.php:567
3273
  msgid "Reason of cancellation"
3274
  msgstr ""
3275
 
3276
- #: core/admin/wpbc-toolbars.php:1066 core/lib/wpbc_all_translations.php:568
 
 
 
 
3277
  msgid "Read All"
3278
  msgstr ""
3279
 
3280
- #: core/admin/wpbc-toolbars.php:1067 core/lib/wpbc_all_translations.php:569
3281
  msgid "Mark as read all bookings"
3282
  msgstr ""
3283
 
3284
- #: core/admin/wpbc-toolbars.php:1080 core/lib/wpbc_all_translations.php:570
3285
  msgid "Read"
3286
  msgstr ""
3287
 
3288
- #: core/admin/wpbc-toolbars.php:1081 core/lib/wpbc_all_translations.php:571
3289
  msgid "Mark as read selected bookings"
3290
  msgstr ""
3291
 
3292
- #: core/admin/wpbc-toolbars.php:1095 core/lib/wpbc_all_translations.php:572
3293
  msgid "Unread"
3294
  msgstr ""
3295
 
3296
- #: core/admin/wpbc-toolbars.php:1096 core/lib/wpbc_all_translations.php:573
3297
  msgid "Mark as Unread selected bookings"
3298
  msgstr ""
3299
 
3300
- #: core/admin/wpbc-toolbars.php:1145 core/admin/wpbc-toolbars.php:1224
3301
- #: core/lib/wpbc_all_translations.php:574
3302
- msgid "Show month"
3303
- msgstr ""
3304
-
3305
- #: core/admin/wpbc-toolbars.php:1159 core/lib/wpbc_all_translations.php:575
3306
- msgid "Show 3 months"
3307
- msgstr ""
3308
-
3309
- #: core/admin/wpbc-toolbars.php:1173 core/lib/wpbc_all_translations.php:576
3310
- msgid "Show year"
3311
- msgstr ""
3312
-
3313
- #: core/admin/wpbc-toolbars.php:1196 core/lib/wpbc_all_translations.php:577
3314
  msgid "Show day"
3315
  msgstr ""
3316
 
3317
- #: core/admin/wpbc-toolbars.php:1210 core/lib/wpbc_all_translations.php:578
 
3318
  msgid "Show week"
3319
  msgstr ""
3320
 
3321
- #: core/admin/wpbc-toolbars.php:1238 core/lib/wpbc_all_translations.php:579
 
 
 
 
 
3322
  msgid "Show 2 months"
3323
  msgstr ""
3324
 
3325
- #: core/admin/wpbc-toolbars.php:1295 core/admin/wpbc-toolbars.php:1309
3326
- #: core/admin/wpbc-toolbars.php:1356 core/lib/wpbc_all_translations.php:580
3327
  msgid "Previous 4 weeks"
3328
  msgstr ""
3329
 
3330
- #: core/admin/wpbc-toolbars.php:1296 core/admin/wpbc-toolbars.php:1310
3331
- #: core/admin/wpbc-toolbars.php:1357 core/lib/wpbc_all_translations.php:581
3332
  msgid "Previous week"
3333
  msgstr ""
3334
 
3335
- #: core/admin/wpbc-toolbars.php:1297 core/admin/wpbc-toolbars.php:1311
3336
- #: core/admin/wpbc-toolbars.php:1358 core/lib/wpbc_all_translations.php:582
3337
  msgid "Current week"
3338
  msgstr ""
3339
 
3340
- #: core/admin/wpbc-toolbars.php:1298 core/admin/wpbc-toolbars.php:1312
3341
- #: core/admin/wpbc-toolbars.php:1359 core/lib/wpbc_all_translations.php:583
3342
  msgid "Next week"
3343
  msgstr ""
3344
 
3345
- #: core/admin/wpbc-toolbars.php:1299 core/admin/wpbc-toolbars.php:1313
3346
- #: core/admin/wpbc-toolbars.php:1360 core/lib/wpbc_all_translations.php:584
3347
  msgid "Next 4 weeks"
3348
  msgstr ""
3349
 
3350
- #: core/admin/wpbc-toolbars.php:1323 core/admin/wpbc-toolbars.php:1373
3351
- #: core/admin/wpbc-toolbars.php:1388 core/lib/wpbc_all_translations.php:585
3352
  msgid "Previous 3 months"
3353
  msgstr ""
3354
 
3355
- #: core/admin/wpbc-toolbars.php:1324 core/admin/wpbc-toolbars.php:1374
3356
- #: core/admin/wpbc-toolbars.php:1389 core/lib/wpbc_all_translations.php:586
3357
  msgid "Previous month"
3358
  msgstr ""
3359
 
3360
- #: core/admin/wpbc-toolbars.php:1325 core/admin/wpbc-toolbars.php:1375
3361
- #: core/admin/wpbc-toolbars.php:1390 core/lib/wpbc_all_translations.php:587
3362
  msgid "Current month"
3363
  msgstr ""
3364
 
3365
- #: core/admin/wpbc-toolbars.php:1326 core/admin/wpbc-toolbars.php:1376
3366
- #: core/admin/wpbc-toolbars.php:1391 core/lib/wpbc_all_translations.php:588
3367
  msgid "Next month"
3368
  msgstr ""
3369
 
3370
- #: core/admin/wpbc-toolbars.php:1327 core/admin/wpbc-toolbars.php:1377
3371
- #: core/admin/wpbc-toolbars.php:1392 core/lib/wpbc_all_translations.php:589
3372
  msgid "Next 3 months"
3373
  msgstr ""
3374
 
3375
- #: core/admin/wpbc-toolbars.php:1341 core/lib/wpbc_all_translations.php:590
3376
  msgid "Previous 7 days"
3377
  msgstr ""
3378
 
3379
- #: core/admin/wpbc-toolbars.php:1342 core/lib/wpbc_all_translations.php:591
3380
  msgid "Previous day"
3381
  msgstr ""
3382
 
3383
- #: core/admin/wpbc-toolbars.php:1343 core/lib/wpbc_all_translations.php:592
3384
  msgid "Current day"
3385
  msgstr ""
3386
 
3387
- #: core/admin/wpbc-toolbars.php:1344 core/lib/wpbc_all_translations.php:593
3388
  msgid "Next day"
3389
  msgstr ""
3390
 
3391
- #: core/admin/wpbc-toolbars.php:1345 core/lib/wpbc_all_translations.php:594
3392
  msgid "Next 7 days"
3393
  msgstr ""
3394
 
3395
- #: core/admin/wpbc-toolbars.php:1616 core/lib/wpbc_all_translations.php:595
3396
  msgid "Number of months in one row"
3397
  msgstr ""
3398
 
3399
- #: core/admin/wpbc-toolbars.php:1661 core/lib/wpbc_all_translations.php:596
3400
  msgid "Calendar width"
3401
  msgstr ""
3402
 
3403
- #: core/admin/wpbc-toolbars.php:1709 core/lib/wpbc_all_translations.php:597
3404
  msgid "Calendar cell height"
3405
  msgstr ""
3406
 
3407
- #: core/admin/wpbc-toolbars.php:1818 core/admin/wpbc-toolbars.php:1819
3408
- #: core/lib/wpbc_all_translations.php:598
3409
  msgid "Send email notification to customer about this operation"
3410
  msgstr ""
3411
 
3412
- #: core/admin/wpbc-toolbars.php:1861 core/admin/wpbc-toolbars.php:1862
3413
- #: core/lib/wpbc_all_translations.php:599
3414
  msgid "Add to Google Calendar"
3415
  msgstr ""
3416
 
3417
- #: core/admin/wpbc-toolbars.php:2052 core/lib/wpbc_all_translations.php:600
3418
  #: inc/gateways/page-gateways.php:1396 inc/gateways/page-gateways.php:1414
3419
  msgid "Total"
3420
  msgstr ""
3421
 
3422
- #: core/admin/wpbc-toolbars.php:2188 core/lib/wpbc_all_translations.php:601
3423
  msgid "ID or Title"
3424
  msgstr ""
3425
 
3426
- #: core/any/api-emails.php:504 core/lib/wpbc_all_translations.php:602
3427
  msgid "Email copy to"
3428
  msgstr ""
3429
 
3430
  #: core/class/wpbc-class-dismiss.php:26 core/class/wpbc-class-dismiss.php:30
3431
- #: core/lib/wpbc_all_translations.php:603 core/wpbc-functions.php:2788 core/wpbc-functions.php:2811
3432
  msgid "Dismiss"
3433
  msgstr ""
3434
 
3435
- #: core/class/wpbc-class-notices.php:26 core/lib/wpbc_all_translations.php:604
3436
  #, php-format
3437
  msgid ""
3438
  "Probably you updated your paid version of Booking Calendar by free version or update process "
3439
  "failed. You can request the new update of your paid version at %1sthis page%2s."
3440
  msgstr ""
3441
 
3442
- #: core/class/wpbc-class-welcome.php:1519 core/class/wpbc-class-welcome.php:2005
3443
- #: core/lib/wpbc_all_translations.php:605 inc/_ps/admin/page-settings-up.php:144
3444
  msgid "Purchase"
3445
  msgstr ""
3446
 
3447
- #: core/class/wpbc-class-welcome.php:1519 core/class/wpbc-class-welcome.php:2005
3448
- #: core/lib/wpbc_all_translations.php:606 inc/_ps/admin/page-settings-up.php:144
3449
  msgid "Upgrade Now"
3450
  msgstr ""
3451
 
3452
  #: core/lib/wpbc-ajax.php:33 core/lib/wpbc-ajax.php:37 core/lib/wpbc-ajax.php:67
3453
- #: core/lib/wpbc_all_translations.php:607 inc/gateways/ideal/wpbc-gw-ideal.php:1113
 
3454
  #, php-format
3455
  msgid ""
3456
  "%sError!%s Request do not pass security check! Please refresh the page and try one more time."
3457
  msgstr ""
3458
 
3459
- #: core/lib/wpbc-ajax.php:123 core/lib/wpbc_all_translations.php:608
3460
  msgid "Set as Unread"
3461
  msgstr ""
3462
 
3463
- #: core/lib/wpbc-ajax.php:125 core/lib/wpbc_all_translations.php:609
3464
  msgid "Set as Read"
3465
  msgstr ""
3466
 
3467
- #: core/lib/wpbc-ajax.php:193 core/lib/wpbc_all_translations.php:610
3468
  msgid "Set as Approved"
3469
  msgstr ""
3470
 
3471
- #: core/lib/wpbc-ajax.php:195 core/lib/wpbc_all_translations.php:611
3472
  msgid "Set as Pending"
3473
  msgstr ""
3474
 
3475
- #: core/lib/wpbc-ajax.php:216 core/lib/wpbc-ajax.php:293 core/lib/wpbc_all_translations.php:612
3476
  msgid "Reason for cancellation here"
3477
  msgstr ""
3478
 
3479
- #: core/lib/wpbc-ajax.php:217 core/lib/wpbc-ajax.php:294 core/lib/wpbc_all_translations.php:613
3480
  msgid "Reason of cancellation here"
3481
  msgstr ""
3482
 
3483
- #: core/lib/wpbc-ajax.php:262 core/lib/wpbc_all_translations.php:614
3484
  msgid "Moved to trash"
3485
  msgstr ""
3486
 
3487
- #: core/lib/wpbc-ajax.php:270 core/lib/wpbc_all_translations.php:615
3488
  msgid "Restored"
3489
  msgstr ""
3490
 
3491
- #: core/lib/wpbc-ajax.php:444 core/lib/wpbc_all_translations.php:616 inc/_ps/personal.php:156
 
 
 
 
 
3492
  msgid "Saved"
3493
  msgstr ""
3494
 
3495
- #: core/lib/wpbc-booking-new.php:37 core/lib/wpbc_all_translations.php:617
3496
  msgid "The code you entered is incorrect"
3497
  msgstr ""
3498
 
3499
- #: core/lib/wpbc-booking-new.php:138 core/lib/wpbc_all_translations.php:618
3500
  msgid "Updating..."
3501
  msgstr ""
3502
 
3503
- #: core/lib/wpbc-booking-new.php:163 core/lib/wpbc_all_translations.php:619
3504
- #: inc/_ps/personal.php:2357 inc/_ps/personal.php:2548
3505
  msgid "Updated successfully"
3506
  msgstr ""
3507
 
3508
- #: core/lib/wpbc-booking-new.php:792 core/lib/wpbc_all_translations.php:620
3509
  msgid "Error!"
3510
  msgstr ""
3511
 
3512
- #: core/lib/wpbc-booking-new.php:793 core/lib/wpbc_all_translations.php:621
3513
  msgid ""
3514
  "Probably these date(s) just was booking by other visitor. Please reload this page and make "
3515
  "booking again."
3516
  msgstr ""
3517
 
3518
- #: core/lib/wpbc_all_translations.php:5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3519
  msgid "Number of months"
3520
  msgstr ""
3521
 
3522
- #: core/lib/wpbc_all_translations.php:622 inc/_bs/lib_s.php:46 inc/_bs/lib_s.php:291
3523
  msgid "Paid OK"
3524
  msgstr ""
3525
 
3526
- #: core/lib/wpbc_all_translations.php:623
3527
  msgid "Email is sent to Visitor after Canceling of booking (moved to trash)."
3528
  msgstr ""
3529
 
3530
- #: core/lib/wpbc_all_translations.php:624
3531
  #, php-format
3532
  msgid ""
3533
  "Probabaly you updated your paid version of Booking Calendar by free version or update process "
3534
  "failed. You can request the new update of your paid version at %1sthis page%2s."
3535
  msgstr ""
3536
 
3537
- #: core/lib/wpbc_all_translations.php:625
3538
  msgid "Copy to admin"
3539
  msgstr ""
3540
 
3541
- #: core/lib/wpbc_all_translations.php:626
3542
  msgid "Enable / disable sending copy of this email notification to admin"
3543
  msgstr ""
3544
 
3545
- #: core/lib/wpbc_all_translations.php:627
3546
  msgid "Customization of email template, which is sending to Visitor after approval of booking"
3547
  msgstr ""
3548
 
3549
- #: core/lib/wpbc_all_translations.php:628
3550
  msgid "Email is sending to Visitor after Approval of booking."
3551
  msgstr ""
3552
 
3553
- #: core/lib/wpbc_all_translations.php:629
3554
  msgid "Customization of email template, which is sending to Visitor after Cancellation of booking"
3555
  msgstr ""
3556
 
3557
- #: core/lib/wpbc_all_translations.php:630
3558
  msgid "Email is sending to Visitor after Deleting of booking."
3559
  msgstr ""
3560
 
3561
- #: core/lib/wpbc_all_translations.php:631
3562
  msgid ""
3563
  "Customization of email template, which is sending to Visitor, when booking status is set to "
3564
  "Pending"
3565
  msgstr ""
3566
 
3567
- #: core/lib/wpbc_all_translations.php:632
3568
  msgid "Email is sending to Visitor after booking set as Pending."
3569
  msgstr ""
3570
 
3571
- #: core/lib/wpbc_all_translations.php:633
3572
  msgid "Email is sending to Visitor after Canceling of booking (moved to trash)."
3573
  msgstr ""
3574
 
3575
- #: core/lib/wpbc_all_translations.php:634
3576
  msgid "Confgure ULR feed(s) at this settings page."
3577
  msgstr ""
3578
 
3579
- #: core/lib/wpbc_all_translations.php:635
3580
  msgid "Reject"
3581
  msgstr ""
3582
 
3583
- #: core/lib/wpbc_all_translations.php:636
3584
  msgid "Visit these (previosly configured URL feeds) pages for downloading .ics files."
3585
  msgstr ""
3586
 
3587
- #: core/lib/wpbc_all_translations.php:637
3588
  msgid "Google Calendar"
3589
  msgstr ""
3590
 
3591
- #: core/lib/wpbc_all_translations.php:638
3592
  msgid "Events Import"
3593
  msgstr ""
3594
 
3595
- #: core/lib/wpbc_all_translations.php:639
3596
  msgid "Import Settings"
3597
  msgstr ""
3598
 
3599
- #: core/lib/wpbc_all_translations.php:640
3600
  msgid "Customization of synchronization with Google Calendar"
3601
  msgstr ""
3602
 
3603
- #: core/lib/wpbc_all_translations.php:641 core/wpbc-debug.php:123 core/wpbc-emails.php:441
3604
  #: core/wpbc.php:342 core/wpbc.php:383 inc/_bl/admin/page-coupons.php:1003
3605
  #: inc/_bl/admin/page-coupons.php:1005 inc/_bm/admin/page-availability.php:814
3606
  #: inc/_bm/admin/page-cost-deposit.php:81 inc/_bm/admin/page-cost-early-late-booking.php:82
3607
  #: inc/_bm/admin/page-cost-rate.php:77 inc/_bm/admin/page-cost-valuation.php:103
3608
  #: inc/_bm/admin/page-seasons.php:826 inc/_bm/admin/page-seasons.php:828 inc/_bs/lib_s.php:344
 
 
3609
  #: inc/gateways/stripe/wpbc-gw-stripe.php:311 inc/gateways/stripe/wpbc-gw-stripe.php:927
3610
- #: inc/gateways/stripe/wpbc-gw-stripe.php:938
 
 
 
3611
  msgid "Error"
3612
  msgstr ""
3613
 
3614
- #: core/lib/wpbc_all_translations.php:642
3615
  msgid "does not exist"
3616
  msgstr ""
3617
 
3618
- #: core/lib/wpbc_all_translations.php:643 core/lib/wpdev-booking-class.php:499
3619
  msgid "Calendar is loading..."
3620
  msgstr ""
3621
 
3622
- #: core/lib/wpbc_all_translations.php:644 core/lib/wpdev-booking-class.php:683
3623
- #: core/lib/wpdev-booking-class.php:744 inc/_ps/personal.php:883 inc/_ps/personal.php:894
3624
  msgid "Wrong booking hash in URL (probably expired)"
3625
  msgstr ""
3626
 
3627
- #: core/lib/wpbc_all_translations.php:645
3628
  msgid "Booking resource type is not defined. Its can be, when at the URL is wrong booking hash."
3629
  msgstr ""
3630
 
3631
- #: core/lib/wpbc_all_translations.php:646 core/lib/wpdev-booking-class.php:864
3632
  #, php-format
3633
  msgid ""
3634
  "%sWarning! Booking calendar for this booking resource are already at the page, please check more "
3635
  "about this issue at %sthis page%s"
3636
  msgstr ""
3637
 
3638
- #: core/lib/wpbc_all_translations.php:647 core/lib/wpdev-booking-class.php:1136
3639
  #: core/lib/wpdev-booking-widget.php:40 inc/_ps/wpbc-booking-select-widget.php:55
3640
  msgid "You need to use special shortcode [bookingedit] for booking editing."
3641
  msgstr ""
3642
 
3643
- #: core/lib/wpbc_all_translations.php:648 core/lib/wpdev-booking-class.php:1018
3644
- #: core/lib/wpdev-booking-class.php:1269 core/lib/wpdev-booking-class.php:1271
 
 
3645
  msgid "Wrong booking hash in URL. Probably hash is expired."
3646
  msgstr ""
3647
 
3648
- #: core/lib/wpbc_all_translations.php:649 core/lib/wpdev-booking-class.php:1022
3649
- #: core/lib/wpdev-booking-class.php:1275 js/wpbc-gutenberg.js:1114 js/wpbc-gutenberg.js:1200
3650
  msgid "You do not set any parameters for booking editing"
3651
  msgstr ""
3652
 
3653
- #: core/lib/wpbc_all_translations.php:650 core/lib/wpdev-booking-class.php:1024
3654
- #: core/lib/wpdev-booking-class.php:1277
3655
  #, php-format
3656
  msgid "Please check more about configuration at %sthis page%s"
3657
  msgstr ""
3658
 
3659
- #: core/lib/wpbc_all_translations.php:651 core/lib/wpdev-booking-widget.php:108
3660
  msgid "Booking form with calendar"
3661
  msgstr ""
3662
 
3663
- #: core/lib/wpbc_all_translations.php:652 core/lib/wpdev-booking-widget.php:109
3664
  msgid "Only availability calendar"
3665
  msgstr ""
3666
 
3667
- #: core/lib/wpbc_all_translations.php:653 core/lib/wpdev-booking-widget.php:150
3668
  msgid "Footer"
3669
  msgstr ""
3670
 
3671
- #: core/lib/wpbc_all_translations.php:654 core/lib/wpdev-booking-widget.php:155
3672
  #, php-format
3673
  msgid "Example: %sMake booking here%s"
3674
  msgstr ""
3675
 
3676
- #: core/lib/wpbc_all_translations.php:655 core/lib/wpdev-booking-widget.php:159
3677
  #: inc/_ps/wpbc-booking-select-widget.php:263
3678
  #, php-format
3679
  msgid ""
@@ -3681,103 +3768,103 @@ msgid ""
3681
  "at the same page, then the last will not be visible."
3682
  msgstr ""
3683
 
3684
- #: core/lib/wpbc_all_translations.php:656 core/lib/wpdev-booking-widget.php:163
3685
  #, php-format
3686
  msgid "%sSeveral widgets are supported at %spaid versions%s."
3687
  msgstr ""
3688
 
3689
- #: core/lib/wpbc_all_translations.php:657 core/sync/wpbc-gcal-class.php:300
3690
  msgid "Importing Feed"
3691
  msgstr ""
3692
 
3693
- #: core/lib/wpbc_all_translations.php:658 core/sync/wpbc-gcal-class.php:316
3694
  msgid "Data Parsing"
3695
  msgstr ""
3696
 
3697
- #: core/lib/wpbc_all_translations.php:659 core/sync/wpbc-gcal-class.php:423
3698
  msgid ""
3699
  "Some data was retrieved, but could not be parsed successfully. Please ensure your feed URL is "
3700
  "correct."
3701
  msgstr ""
3702
 
3703
- #: core/lib/wpbc_all_translations.php:660 core/sync/wpbc-gcal-class.php:430
3704
  msgid "The feed could not be found (404). Please ensure your feed URL is correct."
3705
  msgstr ""
3706
 
3707
- #: core/lib/wpbc_all_translations.php:661 core/sync/wpbc-gcal-class.php:433
3708
  msgid ""
3709
  "Access to this feed was denied (403). Please ensure you have public sharing enabled for your "
3710
  "calendar."
3711
  msgstr ""
3712
 
3713
- #: core/lib/wpbc_all_translations.php:662 core/sync/wpbc-gcal-class.php:436
3714
  #, php-format
3715
  msgid ""
3716
  "The feed data could not be retrieved. Error code: %s. Please ensure your feed URL is correct."
3717
  msgstr ""
3718
 
3719
- #: core/lib/wpbc_all_translations.php:663 core/sync/wpbc-gcal-class.php:609
3720
  #: core/sync/wpbc-gcal-class.php:659
3721
  msgid "GID"
3722
  msgstr ""
3723
 
3724
- #: core/lib/wpbc_all_translations.php:664 core/sync/wpbc-gcal-class.php:623
3725
  msgid "Selection"
3726
  msgstr ""
3727
 
3728
- #: core/lib/wpbc_all_translations.php:665 core/sync/wpbc-gcal-class.php:637
3729
  msgid "Location:"
3730
  msgstr ""
3731
 
3732
- #: core/lib/wpbc_all_translations.php:666 core/sync/wpbc-gcal-class.php:667
3733
  msgid "Reload page"
3734
  msgstr ""
3735
 
3736
- #: core/lib/wpbc_all_translations.php:667 core/sync/wpbc-gcal-class.php:680
3737
  msgid "Delete selected booking(s)"
3738
  msgstr ""
3739
 
3740
- #: core/lib/wpbc_all_translations.php:668 core/sync/wpbc-gcal.php:279
3741
  msgid "You can specify an additional offset from you chosen end point. The offset can be negative."
3742
  msgstr ""
3743
 
3744
- #: core/lib/wpbc_all_translations.php:669 core/sync/wpbc-gcal.php:399
3745
  msgid "Retrieve Google Calendar Events "
3746
  msgstr ""
3747
 
3748
- #: core/lib/wpbc_all_translations.php:670 core/sync/wpbc-gcal.php:405
3749
  msgid "Please configure settings for import Google Calendar events"
3750
  msgstr ""
3751
 
3752
- #: core/lib/wpbc_all_translations.php:671 core/sync/wpbc-gcal.php:433
3753
  msgid "Configure"
3754
  msgstr ""
3755
 
3756
- #: core/lib/wpbc_all_translations.php:672 core/wpbc-activation.php:565
3757
  #, php-format
3758
  msgid "%s Found %s not indexed bookings %s"
3759
  msgstr ""
3760
 
3761
- #: core/lib/wpbc_all_translations.php:673 core/wpbc-activation.php:580
3762
  #, php-format
3763
  msgid "%s Finish getting sort dates. %s"
3764
  msgstr ""
3765
 
3766
- #: core/lib/wpbc_all_translations.php:674 core/wpbc-activation.php:589
3767
  #, php-format
3768
  msgid "Updated booking: %s"
3769
  msgstr ""
3770
 
3771
- #: core/lib/wpbc_all_translations.php:675 core/wpbc-activation.php:1010
3772
  msgid "Booking form"
3773
  msgstr ""
3774
 
3775
- #: core/lib/wpbc_all_translations.php:676 core/wpbc-activation.php:1105
3776
  #: inc/_ps/admin/page-email-edit.php:310
3777
  msgid "The reservation has been modified"
3778
  msgstr ""
3779
 
3780
- #: core/lib/wpbc_all_translations.php:677 core/wpbc-activation.php:1106
3781
  #: inc/_ps/admin/page-email-edit.php:324
3782
  #, php-format
3783
  msgid ""
@@ -3785,23 +3872,23 @@ msgid ""
3785
  "Thank you, %s"
3786
  msgstr ""
3787
 
3788
- #: core/lib/wpbc_all_translations.php:678 core/wpbc-activation.php:1161
3789
  #: inc/_bs/admin/api-settings-s.php:376
3790
  msgid "Booked Times:"
3791
  msgstr ""
3792
 
3793
- #: core/lib/wpbc_all_translations.php:679 core/wpbc-activation.php:1181
3794
  msgid ""
3795
  "This booking canceled because we did not receive payment and the administrator did not approve "
3796
  "it."
3797
  msgstr ""
3798
 
3799
- #: core/lib/wpbc_all_translations.php:680 core/wpbc-activation.php:1213
3800
  #: inc/_bs/admin/page-email-payment.php:314
3801
  msgid "You need to make payment for this reservation"
3802
  msgstr ""
3803
 
3804
- #: core/lib/wpbc_all_translations.php:681 core/wpbc-activation.php:1214
3805
  #: inc/_bs/admin/page-email-payment.php:328
3806
  #, php-format
3807
  msgid ""
@@ -3809,33 +3896,33 @@ msgid ""
3809
  "Thank you, %s"
3810
  msgstr ""
3811
 
3812
- #: core/lib/wpbc_all_translations.php:682 core/wpbc-activation.php:1251
3813
  #: inc/_bm/admin/api-settings-m.php:247
3814
  msgid "Cost: "
3815
  msgstr ""
3816
 
3817
- #: core/lib/wpbc_all_translations.php:683 core/wpbc-activation.php:1282
3818
  #: inc/_bl/admin/api-settings-l.php:75
3819
  msgid "Available: "
3820
  msgstr ""
3821
 
3822
- #: core/lib/wpbc_all_translations.php:684 core/wpbc-emails.php:78
3823
  msgid "Booking system"
3824
  msgstr ""
3825
 
3826
- #: core/lib/wpbc_all_translations.php:685 core/wpbc-emails.php:184
3827
  msgid ""
3828
  "You can use (in subject and content of email template) any shortcodes, which you used in the "
3829
  "booking form. Use the shortcodes in the same way as you used them in the content form at "
3830
  "Settings Fields page."
3831
  msgstr ""
3832
 
3833
- #: core/lib/wpbc_all_translations.php:686 core/wpbc-emails.php:187
3834
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:803
3835
  msgid "You can use following shortcodes in content of this template"
3836
  msgstr ""
3837
 
3838
- #: core/lib/wpbc_all_translations.php:687 core/wpbc-emails.php:191
3839
  #: inc/gateways/page-gateways.php:1047
3840
  #, php-format
3841
  msgid ""
@@ -3843,392 +3930,392 @@ msgid ""
3843
  "Fields page"
3844
  msgstr ""
3845
 
3846
- #: core/lib/wpbc_all_translations.php:688 core/wpbc-emails.php:193
3847
  #, php-format
3848
  msgid "%s - inserting data info about the booking"
3849
  msgstr ""
3850
 
3851
- #: core/lib/wpbc_all_translations.php:689 core/wpbc-emails.php:197
3852
  #, php-format
3853
  msgid "%s - inserting the dates of booking"
3854
  msgstr ""
3855
 
3856
- #: core/lib/wpbc_all_translations.php:690 core/wpbc-emails.php:201
3857
  #, php-format
3858
  msgid "%s - inserting check-in date (first day of reservation),"
3859
  msgstr ""
3860
 
3861
- #: core/lib/wpbc_all_translations.php:691 core/wpbc-emails.php:205 core/wpbc-emails.php:206
3862
  #, php-format
3863
  msgid "%s - inserting check-out date (last day of reservation),"
3864
  msgstr ""
3865
 
3866
- #: core/lib/wpbc_all_translations.php:692 core/wpbc-emails.php:211
3867
  #, php-format
3868
  msgid "%s - inserting the number of booking dates "
3869
  msgstr ""
3870
 
3871
- #: core/lib/wpbc_all_translations.php:693 core/wpbc-emails.php:217
3872
  #, php-format
3873
  msgid "%s - inserting ID of booking "
3874
  msgstr ""
3875
 
3876
- #: core/lib/wpbc_all_translations.php:694 core/wpbc-emails.php:222
3877
  #, php-format
3878
  msgid "%s or %s - inserting the title of the booking resource "
3879
  msgstr ""
3880
 
3881
- #: core/lib/wpbc_all_translations.php:695 core/wpbc-emails.php:228
3882
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:811
3883
  #, php-format
3884
  msgid "%s - inserting the cost of booking "
3885
  msgstr ""
3886
 
3887
- #: core/lib/wpbc_all_translations.php:696 core/wpbc-emails.php:234
3888
  #, php-format
3889
  msgid "%s - inserting your site URL "
3890
  msgstr ""
3891
 
3892
- #: core/lib/wpbc_all_translations.php:697 core/wpbc-emails.php:237
3893
  #, php-format
3894
  msgid "%s - inserting IP address of the user who made this action "
3895
  msgstr ""
3896
 
3897
- #: core/lib/wpbc_all_translations.php:698 core/wpbc-emails.php:238
3898
  #, php-format
3899
  msgid ""
3900
  "%s - inserting contents of the User-Agent: header from the current request, if there is one "
3901
  msgstr ""
3902
 
3903
- #: core/lib/wpbc_all_translations.php:699 core/wpbc-emails.php:239
3904
  #, php-format
3905
  msgid "%s - inserting address of the page (if any), where visitor make this action "
3906
  msgstr ""
3907
 
3908
- #: core/lib/wpbc_all_translations.php:700 core/wpbc-emails.php:243
3909
  #, php-format
3910
  msgid "%s - inserting date of this action "
3911
  msgstr ""
3912
 
3913
- #: core/lib/wpbc_all_translations.php:701 core/wpbc-emails.php:240
3914
  #, php-format
3915
  msgid "%s - inserting time of this action "
3916
  msgstr ""
3917
 
3918
- #: core/lib/wpbc_all_translations.php:702 core/wpbc-emails.php:257
3919
  #, php-format
3920
  msgid "%s - inserting moderate link of new booking "
3921
  msgstr ""
3922
 
3923
- #: core/lib/wpbc_all_translations.php:703 core/wpbc-emails.php:268
3924
  #, php-format
3925
  msgid ""
3926
  "%s - inserting link to the page where visitor can edit the reservation, (possible to use the %s "
3927
  "parameter for setting different %s of this page. Example: %s )"
3928
  msgstr ""
3929
 
3930
- #: core/lib/wpbc_all_translations.php:704 core/wpbc-emails.php:272
3931
  #, php-format
3932
  msgid ""
3933
  "%s - inserting link to the page where visitor can cancel the reservation, (possible to use the "
3934
  "%s parameter for setting different %s of this page. Example: %s )"
3935
  msgstr ""
3936
 
3937
- #: core/lib/wpbc_all_translations.php:705 core/wpbc-emails.php:277
3938
  #, php-format
3939
  msgid ""
3940
  "%s - inserting link to payment page where visitor can pay for the reservation (possible to use "
3941
  "the %s parameter for setting different %s of this page. Example: %s )"
3942
  msgstr ""
3943
 
3944
- #: core/lib/wpbc_all_translations.php:706 core/wpbc-emails.php:281
3945
  #, php-format
3946
  msgid "%s - add the reason for booking payment, you can enter it before sending email, "
3947
  msgstr ""
3948
 
3949
- #: core/lib/wpbc_all_translations.php:707 core/wpbc-emails.php:287
3950
  #, php-format
3951
  msgid "%s - add the reason booking was cancelled, you can enter it before sending email, "
3952
  msgstr ""
3953
 
3954
- #: core/lib/wpbc_all_translations.php:708 core/wpbc-emails.php:295 core/wpbc-translation.php:271
3955
  msgid "Configuration in several languages"
3956
  msgstr ""
3957
 
3958
- #: core/lib/wpbc_all_translations.php:709 core/wpbc-emails.php:296 core/wpbc-translation.php:272
3959
  #, php-format
3960
  msgid "%s - start new translation section, where %s - locale of translation"
3961
  msgstr ""
3962
 
3963
- #: core/lib/wpbc_all_translations.php:710 core/wpbc-emails.php:297 core/wpbc-translation.php:273
3964
  #, php-format
3965
  msgid "Example #1: %s - start French translation section"
3966
  msgstr ""
3967
 
3968
- #: core/lib/wpbc_all_translations.php:711 core/wpbc-emails.php:298 core/wpbc-translation.php:274
3969
  #, php-format
3970
  msgid "Example #2: \"%s\" - English and French translation of some message"
3971
  msgstr ""
3972
 
3973
- #: core/lib/wpbc_all_translations.php:712 core/wpbc-functions.php:1017 inc/_bm/biz_m.php:2044
3974
  msgid "yes"
3975
  msgstr ""
3976
 
3977
- #: core/lib/wpbc_all_translations.php:713 core/wpbc-functions.php:1021
3978
  msgid "no"
3979
  msgstr ""
3980
 
3981
- #: core/lib/wpbc_all_translations.php:714 core/wpbc-functions.php:1921
3982
  #: inc/_bm/admin/page-cost.php:48 inc/_bm/admin/page-cost.php:570
3983
  msgid "Costs and Rates"
3984
  msgstr ""
3985
 
3986
- #: core/lib/wpbc_all_translations.php:715 core/wpbc-functions.php:1930
3987
  #: inc/_bm/admin/page-cost-advanced.php:43 inc/_bm/admin/page-cost-advanced.php:148
3988
  #: inc/gateways/page-gateways.php:92
3989
  msgid "Advanced Cost"
3990
  msgstr ""
3991
 
3992
- #: core/lib/wpbc_all_translations.php:716 core/wpbc-functions.php:1939
3993
  #: inc/_bl/admin/page-coupons.php:45 inc/_bl/admin/page-coupons.php:47
3994
  msgid "Coupons"
3995
  msgstr ""
3996
 
3997
- #: core/lib/wpbc_all_translations.php:717 core/wpbc-functions.php:1957
3998
  #: inc/_bm/admin/page-seasons.php:45 inc/_bm/admin/page-seasons.php:47
3999
  msgid "Season Filters"
4000
  msgstr ""
4001
 
4002
- #: core/lib/wpbc_all_translations.php:718 core/wpbc-functions.php:2119
4003
  msgid "Warning! Some error occur, during sending registration request."
4004
  msgstr ""
4005
 
4006
- #: core/lib/wpbc_all_translations.php:719 core/wpbc-functions.php:2124
4007
  msgid ""
4008
  "Please refresh this page and if the same error appear again contact support by email (with info "
4009
  "about order number and website) for finishing the registrations"
4010
  msgstr ""
4011
 
4012
- #: core/lib/wpbc_all_translations.php:720 core/wpbc-functions.php:2152
4013
  #, php-format
4014
  msgid "If you like %s please leave us a %s rating. A huge thank you in advance!"
4015
  msgstr ""
4016
 
4017
- #: core/lib/wpbc_all_translations.php:721 core/wpbc-functions.php:2320
4018
  msgid "Changes saved."
4019
  msgstr ""
4020
 
4021
- #: core/lib/wpbc_all_translations.php:722 core/wpbc-functions.php:2426
4022
  msgid "Click to toggle"
4023
  msgstr ""
4024
 
4025
- #: core/lib/wpbc_all_translations.php:723 core/wpbc-functions.php:2488
4026
  msgid "Prev"
4027
  msgstr ""
4028
 
4029
- #: core/lib/wpbc_all_translations.php:724 core/wpbc-functions.php:2850
4030
  msgid "We&#8217;ve assembled some links to get you started:"
4031
  msgstr ""
4032
 
4033
- #: core/lib/wpbc_all_translations.php:725 core/wpbc-functions.php:2853
4034
  msgid "Get Started"
4035
  msgstr ""
4036
 
4037
- #: core/lib/wpbc_all_translations.php:726 core/wpbc-functions.php:2856
4038
  #, php-format
4039
  msgid "Insert booking form %sshortcode%s into your %sPost%s or %sPage%s"
4040
  msgstr ""
4041
 
4042
- #: core/lib/wpbc_all_translations.php:727 core/wpbc-functions.php:2865
4043
  #, php-format
4044
  msgid "or add booking calendar %sWidget%s to your sidebar."
4045
  msgstr ""
4046
 
4047
- #: core/lib/wpbc_all_translations.php:728 core/wpbc-functions.php:2871
4048
  #, php-format
4049
  msgid "Check %show todo%s that and what %sshortcodes%s are available."
4050
  msgstr ""
4051
 
4052
- #: core/lib/wpbc_all_translations.php:729 core/wpbc-functions.php:2878
4053
  #, php-format
4054
  msgid "Add new booking from your post/page or from %sAdmin Panel%s."
4055
  msgstr ""
4056
 
4057
- #: core/lib/wpbc_all_translations.php:730 core/wpbc-functions.php:2884
4058
  msgid "Next Steps"
4059
  msgstr ""
4060
 
4061
- #: core/lib/wpbc_all_translations.php:731 core/wpbc-functions.php:2887
4062
  #, php-format
4063
  msgid "Check %sBooking Listing%s page for new bookings."
4064
  msgstr ""
4065
 
4066
- #: core/lib/wpbc_all_translations.php:732 core/wpbc-functions.php:2892
4067
  #, php-format
4068
  msgid "Configure booking %sSettings%s."
4069
  msgstr ""
4070
 
4071
- #: core/lib/wpbc_all_translations.php:733 core/wpbc-functions.php:2896
4072
  #, php-format
4073
  msgid "Configure predefined set of your %sForm Fields%s."
4074
  msgstr ""
4075
 
4076
- #: core/lib/wpbc_all_translations.php:734 core/wpbc-functions.php:2900
4077
  #, php-format
4078
  msgid "Configure your predefined %sEmail Templates%s."
4079
  msgstr ""
4080
 
4081
- #: core/lib/wpbc_all_translations.php:735 core/wpbc-functions.php:2906
4082
  msgid "Have a questions?"
4083
  msgstr ""
4084
 
4085
- #: core/lib/wpbc_all_translations.php:736 core/wpbc-functions.php:2909
4086
  #, php-format
4087
  msgid "Check out our %sHelp%s"
4088
  msgstr ""
4089
 
4090
- #: core/lib/wpbc_all_translations.php:737 core/wpbc-functions.php:2914
4091
  #, php-format
4092
  msgid "See %sFAQ%s."
4093
  msgstr ""
4094
 
4095
- #: core/lib/wpbc_all_translations.php:738 core/wpbc-functions.php:2919
4096
  #, php-format
4097
  msgid "Still having questions? Contact %sSupport%s."
4098
  msgstr ""
4099
 
4100
- #: core/lib/wpbc_all_translations.php:739 core/wpbc-functions.php:2927 core/wpbc.php:205
4101
  #, php-format
4102
  msgid "Need even more functionality? Check %s higher versions %s"
4103
  msgstr ""
4104
 
4105
- #: core/lib/wpbc_all_translations.php:740 core/wpbc-js.php:112
4106
  msgid "This field is required"
4107
  msgstr ""
4108
 
4109
- #: core/lib/wpbc_all_translations.php:741 core/wpbc-js.php:113
4110
  msgid "This checkbox must be checked"
4111
  msgstr ""
4112
 
4113
- #: core/lib/wpbc_all_translations.php:742 core/wpbc-js.php:114
4114
  msgid "At least one option must be selected"
4115
  msgstr ""
4116
 
4117
- #: core/lib/wpbc_all_translations.php:743 core/wpbc-js.php:115
4118
  msgid "Incorrect email field"
4119
  msgstr ""
4120
 
4121
- #: core/lib/wpbc_all_translations.php:744 core/wpbc-js.php:116
4122
  msgid "Your emails do not match"
4123
  msgstr ""
4124
 
4125
- #: core/lib/wpbc_all_translations.php:745 core/wpbc-js.php:117
4126
  msgid "Please, select booking date(s) at Calendar."
4127
  msgstr ""
4128
 
4129
- #: core/lib/wpbc_all_translations.php:746 core/wpbc-js.php:132
4130
  msgid "Deleting"
4131
  msgstr ""
4132
 
4133
- #: core/lib/wpbc_all_translations.php:747 core/wpbc-js.php:133
4134
  msgid "Updating"
4135
  msgstr ""
4136
 
4137
- #: core/lib/wpbc_all_translations.php:748 core/wpbc-js.php:134
4138
  msgid "Saving"
4139
  msgstr ""
4140
 
4141
- #: core/lib/wpbc_all_translations.php:749 core/wpbc.php:97
4142
  msgid "Booking"
4143
  msgstr ""
4144
 
4145
- #: core/lib/wpbc_all_translations.php:750 core/wpbc.php:289 core/wpbc.php:296
4146
  msgid "Action is not allowed!"
4147
  msgstr ""
4148
 
4149
- #: core/lib/wpbc_all_translations.php:751 inc/_bl/admin/activation-l.php:119
4150
  #: inc/_bl/admin/activation-l.php:123 inc/_bl/admin/activation-l.php:174
4151
- #: inc/_bl/admin/page-search.php:656 inc/_bm/admin/api-settings-m.php:567 inc/_bm/m-toolbar.php:62
4152
  #: inc/_bm/m-toolbar.php:404 inc/_ps/admin/page-settings-form.php:328
4153
  #: inc/_ps/wpbc-booking-select-widget.php:230
4154
  msgid "Standard"
4155
  msgstr ""
4156
 
4157
- #: core/lib/wpbc_all_translations.php:752 inc/_bl/admin/activation-l.php:120
4158
  #: inc/_bl/admin/activation-l.php:124 inc/_bl/admin/activation-l.php:157
4159
  #: inc/_bl/admin/activation-l.php:158 inc/_bl/admin/activation-l.php:175
4160
  msgid "Superior"
4161
  msgstr ""
4162
 
4163
- #: core/lib/wpbc_all_translations.php:753 inc/_bl/admin/activation-l.php:120
4164
  #: inc/_bs/admin/activation-s.php:93
4165
  msgid "Resource #1"
4166
  msgstr ""
4167
 
4168
- #: core/lib/wpbc_all_translations.php:754 inc/_bl/admin/activation-l.php:121
4169
  #: inc/_bl/admin/activation-l.php:125
4170
  msgid "Presidential Suite"
4171
  msgstr ""
4172
 
4173
- #: core/lib/wpbc_all_translations.php:755 inc/_bl/admin/activation-l.php:121
4174
  #: inc/_bs/admin/activation-s.php:94
4175
  msgid "Resource #2"
4176
  msgstr ""
4177
 
4178
- #: core/lib/wpbc_all_translations.php:756 inc/_bl/admin/activation-l.php:122
4179
  #: inc/_bl/admin/activation-l.php:126 inc/_mu/admin/activation-u.php:83
4180
  msgid "Royal Villa"
4181
  msgstr ""
4182
 
4183
- #: core/lib/wpbc_all_translations.php:757 inc/_bl/admin/activation-l.php:122
4184
  #: inc/_bs/admin/activation-s.php:95
4185
  msgid "Resource #3"
4186
  msgstr ""
4187
 
4188
- #: core/lib/wpbc_all_translations.php:758 inc/_bl/admin/api-settings-l.php:34
4189
  msgid ""
4190
  "Use \"Check In\" date as available in calendar for booking resources with capacity higher then 1 "
4191
  "for search results"
4192
  msgstr ""
4193
 
4194
- #: core/lib/wpbc_all_translations.php:759 inc/_bl/admin/api-settings-l.php:43
4195
  msgid ""
4196
  "Use \"Check Out\" date as available in calendar for booking resources with capacity higher then "
4197
  "1 search results"
4198
  msgstr ""
4199
 
4200
- #: core/lib/wpbc_all_translations.php:760 inc/_bl/admin/api-settings-l.php:66
4201
  msgid "Show availability in tooltip"
4202
  msgstr ""
4203
 
4204
- #: core/lib/wpbc_all_translations.php:761 inc/_bl/admin/api-settings-l.php:67
4205
  msgid ""
4206
  "Check this box to display the available number of booking resources with a tooltip, when mouse "
4207
  "hovers over each day on the calendar(s)."
4208
  msgstr ""
4209
 
4210
- #: core/lib/wpbc_all_translations.php:762 inc/_bl/admin/api-settings-l.php:76
4211
  msgid "Availability Title"
4212
  msgstr ""
4213
 
4214
- #: core/lib/wpbc_all_translations.php:763 inc/_bl/admin/api-settings-l.php:77
4215
  #, php-format
4216
  msgid "Type your %savailability%s description"
4217
  msgstr ""
4218
 
4219
- #: core/lib/wpbc_all_translations.php:764 inc/_bl/admin/api-settings-l.php:110
4220
  #: inc/_bs/admin/api-settings-s.php:516
4221
  msgid "Auto-cancel bookings"
4222
  msgstr ""
4223
 
4224
- #: core/lib/wpbc_all_translations.php:765 inc/_bl/admin/api-settings-l.php:111
4225
  #: inc/_bl/admin/api-settings-l.php:131
4226
  msgid ""
4227
  "Auto Cancel all pending bookings for the specific date(s), if some booking is approved for these "
4228
  "date(s)"
4229
  msgstr ""
4230
 
4231
- #: core/lib/wpbc_all_translations.php:766 inc/_bl/admin/api-settings-l.php:129
4232
  #: inc/_bl/admin/api-settings-l.php:289
4233
  msgid ""
4234
  "Warning!!! After you approved the specific booking(s), all your pending bookings of the same "
@@ -4236,128 +4323,128 @@ msgid ""
4236
  "approved booking, will be automatically canceled!"
4237
  msgstr ""
4238
 
4239
- #: core/lib/wpbc_all_translations.php:767 inc/_bl/admin/api-settings-l.php:160
4240
  msgid "Set capacity based on number of visitors"
4241
  msgstr ""
4242
 
4243
- #: core/lib/wpbc_all_translations.php:768 inc/_bl/admin/api-settings-l.php:161
4244
  msgid ""
4245
  "Check this box if you want total availability (daily capacity) to depend on the number of "
4246
  "selected visitors."
4247
  msgstr ""
4248
 
4249
- #: core/lib/wpbc_all_translations.php:769 inc/_bl/admin/api-settings-l.php:162
4250
- #: inc/_ps/admin/api-settings-p.php:317 inc/_ps/admin/api-settings-p.php:330
4251
  #, php-format
4252
  msgid "Please read more info about configuration of this parameter %shere%s"
4253
  msgstr ""
4254
 
4255
- #: core/lib/wpbc_all_translations.php:770 inc/_bl/admin/api-settings-l.php:177
4256
  msgid ""
4257
  "Add tooltip on calendar(s) to show availability based on the number of available booking "
4258
  "resource items remaining for each day."
4259
  msgstr ""
4260
 
4261
- #: core/lib/wpbc_all_translations.php:771 inc/_bl/admin/api-settings-l.php:180
4262
  #, php-format
4263
  msgid ""
4264
  "Be sure to match the maximum number of visitors for the %sone booking resource%s with the number "
4265
  "of visitors specified on the booking form."
4266
  msgstr ""
4267
 
4268
- #: core/lib/wpbc_all_translations.php:772 inc/_bl/admin/api-settings-l.php:183
4269
  msgid ""
4270
  "Display tooltip on calendar(s) to show availability based on total (fixed) number of visitors "
4271
  "for the resource, which can be at free booking resource items."
4272
  msgstr ""
4273
 
4274
- #: core/lib/wpbc_all_translations.php:773 inc/_bl/admin/api-settings-l.php:186
4275
  #, php-format
4276
  msgid ""
4277
  "Be sure to match the maximum number of visitors for %sall booking resources%s with the number of "
4278
  "visitors specified on the booking form."
4279
  msgstr ""
4280
 
4281
- #: core/lib/wpbc_all_translations.php:774 inc/_bl/admin/api-settings-l.php:214
4282
  msgid "Disable bookings in different booking resources"
4283
  msgstr ""
4284
 
4285
- #: core/lib/wpbc_all_translations.php:775 inc/_bl/admin/api-settings-l.php:215
4286
  msgid ""
4287
  "Check this box to dissable reservations, which can be stored in different booking resources."
4288
  msgstr ""
4289
 
4290
- #: core/lib/wpbc_all_translations.php:776 inc/_bl/admin/api-settings-l.php:216
4291
  msgid ""
4292
  "When checked, all reserved days must be at same booking resource otherwise error message will "
4293
  "show."
4294
  msgstr ""
4295
 
4296
- #: core/lib/wpbc_all_translations.php:777 inc/_bl/admin/api-settings-l.php:337
4297
- #: inc/_ps/p-toolbar.php:1173
4298
  msgid "Parent"
4299
  msgstr ""
4300
 
4301
- #: core/lib/wpbc_all_translations.php:778 inc/_bl/admin/api-settings-l.php:343
4302
- #: inc/_ps/p-toolbar.php:1191
4303
  msgid "Priority"
4304
  msgstr ""
4305
 
4306
- #: core/lib/wpbc_all_translations.php:779 inc/_bl/admin/api-settings-l.php:350
4307
  msgid "Max visitors"
4308
  msgstr ""
4309
 
4310
- #: core/lib/wpbc_all_translations.php:780 inc/_bl/admin/api-settings-l.php:470
4311
  msgid "Single"
4312
  msgstr ""
4313
 
4314
- #: core/lib/wpbc_all_translations.php:781 inc/_bl/admin/api-settings-l.php:472
4315
  msgid "Child"
4316
  msgstr ""
4317
 
4318
- #: core/lib/wpbc_all_translations.php:782 inc/_bl/admin/page-coupons.php:46
4319
  msgid "Setting coupons for discount"
4320
  msgstr ""
4321
 
4322
- #: core/lib/wpbc_all_translations.php:783 inc/_bl/admin/page-coupons.php:122
4323
  #: inc/_bm/m-toolbar.php:590 inc/_bm/m-toolbar.php:592
4324
  msgid "Create dates filter"
4325
  msgstr ""
4326
 
4327
- #: core/lib/wpbc_all_translations.php:784 inc/_bl/admin/page-coupons.php:124
4328
  #: inc/_bl/admin/page-coupons.php:871
4329
  msgid "Add New Discount Coupon"
4330
  msgstr ""
4331
 
4332
- #: core/lib/wpbc_all_translations.php:785 inc/_bl/admin/page-coupons.php:214
4333
  #: inc/_bm/admin/page-availability.php:238 inc/_bm/admin/page-cost.php:217
4334
  #: inc/_bm/admin/page-seasons.php:199 inc/_ps/admin/page-resources.php:187
4335
  msgid "Bulk Actions"
4336
  msgstr ""
4337
 
4338
- #: core/lib/wpbc_all_translations.php:786 inc/_bl/admin/page-coupons.php:505
4339
  #: inc/_bl/admin/page-coupons.php:1170
4340
  msgid "Coupon Code"
4341
  msgstr ""
4342
 
4343
- #: core/lib/wpbc_all_translations.php:787 inc/_bl/admin/page-coupons.php:511
4344
  #: inc/_bl/admin/page-coupons.php:1185 inc/_bl/admin/page-coupons.php:1192
4345
  msgid "Savings"
4346
  msgstr ""
4347
 
4348
- #: core/lib/wpbc_all_translations.php:788 inc/_bl/admin/page-coupons.php:517
4349
  msgid "Minimum Cost"
4350
  msgstr ""
4351
 
4352
- #: core/lib/wpbc_all_translations.php:789 inc/_bl/admin/page-coupons.php:524
4353
  msgid "Expiration"
4354
  msgstr ""
4355
 
4356
- #: core/lib/wpbc_all_translations.php:790 inc/_bl/admin/page-coupons.php:533
4357
  msgid "Number of usage"
4358
  msgstr ""
4359
 
4360
- #: core/lib/wpbc_all_translations.php:791 inc/_bl/admin/page-coupons.php:585
4361
  #: inc/_bm/admin/page-availability.php:571 inc/_bm/admin/page-availability.php:1056
4362
  #: inc/_bm/admin/page-cost-rate.php:256 inc/_bm/admin/page-cost-valuation.php:416
4363
  #: inc/_bm/admin/page-cost.php:632 inc/_bm/admin/page-seasons.php:565
@@ -4366,285 +4453,285 @@ msgstr ""
4366
  msgid "Select Booking Resource"
4367
  msgstr ""
4368
 
4369
- #: core/lib/wpbc_all_translations.php:792 inc/_bl/admin/page-coupons.php:776
4370
  #: inc/_bl/admin/page-coupons.php:1396 inc/_ps/admin/api-settings-p.php:29
4371
- #: inc/_ps/p-toolbar.php:682
4372
  msgid "All resources"
4373
  msgstr ""
4374
 
4375
- #: core/lib/wpbc_all_translations.php:793 inc/_bl/admin/page-coupons.php:993
4376
  #: inc/_ps/wpbc-form-templates.php:124 inc/_ps/wpbc-form-templates.php:196
4377
  msgid "Coupon"
4378
  msgstr ""
4379
 
4380
- #: core/lib/wpbc_all_translations.php:794 inc/_bl/admin/page-coupons.php:1171
4381
  msgid "Enter coupon code."
4382
  msgstr ""
4383
 
4384
- #: core/lib/wpbc_all_translations.php:795 inc/_bl/admin/page-coupons.php:1232
4385
  msgid "Enter number of fixed or percentage savings."
4386
  msgstr ""
4387
 
4388
- #: core/lib/wpbc_all_translations.php:796 inc/_bl/admin/page-coupons.php:1235
4389
  msgid "Expiration Date"
4390
  msgstr ""
4391
 
4392
- #: core/lib/wpbc_all_translations.php:797 inc/_bl/admin/page-coupons.php:1311
4393
  msgid "Select Expiration Date of the coupon."
4394
  msgstr ""
4395
 
4396
- #: core/lib/wpbc_all_translations.php:798 inc/_bl/admin/page-coupons.php:1318
4397
  msgid "Minimum Booking Cost"
4398
  msgstr ""
4399
 
4400
- #: core/lib/wpbc_all_translations.php:799 inc/_bl/admin/page-coupons.php:1319
4401
  msgid "Enter minimum booking cost, when coupon is applicable."
4402
  msgstr ""
4403
 
4404
- #: core/lib/wpbc_all_translations.php:800 inc/_bl/admin/page-coupons.php:1336
4405
  msgid "Maximum number of usage"
4406
  msgstr ""
4407
 
4408
- #: core/lib/wpbc_all_translations.php:801 inc/_bl/admin/page-coupons.php:1337
4409
  msgid "Enter maximum number of times, when coupon is applicable."
4410
  msgstr ""
4411
 
4412
- #: core/lib/wpbc_all_translations.php:802 inc/_bl/admin/page-coupons.php:1360
4413
  msgid "Select booking resources, where is possible to apply this coupon code."
4414
  msgstr ""
4415
 
4416
- #: core/lib/wpbc_all_translations.php:803 inc/_bl/admin/page-coupons.php:1378
4417
  #: inc/_bm/admin/page-seasons.php:1224 inc/_bm/admin/page-seasons.php:1442
4418
- #: inc/_ps/p-toolbar.php:1117
4419
  msgid "Add New"
4420
  msgstr ""
4421
 
4422
- #: core/lib/wpbc_all_translations.php:804 inc/_bl/admin/page-search.php:75
4423
- #: inc/_bl/admin/page-search.php:114 inc/_ps/admin/page-settings-form.php:662
4424
  #: inc/gateways/page-gateways.php:1046
4425
  msgid "Use these shortcodes for customization: "
4426
  msgstr ""
4427
 
4428
- #: core/lib/wpbc_all_translations.php:805 inc/_bl/admin/page-search.php:76
4429
  #, php-format
4430
  msgid "%s - search inside posts/pages which are part of this category, "
4431
  msgstr ""
4432
 
4433
- #: core/lib/wpbc_all_translations.php:806 inc/_bl/admin/page-search.php:77
4434
  #, php-format
4435
  msgid "%s - search inside posts/pages which have this tag, "
4436
  msgstr ""
4437
 
4438
- #: core/lib/wpbc_all_translations.php:807 inc/_bl/admin/page-search.php:78
4439
- #: inc/_bl/admin/page-search.php:130
4440
  #, php-format
4441
  msgid "%s - check-in date, "
4442
  msgstr ""
4443
 
4444
- #: core/lib/wpbc_all_translations.php:808 inc/_bl/admin/page-search.php:79
4445
- #: inc/_bl/admin/page-search.php:131
4446
  #, php-format
4447
  msgid "%s - check-out date, "
4448
  msgstr ""
4449
 
4450
- #: core/lib/wpbc_all_translations.php:809 inc/_bl/admin/page-search.php:80
4451
  #, php-format
4452
  msgid "%s - default selection number of visitors, "
4453
  msgstr ""
4454
 
4455
- #: core/lib/wpbc_all_translations.php:810 inc/_bl/admin/page-search.php:81
4456
  #, php-format
4457
  msgid "Example: %s - custom number of visitor selections\""
4458
  msgstr ""
4459
 
4460
- #: core/lib/wpbc_all_translations.php:811 inc/_bl/admin/page-search.php:83
4461
  #, php-format
4462
  msgid "%s - search button, "
4463
  msgstr ""
4464
 
4465
- #: core/lib/wpbc_all_translations.php:812 inc/_bl/admin/page-search.php:84
4466
- #: inc/_bl/admin/page-search.php:136
4467
  msgid "HTML tags is accepted."
4468
  msgstr ""
4469
 
4470
- #: core/lib/wpbc_all_translations.php:813 inc/_bl/admin/page-search.php:115
4471
  #, php-format
4472
  msgid "%s - resource title, "
4473
  msgstr ""
4474
 
4475
- #: core/lib/wpbc_all_translations.php:814 inc/_bl/admin/page-search.php:116
4476
- #: inc/_bl/admin/page-search.php:117
4477
  #, php-format
4478
  msgid "%s - link to the page with booking form, "
4479
  msgstr ""
4480
 
4481
- #: core/lib/wpbc_all_translations.php:815 inc/_bl/admin/page-search.php:118
4482
  #, php-format
4483
  msgid "%s - availability of booking resource, "
4484
  msgstr ""
4485
 
4486
- #: core/lib/wpbc_all_translations.php:816 inc/_bl/admin/page-search.php:119
4487
  #, php-format
4488
  msgid "%s - maximum number of visitors for the booking resource, "
4489
  msgstr ""
4490
 
4491
- #: core/lib/wpbc_all_translations.php:817 inc/_bl/admin/page-search.php:120
4492
  #, php-format
4493
  msgid "%s - cost of booking the resource, "
4494
  msgstr ""
4495
 
4496
- #: core/lib/wpbc_all_translations.php:818 inc/_bl/admin/page-search.php:121
4497
  #, php-format
4498
  msgid "%s - featured image, taken from the featured image associated with the post, "
4499
  msgstr ""
4500
 
4501
- #: core/lib/wpbc_all_translations.php:819 inc/_bl/admin/page-search.php:122
4502
  #, php-format
4503
  msgid "%s - booking info, taken from the excerpt associated with the post, "
4504
  msgstr ""
4505
 
4506
- #: core/lib/wpbc_all_translations.php:820 inc/_bl/admin/page-search.php:124
4507
  #: inc/_ps/form/class-wpbc-form-help.php:677
4508
  msgid "Full cost of the booking."
4509
  msgstr ""
4510
 
4511
- #: core/lib/wpbc_all_translations.php:821 inc/_bl/admin/page-search.php:125
4512
  #: inc/_ps/form/class-wpbc-form-help.php:679
4513
  msgid "Cost of the booking for the selected dates only."
4514
  msgstr ""
4515
 
4516
- #: core/lib/wpbc_all_translations.php:822 inc/_bl/admin/page-search.php:126
4517
  #: inc/_ps/form/class-wpbc-form-help.php:681
4518
  msgid "Additional cost, which depends on the fields selection in the form."
4519
  msgstr ""
4520
 
4521
- #: core/lib/wpbc_all_translations.php:823 inc/_bl/admin/page-search.php:127
4522
  #: inc/_ps/form/class-wpbc-form-help.php:683
4523
  msgid "The deposit cost of the booking."
4524
  msgstr ""
4525
 
4526
- #: core/lib/wpbc_all_translations.php:824 inc/_bl/admin/page-search.php:128
4527
  #: inc/_ps/form/class-wpbc-form-help.php:685
4528
  msgid "Balance cost of the booking - difference between deposit and full cost."
4529
  msgstr ""
4530
 
4531
- #: core/lib/wpbc_all_translations.php:825 inc/_bl/admin/page-search.php:143
4532
  msgid "hour(s)"
4533
  msgstr ""
4534
 
4535
- #: core/lib/wpbc_all_translations.php:826 inc/_bl/admin/page-search.php:146
4536
  #: inc/_bm/admin/api-settings-m.php:74 inc/_bm/admin/api-settings-m.php:129
4537
  msgid "day(s)"
4538
  msgstr ""
4539
 
4540
- #: core/lib/wpbc_all_translations.php:827 inc/_bl/admin/page-search.php:151
4541
  msgid "Cache expiration"
4542
  msgstr ""
4543
 
4544
- #: core/lib/wpbc_all_translations.php:828 inc/_bl/admin/page-search.php:152
4545
  msgid "Select time of cache expiration"
4546
  msgstr ""
4547
 
4548
- #: core/lib/wpbc_all_translations.php:829 inc/_bl/admin/page-search.php:287
4549
- #: inc/_bl/admin/page-search.php:288
4550
  msgid "Search Settings"
4551
  msgstr ""
4552
 
4553
- #: core/lib/wpbc_all_translations.php:830 inc/_bl/admin/page-search.php:349
4554
  msgid "Cache Updated"
4555
  msgstr ""
4556
 
4557
- #: core/lib/wpbc_all_translations.php:831 inc/_bl/admin/page-search.php:374
4558
- #: inc/_bl/admin/page-search.php:420
4559
  msgid "Search Availability Form"
4560
  msgstr ""
4561
 
4562
- #: core/lib/wpbc_all_translations.php:832 inc/_bl/admin/page-search.php:375
4563
- #: inc/_bl/admin/page-search.php:438 js/wpbc-gutenberg.js:1001
4564
  msgid "Search Results"
4565
  msgstr ""
4566
 
4567
- #: core/lib/wpbc_all_translations.php:833 inc/_bl/admin/page-search.php:376
4568
- #: inc/_bl/admin/page-search.php:465
4569
  msgid "Search Cache"
4570
  msgstr ""
4571
 
4572
- #: core/lib/wpbc_all_translations.php:834 inc/_bl/admin/page-search.php:412
4573
  #, php-format
4574
  msgid ""
4575
  "If you do not see search results at front-end side of your website, please check troubleshooting "
4576
  "instruction %shere%s"
4577
  msgstr ""
4578
 
4579
- #: core/lib/wpbc_all_translations.php:835 inc/_bl/admin/page-search.php:445
4580
  msgid "CSS customization of search form and search results you can make at this file"
4581
  msgstr ""
4582
 
4583
- #: core/lib/wpbc_all_translations.php:836 inc/_bl/admin/page-search.php:592
4584
- #: inc/_bl/admin/page-search.php:645
4585
  msgid "Select Template"
4586
  msgstr ""
4587
 
4588
- #: core/lib/wpbc_all_translations.php:837
4589
  msgid "Inlinee Search Form Template"
4590
  msgstr ""
4591
 
4592
- #: core/lib/wpbc_all_translations.php:838 inc/_bl/admin/page-search.php:612
4593
  msgid "Horizontal Search Form Template"
4594
  msgstr ""
4595
 
4596
- #: core/lib/wpbc_all_translations.php:839 inc/_bl/admin/page-search.php:622
4597
  msgid "Standard Search Form Template"
4598
  msgstr ""
4599
 
4600
- #: core/lib/wpbc_all_translations.php:840 inc/_bl/admin/page-search.php:723
4601
  #: inc/_bm/admin/page-seasons.php:1227 inc/_bm/admin/page-seasons.php:1445
4602
  #: inc/_ps/admin/page-settings-form.php:496
4603
  msgid "Reset"
4604
  msgstr ""
4605
 
4606
- #: core/lib/wpbc_all_translations.php:841 inc/_bl/admin/page-search.php:724
4607
  #: inc/_ps/admin/page-settings-form.php:497
4608
  msgid "Reset current Form"
4609
  msgstr ""
4610
 
4611
- #: core/lib/wpbc_all_translations.php:842 inc/_bl/admin/page-search.php:787
4612
  msgid "Cache will expire:"
4613
  msgstr ""
4614
 
4615
- #: core/lib/wpbc_all_translations.php:843 inc/_bl/admin/page-search.php:817
4616
  #, php-format
4617
  msgid "Found: %s booking forms inside of posts or pages "
4618
  msgstr ""
4619
 
4620
- #: core/lib/wpbc_all_translations.php:844 inc/_bl/admin/page-search.php:821
4621
  msgid "Page"
4622
  msgstr ""
4623
 
4624
- #: core/lib/wpbc_all_translations.php:845 inc/_bl/admin/page-search.php:844
4625
  msgid "Reset Search Cache"
4626
  msgstr ""
4627
 
4628
- #: core/lib/wpbc_all_translations.php:846 inc/_bl/biz_l.php:136
4629
  msgid ""
4630
  "Try selecting fewer visitors. The number of visitors may be more than the number of available "
4631
  "units on selected day(s)!"
4632
  msgstr ""
4633
 
4634
- #: core/lib/wpbc_all_translations.php:847 inc/_bl/biz_l.php:372
4635
  msgid "coupon"
4636
  msgstr ""
4637
 
4638
- #: core/lib/wpbc_all_translations.php:848 inc/_bl/biz_l.php:374
4639
  msgid "discount"
4640
  msgstr ""
4641
 
4642
- #: core/lib/wpbc_all_translations.php:849 inc/_bl/biz_l.php:568
4643
  msgid "Please select check-in and check-out days!"
4644
  msgstr ""
4645
 
4646
- #: core/lib/wpbc_all_translations.php:850 inc/_bl/biz_l.php:1781 inc/_bl/biz_l.php:1792
4647
- #: inc/_bl/biz_l.php:1809 inc/_bl/biz_l.php:1814
4648
  #, php-format
4649
  msgid ""
4650
  "Sorry, the reservation was not made because these days are already booked!!! %s (Its not "
@@ -4652,173 +4739,173 @@ msgid ""
4652
  "page and try other days."
4653
  msgstr ""
4654
 
4655
- #: core/lib/wpbc_all_translations.php:851 inc/_bl/biz_l.php:2381
4656
  #, php-format
4657
  msgid "The folowing pending booking(s): %s deleted."
4658
  msgstr ""
4659
 
4660
- #: core/lib/wpbc_all_translations.php:852 inc/_bl/wpbc-search-availability.php:819
4661
  msgid "Book now"
4662
  msgstr ""
4663
 
4664
- #: core/lib/wpbc_all_translations.php:853 inc/_bl/wpdev-booking-search-widget.php:14
4665
  #: inc/_bl/wpdev-booking-search-widget.php:67
4666
  msgid "Search availability"
4667
  msgstr ""
4668
 
4669
- #: core/lib/wpbc_all_translations.php:854 inc/_bl/wpdev-booking-search-widget.php:15
4670
  msgid "Search results."
4671
  msgstr ""
4672
 
4673
- #: core/lib/wpbc_all_translations.php:855 inc/_bl/wpdev-booking-search-widget.php:16
4674
  msgid "Nothing found."
4675
  msgstr ""
4676
 
4677
- #: core/lib/wpbc_all_translations.php:856 inc/_bl/wpdev-booking-search-widget.php:85
4678
  msgid "Title of search widget"
4679
  msgstr ""
4680
 
4681
- #: core/lib/wpbc_all_translations.php:857 inc/_bl/wpdev-booking-search-widget.php:93
4682
  msgid "Title of search results"
4683
  msgstr ""
4684
 
4685
- #: core/lib/wpbc_all_translations.php:858 inc/_bl/wpdev-booking-search-widget.php:98
4686
  #, php-format
4687
  msgid "Please type the %sTitle of search results%s."
4688
  msgstr ""
4689
 
4690
- #: core/lib/wpbc_all_translations.php:859 inc/_bl/wpdev-booking-search-widget.php:102
4691
  msgid "Nothing found message"
4692
  msgstr ""
4693
 
4694
- #: core/lib/wpbc_all_translations.php:860 inc/_bl/wpdev-booking-search-widget.php:107
4695
  #, php-format
4696
  msgid "Please type the %smessage ,what is showing, when nothing found%s."
4697
  msgstr ""
4698
 
4699
- #: core/lib/wpbc_all_translations.php:861 inc/_bl/wpdev-booking-search-widget.php:111
4700
  msgid "URL of Search Results"
4701
  msgstr ""
4702
 
4703
- #: core/lib/wpbc_all_translations.php:862 inc/_bl/wpdev-booking-search-widget.php:116
4704
  #, php-format
4705
  msgid ""
4706
  "Please type the URL of the page %s(with %s shortcode in content)%s, where search results will "
4707
  "show."
4708
  msgstr ""
4709
 
4710
- #: core/lib/wpbc_all_translations.php:863 inc/_bm/admin/activation-m.php:48
4711
- #: inc/_mu/multiuser.php:633
4712
  msgid "Weekend"
4713
  msgstr ""
4714
 
4715
- #: core/lib/wpbc_all_translations.php:864 inc/_bm/admin/activation-m.php:92
4716
- #: inc/_mu/multiuser.php:635
4717
  msgid "High season"
4718
  msgstr ""
4719
 
4720
- #: core/lib/wpbc_all_translations.php:865 inc/_bm/admin/api-settings-m.php:35
4721
  msgid "Limit available days from today"
4722
  msgstr ""
4723
 
4724
- #: core/lib/wpbc_all_translations.php:866 inc/_bm/admin/api-settings-m.php:36
4725
  msgid "Select number of available days in calendar start from today."
4726
  msgstr ""
4727
 
4728
- #: core/lib/wpbc_all_translations.php:867 inc/_bm/admin/api-settings-m.php:85
4729
  msgid "Unavailable time before / after booking"
4730
  msgstr ""
4731
 
4732
- #: core/lib/wpbc_all_translations.php:868 inc/_bm/admin/api-settings-m.php:87
4733
  msgid ""
4734
  "This feature is applying only for bookings for specific timeslots, or if activated check in/out "
4735
  "time option."
4736
  msgstr ""
4737
 
4738
- #: core/lib/wpbc_all_translations.php:869 inc/_bm/admin/api-settings-m.php:110
4739
  #: inc/_bm/admin/api-settings-m.php:134
4740
  msgid "Before booking"
4741
  msgstr ""
4742
 
4743
- #: core/lib/wpbc_all_translations.php:870 inc/_bm/admin/api-settings-m.php:111
4744
  #: inc/_bm/admin/api-settings-m.php:120 inc/_bm/admin/api-settings-m.php:135
4745
  #: inc/_bm/admin/api-settings-m.php:144
4746
  msgid "Select unavailable time interval."
4747
  msgstr ""
4748
 
4749
- #: core/lib/wpbc_all_translations.php:871 inc/_bm/admin/api-settings-m.php:119
4750
  #: inc/_bm/admin/api-settings-m.php:143
4751
  msgid "After booking"
4752
  msgstr ""
4753
 
4754
- #: core/lib/wpbc_all_translations.php:872 inc/_bm/admin/api-settings-m.php:170
4755
  msgid "Showing cost in date cell"
4756
  msgstr ""
4757
 
4758
- #: core/lib/wpbc_all_translations.php:873 inc/_bm/admin/api-settings-m.php:171
4759
  #, php-format
4760
  msgid " Check this box to display the %sdaily cost at the date cells%s in the calendar(s)."
4761
  msgstr ""
4762
 
4763
- #: core/lib/wpbc_all_translations.php:874 inc/_bm/admin/api-settings-m.php:188
4764
  msgid "Currency symbol"
4765
  msgstr ""
4766
 
4767
- #: core/lib/wpbc_all_translations.php:875 inc/_bm/admin/api-settings-m.php:224
4768
  #, php-format
4769
  msgid ""
4770
  "Type your %scurrency symbol%s to display near daily cost in date cells. %sDocumentation on "
4771
  "currency symbols%s"
4772
  msgstr ""
4773
 
4774
- #: core/lib/wpbc_all_translations.php:876 inc/_bm/admin/api-settings-m.php:237
4775
  msgid "Showing cost in tooltip"
4776
  msgstr ""
4777
 
4778
- #: core/lib/wpbc_all_translations.php:877 inc/_bm/admin/api-settings-m.php:238
4779
  msgid ""
4780
  " Check this box to display the daily cost with a tooltip when mouse hovers over each day on the "
4781
  "calendar(s)."
4782
  msgstr ""
4783
 
4784
- #: core/lib/wpbc_all_translations.php:878 inc/_bm/admin/api-settings-m.php:246
4785
  msgid "Cost Title"
4786
  msgstr ""
4787
 
4788
- #: core/lib/wpbc_all_translations.php:879 inc/_bm/admin/api-settings-m.php:248
4789
  #, php-format
4790
  msgid "Type your %scost%s description"
4791
  msgstr ""
4792
 
4793
- #: core/lib/wpbc_all_translations.php:880 inc/_bm/admin/api-settings-m.php:569
4794
  #: inc/_bm/m-toolbar.php:67 inc/_bm/m-toolbar.php:414
4795
  msgid "Custom Forms"
4796
  msgstr ""
4797
 
4798
- #: core/lib/wpbc_all_translations.php:881 inc/_bm/admin/page-availability.php:48
4799
  msgid "Configuration of availability for booking resources"
4800
  msgstr ""
4801
 
4802
- #: core/lib/wpbc_all_translations.php:882 inc/_bm/admin/page-availability.php:49
4803
  msgid "Availability Settings"
4804
  msgstr ""
4805
 
4806
- #: core/lib/wpbc_all_translations.php:883 inc/_bm/admin/page-availability.php:143
4807
- #: inc/_bm/admin/page-cost.php:119 inc/_ps/p-toolbar.php:1146
4808
  msgid "Show Children Resources"
4809
  msgstr ""
4810
 
4811
- #: core/lib/wpbc_all_translations.php:884 inc/_bm/admin/page-availability.php:145
4812
- #: inc/_bm/admin/page-cost.php:121 inc/_ps/p-toolbar.php:1148
4813
  msgid "Hide Children Resources"
4814
  msgstr ""
4815
 
4816
- #: core/lib/wpbc_all_translations.php:885 inc/_bm/admin/page-availability.php:239
4817
  #: inc/_bm/admin/page-availability.php:244 inc/_bm/admin/page-availability.php:800
4818
  msgid "Set Availability"
4819
  msgstr ""
4820
 
4821
- #: core/lib/wpbc_all_translations.php:886 inc/_bm/admin/page-availability.php:253
4822
  #: inc/_bm/admin/page-cost.php:238 inc/_ps/admin/page-resources.php:202
4823
  #, php-format
4824
  msgid ""
@@ -4826,681 +4913,681 @@ msgid ""
4826
  "booking(s) from this resource(s). Otherwise you will have %slost bookings%s."
4827
  msgstr ""
4828
 
4829
- #: core/lib/wpbc_all_translations.php:887 inc/_bm/admin/page-availability.php:499
4830
  #: inc/_bm/admin/page-cost.php:565 inc/_ps/admin/page-resources.php:463
4831
  msgid "Resource Name"
4832
  msgstr ""
4833
 
4834
- #: core/lib/wpbc_all_translations.php:888 inc/_bm/admin/page-availability.php:608
4835
  #: inc/_bm/admin/page-availability.php:895
4836
  msgid "All days"
4837
  msgstr ""
4838
 
4839
- #: core/lib/wpbc_all_translations.php:889 inc/_bm/admin/page-availability.php:609
4840
  #: inc/_bm/admin/page-availability.php:637 inc/_bm/admin/page-availability.php:890
4841
  #: inc/_bm/admin/page-availability.php:904 inc/_bm/admin/page-availability.php:933
4842
  #: inc/_bm/admin/page-availability.php:1097 inc/_bm/admin/page-cost-rate.php:348
4843
  msgid "available"
4844
  msgstr ""
4845
 
4846
- #: core/lib/wpbc_all_translations.php:890 inc/_bm/admin/page-availability.php:610
4847
  #: inc/_bm/admin/page-availability.php:638 inc/_bm/admin/page-availability.php:891
4848
  #: inc/_bm/admin/page-availability.php:900 inc/_bm/admin/page-availability.php:929
4849
  #: inc/_bm/admin/page-availability.php:1093 inc/_bm/admin/page-cost-rate.php:344
4850
  msgid "unavailable"
4851
  msgstr ""
4852
 
4853
- #: core/lib/wpbc_all_translations.php:891 inc/_bm/admin/page-availability.php:635
4854
  #, php-format
4855
  msgid "and %s on seasons:"
4856
  msgstr ""
4857
 
4858
- #: core/lib/wpbc_all_translations.php:892 inc/_bm/admin/page-availability.php:925
4859
  #, php-format
4860
  msgid "Select %s days by activating specific season filter below or %sadd new season filter%s"
4861
  msgstr ""
4862
 
4863
- #: core/lib/wpbc_all_translations.php:893 inc/_bm/admin/page-availability.php:943
4864
  #: inc/_bm/admin/page-cost-deposit.php:309 inc/_bm/admin/page-cost-early-late-booking.php:314
4865
  #: inc/_bm/admin/page-cost-early-late-booking.php:514 inc/_bm/admin/page-cost-rate.php:119
4866
  #: inc/_bm/admin/page-cost-valuation.php:148
4867
  msgid "Hide season filters"
4868
  msgstr ""
4869
 
4870
- #: core/lib/wpbc_all_translations.php:894 inc/_bm/admin/page-availability.php:948
4871
  #: inc/_bm/admin/page-cost-deposit.php:314 inc/_bm/admin/page-cost-early-late-booking.php:319
4872
  #: inc/_bm/admin/page-cost-early-late-booking.php:519 inc/_bm/admin/page-cost-rate.php:124
4873
  #: inc/_bm/admin/page-cost-valuation.php:153
4874
  msgid "Show all exist season filters"
4875
  msgstr ""
4876
 
4877
- #: core/lib/wpbc_all_translations.php:895 inc/_bm/admin/page-availability.php:981
4878
  #: inc/_bm/admin/page-cost-rate.php:157 inc/gateways/page-gateways.php:849
4879
  msgid "Enabled"
4880
  msgstr ""
4881
 
4882
- #: core/lib/wpbc_all_translations.php:896 inc/_bm/admin/page-cost-advanced.php:44
4883
  msgid "Customization of additional cost, which depend from form fields"
4884
  msgstr ""
4885
 
4886
- #: core/lib/wpbc_all_translations.php:897 inc/_bm/admin/page-cost-advanced.php:45
4887
  msgid "Advanced Cost Settings"
4888
  msgstr ""
4889
 
4890
- #: core/lib/wpbc_all_translations.php:898 inc/_bm/admin/page-cost-advanced.php:125
4891
  msgid "Configure additional cost, which depend from selection of selectbox(es) and checkbox(es)."
4892
  msgstr ""
4893
 
4894
- #: core/lib/wpbc_all_translations.php:899 inc/_bm/admin/page-cost-advanced.php:127
4895
  #, php-format
4896
  msgid ""
4897
  "Fields %s(selectbox(es) and checkbox(es))%s are shown here automatically if they exist in the "
4898
  "%sbooking form%s."
4899
  msgstr ""
4900
 
4901
- #: core/lib/wpbc_all_translations.php:900 inc/_bm/admin/page-cost-advanced.php:441
4902
  #: inc/_bm/admin/page-cost-deposit.php:181
4903
  msgid "Deposit type"
4904
  msgstr ""
4905
 
4906
- #: core/lib/wpbc_all_translations.php:901 inc/_bm/admin/page-cost-advanced.php:460
4907
  msgid "of total cost"
4908
  msgstr ""
4909
 
4910
- #: core/lib/wpbc_all_translations.php:902 inc/_bm/admin/page-cost-advanced.php:462
4911
  #: inc/_bs/admin/api-settings-s.php:898
4912
  msgid "night"
4913
  msgstr ""
4914
 
4915
- #: core/lib/wpbc_all_translations.php:903 inc/_bm/admin/page-cost-advanced.php:463
4916
  msgid "as additional sum"
4917
  msgstr ""
4918
 
4919
- #: core/lib/wpbc_all_translations.php:904 inc/_bm/admin/page-cost-advanced.php:658
4920
  msgid "Enter additional cost in formats:"
4921
  msgstr ""
4922
 
4923
- #: core/lib/wpbc_all_translations.php:905 inc/_bm/admin/page-cost-advanced.php:659
4924
  #, php-format
4925
  msgid ""
4926
  "For example, if the original cost of the booking is %s, then after applying additional costs the "
4927
  "total cost will be folowing"
4928
  msgstr ""
4929
 
4930
- #: core/lib/wpbc_all_translations.php:906 inc/_bm/admin/page-cost-advanced.php:662
4931
  msgid "Enter fixed cost"
4932
  msgstr ""
4933
 
4934
- #: core/lib/wpbc_all_translations.php:907 inc/_bm/admin/page-cost-advanced.php:662
4935
  #: inc/_bm/admin/page-cost-advanced.php:665 inc/_bm/admin/page-cost-advanced.php:671
4936
  #: inc/_bm/admin/page-cost-advanced.php:681
4937
  #, php-format
4938
  msgid "%s, then total cost will be %s"
4939
  msgstr ""
4940
 
4941
- #: core/lib/wpbc_all_translations.php:908 inc/_bm/admin/page-cost-advanced.php:665
4942
  msgid "Enter percentage of the entire booking"
4943
  msgstr ""
4944
 
4945
- #: core/lib/wpbc_all_translations.php:909 inc/_bm/admin/page-cost-advanced.php:668
4946
  msgid "Enter fixed amount for each selected day"
4947
  msgstr ""
4948
 
4949
- #: core/lib/wpbc_all_translations.php:910 inc/_bm/admin/page-cost-advanced.php:668
4950
  #, php-format
4951
  msgid "%s, then total cost will be (if selected 3 days) %s"
4952
  msgstr ""
4953
 
4954
- #: core/lib/wpbc_all_translations.php:911 inc/_bm/admin/page-cost-advanced.php:668
4955
  #: inc/_ps/form/class-wpbc-form-help.php:279 inc/_ps/form/class-wpbc-form-help.php:292
4956
  #: inc/_ps/form/class-wpbc-form-help.php:306 inc/_ps/form/class-wpbc-form-help.php:344
4957
  msgid "or"
4958
  msgstr ""
4959
 
4960
- #: core/lib/wpbc_all_translations.php:912 inc/_bm/admin/page-cost-advanced.php:671
4961
  msgid "Enter percentage as additional sum, which is based only on original cost and not full sum"
4962
  msgstr ""
4963
 
4964
- #: core/lib/wpbc_all_translations.php:913 inc/_bm/admin/page-cost-advanced.php:674
4965
  #: inc/_bm/admin/page-cost-advanced.php:686
4966
  #, php-format
4967
  msgid "Please check more info about configuration of this cost settings on this %spage%s."
4968
  msgstr ""
4969
 
4970
- #: core/lib/wpbc_all_translations.php:914 inc/_bm/admin/page-cost-deposit.php:73
4971
  msgid "Set Deposit"
4972
  msgstr ""
4973
 
4974
- #: core/lib/wpbc_all_translations.php:915 inc/_bm/admin/page-cost-deposit.php:135
4975
  msgid "deposit payment for booking resource"
4976
  msgstr ""
4977
 
4978
- #: core/lib/wpbc_all_translations.php:916 inc/_bm/admin/page-cost-deposit.php:153
4979
  #: inc/_bm/admin/page-cost-deposit.php:162
4980
  msgid "Deposit amount"
4981
  msgstr ""
4982
 
4983
- #: core/lib/wpbc_all_translations.php:917 inc/_bm/admin/page-cost-deposit.php:199
4984
  #: inc/_bm/admin/page-cost-early-late-booking.php:203
4985
  #: inc/_bm/admin/page-cost-early-late-booking.php:404
4986
  msgid "fixed total in"
4987
  msgstr ""
4988
 
4989
- #: core/lib/wpbc_all_translations.php:918 inc/_bm/admin/page-cost-deposit.php:200
4990
  #: inc/_bm/admin/page-cost-early-late-booking.php:204
4991
  #: inc/_bm/admin/page-cost-early-late-booking.php:405
4992
  msgid "of payment"
4993
  msgstr ""
4994
 
4995
- #: core/lib/wpbc_all_translations.php:919 inc/_bm/admin/page-cost-deposit.php:209
4996
  #: inc/_bm/admin/page-cost-early-late-booking.php:213
4997
  #: inc/_bm/admin/page-cost-early-late-booking.php:414
4998
  msgid "Conditions"
4999
  msgstr ""
5000
 
5001
- #: core/lib/wpbc_all_translations.php:920 inc/_bm/admin/page-cost-deposit.php:219
5002
  #, php-format
5003
  msgid ""
5004
  "Show deposit payment form, only if difference between %sToday%s and %sCheck In%s days more than"
5005
  msgstr ""
5006
 
5007
- #: core/lib/wpbc_all_translations.php:921 inc/_bm/admin/page-cost-deposit.php:271
5008
  #, php-format
5009
  msgid "Show deposit payment form, only if %sCheck In%s day inside of this %sSeason Filter%s"
5010
  msgstr ""
5011
 
5012
- #: core/lib/wpbc_all_translations.php:922 inc/_bm/admin/page-cost-deposit.php:275
5013
  #: inc/_bm/admin/page-cost-early-late-booking.php:280
5014
  #: inc/_bm/admin/page-cost-early-late-booking.php:480 inc/_bm/admin/page-cost-valuation.php:542
5015
  msgid "Any days"
5016
  msgstr ""
5017
 
5018
- #: core/lib/wpbc_all_translations.php:923 inc/_bm/admin/page-cost-deposit.php:342
5019
  msgid "Deposit payment total"
5020
  msgstr ""
5021
 
5022
- #: core/lib/wpbc_all_translations.php:924 inc/_bm/admin/page-cost-rate.php:69
5023
  msgid "Set Rates"
5024
  msgstr ""
5025
 
5026
- #: core/lib/wpbc_all_translations.php:925 inc/_bm/admin/page-cost-rate.php:163
5027
  #: inc/_bm/admin/page-cost.php:660 inc/_bm/admin/page-cost.php:661
5028
  msgid "Rates"
5029
  msgstr ""
5030
 
5031
- #: core/lib/wpbc_all_translations.php:926 inc/_bm/admin/page-cost-rate.php:167
5032
  msgid "Seasonal price"
5033
  msgstr ""
5034
 
5035
- #: core/lib/wpbc_all_translations.php:927 inc/_bm/admin/page-cost-rate.php:171
5036
  #: inc/_bm/admin/page-cost-valuation.php:198
5037
  msgid "Season"
5038
  msgstr ""
5039
 
5040
- #: core/lib/wpbc_all_translations.php:928 inc/_bm/admin/page-cost-rate.php:215
5041
  #, php-format
5042
  msgid ""
5043
  "Enter seasonal rate(s) (cost diference in %s from standard cost %s or a fixed cost) of the "
5044
  "booking resource (%s) or %sAdd a new seasonal filter%s"
5045
  msgstr ""
5046
 
5047
- #: core/lib/wpbc_all_translations.php:929 inc/_bm/admin/page-cost-valuation.php:96
5048
  #: inc/_bm/admin/page-cost.php:220 inc/_bm/admin/page-cost.php:229
5049
  msgid "Set Valuation Days"
5050
  msgstr ""
5051
 
5052
- #: core/lib/wpbc_all_translations.php:930 inc/_bm/admin/page-cost-valuation.php:185
5053
  #: inc/_mu/admin/page-users.php:437
5054
  msgid "Status"
5055
  msgstr ""
5056
 
5057
- #: core/lib/wpbc_all_translations.php:931 inc/_bm/admin/page-cost-valuation.php:194
5058
  msgid "Costs"
5059
  msgstr ""
5060
 
5061
- #: core/lib/wpbc_all_translations.php:932 inc/_bm/admin/page-cost-valuation.php:249
5062
  msgid "Add new cost"
5063
  msgstr ""
5064
 
5065
- #: core/lib/wpbc_all_translations.php:933 inc/_bm/admin/page-cost-valuation.php:272
5066
  #, php-format
5067
  msgid ""
5068
  "Cost setings at %stop have higher priority%s than other costs of same type at the %sbottom%s of "
5069
  "the list."
5070
  msgstr ""
5071
 
5072
- #: core/lib/wpbc_all_translations.php:934 inc/_bm/admin/page-cost-valuation.php:275
5073
  #, php-format
5074
  msgid ""
5075
  "Please create all %s terms firstly %s(from higher priority to lower)%s, then terms %s and after "
5076
  "terms %s"
5077
  msgstr ""
5078
 
5079
- #: core/lib/wpbc_all_translations.php:935 inc/_bm/admin/page-cost-valuation.php:275
5080
  #: inc/_bm/admin/page-cost-valuation.php:278 inc/_bm/admin/page-cost-valuation.php:450
5081
  msgid "Together"
5082
  msgstr ""
5083
 
5084
- #: core/lib/wpbc_all_translations.php:936 inc/_bm/admin/page-cost-valuation.php:275
5085
  #: inc/_bm/admin/page-cost-valuation.php:278 inc/_bm/admin/page-cost-valuation.php:282
5086
  #: inc/_bm/admin/page-cost-valuation.php:284 inc/_bm/admin/page-cost-valuation.php:448
5087
  msgid "For"
5088
  msgstr ""
5089
 
5090
- #: core/lib/wpbc_all_translations.php:937 inc/_bm/admin/page-cost-valuation.php:278
5091
  #, php-format
5092
  msgid "%s and %s terms have higher priority than a range %s days."
5093
  msgstr ""
5094
 
5095
- #: core/lib/wpbc_all_translations.php:938 inc/_bm/admin/page-cost-valuation.php:282
5096
  #, php-format
5097
  msgid "%s - definition of check-out date."
5098
  msgstr ""
5099
 
5100
- #: core/lib/wpbc_all_translations.php:939 inc/_bm/admin/page-cost-valuation.php:284
5101
  #: inc/_bs/admin/api-settings-s.php:199 inc/_bs/admin/api-settings-s.php:325
5102
  #: inc/_bs/admin/api-settings-s.php:338 inc/_ps/form/class-wpbc-form-help.php:532
5103
  #: inc/_ps/form/class-wpbc-form-help.php:535
5104
  msgid "Example"
5105
  msgstr ""
5106
 
5107
- #: core/lib/wpbc_all_translations.php:940 inc/_bm/admin/page-cost-valuation.php:291
5108
  msgid ""
5109
  "Specific cost will take affect, only if it active (the box at the left side is checked) and if "
5110
  "\"Check In\" (start) date belong to selected season filter or if set \"Any days\"."
5111
  msgstr ""
5112
 
5113
- #: core/lib/wpbc_all_translations.php:941 inc/_bm/admin/page-cost-valuation.php:335
5114
  #: inc/_bm/admin/page-cost-valuation.php:336 inc/_bm/biz_m.php:219 inc/_bm/biz_m.php:251
5115
  #: inc/_bm/biz_m.php:252
5116
  msgid " for all days!"
5117
  msgstr ""
5118
 
5119
- #: core/lib/wpbc_all_translations.php:942 inc/_bm/admin/page-cost-valuation.php:341
5120
  #: inc/_bm/admin/page-cost-valuation.php:502 inc/_bm/biz_m.php:217 inc/_bm/biz_m.php:249
5121
  msgid "from the cost of 1 day "
5122
  msgstr ""
5123
 
5124
- #: core/lib/wpbc_all_translations.php:943 inc/_bm/admin/page-cost-valuation.php:342
5125
  #: inc/_bm/admin/page-cost-valuation.php:503 inc/_bm/biz_m.php:216 inc/_bm/biz_m.php:248
5126
  msgid "per 1 day"
5127
  msgstr ""
5128
 
5129
- #: core/lib/wpbc_all_translations.php:944 inc/_bm/admin/page-cost-valuation.php:470
5130
  #: inc/_bm/admin/page-seasons.php:1564
5131
  msgid "to"
5132
  msgstr ""
5133
 
5134
- #: core/lib/wpbc_all_translations.php:945 inc/_bm/admin/page-cost-valuation.php:504
5135
  #: inc/_bm/biz_m.php:218 inc/_bm/biz_m.php:250
5136
  #, php-format
5137
  msgid "Additional cost in %s per 1 day"
5138
  msgstr ""
5139
 
5140
- #: core/lib/wpbc_all_translations.php:946 inc/_bm/admin/page-cost.php:49
5141
  msgid "Customization of rates, valuation days cost and deposit amount "
5142
  msgstr ""
5143
 
5144
- #: core/lib/wpbc_all_translations.php:947 inc/_bm/admin/page-cost.php:50
5145
  msgid "Costs and Rates Settings"
5146
  msgstr ""
5147
 
5148
- #: core/lib/wpbc_all_translations.php:948 inc/_bm/admin/page-cost.php:219
5149
  #: inc/_bm/admin/page-cost.php:228
5150
  msgid "Set Rate"
5151
  msgstr ""
5152
 
5153
- #: core/lib/wpbc_all_translations.php:949 inc/_bm/admin/page-cost.php:221
5154
  #: inc/_bm/admin/page-cost.php:230
5155
  msgid "Set Deposit Amount"
5156
  msgstr ""
5157
 
5158
- #: core/lib/wpbc_all_translations.php:950 inc/_bm/admin/page-cost.php:667
5159
  #: inc/_bm/admin/page-cost.php:668
5160
  msgid "Valuation days"
5161
  msgstr ""
5162
 
5163
- #: core/lib/wpbc_all_translations.php:951 inc/_bm/admin/page-cost.php:674
5164
  #: inc/_bm/admin/page-cost.php:675 inc/gateways/page-gateways.php:1412
5165
  msgid "Deposit"
5166
  msgstr ""
5167
 
5168
- #: core/lib/wpbc_all_translations.php:952 inc/_bm/admin/page-seasons.php:46
5169
  msgid "Customizaton of Season Filters"
5170
  msgstr ""
5171
 
5172
- #: core/lib/wpbc_all_translations.php:953 inc/_bm/admin/page-seasons.php:680
5173
  #: inc/_bm/admin/page-seasons.php:815
5174
  msgid "Specific Dates Filter"
5175
  msgstr ""
5176
 
5177
- #: core/lib/wpbc_all_translations.php:954 inc/_bm/admin/page-seasons.php:743
5178
  #: inc/_bm/admin/page-seasons.php:821
5179
  msgid "Conditional Dates Filter"
5180
  msgstr ""
5181
 
5182
- #: core/lib/wpbc_all_translations.php:955 inc/_bm/admin/page-seasons.php:956
5183
  #: inc/_bm/admin/page-seasons.php:1257
5184
  msgid "Filter Name"
5185
  msgstr ""
5186
 
5187
- #: core/lib/wpbc_all_translations.php:956 inc/_bm/admin/page-seasons.php:957
5188
  #: inc/_bm/admin/page-seasons.php:1258
5189
  msgid "Type filter name"
5190
  msgstr ""
5191
 
5192
- #: core/lib/wpbc_all_translations.php:957 inc/_bm/admin/page-seasons.php:990
5193
  msgid "Weekdays"
5194
  msgstr ""
5195
 
5196
- #: core/lib/wpbc_all_translations.php:958 inc/_bm/admin/page-seasons.php:1106
5197
  msgid "Months"
5198
  msgstr ""
5199
 
5200
- #: core/lib/wpbc_all_translations.php:959 inc/_bm/admin/page-seasons.php:1108
5201
  #: inc/_bm/admin/page-seasons.php:1283
5202
  msgid "January"
5203
  msgstr ""
5204
 
5205
- #: core/lib/wpbc_all_translations.php:960 inc/_bm/admin/page-seasons.php:1109
5206
  #: inc/_bm/admin/page-seasons.php:1284
5207
  msgid "February"
5208
  msgstr ""
5209
 
5210
- #: core/lib/wpbc_all_translations.php:961 inc/_bm/admin/page-seasons.php:1110
5211
  #: inc/_bm/admin/page-seasons.php:1285
5212
  msgid "March"
5213
  msgstr ""
5214
 
5215
- #: core/lib/wpbc_all_translations.php:962 inc/_bm/admin/page-seasons.php:1111
5216
  #: inc/_bm/admin/page-seasons.php:1286
5217
  msgid "April"
5218
  msgstr ""
5219
 
5220
- #: core/lib/wpbc_all_translations.php:963 inc/_bm/admin/page-seasons.php:1112
5221
  #: inc/_bm/admin/page-seasons.php:1287 inc/_bm/admin/page-seasons.php:1490
5222
  msgid "May"
5223
  msgstr ""
5224
 
5225
- #: core/lib/wpbc_all_translations.php:964 inc/_bm/admin/page-seasons.php:1113
5226
  #: inc/_bm/admin/page-seasons.php:1288
5227
  msgid "June"
5228
  msgstr ""
5229
 
5230
- #: core/lib/wpbc_all_translations.php:965 inc/_bm/admin/page-seasons.php:1114
5231
  #: inc/_bm/admin/page-seasons.php:1289
5232
  msgid "July"
5233
  msgstr ""
5234
 
5235
- #: core/lib/wpbc_all_translations.php:966 inc/_bm/admin/page-seasons.php:1115
5236
  #: inc/_bm/admin/page-seasons.php:1290
5237
  msgid "August"
5238
  msgstr ""
5239
 
5240
- #: core/lib/wpbc_all_translations.php:967 inc/_bm/admin/page-seasons.php:1116
5241
  #: inc/_bm/admin/page-seasons.php:1291
5242
  msgid "September"
5243
  msgstr ""
5244
 
5245
- #: core/lib/wpbc_all_translations.php:968 inc/_bm/admin/page-seasons.php:1117
5246
  #: inc/_bm/admin/page-seasons.php:1292
5247
  msgid "October"
5248
  msgstr ""
5249
 
5250
- #: core/lib/wpbc_all_translations.php:969 inc/_bm/admin/page-seasons.php:1118
5251
  #: inc/_bm/admin/page-seasons.php:1293
5252
  msgid "November"
5253
  msgstr ""
5254
 
5255
- #: core/lib/wpbc_all_translations.php:970 inc/_bm/admin/page-seasons.php:1119
5256
  #: inc/_bm/admin/page-seasons.php:1294
5257
  msgid "December"
5258
  msgstr ""
5259
 
5260
- #: core/lib/wpbc_all_translations.php:971 inc/_bm/admin/page-seasons.php:1174
5261
  msgid "Years"
5262
  msgstr ""
5263
 
5264
- #: core/lib/wpbc_all_translations.php:972 inc/_bm/admin/page-seasons.php:1272
5265
  #: inc/_bm/admin/page-seasons.php:1487
5266
  msgid "Mo"
5267
  msgstr ""
5268
 
5269
- #: core/lib/wpbc_all_translations.php:973 inc/_bm/admin/page-seasons.php:1273
5270
  #: inc/_bm/admin/page-seasons.php:1487
5271
  msgid "Tu"
5272
  msgstr ""
5273
 
5274
- #: core/lib/wpbc_all_translations.php:974 inc/_bm/admin/page-seasons.php:1274
5275
  #: inc/_bm/admin/page-seasons.php:1487
5276
  msgid "We"
5277
  msgstr ""
5278
 
5279
- #: core/lib/wpbc_all_translations.php:975 inc/_bm/admin/page-seasons.php:1275
5280
  #: inc/_bm/admin/page-seasons.php:1487
5281
  msgid "Th"
5282
  msgstr ""
5283
 
5284
- #: core/lib/wpbc_all_translations.php:976 inc/_bm/admin/page-seasons.php:1276
5285
  #: inc/_bm/admin/page-seasons.php:1487
5286
  msgid "Fr"
5287
  msgstr ""
5288
 
5289
- #: core/lib/wpbc_all_translations.php:977 inc/_bm/admin/page-seasons.php:1277
5290
  #: inc/_bm/admin/page-seasons.php:1487
5291
  msgid "Sa"
5292
  msgstr ""
5293
 
5294
- #: core/lib/wpbc_all_translations.php:978 inc/_bm/admin/page-seasons.php:1278
5295
  #: inc/_bm/admin/page-seasons.php:1487
5296
  msgid "Su"
5297
  msgstr ""
5298
 
5299
- #: core/lib/wpbc_all_translations.php:979 inc/_bm/admin/page-seasons.php:1489
5300
  msgid "Jan"
5301
  msgstr ""
5302
 
5303
- #: core/lib/wpbc_all_translations.php:980 inc/_bm/admin/page-seasons.php:1489
5304
  msgid "Feb"
5305
  msgstr ""
5306
 
5307
- #: core/lib/wpbc_all_translations.php:981 inc/_bm/admin/page-seasons.php:1490
5308
  msgid "Mar"
5309
  msgstr ""
5310
 
5311
- #: core/lib/wpbc_all_translations.php:982 inc/_bm/admin/page-seasons.php:1490
5312
  msgid "Apr"
5313
  msgstr ""
5314
 
5315
- #: core/lib/wpbc_all_translations.php:983 inc/_bm/admin/page-seasons.php:1491
5316
  msgid "Jun"
5317
  msgstr ""
5318
 
5319
- #: core/lib/wpbc_all_translations.php:984 inc/_bm/admin/page-seasons.php:1491
5320
  msgid "Jul"
5321
  msgstr ""
5322
 
5323
- #: core/lib/wpbc_all_translations.php:985 inc/_bm/admin/page-seasons.php:1491
5324
  msgid "Aug"
5325
  msgstr ""
5326
 
5327
- #: core/lib/wpbc_all_translations.php:986 inc/_bm/admin/page-seasons.php:1492
5328
  msgid "Sep"
5329
  msgstr ""
5330
 
5331
- #: core/lib/wpbc_all_translations.php:987 inc/_bm/admin/page-seasons.php:1492
5332
  msgid "Oct"
5333
  msgstr ""
5334
 
5335
- #: core/lib/wpbc_all_translations.php:988 inc/_bm/admin/page-seasons.php:1492
5336
  msgid "Nov"
5337
  msgstr ""
5338
 
5339
- #: core/lib/wpbc_all_translations.php:989 inc/_bm/admin/page-seasons.php:1492
5340
  msgid "Dec"
5341
  msgstr ""
5342
 
5343
- #: core/lib/wpbc_all_translations.php:990 inc/_bm/admin/page-seasons.php:1562
5344
  #: inc/_bm/admin/page-seasons.php:1580 inc/_bm/admin/page-seasons.php:1602
5345
  #: inc/_bm/admin/page-seasons.php:1626 inc/_bm/admin/page-seasons.php:1644
5346
  msgid "No days"
5347
  msgstr ""
5348
 
5349
- #: core/lib/wpbc_all_translations.php:991 inc/_bm/admin/page-seasons.php:1564
5350
  msgid "time"
5351
  msgstr ""
5352
 
5353
- #: core/lib/wpbc_all_translations.php:992 inc/_bm/admin/page-seasons.php:1582
5354
  msgid "Every"
5355
  msgstr ""
5356
 
5357
- #: core/lib/wpbc_all_translations.php:993 inc/_bm/admin/page-seasons.php:1598
5358
  msgid "Each day "
5359
  msgstr ""
5360
 
5361
- #: core/lib/wpbc_all_translations.php:994 inc/_bm/admin/page-seasons.php:1600
5362
  msgid "on each day "
5363
  msgstr ""
5364
 
5365
- #: core/lib/wpbc_all_translations.php:995 inc/_bm/admin/page-seasons.php:1605
5366
  msgid "On each "
5367
  msgstr ""
5368
 
5369
- #: core/lib/wpbc_all_translations.php:996 inc/_bm/admin/page-seasons.php:1607
5370
  msgid "on each "
5371
  msgstr ""
5372
 
5373
- #: core/lib/wpbc_all_translations.php:997 inc/_bm/admin/page-seasons.php:1624
5374
  msgid "of every month "
5375
  msgstr ""
5376
 
5377
- #: core/lib/wpbc_all_translations.php:998 inc/_bm/admin/page-seasons.php:1628
5378
  msgid "of"
5379
  msgstr ""
5380
 
5381
- #: core/lib/wpbc_all_translations.php:999 inc/_bm/biz_m.php:220
5382
  msgid "for all days!"
5383
  msgstr ""
5384
 
5385
- #: core/lib/wpbc_all_translations.php:1000 inc/_bm/biz_m.php:764
5386
  msgid "Standard booking resource cost"
5387
  msgstr ""
5388
 
5389
- #: core/lib/wpbc_all_translations.php:1001 inc/_bm/biz_m.php:765
5390
  msgid "Total booking resource cost"
5391
  msgstr ""
5392
 
5393
- #: core/lib/wpbc_all_translations.php:1002 inc/_bm/m-toolbar.php:288
5394
  msgid "Delete selected booking form"
5395
  msgstr ""
5396
 
5397
- #: core/lib/wpbc_all_translations.php:1003 inc/_bm/m-toolbar.php:292
5398
  msgid "Do you really want to delete selected booking form ?"
5399
  msgstr ""
5400
 
5401
- #: core/lib/wpbc_all_translations.php:1004 inc/_bm/m-toolbar.php:317 inc/_bm/m-toolbar.php:318
5402
  msgid "Add New Custom Form"
5403
  msgstr ""
5404
 
5405
- #: core/lib/wpbc_all_translations.php:1005 inc/_bm/m-toolbar.php:351
5406
  msgid "Type the name of booking form"
5407
  msgstr ""
5408
 
5409
- #: core/lib/wpbc_all_translations.php:1006 inc/_bm/m-toolbar.php:358
5410
  msgid "Create"
5411
  msgstr ""
5412
 
5413
- #: core/lib/wpbc_all_translations.php:1007 inc/_bm/m-toolbar.php:359
5414
  msgid "Create new form"
5415
  msgstr ""
5416
 
5417
- #: core/lib/wpbc_all_translations.php:1008 inc/_bm/m-toolbar.php:554
5418
  msgid "There are no extended booking forms"
5419
  msgstr ""
5420
 
5421
- #: core/lib/wpbc_all_translations.php:1009 inc/_bm/m-toolbar.php:598 inc/_bm/m-toolbar.php:600
5422
  msgid "Create conditional days filter"
5423
  msgstr ""
5424
 
5425
- #: core/lib/wpbc_all_translations.php:1010 inc/_bs/admin/activation-s.php:93
5426
  #: inc/_mu/admin/activation-u.php:85 inc/_ps/admin/activation-p.php:46
5427
  msgid "Apartment#1"
5428
  msgstr ""
5429
 
5430
- #: core/lib/wpbc_all_translations.php:1011 inc/_bs/admin/activation-s.php:94
5431
  #: inc/_mu/admin/activation-u.php:86 inc/_ps/admin/activation-p.php:47
5432
  msgid "Apartment#2"
5433
  msgstr ""
5434
 
5435
- #: core/lib/wpbc_all_translations.php:1012 inc/_bs/admin/activation-s.php:95
5436
  #: inc/_ps/admin/activation-p.php:48
5437
  msgid "Apartment#3"
5438
  msgstr ""
5439
 
5440
- #: core/lib/wpbc_all_translations.php:1013 inc/_bs/admin/api-settings-s.php:31
5441
  msgid "Range days"
5442
  msgstr ""
5443
 
5444
- #: core/lib/wpbc_all_translations.php:1014 inc/_bs/admin/api-settings-s.php:46
5445
  #, php-format
5446
  msgid "Select a %sFIXED%s number of days with %s1 mouse click%s"
5447
  msgstr ""
5448
 
5449
- #: core/lib/wpbc_all_translations.php:1015 inc/_bs/admin/api-settings-s.php:48
5450
  #, php-format
5451
  msgid "Select a %sDYNAMIC%s range of days with %s2 mouse clicks%s"
5452
  msgstr ""
5453
 
5454
- #: core/lib/wpbc_all_translations.php:1016 inc/_bs/admin/api-settings-s.php:74
5455
  #: inc/_bs/admin/api-settings-s.php:138
5456
  msgid "Days selection number"
5457
  msgstr ""
5458
 
5459
- #: core/lib/wpbc_all_translations.php:1017 inc/_bs/admin/api-settings-s.php:75
5460
  #, php-format
5461
  msgid "Type your %snumber of days for range selection%s"
5462
  msgstr ""
5463
 
5464
- #: core/lib/wpbc_all_translations.php:1018 inc/_bs/admin/api-settings-s.php:83
5465
  #: inc/_bs/admin/api-settings-s.php:211
5466
  msgid "Specific day(s) of week"
5467
  msgstr ""
5468
 
5469
- #: core/lib/wpbc_all_translations.php:1019 inc/_bs/admin/api-settings-s.php:84
5470
  #: inc/_bs/admin/api-settings-s.php:215
5471
  msgid "Any day of week"
5472
  msgstr ""
5473
 
5474
- #: core/lib/wpbc_all_translations.php:1020 inc/_bs/admin/api-settings-s.php:90
5475
  #: inc/_bs/admin/api-settings-s.php:223
5476
  msgid "Start day of range"
5477
  msgstr ""
5478
 
5479
- #: core/lib/wpbc_all_translations.php:1021 inc/_bs/admin/api-settings-s.php:119
5480
  #: inc/_bs/admin/api-settings-s.php:252
5481
  msgid "Select your start day of range selection at week"
5482
  msgstr ""
5483
 
5484
- #: core/lib/wpbc_all_translations.php:1022 inc/_bs/admin/api-settings-s.php:152
5485
  #: inc/_bs/admin/api-settings-s.php:157
5486
  msgid "Min"
5487
  msgstr ""
5488
 
5489
- #: core/lib/wpbc_all_translations.php:1023 inc/_bs/admin/api-settings-s.php:170
5490
  #: inc/_bs/admin/api-settings-s.php:175
5491
  msgid "Max"
5492
  msgstr ""
5493
 
5494
- #: core/lib/wpbc_all_translations.php:1024 inc/_bs/admin/api-settings-s.php:187
5495
  #, php-format
5496
  msgid "Select your %sminimum and maximum number of days for range selection%s"
5497
  msgstr ""
5498
 
5499
- #: core/lib/wpbc_all_translations.php:1025 inc/_bs/admin/api-settings-s.php:198
5500
  msgid "Specific days selections"
5501
  msgstr ""
5502
 
5503
- #: core/lib/wpbc_all_translations.php:1026 inc/_bs/admin/api-settings-s.php:200
5504
  #, php-format
5505
  msgid ""
5506
  "Type your %sspecific%s days, which can be selected by visitors, or leave this value empty. It "
@@ -5508,632 +5595,632 @@ msgid ""
5508
  "this: %s) or combination (example:%s, its the same like this: %s)"
5509
  msgstr ""
5510
 
5511
- #: core/lib/wpbc_all_translations.php:1027 inc/_bs/admin/api-settings-s.php:281
5512
  msgid "Use time selections as recurrent time slots"
5513
  msgstr ""
5514
 
5515
- #: core/lib/wpbc_all_translations.php:1028 inc/_bs/admin/api-settings-s.php:282
5516
  msgid ""
5517
  "Check this box if you want to use recurrent time to reserve several days. This means that middle "
5518
  "days will be partially booked by actual times, otherwise the time in the booking form will be "
5519
  "used as check-in/check-out time for the first and last day of the reservation."
5520
  msgstr ""
5521
 
5522
- #: core/lib/wpbc_all_translations.php:1029 inc/_bs/admin/api-settings-s.php:315
5523
  msgid "Check this option, to use check in/out time during booking process. "
5524
  msgstr ""
5525
 
5526
- #: core/lib/wpbc_all_translations.php:1030 inc/_bs/admin/api-settings-s.php:316
5527
  #, php-format
5528
  msgid "%s Important!%s This will overwrite any times selection in your booking form."
5529
  msgstr ""
5530
 
5531
- #: core/lib/wpbc_all_translations.php:1031 inc/_bs/admin/api-settings-s.php:323
5532
  msgid "Check-in time"
5533
  msgstr ""
5534
 
5535
- #: core/lib/wpbc_all_translations.php:1032 inc/_bs/admin/api-settings-s.php:324
5536
  #, php-format
5537
  msgid "Type your %sCheck-in%s time of booking"
5538
  msgstr ""
5539
 
5540
- #: core/lib/wpbc_all_translations.php:1033 inc/_bs/admin/api-settings-s.php:336
5541
  msgid "Check-Out time"
5542
  msgstr ""
5543
 
5544
- #: core/lib/wpbc_all_translations.php:1034 inc/_bs/admin/api-settings-s.php:337
5545
  #, php-format
5546
  msgid "Type your %sCheck-Out%s time of booking"
5547
  msgstr ""
5548
 
5549
- #: core/lib/wpbc_all_translations.php:1035 inc/_bs/admin/api-settings-s.php:351
5550
  msgid "Change over days as triangles"
5551
  msgstr ""
5552
 
5553
- #: core/lib/wpbc_all_translations.php:1036 inc/_bs/admin/api-settings-s.php:352
5554
  msgid "Check this option, to show change over days as triangles. "
5555
  msgstr ""
5556
 
5557
- #: core/lib/wpbc_all_translations.php:1037 inc/_bs/admin/api-settings-s.php:377
5558
  msgid "Title of booked timeslot(s)"
5559
  msgstr ""
5560
 
5561
- #: core/lib/wpbc_all_translations.php:1038 inc/_bs/admin/api-settings-s.php:378
5562
  #, php-format
5563
  msgid "Type your %stitle%s, what will show in mouseover tooltip near booked timeslot(s)"
5564
  msgstr ""
5565
 
5566
- #: core/lib/wpbc_all_translations.php:1039 inc/_bs/admin/api-settings-s.php:418
5567
  msgid "Time Format"
5568
  msgstr ""
5569
 
5570
- #: core/lib/wpbc_all_translations.php:1040 inc/_bs/admin/api-settings-s.php:452
5571
  #, php-format
5572
  msgid ""
5573
  "Type your time format for emails and the booking table. %sDocumentation on time formatting%s"
5574
  msgstr ""
5575
 
5576
- #: core/lib/wpbc_all_translations.php:1041 inc/_bs/admin/api-settings-s.php:478
5577
  msgid "Auto approve all new bookings"
5578
  msgstr ""
5579
 
5580
- #: core/lib/wpbc_all_translations.php:1042 inc/_bs/admin/api-settings-s.php:479
5581
  #, php-format
5582
  msgid "Check this checkbox to %sactivate%s auto approve of all new pending bookings."
5583
  msgstr ""
5584
 
5585
- #: core/lib/wpbc_all_translations.php:1043 inc/_bs/admin/api-settings-s.php:517
5586
  #, php-format
5587
  msgid "Check this box to %sactivate%s auto-cancellation for pending, unpaid bookings."
5588
  msgstr ""
5589
 
5590
- #: core/lib/wpbc_all_translations.php:1044 inc/_bs/admin/api-settings-s.php:541
5591
  msgid "Cancel bookings older"
5592
  msgstr ""
5593
 
5594
- #: core/lib/wpbc_all_translations.php:1045 inc/_bs/admin/api-settings-s.php:542
5595
  msgid "Cancel only pending, unpaid bookings, which are older than this selection."
5596
  msgstr ""
5597
 
5598
- #: core/lib/wpbc_all_translations.php:1046 inc/_bs/admin/api-settings-s.php:550
5599
  msgid "Cancellation email sent"
5600
  msgstr ""
5601
 
5602
- #: core/lib/wpbc_all_translations.php:1047 inc/_bs/admin/api-settings-s.php:551
5603
  #, php-format
5604
  msgid "Check this box to %ssend%s cancellation email for this resource."
5605
  msgstr ""
5606
 
5607
- #: core/lib/wpbc_all_translations.php:1048 inc/_bs/admin/api-settings-s.php:559
5608
  #: inc/_bs/admin/api-settings-s.php:560
5609
  msgid "Reason for cancellation"
5610
  msgstr ""
5611
 
5612
- #: core/lib/wpbc_all_translations.php:1049 inc/_bs/admin/api-settings-s.php:561
5613
  #, php-format
5614
  msgid "Type the reason for %scancellation%s for the email template."
5615
  msgstr ""
5616
 
5617
- #: core/lib/wpbc_all_translations.php:1050 inc/_bs/admin/page-email-payment.php:560
5618
  msgid "Payment request"
5619
  msgstr ""
5620
 
5621
- #: core/lib/wpbc_all_translations.php:1051 inc/_bs/admin/page-email-payment.php:562
5622
  msgid "Customization of email template, which is sending to Visitor after payment request"
5623
  msgstr ""
5624
 
5625
- #: core/lib/wpbc_all_translations.php:1052
5626
  msgid "Email with Payment Request which is sending to Visitor."
5627
  msgstr ""
5628
 
5629
- #: core/lib/wpbc_all_translations.php:1053 core/wpbc-js.php:136
5630
  msgid "Error! Please reset your check-in/check-out dates above."
5631
  msgstr ""
5632
 
5633
- #: core/lib/wpbc_all_translations.php:1054 core/wpbc-js.php:137
5634
  msgid ""
5635
  "Start Time is invalid. The date or time may be booked, or already in the past! Please choose "
5636
  "another date or time."
5637
  msgstr ""
5638
 
5639
- #: core/lib/wpbc_all_translations.php:1055 core/wpbc-js.php:138
5640
  msgid ""
5641
  "End Time is invalid. The date or time may be booked, or already in the past. The End Time may "
5642
  "also be earlier that the start time, if only 1 day was selected! Please choose another date or "
5643
  "time."
5644
  msgstr ""
5645
 
5646
- #: core/lib/wpbc_all_translations.php:1056 core/wpbc-js.php:139 core/wpbc-js.php:140
5647
  msgid "The time(s) may be booked, or already in the past!"
5648
  msgstr ""
5649
 
5650
- #: core/lib/wpbc_all_translations.php:1057 inc/_bs/biz_s.php:408
5651
  msgid "Cost saved successfully"
5652
  msgstr ""
5653
 
5654
- #: core/lib/wpbc_all_translations.php:1058 inc/_bs/biz_s.php:415
5655
  msgid "Cost is not correct. It must be greater than 0"
5656
  msgstr ""
5657
 
5658
- #: core/lib/wpbc_all_translations.php:1059 inc/_bs/biz_s.php:597
5659
  msgid "Request has been sent"
5660
  msgstr ""
5661
 
5662
- #: core/lib/wpbc_all_translations.php:1060 inc/_bs/biz_s.php:604
5663
  msgid "Request has failed"
5664
  msgstr ""
5665
 
5666
- #: core/lib/wpbc_all_translations.php:1061 inc/_bs/biz_s.php:635
5667
  msgid "The payment status is changed successfully"
5668
  msgstr ""
5669
 
5670
- #: core/lib/wpbc_all_translations.php:1062 inc/_bs/biz_s.php:642
5671
  msgid "The changing of payment status is failed"
5672
  msgstr ""
5673
 
5674
- #: core/lib/wpbc_all_translations.php:1063 inc/_bs/biz_s.php:1019
5675
  msgid "deposit"
5676
  msgstr ""
5677
 
5678
- #: core/lib/wpbc_all_translations.php:1064 inc/_bs/biz_s.php:1020
5679
  msgid "Total cost"
5680
  msgstr ""
5681
 
5682
- #: core/lib/wpbc_all_translations.php:1065 inc/_bs/biz_s.php:1021
5683
  msgid "balance"
5684
  msgstr ""
5685
 
5686
- #: core/lib/wpbc_all_translations.php:1066 inc/_bs/lib_s.php:40 inc/_bs/lib_s.php:71
5687
  #: inc/_bs/s-toolbar.php:94
5688
  msgid "Payment status"
5689
  msgstr ""
5690
 
5691
- #: core/lib/wpbc_all_translations.php:1067 inc/_bs/lib_s.php:44
5692
  msgid "Any Status"
5693
  msgstr ""
5694
 
5695
- #: core/lib/wpbc_all_translations.php:1068 inc/_bs/lib_s.php:47
5696
  msgid "Unknown Status"
5697
  msgstr ""
5698
 
5699
- #: core/lib/wpbc_all_translations.php:1069 inc/_bs/lib_s.php:48 inc/_bs/lib_s.php:323
5700
  msgid "Not Completed"
5701
  msgstr ""
5702
 
5703
- #: core/lib/wpbc_all_translations.php:1070 inc/_bs/lib_s.php:49 inc/_bs/lib_s.php:312
5704
  #: inc/_bs/lib_s.php:332
5705
  msgid "Failed"
5706
  msgstr ""
5707
 
5708
- #: core/lib/wpbc_all_translations.php:1071 inc/_bs/lib_s.php:139
5709
  msgid "min"
5710
  msgstr ""
5711
 
5712
- #: core/lib/wpbc_all_translations.php:1072 inc/_bs/lib_s.php:139
5713
  msgid "max"
5714
  msgstr ""
5715
 
5716
- #: core/lib/wpbc_all_translations.php:1073 inc/_bs/lib_s.php:267 inc/_bs/lib_s.php:307
5717
  #: inc/_bs/lib_s.php:325
5718
  msgid "Completed"
5719
  msgstr ""
5720
 
5721
- #: core/lib/wpbc_all_translations.php:1074 inc/_bs/lib_s.php:308 inc/_bs/lib_s.php:328
5722
  msgid "In-Progress"
5723
  msgstr ""
5724
 
5725
- #: core/lib/wpbc_all_translations.php:1075 inc/_bs/lib_s.php:310 inc/_bs/lib_s.php:345
5726
  msgid "Partially paid"
5727
  msgstr ""
5728
 
5729
- #: core/lib/wpbc_all_translations.php:1076 inc/_bs/lib_s.php:311 inc/_bs/lib_s.php:346
5730
  msgid "Cancelled"
5731
  msgstr ""
5732
 
5733
- #: core/lib/wpbc_all_translations.php:1077 inc/_bs/lib_s.php:313 inc/_bs/lib_s.php:334
5734
  msgid "Refunded"
5735
  msgstr ""
5736
 
5737
- #: core/lib/wpbc_all_translations.php:1078 inc/_bs/lib_s.php:314 inc/_bs/lib_s.php:347
5738
  msgid "Fraud"
5739
  msgstr ""
5740
 
5741
- #: core/lib/wpbc_all_translations.php:1079 inc/_bs/lib_s.php:321
5742
  msgid "!Paid OK"
5743
  msgstr ""
5744
 
5745
- #: core/lib/wpbc_all_translations.php:1080 inc/_bs/lib_s.php:322
5746
  msgid "Unknown status"
5747
  msgstr ""
5748
 
5749
- #: core/lib/wpbc_all_translations.php:1081 inc/_bs/lib_s.php:327
5750
  msgid "Processed"
5751
  msgstr ""
5752
 
5753
- #: core/lib/wpbc_all_translations.php:1082 inc/_bs/lib_s.php:329
5754
  msgid "Canceled_Reversal"
5755
  msgstr ""
5756
 
5757
- #: core/lib/wpbc_all_translations.php:1083 inc/_bs/lib_s.php:330
5758
  msgid "Denied"
5759
  msgstr ""
5760
 
5761
- #: core/lib/wpbc_all_translations.php:1084 inc/_bs/lib_s.php:331
5762
  msgid "Expired"
5763
  msgstr ""
5764
 
5765
- #: core/lib/wpbc_all_translations.php:1085 inc/_bs/lib_s.php:333
5766
  msgid "Partially_Refunded"
5767
  msgstr ""
5768
 
5769
- #: core/lib/wpbc_all_translations.php:1086 inc/_bs/lib_s.php:335
5770
  msgid "Reversed"
5771
  msgstr ""
5772
 
5773
- #: core/lib/wpbc_all_translations.php:1087 inc/_bs/lib_s.php:336
5774
  msgid "Voided"
5775
  msgstr ""
5776
 
5777
- #: core/lib/wpbc_all_translations.php:1088 inc/_bs/lib_s.php:339
5778
  msgid "Not authed"
5779
  msgstr ""
5780
 
5781
- #: core/lib/wpbc_all_translations.php:1089 inc/_bs/lib_s.php:340
5782
  msgid "Malformed"
5783
  msgstr ""
5784
 
5785
- #: core/lib/wpbc_all_translations.php:1090 inc/_bs/lib_s.php:341
5786
  msgid "Invalid"
5787
  msgstr ""
5788
 
5789
- #: core/lib/wpbc_all_translations.php:1091 inc/_bs/lib_s.php:342
5790
  msgid "Abort"
5791
  msgstr ""
5792
 
5793
- #: core/lib/wpbc_all_translations.php:1092 inc/_bs/lib_s.php:343
5794
  msgid "Rejected"
5795
  msgstr ""
5796
 
5797
- #: core/lib/wpbc_all_translations.php:1093 inc/_bs/lib_s.php:348
5798
  msgid "Suspended"
5799
  msgstr ""
5800
 
5801
- #: core/lib/wpbc_all_translations.php:1094 inc/_bs/s-toolbar.php:68
5802
  msgid "Send payment request to visitor"
5803
  msgstr ""
5804
 
5805
- #: core/lib/wpbc_all_translations.php:1095 inc/_bs/s-toolbar.php:110 inc/_ps/p-toolbar.php:100
5806
- #: inc/_ps/p-toolbar.php:476
5807
  msgid "Print"
5808
  msgstr ""
5809
 
5810
- #: core/lib/wpbc_all_translations.php:1096 inc/_bs/s-toolbar.php:136
5811
  msgid "Save cost"
5812
  msgstr ""
5813
 
5814
- #: core/lib/wpbc_all_translations.php:1097 inc/_bs/s-toolbar.php:173
5815
  msgid "Change status"
5816
  msgstr ""
5817
 
5818
- #: core/lib/wpbc_all_translations.php:1098 inc/_bs/s-toolbar.php:196
5819
  msgid "Send payment request to customer"
5820
  msgstr ""
5821
 
5822
- #: core/lib/wpbc_all_translations.php:1099 inc/_bs/s-toolbar.php:200
5823
  #, php-format
5824
  msgid "Type your %sreason for payment%s request"
5825
  msgstr ""
5826
 
5827
- #: core/lib/wpbc_all_translations.php:1100 inc/_bs/s-toolbar.php:208
5828
  msgid "Send Request"
5829
  msgstr ""
5830
 
5831
- #: core/lib/wpbc_all_translations.php:1101 inc/_bs/s-toolbar.php:230
5832
  msgid "Auto-fill form"
5833
  msgstr ""
5834
 
5835
- #: core/lib/wpbc_all_translations.php:1102 inc/_mu/admin/activation-u.php:84
5836
  msgid "Suite"
5837
  msgstr ""
5838
 
5839
- #: core/lib/wpbc_all_translations.php:1103 inc/_mu/admin/api-settings-u.php:91
5840
  #: inc/_ps/admin/br-table-export-feeds.php:89 inc/_ps/admin/br-table-import-gcal-p.php:73
5841
  msgid "User"
5842
  msgstr ""
5843
 
5844
- #: core/lib/wpbc_all_translations.php:1104 inc/_mu/admin/api-settings-u.php:437
5845
  #: inc/_mu/admin/page-users.php:254 inc/_mu/admin/page-users.php:595
5846
  #: inc/_mu/admin/page-users.php:599
5847
  msgid "Super Admin"
5848
  msgstr ""
5849
 
5850
- #: core/lib/wpbc_all_translations.php:1105 inc/_mu/admin/api-settings-u.php:441
5851
  #: inc/_mu/admin/page-users.php:289 inc/_mu/admin/page-users.php:603
5852
  #: inc/_mu/admin/page-users.php:607
5853
  msgid "Regular User"
5854
  msgstr ""
5855
 
5856
- #: core/lib/wpbc_all_translations.php:1106 inc/_mu/admin/api-settings-u.php:446
5857
  msgid "Inactive User"
5858
  msgstr ""
5859
 
5860
- #: core/lib/wpbc_all_translations.php:1107 inc/_mu/admin/page-users.php:43
5861
  #: inc/_mu/admin/page-users.php:433
5862
  msgid "Users"
5863
  msgstr ""
5864
 
5865
- #: core/lib/wpbc_all_translations.php:1108 inc/_mu/admin/page-users.php:44
5866
  msgid "Manage Users"
5867
  msgstr ""
5868
 
5869
- #: core/lib/wpbc_all_translations.php:1109 inc/_mu/admin/page-users.php:45
5870
  msgid "Users Settings"
5871
  msgstr ""
5872
 
5873
- #: core/lib/wpbc_all_translations.php:1110 inc/_mu/admin/page-users.php:209
5874
- #: inc/_mu/multiuser.php:648
5875
  msgid "User is Activated"
5876
  msgstr ""
5877
 
5878
- #: core/lib/wpbc_all_translations.php:1111 inc/_mu/admin/page-users.php:237
5879
- #: inc/_mu/multiuser.php:698
5880
  msgid "User is Deactivated"
5881
  msgstr ""
5882
 
5883
- #: core/lib/wpbc_all_translations.php:1112 inc/_mu/admin/page-users.php:441
5884
  msgid "User Role"
5885
  msgstr ""
5886
 
5887
- #: core/lib/wpbc_all_translations.php:1113 inc/_mu/admin/page-users.php:452
5888
  #: inc/_mu/admin/page-users.php:595 inc/_mu/admin/page-users.php:603
5889
  msgid "Set user as"
5890
  msgstr ""
5891
 
5892
- #: core/lib/wpbc_all_translations.php:1114 inc/_mu/admin/page-users.php:548
5893
  msgid "Unlimited"
5894
  msgstr ""
5895
 
5896
- #: core/lib/wpbc_all_translations.php:1115 inc/_mu/admin/page-users.php:560
5897
  #: inc/_mu/admin/page-users.php:568 inc/_mu/admin/page-users.php:574
5898
  #: inc/_mu/admin/page-users.php:581 inc/_mu/admin/page-users.php:594
5899
  #: inc/_mu/admin/page-users.php:602
5900
  msgid "Do you really want"
5901
  msgstr ""
5902
 
5903
- #: core/lib/wpbc_all_translations.php:1116 inc/_mu/admin/page-users.php:561
5904
  msgid "make user active"
5905
  msgstr ""
5906
 
5907
- #: core/lib/wpbc_all_translations.php:1117 inc/_mu/admin/page-users.php:565
5908
  msgid "Activate"
5909
  msgstr ""
5910
 
5911
- #: core/lib/wpbc_all_translations.php:1118 inc/_mu/admin/page-users.php:569
5912
  msgid "make user inactive"
5913
  msgstr ""
5914
 
5915
- #: core/lib/wpbc_all_translations.php:1119 inc/_mu/admin/page-users.php:572
5916
  msgid "Deactivate"
5917
  msgstr ""
5918
 
5919
- #: core/lib/wpbc_all_translations.php:1120 inc/_mu/admin/page-users.php:575
5920
  msgid "delete configuration"
5921
  msgstr ""
5922
 
5923
- #: core/lib/wpbc_all_translations.php:1121 inc/_mu/admin/page-users.php:579
5924
  msgid "Delete settings"
5925
  msgstr ""
5926
 
5927
- #: core/lib/wpbc_all_translations.php:1122 inc/_mu/admin/page-users.php:582
5928
  msgid "delete all booking data"
5929
  msgstr ""
5930
 
5931
- #: core/lib/wpbc_all_translations.php:1123 inc/_mu/admin/page-users.php:586
5932
  msgid "Delete data"
5933
  msgstr ""
5934
 
5935
- #: core/lib/wpbc_all_translations.php:1124 inc/_mu/multiuser.php:634
5936
  msgid "Work days"
5937
  msgstr ""
5938
 
5939
- #: core/lib/wpbc_all_translations.php:1125 inc/_mu/multiuser.php:767
5940
  #, php-format
5941
  msgid ""
5942
  "%sYou do not have permissions for this page.%s Your account is not active, please contact "
5943
  "administrator.%s"
5944
  msgstr ""
5945
 
5946
- #: core/lib/wpbc_all_translations.php:1126 inc/_mu/multiuser.php:806
5947
  #, php-format
5948
  msgid "%sYou do not have permissions for this booking resources.%s"
5949
  msgstr ""
5950
 
5951
- #: core/lib/wpbc_all_translations.php:1127 inc/_mu/multiuser.php:812
5952
  #, php-format
5953
  msgid "%sNo this booking resources.%s"
5954
  msgstr ""
5955
 
5956
- #: core/lib/wpbc_all_translations.php:1128 inc/_ps/admin/activation-p.php:52
5957
  msgid "Please, reserve an apartment with fresh flowers."
5958
  msgstr ""
5959
 
5960
- #: core/lib/wpbc_all_translations.php:1129 inc/_ps/admin/api-settings-p.php:56
5961
  msgid "Default booking resource"
5962
  msgstr ""
5963
 
5964
- #: core/lib/wpbc_all_translations.php:1130 inc/_ps/admin/api-settings-p.php:57
5965
  msgid "Select your default booking resource."
5966
  msgstr ""
5967
 
5968
- #: core/lib/wpbc_all_translations.php:1131 inc/_ps/admin/api-settings-p.php:70
5969
  msgid "Resources number per page"
5970
  msgstr ""
5971
 
5972
- #: core/lib/wpbc_all_translations.php:1132 inc/_ps/admin/api-settings-p.php:71
5973
  msgid "Select number of booking resources (single or parent) per page at Resource menu page"
5974
  msgstr ""
5975
 
5976
- #: core/lib/wpbc_all_translations.php:1133 inc/_ps/admin/api-settings-p.php:92
5977
- #: inc/_ps/admin/api-settings-p.php:192
5978
  msgid "Booking title"
5979
  msgstr ""
5980
 
5981
- #: core/lib/wpbc_all_translations.php:1134 inc/_ps/admin/api-settings-p.php:92
5982
  msgid "admin panel"
5983
  msgstr ""
5984
 
5985
- #: core/lib/wpbc_all_translations.php:1135 inc/_ps/admin/api-settings-p.php:93
5986
  #, php-format
5987
  msgid ""
5988
  "Type %sdefault title of bookings%s in calendar view mode at Booking Listing page (You can use "
5989
  "the shortcodes from the bottom form of Settings Fields page)."
5990
  msgstr ""
5991
 
5992
- #: core/lib/wpbc_all_translations.php:1136
5993
  msgid "front panel"
5994
  msgstr ""
5995
 
5996
- #: core/lib/wpbc_all_translations.php:1137 inc/_ps/admin/api-settings-p.php:193
5997
  #, php-format
5998
  msgid ""
5999
  "Type %sdefault title of bookings%s in %stimeline at front-end side%s. You can use the shortcodes "
6000
  "from the bottom form of Settings Fields page."
6001
  msgstr ""
6002
 
6003
- #: core/lib/wpbc_all_translations.php:1138 inc/_ps/admin/api-settings-p.php:201
6004
  msgid "Booking details in popover"
6005
  msgstr ""
6006
 
6007
- #: core/lib/wpbc_all_translations.php:1139 inc/_ps/admin/api-settings-p.php:202
6008
  #, php-format
6009
  msgid ""
6010
  "Check this box if you want to %sshow popover with booking details%s in timeline at %sfront-end%s "
6011
  "side."
6012
  msgstr ""
6013
 
6014
- #: core/lib/wpbc_all_translations.php:1140 inc/_ps/admin/api-settings-p.php:225
6015
  msgid "semicolon"
6016
  msgstr ""
6017
 
6018
- #: core/lib/wpbc_all_translations.php:1141 inc/_ps/admin/api-settings-p.php:226
6019
  msgid "comma"
6020
  msgstr ""
6021
 
6022
- #: core/lib/wpbc_all_translations.php:1142 inc/_ps/admin/api-settings-p.php:231
6023
  msgid "CSV data separator"
6024
  msgstr ""
6025
 
6026
- #: core/lib/wpbc_all_translations.php:1143 inc/_ps/admin/api-settings-p.php:232
6027
  msgid "Select separator of data for export bookings to CSV."
6028
  msgstr ""
6029
 
6030
- #: core/lib/wpbc_all_translations.php:1144 inc/_ps/admin/api-settings-p.php:314
6031
  #: js/wpbc-gutenberg.js:1096
6032
  msgid "URL to edit bookings"
6033
  msgstr ""
6034
 
6035
- #: core/lib/wpbc_all_translations.php:1145 inc/_ps/admin/api-settings-p.php:315
6036
  #, php-format
6037
  msgid "Type URL for %svisitors%s to edit bookings. You must insert %s shortcode into this page."
6038
  msgstr ""
6039
 
6040
- #: core/lib/wpbc_all_translations.php:1146 inc/_ps/admin/api-settings-p.php:339
6041
  msgid "Change hash after the booking is approved"
6042
  msgstr ""
6043
 
6044
- #: core/lib/wpbc_all_translations.php:1147 inc/_ps/admin/api-settings-p.php:340
6045
  msgid ""
6046
  "Check this box if you want to change the booking hash after approval. When checked, visitor will "
6047
  "not be able to edit or cancel the booking."
6048
  msgstr ""
6049
 
6050
- #: core/lib/wpbc_all_translations.php:1148 inc/_ps/admin/page-email-edit.php:556
6051
  msgid "Modified"
6052
  msgstr ""
6053
 
6054
- #: core/lib/wpbc_all_translations.php:1149
6055
  msgid "Customization of email template, which is sending after modification of booking"
6056
  msgstr ""
6057
 
6058
- #: core/lib/wpbc_all_translations.php:1150
6059
  msgid "Email is sending to Visitor after Editing of booking."
6060
  msgstr ""
6061
 
6062
- #: core/lib/wpbc_all_translations.php:1151 inc/_ps/admin/page-resources.php:39
6063
  msgid "Customizaton of booking resources"
6064
  msgstr ""
6065
 
6066
- #: core/lib/wpbc_all_translations.php:1152 inc/_ps/admin/page-settings-form.php:137
6067
  #: inc/_ps/admin/page-settings-form.php:157
6068
  msgid "Form fields"
6069
  msgstr ""
6070
 
6071
- #: core/lib/wpbc_all_translations.php:1153 inc/_ps/admin/page-settings-form.php:138
6072
  msgid "Content of Booking Fields"
6073
  msgstr ""
6074
 
6075
- #: core/lib/wpbc_all_translations.php:1154 inc/_ps/admin/page-settings-form.php:164
6076
  msgid "Generate tag"
6077
  msgstr ""
6078
 
6079
- #: core/lib/wpbc_all_translations.php:1155 inc/_ps/admin/page-settings-form.php:173
6080
  #, php-format
6081
  msgid "Content of booking fields data for email templates (%s-shortcode) and booking listing page"
6082
  msgstr ""
6083
 
6084
- #: core/lib/wpbc_all_translations.php:1156 inc/_ps/admin/page-settings-form.php:312
6085
  msgid "Form Template"
6086
  msgstr ""
6087
 
6088
- #: core/lib/wpbc_all_translations.php:1157 inc/_ps/admin/page-settings-form.php:325
6089
  msgid "Standard Templates"
6090
  msgstr ""
6091
 
6092
- #: core/lib/wpbc_all_translations.php:1158 inc/_ps/admin/page-settings-form.php:338
6093
  #: inc/_ps/form/class-wpbc-field-help-textarea.php:111
6094
  msgid "Columns"
6095
  msgstr ""
6096
 
6097
- #: core/lib/wpbc_all_translations.php:1159 inc/_ps/admin/page-settings-form.php:410
6098
  msgid "Advanced Templates"
6099
  msgstr ""
6100
 
6101
- #: core/lib/wpbc_all_translations.php:1160 inc/_ps/admin/page-settings-form.php:413
6102
  msgid "Wizard (several steps)"
6103
  msgstr ""
6104
 
6105
- #: core/lib/wpbc_all_translations.php:1161 inc/_ps/admin/page-settings-form.php:426
6106
  msgid "Time slots for different weekdays"
6107
  msgstr ""
6108
 
6109
- #: core/lib/wpbc_all_translations.php:1162 inc/_ps/admin/page-settings-form.php:436
6110
  msgid "Hints"
6111
  msgstr ""
6112
 
6113
- #: core/lib/wpbc_all_translations.php:1163 inc/_ps/admin/page-settings-form.php:458
6114
  msgid "Reset Form"
6115
  msgstr ""
6116
 
6117
- #: core/lib/wpbc_all_translations.php:1164 inc/_ps/admin/page-settings-form.php:511
6118
  msgid "Both"
6119
  msgstr ""
6120
 
6121
- #: core/lib/wpbc_all_translations.php:1165 inc/_ps/admin/page-settings-form.php:512
6122
  msgid "Reset Booking Form and Content of Booking Fields Form"
6123
  msgstr ""
6124
 
6125
- #: core/lib/wpbc_all_translations.php:1166 inc/_ps/admin/page-settings-form.php:663
6126
  #: inc/gateways/page-gateways.php:1048
6127
  #, php-format
6128
  msgid "%s - inserting data from fields of booking form"
6129
  msgstr ""
6130
 
6131
- #: core/lib/wpbc_all_translations.php:1167 inc/_ps/admin/page-settings-form.php:664
6132
  #, php-format
6133
  msgid "%s - inserting new line"
6134
  msgstr ""
6135
 
6136
- #: core/lib/wpbc_all_translations.php:1168 inc/_ps/admin/page-settings-form.php:668
6137
  #: inc/_ps/form/class-wpbc-form-help.php:93 inc/gateways/page-gateways.php:1103
6138
  #, php-format
6139
  msgid ""
@@ -6141,138 +6228,138 @@ msgid ""
6141
  "that all \"open\" tags (like %s) are closed (like this %s)."
6142
  msgstr ""
6143
 
6144
- #: core/lib/wpbc_all_translations.php:1169 inc/_ps/admin/page-settings-up.php:39
6145
  msgid "Upgrade to higher version"
6146
  msgstr ""
6147
 
6148
- #: core/lib/wpbc_all_translations.php:1170 inc/_ps/class/wpbc-settings-table.php:260
6149
  msgid "No results found."
6150
  msgstr ""
6151
 
6152
- #: core/lib/wpbc_all_translations.php:1171 inc/_ps/form/class-wpbc-field-help-checkbox.php:90
6153
  #, php-format
6154
  msgid "Wrap each item with %s tag"
6155
  msgstr ""
6156
 
6157
- #: core/lib/wpbc_all_translations.php:1172 inc/_ps/form/class-wpbc-field-help-checkbox.php:104
6158
  msgid "Put a label before field"
6159
  msgstr ""
6160
 
6161
- #: core/lib/wpbc_all_translations.php:1173 inc/_ps/form/class-wpbc-field-help-checkbox.php:118
6162
  #, php-format
6163
  msgid "Make it %sexclusive%s"
6164
  msgstr ""
6165
 
6166
- #: core/lib/wpbc_all_translations.php:1174 inc/_ps/form/class-wpbc-field-help-checkbox.php:128
6167
  #: inc/_ps/form/class-wpbc-field-help-radio.php:85 inc/_ps/form/class-wpbc-field-help-select.php:78
6168
  #: inc/_ps/form/class-wpbc-field-help-text.php:194
6169
  msgid "Default value"
6170
  msgstr ""
6171
 
6172
- #: core/lib/wpbc_all_translations.php:1175 inc/_ps/form/class-wpbc-field-help-checkbox.php:136
6173
  #, php-format
6174
  msgid "One Value from %sOptions%s list or term %s for selection of all checkboxes"
6175
  msgstr ""
6176
 
6177
- #: core/lib/wpbc_all_translations.php:1176 inc/_ps/form/class-wpbc-field-help-checkbox.php:146
6178
  #: inc/_ps/form/class-wpbc-field-help-select.php:111
6179
  #: inc/_ps/form/class-wpbc-field-help-text.php:177
6180
  msgid "required"
6181
  msgstr ""
6182
 
6183
- #: core/lib/wpbc_all_translations.php:1177 inc/_ps/form/class-wpbc-field-help-checkbox.php:164
6184
  #: inc/_ps/form/class-wpbc-field-help-select.php:129
6185
  msgid "Titles of options"
6186
  msgstr ""
6187
 
6188
- #: core/lib/wpbc_all_translations.php:1178 inc/_ps/form/class-wpbc-field-help-radio.php:93
6189
  #: inc/_ps/form/class-wpbc-field-help-select.php:86
6190
  #, php-format
6191
  msgid "One Value from %sOptions%s list"
6192
  msgstr ""
6193
 
6194
- #: core/lib/wpbc_all_translations.php:1179 inc/_ps/form/class-wpbc-field-help-select.php:101
6195
  #, php-format
6196
  msgid "Allow %smultiple%s selections"
6197
  msgstr ""
6198
 
6199
- #: core/lib/wpbc_all_translations.php:1180 inc/_ps/form/class-wpbc-field-help-text.php:167
6200
  #, php-format
6201
  msgid "Set as %srequired%s"
6202
  msgstr ""
6203
 
6204
- #: core/lib/wpbc_all_translations.php:1181 inc/_ps/form/class-wpbc-field-help-text.php:228
6205
  msgid "Placeholder"
6206
  msgstr ""
6207
 
6208
- #: core/lib/wpbc_all_translations.php:1182 inc/_ps/form/class-wpbc-field-help-text.php:247
6209
  msgid "Class"
6210
  msgstr ""
6211
 
6212
- #: core/lib/wpbc_all_translations.php:1183 inc/_ps/form/class-wpbc-field-help-text.php:264
6213
  msgid "Size"
6214
  msgstr ""
6215
 
6216
- #: core/lib/wpbc_all_translations.php:1184 inc/_ps/form/class-wpbc-field-help-text.php:281
6217
  msgid "Maxlength"
6218
  msgstr ""
6219
 
6220
- #: core/lib/wpbc_all_translations.php:1185 inc/_ps/form/class-wpbc-field-help-text.php:298
6221
  msgid "Copy and paste this shortcode into the form at left side"
6222
  msgstr ""
6223
 
6224
- #: core/lib/wpbc_all_translations.php:1186 inc/_ps/form/class-wpbc-field-help-text.php:313
6225
  #, php-format
6226
  msgid "Put this code in %sContent of Booking Fields%s and in %sEmail Templates%s"
6227
  msgstr ""
6228
 
6229
- #: core/lib/wpbc_all_translations.php:1187 inc/_ps/form/class-wpbc-field-help-textarea.php:94
6230
  msgid "Rows"
6231
  msgstr ""
6232
 
6233
- #: core/lib/wpbc_all_translations.php:1188 inc/_ps/form/class-wpbc-form-help.php:86
6234
  msgid "General Information"
6235
  msgstr ""
6236
 
6237
- #: core/lib/wpbc_all_translations.php:1189 inc/_ps/form/class-wpbc-form-help.php:109
6238
  msgid "Required Fields in Booking Form"
6239
  msgstr ""
6240
 
6241
- #: core/lib/wpbc_all_translations.php:1190 inc/_ps/form/class-wpbc-form-help.php:117
6242
  #, php-format
6243
  msgid "You must to have this shortcode:%s in the form."
6244
  msgstr ""
6245
 
6246
- #: core/lib/wpbc_all_translations.php:1191 inc/_ps/form/class-wpbc-form-help.php:119
6247
  msgid ""
6248
  "You can insert several calendars of different resources into the form allowing you to book "
6249
  "several resources during one booking process."
6250
  msgstr ""
6251
 
6252
- #: core/lib/wpbc_all_translations.php:1192 inc/_ps/form/class-wpbc-form-help.php:120
6253
  #, php-format
6254
  msgid "Example: %s."
6255
  msgstr ""
6256
 
6257
- #: core/lib/wpbc_all_translations.php:1193 inc/_ps/form/class-wpbc-form-help.php:121
6258
  #, php-format
6259
  msgid ""
6260
  "where %s – default calendar %s (you can select desired resource of calendar by inserting "
6261
  "shortcode into page)%s"
6262
  msgstr ""
6263
 
6264
- #: core/lib/wpbc_all_translations.php:1194 inc/_ps/form/class-wpbc-form-help.php:122
6265
  #: inc/_ps/form/class-wpbc-form-help.php:123
6266
  #, php-format
6267
  msgid "%s – calendar of booking resource with %s"
6268
  msgstr ""
6269
 
6270
- #: core/lib/wpbc_all_translations.php:1195 inc/_ps/form/class-wpbc-form-help.php:124
6271
  #, php-format
6272
  msgid "Please check more about this feature %shere%s."
6273
  msgstr ""
6274
 
6275
- #: core/lib/wpbc_all_translations.php:1196 inc/_ps/form/class-wpbc-form-help.php:126
6276
  #: inc/_ps/form/class-wpbc-form-help.php:197 inc/_ps/form/class-wpbc-form-help.php:230
6277
  #: inc/_ps/form/class-wpbc-form-help.php:278 inc/_ps/form/class-wpbc-form-help.php:291
6278
  #: inc/_ps/form/class-wpbc-form-help.php:305 inc/_ps/form/class-wpbc-form-help.php:343
@@ -6282,82 +6369,82 @@ msgstr ""
6282
  msgid "You can %suse this shortcode only once%s in the form."
6283
  msgstr ""
6284
 
6285
- #: core/lib/wpbc_all_translations.php:1197 inc/_ps/form/class-wpbc-form-help.php:135
6286
  msgid "Email Field"
6287
  msgstr ""
6288
 
6289
- #: core/lib/wpbc_all_translations.php:1198 inc/_ps/form/class-wpbc-form-help.php:136
6290
  #, php-format
6291
  msgid "You must have this shortcode:%s in the booking form."
6292
  msgstr ""
6293
 
6294
- #: core/lib/wpbc_all_translations.php:1199 inc/_ps/form/class-wpbc-form-help.php:136
6295
  msgid "This is the primary email field, which is used for sending emails to visitors."
6296
  msgstr ""
6297
 
6298
- #: core/lib/wpbc_all_translations.php:1200 inc/_ps/form/class-wpbc-form-help.php:163
6299
  msgid "Drop Down"
6300
  msgstr ""
6301
 
6302
- #: core/lib/wpbc_all_translations.php:1201 inc/_ps/form/class-wpbc-form-help.php:175
6303
  msgid "Checkbox(es)"
6304
  msgstr ""
6305
 
6306
- #: core/lib/wpbc_all_translations.php:1202 inc/_ps/form/class-wpbc-form-help.php:182
6307
  msgid "Radio Button(s)"
6308
  msgstr ""
6309
 
6310
- #: core/lib/wpbc_all_translations.php:1203 inc/_ps/form/class-wpbc-form-help.php:196
6311
  #, php-format
6312
  msgid "Insert %s shortcode to prevent SPAM bookings."
6313
  msgstr ""
6314
 
6315
- #: core/lib/wpbc_all_translations.php:1204 inc/_ps/form/class-wpbc-form-help.php:206
6316
  msgid "Submit Button"
6317
  msgstr ""
6318
 
6319
- #: core/lib/wpbc_all_translations.php:1205 inc/_ps/form/class-wpbc-form-help.php:214
6320
  msgid "Times Fields"
6321
  msgstr ""
6322
 
6323
- #: core/lib/wpbc_all_translations.php:1206 inc/_ps/form/class-wpbc-form-help.php:220
6324
  msgid "Time Slot List"
6325
  msgstr ""
6326
 
6327
- #: core/lib/wpbc_all_translations.php:1207 inc/_ps/form/class-wpbc-form-help.php:222
6328
  #: inc/_ps/form/class-wpbc-form-help.php:302 inc/_ps/form/class-wpbc-form-help.php:340
6329
  #: inc/_ps/form/class-wpbc-form-help.php:379
6330
  #, php-format
6331
  msgid "Select the %s using the predefined %sTime List%s."
6332
  msgstr ""
6333
 
6334
- #: core/lib/wpbc_all_translations.php:1208 inc/_ps/form/class-wpbc-form-help.php:222
6335
  msgid "Time Slot"
6336
  msgstr ""
6337
 
6338
- #: core/lib/wpbc_all_translations.php:1209 inc/_ps/form/class-wpbc-form-help.php:223
6339
  #, php-format
6340
  msgid ""
6341
  "Please note, %sthe use of the time shortcode%s. If you select a date with some booked time "
6342
  "slots, this time field will %sdisable booked times slots%s (set them as grayed)."
6343
  msgstr ""
6344
 
6345
- #: core/lib/wpbc_all_translations.php:1210 inc/_ps/form/class-wpbc-form-help.php:224
6346
  #, php-format
6347
  msgid "It works only in %ssingle day selection%s mode."
6348
  msgstr ""
6349
 
6350
- #: core/lib/wpbc_all_translations.php:1211 inc/_ps/form/class-wpbc-form-help.php:225
6351
  msgid ""
6352
  "Also some early versions of the IE do not support disabling of the options in the selectboxes."
6353
  msgstr ""
6354
 
6355
- #: core/lib/wpbc_all_translations.php:1212 inc/_ps/form/class-wpbc-form-help.php:226
6356
  msgid ""
6357
  "Even if visitor selects the booked timeslot, system will not allow them to make the booking."
6358
  msgstr ""
6359
 
6360
- #: core/lib/wpbc_all_translations.php:1213 inc/_ps/form/class-wpbc-form-help.php:229
6361
  #: inc/_ps/form/class-wpbc-form-help.php:342 inc/_ps/form/class-wpbc-form-help.php:381
6362
  #, php-format
6363
  msgid ""
@@ -6365,117 +6452,117 @@ msgid ""
6365
  "Time)%s only."
6366
  msgstr ""
6367
 
6368
- #: core/lib/wpbc_all_translations.php:1214 inc/_ps/form/class-wpbc-form-help.php:231
6369
  #, php-format
6370
  msgid "If you use this shortcode, %syou can not use any other time shortcodes%s in the form."
6371
  msgstr ""
6372
 
6373
- #: core/lib/wpbc_all_translations.php:1215 inc/_ps/form/class-wpbc-form-help.php:273
6374
  msgid "Start Time - Text field"
6375
  msgstr ""
6376
 
6377
- #: core/lib/wpbc_all_translations.php:1216 inc/_ps/form/class-wpbc-form-help.php:275
6378
  #: inc/_ps/form/class-wpbc-form-help.php:288
6379
  #, php-format
6380
  msgid "Enter %s in text field."
6381
  msgstr ""
6382
 
6383
- #: core/lib/wpbc_all_translations.php:1217 inc/_ps/admin/api-settings-p.php:119
6384
- #: inc/_ps/admin/api-settings-p.php:125 inc/_ps/form/class-wpbc-form-help.php:275
6385
  #: inc/_ps/form/class-wpbc-form-help.php:292 inc/_ps/form/class-wpbc-form-help.php:302
6386
  #: inc/_ps/form/class-wpbc-form-help.php:344 inc/_ps/form/class-wpbc-form-help.php:383
6387
  msgid "Start Time"
6388
  msgstr ""
6389
 
6390
- #: core/lib/wpbc_all_translations.php:1218 inc/_ps/form/class-wpbc-form-help.php:277
6391
  #: inc/_ps/form/class-wpbc-form-help.php:290 inc/_ps/form/class-wpbc-form-help.php:496
6392
  #, php-format
6393
  msgid "Please note: this field only supports military time format %s(24 Hour Time)%s."
6394
  msgstr ""
6395
 
6396
- #: core/lib/wpbc_all_translations.php:1219 inc/_ps/form/class-wpbc-form-help.php:279
6397
  #: inc/_ps/form/class-wpbc-form-help.php:292 inc/_ps/form/class-wpbc-form-help.php:306
6398
  #: inc/_ps/form/class-wpbc-form-help.php:344 inc/_ps/form/class-wpbc-form-help.php:383
6399
  #, php-format
6400
  msgid "You can also use the %s in the form."
6401
  msgstr ""
6402
 
6403
- #: core/lib/wpbc_all_translations.php:1220 inc/_ps/admin/api-settings-p.php:138
6404
- #: inc/_ps/admin/api-settings-p.php:144 inc/_ps/form/class-wpbc-form-help.php:279
6405
  #: inc/_ps/form/class-wpbc-form-help.php:288 inc/_ps/form/class-wpbc-form-help.php:306
6406
  #: inc/_ps/form/class-wpbc-form-help.php:340
6407
  msgid "End Time"
6408
  msgstr ""
6409
 
6410
- #: core/lib/wpbc_all_translations.php:1221 inc/_ps/form/class-wpbc-form-help.php:279
6411
  #: inc/_ps/form/class-wpbc-form-help.php:292 inc/_ps/form/class-wpbc-form-help.php:306
6412
  #: inc/_ps/form/class-wpbc-form-help.php:344 inc/_ps/form/class-wpbc-form-help.php:379
6413
  msgid "Duration Time"
6414
  msgstr ""
6415
 
6416
- #: core/lib/wpbc_all_translations.php:1222 inc/_ps/form/class-wpbc-form-help.php:279
6417
  #: inc/_ps/form/class-wpbc-form-help.php:292 inc/_ps/form/class-wpbc-form-help.php:306
6418
  #: inc/_ps/form/class-wpbc-form-help.php:344
6419
  msgid "fields"
6420
  msgstr ""
6421
 
6422
- #: core/lib/wpbc_all_translations.php:1223 inc/_ps/form/class-wpbc-form-help.php:286
6423
  msgid "End Time - Text field"
6424
  msgstr ""
6425
 
6426
- #: core/lib/wpbc_all_translations.php:1224 inc/_ps/form/class-wpbc-form-help.php:300
6427
  msgid "Start Time - Drop Down list"
6428
  msgstr ""
6429
 
6430
- #: core/lib/wpbc_all_translations.php:1225 inc/_ps/form/class-wpbc-form-help.php:304
6431
  #, php-format
6432
  msgid ""
6433
  "Please note, in the %sOptions list%s you can use times in military time format %s(24 Hour "
6434
  "Time)%s only."
6435
  msgstr ""
6436
 
6437
- #: core/lib/wpbc_all_translations.php:1226 inc/_ps/form/class-wpbc-form-help.php:338
6438
  msgid "End Time - Drop Down list"
6439
  msgstr ""
6440
 
6441
- #: core/lib/wpbc_all_translations.php:1227 inc/_ps/form/class-wpbc-form-help.php:377
6442
  msgid "Duration Time - Drop Down list"
6443
  msgstr ""
6444
 
6445
- #: core/lib/wpbc_all_translations.php:1228 inc/_ps/form/class-wpbc-form-help.php:383
6446
  msgid "field"
6447
  msgstr ""
6448
 
6449
- #: core/lib/wpbc_all_translations.php:1229 inc/_ps/form/class-wpbc-form-help.php:416
6450
  msgid "Different time slots, for the different week days"
6451
  msgstr ""
6452
 
6453
- #: core/lib/wpbc_all_translations.php:1230 inc/_ps/form/class-wpbc-form-help.php:419
6454
  msgid ""
6455
  "This feature provides the possibility to use the different time slot selections in the booking "
6456
  "form for the different week days or different days - which are assigned to the specific season "
6457
  "filters. So each week day (day of specific season filter) can have a different time slots list."
6458
  msgstr ""
6459
 
6460
- #: core/lib/wpbc_all_translations.php:1231 inc/_ps/form/class-wpbc-form-help.php:421
6461
  #: inc/_ps/form/class-wpbc-form-help.php:568
6462
  msgid "Configuration"
6463
  msgstr ""
6464
 
6465
- #: core/lib/wpbc_all_translations.php:1232 inc/_ps/form/class-wpbc-form-help.php:422
6466
  #: inc/_ps/form/class-wpbc-form-help.php:569
6467
  #, php-format
6468
  msgid "The general structure of the configuration %scondition rule%s is as follows"
6469
  msgstr ""
6470
 
6471
- #: core/lib/wpbc_all_translations.php:1233 inc/_ps/form/class-wpbc-form-help.php:428
6472
  #: inc/_ps/form/class-wpbc-form-help.php:449 inc/_ps/form/class-wpbc-form-help.php:472
6473
  #: inc/_ps/form/class-wpbc-form-help.php:575 inc/_ps/form/class-wpbc-form-help.php:596
6474
  #: inc/_ps/form/class-wpbc-form-help.php:619
6475
  msgid "Parameters"
6476
  msgstr ""
6477
 
6478
- #: core/lib/wpbc_all_translations.php:1234 inc/_ps/form/class-wpbc-form-help.php:429
6479
  #: inc/_ps/form/class-wpbc-form-help.php:576
6480
  #, php-format
6481
  msgid ""
@@ -6485,7 +6572,7 @@ msgid ""
6485
  "conditions. Please check more about it, in the examples."
6486
  msgstr ""
6487
 
6488
- #: core/lib/wpbc_all_translations.php:1235 inc/_ps/form/class-wpbc-form-help.php:430
6489
  #: inc/_ps/form/class-wpbc-form-help.php:577
6490
  #, php-format
6491
  msgid ""
@@ -6496,7 +6583,7 @@ msgid ""
6496
  "filter in the Season Filters page."
6497
  msgstr ""
6498
 
6499
- #: core/lib/wpbc_all_translations.php:1236 inc/_ps/form/class-wpbc-form-help.php:431
6500
  #, php-format
6501
  msgid ""
6502
  "%svalue%s – value of the specific conditions. If the value is true, the content of the "
@@ -6505,47 +6592,47 @@ msgid ""
6505
  "at initial stage, when the date in calendar is not yet selected."
6506
  msgstr ""
6507
 
6508
- #: core/lib/wpbc_all_translations.php:1237 inc/_ps/form/class-wpbc-form-help.php:433
6509
  #: inc/_ps/form/class-wpbc-form-help.php:580
6510
  msgid "Examples"
6511
  msgstr ""
6512
 
6513
- #: core/lib/wpbc_all_translations.php:1238 inc/_ps/form/class-wpbc-form-help.php:434
6514
  #: inc/_ps/form/class-wpbc-form-help.php:581
6515
  msgid "Week days conditions."
6516
  msgstr ""
6517
 
6518
- #: core/lib/wpbc_all_translations.php:1239 inc/_ps/form/class-wpbc-form-help.php:450
6519
  #: inc/_ps/form/class-wpbc-form-help.php:597
6520
  msgid "default value, if no dates are selected, or none exist conditions are true."
6521
  msgstr ""
6522
 
6523
- #: core/lib/wpbc_all_translations.php:1240 inc/_ps/form/class-wpbc-form-help.php:458
6524
  #: inc/_ps/form/class-wpbc-form-help.php:475
6525
  msgid "You can use the several values, separated by comma."
6526
  msgstr ""
6527
 
6528
- #: core/lib/wpbc_all_translations.php:1241 inc/_ps/form/class-wpbc-form-help.php:460
6529
  #: inc/_ps/form/class-wpbc-form-help.php:607
6530
  msgid "Season filters conditions."
6531
  msgstr ""
6532
 
6533
- #: core/lib/wpbc_all_translations.php:1242 inc/_ps/form/class-wpbc-form-help.php:473
6534
  #: inc/_ps/form/class-wpbc-form-help.php:620
6535
  msgid "Season filter on the Season Filters page,"
6536
  msgstr ""
6537
 
6538
- #: core/lib/wpbc_all_translations.php:1243 inc/_ps/form/class-wpbc-form-help.php:474
6539
  #: inc/_ps/form/class-wpbc-form-help.php:621
6540
  msgid "Season filter on the Season Filters page"
6541
  msgstr ""
6542
 
6543
- #: core/lib/wpbc_all_translations.php:1244 inc/_ps/form/class-wpbc-form-help.php:477
6544
  #: inc/_ps/form/class-wpbc-form-help.php:624
6545
  msgid "Additional info"
6546
  msgstr ""
6547
 
6548
- #: core/lib/wpbc_all_translations.php:1245 inc/_ps/form/class-wpbc-form-help.php:478
6549
  #: inc/_ps/form/class-wpbc-form-help.php:625
6550
  #, php-format
6551
  msgid ""
@@ -6553,103 +6640,103 @@ msgid ""
6553
  "section."
6554
  msgstr ""
6555
 
6556
- #: core/lib/wpbc_all_translations.php:1246 inc/_ps/form/class-wpbc-form-help.php:479
6557
  #: inc/_ps/form/class-wpbc-form-help.php:626
6558
  #, php-format
6559
  msgid "Please check more about this feature at %sthis page%s"
6560
  msgstr ""
6561
 
6562
- #: core/lib/wpbc_all_translations.php:1247 inc/_ps/form/class-wpbc-form-help.php:493
6563
  msgid "Time Field"
6564
  msgstr ""
6565
 
6566
- #: core/lib/wpbc_all_translations.php:1248 inc/_ps/form/class-wpbc-form-help.php:495
6567
  #, php-format
6568
  msgid "Enter the %sTime%s using the text field."
6569
  msgstr ""
6570
 
6571
- #: core/lib/wpbc_all_translations.php:1249 inc/_ps/form/class-wpbc-form-help.php:498
6572
  msgid "This field does not impact to availability (booking for the specific time) ."
6573
  msgstr ""
6574
 
6575
- #: core/lib/wpbc_all_translations.php:1250 inc/_ps/form/class-wpbc-form-help.php:499
6576
  msgid "The value of this field is just saved into DB."
6577
  msgstr ""
6578
 
6579
- #: core/lib/wpbc_all_translations.php:1251 inc/_ps/form/class-wpbc-form-help.php:509
6580
  msgid "Country List"
6581
  msgstr ""
6582
 
6583
- #: core/lib/wpbc_all_translations.php:1252 inc/_ps/form/class-wpbc-form-help.php:511
6584
  msgid "Select the country from the predefined country list."
6585
  msgstr ""
6586
 
6587
- #: core/lib/wpbc_all_translations.php:1253 inc/_ps/form/class-wpbc-form-help.php:512
6588
  #, php-format
6589
  msgid "You can customize the country list at this file: %s"
6590
  msgstr ""
6591
 
6592
- #: core/lib/wpbc_all_translations.php:1254 inc/_ps/form/class-wpbc-form-help.php:513
6593
  msgid "You can insert this field with default selected value."
6594
  msgstr ""
6595
 
6596
- #: core/lib/wpbc_all_translations.php:1255 inc/_ps/form/class-wpbc-form-help.php:514
6597
  #, php-format
6598
  msgid "Example: %s - %s\"United States\"%s is selected by default."
6599
  msgstr ""
6600
 
6601
- #: core/lib/wpbc_all_translations.php:1256 inc/_ps/form/class-wpbc-form-help.php:523
6602
  msgid "Language Sections"
6603
  msgstr ""
6604
 
6605
- #: core/lib/wpbc_all_translations.php:1257 inc/_ps/form/class-wpbc-form-help.php:525
6606
  msgid "Plugin support configurations of the booking form are available in different languages."
6607
  msgstr ""
6608
 
6609
- #: core/lib/wpbc_all_translations.php:1258 inc/_ps/form/class-wpbc-form-help.php:526
6610
  msgid "The active language of the booking form depends on the active locale of the site."
6611
  msgstr ""
6612
 
6613
- #: core/lib/wpbc_all_translations.php:1259 inc/_ps/form/class-wpbc-form-help.php:527
6614
  msgid ""
6615
  "Booking Calendar supports WPML and qTranslate plugins for dynamic changing of website locale."
6616
  msgstr ""
6617
 
6618
- #: core/lib/wpbc_all_translations.php:1260 inc/_ps/form/class-wpbc-form-help.php:529
6619
  msgid "Usage"
6620
  msgstr ""
6621
 
6622
- #: core/lib/wpbc_all_translations.php:1261 inc/_ps/form/class-wpbc-form-help.php:530
6623
  #, php-format
6624
  msgid "start new translation section in specific language, where %s - locale of the translation."
6625
  msgstr ""
6626
 
6627
- #: core/lib/wpbc_all_translations.php:1262 inc/_ps/form/class-wpbc-form-help.php:533
6628
  msgid "English and French translation"
6629
  msgstr ""
6630
 
6631
- #: core/lib/wpbc_all_translations.php:1263 inc/_ps/form/class-wpbc-form-help.php:536
6632
  msgid "of configuration booking form in English and French languages"
6633
  msgstr ""
6634
 
6635
- #: core/lib/wpbc_all_translations.php:1264 inc/_ps/form/class-wpbc-form-help.php:555
6636
  msgid ""
6637
  "Register and Translate everything in WPML plugin. Translation can be done at the WPML > \"String "
6638
  "translation\" page. Required WPML 3.2 with String Translation plugin."
6639
  msgstr ""
6640
 
6641
- #: core/lib/wpbc_all_translations.php:1265 inc/_ps/form/class-wpbc-form-help.php:563
6642
  msgid "Different form fields, for the different week days"
6643
  msgstr ""
6644
 
6645
- #: core/lib/wpbc_all_translations.php:1266 inc/_ps/form/class-wpbc-form-help.php:566
6646
  msgid ""
6647
  "This feature provides the possibility to show the different form fields or any other HTML "
6648
  "content in the booking form, depending on the selection of specific week day in calendar or "
6649
  "different days, which are assigned to the specific season filters"
6650
  msgstr ""
6651
 
6652
- #: core/lib/wpbc_all_translations.php:1267 inc/_ps/form/class-wpbc-form-help.php:578
6653
  #, php-format
6654
  msgid ""
6655
  "%svalue%s – value of the specific conditions. If the value is true, so then the content of the "
@@ -6658,54 +6745,54 @@ msgid ""
6658
  "at initial stage, when the date in calendar is not yet selected."
6659
  msgstr ""
6660
 
6661
- #: core/lib/wpbc_all_translations.php:1268 inc/_ps/form/class-wpbc-form-help.php:605
6662
  msgid "You can use several values, separated by comma."
6663
  msgstr ""
6664
 
6665
- #: core/lib/wpbc_all_translations.php:1269 inc/_ps/form/class-wpbc-form-help.php:622
6666
  msgid "You can use several values, separated by a comma."
6667
  msgstr ""
6668
 
6669
- #: core/lib/wpbc_all_translations.php:1270 inc/_ps/form/class-wpbc-form-help.php:635
6670
  msgid "Cost Fields"
6671
  msgstr ""
6672
 
6673
- #: core/lib/wpbc_all_translations.php:1271 inc/_ps/form/class-wpbc-form-help.php:641
6674
  msgid "Cost Correction Field"
6675
  msgstr ""
6676
 
6677
- #: core/lib/wpbc_all_translations.php:1272 inc/_ps/form/class-wpbc-form-help.php:643
6678
  #, php-format
6679
  msgid "This field is visible only in Admin Panel at %sAdd booking page%s."
6680
  msgstr ""
6681
 
6682
- #: core/lib/wpbc_all_translations.php:1273 inc/_ps/form/class-wpbc-form-help.php:644
6683
  #, php-format
6684
  msgid "Use this field for %scorrecting the cost%s during adding new booking."
6685
  msgstr ""
6686
 
6687
- #: core/lib/wpbc_all_translations.php:1274 inc/_ps/form/class-wpbc-form-help.php:655
6688
  msgid "Discount Coupon field"
6689
  msgstr ""
6690
 
6691
- #: core/lib/wpbc_all_translations.php:1275 inc/_ps/form/class-wpbc-form-help.php:657
6692
  msgid "Please use this field for possibility to use coupon discounts by your visitors."
6693
  msgstr ""
6694
 
6695
- #: core/lib/wpbc_all_translations.php:1276 inc/_ps/form/class-wpbc-form-help.php:658
6696
  #, php-format
6697
  msgid "You can configure the discount coupon codes at this %spage%s."
6698
  msgstr ""
6699
 
6700
- #: core/lib/wpbc_all_translations.php:1277 inc/_ps/form/class-wpbc-form-help.php:667
6701
  msgid "Hints for your form"
6702
  msgstr ""
6703
 
6704
- #: core/lib/wpbc_all_translations.php:1278 inc/_ps/form/class-wpbc-form-help.php:673
6705
  msgid "Cost Hints"
6706
  msgstr ""
6707
 
6708
- #: core/lib/wpbc_all_translations.php:1279 inc/_ps/form/class-wpbc-form-help.php:675
6709
  #: inc/_ps/form/class-wpbc-form-help.php:697
6710
  #, php-format
6711
  msgid ""
@@ -6713,16 +6800,16 @@ msgid ""
6713
  "calendar or options in checkboxes or selectboxes)%s."
6714
  msgstr ""
6715
 
6716
- #: core/lib/wpbc_all_translations.php:1280 inc/_ps/form/class-wpbc-form-help.php:695
6717
  msgid "Dates and Times Hints"
6718
  msgstr ""
6719
 
6720
- #: core/lib/wpbc_all_translations.php:1281 inc/_ps/form/class-wpbc-form-help.php:699
6721
  #: inc/gateways/page-gateways.php:1073
6722
  msgid "Selected Check In date."
6723
  msgstr ""
6724
 
6725
- #: core/lib/wpbc_all_translations.php:1282 inc/_ps/form/class-wpbc-form-help.php:700
6726
  #: inc/_ps/form/class-wpbc-form-help.php:703 inc/_ps/form/class-wpbc-form-help.php:706
6727
  #: inc/_ps/form/class-wpbc-form-help.php:709 inc/_ps/form/class-wpbc-form-help.php:712
6728
  #: inc/_ps/form/class-wpbc-form-help.php:715 inc/_ps/form/class-wpbc-form-help.php:718
@@ -6736,91 +6823,91 @@ msgstr ""
6736
  msgid "Example:"
6737
  msgstr ""
6738
 
6739
- #: core/lib/wpbc_all_translations.php:1283 inc/_ps/form/class-wpbc-form-help.php:702
6740
  #: inc/_ps/form/class-wpbc-form-help.php:705 inc/gateways/page-gateways.php:1076
6741
  msgid "Selected Check Out date."
6742
  msgstr ""
6743
 
6744
- #: core/lib/wpbc_all_translations.php:1284 inc/_ps/form/class-wpbc-form-help.php:708
6745
  #: inc/gateways/page-gateways.php:1079
6746
  msgid "Selected Start Time."
6747
  msgstr ""
6748
 
6749
- #: core/lib/wpbc_all_translations.php:1285 inc/_ps/form/class-wpbc-form-help.php:711
6750
  #: inc/gateways/page-gateways.php:1082
6751
  msgid "Selected End Time."
6752
  msgstr ""
6753
 
6754
- #: core/lib/wpbc_all_translations.php:1286 inc/_ps/form/class-wpbc-form-help.php:714
6755
  #: inc/gateways/page-gateways.php:1085
6756
  msgid "All selected dates."
6757
  msgstr ""
6758
 
6759
- #: core/lib/wpbc_all_translations.php:1287 inc/_ps/form/class-wpbc-form-help.php:717
6760
  #: inc/gateways/page-gateways.php:1088
6761
  msgid "All selected dates with times."
6762
  msgstr ""
6763
 
6764
- #: core/lib/wpbc_all_translations.php:1288 inc/_ps/form/class-wpbc-form-help.php:720
6765
  #: inc/gateways/page-gateways.php:1091
6766
  msgid "All selected dates in \"short\" format."
6767
  msgstr ""
6768
 
6769
- #: core/lib/wpbc_all_translations.php:1289 inc/_ps/form/class-wpbc-form-help.php:723
6770
  #: inc/gateways/page-gateways.php:1094
6771
  msgid "All selected dates with times in \"short\" format.."
6772
  msgstr ""
6773
 
6774
- #: core/lib/wpbc_all_translations.php:1290 inc/_ps/form/class-wpbc-form-help.php:726
6775
  #: inc/gateways/page-gateways.php:1097
6776
  msgid "Number of selected days."
6777
  msgstr ""
6778
 
6779
- #: core/lib/wpbc_all_translations.php:1291 inc/_ps/form/class-wpbc-form-help.php:729
6780
  #: inc/gateways/page-gateways.php:1100
6781
  msgid "Number of selected nights."
6782
  msgstr ""
6783
 
6784
- #: core/lib/wpbc_all_translations.php:1292 inc/_ps/form/class-wpbc-form-help.php:739
6785
  msgid "Other Hints"
6786
  msgstr ""
6787
 
6788
- #: core/lib/wpbc_all_translations.php:1293 inc/_ps/form/class-wpbc-form-help.php:741
6789
  #: inc/_ps/form/class-wpbc-form-help.php:743 inc/gateways/page-gateways.php:1051
6790
  msgid "title of booking resource"
6791
  msgstr ""
6792
 
6793
- #: core/lib/wpbc_all_translations.php:1294 inc/_ps/form/class-wpbc-form-help.php:742
6794
  msgid "ID of booking resource."
6795
  msgstr ""
6796
 
6797
- #: core/lib/wpbc_all_translations.php:1295 inc/_ps/form/class-wpbc-form-help.php:744
6798
  msgid "cost of booking resource."
6799
  msgstr ""
6800
 
6801
- #: core/lib/wpbc_all_translations.php:1296 inc/_ps/form/class-wpbc-form-help.php:745
6802
  msgid "capacity of booking resource."
6803
  msgstr ""
6804
 
6805
- #: core/lib/wpbc_all_translations.php:1297 inc/_ps/form/class-wpbc-form-help.php:746
6806
  msgid "maximum number of visitors per booking resource."
6807
  msgstr ""
6808
 
6809
- #: core/lib/wpbc_all_translations.php:1298 inc/_ps/form/class-wpbc-form-help.php:760
6810
  msgid "Tips and Tricks"
6811
  msgstr ""
6812
 
6813
- #: core/lib/wpbc_all_translations.php:1299 inc/_ps/form/class-wpbc-form-help.php:762
6814
  #, php-format
6815
  msgid "%sEmail verification field%s."
6816
  msgstr ""
6817
 
6818
- #: core/lib/wpbc_all_translations.php:1300 inc/_ps/form/class-wpbc-form-help.php:764
6819
  #, php-format
6820
  msgid "%sDescription of usage%s."
6821
  msgstr ""
6822
 
6823
- #: core/lib/wpbc_all_translations.php:1301 inc/_ps/form/class-wpbc-form-help.php:765
6824
  #, php-format
6825
  msgid ""
6826
  "To create verification email, you need to use special CSS class in other email field. This CSS "
@@ -6828,257 +6915,257 @@ msgid ""
6828
  "field: %s"
6829
  msgstr ""
6830
 
6831
- #: core/lib/wpbc_all_translations.php:1302 inc/_ps/form/class-wpbc-form-help.php:766
6832
  #, php-format
6833
  msgid "%sExample%s."
6834
  msgstr ""
6835
 
6836
- #: core/lib/wpbc_all_translations.php:1303 inc/_ps/form/class-wpbc-form-help.php:767
6837
  msgid "confirmation email field of the primary email field"
6838
  msgstr ""
6839
 
6840
- #: core/lib/wpbc_all_translations.php:1304 inc/_ps/form/class-wpbc-form-help.php:791
6841
  msgid "Generate Tag"
6842
  msgstr ""
6843
 
6844
- #: core/lib/wpbc_all_translations.php:1305 inc/_ps/form/class-wpbc-form-help.php:807
6845
  msgid "Select option to configure or show help info about tags"
6846
  msgstr ""
6847
 
6848
- #: core/lib/wpbc_all_translations.php:1306 inc/_ps/p-toolbar.php:34
6849
  msgid "Keyword"
6850
  msgstr ""
6851
 
6852
- #: core/lib/wpbc_all_translations.php:1307 inc/_ps/p-toolbar.php:42
6853
  msgid "Enter Keyword here"
6854
  msgstr ""
6855
 
6856
- #: core/lib/wpbc_all_translations.php:1308 inc/_ps/p-toolbar.php:65
6857
  msgid ""
6858
  "Save filter settings as default template (Please, click Apply filter button, before saving!)"
6859
  msgstr ""
6860
 
6861
- #: core/lib/wpbc_all_translations.php:1309 inc/_ps/p-toolbar.php:69
6862
  msgid "Save as Default"
6863
  msgstr ""
6864
 
6865
- #: core/lib/wpbc_all_translations.php:1310 inc/_ps/p-toolbar.php:75
6866
  msgid "Delete your previously saved default filer template!"
6867
  msgstr ""
6868
 
6869
- #: core/lib/wpbc_all_translations.php:1311 inc/_ps/p-toolbar.php:79
6870
  msgid "Delete template"
6871
  msgstr ""
6872
 
6873
- #: core/lib/wpbc_all_translations.php:1312 inc/_ps/p-toolbar.php:101
6874
  msgid "Print bookings listing"
6875
  msgstr ""
6876
 
6877
- #: core/lib/wpbc_all_translations.php:1313 inc/_ps/p-toolbar.php:143
6878
  msgid "Export only current page of bookings to CSV format"
6879
  msgstr ""
6880
 
6881
- #: core/lib/wpbc_all_translations.php:1314 inc/_ps/p-toolbar.php:156
6882
  msgid "Export All"
6883
  msgstr ""
6884
 
6885
- #: core/lib/wpbc_all_translations.php:1315 inc/_ps/p-toolbar.php:157
6886
  msgid "Export All bookings to CSV format"
6887
  msgstr ""
6888
 
6889
- #: core/lib/wpbc_all_translations.php:1316 inc/_ps/p-toolbar.php:224
6890
  msgid "Edit Note"
6891
  msgstr ""
6892
 
6893
- #: core/lib/wpbc_all_translations.php:1317 inc/_ps/p-toolbar.php:247
6894
  msgid "Change Language"
6895
  msgstr ""
6896
 
6897
- #: core/lib/wpbc_all_translations.php:1318 inc/_ps/p-toolbar.php:259
6898
  msgid "Default Locale"
6899
  msgstr ""
6900
 
6901
- #: core/lib/wpbc_all_translations.php:1319 inc/_ps/p-toolbar.php:295
6902
  msgid "Change Resource"
6903
  msgstr ""
6904
 
6905
- #: core/lib/wpbc_all_translations.php:1320 inc/_ps/p-toolbar.php:320 inc/_ps/p-toolbar.php:433
6906
- #: inc/_ps/personal.php:2105
6907
  msgid "Duplicate Booking"
6908
  msgstr ""
6909
 
6910
- #: core/lib/wpbc_all_translations.php:1321 inc/_ps/p-toolbar.php:351
6911
  msgid "Save"
6912
  msgstr ""
6913
 
6914
- #: core/lib/wpbc_all_translations.php:1322 inc/_ps/p-toolbar.php:400
6915
  msgid "Change"
6916
  msgstr ""
6917
 
6918
- #: core/lib/wpbc_all_translations.php:1323 inc/_ps/p-toolbar.php:470
6919
  msgid "Print bookings"
6920
  msgstr ""
6921
 
6922
- #: core/lib/wpbc_all_translations.php:1324 inc/_ps/p-toolbar.php:509
6923
  msgid "Export bookings"
6924
  msgstr ""
6925
 
6926
- #: core/lib/wpbc_all_translations.php:1325 inc/_ps/p-toolbar.php:512
6927
  msgid "Download the CSV file of exported booking data"
6928
  msgstr ""
6929
 
6930
- #: core/lib/wpbc_all_translations.php:1326 inc/_ps/p-toolbar.php:520
6931
  msgid "Download"
6932
  msgstr ""
6933
 
6934
- #: core/lib/wpbc_all_translations.php:1327 inc/_ps/p-toolbar.php:748
6935
  msgid "Clear booking resources selection"
6936
  msgstr ""
6937
 
6938
- #: core/lib/wpbc_all_translations.php:1328 inc/_ps/p-toolbar.php:752
6939
  msgid "Apply booking resources selection"
6940
  msgstr ""
6941
 
6942
- #: core/lib/wpbc_all_translations.php:1329 inc/_ps/p-toolbar.php:782
6943
  msgid ""
6944
  "Please note, its not possible to add new resources, if \"All resources\" option is selected. "
6945
  "Please clear the selection, then add new resources."
6946
  msgstr ""
6947
 
6948
- #: core/lib/wpbc_all_translations.php:1330 inc/_ps/p-toolbar.php:1070 inc/_ps/p-toolbar.php:1118
6949
  msgid "Add New Booking Resource(s)"
6950
  msgstr ""
6951
 
6952
- #: core/lib/wpbc_all_translations.php:1331 inc/_ps/p-toolbar.php:1110
6953
  msgid "Enter name of booking resource"
6954
  msgstr ""
6955
 
6956
- #: core/lib/wpbc_all_translations.php:1332 inc/_ps/p-toolbar.php:1134
6957
  msgid "Resources count"
6958
  msgstr ""
6959
 
6960
- #: core/lib/wpbc_all_translations.php:1333 inc/_ps/personal.php:245
6961
  msgid "This booking resources does not exist"
6962
  msgstr ""
6963
 
6964
- #: core/lib/wpbc_all_translations.php:1334 inc/_ps/personal.php:290
6965
  msgid "Generating columns"
6966
  msgstr ""
6967
 
6968
- #: core/lib/wpbc_all_translations.php:1335 inc/_ps/personal.php:331
6969
  msgid "Exporting booking data"
6970
  msgstr ""
6971
 
6972
- #: core/lib/wpbc_all_translations.php:1336 inc/_ps/personal.php:374
6973
  msgid "Generating content of file"
6974
  msgstr ""
6975
 
6976
- #: core/lib/wpbc_all_translations.php:1337 inc/_ps/personal.php:416
6977
  msgid "Saving to file"
6978
  msgstr ""
6979
 
6980
- #: core/lib/wpbc_all_translations.php:1338 inc/_ps/personal.php:867
6981
  msgid "The booking was canceled by the visitor."
6982
  msgstr ""
6983
 
6984
- #: core/lib/wpbc_all_translations.php:1339 inc/_ps/personal.php:928
6985
  msgid "The booking has been canceled successfully"
6986
  msgstr ""
6987
 
6988
- #: core/lib/wpbc_all_translations.php:1340 inc/_ps/personal.php:949
6989
  msgid "Incorrect date format"
6990
  msgstr ""
6991
 
6992
- #: core/lib/wpbc_all_translations.php:1341 inc/_ps/personal.php:2084
6993
  msgid "Change your Booking"
6994
  msgstr ""
6995
 
6996
- #: core/lib/wpbc_all_translations.php:1342 inc/_ps/personal.php:2086
6997
  msgid "Cancel Booking"
6998
  msgstr ""
6999
 
7000
- #: core/lib/wpbc_all_translations.php:1343 inc/_ps/personal.php:2364
7001
  msgid "Warning! The resource was not changed. Current dates are already booked there."
7002
  msgstr ""
7003
 
7004
- #: core/lib/wpbc_all_translations.php:1344 inc/_ps/personal.php:2501
7005
  msgid "The booking has been duplicated successfully"
7006
  msgstr ""
7007
 
7008
- #: core/lib/wpbc_all_translations.php:1345 inc/_ps/personal.php:2510
7009
  msgid "Warning! Operation failed. Current dates are already booked there."
7010
  msgstr ""
7011
 
7012
- #: core/lib/wpbc_all_translations.php:1346 inc/_ps/personal.php:2597
7013
  msgid "Sending request..."
7014
  msgstr ""
7015
 
7016
- #: core/lib/wpbc_all_translations.php:1347 inc/_ps/personal.php:2626
7017
  msgid "Order number"
7018
  msgstr ""
7019
 
7020
- #: core/lib/wpbc_all_translations.php:1348 inc/_ps/personal.php:2628
7021
  msgid "Register"
7022
  msgstr ""
7023
 
7024
- #: core/lib/wpbc_all_translations.php:1349 inc/_ps/personal.php:2630
7025
  msgid ""
7026
  "Please, enter order number of your purchased version, which you received to your billing email."
7027
  msgstr ""
7028
 
7029
- #: core/lib/wpbc_all_translations.php:1350 inc/_ps/personal.php:2632
7030
  #, php-format
7031
  msgid "If you will get any difficulties or have a questions, please contact by email %s"
7032
  msgstr ""
7033
 
7034
- #: core/lib/wpbc_all_translations.php:1351 inc/_ps/wpbc-booking-select-widget.php:226
7035
  msgid "Default form"
7036
  msgstr ""
7037
 
7038
- #: core/lib/wpbc_all_translations.php:1352 inc/_ps/wpbc-check-updates.php:178
7039
  #, php-format
7040
  msgid ""
7041
  "There is a new version of %1$s available. <a href=\"%2$s\" target=\"_blank\" title=\"%3$s\">View "
7042
  "version %4$s details</a>. <em>Automatic update is unavailable for this plugin.</em>"
7043
  msgstr ""
7044
 
7045
- #: core/lib/wpbc_all_translations.php:1353 inc/_ps/wpbc-check-updates.php:184
7046
  #, php-format
7047
  msgid "You can request the new update of plugin on %1$sthis page%2$s."
7048
  msgstr ""
7049
 
7050
- #: core/lib/wpbc_all_translations.php:1354 inc/_ps/wpbc-check-updates.php:191
7051
  msgid "Upgrade Notice"
7052
  msgstr ""
7053
 
7054
- #: core/lib/wpbc_all_translations.php:1355 inc/_ps/wpbc-check-updates.php:231
7055
  #, php-format
7056
  msgid "Version %s By %s"
7057
  msgstr ""
7058
 
7059
- #: core/lib/wpbc_all_translations.php:1356 inc/_ps/wpbc-check-updates.php:235
7060
  msgid "View details"
7061
  msgstr ""
7062
 
7063
- #: core/lib/wpbc_all_translations.php:1357 inc/_ps/wpbc-form-templates.php:34
7064
  #: inc/_ps/wpbc-form-templates.php:49 inc/_ps/wpbc-form-templates.php:69
7065
  #: inc/_ps/wpbc-form-templates.php:92 inc/_ps/wpbc-form-templates.php:114
7066
  msgid "First Name (required)"
7067
  msgstr ""
7068
 
7069
- #: core/lib/wpbc_all_translations.php:1358 inc/_ps/wpbc-form-templates.php:35
7070
  #: inc/_ps/wpbc-form-templates.php:50 inc/_ps/wpbc-form-templates.php:70
7071
  #: inc/_ps/wpbc-form-templates.php:93 inc/_ps/wpbc-form-templates.php:115
7072
  msgid "Last Name (required)"
7073
  msgstr ""
7074
 
7075
- #: core/lib/wpbc_all_translations.php:1359 inc/_ps/wpbc-form-templates.php:36
7076
  #: inc/_ps/wpbc-form-templates.php:51 inc/_ps/wpbc-form-templates.php:71
7077
  #: inc/_ps/wpbc-form-templates.php:94 inc/_ps/wpbc-form-templates.php:116
7078
  msgid "Email (required)"
7079
  msgstr ""
7080
 
7081
- #: core/lib/wpbc_all_translations.php:1360 inc/_ps/wpbc-form-templates.php:37
7082
  #: inc/_ps/wpbc-form-templates.php:52 inc/_ps/wpbc-form-templates.php:72
7083
  #: inc/_ps/wpbc-form-templates.php:95 inc/_ps/wpbc-form-templates.php:117
7084
  #: inc/_ps/wpbc-form-templates.php:147 inc/_ps/wpbc-form-templates.php:159
@@ -7087,21 +7174,21 @@ msgstr ""
7087
  msgid "Phone"
7088
  msgstr ""
7089
 
7090
- #: core/lib/wpbc_all_translations.php:1361 inc/_ps/wpbc-form-templates.php:38
7091
  #: inc/_ps/wpbc-form-templates.php:57 inc/_ps/wpbc-form-templates.php:77
7092
  #: inc/_ps/wpbc-form-templates.php:100 inc/_ps/wpbc-form-templates.php:148
7093
  #: inc/_ps/wpbc-form-templates.php:164 inc/_ps/wpbc-form-templates.php:179
7094
  msgid "Adults"
7095
  msgstr ""
7096
 
7097
- #: core/lib/wpbc_all_translations.php:1362 inc/_ps/wpbc-form-templates.php:38
7098
  #: inc/_ps/wpbc-form-templates.php:57 inc/_ps/wpbc-form-templates.php:77
7099
  #: inc/_ps/wpbc-form-templates.php:100 inc/_ps/wpbc-form-templates.php:149
7100
  #: inc/_ps/wpbc-form-templates.php:165 inc/_ps/wpbc-form-templates.php:180
7101
  msgid "Children"
7102
  msgstr ""
7103
 
7104
- #: core/lib/wpbc_all_translations.php:1363 inc/_ps/wpbc-form-templates.php:39
7105
  #: inc/_ps/wpbc-form-templates.php:58 inc/_ps/wpbc-form-templates.php:78
7106
  #: inc/_ps/wpbc-form-templates.php:101 inc/_ps/wpbc-form-templates.php:123
7107
  #: inc/_ps/wpbc-form-templates.php:150 inc/_ps/wpbc-form-templates.php:166
@@ -7109,236 +7196,244 @@ msgstr ""
7109
  msgid "Details"
7110
  msgstr ""
7111
 
7112
- #: core/lib/wpbc_all_translations.php:1364 inc/_ps/wpbc-form-templates.php:40
7113
  #: inc/_ps/wpbc-form-templates.php:59 inc/_ps/wpbc-form-templates.php:79
7114
  #: inc/_ps/wpbc-form-templates.php:102 inc/_ps/wpbc-form-templates.php:125
7115
  msgid "I Accept term and conditions"
7116
  msgstr ""
7117
 
7118
- #: core/lib/wpbc_all_translations.php:1365 inc/_ps/wpbc-form-templates.php:48
7119
  #: inc/_ps/wpbc-form-templates.php:68
7120
  msgid "Select Times"
7121
  msgstr ""
7122
 
7123
- #: core/lib/wpbc_all_translations.php:1366 inc/_ps/wpbc-form-templates.php:53
7124
  #: inc/_ps/wpbc-form-templates.php:73 inc/_ps/wpbc-form-templates.php:96
7125
  #: inc/_ps/wpbc-form-templates.php:118
7126
  msgid "Address (required)"
7127
  msgstr ""
7128
 
7129
- #: core/lib/wpbc_all_translations.php:1367 inc/_ps/wpbc-form-templates.php:54
7130
  #: inc/_ps/wpbc-form-templates.php:74 inc/_ps/wpbc-form-templates.php:97
7131
  #: inc/_ps/wpbc-form-templates.php:119
7132
  msgid "City (required)"
7133
  msgstr ""
7134
 
7135
- #: core/lib/wpbc_all_translations.php:1368 inc/_ps/wpbc-form-templates.php:55
7136
  #: inc/_ps/wpbc-form-templates.php:75 inc/_ps/wpbc-form-templates.php:98
7137
  #: inc/_ps/wpbc-form-templates.php:120
7138
  msgid "Post code (required)"
7139
  msgstr ""
7140
 
7141
- #: core/lib/wpbc_all_translations.php:1369 inc/_ps/wpbc-form-templates.php:56
7142
  #: inc/_ps/wpbc-form-templates.php:76 inc/_ps/wpbc-form-templates.php:99
7143
  #: inc/_ps/wpbc-form-templates.php:121
7144
  msgid "Country (required)"
7145
  msgstr ""
7146
 
7147
- #: core/lib/wpbc_all_translations.php:1370 inc/_ps/wpbc-form-templates.php:89
7148
  msgid "night(s)"
7149
  msgstr ""
7150
 
7151
- #: core/lib/wpbc_all_translations.php:1371 inc/_ps/wpbc-form-templates.php:90
7152
  #: inc/_ps/wpbc-form-templates.php:112
7153
  msgid "Full cost of the booking"
7154
  msgstr ""
7155
 
7156
- #: core/lib/wpbc_all_translations.php:1372 inc/_ps/wpbc-form-templates.php:122
7157
  #: inc/_ps/wpbc-form-templates.php:194
7158
  msgid "Visitors"
7159
  msgstr ""
7160
 
7161
- #: core/lib/wpbc_all_translations.php:1373 inc/_ps/wpbc-form-templates.php:145
7162
  #: inc/_ps/wpbc-form-templates.php:157 inc/_ps/wpbc-form-templates.php:172
7163
  #: inc/_ps/wpbc-form-templates.php:187
7164
  msgid "Last Name"
7165
  msgstr ""
7166
 
7167
- #: core/lib/wpbc_all_translations.php:1374 inc/_ps/wpbc-form-templates.php:146
7168
  #: inc/_ps/wpbc-form-templates.php:158 inc/_ps/wpbc-form-templates.php:173
7169
  #: inc/_ps/wpbc-form-templates.php:188
7170
  msgid "Email"
7171
  msgstr ""
7172
 
7173
- #: core/lib/wpbc_all_translations.php:1375 inc/_ps/wpbc-form-templates.php:160
7174
  #: inc/_ps/wpbc-form-templates.php:175 inc/_ps/wpbc-form-templates.php:190
7175
  msgid "Address"
7176
  msgstr ""
7177
 
7178
- #: core/lib/wpbc_all_translations.php:1376 inc/_ps/wpbc-form-templates.php:161
7179
  #: inc/_ps/wpbc-form-templates.php:176 inc/_ps/wpbc-form-templates.php:191
7180
  msgid "City"
7181
  msgstr ""
7182
 
7183
- #: core/lib/wpbc_all_translations.php:1377 inc/_ps/wpbc-form-templates.php:162
7184
  #: inc/_ps/wpbc-form-templates.php:177 inc/_ps/wpbc-form-templates.php:192
7185
  msgid "Post code"
7186
  msgstr ""
7187
 
7188
- #: core/lib/wpbc_all_translations.php:1378 inc/_ps/wpbc-form-templates.php:163
7189
  #: inc/_ps/wpbc-form-templates.php:178 inc/_ps/wpbc-form-templates.php:193
7190
  #: inc/gateways/page-gateways.php:340
7191
  msgid "Country"
7192
  msgstr ""
7193
 
7194
- #: core/lib/wpbc_all_translations.php:1379 inc/_ps/wpbc-form-templates.php:220
7195
- #: inc/_ps/wpbc-form-templates.php:230 inc/_ps/wpbc-form-templates.php:240
7196
- #: inc/_ps/wpbc-form-templates.php:250
7197
  msgid "Check in"
7198
  msgstr ""
7199
 
7200
- #: core/lib/wpbc_all_translations.php:1380 inc/_ps/wpbc-form-templates.php:221
7201
- #: inc/_ps/wpbc-form-templates.php:231 inc/_ps/wpbc-form-templates.php:241
7202
- #: inc/_ps/wpbc-form-templates.php:251
7203
  msgid "Check out"
7204
  msgstr ""
7205
 
7206
- #: core/lib/wpbc_all_translations.php:1381 inc/_ps/wpbc-form-templates.php:222
7207
- #: inc/_ps/wpbc-form-templates.php:232 inc/_ps/wpbc-form-templates.php:242
7208
- #: inc/_ps/wpbc-form-templates.php:252
7209
  msgid "Guests"
7210
  msgstr ""
7211
 
7212
- #: core/lib/wpbc_all_translations.php:1382 inc/_ps/wpbc-form-templates.php:280
7213
- #: inc/_ps/wpbc-form-templates.php:297
7214
  msgid "Max. persons"
7215
  msgstr ""
7216
 
7217
- #: core/lib/wpbc_all_translations.php:1383 inc/_ps/wpbc-print.php:84
7218
  msgid "Data"
7219
  msgstr ""
7220
 
7221
- #: core/lib/wpbc_all_translations.php:1384 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:277
7222
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:219
7223
  #: inc/gateways/ideal/wpbc-gw-ideal.php:378 inc/gateways/ipay88/wpbc-gw-ipay88.php:255
7224
  #: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:147 inc/gateways/paypal/wpbc-gw-paypal.php:344
7225
  #: inc/gateways/sage/wpbc-gw-sage.php:385 inc/gateways/stripe/wpbc-gw-stripe.php:350
 
7226
  msgid "Enable this payment gateway"
7227
  msgstr ""
7228
 
7229
- #: core/lib/wpbc_all_translations.php:1385 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:287
7230
  msgid "API Login ID"
7231
  msgstr ""
7232
 
7233
- #: core/lib/wpbc_all_translations.php:1386 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:289
7234
  #, php-format
7235
  msgid "The merchant API Login ID is provided in the Merchant Interface of %s"
7236
  msgstr ""
7237
 
7238
- #: core/lib/wpbc_all_translations.php:1387
7239
  msgid "Transaction Key"
7240
  msgstr ""
7241
 
7242
- #: core/lib/wpbc_all_translations.php:1388 inc/gateways/stripe/wpbc-gw-stripe.php:378
7243
  #: inc/gateways/stripe/wpbc-gw-stripe.php:393 inc/gateways/stripe/wpbc-gw-stripe.php:410
7244
- #: inc/gateways/stripe/wpbc-gw-stripe.php:425
 
 
 
7245
  #, php-format
7246
  msgid "This parameter have to assigned to you by %s"
7247
  msgstr ""
7248
 
7249
- #: core/lib/wpbc_all_translations.php:1389 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:345
7250
  #: inc/gateways/ideal/wpbc-gw-ideal.php:419 inc/gateways/paypal/wpbc-gw-paypal.php:423
7251
  #: inc/gateways/sage/wpbc-gw-sage.php:424
7252
  msgid "Chose payment mode"
7253
  msgstr ""
7254
 
7255
- #: core/lib/wpbc_all_translations.php:1390 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:346
7256
  msgid ""
7257
  "Select \"Live test\" or \"Live\" environment for using Merchant account or \"Developer Test\" "
7258
  "for using Developer account."
7259
  msgstr ""
7260
 
7261
- #: core/lib/wpbc_all_translations.php:1391 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:349
7262
  msgid ""
7263
  "Transactions posted against live merchant accounts using either of the above testing methods are "
7264
  "not submitted to financial institutions for authorization and are not stored in the Merchant "
7265
  "Interface."
7266
  msgstr ""
7267
 
7268
- #: core/lib/wpbc_all_translations.php:1392 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:354
7269
  msgid "Developer Test"
7270
  msgstr ""
7271
 
7272
- #: core/lib/wpbc_all_translations.php:1393 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:355
7273
  msgid "Live Test"
7274
  msgstr ""
7275
 
7276
- #: core/lib/wpbc_all_translations.php:1394 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:356
7277
  #: inc/gateways/paypal/wpbc-gw-paypal.php:429
7278
  msgid "Live"
7279
  msgstr ""
7280
 
7281
- #: core/lib/wpbc_all_translations.php:1395 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:364
7282
  #: inc/gateways/paypal/wpbc-gw-paypal.php:407 inc/gateways/sage/wpbc-gw-sage.php:438
7283
  msgid "Transaction type"
7284
  msgstr ""
7285
 
7286
- #: core/lib/wpbc_all_translations.php:1396 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:365
7287
  msgid "Select transaction type, which supported by the payment gateway."
7288
  msgstr ""
7289
 
7290
- #: core/lib/wpbc_all_translations.php:1397 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:368
7291
  msgid "Authorization and Capture"
7292
  msgstr ""
7293
 
7294
- #: core/lib/wpbc_all_translations.php:1398 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:369
7295
  msgid "Authorization Only"
7296
  msgstr ""
7297
 
7298
- #: core/lib/wpbc_all_translations.php:1399 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:375
7299
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:293 inc/gateways/paypal/wpbc-gw-paypal.php:438
7300
  #: inc/gateways/sage/wpbc-gw-sage.php:453 inc/gateways/stripe/wpbc-gw-stripe.php:446
 
7301
  msgid "U.S. Dollars"
7302
  msgstr ""
7303
 
7304
- #: core/lib/wpbc_all_translations.php:1400 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:376
7305
  #: inc/gateways/sage/wpbc-gw-sage.php:451 inc/gateways/stripe/wpbc-gw-stripe.php:447
 
7306
  msgid "Pounds Sterling"
7307
  msgstr ""
7308
 
7309
- #: core/lib/wpbc_all_translations.php:1401 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:377
7310
  #: inc/gateways/paypal/wpbc-gw-paypal.php:439 inc/gateways/sage/wpbc-gw-sage.php:452
7311
- #: inc/gateways/stripe/wpbc-gw-stripe.php:448
7312
  msgid "Euros"
7313
  msgstr ""
7314
 
7315
- #: core/lib/wpbc_all_translations.php:1402 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:378
7316
  #: inc/gateways/paypal/wpbc-gw-paypal.php:443 inc/gateways/sage/wpbc-gw-sage.php:456
7317
- #: inc/gateways/stripe/wpbc-gw-stripe.php:449
7318
  msgid "Canadian Dollars"
7319
  msgstr ""
7320
 
7321
- #: core/lib/wpbc_all_translations.php:1403 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:383
7322
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:299 inc/gateways/paypal/wpbc-gw-paypal.php:466
7323
  #: inc/gateways/sage/wpbc-gw-sage.php:478 inc/gateways/stripe/wpbc-gw-stripe.php:590
 
7324
  msgid "Accepted Currency"
7325
  msgstr ""
7326
 
7327
- #: core/lib/wpbc_all_translations.php:1404 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:384
7328
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:300 inc/gateways/paypal/wpbc-gw-paypal.php:467
7329
  #: inc/gateways/sage/wpbc-gw-sage.php:479 inc/gateways/stripe/wpbc-gw-stripe.php:591
 
7330
  msgid "The currency code that gateway will process the payment in."
7331
  msgstr ""
7332
 
7333
- #: core/lib/wpbc_all_translations.php:1405 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:387
7334
- #: inc/gateways/stripe/wpbc-gw-stripe.php:594
7335
  msgid ""
7336
  "Setting the currency that is not supported by the payment processor will result in an error."
7337
  msgstr ""
7338
 
7339
- #: core/lib/wpbc_all_translations.php:1406 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:397
7340
- #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:398
7341
- #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:1022 inc/gateways/ideal/wpbc-gw-ideal.php:309
7342
  #: inc/gateways/ideal/wpbc-gw-ideal.php:457 inc/gateways/ideal/wpbc-gw-ideal.php:458
7343
  #: inc/gateways/ideal/wpbc-gw-ideal.php:1046 inc/gateways/ipay88/wpbc-gw-ipay88.php:309
7344
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:310 inc/gateways/ipay88/wpbc-gw-ipay88.php:905
@@ -7346,179 +7441,187 @@ msgstr ""
7346
  #: inc/gateways/paypal/wpbc-gw-paypal.php:1327 inc/gateways/sage/wpbc-gw-sage.php:488
7347
  #: inc/gateways/sage/wpbc-gw-sage.php:489 inc/gateways/sage/wpbc-gw-sage.php:1042
7348
  #: inc/gateways/stripe/wpbc-gw-stripe.php:612 inc/gateways/stripe/wpbc-gw-stripe.php:613
7349
- #: inc/gateways/stripe/wpbc-gw-stripe.php:1112
 
 
7350
  msgid "Pay via"
7351
  msgstr ""
7352
 
7353
- #: core/lib/wpbc_all_translations.php:1407 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:399
7354
  #: inc/gateways/ideal/wpbc-gw-ideal.php:459 inc/gateways/ipay88/wpbc-gw-ipay88.php:311
7355
  #: inc/gateways/paypal/wpbc-gw-paypal.php:497 inc/gateways/sage/wpbc-gw-sage.php:490
7356
- #: inc/gateways/stripe/wpbc-gw-stripe.php:614
7357
  msgid "Payment button title"
7358
  msgstr ""
7359
 
7360
- #: core/lib/wpbc_all_translations.php:1408 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:400
7361
  #: inc/gateways/ideal/wpbc-gw-ideal.php:460 inc/gateways/ipay88/wpbc-gw-ipay88.php:312
7362
  #: inc/gateways/paypal/wpbc-gw-paypal.php:498 inc/gateways/sage/wpbc-gw-sage.php:491
7363
- #: inc/gateways/stripe/wpbc-gw-stripe.php:615
7364
  msgid "Enter the title of the payment button"
7365
  msgstr ""
7366
 
7367
- #: core/lib/wpbc_all_translations.php:1409 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:411
7368
- #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:412
7369
- #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:1018 inc/gateways/ideal/wpbc-gw-ideal.php:471
7370
  #: inc/gateways/ideal/wpbc-gw-ideal.php:472 inc/gateways/ideal/wpbc-gw-ideal.php:1043
7371
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:323 inc/gateways/ipay88/wpbc-gw-ipay88.php:324
7372
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:902 inc/gateways/paypal/wpbc-gw-paypal.php:523
7373
  #: inc/gateways/paypal/wpbc-gw-paypal.php:524 inc/gateways/paypal/wpbc-gw-paypal.php:1329
7374
  #: inc/gateways/sage/wpbc-gw-sage.php:502 inc/gateways/sage/wpbc-gw-sage.php:503
7375
  #: inc/gateways/sage/wpbc-gw-sage.php:1038 inc/gateways/stripe/wpbc-gw-stripe.php:626
7376
- #: inc/gateways/stripe/wpbc-gw-stripe.php:627 inc/gateways/stripe/wpbc-gw-stripe.php:1113
 
 
 
7377
  #, php-format
7378
  msgid "Payment for booking %s on these day(s): %s"
7379
  msgstr ""
7380
 
7381
- #: core/lib/wpbc_all_translations.php:1410 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:413
7382
  #: inc/gateways/ideal/wpbc-gw-ideal.php:473 inc/gateways/ipay88/wpbc-gw-ipay88.php:325
7383
  #: inc/gateways/paypal/wpbc-gw-paypal.php:525 inc/gateways/sage/wpbc-gw-sage.php:504
7384
- #: inc/gateways/stripe/wpbc-gw-stripe.php:628
7385
  msgid "Payment description at gateway website"
7386
  msgstr ""
7387
 
7388
- #: core/lib/wpbc_all_translations.php:1411 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:414
7389
  #: inc/gateways/ideal/wpbc-gw-ideal.php:474 inc/gateways/ipay88/wpbc-gw-ipay88.php:326
7390
  #: inc/gateways/paypal/wpbc-gw-paypal.php:526 inc/gateways/sage/wpbc-gw-sage.php:505
7391
- #: inc/gateways/stripe/wpbc-gw-stripe.php:629
7392
  msgid "Enter the service name or the reason for the payment here."
7393
  msgstr ""
7394
 
7395
- #: core/lib/wpbc_all_translations.php:1412 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:415
7396
  #: inc/gateways/ideal/wpbc-gw-ideal.php:475 inc/gateways/ipay88/wpbc-gw-ipay88.php:327
7397
  #: inc/gateways/paypal/wpbc-gw-paypal.php:527 inc/gateways/sage/wpbc-gw-sage.php:506
7398
- #: inc/gateways/stripe/wpbc-gw-stripe.php:630
7399
  msgid "You can use any shortcodes, which you have used in content of booking fields data form."
7400
  msgstr ""
7401
 
7402
- #: core/lib/wpbc_all_translations.php:1413 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:418
7403
  #: inc/gateways/ideal/wpbc-gw-ideal.php:478 inc/gateways/ipay88/wpbc-gw-ipay88.php:330
7404
  #: inc/gateways/paypal/wpbc-gw-paypal.php:530 inc/gateways/sage/wpbc-gw-sage.php:509
7405
  #, php-format
7406
  msgid "This field support only up to %s characters by payment system."
7407
  msgstr ""
7408
 
7409
- #: core/lib/wpbc_all_translations.php:1414 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:436
7410
  msgid "Activate Relay Response"
7411
  msgstr ""
7412
 
7413
- #: core/lib/wpbc_all_translations.php:1415 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:437
7414
  msgid ""
7415
  "Indicate to the payment gateway that you would like to receive the transaction response to your "
7416
  "site."
7417
  msgstr ""
7418
 
7419
- #: core/lib/wpbc_all_translations.php:1416 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:440
7420
  msgid ""
7421
  "You should leave empty the Relay Response URL and Receipt Link URL/Text in the Merchant "
7422
  "Interface, if a Relay Response is activated here."
7423
  msgstr ""
7424
 
7425
- #: core/lib/wpbc_all_translations.php:1417
7426
  msgid "MD5 Hash value"
7427
  msgstr ""
7428
 
7429
- #: core/lib/wpbc_all_translations.php:1418
7430
  msgid ""
7431
  "Please enter the MD5 Hash value, which you configured in the settings of Merchant Interface."
7432
  msgstr ""
7433
 
7434
- #: core/lib/wpbc_all_translations.php:1419
7435
  msgid "To configure MD5 Hash value in Relay Response for your transactions"
7436
  msgstr ""
7437
 
7438
- #: core/lib/wpbc_all_translations.php:1420
7439
  msgid "Log on to the Merchant Interface"
7440
  msgstr ""
7441
 
7442
- #: core/lib/wpbc_all_translations.php:1421
7443
  msgid "Click Settings under Account in the main menu on the left"
7444
  msgstr ""
7445
 
7446
- #: core/lib/wpbc_all_translations.php:1422
7447
  msgid "Click MD5-Hash in the Security Settings section"
7448
  msgstr ""
7449
 
7450
- #: core/lib/wpbc_all_translations.php:1423
7451
  msgid "Enter this value"
7452
  msgstr ""
7453
 
7454
- #: core/lib/wpbc_all_translations.php:1424
7455
  msgid "Click Submit"
7456
  msgstr ""
7457
 
7458
- #: core/lib/wpbc_all_translations.php:1425
7459
  #, php-format
7460
  msgid ""
7461
  "For more information about configuring Relay Response in the Merchant Interface, please see the "
7462
  "%sMerchant Integration Guide%s"
7463
  msgstr ""
7464
 
7465
- #: core/lib/wpbc_all_translations.php:1426 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:476
7466
  #: inc/gateways/ideal/wpbc-gw-ideal.php:506 inc/gateways/ipay88/wpbc-gw-ipay88.php:351
7467
  #: inc/gateways/sage/wpbc-gw-sage.php:530 inc/gateways/stripe/wpbc-gw-stripe.php:654
 
7468
  msgid "Return URL after Successful order"
7469
  msgstr ""
7470
 
7471
- #: core/lib/wpbc_all_translations.php:1427 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:494
7472
  #: inc/gateways/ideal/wpbc-gw-ideal.php:522 inc/gateways/ipay88/wpbc-gw-ipay88.php:367
7473
  #: inc/gateways/paypal/wpbc-gw-paypal.php:591 inc/gateways/sage/wpbc-gw-sage.php:546
7474
- #: inc/gateways/stripe/wpbc-gw-stripe.php:672
7475
  msgid "The URL where visitor will be redirected after completing payment."
7476
  msgstr ""
7477
 
7478
- #: core/lib/wpbc_all_translations.php:1428 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:495
7479
  #: inc/gateways/ideal/wpbc-gw-ideal.php:523 inc/gateways/ipay88/wpbc-gw-ipay88.php:368
7480
  #: inc/gateways/paypal/wpbc-gw-paypal.php:592 inc/gateways/sage/wpbc-gw-sage.php:547
7481
- #: inc/gateways/stripe/wpbc-gw-stripe.php:673
7482
  #, php-format
7483
  msgid "For example, a URL to your site that displays a %s\"Thank you for the payment\"%s."
7484
  msgstr ""
7485
 
7486
- #: core/lib/wpbc_all_translations.php:1429 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:510
7487
  #: inc/gateways/ideal/wpbc-gw-ideal.php:537 inc/gateways/ipay88/wpbc-gw-ipay88.php:382
7488
  #: inc/gateways/sage/wpbc-gw-sage.php:561 inc/gateways/stripe/wpbc-gw-stripe.php:688
 
7489
  msgid "Return URL after Failed order"
7490
  msgstr ""
7491
 
7492
- #: core/lib/wpbc_all_translations.php:1430 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:528
7493
  #: inc/gateways/ideal/wpbc-gw-ideal.php:553 inc/gateways/ipay88/wpbc-gw-ipay88.php:398
7494
  #: inc/gateways/paypal/wpbc-gw-paypal.php:622 inc/gateways/sage/wpbc-gw-sage.php:577
7495
- #: inc/gateways/stripe/wpbc-gw-stripe.php:706
7496
  msgid "The URL where the visitor will be redirected after completing payment."
7497
  msgstr ""
7498
 
7499
- #: core/lib/wpbc_all_translations.php:1431 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:529
7500
  #: inc/gateways/ideal/wpbc-gw-ideal.php:554 inc/gateways/ipay88/wpbc-gw-ipay88.php:399
7501
  #: inc/gateways/paypal/wpbc-gw-paypal.php:623 inc/gateways/sage/wpbc-gw-sage.php:578
7502
- #: inc/gateways/stripe/wpbc-gw-stripe.php:707
7503
  #, php-format
7504
  msgid "For example, the URL to your website that displays a %s\"Payment Canceled\"%s page."
7505
  msgstr ""
7506
 
7507
- #: core/lib/wpbc_all_translations.php:1432 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:540
7508
  msgid "Automatically approve booking"
7509
  msgstr ""
7510
 
7511
- #: core/lib/wpbc_all_translations.php:1433 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:541
7512
  msgid "Check this box to automatically approve booking, when visitor makes a successful payment."
7513
  msgstr ""
7514
 
7515
- #: core/lib/wpbc_all_translations.php:1434 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:543
7516
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:412 inc/gateways/paypal/wpbc-gw-paypal.php:640
7517
  #: inc/gateways/sage/wpbc-gw-sage.php:591 inc/gateways/stripe/wpbc-gw-stripe.php:721
 
7518
  msgid "This will not work, if the visitor leaves the payment page."
7519
  msgstr ""
7520
 
7521
- #: core/lib/wpbc_all_translations.php:1435 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:763
7522
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:344
7523
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:425
7524
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:447
@@ -7527,16 +7630,16 @@ msgstr ""
7527
  #: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:283 inc/gateways/pay_cash/wpbc-gw-pay_cash.php:388
7528
  #: inc/gateways/paypal/wpbc-gw-paypal.php:947 inc/gateways/paypal/wpbc-gw-paypal.php:1042
7529
  #: inc/gateways/sage/wpbc-gw-sage.php:783 inc/gateways/sage/wpbc-gw-sage.php:894
7530
- #: inc/gateways/stripe/wpbc-gw-stripe.php:830
7531
  #, php-format
7532
  msgid "%s Settings"
7533
  msgstr ""
7534
 
7535
- #: core/lib/wpbc_all_translations.php:1436 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:764
7536
  msgid "Integration of authorizenet payment system"
7537
  msgstr ""
7538
 
7539
- #: core/lib/wpbc_all_translations.php:1437
7540
  #, php-format
7541
  msgid ""
7542
  "If you have no account on this system, please sign up for a %sdeveloper test account%s to obtain "
@@ -7544,980 +7647,986 @@ msgid ""
7544
  "gateway."
7545
  msgstr ""
7546
 
7547
- #: core/lib/wpbc_all_translations.php:1438
7548
  msgid ""
7549
  "Please configure all fields inside the Billing form fields tab at this page, when using a "
7550
  "European payment processor"
7551
  msgstr ""
7552
 
7553
- #: core/lib/wpbc_all_translations.php:1439 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:871
7554
  msgid "Be sure that the merchant server system clock is set to the proper time and time zone."
7555
  msgstr ""
7556
 
7557
- #: core/lib/wpbc_all_translations.php:1440 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:881
7558
  #, php-format
7559
  msgid "%s - Server Integration Method (SIM)"
7560
  msgstr ""
7561
 
7562
- #: core/lib/wpbc_all_translations.php:1441 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:231
7563
  #: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:159
7564
  msgid "Payment method description that the customer will see on your payment page."
7565
  msgstr ""
7566
 
7567
- #: core/lib/wpbc_all_translations.php:1442 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:264
7568
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:343
7569
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:344
7570
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:425
7571
  msgid "Bank Transfer"
7572
  msgstr ""
7573
 
7574
- #: core/lib/wpbc_all_translations.php:1443 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:345
7575
  msgid "Integration of Bank Transfer payment system"
7576
  msgstr ""
7577
 
7578
- #: core/lib/wpbc_all_translations.php:1444 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:426
7579
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:466
7580
  msgid "Account details"
7581
  msgstr ""
7582
 
7583
- #: core/lib/wpbc_all_translations.php:1445 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:480
7584
  #, php-format
7585
  msgid "Allow payments by %sdirect bank / wire transfer%s"
7586
  msgstr ""
7587
 
7588
- #: core/lib/wpbc_all_translations.php:1446 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:482
7589
  #: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:364
7590
  msgid "Its only show fixed payment details."
7591
  msgstr ""
7592
 
7593
- #: core/lib/wpbc_all_translations.php:1447 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:717
7594
  msgid "Sort Code"
7595
  msgstr ""
7596
 
7597
- #: core/lib/wpbc_all_translations.php:1448 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:725
7598
  #, php-format
7599
  msgid ""
7600
  "Dear %sMake your payment %s directly into our bank account. %sPlease use your Booking ID %s as "
7601
  "the payment reference! %s %s: %s %s: %s %s: %s %s: %s"
7602
  msgstr ""
7603
 
7604
- #: core/lib/wpbc_all_translations.php:1449 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:731
7605
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:738
7606
  msgid "Account Number"
7607
  msgstr ""
7608
 
7609
- #: core/lib/wpbc_all_translations.php:1450 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:733
7610
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:741
7611
  msgid "IBAN"
7612
  msgstr ""
7613
 
7614
- #: core/lib/wpbc_all_translations.php:1451 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:734
7615
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:742
7616
  msgid "BIC / Swift"
7617
  msgstr ""
7618
 
7619
- #: core/lib/wpbc_all_translations.php:1452 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:737
7620
  msgid "Account Name"
7621
  msgstr ""
7622
 
7623
- #: core/lib/wpbc_all_translations.php:1453 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:739
7624
  #: inc/gateways/ideal/wpbc-gw-ideal.php:324
7625
  msgid "Bank Name"
7626
  msgstr ""
7627
 
7628
- #: core/lib/wpbc_all_translations.php:1454 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:787
7629
  msgid "BSB"
7630
  msgstr ""
7631
 
7632
- #: core/lib/wpbc_all_translations.php:1455 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:788
7633
  msgid "Bank Transit Number"
7634
  msgstr ""
7635
 
7636
- #: core/lib/wpbc_all_translations.php:1456 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:789
7637
  msgid "IFSC"
7638
  msgstr ""
7639
 
7640
- #: core/lib/wpbc_all_translations.php:1457 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:790
7641
  msgid "Branch Sort"
7642
  msgstr ""
7643
 
7644
- #: core/lib/wpbc_all_translations.php:1458 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:791
7645
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:792
7646
  msgid "Bank Code"
7647
  msgstr ""
7648
 
7649
- #: core/lib/wpbc_all_translations.php:1459 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:793
7650
  msgid "Routing Number"
7651
  msgstr ""
7652
 
7653
- #: core/lib/wpbc_all_translations.php:1460 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:794
7654
  msgid "Branch Code"
7655
  msgstr ""
7656
 
7657
- #: core/lib/wpbc_all_translations.php:1461 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:804
7658
  #, php-format
7659
  msgid "%s - inserting all bank accounts details"
7660
  msgstr ""
7661
 
7662
- #: core/lib/wpbc_all_translations.php:1462 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:805
7663
  #, php-format
7664
  msgid "%s - inserting account name"
7665
  msgstr ""
7666
 
7667
- #: core/lib/wpbc_all_translations.php:1463 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:806
7668
  #, php-format
7669
  msgid "%s - inserting account number"
7670
  msgstr ""
7671
 
7672
- #: core/lib/wpbc_all_translations.php:1464 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:807
7673
  #, php-format
7674
  msgid "%s - inserting bank name "
7675
  msgstr ""
7676
 
7677
- #: core/lib/wpbc_all_translations.php:1465 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:808
7678
  #, php-format
7679
  msgid "%s - inserting sort code "
7680
  msgstr ""
7681
 
7682
- #: core/lib/wpbc_all_translations.php:1466 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:809
7683
  #, php-format
7684
  msgid "%s - inserting IBAN "
7685
  msgstr ""
7686
 
7687
- #: core/lib/wpbc_all_translations.php:1467 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:810
7688
  #, php-format
7689
  msgid "%s - inserting BIC "
7690
  msgstr ""
7691
 
7692
- #: core/lib/wpbc_all_translations.php:1468 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:815
7693
  msgid ""
7694
  "You can use any shortcodes, that you can use in payment description form at Settings Payment "
7695
  "General page"
7696
  msgstr ""
7697
 
7698
- #: core/lib/wpbc_all_translations.php:1469 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:888
7699
  msgid "+ Add Account"
7700
  msgstr ""
7701
 
7702
- #: core/lib/wpbc_all_translations.php:1470 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:888
7703
  msgid "Remove selected account(s)"
7704
  msgstr ""
7705
 
7706
- #: core/lib/wpbc_all_translations.php:1471 inc/gateways/ipay88/ipay88-backend.php:51
7707
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:500
7708
  msgid "Successful payment"
7709
  msgstr ""
7710
 
7711
- #: core/lib/wpbc_all_translations.php:1472 inc/gateways/ipay88/ipay88-backend.php:53
7712
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:503
7713
  msgid " Parameters are incorrect,"
7714
  msgstr ""
7715
 
7716
- #: core/lib/wpbc_all_translations.php:1473 inc/gateways/ipay88/ipay88-backend.php:54
7717
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:505
7718
  msgid "Cannot find the record"
7719
  msgstr ""
7720
 
7721
- #: core/lib/wpbc_all_translations.php:1474 inc/gateways/ipay88/ipay88-backend.php:55
7722
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:507
7723
  msgid "Amount different"
7724
  msgstr ""
7725
 
7726
- #: core/lib/wpbc_all_translations.php:1475 inc/gateways/ipay88/ipay88-backend.php:56
7727
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:509
7728
  msgid "Payment failed"
7729
  msgstr ""
7730
 
7731
- #: core/lib/wpbc_all_translations.php:1476 inc/gateways/ipay88/ipay88-backend.php:57
7732
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:511
7733
  msgid "Payment status updated by Mobile88 Admin(Fail)"
7734
  msgstr ""
7735
 
7736
- #: core/lib/wpbc_all_translations.php:1477 inc/gateways/ipay88/ipay88-backend.php:58
7737
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:513
7738
  msgid "Connection Error"
7739
  msgstr ""
7740
 
7741
- #: core/lib/wpbc_all_translations.php:1478 inc/gateways/ipay88/wpbc-gw-ipay88.php:265
7742
  msgid "Merchant Code"
7743
  msgstr ""
7744
 
7745
- #: core/lib/wpbc_all_translations.php:1479 inc/gateways/ipay88/wpbc-gw-ipay88.php:267
7746
  msgid "Enter your iPay88 Merchant Code."
7747
  msgstr ""
7748
 
7749
- #: core/lib/wpbc_all_translations.php:1480 inc/gateways/ideal/wpbc-gw-ideal.php:403
7750
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:280
7751
  msgid "Merchant Key"
7752
  msgstr ""
7753
 
7754
- #: core/lib/wpbc_all_translations.php:1481 inc/gateways/ipay88/wpbc-gw-ipay88.php:282
7755
  msgid "Enter your iPay88 Merchant Key."
7756
  msgstr ""
7757
 
7758
- #: core/lib/wpbc_all_translations.php:1482 inc/gateways/ipay88/wpbc-gw-ipay88.php:292
7759
  msgid "Malaysian Ringgit"
7760
  msgstr ""
7761
 
7762
- #: core/lib/wpbc_all_translations.php:1483 inc/gateways/ipay88/wpbc-gw-ipay88.php:294
7763
  #: inc/gateways/paypal/wpbc-gw-paypal.php:458 inc/gateways/sage/wpbc-gw-sage.php:471
7764
  msgid "Philippine Pesos"
7765
  msgstr ""
7766
 
7767
- #: core/lib/wpbc_all_translations.php:1484 inc/gateways/ideal/wpbc-gw-ideal.php:564
7768
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:409 inc/gateways/paypal/wpbc-gw-paypal.php:637
7769
  #: inc/gateways/sage/wpbc-gw-sage.php:588 inc/gateways/stripe/wpbc-gw-stripe.php:718
 
7770
  msgid "Automatically approve/cancel booking"
7771
  msgstr ""
7772
 
7773
- #: core/lib/wpbc_all_translations.php:1485 inc/gateways/ideal/wpbc-gw-ideal.php:565
7774
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:410 inc/gateways/paypal/wpbc-gw-paypal.php:638
7775
  #: inc/gateways/sage/wpbc-gw-sage.php:589 inc/gateways/stripe/wpbc-gw-stripe.php:719
 
7776
  msgid ""
7777
  "Check this box to automatically approve bookings, when visitor makes a successful payment, or "
7778
  "automatically cancel the booking, when visitor makes a payment cancellation."
7779
  msgstr ""
7780
 
7781
- #: core/lib/wpbc_all_translations.php:1486 inc/gateways/ipay88/wpbc-gw-ipay88.php:660
7782
  msgid "Integration of iPay88 payment system"
7783
  msgstr ""
7784
 
7785
- #: core/lib/wpbc_all_translations.php:1487 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:863
7786
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:751 inc/gateways/sage/wpbc-gw-sage.php:883
7787
- #: inc/gateways/stripe/wpbc-gw-stripe.php:956
7788
  #, php-format
7789
  msgid ""
7790
  "Please configure all fields inside the %sBilling form fields%s section at %sPayments General%s "
7791
  "tab."
7792
  msgstr ""
7793
 
7794
- #: core/lib/wpbc_all_translations.php:1488 inc/gateways/page-gateways.php:65
7795
  msgid "for 1 day"
7796
  msgstr ""
7797
 
7798
- #: core/lib/wpbc_all_translations.php:1489 inc/gateways/page-gateways.php:66
7799
  msgid "for 1 night"
7800
  msgstr ""
7801
 
7802
- #: core/lib/wpbc_all_translations.php:1490 inc/gateways/page-gateways.php:67
7803
  msgid "fixed sum"
7804
  msgstr ""
7805
 
7806
- #: core/lib/wpbc_all_translations.php:1491 inc/gateways/page-gateways.php:68
7807
  msgid "for 1 hour"
7808
  msgstr ""
7809
 
7810
- #: core/lib/wpbc_all_translations.php:1492 inc/gateways/page-gateways.php:73
7811
  msgid "Set the cost"
7812
  msgstr ""
7813
 
7814
- #: core/lib/wpbc_all_translations.php:1493 inc/gateways/page-gateways.php:74
7815
  msgid " Select your cost configuration."
7816
  msgstr ""
7817
 
7818
- #: core/lib/wpbc_all_translations.php:1494 inc/gateways/page-gateways.php:82
7819
  msgid "Time impact to cost"
7820
  msgstr ""
7821
 
7822
- #: core/lib/wpbc_all_translations.php:1495 inc/gateways/page-gateways.php:83
7823
  #, php-format
7824
  msgid ""
7825
  "Check this box if you want the %stime selection%s on the booking form %sapplied to the cost "
7826
  "calculation%s."
7827
  msgstr ""
7828
 
7829
- #: core/lib/wpbc_all_translations.php:1496 inc/gateways/page-gateways.php:93
7830
  msgid ""
7831
  "Check this box if you want that specific additional cost, which configured as percentage for "
7832
  "some option, apply to other additional fixed costs and not only to original booking cost."
7833
  msgstr ""
7834
 
7835
- #: core/lib/wpbc_all_translations.php:1497 inc/gateways/page-gateways.php:174
7836
  #: inc/gateways/page-gateways.php:848
7837
  msgid "Currency"
7838
  msgstr ""
7839
 
7840
- #: core/lib/wpbc_all_translations.php:1498 inc/gateways/page-gateways.php:177
7841
  msgid ""
7842
  "This is default currency that showing at your website. Specific payment gateway(s) can support "
7843
  "or does not suport it."
7844
  msgstr ""
7845
 
7846
- #: core/lib/wpbc_all_translations.php:1499 inc/gateways/page-gateways.php:142
7847
  #: inc/gateways/page-gateways.php:180 inc/gateways/page-gateways.php:900
7848
  msgid "Important"
7849
  msgstr ""
7850
 
7851
- #: core/lib/wpbc_all_translations.php:1500 inc/gateways/page-gateways.php:180
7852
  msgid "Check and configure currency at each activated payment gateway."
7853
  msgstr ""
7854
 
7855
- #: core/lib/wpbc_all_translations.php:1501 inc/gateways/page-gateways.php:190
7856
  msgid "Currency Position"
7857
  msgstr ""
7858
 
7859
- #: core/lib/wpbc_all_translations.php:1502 inc/gateways/page-gateways.php:191
7860
  msgid "Set position of the currency symbol."
7861
  msgstr ""
7862
 
7863
- #: core/lib/wpbc_all_translations.php:1503 inc/gateways/page-gateways.php:194
7864
  msgid "Left"
7865
  msgstr ""
7866
 
7867
- #: core/lib/wpbc_all_translations.php:1504 inc/gateways/page-gateways.php:198
7868
  msgid "Right"
7869
  msgstr ""
7870
 
7871
- #: core/lib/wpbc_all_translations.php:1505 inc/gateways/page-gateways.php:202
7872
  msgid "Left with space"
7873
  msgstr ""
7874
 
7875
- #: core/lib/wpbc_all_translations.php:1506 inc/gateways/page-gateways.php:206
7876
  msgid "Right with space"
7877
  msgstr ""
7878
 
7879
- #: core/lib/wpbc_all_translations.php:1507 inc/gateways/page-gateways.php:225
7880
  msgid "Currency format"
7881
  msgstr ""
7882
 
7883
- #: core/lib/wpbc_all_translations.php:1508 inc/gateways/page-gateways.php:226
7884
  msgid "Number of decimal points"
7885
  msgstr ""
7886
 
7887
- #: core/lib/wpbc_all_translations.php:1509 inc/gateways/page-gateways.php:233
7888
  #: inc/gateways/page-gateways.php:248
7889
  msgid "No separator"
7890
  msgstr ""
7891
 
7892
- #: core/lib/wpbc_all_translations.php:1510 inc/gateways/page-gateways.php:234
7893
  #: inc/gateways/page-gateways.php:249
7894
  msgid "Space"
7895
  msgstr ""
7896
 
7897
- #: core/lib/wpbc_all_translations.php:1511 inc/gateways/page-gateways.php:235
7898
  #: inc/gateways/page-gateways.php:250
7899
  msgid "Dot"
7900
  msgstr ""
7901
 
7902
- #: core/lib/wpbc_all_translations.php:1512 inc/gateways/page-gateways.php:236
7903
  #: inc/gateways/page-gateways.php:251
7904
  msgid "Comma"
7905
  msgstr ""
7906
 
7907
- #: core/lib/wpbc_all_translations.php:1513 inc/gateways/page-gateways.php:241
7908
  msgid "Separator for the decimal point"
7909
  msgstr ""
7910
 
7911
- #: core/lib/wpbc_all_translations.php:1514 inc/gateways/page-gateways.php:256
7912
  msgid "Thousands separator"
7913
  msgstr ""
7914
 
7915
- #: core/lib/wpbc_all_translations.php:1515 inc/gateways/page-gateways.php:269
7916
  msgid "Please select"
7917
  msgstr ""
7918
 
7919
- #: core/lib/wpbc_all_translations.php:1516 inc/gateways/page-gateways.php:280
7920
  msgid ""
7921
  "Please select a field from your booking form. This field will be automatically assigned to the "
7922
  "current field in the billing form."
7923
  msgstr ""
7924
 
7925
- #: core/lib/wpbc_all_translations.php:1517 inc/gateways/page-gateways.php:292
7926
  msgid "Customer Email"
7927
  msgstr ""
7928
 
7929
- #: core/lib/wpbc_all_translations.php:1518 inc/gateways/page-gateways.php:300
7930
  msgid "First Name(s)"
7931
  msgstr ""
7932
 
7933
- #: core/lib/wpbc_all_translations.php:1519 inc/gateways/page-gateways.php:308
7934
  msgid "Last name"
7935
  msgstr ""
7936
 
7937
- #: core/lib/wpbc_all_translations.php:1520 inc/gateways/page-gateways.php:324
7938
  msgid "Billing Address"
7939
  msgstr ""
7940
 
7941
- #: core/lib/wpbc_all_translations.php:1521 inc/gateways/page-gateways.php:332
7942
  msgid "Billing City"
7943
  msgstr ""
7944
 
7945
- #: core/lib/wpbc_all_translations.php:1522 inc/gateways/page-gateways.php:349
7946
  msgid "Post Code"
7947
  msgstr ""
7948
 
7949
- #: core/lib/wpbc_all_translations.php:1523 inc/gateways/page-gateways.php:357
7950
  msgid "State"
7951
  msgstr ""
7952
 
7953
- #: core/lib/wpbc_all_translations.php:1524 inc/gateways/page-gateways.php:369
7954
  msgid "Show booking details in payment form"
7955
  msgstr ""
7956
 
7957
- #: core/lib/wpbc_all_translations.php:1525 inc/gateways/page-gateways.php:370
7958
  #, php-format
7959
  msgid ""
7960
  " Check this checkbox if you want to show the %sbooking details summary%s above the payment form"
7961
  msgstr ""
7962
 
7963
- #: core/lib/wpbc_all_translations.php:1526 inc/gateways/page-gateways.php:381
7964
  msgid "Configure booking details summary above the payment form"
7965
  msgstr ""
7966
 
7967
- #: core/lib/wpbc_all_translations.php:1527 inc/gateways/page-gateways.php:500
7968
  msgid "Payments"
7969
  msgstr ""
7970
 
7971
- #: core/lib/wpbc_all_translations.php:1528 inc/gateways/page-gateways.php:501
7972
  msgid "Customizaton of Payment"
7973
  msgstr ""
7974
 
7975
- #: core/lib/wpbc_all_translations.php:1529 inc/gateways/page-gateways.php:502
7976
  msgid "Payment Gateways"
7977
  msgstr ""
7978
 
7979
- #: core/lib/wpbc_all_translations.php:1530 inc/gateways/page-gateways.php:518
7980
  #: inc/gateways/page-gateways.php:588 inc/gateways/page-gateways.php:615
7981
  msgid "Payment Settings"
7982
  msgstr ""
7983
 
7984
- #: core/lib/wpbc_all_translations.php:1531 inc/gateways/page-gateways.php:519
7985
  msgid "Payment Gateways - General Settings"
7986
  msgstr ""
7987
 
7988
- #: core/lib/wpbc_all_translations.php:1532 inc/gateways/page-gateways.php:586
7989
  #: inc/gateways/page-gateways.php:610
7990
  msgid "Active Payment Gateways"
7991
  msgstr ""
7992
 
7993
- #: core/lib/wpbc_all_translations.php:1533 inc/gateways/page-gateways.php:587
7994
  #: inc/gateways/page-gateways.php:631
7995
  msgid "Billing form fields"
7996
  msgstr ""
7997
 
7998
- #: core/lib/wpbc_all_translations.php:1534 inc/gateways/page-gateways.php:590
7999
  #: inc/gateways/page-gateways.php:645
8000
  msgid "Payment Description"
8001
  msgstr ""
8002
 
8003
- #: core/lib/wpbc_all_translations.php:1535 inc/gateways/page-gateways.php:846
8004
  msgid "Gateway"
8005
  msgstr ""
8006
 
8007
- #: core/lib/wpbc_all_translations.php:1536 inc/gateways/page-gateways.php:896
8008
  #, php-format
8009
  msgid "Some currencies at payment gateways are different from main currency %s"
8010
  msgstr ""
8011
 
8012
- #: core/lib/wpbc_all_translations.php:1537 inc/gateways/page-gateways.php:900
8013
  #, php-format
8014
  msgid ""
8015
  "Interface of plugin is using %s currency. Specific payment gateway will use own currency in "
8016
  "payment form without currency exchange! Its can be reason of wrong cost."
8017
  msgstr ""
8018
 
8019
- #: core/lib/wpbc_all_translations.php:1538 inc/gateways/page-gateways.php:1049
8020
  msgid "ID of booking"
8021
  msgstr ""
8022
 
8023
- #: core/lib/wpbc_all_translations.php:1539 inc/gateways/page-gateways.php:1050
8024
  msgid "ID of booking resources"
8025
  msgstr ""
8026
 
8027
- #: core/lib/wpbc_all_translations.php:1540 inc/gateways/page-gateways.php:1056
8028
  msgid "current date"
8029
  msgstr ""
8030
 
8031
- #: core/lib/wpbc_all_translations.php:1541 inc/gateways/page-gateways.php:1057
8032
  msgid "current time"
8033
  msgstr ""
8034
 
8035
- #: core/lib/wpbc_all_translations.php:1542 inc/gateways/page-gateways.php:1063
8036
  msgid "content data of this booking"
8037
  msgstr ""
8038
 
8039
- #: core/lib/wpbc_all_translations.php:1543 inc/gateways/page-gateways.php:1064
8040
  #: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:181
8041
  msgid "show amount to pay"
8042
  msgstr ""
8043
 
8044
- #: core/lib/wpbc_all_translations.php:1544 inc/gateways/page-gateways.php:1066
8045
  msgid "total booking cost"
8046
  msgstr ""
8047
 
8048
- #: core/lib/wpbc_all_translations.php:1545 inc/gateways/page-gateways.php:1067
8049
  msgid "deposit cost"
8050
  msgstr ""
8051
 
8052
- #: core/lib/wpbc_all_translations.php:1546 inc/gateways/page-gateways.php:1068
8053
  msgid "balance cost"
8054
  msgstr ""
8055
 
8056
- #: core/lib/wpbc_all_translations.php:1547 inc/gateways/page-gateways.php:1069
8057
  msgid "original booking cost"
8058
  msgstr ""
8059
 
8060
- #: core/lib/wpbc_all_translations.php:1548 inc/gateways/page-gateways.php:1070
8061
  msgid "additional booking cost"
8062
  msgstr ""
8063
 
8064
- #: core/lib/wpbc_all_translations.php:1549 inc/gateways/page-gateways.php:1417
8065
  msgid "Amount to pay"
8066
  msgstr ""
8067
 
8068
- #: core/lib/wpbc_all_translations.php:1550 inc/gateways/page-gateways.php:1451
8069
  #, php-format
8070
  msgid "Please make payment for your booking %s on %s For reference your booking ID: %s"
8071
  msgstr ""
8072
 
8073
- #: core/lib/wpbc_all_translations.php:1551 inc/gateways/pay_cash/wpbc-gw-pay_cash.php:204
8074
  #: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:282 inc/gateways/pay_cash/wpbc-gw-pay_cash.php:283
8075
  msgid "Pay in Cash"
8076
  msgstr ""
8077
 
8078
- #: core/lib/wpbc_all_translations.php:1552 inc/gateways/pay_cash/wpbc-gw-pay_cash.php:284
8079
  msgid "Integration of Pay in Cash payment system"
8080
  msgstr ""
8081
 
8082
- #: core/lib/wpbc_all_translations.php:1553 inc/gateways/pay_cash/wpbc-gw-pay_cash.php:362
8083
  #, php-format
8084
  msgid "If you accept %scash payment%s, you can write details about it here"
8085
  msgstr ""
8086
 
8087
- #: core/lib/wpbc_all_translations.php:1554 inc/gateways/pay_cash/wpbc-gw-pay_cash.php:523
8088
  #, php-format
8089
  msgid "Dear %sPay in cash %s for your booking %s on check in %sFor reference your booking ID: %s"
8090
  msgstr ""
8091
 
8092
- #: core/lib/wpbc_all_translations.php:1555 inc/gateways/paypal/ipn.php:120
8093
  msgid "Error IPN"
8094
  msgstr ""
8095
 
8096
- #: core/lib/wpbc_all_translations.php:1556 inc/gateways/paypal/ipn.php:241
8097
  msgid "Verified IPN"
8098
  msgstr ""
8099
 
8100
- #: core/lib/wpbc_all_translations.php:1557 inc/gateways/paypal/ipn.php:264
8101
  msgid "Invalid IPN"
8102
  msgstr ""
8103
 
8104
- #: core/lib/wpbc_all_translations.php:1558 inc/gateways/paypal/wpbc-gw-paypal.php:313
8105
  msgid "Make payments with payPal - its fast, free and secure!"
8106
  msgstr ""
8107
 
8108
- #: core/lib/wpbc_all_translations.php:1559 inc/gateways/paypal/wpbc-gw-paypal.php:352
8109
  #: inc/gateways/paypal/wpbc-gw-paypal.php:822
8110
  msgid "Paypal Standard"
8111
  msgstr ""
8112
 
8113
- #: core/lib/wpbc_all_translations.php:1560 inc/gateways/paypal/wpbc-gw-paypal.php:356
8114
  #: inc/gateways/paypal/wpbc-gw-paypal.php:822
8115
  msgid "Paypal Pro Hosted Solution"
8116
  msgstr ""
8117
 
8118
- #: core/lib/wpbc_all_translations.php:1561 inc/gateways/paypal/wpbc-gw-paypal.php:363
8119
  msgid "Account Type"
8120
  msgstr ""
8121
 
8122
- #: core/lib/wpbc_all_translations.php:1562 inc/gateways/paypal/wpbc-gw-paypal.php:375
8123
  msgid "Paypal Email address to receive payments"
8124
  msgstr ""
8125
 
8126
- #: core/lib/wpbc_all_translations.php:1563 inc/gateways/paypal/wpbc-gw-paypal.php:377
8127
  msgid "This is the Paypal Email address where payments will be sent"
8128
  msgstr ""
8129
 
8130
- #: core/lib/wpbc_all_translations.php:1564 inc/gateways/paypal/wpbc-gw-paypal.php:391
8131
  msgid "Secure Merchant ID"
8132
  msgstr ""
8133
 
8134
- #: core/lib/wpbc_all_translations.php:1565 inc/gateways/paypal/wpbc-gw-paypal.php:393
8135
  msgid "This is the Secure Merchant ID, which can be found on the profile page"
8136
  msgstr ""
8137
 
8138
- #: core/lib/wpbc_all_translations.php:1566 inc/gateways/paypal/wpbc-gw-paypal.php:408
8139
  msgid ""
8140
  " Indicates whether the transaction is payment on a final sale or an authorization for a final "
8141
  "sale, to be captured later. "
8142
  msgstr ""
8143
 
8144
- #: core/lib/wpbc_all_translations.php:1567 inc/gateways/paypal/wpbc-gw-paypal.php:412
8145
  msgid "Sale"
8146
  msgstr ""
8147
 
8148
- #: core/lib/wpbc_all_translations.php:1568 inc/gateways/paypal/wpbc-gw-paypal.php:413
8149
  msgid "Authorization"
8150
  msgstr ""
8151
 
8152
- #: core/lib/wpbc_all_translations.php:1569 inc/gateways/paypal/wpbc-gw-paypal.php:424
8153
  msgid " Select using test (Sandbox Test Environment) or live PayPal payment."
8154
  msgstr ""
8155
 
8156
- #: core/lib/wpbc_all_translations.php:1570 inc/gateways/paypal/wpbc-gw-paypal.php:430
8157
  msgid "Sandbox"
8158
  msgstr ""
8159
 
8160
- #: core/lib/wpbc_all_translations.php:1571 inc/gateways/paypal/wpbc-gw-paypal.php:440
8161
  msgid "British Pound"
8162
  msgstr ""
8163
 
8164
- #: core/lib/wpbc_all_translations.php:1572 inc/gateways/paypal/wpbc-gw-paypal.php:441
8165
  msgid "Japanese Yen"
8166
  msgstr ""
8167
 
8168
- #: core/lib/wpbc_all_translations.php:1573 inc/gateways/paypal/wpbc-gw-paypal.php:442
8169
  #: inc/gateways/sage/wpbc-gw-sage.php:455
8170
  msgid "Australian Dollars"
8171
  msgstr ""
8172
 
8173
- #: core/lib/wpbc_all_translations.php:1574 inc/gateways/paypal/wpbc-gw-paypal.php:444
8174
  #: inc/gateways/sage/wpbc-gw-sage.php:457
8175
  msgid "New Zealand Dollar"
8176
  msgstr ""
8177
 
8178
- #: core/lib/wpbc_all_translations.php:1575 inc/gateways/paypal/wpbc-gw-paypal.php:445
8179
  #: inc/gateways/sage/wpbc-gw-sage.php:458
8180
  msgid "Swiss Franc"
8181
  msgstr ""
8182
 
8183
- #: core/lib/wpbc_all_translations.php:1576 inc/gateways/paypal/wpbc-gw-paypal.php:446
8184
  #: inc/gateways/sage/wpbc-gw-sage.php:459
8185
  msgid "Hong Kong Dollar"
8186
  msgstr ""
8187
 
8188
- #: core/lib/wpbc_all_translations.php:1577 inc/gateways/paypal/wpbc-gw-paypal.php:447
8189
  #: inc/gateways/sage/wpbc-gw-sage.php:460
8190
  msgid "Singapore Dollar"
8191
  msgstr ""
8192
 
8193
- #: core/lib/wpbc_all_translations.php:1578 inc/gateways/paypal/wpbc-gw-paypal.php:448
8194
  #: inc/gateways/sage/wpbc-gw-sage.php:461
8195
  msgid "Swedish Krona"
8196
  msgstr ""
8197
 
8198
- #: core/lib/wpbc_all_translations.php:1579 inc/gateways/paypal/wpbc-gw-paypal.php:449
8199
  #: inc/gateways/sage/wpbc-gw-sage.php:462
8200
  msgid "Danish Krone"
8201
  msgstr ""
8202
 
8203
- #: core/lib/wpbc_all_translations.php:1580 inc/gateways/paypal/wpbc-gw-paypal.php:450
8204
  #: inc/gateways/sage/wpbc-gw-sage.php:463
8205
  msgid "Polish Zloty"
8206
  msgstr ""
8207
 
8208
- #: core/lib/wpbc_all_translations.php:1581 inc/gateways/paypal/wpbc-gw-paypal.php:451
8209
  #: inc/gateways/sage/wpbc-gw-sage.php:464
8210
  msgid "Norwegian Krone"
8211
  msgstr ""
8212
 
8213
- #: core/lib/wpbc_all_translations.php:1582 inc/gateways/paypal/wpbc-gw-paypal.php:452
8214
  #: inc/gateways/sage/wpbc-gw-sage.php:465
8215
  msgid "Hungarian Forint"
8216
  msgstr ""
8217
 
8218
- #: core/lib/wpbc_all_translations.php:1583 inc/gateways/paypal/wpbc-gw-paypal.php:453
8219
  #: inc/gateways/sage/wpbc-gw-sage.php:466
8220
  msgid "Czech Koruna"
8221
  msgstr ""
8222
 
8223
- #: core/lib/wpbc_all_translations.php:1584 inc/gateways/paypal/wpbc-gw-paypal.php:454
8224
  msgid "Israeli New Shekel"
8225
  msgstr ""
8226
 
8227
- #: core/lib/wpbc_all_translations.php:1585 inc/gateways/paypal/wpbc-gw-paypal.php:455
8228
  #: inc/gateways/sage/wpbc-gw-sage.php:468
8229
  msgid "Mexican Peso"
8230
  msgstr ""
8231
 
8232
- #: core/lib/wpbc_all_translations.php:1586 inc/gateways/paypal/wpbc-gw-paypal.php:456
8233
  #: inc/gateways/sage/wpbc-gw-sage.php:469
8234
  msgid "Brazilian Real (only for Brazilian users)"
8235
  msgstr ""
8236
 
8237
- #: core/lib/wpbc_all_translations.php:1587 inc/gateways/paypal/wpbc-gw-paypal.php:457
8238
  #: inc/gateways/sage/wpbc-gw-sage.php:470
8239
  msgid "Malaysian Ringgits (only for Malaysian users)"
8240
  msgstr ""
8241
 
8242
- #: core/lib/wpbc_all_translations.php:1588 inc/gateways/paypal/wpbc-gw-paypal.php:459
8243
  #: inc/gateways/sage/wpbc-gw-sage.php:472
8244
  msgid "Taiwan New Dollars"
8245
  msgstr ""
8246
 
8247
- #: core/lib/wpbc_all_translations.php:1589 inc/gateways/paypal/wpbc-gw-paypal.php:460
8248
  #: inc/gateways/sage/wpbc-gw-sage.php:473
8249
  msgid "Thai Baht"
8250
  msgstr ""
8251
 
8252
- #: core/lib/wpbc_all_translations.php:1590 inc/gateways/paypal/wpbc-gw-paypal.php:461
8253
  msgid "Turkish Lira (only for Turkish members)"
8254
  msgstr ""
8255
 
8256
- #: core/lib/wpbc_all_translations.php:1591 inc/gateways/paypal/wpbc-gw-paypal.php:480
8257
  msgid "Custom button title"
8258
  msgstr ""
8259
 
8260
- #: core/lib/wpbc_all_translations.php:1592 inc/gateways/paypal/wpbc-gw-paypal.php:487
8261
  msgid "Payment Button type"
8262
  msgstr ""
8263
 
8264
- #: core/lib/wpbc_all_translations.php:1593 inc/gateways/paypal/wpbc-gw-paypal.php:542
8265
  msgid "Show Reference Text Box"
8266
  msgstr ""
8267
 
8268
- #: core/lib/wpbc_all_translations.php:1594 inc/gateways/paypal/wpbc-gw-paypal.php:543
8269
  msgid "Check this box to show Reference Text Box"
8270
  msgstr ""
8271
 
8272
- #: core/lib/wpbc_all_translations.php:1595 inc/gateways/paypal/wpbc-gw-paypal.php:551
8273
  #: inc/gateways/paypal/wpbc-gw-paypal.php:552 inc/gateways/paypal/wpbc-gw-paypal.php:1331
8274
  msgid "Enter your phone number"
8275
  msgstr ""
8276
 
8277
- #: core/lib/wpbc_all_translations.php:1596 inc/gateways/paypal/wpbc-gw-paypal.php:553
8278
  msgid "Reference Text Box Title"
8279
  msgstr ""
8280
 
8281
- #: core/lib/wpbc_all_translations.php:1597 inc/gateways/paypal/wpbc-gw-paypal.php:554
8282
  msgid ""
8283
  "Enter a title for the Reference text box (i.e. Your email address). Visitors will see this text."
8284
  msgstr ""
8285
 
8286
- #: core/lib/wpbc_all_translations.php:1598 inc/gateways/paypal/wpbc-gw-paypal.php:575
8287
  msgid "Return URL from PayPal"
8288
  msgstr ""
8289
 
8290
- #: core/lib/wpbc_all_translations.php:1599 inc/gateways/paypal/wpbc-gw-paypal.php:606
8291
  msgid "Cancel Return URL from PayPal"
8292
  msgstr ""
8293
 
8294
- #: core/lib/wpbc_all_translations.php:1600 inc/gateways/paypal/wpbc-gw-paypal.php:657
8295
  #, php-format
8296
  msgid "To use this feature you %smust activate auto-return link%s at your Paypal account."
8297
  msgstr ""
8298
 
8299
- #: core/lib/wpbc_all_translations.php:1601 inc/gateways/paypal/wpbc-gw-paypal.php:658
8300
  msgid "Follow these steps to configure it:"
8301
  msgstr ""
8302
 
8303
- #: core/lib/wpbc_all_translations.php:1602 inc/gateways/paypal/wpbc-gw-paypal.php:660
8304
  msgid "Log in to your PayPal account."
8305
  msgstr ""
8306
 
8307
- #: core/lib/wpbc_all_translations.php:1603 inc/gateways/paypal/wpbc-gw-paypal.php:661
8308
  msgid "Click the Profile subtab."
8309
  msgstr ""
8310
 
8311
- #: core/lib/wpbc_all_translations.php:1604 inc/gateways/paypal/wpbc-gw-paypal.php:662
8312
  msgid "Click Website Payment Preferences in the Seller Preferences column."
8313
  msgstr ""
8314
 
8315
- #: core/lib/wpbc_all_translations.php:1605 inc/gateways/paypal/wpbc-gw-paypal.php:663
8316
  msgid "Under Auto Return for Website Payments, click the On radio button."
8317
  msgstr ""
8318
 
8319
- #: core/lib/wpbc_all_translations.php:1606 inc/gateways/paypal/wpbc-gw-paypal.php:664
8320
  msgid "For the Return URL, enter the Return URL from PayPal on your site for successfull payment."
8321
  msgstr ""
8322
 
8323
- #: core/lib/wpbc_all_translations.php:1607 inc/gateways/paypal/wpbc-gw-paypal.php:673
8324
  msgid ""
8325
  "Instant Payment Notification (IPN) is a message service that notifies you of events related to "
8326
  "PayPal transactions"
8327
  msgstr ""
8328
 
8329
- #: core/lib/wpbc_all_translations.php:1608 inc/gateways/paypal/wpbc-gw-paypal.php:682
8330
  msgid "Sending email for verified transaction"
8331
  msgstr ""
8332
 
8333
- #: core/lib/wpbc_all_translations.php:1609 inc/gateways/paypal/wpbc-gw-paypal.php:692
8334
  #, php-format
8335
  msgid "Email for getting report for %sverified%s transactions."
8336
  msgstr ""
8337
 
8338
- #: core/lib/wpbc_all_translations.php:1610 inc/gateways/paypal/wpbc-gw-paypal.php:705
8339
  msgid "Sending email for invalid transaction"
8340
  msgstr ""
8341
 
8342
- #: core/lib/wpbc_all_translations.php:1611 inc/gateways/paypal/wpbc-gw-paypal.php:715
8343
  #, php-format
8344
  msgid "Email for getting report for %sinvalid%s transactions."
8345
  msgstr ""
8346
 
8347
- #: core/lib/wpbc_all_translations.php:1612 inc/gateways/paypal/wpbc-gw-paypal.php:728
8348
  msgid "Sending email if error occur during verification"
8349
  msgstr ""
8350
 
8351
- #: core/lib/wpbc_all_translations.php:1613 inc/gateways/paypal/wpbc-gw-paypal.php:738
8352
  #, php-format
8353
  msgid "Email for getting report for %ssome errors in verification process%s."
8354
  msgstr ""
8355
 
8356
- #: core/lib/wpbc_all_translations.php:1614 inc/gateways/paypal/wpbc-gw-paypal.php:750
8357
  msgid "Use SSL connection"
8358
  msgstr ""
8359
 
8360
- #: core/lib/wpbc_all_translations.php:1615 inc/gateways/paypal/wpbc-gw-paypal.php:751
8361
  msgid "Use the SSL connection for posting data, instead of standard HTTP connection"
8362
  msgstr ""
8363
 
8364
- #: core/lib/wpbc_all_translations.php:1616 inc/gateways/paypal/wpbc-gw-paypal.php:758
8365
  msgid "Use cURL posting"
8366
  msgstr ""
8367
 
8368
- #: core/lib/wpbc_all_translations.php:1617 inc/gateways/paypal/wpbc-gw-paypal.php:759
8369
  msgid "Use the cURL for posting data, instead of fsockopen() function"
8370
  msgstr ""
8371
 
8372
- #: core/lib/wpbc_all_translations.php:1618 inc/gateways/paypal/wpbc-gw-paypal.php:775
8373
  msgid " Follow these instructions to set up your listener at your PayPal account:"
8374
  msgstr ""
8375
 
8376
- #: core/lib/wpbc_all_translations.php:1619 inc/gateways/paypal/wpbc-gw-paypal.php:777
8377
  msgid "Click Profile on the My Account tab."
8378
  msgstr ""
8379
 
8380
- #: core/lib/wpbc_all_translations.php:1620 inc/gateways/paypal/wpbc-gw-paypal.php:778
8381
  msgid "Click Instant Payment Notification Preferences in the Selling Preferences column."
8382
  msgstr ""
8383
 
8384
- #: core/lib/wpbc_all_translations.php:1621 inc/gateways/paypal/wpbc-gw-paypal.php:779
8385
  msgid "Click Choose IPN Settings to specify your listeners URL and activate the listener."
8386
  msgstr ""
8387
 
8388
- #: core/lib/wpbc_all_translations.php:1622 inc/gateways/paypal/wpbc-gw-paypal.php:780
8389
  msgid "Specify the URL for your listener in the Notification URL field as:"
8390
  msgstr ""
8391
 
8392
- #: core/lib/wpbc_all_translations.php:1623 inc/gateways/paypal/wpbc-gw-paypal.php:782
8393
  msgid "Click Receive IPN messages (Enabled) to enable your listener."
8394
  msgstr ""
8395
 
8396
- #: core/lib/wpbc_all_translations.php:1624 inc/gateways/paypal/wpbc-gw-paypal.php:783
8397
  msgid "Click Save."
8398
  msgstr ""
8399
 
8400
- #: core/lib/wpbc_all_translations.php:1625 inc/gateways/paypal/wpbc-gw-paypal.php:784
8401
  msgid "Click Back to Profile Summary to return to the Profile after activating your listener."
8402
  msgstr ""
8403
 
8404
- #: core/lib/wpbc_all_translations.php:1626 inc/gateways/paypal/wpbc-gw-paypal.php:946
8405
  msgid "PayPal"
8406
  msgstr ""
8407
 
8408
- #: core/lib/wpbc_all_translations.php:1627 inc/gateways/paypal/wpbc-gw-paypal.php:948
8409
  msgid "Integration of Paypal payment system"
8410
  msgstr ""
8411
 
8412
- #: core/lib/wpbc_all_translations.php:1628 inc/gateways/paypal/wpbc-gw-paypal.php:1069
8413
  msgid "PayPal IPN"
8414
  msgstr ""
8415
 
8416
- #: core/lib/wpbc_all_translations.php:1629 inc/gateways/sage/wpbc-gw-sage.php:355
8417
  #, php-format
8418
  msgid "Pay using %s payment service"
8419
  msgstr ""
8420
 
8421
- #: core/lib/wpbc_all_translations.php:1630 inc/gateways/sage/wpbc-gw-sage.php:395
8422
  msgid "Vendor Name"
8423
  msgstr ""
8424
 
8425
- #: core/lib/wpbc_all_translations.php:1631 inc/gateways/sage/wpbc-gw-sage.php:397
8426
  msgid "Set this value to the Vendor Name assigned to you by Sage Pay or chosen when you applied."
8427
  msgstr ""
8428
 
8429
- #: core/lib/wpbc_all_translations.php:1632 inc/gateways/sage/wpbc-gw-sage.php:410
8430
  msgid "XOR Encryption password"
8431
  msgstr ""
8432
 
8433
- #: core/lib/wpbc_all_translations.php:1633 inc/gateways/sage/wpbc-gw-sage.php:412
8434
  msgid "Set this value to the XOR Encryption password assigned to you by Sage Pay"
8435
  msgstr ""
8436
 
8437
- #: core/lib/wpbc_all_translations.php:1634 inc/gateways/ideal/wpbc-gw-ideal.php:420
8438
  #: inc/gateways/sage/wpbc-gw-sage.php:425
8439
  msgid "Select TEST for the Test Server and LIVE in the live environment"
8440
  msgstr ""
8441
 
8442
- #: core/lib/wpbc_all_translations.php:1635 inc/gateways/ideal/wpbc-gw-ideal.php:432
8443
  #: inc/gateways/sage/wpbc-gw-sage.php:429 inc/gateways/stripe/wpbc-gw-stripe.php:365
8444
  #: inc/gateways/stripe/wpbc-gw-stripe.php:408 inc/gateways/stripe/wpbc-gw-stripe.php:423
 
 
 
8445
  msgid "TEST"
8446
  msgstr ""
8447
 
8448
- #: core/lib/wpbc_all_translations.php:1636 inc/gateways/ideal/wpbc-gw-ideal.php:433
8449
  #: inc/gateways/sage/wpbc-gw-sage.php:430 inc/gateways/stripe/wpbc-gw-stripe.php:366
 
8450
  msgid "LIVE"
8451
  msgstr ""
8452
 
8453
- #: core/lib/wpbc_all_translations.php:1637 inc/gateways/sage/wpbc-gw-sage.php:439
8454
  msgid "This can be DEFERRED or AUTHENTICATED if your Sage Pay account supports those payment types"
8455
  msgstr ""
8456
 
8457
- #: core/lib/wpbc_all_translations.php:1638 inc/gateways/sage/wpbc-gw-sage.php:443
8458
  msgid "PAYMENT"
8459
  msgstr ""
8460
 
8461
- #: core/lib/wpbc_all_translations.php:1639 inc/gateways/sage/wpbc-gw-sage.php:444
8462
  msgid "DEFERRED"
8463
  msgstr ""
8464
 
8465
- #: core/lib/wpbc_all_translations.php:1640 inc/gateways/sage/wpbc-gw-sage.php:445
8466
  msgid "AUTHENTICATE"
8467
  msgstr ""
8468
 
8469
- #: core/lib/wpbc_all_translations.php:1641 inc/gateways/sage/wpbc-gw-sage.php:454
8470
  msgid "Yen"
8471
  msgstr ""
8472
 
8473
- #: core/lib/wpbc_all_translations.php:1642 inc/gateways/sage/wpbc-gw-sage.php:467
8474
  msgid "Israeli Shekel"
8475
  msgstr ""
8476
 
8477
- #: core/lib/wpbc_all_translations.php:1643 inc/gateways/sage/wpbc-gw-sage.php:782
8478
  msgid "Sage"
8479
  msgstr ""
8480
 
8481
- #: core/lib/wpbc_all_translations.php:1644 inc/gateways/sage/wpbc-gw-sage.php:784
8482
  msgid "Integration of Sage payment system"
8483
  msgstr ""
8484
 
8485
- #: core/lib/wpbc_all_translations.php:1645 inc/gateways/sage/wpbc-gw-sage.php:876
8486
- #: inc/gateways/stripe/wpbc-gw-stripe.php:949
8487
  #, php-format
8488
  msgid "If you have no account on this system, please visit %s to create one."
8489
  msgstr ""
8490
 
8491
- #: core/lib/wpbc_all_translations.php:1646 inc/gateways/wpbc-response.php:135
8492
  msgid "Payment rejected"
8493
  msgstr ""
8494
 
8495
- #: core/lib/wpbc_all_translations.php:1647 inc/gateways/ideal/wpbc-gw-ideal.php:388
8496
  msgid "Merchant ID"
8497
  msgstr ""
8498
 
8499
- #: core/lib/wpbc_all_translations.php:1648 inc/gateways/ideal/wpbc-gw-ideal.php:390
8500
  msgid "Enter your iDEAL Merchant ID"
8501
  msgstr ""
8502
 
8503
- #: core/lib/wpbc_all_translations.php:1649 inc/gateways/ideal/wpbc-gw-ideal.php:405
8504
  msgid "Enter your iDEAL Merchant Key."
8505
  msgstr ""
8506
 
8507
- #: core/lib/wpbc_all_translations.php:1650 inc/gateways/ideal/wpbc-gw-ideal.php:423
8508
  #, php-format
8509
  msgid "Test mode requires the option %s to be selected in the %s account configuration section %s"
8510
  msgstr ""
8511
 
8512
- #: core/lib/wpbc_all_translations.php:1651 inc/gateways/ideal/wpbc-gw-ideal.php:424
8513
  msgid "Test with Simulator"
8514
  msgstr ""
8515
 
8516
- #: core/lib/wpbc_all_translations.php:1652 inc/gateways/ideal/wpbc-gw-ideal.php:426
8517
  msgid "My Profile – Connection"
8518
  msgstr ""
8519
 
8520
- #: core/lib/wpbc_all_translations.php:1653 inc/gateways/ideal/wpbc-gw-ideal.php:482
8521
  #, php-format
8522
  msgid ""
8523
  "If not supplied then the description as configured in the administration/management portal "
@@ -8525,285 +8634,290 @@ msgid ""
8525
  "be applied."
8526
  msgstr ""
8527
 
8528
- #: core/lib/wpbc_all_translations.php:1654 inc/gateways/ideal/wpbc-gw-ideal.php:483
8529
  msgid "Always use Description"
8530
  msgstr ""
8531
 
8532
- #: core/lib/wpbc_all_translations.php:1655 inc/gateways/ideal/wpbc-gw-ideal.php:802
8533
- #: inc/gateways/stripe/wpbc-gw-stripe.php:831
8534
  #, php-format
8535
  msgid "Integration of %s payment system"
8536
  msgstr ""
8537
 
8538
- #: core/lib/wpbc_all_translations.php:1656 inc/gateways/ideal/wpbc-gw-ideal.php:893
8539
  #, php-format
8540
  msgid "Processing your %s payments through %s"
8541
  msgstr ""
8542
 
8543
- #: core/lib/wpbc_all_translations.php:1657 core/wpbc-emails.php:258
8544
  #, php-format
8545
  msgid "%s - inserting link for export booking to"
8546
  msgstr ""
8547
 
8548
- #: core/lib/wpbc_all_translations.php:1658 inc/_ps/admin/br-table-export-feeds.php:176
8549
  msgid ".ics Feed URL"
8550
  msgstr ""
8551
 
8552
- #: core/lib/wpbc_all_translations.php:1659 core/wpbc-emails.php:245 core/wpbc-emails.php:246
8553
  #: core/wpbc-emails.php:247 core/wpbc-emails.php:248 core/wpbc-emails.php:249
8554
  #: core/wpbc-emails.php:250 core/wpbc-emails.php:251
8555
  #, php-format
8556
  msgid "%s - inserting modification date of booking "
8557
  msgstr ""
8558
 
8559
- #: core/lib/wpbc_all_translations.php:1660 inc/_ps/form/class-wpbc-form-help.php:687
8560
  msgid "Coupon discount value of the booking."
8561
  msgstr ""
8562
 
8563
- #: core/lib/wpbc_all_translations.php:1661 inc/gateways/stripe/stripe-charge.php:381
8564
  msgid "Stripe. Ouch, something went wrong!"
8565
  msgstr ""
8566
 
8567
- #: core/lib/wpbc_all_translations.php:1662 inc/gateways/stripe/wpbc-gw-stripe.php:320
8568
  #, php-format
8569
  msgid "Please pay %s"
8570
  msgstr ""
8571
 
8572
- #: core/lib/wpbc_all_translations.php:1663 inc/gateways/stripe/wpbc-gw-stripe.php:360
 
8573
  msgid "Chose payment account"
8574
  msgstr ""
8575
 
8576
- #: core/lib/wpbc_all_translations.php:1664 inc/gateways/stripe/wpbc-gw-stripe.php:376
8577
- #: inc/gateways/stripe/wpbc-gw-stripe.php:408
 
8578
  msgid "Publishable key"
8579
  msgstr ""
8580
 
8581
- #: core/lib/wpbc_all_translations.php:1665 inc/gateways/stripe/wpbc-gw-stripe.php:391
8582
- #: inc/gateways/stripe/wpbc-gw-stripe.php:423
 
8583
  msgid "Secret key"
8584
  msgstr ""
8585
 
8586
- #: core/lib/wpbc_all_translations.php:1666 inc/gateways/stripe/wpbc-gw-stripe.php:595
 
8587
  msgid "For more information:"
8588
  msgstr ""
8589
 
8590
- #: core/lib/wpbc_all_translations.php:1667 inc/gateways/stripe/wpbc-gw-stripe.php:929
 
8591
  #, php-format
8592
  msgid "require PHP version %s or newer!"
8593
  msgstr ""
8594
 
8595
- #: core/lib/wpbc_all_translations.php:1668 inc/_bl/admin/page-search.php:133
8596
  #, php-format
8597
  msgid "%s - ID of booking resource, "
8598
  msgstr ""
8599
 
8600
- #: core/lib/wpbc_all_translations.php:1669 inc/_bl/admin/page-search.php:134
8601
  #, php-format
8602
  msgid "%s - ID of page with booking form, "
8603
  msgstr ""
8604
 
8605
- #: core/lib/wpbc_all_translations.php:1670 inc/_bs/admin/page-email-payment.php:698
8606
  msgid "Email with Payment Request which is sent to Visitor."
8607
  msgstr ""
8608
 
8609
- #: core/lib/wpbc_all_translations.php:1671 inc/_ps/admin/page-email-edit.php:558
8610
  msgid "Customization of email template, which is sent after modification of booking"
8611
  msgstr ""
8612
 
8613
- #: core/lib/wpbc_all_translations.php:1672 inc/_ps/admin/page-email-edit.php:694
8614
  msgid "Email is sent to Visitor after Editing of booking."
8615
  msgstr ""
8616
 
8617
- #: core/lib/wpbc_all_translations.php:1673 core/lib/wpdev-booking-class.php:691
8618
  msgid "Booking resource type is not defined. This can be, when at the URL is wrong booking hash."
8619
  msgstr ""
8620
 
8621
- #: core/lib/wpbc_all_translations.php:1674 core/lib/wpdev-booking-class.php:1010
8622
  msgid "My bookings"
8623
  msgstr ""
8624
 
8625
- #: core/lib/wpbc_all_translations.php:1675 core/wpbc-emails.php:265
8626
  #, php-format
8627
  msgid ""
8628
  "%s - inserting link to the page where visitor can see listing of own bookings, (possible to use "
8629
  "the %s parameter for setting different %s of this page. Example: %s )"
8630
  msgstr ""
8631
 
8632
- #: core/lib/wpbc_all_translations.php:1676 inc/_bl/admin/page-search.php:602
8633
  msgid "Inline Search Form Template"
8634
  msgstr ""
8635
 
8636
- #: core/lib/wpbc_all_translations.php:1677 inc/_bm/admin/api-settings-m.php:275
8637
  msgid "Show booking details in tooltip"
8638
  msgstr ""
8639
 
8640
- #: core/lib/wpbc_all_translations.php:1678 inc/_bm/admin/api-settings-m.php:276
8641
  #, php-format
8642
  msgid ""
8643
  "Check this box to display booking details with a tooltip, when mouse hovers over each day on the "
8644
  "calendar(s). %sIts works only for bookings for specific timeslot(s)!%s"
8645
  msgstr ""
8646
 
8647
- #: core/lib/wpbc_all_translations.php:1679 inc/_bm/admin/api-settings-m.php:284
8648
  msgid "Booking details"
8649
  msgstr ""
8650
 
8651
- #: core/lib/wpbc_all_translations.php:1680 inc/_bm/admin/api-settings-m.php:285
8652
  msgid "You can use the shortcodes from the bottom form of Settings Fields page."
8653
  msgstr ""
8654
 
8655
- #: core/lib/wpbc_all_translations.php:1681 inc/_bm/admin/api-settings-m.php:299
8656
  msgid "This option can impact to speed of page loading."
8657
  msgstr ""
8658
 
8659
- #: core/lib/wpbc_all_translations.php:1682 inc/_bm/admin/page-cost-advanced.php:680
8660
  msgid ""
8661
  "Use arithmetic expressions in cost configurations, including fields shortcodes and simple "
8662
  "mathematics operations"
8663
  msgstr ""
8664
 
8665
- #: core/lib/wpbc_all_translations.php:1683 inc/_bm/admin/page-cost-advanced.php:682
8666
  #, php-format
8667
  msgid "if selected %s"
8668
  msgstr ""
8669
 
8670
- #: core/lib/wpbc_all_translations.php:1684 inc/_bs/admin/api-settings-s.php:304
8671
  msgid "Set check out date as available"
8672
  msgstr ""
8673
 
8674
- #: core/lib/wpbc_all_translations.php:1685 inc/_bs/admin/api-settings-s.php:305
8675
  msgid "Check this option, to remove last selected day of saving to booking."
8676
  msgstr ""
8677
 
8678
- #: core/lib/wpbc_all_translations.php:1686 inc/_bs/admin/api-settings-s.php:489
8679
  msgid "Auto approve bookings during import"
8680
  msgstr ""
8681
 
8682
- #: core/lib/wpbc_all_translations.php:1687 inc/_bs/admin/api-settings-s.php:490
8683
  #, php-format
8684
  msgid ""
8685
  "Check this checkbox to activate auto approve of all bookings %sduring import from external "
8686
  "source(s)%s."
8687
  msgstr ""
8688
 
8689
- #: core/lib/wpbc_all_translations.php:1688 inc/_bs/admin/api-settings-s.php:497
8690
  msgid "Auto approve booking, if booking cost is zero"
8691
  msgstr ""
8692
 
8693
- #: core/lib/wpbc_all_translations.php:1689 inc/_bs/admin/api-settings-s.php:498
8694
  #, php-format
8695
  msgid "Check this checkbox to activate auto approve of booking, %swhen cost of booking is zero%s."
8696
  msgstr ""
8697
 
8698
- #: core/lib/wpbc_all_translations.php:1690 inc/_bs/admin/api-settings-s.php:505
8699
  msgid "Auto approve bookings after creation booking in admin panel"
8700
  msgstr ""
8701
 
8702
- #: core/lib/wpbc_all_translations.php:1691 inc/_bs/admin/api-settings-s.php:506
8703
  #, php-format
8704
  msgid ""
8705
  "Check this checkbox to activate auto approve of booking, %sif booking was made in admin panel%s."
8706
  msgstr ""
8707
 
8708
- #: core/lib/wpbc_all_translations.php:1692 inc/_mu/admin/api-settings-u.php:62
8709
  msgid "Activate custom booking forms for regular users"
8710
  msgstr ""
8711
 
8712
- #: core/lib/wpbc_all_translations.php:1693 inc/_mu/admin/api-settings-u.php:63
8713
  msgid "Check this box if you want to use multiple custom booking forms for activated regular users"
8714
  msgstr ""
8715
 
8716
- #: core/lib/wpbc_all_translations.php:1694 inc/_ps/admin/api-settings-p.php:108
8717
  msgid "Start / End time for Calendar Overview"
8718
  msgstr ""
8719
 
8720
- #: core/lib/wpbc_all_translations.php:1695 inc/_ps/admin/api-settings-p.php:156
8721
  #, php-format
8722
  msgid "Select start and end time showing for Calendar Overview in %sDay%s view mode"
8723
  msgstr ""
8724
 
8725
- #: core/lib/wpbc_all_translations.php:1696 inc/_ps/admin/api-settings-p.php:276
8726
  msgid "Show / hide notes"
8727
  msgstr ""
8728
 
8729
- #: core/lib/wpbc_all_translations.php:1697 inc/_ps/admin/api-settings-p.php:277
8730
  msgid "Check this box if you want to open notes section by default in Booking Listing page."
8731
  msgstr ""
8732
 
8733
- #: core/lib/wpbc_all_translations.php:1698 inc/_ps/admin/api-settings-p.php:327
8734
  #: js/wpbc-gutenberg.js:1182
8735
  msgid "URL of page for customer bookings listing"
8736
  msgstr ""
8737
 
8738
- #: core/lib/wpbc_all_translations.php:1699 inc/_ps/admin/api-settings-p.php:328
8739
  #, php-format
8740
  msgid ""
8741
  "Type URL for %svisitors%s to view own bookings. You must insert %s shortcode into this page."
8742
  msgstr ""
8743
 
8744
- #: core/lib/wpbc_all_translations.php:1700 inc/gateways/page-gateways.php:105
8745
  msgid "Do not show payment form, after submit booking form"
8746
  msgstr ""
8747
 
8748
- #: core/lib/wpbc_all_translations.php:1701 inc/gateways/page-gateways.php:106
8749
  msgid "Check this box if you want to show payment form only after sending payment request by email"
8750
  msgstr ""
8751
 
8752
- #: core/lib/wpbc_all_translations.php:1702 inc/gateways/page-gateways.php:115
8753
  msgid "Auto send payment request after creation booking in admin panel"
8754
  msgstr ""
8755
 
8756
- #: core/lib/wpbc_all_translations.php:1703 inc/gateways/page-gateways.php:116
8757
  msgid ""
8758
  "Check this box if you want automatically send payment request to visitor, if booking was made in "
8759
  "admin panel"
8760
  msgstr ""
8761
 
8762
- #: core/lib/wpbc_all_translations.php:1704 inc/gateways/page-gateways.php:129
8763
  msgid "Show deposit and total booking cost together"
8764
  msgstr ""
8765
 
8766
- #: core/lib/wpbc_all_translations.php:1705 inc/gateways/page-gateways.php:130
8767
  msgid ""
8768
  "Check this box if you want to show deposit amount and total booking cost, after submit of "
8769
  "booking."
8770
  msgstr ""
8771
 
8772
- #: core/lib/wpbc_all_translations.php:1706 inc/gateways/page-gateways.php:142
8773
  msgid ""
8774
  "Please note, at admin panel for booking will be saved deposit cost and notes about deposit, do "
8775
  "not depend from the visitor choice of this payment. You need to check each such payment manually!"
8776
  msgstr ""
8777
 
8778
- #: core/lib/wpbc_all_translations.php:1707 inc/gateways/page-gateways.php:153
8779
  msgid "Send email on cost changes"
8780
  msgstr ""
8781
 
8782
- #: core/lib/wpbc_all_translations.php:1708 inc/gateways/page-gateways.php:154
8783
  msgid ""
8784
  "Check this box if you want to send booking modification email, if cost of booking was edited in "
8785
  "booking listing page."
8786
  msgstr ""
8787
 
8788
- #: core/lib/wpbc_all_translations.php:1709 inc/gateways/page-gateways.php:589
8789
  #: inc/gateways/page-gateways.php:635
8790
  msgid "Payment Options"
8791
  msgstr ""
8792
 
8793
- #: core/lib/wpbc_all_translations.php:1710 core/wpbc-js.php:141
8794
  msgid "Times:"
8795
  msgstr ""
8796
 
8797
- #: core/lib/wpbc_all_translations.php:1711 inc/_bm/admin/page-cost-early-late-booking.php:74
8798
  msgid "Set Early / Late Booking"
8799
  msgstr ""
8800
 
8801
- #: core/lib/wpbc_all_translations.php:1712 inc/_bm/admin/page-cost-early-late-booking.php:139
8802
  #, php-format
8803
  msgid "%sEarly booking discount%s for booking resource"
8804
  msgstr ""
8805
 
8806
- #: core/lib/wpbc_all_translations.php:1713 inc/_bm/admin/page-cost-early-late-booking.php:157
8807
  #: inc/_bm/admin/page-cost-early-late-booking.php:166
8808
  #: inc/_bm/admin/page-cost-early-late-booking.php:185
8809
  #: inc/_bm/admin/page-cost-early-late-booking.php:358
@@ -8812,302 +8926,358 @@ msgstr ""
8812
  msgid "Discount"
8813
  msgstr ""
8814
 
8815
- #: core/lib/wpbc_all_translations.php:1714 inc/_bm/admin/page-cost-early-late-booking.php:223
8816
  #, php-format
8817
  msgid "Apply discount, only if difference between %stoday%s and %scheck in%s day %smore%s than"
8818
  msgstr ""
8819
 
8820
- #: core/lib/wpbc_all_translations.php:1715 inc/_bm/admin/page-cost-early-late-booking.php:276
8821
  #: inc/_bm/admin/page-cost-early-late-booking.php:476
8822
  #, php-format
8823
  msgid "Apply discount, only if %scheck in%s day inside of this %sseason filter%s"
8824
  msgstr ""
8825
 
8826
- #: core/lib/wpbc_all_translations.php:1716 inc/_bm/admin/page-cost-early-late-booking.php:340
8827
  #, php-format
8828
  msgid "%sLast minute booking discount%s for booking resource"
8829
  msgstr ""
8830
 
8831
- #: core/lib/wpbc_all_translations.php:1717 inc/_bm/admin/page-cost-early-late-booking.php:424
8832
  #, php-format
8833
  msgid "Apply discount, only if difference between %stoday%s and %scheck in%s day %sless%s than"
8834
  msgstr ""
8835
 
8836
- #: core/lib/wpbc_all_translations.php:1718 inc/_bm/admin/page-cost.php:222
8837
  msgid "Early / Late Booking"
8838
  msgstr ""
8839
 
8840
- #: core/lib/wpbc_all_translations.php:1719 inc/_bm/admin/page-cost.php:231
8841
  msgid "Set Early / Late Booking Amount"
8842
  msgstr ""
8843
 
8844
- #: core/lib/wpbc_all_translations.php:1720 inc/_bm/admin/page-cost.php:681
8845
  msgid "Set Early / Late booking discount"
8846
  msgstr ""
8847
 
8848
- #: core/lib/wpbc_all_translations.php:1721 inc/_bm/admin/page-cost.php:682
8849
  msgid "Early / Late"
8850
  msgstr ""
8851
 
8852
- #: core/lib/wpbc_all_translations.php:1722 js/wpbc-gutenberg.js:55
8853
  msgid "Show a booking form, availability calendar or other elements from Booking Calendar plugin."
8854
  msgstr ""
8855
 
8856
- #: core/lib/wpbc_all_translations.php:1723 js/wpbc-gutenberg.js:140
8857
  msgid "Configure Booking Calendar Block"
8858
  msgstr ""
8859
 
8860
- #: core/lib/wpbc_all_translations.php:1724 js/wpbc-gutenberg.js:290
8861
  msgid "Click to Preview Block"
8862
  msgstr ""
8863
 
8864
- #: core/lib/wpbc_all_translations.php:1725 js/wpbc-gutenberg.js:565 js/wpbc-gutenberg.js:641
8865
  #: js/wpbc-gutenberg.js:825
8866
  msgid "Visible months number"
8867
  msgstr ""
8868
 
8869
- #: core/lib/wpbc_all_translations.php:1726 js/wpbc-gutenberg.js:568 js/wpbc-gutenberg.js:644
8870
  #: js/wpbc-gutenberg.js:828
8871
  msgid "Start month"
8872
  msgstr ""
8873
 
8874
- #: core/lib/wpbc_all_translations.php:1727 js/wpbc-gutenberg.js:571 js/wpbc-gutenberg.js:902
8875
  msgid "Custom booking form"
8876
  msgstr ""
8877
 
8878
- #: core/lib/wpbc_all_translations.php:1728 js/wpbc-gutenberg.js:574 js/wpbc-gutenberg.js:647
8879
  #: js/wpbc-gutenberg.js:834
8880
  msgid "Unavailable dates from other booking resources"
8881
  msgstr ""
8882
 
8883
- #: core/lib/wpbc_all_translations.php:1729 js/wpbc-gutenberg.js:608
8884
  msgid "Availability Calendar"
8885
  msgstr ""
8886
 
8887
- #: core/lib/wpbc_all_translations.php:1730 js/wpbc-gutenberg.js:682
8888
- msgid "Timeline"
8889
- msgstr ""
8890
-
8891
- #: core/lib/wpbc_all_translations.php:1731 js/wpbc-gutenberg.js:712 js/wpbc-gutenberg.js:813
8892
  msgid "Booking resource(s)"
8893
  msgstr ""
8894
 
8895
- #: core/lib/wpbc_all_translations.php:1732 js/wpbc-gutenberg.js:749
8896
  msgid "Show from/to"
8897
  msgstr ""
8898
 
8899
- #: core/lib/wpbc_all_translations.php:1733 js/wpbc-gutenberg.js:766
8900
  msgid "All booking resources"
8901
  msgstr ""
8902
 
8903
- #: core/lib/wpbc_all_translations.php:1734 js/wpbc-gutenberg.js:783
8904
  msgid "Selection of Resources"
8905
  msgstr ""
8906
 
8907
- #: core/lib/wpbc_all_translations.php:1735 js/wpbc-gutenberg.js:819
8908
  msgid "Selected booking resource (by default)"
8909
  msgstr ""
8910
 
8911
- #: core/lib/wpbc_all_translations.php:1736 js/wpbc-gutenberg.js:822
8912
  msgid "Title of first option in list"
8913
  msgstr ""
8914
 
8915
- #: core/lib/wpbc_all_translations.php:1737 js/wpbc-gutenberg.js:831
8916
  msgid "Custom booking form for all booking resources"
8917
  msgstr ""
8918
 
8919
- #: core/lib/wpbc_all_translations.php:1738 js/wpbc-gutenberg.js:866
8920
  msgid "Booking Form (without calendar)"
8921
  msgstr ""
8922
 
8923
- #: core/lib/wpbc_all_translations.php:1739 js/wpbc-gutenberg.js:899
8924
  msgid "Date for submit booking"
8925
  msgstr ""
8926
 
8927
- #: core/lib/wpbc_all_translations.php:1740 js/wpbc-gutenberg.js:931
8928
  msgid "Search Availability form"
8929
  msgstr ""
8930
 
8931
- #: core/lib/wpbc_all_translations.php:1741 js/wpbc-gutenberg.js:961
8932
  msgid "Show search results on other page"
8933
  msgstr ""
8934
 
8935
- #: core/lib/wpbc_all_translations.php:1742 js/wpbc-gutenberg.js:964
8936
  msgid "Search results page must have this shortcode"
8937
  msgstr ""
8938
 
8939
- #: core/lib/wpbc_all_translations.php:1743 js/wpbc-gutenberg.js:967
8940
  msgid "Show search results in the same page"
8941
  msgstr ""
8942
 
8943
- #: core/lib/wpbc_all_translations.php:1744 js/wpbc-gutenberg.js:970
8944
  msgid "Search Results Title"
8945
  msgstr ""
8946
 
8947
- #: core/lib/wpbc_all_translations.php:1745 js/wpbc-gutenberg.js:973
8948
  msgid "Title, if no search results"
8949
  msgstr ""
8950
 
8951
- #: core/lib/wpbc_all_translations.php:1746 js/wpbc-gutenberg.js:976
8952
  msgid "Search in booking resources of WP users"
8953
  msgstr ""
8954
 
8955
- #: core/lib/wpbc_all_translations.php:1747 js/wpbc-gutenberg.js:1030
8956
  msgid "Show search results on this page, after redirection from search form at other page."
8957
  msgstr ""
8958
 
8959
- #: core/lib/wpbc_all_translations.php:1748 js/wpbc-gutenberg.js:1054
8960
  msgid "System Block"
8961
  msgstr ""
8962
 
8963
- #: core/lib/wpbc_all_translations.php:1749 js/wpbc-gutenberg.js:1054
8964
  msgid "Booking Calendar Editing"
8965
  msgstr ""
8966
 
8967
- #: core/lib/wpbc_all_translations.php:1750 js/wpbc-gutenberg.js:1085
8968
  msgid ""
8969
  "This block required for ability to edit, cancel the booking by visitor, who made the booking, or "
8970
  "for ability to show payment form, after sending payment request."
8971
  msgstr ""
8972
 
8973
- #: core/lib/wpbc_all_translations.php:1751 js/wpbc-gutenberg.js:1090 js/wpbc-gutenberg.js:1176
8974
  msgid "Link to this page must be defined"
8975
  msgstr ""
8976
 
8977
- #: core/lib/wpbc_all_translations.php:1752 js/wpbc-gutenberg.js:1094 js/wpbc-gutenberg.js:1180
8978
  msgid "at this option"
8979
  msgstr ""
8980
 
8981
- #: core/lib/wpbc_all_translations.php:1753 js/wpbc-gutenberg.js:1104 js/wpbc-gutenberg.js:1190
8982
  msgid "You can not open this page directly. Please, use links in "
8983
  msgstr ""
8984
 
8985
- #: core/lib/wpbc_all_translations.php:1754 js/wpbc-gutenberg.js:1112 js/wpbc-gutenberg.js:1198
8986
  msgid "If you open this page directly, then you will see this error"
8987
  msgstr ""
8988
 
8989
- #: core/lib/wpbc_all_translations.php:1755 js/wpbc-gutenberg.js:1140
8990
  msgid "Customer Bookings Listing"
8991
  msgstr ""
8992
 
8993
- #: core/lib/wpbc_all_translations.php:1756 js/wpbc-gutenberg.js:1171
8994
  msgid ""
8995
  "Visitors of your website, can view previous (own) bookings, by clicking on secret link in email, "
8996
  "which is sending after booking created."
8997
  msgstr ""
8998
 
8999
- #: core/lib/wpbc_all_translations.php:1757 js/wpbc-gutenberg.js:1231
9000
  msgid "Show Info of Booking Resource"
9001
  msgstr ""
9002
 
9003
- #: core/lib/wpbc_all_translations.php:1758 js/wpbc-gutenberg.js:1297
9004
  msgid "Click to edit"
9005
  msgstr ""
9006
 
9007
- #: core/lib/wpbc_all_translations.php:1759 js/wpbc-gutenberg.js:1299
9008
  msgid "This is not real preview. Its configuration block of \"Booking Calendar\"."
9009
  msgstr ""
9010
 
9011
- #: inc/_bl/admin/page-search.php:163
9012
  msgid "Sort search results by"
9013
  msgstr ""
9014
 
9015
- #: inc/_bl/admin/page-search.php:164
9016
  msgid "Select type of sorting search results"
9017
  msgstr ""
9018
 
9019
- #: inc/_bl/admin/page-search.php:168 inc/_bl/admin/page-search.php:169
 
9020
  msgid "ID of booking resource"
9021
  msgstr ""
9022
 
9023
- #: inc/_bl/admin/page-search.php:170 inc/_bl/admin/page-search.php:171
 
9024
  msgid "Title of booking resource"
9025
  msgstr ""
9026
 
9027
- #: inc/_bl/admin/page-search.php:172 inc/_bl/admin/page-search.php:173
 
9028
  msgid "Priority field of booking resource"
9029
  msgstr ""
9030
 
9031
- #: inc/_bl/admin/page-search.php:174 inc/_bl/admin/page-search.php:175
 
9032
  msgid "Cost of booking resource"
9033
  msgstr ""
9034
 
9035
- #: inc/_bl/admin/page-search.php:176 inc/_bl/admin/page-search.php:177
 
9036
  msgid "Cost of booking"
9037
  msgstr ""
9038
 
9039
- #: inc/_ps/admin/api-settings-p.php:257
9040
  msgid "Deactivate send email option at Add Booking page"
9041
  msgstr ""
9042
 
9043
- #: inc/_ps/admin/api-settings-p.php:258
9044
  msgid ""
9045
  "Check this box if you want to deactivate by default option \"Send email\" at Add Booking page."
9046
  msgstr ""
9047
 
9048
- #: inc/_ps/admin/api-settings-p.php:266
9049
  msgid "Deactivate send email option at Booking Listing page"
9050
  msgstr ""
9051
 
9052
- #: inc/_ps/admin/api-settings-p.php:267
9053
  msgid ""
9054
  "Check this box if you want to deactivate by default option \"Send email\" at Booking Listing "
9055
  "page."
9056
  msgstr ""
9057
 
9058
- #: inc/_ps/admin/api-settings-p.php:288
9059
  msgid "Force change booking resource for exist booking"
9060
  msgstr ""
9061
 
9062
- #: inc/_ps/admin/api-settings-p.php:289
9063
  msgid ""
9064
  "Check this box if you want to skip checking availability of new booking resource during changing "
9065
  "booking resource of exist booking at Booking Listing page."
9066
  msgstr ""
9067
 
9068
- #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:321
9069
  msgid "Signature Key"
9070
  msgstr ""
9071
 
9072
- #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:323
9073
  msgid "Please enter the Signature Key, which you generated in the settings of Merchant Interface."
9074
  msgstr ""
9075
 
9076
- #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:325
9077
  msgid "To generate new Signature Key"
9078
  msgstr ""
9079
 
9080
- #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:326
9081
  #, php-format
9082
  msgid "Log on to the %sMerchant Interface%s"
9083
  msgstr ""
9084
 
9085
- #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:327
9086
  msgid ""
9087
  "In the merchant interface, go to Account > Settings > Security Settings > General Security "
9088
  "Settings > API Credential & Keys"
9089
  msgstr ""
9090
 
9091
- #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:328
9092
  msgid "Answer the secret question."
9093
  msgstr ""
9094
 
9095
- #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:329
9096
  msgid "Select New Signature Key. Your signature key is displayed as a string."
9097
  msgstr ""
9098
 
9099
- #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:330
9100
  msgid "Click Copy to Clipboard."
9101
  msgstr ""
9102
 
9103
- #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:331
9104
  #, php-format
9105
  msgid "For more information, please check %shere%s"
9106
  msgstr ""
9107
 
9108
- #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:856
9109
  #, php-format
9110
  msgid ""
9111
  "If you have no account on this system, please sign up for a %sdeveloper test account%s to obtain "
9112
  "an API Login ID and Signature Key. These keys will authenticate requests to the payment gateway."
9113
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  msgstr ""
4
  "Project-Id-Version: booking\n"
5
  "Report-Msgid-Bugs-To: \n"
6
+ "POT-Creation-Date: 2019-08-13 08:03+0300\n"
7
  "PO-Revision-Date: \n"
8
  "Last-Translator: wpdevelop <info@wpdevelop.com>\n"
9
  "Language-Team: wpdevelop <info@wpbookingcalendar.com>\n"
35
  msgstr ""
36
 
37
  #: core/admin/api-settings.php:94 core/admin/wpbc-toolbar-tiny.php:460
38
+ #: core/lib/wpbc_all_translations.php:5 js/wpbc-gutenberg.js:743
39
  msgid "Number of months to scroll"
40
  msgstr ""
41
 
53
 
54
  #: core/admin/api-settings.php:109 core/admin/api-settings.php:192
55
  #: core/admin/wpbc-class-timeline.php:82 core/lib/wpbc_all_translations.php:9
56
+ #: core/timeline/v2/wpbc-class-timeline_v2.php:86 inc/_bm/admin/page-seasons.php:991
57
+ #: inc/_bs/admin/api-settings-s.php:108 inc/_bs/admin/api-settings-s.php:241
58
+ #: inc/_ps/form/class-wpbc-form-help.php:451 inc/_ps/form/class-wpbc-form-help.php:598
59
  msgid "Sunday"
60
  msgstr ""
61
 
62
  #: core/admin/api-settings.php:110 core/admin/api-settings.php:195
63
  #: core/admin/wpbc-class-timeline.php:76 core/lib/wpbc_all_translations.php:10
64
+ #: core/timeline/v2/wpbc-class-timeline_v2.php:80 inc/_bm/admin/page-seasons.php:992
65
+ #: inc/_bs/admin/api-settings-s.php:109 inc/_bs/admin/api-settings-s.php:242
66
+ #: inc/_ps/form/class-wpbc-form-help.php:452 inc/_ps/form/class-wpbc-form-help.php:599
67
  msgid "Monday"
68
  msgstr ""
69
 
70
  #: core/admin/api-settings.php:111 core/admin/api-settings.php:198
71
  #: core/admin/wpbc-class-timeline.php:77 core/lib/wpbc_all_translations.php:11
72
+ #: core/timeline/v2/wpbc-class-timeline_v2.php:81 inc/_bm/admin/page-seasons.php:993
73
+ #: inc/_bs/admin/api-settings-s.php:110 inc/_bs/admin/api-settings-s.php:243
74
+ #: inc/_ps/form/class-wpbc-form-help.php:453 inc/_ps/form/class-wpbc-form-help.php:600
75
  msgid "Tuesday"
76
  msgstr ""
77
 
78
  #: core/admin/api-settings.php:112 core/admin/api-settings.php:201
79
  #: core/admin/wpbc-class-timeline.php:78 core/lib/wpbc_all_translations.php:12
80
+ #: core/timeline/v2/wpbc-class-timeline_v2.php:82 inc/_bm/admin/page-seasons.php:994
81
+ #: inc/_bs/admin/api-settings-s.php:111 inc/_bs/admin/api-settings-s.php:244
82
+ #: inc/_ps/form/class-wpbc-form-help.php:454 inc/_ps/form/class-wpbc-form-help.php:601
83
  msgid "Wednesday"
84
  msgstr ""
85
 
86
  #: core/admin/api-settings.php:113 core/admin/api-settings.php:204
87
  #: core/admin/wpbc-class-timeline.php:79 core/lib/wpbc_all_translations.php:13
88
+ #: core/timeline/v2/wpbc-class-timeline_v2.php:83 inc/_bm/admin/page-seasons.php:995
89
+ #: inc/_bs/admin/api-settings-s.php:112 inc/_bs/admin/api-settings-s.php:245
90
+ #: inc/_ps/form/class-wpbc-form-help.php:455 inc/_ps/form/class-wpbc-form-help.php:602
91
  msgid "Thursday"
92
  msgstr ""
93
 
94
  #: core/admin/api-settings.php:114 core/admin/api-settings.php:207
95
  #: core/admin/wpbc-class-timeline.php:80 core/lib/wpbc_all_translations.php:14
96
+ #: core/timeline/v2/wpbc-class-timeline_v2.php:84 inc/_bm/admin/page-seasons.php:996
97
+ #: inc/_bs/admin/api-settings-s.php:113 inc/_bs/admin/api-settings-s.php:246
98
+ #: inc/_ps/form/class-wpbc-form-help.php:456 inc/_ps/form/class-wpbc-form-help.php:603
99
  msgid "Friday"
100
  msgstr ""
101
 
102
  #: core/admin/api-settings.php:115 core/admin/api-settings.php:210
103
  #: core/admin/wpbc-class-timeline.php:81 core/lib/wpbc_all_translations.php:15
104
+ #: core/timeline/v2/wpbc-class-timeline_v2.php:85 inc/_bm/admin/page-seasons.php:997
105
+ #: inc/_bs/admin/api-settings-s.php:114 inc/_bs/admin/api-settings-s.php:247
106
+ #: inc/_ps/form/class-wpbc-form-help.php:457 inc/_ps/form/class-wpbc-form-help.php:604
107
  msgid "Saturday"
108
  msgstr ""
109
 
131
  msgstr ""
132
 
133
  #: core/admin/api-settings.php:164 core/admin/api-settings.php:314 core/admin/api-settings.php:474
134
+ #: core/admin/api-settings.php:509 core/admin/api-settings.php:830
135
+ #: core/admin/page-form-free.php:189 core/admin/page-ics-export.php:467
136
+ #: core/admin/wpbc-class-timeline.php:2331 core/lib/wpbc_all_translations.php:21
137
+ #: core/timeline/v2/wpbc-class-timeline_v2.php:2765 inc/_bl/admin/api-settings-l.php:179
138
  #: inc/_bl/admin/api-settings-l.php:185 inc/_bl/admin/api-settings-l.php:216
139
+ #: inc/gateways/page-gateways.php:177 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1068
140
+ #: js/wpbc-gutenberg.js:964
141
  msgid "Note"
142
  msgstr ""
143
 
162
  msgid "Select number of unavailable days in calendar start from today."
163
  msgstr ""
164
 
165
+ #: core/admin/api-settings.php:275 core/lib/wpbc_all_translations.php:27 inc/_ps/lib_p.php:267
166
  msgid "Simple"
167
  msgstr ""
168
 
170
  #: core/admin/wpbc-toolbar-tiny.php:698 core/admin/wpbc-toolbar-tiny.php:1199
171
  #: core/admin/wpbc-toolbar-tiny.php:1615 core/lib/wpbc_all_translations.php:28
172
  #: inc/_bm/m-toolbar.php:29 inc/_bm/m-toolbar.php:113 inc/_bm/m-toolbar.php:392
173
+ #: inc/_ps/lib_p.php:267 js/wpbc-gutenberg.js:532
174
  msgid "Booking Form"
175
  msgstr ""
176
 
177
+ #: core/admin/api-settings.php:276 core/lib/wpbc_all_translations.php:29 inc/_ps/lib_p.php:263
178
  msgid ""
179
  "Check the box, if you want to use simple booking form customization from Free plugin version at "
180
  "Settings - Form page."
181
  msgstr ""
182
 
183
+ #: core/admin/api-settings.php:284 core/lib/wpbc_all_translations.php:30
184
  msgid "Syntax highlighter"
185
  msgstr ""
186
 
187
  #: core/admin/api-settings.php:285
188
+ msgid "Check the box, if you want to use syntax highlighter during customization booking form."
 
 
189
  msgstr ""
190
 
191
+ #: core/admin/api-settings.php:296 core/lib/wpbc_all_translations.php:32
192
  #: inc/_ps/form/class-wpbc-form-help.php:194
193
  msgid "CAPTCHA"
194
  msgstr ""
195
 
196
+ #: core/admin/api-settings.php:297 core/lib/wpbc_all_translations.php:33
197
  msgid "Check the box to activate CAPTCHA inside the booking form."
198
  msgstr ""
199
 
200
+ #: core/admin/api-settings.php:304 core/lib/wpbc_all_translations.php:34
201
  msgid "Auto-fill fields"
202
  msgstr ""
203
 
204
+ #: core/admin/api-settings.php:305 core/lib/wpbc_all_translations.php:35
205
  msgid "Check the box to activate auto-fill form fields for logged in users."
206
  msgstr ""
207
 
208
+ #: core/admin/api-settings.php:312 core/lib/wpbc_all_translations.php:36
209
  msgid "Use CSS BootStrap"
210
  msgstr ""
211
 
212
+ #: core/admin/api-settings.php:313 core/lib/wpbc_all_translations.php:37
213
  msgid "Using BootStrap CSS for the form fields"
214
  msgstr ""
215
 
216
+ #: core/admin/api-settings.php:314 core/lib/wpbc_all_translations.php:38
217
  msgid "You must not deactivate loading BootStrap files at advanced section of these settings!"
218
  msgstr ""
219
 
220
+ #: core/admin/api-settings.php:324 core/lib/wpbc_all_translations.php:39
221
  msgid "Show legend below calendar"
222
  msgstr ""
223
 
224
+ #: core/admin/api-settings.php:325 core/lib/wpbc_all_translations.php:40
225
  msgid "Check this box to display a legend of dates below the booking calendar."
226
  msgstr ""
227
 
228
+ #: core/admin/api-settings.php:337 core/lib/wpbc_all_translations.php:41
229
  msgid "Available item"
230
  msgstr ""
231
 
232
+ #: core/admin/api-settings.php:351 core/lib/wpbc_all_translations.php:42
233
+ #: core/wpbc-activation.php:1028
234
  msgid "Available"
235
  msgstr ""
236
 
237
+ #: core/admin/api-settings.php:360 core/lib/wpbc_all_translations.php:43
238
  #, php-format
239
  msgid "Activate and type your %stitle of available%s item in legend"
240
  msgstr ""
241
 
242
+ #: core/admin/api-settings.php:374 core/lib/wpbc_all_translations.php:44
243
  msgid "Pending item"
244
  msgstr ""
245
 
246
  #: core/admin/api-settings.php:388 core/admin/page-email-deny.php:558
247
  #: core/admin/wpbc-class-listing.php:329 core/admin/wpbc-class-listing.php:427
248
+ #: core/admin/wpbc-toolbars.php:549 core/admin/wpbc-toolbars.php:964
249
+ #: core/lib/wpbc_all_translations.php:45 core/timeline/v2/wpbc-class-timeline_v2.php:2677
250
+ #: core/wpbc-activation.php:1032 inc/_bs/lib_s.php:326 inc/_ps/personal.php:357
251
+ #: inc/_ps/wpbc-print.php:119
252
  msgid "Pending"
253
  msgstr ""
254
 
255
+ #: core/admin/api-settings.php:397 core/lib/wpbc_all_translations.php:46
256
  #, php-format
257
  msgid "Activate and type your %stitle of pending%s item in legend"
258
  msgstr ""
259
 
260
+ #: core/admin/api-settings.php:411 core/lib/wpbc_all_translations.php:47
261
  msgid "Approved item"
262
  msgstr ""
263
 
264
+ #: core/admin/api-settings.php:425 core/lib/wpbc_all_translations.php:48
265
+ #: core/wpbc-activation.php:1036
266
  msgid "Booked"
267
  msgstr ""
268
 
269
+ #: core/admin/api-settings.php:434 core/lib/wpbc_all_translations.php:49
270
  #, php-format
271
  msgid "Activate and type your %stitle of approved%s item in legend"
272
  msgstr ""
273
 
274
+ #: core/admin/api-settings.php:449 core/lib/wpbc_all_translations.php:50
275
  msgid "Partially booked item"
276
  msgstr ""
277
 
278
+ #: core/admin/api-settings.php:463 core/lib/wpbc_all_translations.php:51
279
+ #: core/wpbc-activation.php:1042
280
  msgid "Partially booked"
281
  msgstr ""
282
 
283
+ #: core/admin/api-settings.php:472 core/lib/wpbc_all_translations.php:52
284
  #, php-format
285
  msgid "Activate and type your %stitle of partially booked%s item in legend"
286
  msgstr ""
287
 
288
+ #: core/admin/api-settings.php:497 core/lib/wpbc_all_translations.php:53
289
  msgid "Show date number in legend"
290
  msgstr ""
291
 
292
+ #: core/admin/api-settings.php:498 core/lib/wpbc_all_translations.php:54
293
  msgid "Check this box to display today date number in legend cells. "
294
  msgstr ""
295
 
296
+ #: core/admin/api-settings.php:506 core/lib/wpbc_all_translations.php:55
297
  msgid "Show \"Thank You\" message"
298
  msgstr ""
299
 
300
+ #: core/admin/api-settings.php:507 core/lib/wpbc_all_translations.php:56
301
  msgid "Redirect visitor to a new \"Thank You\" page"
302
  msgstr ""
303
 
304
+ #: core/admin/api-settings.php:509 core/lib/wpbc_all_translations.php:57
305
  msgid "This action will have no effect, if the payment form(s) is active!"
306
  msgstr ""
307
 
308
+ #: core/admin/api-settings.php:514 core/lib/wpbc_all_translations.php:58
309
  msgid "Action after booking is done"
310
  msgstr ""
311
 
312
+ #: core/admin/api-settings.php:523 core/lib/wpbc_all_translations.php:59
313
+ #: core/wpbc-activation.php:869
314
  #, php-format
315
  msgid ""
316
  "Thank you for your online booking. %s We will send confirmation of your booking as soon as "
317
  "possible."
318
  msgstr ""
319
 
320
+ #: core/admin/api-settings.php:524 core/lib/wpbc_all_translations.php:60
321
  msgid "Message title"
322
  msgstr ""
323
 
324
+ #: core/admin/api-settings.php:525 core/lib/wpbc_all_translations.php:61
325
  #, php-format
326
  msgid "Type title of message %safter booking has done by user%s"
327
  msgstr ""
328
 
329
+ #: core/admin/api-settings.php:536 core/lib/wpbc_all_translations.php:62
330
  msgid "Time of message showing"
331
  msgstr ""
332
 
333
+ #: core/admin/api-settings.php:537 core/lib/wpbc_all_translations.php:63
334
  msgid "Set duration of time (milliseconds) to show this message"
335
  msgstr ""
336
 
337
+ #: core/admin/api-settings.php:564 core/lib/wpbc_all_translations.php:64
338
  msgid "URL of \"thank you\" page"
339
  msgstr ""
340
 
341
+ #: core/admin/api-settings.php:580 core/lib/wpbc_all_translations.php:65
342
  #, php-format
343
  msgid "Type URL of %s\"Thank You\" page%s"
344
  msgstr ""
345
 
346
+ #: core/admin/api-settings.php:592 core/lib/wpbc_all_translations.php:66 core/wpbc.php:137
347
  #: core/wpbc.php:138
348
  msgid "Bookings Listing"
349
  msgstr ""
350
 
351
+ #: core/admin/api-settings.php:593 core/admin/page-settings.php:231 core/admin/page-timeline.php:45
352
+ #: core/admin/page-timeline.php:46 core/admin/page-timeline.php:47 core/admin/wpbc-toolbars.php:482
353
+ #: core/lib/wpbc_all_translations.php:67 core/wpbc-functions.php:1872
354
  msgid "Calendar Overview"
355
  msgstr ""
356
 
357
+ #: core/admin/api-settings.php:598 core/lib/wpbc_all_translations.php:68
358
  msgid "Default booking admin page"
359
  msgstr ""
360
 
361
+ #: core/admin/api-settings.php:599 core/lib/wpbc_all_translations.php:69
362
  msgid "Select your default view mode of bookings at the booking listing page"
363
  msgstr ""
364
 
365
+ #: core/admin/api-settings.php:614
366
+ msgid "Timeline type"
367
+ msgstr ""
368
+
369
+ #: core/admin/api-settings.php:615
370
+ msgid "Select type of timeline to load"
371
+ msgstr ""
372
+
373
+ #: core/admin/api-settings.php:617
374
+ msgid "Flex Timeline"
375
+ msgstr ""
376
+
377
+ #: core/admin/api-settings.php:618
378
+ msgid "Old Timeline"
379
+ msgstr ""
380
+
381
+ #: core/admin/api-settings.php:626 core/admin/wpbc-toolbar-tiny.php:393
382
+ #: core/admin/wpbc-toolbars.php:1184 core/admin/wpbc-toolbars.php:1244
383
+ #: core/lib/wpbc_all_translations.php:70 inc/_bl/admin/page-coupons.php:526
384
  msgid "Day"
385
  msgstr ""
386
 
387
+ #: core/admin/api-settings.php:627 core/admin/wpbc-toolbar-tiny.php:394
388
+ #: core/admin/wpbc-toolbars.php:1201 core/admin/wpbc-toolbars.php:1258
389
+ #: core/lib/wpbc_all_translations.php:71
390
  msgid "Week"
391
  msgstr ""
392
 
393
+ #: core/admin/api-settings.php:628 core/admin/api-settings.php:635
394
+ #: core/admin/wpbc-toolbar-tiny.php:396 core/admin/wpbc-toolbars.php:1218
395
+ #: core/admin/wpbc-toolbars.php:1272 core/lib/wpbc_all_translations.php:72
396
  #: inc/_bl/admin/page-coupons.php:525
397
  msgid "Month"
398
  msgstr ""
399
 
400
+ #: core/admin/api-settings.php:629 core/admin/wpbc-toolbar-tiny.php:398
401
+ #: core/admin/wpbc-toolbars.php:1286 core/lib/wpbc_all_translations.php:73
402
  msgid "2 Months"
403
  msgstr ""
404
 
405
+ #: core/admin/api-settings.php:630 core/admin/api-settings.php:636
406
+ #: core/admin/wpbc-toolbar-tiny.php:400 core/lib/wpbc_all_translations.php:74
 
407
  msgid "3 Months"
408
  msgstr ""
409
 
410
+ #: core/admin/api-settings.php:631 core/admin/api-settings.php:637
411
+ #: core/admin/wpbc-toolbar-tiny.php:401 core/admin/wpbc-toolbars.php:579
412
+ #: core/admin/wpbc-toolbars.php:813 core/lib/wpbc_all_translations.php:75
413
+ #: inc/_bl/admin/page-coupons.php:524
414
  msgid "Year"
415
  msgstr ""
416
 
417
+ #: core/admin/api-settings.php:642 core/lib/wpbc_all_translations.php:76
418
  msgid "Default calendar view mode"
419
  msgstr ""
420
 
421
+ #: core/admin/api-settings.php:643 core/lib/wpbc_all_translations.php:77
422
  msgid "Select your default calendar view mode at booking calendar overview page"
423
  msgstr ""
424
 
425
+ #: core/admin/api-settings.php:653 core/lib/wpbc_all_translations.php:78
426
  msgid "Filter tab"
427
  msgstr ""
428
 
429
+ #: core/admin/api-settings.php:654 core/lib/wpbc_all_translations.php:79
430
  msgid "Actions tab"
431
  msgstr ""
432
 
433
+ #: core/admin/api-settings.php:659 core/lib/wpbc_all_translations.php:80
434
  msgid "Default toolbar tab"
435
  msgstr ""
436
 
437
+ #: core/admin/api-settings.php:660 core/lib/wpbc_all_translations.php:81
438
  msgid "Select your default opened tab in toolbar at booking listing page"
439
  msgstr ""
440
 
441
+ #: core/admin/api-settings.php:672 core/lib/wpbc_all_translations.php:82
442
  msgid "Bookings number per page"
443
  msgstr ""
444
 
445
+ #: core/admin/api-settings.php:673 core/lib/wpbc_all_translations.php:83
446
  msgid "Select number of bookings per page in booking listing"
447
  msgstr ""
448
 
449
+ #: core/admin/api-settings.php:680 core/admin/api-settings.php:681
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:84
452
  #: core/sync/wpbc-gcal-class.php:605 core/sync/wpbc-gcal-class.php:626
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
461
  msgid "ID"
462
  msgstr ""
463
 
464
+ #: core/admin/api-settings.php:680 core/admin/api-settings.php:682 core/admin/api-settings.php:686
465
+ #: core/admin/api-settings.php:690 core/lib/wpbc_all_translations.php:85
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:681 core/admin/api-settings.php:683 core/admin/api-settings.php:687
473
+ #: core/admin/api-settings.php:691 core/lib/wpbc_all_translations.php:86
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:682 core/admin/api-settings.php:683
481
+ #: core/admin/wpbc-class-timeline.php:69 core/admin/wpbc-toolbars.php:588
482
+ #: core/admin/wpbc-toolbars.php:650 core/admin/wpbc-toolbars.php:736
483
+ #: core/admin/wpbc-toolbars.php:739 core/admin/wpbc-toolbars.php:855
484
+ #: core/lib/wpbc_all_translations.php:87 core/sync/wpbc-gcal-class.php:608
485
+ #: core/sync/wpbc-gcal-class.php:643 core/timeline/v2/wpbc-class-timeline_v2.php:73
486
+ #: inc/_bs/lib_s.php:180 inc/_bs/lib_s.php:185 inc/_ps/lib_p.php:125 inc/_ps/lib_p.php:129
487
+ #: inc/_ps/wpbc-form-templates.php:89 inc/_ps/wpbc-form-templates.php:111 inc/_ps/wpbc-print.php:85
488
  msgid "Dates"
489
  msgstr ""
490
 
491
+ #: core/admin/api-settings.php:686 core/admin/api-settings.php:687
492
+ #: core/lib/wpbc_all_translations.php:88 inc/_bl/admin/page-search.php:887
493
  #: inc/_bm/admin/page-availability.php:876 inc/_bm/admin/page-cost-rate.php:106
494
  #: inc/_bm/admin/page-cost-valuation.php:134 inc/_bs/lib_s.php:181 inc/_bs/lib_s.php:186
495
  #: inc/_ps/lib_p.php:126 inc/_ps/lib_p.php:130
496
  msgid "Resource"
497
  msgstr ""
498
 
499
+ #: core/admin/api-settings.php:690 core/admin/api-settings.php:691
500
+ #: core/admin/wpbc-toolbar-tiny.php:1803 core/lib/wpbc_all_translations.php:89
501
  #: inc/_bs/admin/api-settings-s.php:924 inc/_bs/lib_s.php:139 inc/_bs/lib_s.php:182
502
  #: inc/_bs/lib_s.php:187 inc/_ps/wpbc-print.php:86
503
  msgid "Cost"
504
  msgstr ""
505
 
506
+ #: core/admin/api-settings.php:696 core/lib/wpbc_all_translations.php:90
507
  msgid "Bookings default order"
508
  msgstr ""
509
 
510
+ #: core/admin/api-settings.php:697 core/lib/wpbc_all_translations.php:91
511
  msgid "Select your default order of bookings in the booking listing"
512
  msgstr ""
513
 
514
+ #: core/admin/api-settings.php:714 core/lib/wpbc_all_translations.php:92
515
  msgid "Date Format"
516
  msgstr ""
517
 
518
+ #: core/admin/api-settings.php:719 core/lib/wpbc_all_translations.php:93
519
  msgid "F j, Y"
520
  msgstr ""
521
 
522
+ #: core/admin/api-settings.php:722 core/admin/wpbc-toolbars.php:1484
523
+ #: core/lib/wpbc_all_translations.php:94 inc/_bm/admin/api-settings-m.php:197
524
  #: inc/_bs/admin/api-settings-s.php:426 inc/_bs/lib_s.php:54
525
  msgid "Custom"
526
  msgstr ""
527
 
528
+ #: core/admin/api-settings.php:748 core/lib/wpbc_all_translations.php:95
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:761 core/lib/wpbc_all_translations.php:96
535
  msgid "Short days view"
536
  msgstr ""
537
 
538
+ #: core/admin/api-settings.php:762 core/lib/wpbc_all_translations.php:97
539
  msgid "Wide days view"
540
  msgstr ""
541
 
542
+ #: core/admin/api-settings.php:767 core/lib/wpbc_all_translations.php:98
543
  msgid "Dates view"
544
  msgstr ""
545
 
546
+ #: core/admin/api-settings.php:768 core/lib/wpbc_all_translations.php:99
547
  msgid "Select the default view for dates on the booking tables"
548
  msgstr ""
549
 
550
+ #: core/admin/api-settings.php:784 core/lib/wpbc_all_translations.php:100
551
  msgid "Show / hide hints"
552
  msgstr ""
553
 
554
+ #: core/admin/api-settings.php:785 core/lib/wpbc_all_translations.php:101
555
  msgid "Check this box if you want to show help hints on the admin panel."
556
  msgstr ""
557
 
558
+ #: core/admin/api-settings.php:805 core/lib/wpbc_all_translations.php:102
559
  msgid "Allow unlimited bookings per same day(s)"
560
  msgstr ""
561
 
562
+ #: core/admin/api-settings.php:806 core/lib/wpbc_all_translations.php:103
563
  #, php-format
564
  msgid ""
565
  "Check this box, if you want to %sset any days as available%s in calendar. Your visitors will be "
567
  "date(s)%s of other visitors."
568
  msgstr ""
569
 
570
+ #: core/admin/api-settings.php:816 core/lib/wpbc_all_translations.php:104
571
  #: inc/_bl/admin/api-settings-l.php:101
572
  msgid "Use pending days as available"
573
  msgstr ""
574
 
575
+ #: core/admin/api-settings.php:817 core/lib/wpbc_all_translations.php:105
576
  #: inc/_bl/admin/api-settings-l.php:102
577
  msgid "Check this box if you want to show the pending days as available in calendars"
578
  msgstr ""
579
 
580
+ #: core/admin/api-settings.php:828 core/lib/wpbc_all_translations.php:106
581
  msgid "Checking to prevent double booking, during submitting booking"
582
  msgstr ""
583
 
584
+ #: core/admin/api-settings.php:829 core/lib/wpbc_all_translations.php:107
585
  #, php-format
586
  msgid ""
587
  "Check this box, if you want to %sre-check if the selected dates available during submitting "
588
  "booking%s."
589
  msgstr ""
590
 
591
+ #: core/admin/api-settings.php:831 core/lib/wpbc_all_translations.php:108
592
  msgid ""
593
  "This feature useful to prevent double booking of the same date(s) or time(s), if several "
594
  "visitors try to book the same date(s) in same calendar during the same time."
595
  msgstr ""
596
 
597
+ #: core/admin/api-settings.php:832 core/lib/wpbc_all_translations.php:109
598
  msgid "This feature does not work for booking resources with capacity higher than one."
599
  msgstr ""
600
 
601
+ #: core/admin/api-settings.php:849 core/lib/wpbc_all_translations.php:110
602
  msgid "Show advanced settings of JavaScript loading"
603
  msgstr ""
604
 
605
+ #: core/admin/api-settings.php:850 core/lib/wpbc_all_translations.php:111
606
  msgid "Hide advanced settings of JavaScript loading"
607
  msgstr ""
608
 
609
+ #: core/admin/api-settings.php:858 core/lib/wpbc_all_translations.php:112
610
  msgid "Disable Bootstrap loading on Front-End"
611
  msgstr ""
612
 
613
+ #: core/admin/api-settings.php:859 core/admin/api-settings.php:868
614
+ #: core/lib/wpbc_all_translations.php:113
615
  msgid ""
616
  " If your theme or some other plugin is load the BootStrap JavaScripts, you can disable loading "
617
  "of this script by this plugin."
618
  msgstr ""
619
 
620
+ #: core/admin/api-settings.php:867 core/lib/wpbc_all_translations.php:114
621
  msgid "Disable Bootstrap loading on Back-End"
622
  msgstr ""
623
 
624
+ #: core/admin/api-settings.php:877 core/lib/wpbc_all_translations.php:115
625
  msgid "Load JS and CSS files only on specific pages"
626
  msgstr ""
627
 
628
+ #: core/admin/api-settings.php:878 core/lib/wpbc_all_translations.php:116
629
  msgid "Activate loading of CSS and JavaScript files of plugin only at specific pages."
630
  msgstr ""
631
 
632
+ #: core/admin/api-settings.php:888 core/lib/wpbc_all_translations.php:117
633
  msgid "Relative URLs of pages, where to load plugin CSS and JS files"
634
  msgstr ""
635
 
636
+ #: core/admin/api-settings.php:889 core/lib/wpbc_all_translations.php:118
637
  #, php-format
638
  msgid ""
639
  "Enter relative URLs of pages, where you have Booking Calendar elements (booking forms or "
640
  "availability calendars). Please enter one URL per line. Example: %s"
641
  msgstr ""
642
 
643
+ #: core/admin/api-settings.php:903 core/lib/wpbc_all_translations.php:119
644
  msgid "Show system debugging log for beta features"
645
  msgstr ""
646
 
647
+ #: core/admin/api-settings.php:904 core/lib/wpbc_all_translations.php:120
648
  msgid "Activate this option only for testing beta features"
649
  msgstr ""
650
 
651
+ #: core/admin/api-settings.php:920 core/lib/wpbc_all_translations.php:121
652
  msgid "Show settings of powered by notice"
653
  msgstr ""
654
 
655
+ #: core/admin/api-settings.php:921 core/lib/wpbc_all_translations.php:122
656
  msgid "Hide settings of powered by notice"
657
  msgstr ""
658
 
659
+ #: core/admin/api-settings.php:928 core/lib/wpbc_all_translations.php:123
660
  msgid "Powered by notice"
661
  msgstr ""
662
 
663
+ #: core/admin/api-settings.php:929 core/lib/wpbc_all_translations.php:124
664
  msgid " Turn On/Off powered by \"Booking Calendar\" notice under the calendar."
665
  msgstr ""
666
 
667
+ #: core/admin/api-settings.php:937 core/lib/wpbc_all_translations.php:125
668
  msgid "Help and info notices"
669
  msgstr ""
670
 
671
+ #: core/admin/api-settings.php:938 core/lib/wpbc_all_translations.php:126
672
  msgid " Turn On/Off version notice and help info links at booking admin panel."
673
  msgstr ""
674
 
675
+ #: core/admin/api-settings.php:966 core/lib/wpbc_all_translations.php:127
676
  msgid "Plugin menu position"
677
  msgstr ""
678
 
679
+ #: core/admin/api-settings.php:969 core/lib/wpbc_all_translations.php:128
680
  msgid "Top"
681
  msgstr ""
682
 
683
+ #: core/admin/api-settings.php:970 core/lib/wpbc_all_translations.php:129
684
  msgid "Middle"
685
  msgstr ""
686
 
687
+ #: core/admin/api-settings.php:971 core/lib/wpbc_all_translations.php:130
688
  msgid "Bottom"
689
  msgstr ""
690
 
691
+ #: core/admin/api-settings.php:982 core/lib/wpbc_all_translations.php:131
692
  msgid "User permissions for plugin menu pages"
693
  msgstr ""
694
 
695
+ #: core/admin/api-settings.php:997 core/admin/wpbc-class-timeline.php:70
696
+ #: core/admin/wpbc-toolbars.php:556 core/admin/wpbc-toolbars.php:771
697
+ #: core/lib/wpbc_all_translations.php:132 core/timeline/v2/wpbc-class-timeline_v2.php:74
698
+ #: core/wpbc.php:136
699
  msgid "Bookings"
700
  msgstr ""
701
 
702
+ #: core/admin/api-settings.php:1006 core/admin/page-new.php:33 core/admin/page-new.php:34
703
+ #: core/admin/page-new.php:35 core/admin/wpbc-toolbars.php:1847
704
+ #: core/lib/wpbc_all_translations.php:133 core/wpbc-functions.php:1902 core/wpbc.php:165
705
  #: core/wpbc.php:166 core/wpbc.php:167
706
  msgid "Add booking"
707
  msgstr ""
708
 
709
+ #: core/admin/api-settings.php:1016 core/admin/page-import-gcal.php:491
710
+ #: core/admin/wpbc-class-timeline.php:68 core/lib/wpbc_all_translations.php:134
711
+ #: core/timeline/v2/wpbc-class-timeline_v2.php:72 core/wpbc-functions.php:1912 core/wpbc.php:176
712
+ #: core/wpbc.php:178 inc/_bl/admin/page-coupons.php:540 inc/_bl/admin/page-coupons.php:1355
713
  #: inc/_bm/admin/page-availability.php:875 inc/_bm/admin/page-cost-rate.php:105
714
  #: inc/_bm/admin/page-cost-valuation.php:133 inc/_mu/admin/page-users.php:446
715
  #: inc/_ps/admin/br-table-export-feeds.php:172 inc/_ps/admin/br-table-import-gcal-p.php:144
717
  msgid "Resources"
718
  msgstr ""
719
 
720
+ #: core/admin/api-settings.php:1025 core/lib/wpbc_all_translations.php:135
721
  #: core/wpbc-functions.php:1967 core/wpbc.php:187 core/wpbc.php:189 core/wpbc.php:396
722
  #: inc/_bl/admin/page-coupons.php:47 inc/_bm/admin/page-seasons.php:47
723
  msgid "Settings"
724
  msgstr ""
725
 
726
+ #: core/admin/api-settings.php:1026 core/lib/wpbc_all_translations.php:136
727
  msgid "Select user access level for the menu pages of plugin"
728
  msgstr ""
729
 
730
+ #: core/admin/api-settings.php:1037 core/lib/wpbc_all_translations.php:137 core/wpbc.php:204
731
  msgid "Premium"
732
  msgstr ""
733
 
734
+ #: core/admin/api-settings.php:1038 core/lib/wpbc_all_translations.php:138
735
  msgid "Show / hide menu"
736
  msgstr ""
737
 
738
+ #: core/admin/api-settings.php:1041 core/admin/wpbc-toolbar-tiny.php:591
739
+ #: core/admin/wpbc-toolbar-tiny.php:1810 core/admin/wpbc-toolbars.php:790
740
+ #: core/lib/wpbc_all_translations.php:139 core/lib/wpdev-booking-widget.php:104
741
  #: js/wpbc-gutenberg.js:1264
742
  msgid "Show"
743
  msgstr ""
744
 
745
+ #: core/admin/api-settings.php:1042 core/class/wpbc-class-notices.php:104
746
+ #: core/lib/wpbc_all_translations.php:140 core/sync/wpbc-gcal-class.php:669
747
  #: core/wpbc-functions.php:2371
748
  msgid "Hide"
749
  msgstr ""
750
 
751
+ #: core/admin/api-settings.php:1059 core/lib/wpbc_all_translations.php:141
752
  msgid "Delete booking data, when plugin deactivated"
753
  msgstr ""
754
 
755
+ #: core/admin/api-settings.php:1060 core/lib/wpbc_all_translations.php:142
756
  msgid "Check this box to delete all booking data when you uninstal this plugin."
757
  msgstr ""
758
 
759
+ #: core/admin/api-settings.php:1086 core/admin/page-form-free.php:986
760
+ #: core/lib/wpbc_all_translations.php:143 core/sync/wpbc-gcal-class.php:439
761
  #: core/sync/wpbc-gcal-class.php:607 core/sync/wpbc-gcal-class.php:633
762
  #: inc/_bl/admin/api-settings-l.php:368 inc/_bm/admin/page-availability.php:990
763
  #: inc/_bm/admin/page-cost-rate.php:176 inc/_bm/admin/page-seasons.php:519
765
  msgid "Info"
766
  msgstr ""
767
 
768
+ #: core/admin/api-settings.php:1121 core/admin/page-settings.php:296
769
+ #: core/lib/wpbc_all_translations.php:144
770
  msgid "Restore all dismissed windows"
771
  msgstr ""
772
 
773
+ #: core/admin/api-settings.php:1245 core/admin/api-settings.php:1276
774
+ #: core/admin/api-settings.php:1308 core/admin/api-settings.php:1321
775
+ #: core/admin/api-settings.php:1354 core/lib/wpbc_all_translations.php:145
776
+ #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:559
777
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:412 inc/gateways/page-gateways.php:896
778
  #: inc/gateways/paypal/wpbc-gw-paypal.php:640 inc/gateways/sage/wpbc-gw-sage.php:591
779
+ #: inc/gateways/stripe/wpbc-gw-stripe.php:721 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:849
780
  msgid "Warning"
781
  msgstr ""
782
 
783
+ #: core/admin/api-settings.php:1246 core/lib/wpbc_all_translations.php:146
784
  msgid ""
785
  "You allow unlimited number of bookings per same dates, its can be a reason of double bookings on "
786
  "the same date. Do you really want to do this?"
787
  msgstr ""
788
 
789
+ #: core/admin/api-settings.php:1277 core/lib/wpbc_all_translations.php:147
790
  msgid "This feature can impact to speed of submitting booking. Do you really want to do this?"
791
  msgstr ""
792
 
793
+ #: core/admin/api-settings.php:1309 core/admin/api-settings.php:1322
794
+ #: core/lib/wpbc_all_translations.php:148
795
  msgid ""
796
  "You are need to be sure what you are doing. You are disable of loading some JavaScripts Do you "
797
  "really want to do this?"
798
  msgstr ""
799
 
800
+ #: core/admin/api-settings.php:1355 core/lib/wpbc_all_translations.php:149
801
  msgid ""
802
  "If you check this option, all booking data will be deleted when you uninstall this plugin. Do "
803
  "you really want to do this?"
804
  msgstr ""
805
 
806
  #: core/admin/page-bookings.php:45 core/admin/page-bookings.php:46 core/admin/page-bookings.php:47
807
+ #: core/admin/wpbc-toolbars.php:467 core/lib/wpbc_all_translations.php:150
808
+ #: core/timeline/v2/wpbc-class-timeline_v2.php:2579 core/wpbc-functions.php:1880
809
  msgid "Booking Listing"
810
  msgstr ""
811
 
812
  #: core/admin/page-email-approved.php:177 core/admin/page-email-deleted.php:178
813
  #: core/admin/page-email-deny.php:178 core/admin/page-email-new-admin.php:176
814
  #: core/admin/page-email-new-visitor.php:176 core/admin/page-email-trash.php:178
815
+ #: core/lib/wpbc_all_translations.php:151 inc/_bm/admin/page-cost-deposit.php:134
816
  #: inc/_bm/admin/page-cost-early-late-booking.php:138
817
  #: inc/_bm/admin/page-cost-early-late-booking.php:339 inc/_bs/admin/page-email-payment.php:179
818
+ #: inc/_ps/admin/page-email-edit.php:178 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:292
819
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:218
820
  #: inc/gateways/ideal/wpbc-gw-ideal.php:377 inc/gateways/ipay88/wpbc-gw-ipay88.php:254
821
  #: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:146 inc/gateways/paypal/wpbc-gw-paypal.php:343
822
  #: inc/gateways/paypal/wpbc-gw-paypal.php:681 inc/gateways/paypal/wpbc-gw-paypal.php:704
823
  #: inc/gateways/paypal/wpbc-gw-paypal.php:727 inc/gateways/sage/wpbc-gw-sage.php:384
824
+ #: inc/gateways/stripe/wpbc-gw-stripe.php:349 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:477
825
  msgid "Enable / Disable"
826
  msgstr ""
827
 
828
  #: core/admin/page-email-approved.php:178 core/admin/page-email-deleted.php:179
829
  #: core/admin/page-email-deny.php:179 core/admin/page-email-new-admin.php:177
830
  #: core/admin/page-email-new-visitor.php:177 core/admin/page-email-trash.php:179
831
+ #: core/lib/wpbc_all_translations.php:152 inc/_bs/admin/page-email-payment.php:180
832
  #: inc/_ps/admin/page-email-edit.php:179
833
  msgid "Enable this email notification"
834
  msgstr ""
837
  #: core/admin/page-email-deleted.php:190 core/admin/page-email-deleted.php:205
838
  #: core/admin/page-email-deny.php:190 core/admin/page-email-deny.php:207
839
  #: core/admin/page-email-trash.php:190 core/admin/page-email-trash.php:205
840
+ #: core/lib/wpbc_all_translations.php:153 inc/_bs/admin/page-email-payment.php:191
841
  #: inc/_bs/admin/page-email-payment.php:206 inc/_ps/admin/page-email-edit.php:190
842
  #: inc/_ps/admin/page-email-edit.php:205
843
  msgid "Copy(ies)"
845
 
846
  #: core/admin/page-email-approved.php:190 core/admin/page-email-deleted.php:191
847
  #: core/admin/page-email-deny.php:191 core/admin/page-email-trash.php:191
848
+ #: core/lib/wpbc_all_translations.php:154 inc/_bs/admin/page-email-payment.php:192
849
  #: inc/_ps/admin/page-email-edit.php:191
850
  msgid "Enable / disable sending email(s) to additional addresses"
851
  msgstr ""
852
 
853
  #: core/admin/page-email-approved.php:205 core/admin/page-email-deleted.php:205
854
  #: core/admin/page-email-deny.php:207 core/admin/page-email-new-admin.php:192
855
+ #: core/admin/page-email-trash.php:205 core/lib/wpbc_all_translations.php:155
856
  #: inc/_bm/admin/page-cost-valuation.php:275 inc/_bm/admin/page-cost-valuation.php:278
857
  #: inc/_bs/admin/page-email-payment.php:206 inc/_ps/admin/page-email-edit.php:205
858
  msgid "To"
863
  #: core/admin/page-email-deny.php:217 core/admin/page-email-deny.php:272
864
  #: core/admin/page-email-new-admin.php:202 core/admin/page-email-new-admin.php:254
865
  #: core/admin/page-email-new-visitor.php:254 core/admin/page-email-trash.php:215
866
+ #: core/admin/page-email-trash.php:277 core/lib/wpbc_all_translations.php:156
867
  #: inc/_bs/admin/page-email-payment.php:216 inc/_bs/admin/page-email-payment.php:273
868
  #: inc/_ps/admin/page-email-edit.php:215 inc/_ps/admin/page-email-edit.php:272
869
  #: inc/gateways/paypal/wpbc-gw-paypal.php:691 inc/gateways/paypal/wpbc-gw-paypal.php:714
879
  #: core/admin/page-email-new-admin.php:254 core/admin/page-email-new-admin.php:295
880
  #: core/admin/page-email-new-visitor.php:254 core/admin/page-email-new-visitor.php:295
881
  #: core/admin/page-email-trash.php:215 core/admin/page-email-trash.php:277
882
+ #: core/admin/page-email-trash.php:319 core/admin/page-form-free.php:1147
883
+ #: core/admin/page-form-free.php:2071 core/lib/wpbc_all_translations.php:157
884
  #: inc/_bs/admin/page-email-payment.php:216 inc/_bs/admin/page-email-payment.php:273
885
  #: inc/_bs/admin/page-email-payment.php:317 inc/_ps/admin/page-email-edit.php:215
886
  #: inc/_ps/admin/page-email-edit.php:272 inc/_ps/admin/page-email-edit.php:313
887
+ #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:304
888
+ #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:338 inc/gateways/ideal/wpbc-gw-ideal.php:389
889
  #: inc/gateways/ideal/wpbc-gw-ideal.php:404 inc/gateways/ipay88/wpbc-gw-ipay88.php:266
890
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:281 inc/gateways/paypal/wpbc-gw-paypal.php:376
891
  #: inc/gateways/paypal/wpbc-gw-paypal.php:392 inc/gateways/sage/wpbc-gw-sage.php:396
892
  #: inc/gateways/sage/wpbc-gw-sage.php:411 inc/gateways/stripe/wpbc-gw-stripe.php:377
893
  #: inc/gateways/stripe/wpbc-gw-stripe.php:392 inc/gateways/stripe/wpbc-gw-stripe.php:409
894
+ #: inc/gateways/stripe/wpbc-gw-stripe.php:424 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:505
895
+ #: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:520
896
+ #: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:537
897
+ #: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:552
898
  msgid "Required"
899
  msgstr ""
900
 
901
  #: core/admin/page-email-approved.php:216 core/admin/page-email-deleted.php:216
902
  #: core/admin/page-email-deny.php:218 core/admin/page-email-trash.php:216
903
+ #: core/lib/wpbc_all_translations.php:158 inc/_bs/admin/page-email-payment.php:217
904
  #: inc/_ps/admin/page-email-edit.php:216
905
  msgid "You can put multiple emails separated by"
906
  msgstr ""
912
  #: core/admin/page-email-new-visitor.php:272 core/admin/page-email-trash.php:234
913
  #: core/admin/page-email-trash.php:295 core/admin/page-form-timeslots.php:767
914
  #: core/admin/wpbc-toolbar-tiny.php:430 core/admin/wpbc-toolbar-tiny.php:1801
915
+ #: core/lib/wpbc_all_translations.php:159 core/lib/wpdev-booking-widget.php:96
916
  #: core/sync/wpbc-gcal-class.php:606 core/sync/wpbc-gcal-class.php:629
917
  #: inc/_bm/admin/page-availability.php:985 inc/_bm/admin/page-seasons.php:514
918
  #: inc/_bs/admin/page-email-payment.php:235 inc/_bs/admin/page-email-payment.php:291
927
  #: core/admin/page-email-new-admin.php:220 core/admin/page-email-new-admin.php:272
928
  #: core/admin/page-email-new-visitor.php:272 core/admin/page-email-trash.php:234
929
  #: core/admin/page-email-trash.php:295 core/admin/page-form-timeslots.php:132
930
+ #: core/admin/wpbc-toolbar-tiny.php:430 core/lib/wpbc_all_translations.php:160
931
  #: inc/_bs/admin/page-email-payment.php:235 inc/_bs/admin/page-email-payment.php:291
932
  #: inc/_ps/admin/page-email-edit.php:234 inc/_ps/admin/page-email-edit.php:290
933
  #: inc/_ps/form/class-wpbc-field-help-button.php:73
947
  #: core/admin/page-email-deny.php:262 core/admin/page-email-new-admin.php:244
948
  #: core/admin/page-email-new-visitor.php:244 core/admin/page-email-trash.php:262
949
  #: core/admin/page-import-gcal.php:159 core/admin/wpbc-toolbar-tiny.php:594
950
+ #: core/lib/wpbc_all_translations.php:161 core/sync/wpbc-gcal.php:171
951
  #: inc/_bm/admin/page-cost-valuation.php:275 inc/_bm/admin/page-cost-valuation.php:278
952
  #: inc/_bm/admin/page-cost-valuation.php:449 inc/_bm/admin/page-seasons.php:1564
953
  #: inc/_bs/admin/page-email-payment.php:263 inc/_ps/admin/page-email-edit.php:262
954
  msgid "From"
955
  msgstr ""
956
 
957
+ #: core/admin/page-email-approved.php:272 core/lib/wpbc_all_translations.php:162
958
  msgid "Email Address will be used in the FROM field of response to Visitor."
959
  msgstr ""
960
 
961
+ #: core/admin/page-email-approved.php:310 core/lib/wpbc_all_translations.php:163
962
+ #: core/wpbc-activation.php:996
963
  msgid "Your booking has been approved"
964
  msgstr ""
965
 
966
  #: core/admin/page-email-approved.php:312 core/admin/page-email-deleted.php:313
967
  #: core/admin/page-email-deny.php:313 core/admin/page-email-new-admin.php:294
968
  #: core/admin/page-email-new-visitor.php:294 core/admin/page-email-trash.php:318
969
+ #: core/lib/wpbc_all_translations.php:164 inc/_bs/admin/page-email-payment.php:316
970
  #: inc/_ps/admin/page-email-edit.php:312
971
  msgid "Subject"
972
  msgstr ""
974
  #: core/admin/page-email-approved.php:313 core/admin/page-email-deleted.php:314
975
  #: core/admin/page-email-deny.php:314 core/admin/page-email-new-admin.php:295
976
  #: core/admin/page-email-new-visitor.php:295 core/admin/page-email-trash.php:319
977
+ #: core/lib/wpbc_all_translations.php:165 inc/_bs/admin/page-email-payment.php:317
978
  #: inc/_ps/admin/page-email-edit.php:313
979
  #, php-format
980
  msgid "Type your email %ssubject%s for the booking confimation message."
981
  msgstr ""
982
 
983
+ #: core/admin/page-email-approved.php:325 core/lib/wpbc_all_translations.php:166
984
+ #: core/wpbc-activation.php:998
985
  #, php-format
986
  msgid ""
987
  "Your reservation %s for: %s has been approved.%sYou can edit the booking on this page: %s Thank "
988
  "you, %s"
989
  msgstr ""
990
 
991
+ #: core/admin/page-email-approved.php:327 core/lib/wpbc_all_translations.php:167
992
+ #: core/wpbc-activation.php:1000
993
  #, php-format
994
  msgid "Your booking %s for: %s has been approved.%sThank you, %s"
995
  msgstr ""
997
  #: core/admin/page-email-approved.php:334 core/admin/page-email-deleted.php:331
998
  #: core/admin/page-email-deny.php:331 core/admin/page-email-new-admin.php:310
999
  #: core/admin/page-email-new-visitor.php:316 core/admin/page-email-trash.php:336
1000
+ #: core/lib/wpbc_all_translations.php:168 inc/_bs/admin/page-email-payment.php:334
1001
  #: inc/_ps/admin/page-email-edit.php:330
1002
  msgid "Content"
1003
  msgstr ""
1005
  #: core/admin/page-email-approved.php:335 core/admin/page-email-deleted.php:332
1006
  #: core/admin/page-email-deny.php:332 core/admin/page-email-new-admin.php:311
1007
  #: core/admin/page-email-new-visitor.php:317 core/admin/page-email-trash.php:337
1008
+ #: core/lib/wpbc_all_translations.php:169 inc/_bs/admin/page-email-payment.php:335
1009
  #: inc/_ps/admin/page-email-edit.php:331
1010
  msgid "Type your email message content. "
1011
  msgstr ""
1013
  #: core/admin/page-email-approved.php:356 core/admin/page-email-deleted.php:353
1014
  #: core/admin/page-email-deny.php:353 core/admin/page-email-new-admin.php:332
1015
  #: core/admin/page-email-new-visitor.php:338 core/admin/page-email-trash.php:358
1016
+ #: core/lib/wpbc_all_translations.php:170 inc/_bs/admin/page-email-payment.php:356
1017
  #: inc/_ps/admin/page-email-edit.php:352
1018
  msgid "Email Heading"
1019
  msgstr ""
1021
  #: core/admin/page-email-approved.php:357 core/admin/page-email-deleted.php:354
1022
  #: core/admin/page-email-deny.php:354 core/admin/page-email-new-admin.php:333
1023
  #: core/admin/page-email-new-visitor.php:339 core/admin/page-email-trash.php:359
1024
+ #: core/lib/wpbc_all_translations.php:171 inc/_bs/admin/page-email-payment.php:357
1025
  #: inc/_ps/admin/page-email-edit.php:353
1026
  msgid "Enter main heading contained within the email notification."
1027
  msgstr ""
1029
  #: core/admin/page-email-approved.php:366 core/admin/page-email-deleted.php:363
1030
  #: core/admin/page-email-deny.php:363 core/admin/page-email-new-admin.php:342
1031
  #: core/admin/page-email-new-visitor.php:348 core/admin/page-email-trash.php:368
1032
+ #: core/lib/wpbc_all_translations.php:172 inc/_bs/admin/page-email-payment.php:366
1033
  #: inc/_ps/admin/page-email-edit.php:362
1034
  msgid "Email Footer Text"
1035
  msgstr ""
1037
  #: core/admin/page-email-approved.php:367 core/admin/page-email-deleted.php:364
1038
  #: core/admin/page-email-deny.php:364 core/admin/page-email-new-admin.php:343
1039
  #: core/admin/page-email-new-visitor.php:349 core/admin/page-email-trash.php:369
1040
+ #: core/lib/wpbc_all_translations.php:173 inc/_bs/admin/page-email-payment.php:367
1041
  #: inc/_ps/admin/page-email-edit.php:363
1042
  msgid "Enter text contained within footer of the email notification"
1043
  msgstr ""
1045
  #: core/admin/page-email-approved.php:377 core/admin/page-email-deleted.php:374
1046
  #: core/admin/page-email-deny.php:374 core/admin/page-email-new-admin.php:353
1047
  #: core/admin/page-email-new-visitor.php:359 core/admin/page-email-trash.php:379
1048
+ #: core/lib/wpbc_all_translations.php:174 inc/_bs/admin/page-email-payment.php:377
1049
  #: inc/_ps/admin/page-email-edit.php:373
1050
  msgid "Email template"
1051
  msgstr ""
1053
  #: core/admin/page-email-approved.php:378 core/admin/page-email-deleted.php:375
1054
  #: core/admin/page-email-deny.php:375 core/admin/page-email-new-admin.php:354
1055
  #: core/admin/page-email-new-visitor.php:360 core/admin/page-email-trash.php:380
1056
+ #: core/lib/wpbc_all_translations.php:175 inc/_bs/admin/page-email-payment.php:378
1057
  #: inc/_ps/admin/page-email-edit.php:374
1058
  msgid "Choose email template."
1059
  msgstr ""
1061
  #: core/admin/page-email-approved.php:382 core/admin/page-email-deleted.php:379
1062
  #: core/admin/page-email-deny.php:379 core/admin/page-email-new-admin.php:358
1063
  #: core/admin/page-email-new-visitor.php:364 core/admin/page-email-trash.php:384
1064
+ #: core/lib/wpbc_all_translations.php:176 inc/_bs/admin/page-email-payment.php:382
1065
  #: inc/_ps/admin/page-email-edit.php:378
1066
  msgid "Plain (without styles)"
1067
  msgstr ""
1069
  #: core/admin/page-email-approved.php:383 core/admin/page-email-deleted.php:380
1070
  #: core/admin/page-email-deny.php:380 core/admin/page-email-new-admin.php:359
1071
  #: core/admin/page-email-new-visitor.php:365 core/admin/page-email-trash.php:385
1072
+ #: core/lib/wpbc_all_translations.php:177 inc/_bs/admin/page-email-payment.php:383
1073
  #: inc/_ps/admin/page-email-edit.php:379
1074
  msgid "Standard 1 column"
1075
  msgstr ""
1077
  #: core/admin/page-email-approved.php:390 core/admin/page-email-deleted.php:387
1078
  #: core/admin/page-email-deny.php:387 core/admin/page-email-new-admin.php:366
1079
  #: core/admin/page-email-new-visitor.php:372 core/admin/page-email-trash.php:392
1080
+ #: core/lib/wpbc_all_translations.php:178 inc/_bs/admin/page-email-payment.php:390
1081
  #: inc/_ps/admin/page-email-edit.php:386
1082
  #, php-format
1083
  msgid "You can override this email template in this folder %s"
1086
  #: core/admin/page-email-approved.php:400 core/admin/page-email-deleted.php:397
1087
  #: core/admin/page-email-deny.php:397 core/admin/page-email-new-admin.php:376
1088
  #: core/admin/page-email-new-visitor.php:382 core/admin/page-email-trash.php:402
1089
+ #: core/lib/wpbc_all_translations.php:179 inc/_bs/admin/page-email-payment.php:400
1090
  #: inc/_ps/admin/page-email-edit.php:396
1091
  msgid "Base Color"
1092
  msgstr ""
1094
  #: core/admin/page-email-approved.php:401 core/admin/page-email-deleted.php:398
1095
  #: core/admin/page-email-deny.php:398 core/admin/page-email-new-admin.php:377
1096
  #: core/admin/page-email-new-visitor.php:383 core/admin/page-email-trash.php:403
1097
+ #: core/lib/wpbc_all_translations.php:180 inc/_bs/admin/page-email-payment.php:401
1098
  #: inc/_ps/admin/page-email-edit.php:397
1099
  msgid "The base color for email templates."
1100
  msgstr ""
1111
  #: core/admin/page-email-new-visitor.php:402 core/admin/page-email-new-visitor.php:411
1112
  #: core/admin/page-email-trash.php:404 core/admin/page-email-trash.php:413
1113
  #: core/admin/page-email-trash.php:422 core/admin/page-email-trash.php:431
1114
+ #: core/lib/wpbc_all_translations.php:181 inc/_bs/admin/page-email-payment.php:402
1115
  #: inc/_bs/admin/page-email-payment.php:411 inc/_bs/admin/page-email-payment.php:420
1116
  #: inc/_bs/admin/page-email-payment.php:429 inc/_ps/admin/page-email-edit.php:398
1117
  #: inc/_ps/admin/page-email-edit.php:407 inc/_ps/admin/page-email-edit.php:416
1122
  #: core/admin/page-email-approved.php:409 core/admin/page-email-deleted.php:406
1123
  #: core/admin/page-email-deny.php:406 core/admin/page-email-new-admin.php:385
1124
  #: core/admin/page-email-new-visitor.php:391 core/admin/page-email-trash.php:411
1125
+ #: core/lib/wpbc_all_translations.php:182 inc/_bs/admin/page-email-payment.php:409
1126
  #: inc/_ps/admin/page-email-edit.php:405
1127
  msgid "Background Color"
1128
  msgstr ""
1130
  #: core/admin/page-email-approved.php:410 core/admin/page-email-deleted.php:407
1131
  #: core/admin/page-email-deny.php:407 core/admin/page-email-new-admin.php:386
1132
  #: core/admin/page-email-new-visitor.php:392 core/admin/page-email-trash.php:412
1133
+ #: core/lib/wpbc_all_translations.php:183 inc/_bs/admin/page-email-payment.php:410
1134
  #: inc/_ps/admin/page-email-edit.php:406
1135
  msgid "The background color for email templates."
1136
  msgstr ""
1138
  #: core/admin/page-email-approved.php:418 core/admin/page-email-deleted.php:415
1139
  #: core/admin/page-email-deny.php:415 core/admin/page-email-new-admin.php:394
1140
  #: core/admin/page-email-new-visitor.php:400 core/admin/page-email-trash.php:420
1141
+ #: core/lib/wpbc_all_translations.php:184 inc/_bs/admin/page-email-payment.php:418
1142
  #: inc/_ps/admin/page-email-edit.php:414
1143
  msgid "Email Body Background Color"
1144
  msgstr ""
1146
  #: core/admin/page-email-approved.php:419 core/admin/page-email-deleted.php:416
1147
  #: core/admin/page-email-deny.php:416 core/admin/page-email-new-admin.php:395
1148
  #: core/admin/page-email-new-visitor.php:401 core/admin/page-email-trash.php:421
1149
+ #: core/lib/wpbc_all_translations.php:185 inc/_bs/admin/page-email-payment.php:419
1150
  #: inc/_ps/admin/page-email-edit.php:415
1151
  msgid "The main body background color for email templates."
1152
  msgstr ""
1154
  #: core/admin/page-email-approved.php:427 core/admin/page-email-deleted.php:424
1155
  #: core/admin/page-email-deny.php:424 core/admin/page-email-new-admin.php:403
1156
  #: core/admin/page-email-new-visitor.php:409 core/admin/page-email-trash.php:429
1157
+ #: core/lib/wpbc_all_translations.php:186 inc/_bs/admin/page-email-payment.php:427
1158
  #: inc/_ps/admin/page-email-edit.php:423
1159
  msgid "Email Body Text Colour"
1160
  msgstr ""
1162
  #: core/admin/page-email-approved.php:428 core/admin/page-email-deleted.php:425
1163
  #: core/admin/page-email-deny.php:425 core/admin/page-email-new-admin.php:404
1164
  #: core/admin/page-email-new-visitor.php:410 core/admin/page-email-trash.php:430
1165
+ #: core/lib/wpbc_all_translations.php:187 inc/_bs/admin/page-email-payment.php:428
1166
  #: inc/_ps/admin/page-email-edit.php:424
1167
  msgid "The main body text color for email templates."
1168
  msgstr ""
1170
  #: core/admin/page-email-approved.php:443 core/admin/page-email-deleted.php:440
1171
  #: core/admin/page-email-deny.php:440 core/admin/page-email-new-admin.php:419
1172
  #: core/admin/page-email-new-visitor.php:425 core/admin/page-email-trash.php:445
1173
+ #: core/lib/wpbc_all_translations.php:188 inc/_bs/admin/page-email-payment.php:443
1174
  #: inc/_ps/admin/page-email-edit.php:439
1175
  msgid "Email format"
1176
  msgstr ""
1178
  #: core/admin/page-email-approved.php:444 core/admin/page-email-deleted.php:441
1179
  #: core/admin/page-email-deny.php:441 core/admin/page-email-new-admin.php:420
1180
  #: core/admin/page-email-new-visitor.php:426 core/admin/page-email-trash.php:446
1181
+ #: core/lib/wpbc_all_translations.php:189 inc/_bs/admin/page-email-payment.php:444
1182
  #: inc/_ps/admin/page-email-edit.php:440
1183
  msgid "Choose which format of email to send."
1184
  msgstr ""
1186
  #: core/admin/page-email-approved.php:448 core/admin/page-email-deleted.php:445
1187
  #: core/admin/page-email-deny.php:445 core/admin/page-email-new-admin.php:424
1188
  #: core/admin/page-email-new-visitor.php:430 core/admin/page-email-trash.php:450
1189
+ #: core/lib/wpbc_all_translations.php:190 inc/_bs/admin/page-email-payment.php:448
1190
  #: inc/_ps/admin/page-email-edit.php:444
1191
  msgid "Plain text"
1192
  msgstr ""
1194
  #: core/admin/page-email-approved.php:455 core/admin/page-email-deleted.php:452
1195
  #: core/admin/page-email-deny.php:452 core/admin/page-email-new-admin.php:431
1196
  #: core/admin/page-email-new-visitor.php:437 core/admin/page-email-trash.php:457
1197
+ #: core/lib/wpbc_all_translations.php:191 inc/_bs/admin/page-email-payment.php:455
1198
  #: inc/_ps/admin/page-email-edit.php:451 inc/_ps/admin/page-settings-form.php:667
1199
  #: inc/_ps/form/class-wpbc-form-help.php:92 inc/gateways/page-gateways.php:1102
1200
  msgid "HTML"
1203
  #: core/admin/page-email-approved.php:456 core/admin/page-email-deleted.php:453
1204
  #: core/admin/page-email-deny.php:453 core/admin/page-email-new-admin.php:432
1205
  #: core/admin/page-email-new-visitor.php:438 core/admin/page-email-trash.php:458
1206
+ #: core/lib/wpbc_all_translations.php:192 inc/_bs/admin/page-email-payment.php:456
1207
  #: inc/_ps/admin/page-email-edit.php:452
1208
  msgid "Multipart"
1209
  msgstr ""
1211
  #: core/admin/page-email-approved.php:483 core/admin/page-email-deleted.php:480
1212
  #: core/admin/page-email-deny.php:480 core/admin/page-email-new-admin.php:458
1213
  #: core/admin/page-email-new-visitor.php:465 core/admin/page-email-trash.php:485
1214
+ #: core/lib/wpbc_all_translations.php:193 inc/_bs/admin/page-email-payment.php:483
1215
  #: inc/_ps/admin/page-email-edit.php:479
1216
  #, php-format
1217
  msgid ""
1222
  #: core/admin/page-email-approved.php:483 core/admin/page-email-deleted.php:480
1223
  #: core/admin/page-email-deny.php:480 core/admin/page-email-new-admin.php:458
1224
  #: core/admin/page-email-new-visitor.php:465 core/admin/page-email-trash.php:485
1225
+ #: core/lib/wpbc_all_translations.php:194 core/sync/wpbc-gcal.php:406
1226
  #: inc/_bs/admin/page-email-payment.php:483 inc/_ps/admin/page-email-edit.php:479
1227
  msgid "here"
1228
  msgstr ""
1229
 
1230
  #: core/admin/page-email-approved.php:560 core/admin/wpbc-class-listing.php:330
1231
+ #: core/admin/wpbc-toolbars.php:550 core/lib/wpbc_all_translations.php:195
1232
+ #: core/timeline/v2/wpbc-class-timeline_v2.php:2680 inc/_ps/personal.php:356
1233
  #: inc/_ps/wpbc-print.php:118
1234
  msgid "Approved"
1235
  msgstr ""
1238
  #: core/admin/page-email-deny.php:559 core/admin/page-email-new-admin.php:513
1239
  #: core/admin/page-email-new-admin.php:514 core/admin/page-email-new-admin.php:538
1240
  #: core/admin/page-email-new-visitor.php:538 core/admin/page-email-trash.php:564
1241
+ #: core/lib/wpbc_all_translations.php:196 inc/_bs/admin/page-email-payment.php:561
1242
  #: inc/_ps/admin/page-email-edit.php:557
1243
  msgid "Emails Settings"
1244
  msgstr ""
1245
 
1246
+ #: core/admin/page-email-approved.php:562 core/lib/wpbc_all_translations.php:197
1247
  msgid "Customization of email template, which is sent to Visitor after approval of booking"
1248
  msgstr ""
1249
 
1250
+ #: core/admin/page-email-approved.php:699 core/lib/wpbc_all_translations.php:198
1251
  msgid "Email is sent to Visitor after Approval of booking."
1252
  msgstr ""
1253
 
1254
  #: core/admin/page-email-approved.php:706 core/admin/page-email-deleted.php:703
1255
  #: core/admin/page-email-deny.php:703 core/admin/page-email-new-admin.php:686
1256
  #: core/admin/page-email-new-visitor.php:682 core/admin/page-email-trash.php:708
1257
+ #: core/lib/wpbc_all_translations.php:199 inc/_bs/admin/page-email-payment.php:705
1258
  #: inc/_ps/admin/page-email-edit.php:701
1259
  msgid "Header / Footer"
1260
  msgstr ""
1262
  #: core/admin/page-email-approved.php:713 core/admin/page-email-deleted.php:710
1263
  #: core/admin/page-email-deny.php:710 core/admin/page-email-new-admin.php:693
1264
  #: core/admin/page-email-new-visitor.php:689 core/admin/page-email-trash.php:715
1265
+ #: core/lib/wpbc_all_translations.php:200 inc/_bs/admin/page-email-payment.php:712
1266
  #: inc/_ps/admin/page-email-edit.php:708
1267
  msgid "Email Styles"
1268
  msgstr ""
1270
  #: core/admin/page-email-approved.php:725 core/admin/page-email-deleted.php:722
1271
  #: core/admin/page-email-deny.php:722 core/admin/page-email-new-admin.php:705
1272
  #: core/admin/page-email-new-visitor.php:701 core/admin/page-email-trash.php:727
1273
+ #: core/admin/page-form-free.php:1149 core/admin/page-form-timeslots.php:768
1274
  #: core/admin/wpbc-class-listing.php:125 core/admin/wpbc-class-listing.php:145
1275
+ #: core/admin/wpbc-toolbars.php:52 core/admin/wpbc-toolbars.php:178
1276
+ #: core/lib/wpbc_all_translations.php:201 inc/_bl/admin/page-coupons.php:548
1277
  #: inc/_bm/admin/page-cost-valuation.php:203 inc/_bm/admin/page-seasons.php:527
1278
  #: inc/_bs/admin/page-email-payment.php:724 inc/_mu/admin/page-users.php:449
1279
  #: inc/_ps/admin/page-email-edit.php:720
1283
  #: core/admin/page-email-approved.php:729 core/admin/page-email-deleted.php:726
1284
  #: core/admin/page-email-deny.php:726 core/admin/page-email-new-admin.php:709
1285
  #: core/admin/page-email-new-visitor.php:705 core/admin/page-email-trash.php:731
1286
+ #: core/lib/wpbc_all_translations.php:202 inc/_bs/admin/page-email-payment.php:728
1287
  #: inc/_ps/admin/page-email-edit.php:724
1288
  msgid "Send Test Email"
1289
  msgstr ""
1294
  #: core/admin/page-email-new-admin.php:711 core/admin/page-email-new-admin.php:747
1295
  #: core/admin/page-email-new-visitor.php:707 core/admin/page-email-new-visitor.php:743
1296
  #: core/admin/page-email-trash.php:733 core/admin/page-email-trash.php:769
1297
+ #: core/admin/page-form-free.php:146 core/admin/page-form-free.php:214
1298
+ #: core/admin/page-form-free.php:2191 core/admin/page-ics-export.php:236
1299
+ #: core/admin/page-ics-general.php:416 core/admin/page-ics-import.php:203
1300
+ #: core/admin/page-import-gcal.php:570 core/admin/page-settings.php:142
1301
+ #: core/admin/page-settings.php:290 core/admin/wpbc-toolbars.php:1826
1302
+ #: core/lib/wpbc_all_translations.php:203 inc/_bl/admin/page-coupons.php:220
1303
+ #: inc/_bl/admin/page-coupons.php:1378 inc/_bl/admin/page-search.php:390
1304
+ #: inc/_bl/admin/page-search.php:490 inc/_bm/admin/page-availability.php:1024
1305
  #: inc/_bm/admin/page-cost-advanced.php:102 inc/_bm/admin/page-cost-advanced.php:161
1306
  #: inc/_bm/admin/page-cost-deposit.php:362 inc/_bm/admin/page-cost-early-late-booking.php:544
1307
  #: inc/_bm/admin/page-cost-rate.php:231 inc/_bm/admin/page-cost-valuation.php:257
1311
  #: inc/_mu/admin/page-users.php:168 inc/_ps/admin/page-email-edit.php:726
1312
  #: inc/_ps/admin/page-email-edit.php:762 inc/_ps/admin/page-resources.php:193
1313
  #: inc/_ps/admin/page-settings-form.php:125 inc/_ps/admin/page-settings-form.php:187
1314
+ #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:916
1315
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:489
1316
  #: inc/gateways/ideal/wpbc-gw-ideal.php:923 inc/gateways/ipay88/wpbc-gw-ipay88.php:783
1317
  #: inc/gateways/page-gateways.php:665 inc/gateways/pay_cash/wpbc-gw-pay_cash.php:402
1318
  #: inc/gateways/paypal/wpbc-gw-paypal.php:1085 inc/gateways/sage/wpbc-gw-sage.php:913
1319
+ #: inc/gateways/stripe/wpbc-gw-stripe.php:986 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1142
1320
  msgid "Save Changes"
1321
  msgstr ""
1322
 
1323
  #: core/admin/page-email-approved.php:749 core/admin/page-email-deleted.php:746
1324
  #: core/admin/page-email-deny.php:746 core/admin/page-email-new-admin.php:729
1325
  #: core/admin/page-email-new-visitor.php:725 core/admin/page-email-trash.php:751
1326
+ #: core/admin/page-form-free.php:1148 core/admin/wpbc-dashboard.php:471
1327
+ #: core/lib/wpbc_all_translations.php:204 inc/_bs/admin/page-email-payment.php:748
1328
  #: inc/_ps/admin/page-email-edit.php:744
1329
  msgid "Type"
1330
  msgstr ""
1333
  #: core/admin/page-email-deny.php:753 core/admin/page-email-new-admin.php:736
1334
  #: core/admin/page-email-new-visitor.php:732 core/admin/page-email-trash.php:758
1335
  #: core/admin/page-ics-import.php:194 core/admin/page-import-gcal.php:552
1336
+ #: core/admin/page-settings.php:136 core/admin/page-settings.php:282
1337
+ #: core/admin/wpbc-toolbars.php:434 core/admin/wpbc-toolbars.php:440
1338
+ #: core/lib/wpbc_all_translations.php:205 inc/_bl/admin/page-search.php:440
1339
+ #: inc/_bl/admin/page-search.php:468 inc/_bm/admin/page-cost-advanced.php:155
1340
  #: inc/_bs/admin/page-email-payment.php:755 inc/_ps/admin/page-email-edit.php:751
1341
  #: inc/_ps/admin/page-settings-form.php:181
1342
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:452 inc/gateways/page-gateways.php:654
1348
  #: core/admin/page-email-approved.php:839 core/admin/page-email-deleted.php:835
1349
  #: core/admin/page-email-deny.php:835 core/admin/page-email-new-admin.php:826
1350
  #: core/admin/page-email-new-visitor.php:814 core/admin/page-email-trash.php:840
1351
+ #: core/lib/wpbc_all_translations.php:206 inc/_bs/admin/page-email-payment.php:837
1352
  #: inc/_ps/admin/page-email-edit.php:833
1353
  msgid "Email sent to "
1354
  msgstr ""
1356
  #: core/admin/page-email-approved.php:841 core/admin/page-email-deleted.php:837
1357
  #: core/admin/page-email-deny.php:837 core/admin/page-email-new-admin.php:828
1358
  #: core/admin/page-email-new-visitor.php:816 core/admin/page-email-trash.php:842
1359
+ #: core/lib/wpbc_all_translations.php:207 core/wpbc-emails.php:447
1360
  #: inc/_bs/admin/page-email-payment.php:839 inc/_ps/admin/page-email-edit.php:835
1361
  msgid "Email had not sent. Some error occuered."
1362
  msgstr ""
1364
  #: core/admin/page-email-approved.php:856 core/admin/page-email-deleted.php:852
1365
  #: core/admin/page-email-deny.php:852 core/admin/page-email-new-admin.php:912
1366
  #: core/admin/page-email-new-visitor.php:831 core/admin/page-email-trash.php:857
1367
+ #: core/lib/wpbc_all_translations.php:208 inc/_bs/admin/page-email-payment.php:854
1368
+ #: inc/_ps/admin/page-email-edit.php:850 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:937
1369
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:562
1370
  #: inc/gateways/ideal/wpbc-gw-ideal.php:944 inc/gateways/ipay88/wpbc-gw-ipay88.php:804
1371
  #: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:423 inc/gateways/paypal/wpbc-gw-paypal.php:1106
1372
  #: inc/gateways/sage/wpbc-gw-sage.php:934 inc/gateways/stripe/wpbc-gw-stripe.php:1005
1373
+ #: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1161
1374
  msgid "Settings saved."
1375
  msgstr ""
1376
 
1380
  #: core/admin/page-email-new-admin.php:974 core/admin/page-email-new-admin.php:977
1381
  #: core/admin/page-email-new-visitor.php:892 core/admin/page-email-new-visitor.php:895
1382
  #: core/admin/page-email-trash.php:918 core/admin/page-email-trash.php:921
1383
+ #: core/lib/wpbc_all_translations.php:209 inc/_bs/admin/page-email-payment.php:915
1384
  #: inc/_bs/admin/page-email-payment.php:918 inc/_ps/admin/page-email-edit.php:911
1385
  #: inc/_ps/admin/page-email-edit.php:914
1386
  msgid "If empty then title defined as WordPress"
1389
  #: core/admin/page-email-approved.php:937 core/admin/page-email-deleted.php:933
1390
  #: core/admin/page-email-deny.php:933 core/admin/page-email-new-admin.php:994
1391
  #: core/admin/page-email-new-visitor.php:912 core/admin/page-email-trash.php:938
1392
+ #: core/lib/wpbc_all_translations.php:210 inc/_bs/admin/page-email-payment.php:935
1393
  #: inc/_ps/admin/page-email-edit.php:931
1394
  msgid ""
1395
  "Email different from website DNS, its can be a reason of not delivery emails. Please use the "
1397
  msgstr ""
1398
 
1399
  #: core/admin/page-email-deleted.php:311 core/admin/page-email-deny.php:311
1400
+ #: core/admin/page-email-trash.php:316 core/lib/wpbc_all_translations.php:211
1401
+ #: core/wpbc-activation.php:1007
1402
  msgid "Your booking has been declined"
1403
  msgstr ""
1404
 
1405
  #: core/admin/page-email-deleted.php:325 core/admin/page-email-deny.php:325
1406
+ #: core/admin/page-email-trash.php:330 core/lib/wpbc_all_translations.php:212
1407
+ #: core/wpbc-activation.php:1008
1408
  #, php-format
1409
  msgid "Your booking %s for: %s has been canceled. %sThank you, %s"
1410
  msgstr ""
1411
 
1412
+ #: core/admin/page-email-deleted.php:558 core/lib/wpbc-ajax.php:416
1413
+ #: core/lib/wpbc_all_translations.php:213 inc/_bl/admin/page-coupons.php:378
1414
  #: inc/_bl/admin/page-coupons.php:1023 inc/_bm/admin/page-availability.php:364
1415
  #: inc/_bm/admin/page-cost.php:325 inc/_bm/admin/page-seasons.php:313
1416
  #: inc/_bm/admin/page-seasons.php:843 inc/_bm/m-toolbar.php:547
1417
+ #: inc/_ps/admin/page-resources.php:318 inc/_ps/personal.php:175
1418
  msgid "Deleted"
1419
  msgstr ""
1420
 
1421
  #: core/admin/page-email-deleted.php:560 core/admin/page-email-trash.php:565
1422
+ #: core/lib/wpbc_all_translations.php:214
1423
  msgid "Customization of email template, which is sent to Visitor after Cancellation of booking"
1424
  msgstr ""
1425
 
1426
+ #: core/admin/page-email-deleted.php:696 core/lib/wpbc_all_translations.php:215
1427
  msgid "Email is sent to Visitor after Deleting of booking."
1428
  msgstr ""
1429
 
1430
+ #: core/admin/page-email-deny.php:560 core/lib/wpbc_all_translations.php:216
1431
  msgid ""
1432
  "Customization of email template, which is sent to Visitor, when booking status is set to Pending"
1433
  msgstr ""
1434
 
1435
+ #: core/admin/page-email-deny.php:696 core/lib/wpbc_all_translations.php:217
1436
  msgid "Email is sent to Visitor after booking set as Pending."
1437
  msgstr ""
1438
 
1439
  #: core/admin/page-email-new-admin.php:292 core/admin/page-email-new-visitor.php:292
1440
+ #: core/admin/wpbc-class-listing.php:302 core/lib/wpbc_all_translations.php:218
1441
+ #: core/wpbc-activation.php:978 core/wpbc-activation.php:985
1442
  msgid "New booking"
1443
  msgstr ""
1444
 
1445
+ #: core/admin/page-email-new-admin.php:308 core/lib/wpbc_all_translations.php:219
1446
+ #: core/wpbc-activation.php:979
1447
  #, php-format
1448
  msgid ""
1449
  "You need to approve a new booking %s for: %s Person detail information:%s Currently a new "
1450
  "booking is waiting for approval. Please visit the moderation panel%sThank you, %s"
1451
  msgstr ""
1452
 
1453
+ #: core/admin/page-email-new-admin.php:512 core/lib/wpbc_all_translations.php:220
1454
  #: core/wpbc-functions.php:1984
1455
  msgid "Emails"
1456
  msgstr ""
1457
 
1458
  #: core/admin/page-email-new-admin.php:537 core/admin/page-email-new-visitor.php:537
1459
+ #: core/lib/wpbc_all_translations.php:221
1460
  msgid "New"
1461
  msgstr ""
1462
 
1463
+ #: core/admin/page-email-new-admin.php:537 core/lib/wpbc_all_translations.php:222
1464
  msgid "admin"
1465
  msgstr ""
1466
 
1467
+ #: core/admin/page-email-new-admin.php:539 core/lib/wpbc_all_translations.php:223
1468
  msgid "Customization of email template, which is sending to Admin after new booking"
1469
  msgstr ""
1470
 
1471
+ #: core/admin/page-email-new-admin.php:679 core/lib/wpbc_all_translations.php:224
1472
  msgid "Email is sending to Admin after creation of booking."
1473
  msgstr ""
1474
 
1475
+ #: core/admin/page-email-new-visitor.php:307 core/lib/wpbc_all_translations.php:225
1476
+ #: core/wpbc-activation.php:987
1477
  #, php-format
1478
  msgid ""
1479
  "Your reservation %s for: %s is processing now! We will send confirmation by email. %sYou can "
1480
  "edit this booking at this page: %s Thank you, %s"
1481
  msgstr ""
1482
 
1483
+ #: core/admin/page-email-new-visitor.php:309 core/lib/wpbc_all_translations.php:226
1484
+ #: core/wpbc-activation.php:989
1485
  #, php-format
1486
  msgid ""
1487
  "Your reservation %s for: %s is processing now! We will send confirmation by email. %s Thank you, "
1488
  "%s"
1489
  msgstr ""
1490
 
1491
+ #: core/admin/page-email-new-visitor.php:537 core/lib/wpbc_all_translations.php:227
1492
  msgid "visitor"
1493
  msgstr ""
1494
 
1495
+ #: core/admin/page-email-new-visitor.php:539 core/lib/wpbc_all_translations.php:228
1496
  msgid "Customization of email template, which is sending to Visitor after new booking"
1497
  msgstr ""
1498
 
1499
+ #: core/admin/page-email-new-visitor.php:675 core/lib/wpbc_all_translations.php:229
1500
  msgid "Email is sending to Visitor after creation of booking."
1501
  msgstr ""
1502
 
1503
  #: core/admin/page-email-trash.php:563 core/admin/wpbc-class-listing.php:332
1504
+ #: core/admin/wpbc-class-timeline.php:2316 core/admin/wpbc-toolbars.php:994
1505
+ #: core/lib/wpbc_all_translations.php:230 core/timeline/v2/wpbc-class-timeline_v2.php:2608
1506
+ #: core/timeline/v2/wpbc-class-timeline_v2.php:2717
1507
  msgid "Trash"
1508
  msgstr ""
1509
 
1510
+ #: core/admin/page-email-trash.php:701 core/lib/wpbc_all_translations.php:231
1511
  msgid "Email is sent to visitor after cancelling of booking (moved to trash)."
1512
  msgstr ""
1513
 
1514
  #: core/admin/page-form-free.php:61 core/admin/page-settings.php:98
1515
+ #: core/admin/page-settings.php:217 core/lib/wpbc_all_translations.php:232
1516
  #: core/wpbc-functions.php:1976 inc/_ps/admin/page-settings-form.php:46
1517
  msgid "Form"
1518
  msgstr ""
1519
 
1520
+ #: core/admin/page-form-free.php:62 core/lib/wpbc_all_translations.php:233
1521
  #: inc/_ps/admin/page-settings-form.php:47
1522
  msgid "Fields Settings"
1523
  msgstr ""
1524
 
1525
+ #: core/admin/page-form-free.php:63 core/lib/wpbc_all_translations.php:234
1526
  #: inc/_ps/admin/page-settings-form.php:48
1527
  msgid "Customizaton of Form Fields"
1528
  msgstr ""
1529
 
1530
  #: core/admin/page-form-free.php:76 core/admin/wpbc-dashboard.php:503
1531
+ #: core/lib/wpbc_all_translations.php:235
1532
  msgid "Check Premium Features"
1533
  msgstr ""
1534
 
1535
+ #: core/admin/page-form-free.php:77 core/lib/wpbc_all_translations.php:236
1536
  msgid "Upgrade to higher versions"
1537
  msgstr ""
1538
 
1539
+ #: core/admin/page-form-free.php:167 core/lib/wpbc_all_translations.php:237
1540
  msgid "Form Field Configuration"
1541
  msgstr ""
1542
 
1543
+ #: core/admin/page-form-free.php:190
1544
+ #, php-format
1545
+ msgid ""
1546
+ "You can add %sTime Slots%s to booking form, by activating and configure %sTime Slots%s field in "
1547
+ "booking form (below) or by adding this field from (above) toolbar."
1548
+ msgstr ""
1549
+
1550
+ #: core/admin/page-form-free.php:298 core/admin/page-form-free.php:421
1551
+ #: core/admin/page-form-free.php:579 core/lib/wpbc_all_translations.php:238
1552
+ #: inc/_ps/personal.php:2083 inc/_ps/wpbc-form-templates.php:42 inc/_ps/wpbc-form-templates.php:61
1553
  #: inc/_ps/wpbc-form-templates.php:81 inc/_ps/wpbc-form-templates.php:104
1554
  #: inc/_ps/wpbc-form-templates.php:127
1555
  msgid "Send"
1556
  msgstr ""
1557
 
1558
+ #: core/admin/page-form-free.php:852 core/lib/wpbc_all_translations.php:239
1559
  msgid "Reset to default form"
1560
  msgstr ""
1561
 
1562
+ #: core/admin/page-form-free.php:856 core/admin/page-form-free.php:1466
1563
  #: core/admin/wpbc-class-listing.php:397 core/admin/wpbc-class-listing.php:403
1564
+ #: core/admin/wpbc-toolbars.php:997 core/admin/wpbc-toolbars.php:1014
1565
+ #: core/admin/wpbc-toolbars.php:1078 core/lib/wpbc_all_translations.php:240
1566
+ #: inc/_bl/admin/page-coupons.php:236 inc/_bl/admin/page-coupons.php:808
1567
+ #: inc/_bm/admin/page-availability.php:274 inc/_bm/admin/page-cost-valuation.php:354
1568
+ #: inc/_bm/admin/page-cost.php:513 inc/_bm/admin/page-seasons.php:221
1569
+ #: inc/_bm/admin/page-seasons.php:602 inc/_ps/admin/page-resources.php:222
1570
+ #: inc/_ps/personal.php:2117
1571
  msgid "Do you really want to do this ?"
1572
  msgstr ""
1573
 
1574
+ #: core/admin/page-form-free.php:884 core/admin/page-form-free.php:2177
1575
+ #: core/lib/wpbc_all_translations.php:241
1576
  msgid "Add New Field"
1577
  msgstr ""
1578
 
1579
+ #: core/admin/page-form-free.php:901 core/admin/page-form-free.php:936
1580
+ #: core/lib/wpbc_all_translations.php:242 inc/_ps/admin/page-settings-form.php:312
1581
  msgid "Select"
1582
  msgstr ""
1583
 
1584
+ #: core/admin/page-form-free.php:901 core/lib/wpbc_all_translations.php:243
1585
  msgid "Form Field"
1586
  msgstr ""
1587
 
1588
+ #: core/admin/page-form-free.php:923 core/lib/wpbc_all_translations.php:244
1589
  #: inc/_ps/form/class-wpbc-form-help.php:141
1590
  msgid "Standard Fields"
1591
  msgstr ""
1592
 
1593
+ #: core/admin/page-form-free.php:926 core/lib/wpbc_all_translations.php:245
1594
  #: inc/_ps/form/class-wpbc-form-help.php:147
1595
  msgid "Text"
1596
  msgstr ""
1597
 
1598
+ #: core/admin/page-form-free.php:946 core/lib/wpbc_all_translations.php:246
1599
  #: inc/_ps/form/class-wpbc-form-help.php:156
1600
  msgid "Textarea"
1601
  msgstr ""
1602
 
1603
+ #: core/admin/page-form-free.php:956 core/lib/wpbc_all_translations.php:247
1604
  msgid "Checkbox"
1605
  msgstr ""
1606
 
1607
+ #: core/admin/page-form-free.php:971 core/lib/wpbc_all_translations.php:248
1608
  #: inc/_ps/form/class-wpbc-form-help.php:486
1609
  msgid "Advanced Fields"
1610
  msgstr ""
1611
 
1612
+ #: core/admin/page-form-free.php:975 core/admin/page-form-free.php:1991
1613
+ #: core/admin/page-form-free.php:1992 core/admin/page-form-timeslots.php:106
1614
  #: core/admin/page-form-timeslots.php:201 core/admin/page-form-timeslots.php:766
1615
+ #: core/admin/page-form-timeslots.php:816 core/lib/wpbc_all_translations.php:249
1616
  #: inc/_ps/admin/page-settings-form.php:373 inc/_ps/admin/page-settings-form.php:383
1617
  #: inc/_ps/admin/page-settings-form.php:393
1618
  msgid "Time Slots"
1619
  msgstr ""
1620
 
1621
+ #: core/admin/page-form-free.php:1033 core/lib/wpbc_all_translations.php:250
1622
  msgid "View"
1623
  msgstr ""
1624
 
1625
+ #: core/admin/page-form-free.php:1052 core/lib/wpbc_all_translations.php:251
1626
  msgid "Standard Forms"
1627
  msgstr ""
1628
 
1629
+ #: core/admin/page-form-free.php:1055 core/lib/wpbc_all_translations.php:252
1630
  msgid "Form under calendar"
1631
  msgstr ""
1632
 
1633
+ #: core/admin/page-form-free.php:1065 core/lib/wpbc_all_translations.php:253
1634
  msgid "Form at right side of calendar"
1635
  msgstr ""
1636
 
1637
+ #: core/admin/page-form-free.php:1075 core/lib/wpbc_all_translations.php:254
1638
  msgid "Form and calendar are centered"
1639
  msgstr ""
1640
 
1641
+ #: core/admin/page-form-free.php:1085 core/lib/wpbc_all_translations.php:255
1642
  msgid "Form for dark background"
1643
  msgstr ""
1644
 
1645
+ #: core/admin/page-form-free.php:1145 core/admin/page-form-free.php:2050
1646
+ #: core/lib/wpbc_all_translations.php:256
1647
  msgid "Active"
1648
  msgstr ""
1649
 
1650
+ #: core/admin/page-form-free.php:1146 core/lib/wpbc_all_translations.php:257
1651
  msgid "Field Label"
1652
  msgstr ""
1653
 
1654
+ #: core/admin/page-form-free.php:1148 core/admin/page-form-free.php:2116
1655
+ #: core/lib/wpbc_all_translations.php:258 inc/_ps/form/class-wpbc-field-help-text.php:177
1656
  msgid "Name"
1657
  msgstr ""
1658
 
1659
+ #: core/admin/page-form-free.php:1225 core/admin/page-form-free.php:1663
1660
+ #: core/admin/page-form-free.php:1724 core/admin/wpbc-class-timeline.php:2230
1661
+ #: core/lib/wpbc_all_translations.php:259 core/timeline/v2/wpbc-class-timeline_v2.php:2588
1662
+ #: core/timeline/v2/wpbc-class-timeline_v2.php:2645 inc/_bl/admin/page-coupons.php:215
1663
  #: inc/_bl/admin/page-coupons.php:804 inc/_bl/admin/page-coupons.php:993
1664
  #: inc/_bm/admin/page-cost.php:218 inc/_bm/admin/page-seasons.php:200
1665
  #: inc/_bm/admin/page-seasons.php:598 inc/_bm/admin/page-seasons.php:815
1667
  msgid "Edit"
1668
  msgstr ""
1669
 
1670
+ #: core/admin/page-form-free.php:1226 core/admin/page-form-free.php:1664
1671
+ #: core/admin/page-form-timeslots.php:788 core/lib/wpbc_all_translations.php:260
1672
  msgid "Remove"
1673
  msgstr ""
1674
 
1675
+ #: core/admin/page-form-free.php:1894 core/lib/wpbc_all_translations.php:261
1676
  #: inc/_ps/form/class-wpbc-form-help.php:88
1677
  msgid "Shortcodes"
1678
  msgstr ""
1679
 
1680
+ #: core/admin/page-form-free.php:1895 core/lib/wpbc_all_translations.php:262
1681
  #: inc/_ps/form/class-wpbc-form-help.php:89
1682
  msgid ""
1683
  "You can generate the form fields for your form (at the left side) by selection specific field in "
1684
  "the above selectbox."
1685
  msgstr ""
1686
 
1687
+ #: core/admin/page-form-free.php:1896 core/lib/wpbc_all_translations.php:263
1688
  #: inc/_ps/form/class-wpbc-form-help.php:90
1689
  #, php-format
1690
  msgid "Please read more about the booking form fields configuration %shere%s."
1691
  msgstr ""
1692
 
1693
+ #: core/admin/page-form-free.php:1898 core/lib/wpbc_all_translations.php:264
1694
  #: inc/_ps/form/class-wpbc-form-help.php:99
1695
  msgid "Default Form Templates"
1696
  msgstr ""
1697
 
1698
+ #: core/admin/page-form-free.php:1899 core/lib/wpbc_all_translations.php:265
1699
  #: inc/_ps/form/class-wpbc-form-help.php:100
1700
  #, php-format
1701
  msgid ""
1705
  "reset both forms: Booking Form and Content of Booking Fields form."
1706
  msgstr ""
1707
 
1708
+ #: core/admin/page-form-free.php:2029 core/lib/wpbc_all_translations.php:266
1709
  #: inc/_ps/wpbc-form-templates.php:144 inc/_ps/wpbc-form-templates.php:156
1710
  #: inc/_ps/wpbc-form-templates.php:171 inc/_ps/wpbc-form-templates.php:186
1711
  msgid "First Name"
1712
  msgstr ""
1713
 
1714
+ #: core/admin/page-form-free.php:2051 core/lib/wpbc_all_translations.php:267
1715
  msgid "Show / hide field in booking form"
1716
  msgstr ""
1717
 
1718
+ #: core/admin/page-form-free.php:2072 core/lib/wpbc_all_translations.php:268
1719
  msgid "Set field as required"
1720
  msgstr ""
1721
 
1722
+ #: core/admin/page-form-free.php:2092 core/admin/page-form-timeslots.php:784
1723
  #: core/admin/wpbc-toolbar-tiny.php:428 core/admin/wpbc-toolbar-tiny.php:1219
1724
+ #: core/lib/wpbc_all_translations.php:269 inc/_ps/form/class-wpbc-field-help-button.php:73
1725
  #: js/wpbc-gutenberg.js:816
1726
  msgid "Label"
1727
  msgstr ""
1728
 
1729
+ #: core/admin/page-form-free.php:2121 core/lib/wpbc_all_translations.php:270
1730
  #, php-format
1731
  msgid "Type only %sunique field name%s, that is not using in form"
1732
  msgstr ""
1733
 
1734
+ #: core/admin/page-form-free.php:2142 core/lib/wpbc_all_translations.php:271
1735
  msgid "Values"
1736
  msgstr ""
1737
 
1738
+ #: core/admin/page-form-free.php:2147 core/lib/wpbc_all_translations.php:272
1739
  msgid "Enter dropdown options. One option per line."
1740
  msgstr ""
1741
 
1742
+ #: core/admin/page-form-free.php:2182 core/admin/wpbc-toolbar-tiny.php:298
1743
+ #: core/admin/wpbc-toolbars.php:710 core/admin/wpbc-toolbars.php:915
1744
+ #: core/admin/wpbc-toolbars.php:1536 core/lib/wpbc_all_translations.php:273
1745
  #: core/sync/wpbc-gcal.php:445 inc/_bs/lib_s.php:104 inc/_bs/s-toolbar.php:209
1746
+ #: inc/_ps/p-toolbar.php:508 inc/_ps/p-toolbar.php:553
1747
  msgid "Close"
1748
  msgstr ""
1749
 
1750
+ #: core/admin/page-form-free.php:2196 core/lib/wpbc_all_translations.php:274
1751
+ #: inc/_bm/m-toolbar.php:367 inc/_bm/m-toolbar.php:368 inc/_ps/p-toolbar.php:387
1752
+ #: inc/_ps/p-toolbar.php:439 inc/_ps/p-toolbar.php:472
1753
  msgid "Cancel"
1754
  msgstr ""
1755
 
1756
+ #: core/admin/page-form-timeslots.php:106 core/lib/wpbc_all_translations.php:275
1757
  msgid "in 24 hour format"
1758
  msgstr ""
1759
 
1760
+ #: core/admin/page-form-timeslots.php:126 core/lib/wpbc_all_translations.php:276
1761
  #: inc/_ps/form/class-wpbc-field-help-checkbox.php:154
1762
  #: inc/_ps/form/class-wpbc-field-help-select.php:119
1763
  msgid "One option per line"
1764
  msgstr ""
1765
 
1766
+ #: core/admin/page-form-timeslots.php:132 core/lib/wpbc_all_translations.php:277
1767
  msgid "Titles"
1768
  msgstr ""
1769
 
1770
+ #: core/admin/page-form-timeslots.php:151 core/lib/wpbc_all_translations.php:278
1771
  #: inc/_ps/form/class-wpbc-field-help-checkbox.php:172
1772
  #: inc/_ps/form/class-wpbc-field-help-select.php:137
1773
  msgid "One title per line"
1774
  msgstr ""
1775
 
1776
+ #: core/admin/page-form-timeslots.php:151 core/lib/wpbc_all_translations.php:279
1777
  msgid "Visible options in selectbox"
1778
  msgstr ""
1779
 
1780
+ #: core/admin/page-form-timeslots.php:193 core/lib/wpbc_all_translations.php:280
1781
  msgid "Reset times by"
1782
  msgstr ""
1783
 
1784
  #: core/admin/page-form-timeslots.php:195 core/admin/page-import-gcal.php:69
1785
  #: core/admin/page-import-gcal.php:196 core/admin/page-import-gcal.php:278
1786
+ #: core/admin/wpbc-toolbar-tiny.php:634 core/lib/wpbc_all_translations.php:281
1787
  #: core/sync/wpbc-gcal.php:207 core/sync/wpbc-gcal.php:271 inc/_bm/admin/api-settings-m.php:67
1788
  #: inc/_bm/admin/api-settings-m.php:104 inc/_bs/admin/api-settings-s.php:532
1789
  msgid "hours"
1790
  msgstr ""
1791
 
1792
  #: core/admin/page-form-timeslots.php:196 core/admin/page-import-gcal.php:67
1793
+ #: core/lib/wpbc_all_translations.php:282 inc/_bm/admin/api-settings-m.php:98
1794
  #: inc/_bm/admin/api-settings-m.php:100 inc/_bs/admin/api-settings-s.php:528
1795
  #: inc/_bs/admin/api-settings-s.php:901
1796
  msgid "hour"
1798
 
1799
  #: core/admin/page-form-timeslots.php:197 core/admin/page-form-timeslots.php:198
1800
  #: core/admin/page-form-timeslots.php:199 core/admin/page-import-gcal.php:195
1801
+ #: core/admin/page-import-gcal.php:277 core/lib/wpbc_all_translations.php:283
1802
  #: core/sync/wpbc-gcal.php:206 core/sync/wpbc-gcal.php:270 inc/_bm/admin/api-settings-m.php:67
1803
  #: inc/_bm/admin/api-settings-m.php:96 inc/_bm/admin/api-settings-m.php:100
1804
  #: inc/_bs/admin/api-settings-s.php:525 inc/_bs/admin/api-settings-s.php:526
1811
  #: core/admin/page-form-timeslots.php:435 core/admin/page-form-timeslots.php:444
1812
  #: core/admin/page-form-timeslots.php:446 core/admin/page-form-timeslots.php:455
1813
  #: core/admin/page-form-timeslots.php:457 core/admin/page-form-timeslots.php:466
1814
+ #: core/admin/page-form-timeslots.php:468 core/lib/wpbc_all_translations.php:284
1815
+ #: core/wpbc-js.php:131 inc/_ps/personal.php:268
1816
  msgid "Processing"
1817
  msgstr ""
1818
 
1819
+ #: core/admin/page-form-timeslots.php:595 core/lib/wpbc_all_translations.php:285
1820
  msgid "+ Add Time Slot"
1821
  msgstr ""
1822
 
1823
  #: core/admin/page-ics-export.php:42 core/admin/page-ics-export.php:43
1824
+ #: core/admin/page-ics-general.php:262 core/admin/page-ics-general.php:263
1825
+ #: core/admin/page-ics-general.php:282 core/admin/page-ics-general.php:283
1826
  #: core/admin/page-ics-import.php:40 core/admin/page-ics-import.php:41
1827
  #: core/admin/page-import-gcal.php:388 core/admin/page-import-gcal.php:389
1828
+ #: core/lib/wpbc_all_translations.php:286 core/wpbc-functions.php:2001
1829
  msgid "Sync"
1830
  msgstr ""
1831
 
1832
+ #: core/admin/page-ics-export.php:44 core/admin/page-ics-general.php:264
1833
+ #: core/admin/page-ics-general.php:397 core/admin/page-ics-general.php:406
1834
  #: core/admin/page-ics-import.php:42 core/admin/page-ics-import.php:59
1835
  #: core/admin/page-ics-import.php:60 core/admin/page-ics-import.php:62
1836
  #: core/admin/page-ics-import.php:186 core/admin/page-ics-import.php:464
1837
+ #: core/admin/page-import-gcal.php:390 core/lib/wpbc_all_translations.php:287
1838
  #: core/sync/wpbc-gcal.php:465
1839
  msgid "Import"
1840
  msgstr ""
1841
 
1842
  #: core/admin/page-ics-export.php:44 core/admin/page-ics-export.php:61
1843
  #: core/admin/page-ics-export.php:62 core/admin/page-ics-export.php:64
1844
+ #: core/admin/page-ics-export.php:228 core/admin/page-ics-general.php:264
1845
  #: core/admin/page-ics-import.php:42 core/admin/page-import-gcal.php:390
1846
+ #: core/lib/wpbc_all_translations.php:288 inc/_ps/p-toolbar.php:173
1847
  msgid "Export"
1848
  msgstr ""
1849
 
1850
  #: core/admin/page-ics-export.php:64 core/admin/page-ics-export.php:228
1851
+ #: core/lib/wpbc_all_translations.php:289
1852
  msgid "feed"
1853
  msgstr ""
1854
 
1855
  #: core/admin/page-ics-export.php:139 core/class/wpbc-class-notices.php:25
1856
+ #: core/lib/wpbc_all_translations.php:290 core/sync/wpbc-gcal.php:398
1857
+ #: inc/_bm/admin/page-cost-valuation.php:290 inc/_mu/multiuser.php:767
1858
  msgid "Warning!"
1859
  msgstr ""
1860
 
1861
+ #: core/admin/page-ics-export.php:141 core/lib/wpbc_all_translations.php:291
1862
  #, php-format
1863
  msgid "This feature require %s"
1864
  msgstr ""
1865
 
1866
  #: core/admin/page-ics-export.php:163 core/admin/page-ics-import.php:162
1867
+ #: core/lib/wpbc_all_translations.php:292 inc/_bl/admin/api-settings-l.php:162
1868
  #: inc/_bm/admin/api-settings-m.php:86 inc/_ps/form/class-wpbc-form-help.php:117
1869
  #: inc/_ps/form/class-wpbc-form-help.php:126 inc/_ps/form/class-wpbc-form-help.php:136
1870
  #: inc/_ps/form/class-wpbc-form-help.php:197 inc/_ps/form/class-wpbc-form-help.php:228
1874
  #: inc/_ps/form/class-wpbc-form-help.php:343 inc/_ps/form/class-wpbc-form-help.php:380
1875
  #: inc/_ps/form/class-wpbc-form-help.php:382 inc/_ps/form/class-wpbc-form-help.php:497
1876
  #: inc/_ps/form/class-wpbc-form-help.php:515 inc/_ps/form/class-wpbc-form-help.php:645
1877
+ #: inc/_ps/form/class-wpbc-form-help.php:659 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:455
1878
+ #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:878
1879
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:750 inc/gateways/sage/wpbc-gw-sage.php:882
1880
+ #: inc/gateways/stripe/wpbc-gw-stripe.php:955 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1104
1881
+ #: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1111 js/wpbc-gutenberg.js:1102
1882
+ #: js/wpbc-gutenberg.js:1188
1883
  msgid "Important!"
1884
  msgstr ""
1885
 
1886
  #: core/admin/page-ics-export.php:165 core/admin/page-ics-import.php:164
1887
+ #: core/lib/wpbc_all_translations.php:293
1888
  #, php-format
1889
  msgid "This feature require %s plugin. You can install %s plugin from this %spage%s."
1890
  msgstr ""
1891
 
1892
  #: core/admin/page-ics-export.php:177 core/admin/page-ics-export.php:240
1893
+ #: core/admin/page-ics-import.php:176 core/lib/wpbc_all_translations.php:294
1894
  msgid "How it works"
1895
  msgstr ""
1896
 
1897
  #: core/admin/page-ics-export.php:441 core/admin/page-ics-export.php:444
1898
+ #: core/lib/wpbc_all_translations.php:295
1899
  msgid ".ics feed URL"
1900
  msgstr ""
1901
 
1902
+ #: core/admin/page-ics-export.php:463 core/lib/wpbc_all_translations.php:296
1903
  #: inc/_ps/admin/br-table-export-feeds.php:69
1904
  msgid "Open in new window"
1905
  msgstr ""
1906
 
1907
+ #: core/admin/page-ics-export.php:465 core/lib/wpbc_all_translations.php:297
1908
  msgid "Please enter URL for generating .ics feed"
1909
  msgstr ""
1910
 
1911
+ #: core/admin/page-ics-export.php:468 core/lib/wpbc_all_translations.php:298
1912
  msgid "This .ics feed of bookings starting from today for 1 year"
1913
  msgstr ""
1914
 
1915
  #: core/admin/page-ics-general.php:68 core/admin/wpbc-toolbar-tiny.php:875
1916
  #: core/admin/wpbc-toolbar-tiny.php:1090 core/admin/wpbc-toolbar-tiny.php:1171
1917
+ #: core/lib/wpbc_all_translations.php:299 inc/_bm/admin/api-settings-m.php:60
1918
  #: inc/_ps/wpbc-booking-select-widget.php:188
1919
  msgid "None"
1920
  msgstr ""
1921
 
1922
+ #: core/admin/page-ics-general.php:101 core/lib/wpbc_all_translations.php:300
1923
  msgid "Event Title"
1924
  msgstr ""
1925
 
1926
  #: core/admin/page-ics-general.php:102 core/admin/page-ics-general.php:112
1927
+ #: core/admin/page-ics-general.php:122 core/lib/wpbc_all_translations.php:301
1928
  #, php-format
1929
  msgid "Select field for assigning to %sevent property%s"
1930
  msgstr ""
1931
 
1932
+ #: core/admin/page-ics-general.php:111 core/lib/wpbc_all_translations.php:302
1933
  msgid "Event Description (optional field)"
1934
  msgstr ""
1935
 
1936
+ #: core/admin/page-ics-general.php:121 core/lib/wpbc_all_translations.php:303
1937
  msgid "Location"
1938
  msgstr ""
1939
 
1940
  #: core/admin/page-ics-general.php:132 core/admin/wpbc-class-listing.php:206
1941
+ #: core/lib/wpbc_all_translations.php:304 core/sync/wpbc-gcal.php:314
1942
+ #: inc/_bl/admin/activation-l.php:119 inc/_mu/multiuser.php:628 inc/_ps/admin/activation-p.php:45
1943
  msgid "Default"
1944
  msgstr ""
1945
 
1946
+ #: core/admin/page-ics-general.php:158 core/lib/wpbc_all_translations.php:305
1947
  #: core/sync/wpbc-gcal.php:309
1948
  msgid "Timezone"
1949
  msgstr ""
1950
 
1951
+ #: core/admin/page-ics-general.php:159 core/lib/wpbc_all_translations.php:306
1952
  #: core/sync/wpbc-gcal.php:343
1953
  msgid "Select a city in your required timezone, if you are having problems with dates and times."
1954
  msgstr ""
1955
 
1956
+ #: core/admin/page-ics-general.php:171 core/lib/wpbc_all_translations.php:307
1957
  #: inc/_bs/admin/api-settings-s.php:314
1958
  msgid "Use check in/out time"
1959
  msgstr ""
1960
 
1961
+ #: core/admin/page-ics-general.php:172 core/lib/wpbc_all_translations.php:308
1962
  msgid "Use check in/out time of plugin, during import .ics feeds"
1963
  msgstr ""
1964
 
1965
+ #: core/admin/page-ics-general.php:179 core/lib/wpbc_all_translations.php:309
1966
  msgid "Append check out day"
1967
  msgstr ""
1968
 
1969
+ #: core/admin/page-ics-general.php:180 core/lib/wpbc_all_translations.php:310
1970
  msgid "Append one check out day, during import .ics feeds, if activated using check in/out times"
1971
  msgstr ""
1972
 
1973
  #: core/admin/page-ics-general.php:188
1974
+ msgid "Export only approved bookings"
1975
  msgstr ""
1976
 
1977
  #: core/admin/page-ics-general.php:189
1978
+ msgid "Enable of export only approved bookings in .ics feeds"
1979
+ msgstr ""
1980
+
1981
+ #: core/admin/page-ics-general.php:201 core/lib/wpbc_all_translations.php:311
1982
+ msgid "Force import"
1983
+ msgstr ""
1984
+
1985
+ #: core/admin/page-ics-general.php:202 core/lib/wpbc_all_translations.php:312
1986
  msgid "Import bookings without checking, if such bookings already have been imported."
1987
  msgstr ""
1988
 
1989
+ #: core/admin/page-ics-general.php:210 core/lib/wpbc_all_translations.php:313
1990
  msgid "Trash all imported bookings before new import"
1991
  msgstr ""
1992
 
1993
+ #: core/admin/page-ics-general.php:211 core/lib/wpbc_all_translations.php:314
1994
  msgid ""
1995
  "Move all previously imported bookings to trash before new import bookings. Its can resolve "
1996
  "issue of updating deleted and edited events in external sources. Its work only, if you are using "
1997
  "one source (.ics feed) for importing into specific booking resource!"
1998
  msgstr ""
1999
 
2000
+ #: core/admin/page-ics-general.php:281 core/admin/page-settings.php:74
2001
+ #: core/lib/wpbc_all_translations.php:315 inc/gateways/page-gateways.php:517
2002
  msgid "General"
2003
  msgstr ""
2004
 
2005
+ #: core/admin/page-ics-general.php:282 core/admin/page-ics-general.php:283
2006
+ #: core/admin/page-ics-general.php:390 core/admin/page-import-gcal.php:485
2007
  #: core/admin/page-settings.php:75 core/admin/page-settings.php:76
2008
+ #: core/lib/wpbc_all_translations.php:316 core/wpbc.php:188
2009
  msgid "General Settings"
2010
  msgstr ""
2011
 
2012
+ #: core/admin/page-ics-general.php:397 core/lib/wpbc_all_translations.php:317
2013
  msgid "Assign events fields to specific booking form field"
2014
  msgstr ""
2015
 
2016
+ #: core/admin/page-ics-general.php:406 core/admin/page-settings.php:121
2017
+ #: core/admin/page-settings.php:252 core/lib/wpbc_all_translations.php:318
2018
+ #: inc/_bl/admin/page-search.php:484 inc/_bl/admin/page-search.php:680
2019
+ #: inc/_bl/admin/page-search.php:725 inc/_bl/wpbc-search-availability.php:167
2020
+ #: inc/_bl/wpbc-search-availability.php:619 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:907
2021
  #: inc/gateways/ideal/wpbc-gw-ideal.php:914 inc/gateways/ipay88/wpbc-gw-ipay88.php:774
2022
  #: inc/gateways/paypal/wpbc-gw-paypal.php:1052 inc/gateways/sage/wpbc-gw-sage.php:904
2023
+ #: inc/gateways/stripe/wpbc-gw-stripe.php:977 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1133
2024
  msgid "Advanced"
2025
  msgstr ""
2026
 
2027
+ #: core/admin/page-ics-import.php:62 core/lib/wpbc_all_translations.php:319
2028
  msgid "feeds"
2029
  msgstr ""
2030
 
2031
+ #: core/admin/page-ics-import.php:433 core/admin/wpbc-sql.php:592
2032
+ #: core/admin/wpbc-toolbar-tiny.php:331 core/lib/wpbc_all_translations.php:320
2033
+ #: inc/_bl/admin/page-coupons.php:1409 inc/_ps/p-toolbar.php:965 inc/_ps/p-toolbar.php:996
2034
  msgid "parent resource"
2035
  msgstr ""
2036
 
2037
+ #: core/admin/page-ics-import.php:455 core/lib/wpbc_all_translations.php:321
2038
  msgid "Enter URL to .ics feed"
2039
  msgstr ""
2040
 
2041
+ #: core/admin/page-ics-import.php:460 core/lib/wpbc_all_translations.php:322
2042
  msgid "Choose file"
2043
  msgstr ""
2044
 
2045
+ #: core/admin/page-ics-import.php:461 core/lib/wpbc_all_translations.php:323
2046
  msgid "Insert file URL"
2047
  msgstr ""
2048
 
2049
+ #: core/admin/page-ics-import.php:462 core/lib/wpbc_all_translations.php:324
2050
  msgid "Upload / Select "
2051
  msgstr ""
2052
 
2053
+ #: core/admin/page-ics-import.php:499 core/lib/wpbc_all_translations.php:325
2054
  msgid "What does .ics feeds import/export mean?"
2055
  msgstr ""
2056
 
2057
+ #: core/admin/page-ics-import.php:507 core/lib/wpbc_all_translations.php:326
2058
  #, php-format
2059
  msgid "Its useful, if you need to import/export bookings from/to external websites, like %s"
2060
  msgstr ""
2061
 
2062
+ #: core/admin/page-ics-import.php:515 core/lib/wpbc_all_translations.php:327
2063
  msgid "and any other calendar that uses .ics format"
2064
  msgstr ""
2065
 
2066
+ #: core/admin/page-ics-import.php:529 core/class/wpbc-class-welcome.php:833
2067
+ #: core/lib/wpbc_all_translations.php:328
2068
  #, php-format
2069
  msgid ""
2070
  ".ics - is a file format of iCalendar standard for exchanging calendar and scheduling information "
2072
  "calendars updated and synchronized."
2073
  msgstr ""
2074
 
2075
+ #: core/admin/page-ics-import.php:550 core/lib/wpbc_all_translations.php:329
2076
  msgid "Is it automatic process?"
2077
  msgstr ""
2078
 
2079
+ #: core/admin/page-ics-import.php:560 core/lib/wpbc_all_translations.php:330
2080
  msgid ""
2081
  "By default .ics import is not automatic process. You need to set up CRON script on your server "
2082
  "to periodically access front-end page(s) with import .ics feeds shortcodes."
2083
  msgstr ""
2084
 
2085
+ #: core/admin/page-ics-import.php:579 core/lib/wpbc_all_translations.php:331
2086
  msgid "How to start import of .ics feeds (files)?"
2087
  msgstr ""
2088
 
2089
  #: core/admin/page-ics-import.php:586 core/admin/page-ics-import.php:633
2090
+ #: core/lib/wpbc_all_translations.php:332
2091
  #, php-format
2092
  msgid "Install %s plugin."
2093
  msgstr ""
2094
 
2095
+ #: core/admin/page-ics-import.php:590 core/lib/wpbc_all_translations.php:333
2096
  #, php-format
2097
  msgid ""
2098
  "Insert %s shortcode into some post(s) or page(s). Check more info about this %sshortcode "
2099
  "configuration%s"
2100
  msgstr ""
2101
 
2102
+ #: core/admin/page-ics-import.php:599 core/lib/wpbc_all_translations.php:334
2103
  #, php-format
2104
  msgid ""
2105
  "Using such shortcodes in pages give a great flexibility to import from different .ics feeds "
2107
  "accessing such different pages with different time intervals."
2108
  msgstr ""
2109
 
2110
+ #: core/admin/page-ics-import.php:608 core/lib/wpbc_all_translations.php:335
2111
  msgid "Or you can import .ics feed or file directly at current page."
2112
  msgstr ""
2113
 
2114
+ #: core/admin/page-ics-import.php:615 core/lib/wpbc_all_translations.php:336
2115
  #, php-format
2116
  msgid ""
2117
  "If you have inserted import shortcodes from %s, then you can configure your CRON for "
2118
  "periodically access these pages and import .ics feeds."
2119
  msgstr ""
2120
 
2121
+ #: core/admin/page-ics-import.php:626 core/lib/wpbc_all_translations.php:337
2122
  msgid "How to start export of .ics feeds (files)?"
2123
  msgstr ""
2124
 
2125
+ #: core/admin/page-ics-import.php:637 core/lib/wpbc_all_translations.php:338
2126
  msgid "Configure ULR feed(s) at this settings page."
2127
  msgstr ""
2128
 
2129
+ #: core/admin/page-ics-import.php:642 core/lib/wpbc_all_translations.php:339
2130
  #, php-format
2131
  msgid ""
2132
  "Using such URL(s) you can import .ics feeds, from interface of other websites. %sCheck more "
2134
  "website."
2135
  msgstr ""
2136
 
2137
+ #: core/admin/page-ics-import.php:651 core/lib/wpbc_all_translations.php:340
2138
  msgid "Visit these (previously configured URL feeds) pages for downloading .ics files."
2139
  msgstr ""
2140
 
2141
+ #: core/admin/page-ics-import.php:706 core/lib/wpbc_all_translations.php:341
2142
+ #: core/sync/wpbc-gcal-class.php:457 core/sync/wpbc-gcal.php:102 inc/_ps/personal.php:433
2143
  msgid "Done"
2144
  msgstr ""
2145
 
2146
+ #: core/admin/page-import-gcal.php:60 core/lib/wpbc_all_translations.php:342
2147
  msgid "Activate auto import"
2148
  msgstr ""
2149
 
2150
+ #: core/admin/page-import-gcal.php:61 core/lib/wpbc_all_translations.php:343
2151
  #, php-format
2152
  msgid "Check this box to %sactivate%s auto import events and creation bookings from them"
2153
  msgstr ""
2154
 
2155
+ #: core/admin/page-import-gcal.php:71 core/admin/wpbc-toolbars.php:567
2156
+ #: core/admin/wpbc-toolbars.php:801 core/lib/wpbc_all_translations.php:344 core/wpbc-emails.php:206
2157
  #: inc/_bm/admin/page-cost-advanced.php:461 inc/_bm/admin/page-cost-deposit.php:223
2158
  #: inc/_bm/admin/page-cost-early-late-booking.php:230
2159
  #: inc/_bm/admin/page-cost-early-late-booking.php:428 inc/_bm/admin/page-cost-valuation.php:346
2163
  msgstr ""
2164
 
2165
  #: core/admin/page-import-gcal.php:73 core/admin/page-import-gcal.php:197
2166
+ #: core/admin/page-import-gcal.php:279 core/admin/wpbc-toolbars.php:568
2167
+ #: core/admin/wpbc-toolbars.php:569 core/admin/wpbc-toolbars.php:570
2168
+ #: core/admin/wpbc-toolbars.php:571 core/admin/wpbc-toolbars.php:572
2169
+ #: core/admin/wpbc-toolbars.php:802 core/admin/wpbc-toolbars.php:803
2170
+ #: core/admin/wpbc-toolbars.php:804 core/admin/wpbc-toolbars.php:805
2171
+ #: core/admin/wpbc-toolbars.php:806 core/lib/wpbc_all_translations.php:345
2172
+ #: core/sync/wpbc-gcal.php:208 core/sync/wpbc-gcal.php:272 inc/_bl/admin/page-search.php:94
2173
  #: inc/_bm/admin/page-cost-deposit.php:225 inc/_bm/admin/page-cost-early-late-booking.php:228
2174
  #: inc/_bm/admin/page-cost-early-late-booking.php:430 inc/_bm/admin/page-cost-valuation.php:190
2175
  #: inc/_bm/admin/page-cost-valuation.php:348 inc/_bm/admin/page-cost-valuation.php:481
2176
  #: inc/_bm/admin/page-seasons.php:1051 inc/_bs/admin/api-settings-s.php:536
2177
+ #: inc/_ps/wpbc-form-templates.php:231 inc/_ps/wpbc-form-templates.php:266
2178
  msgid "days"
2179
  msgstr ""
2180
 
2181
+ #: core/admin/page-import-gcal.php:78 core/lib/wpbc_all_translations.php:346
2182
  msgid "Import events every"
2183
  msgstr ""
2184
 
2185
+ #: core/admin/page-import-gcal.php:79 core/lib/wpbc_all_translations.php:347
2186
  msgid "Select time duration of import requests."
2187
  msgstr ""
2188
 
2189
+ #: core/admin/page-import-gcal.php:95 core/lib/wpbc_all_translations.php:348
2190
  msgid "Google API Key"
2191
  msgstr ""
2192
 
2193
+ #: core/admin/page-import-gcal.php:96 core/lib/wpbc_all_translations.php:349
2194
  msgid "Please enter your Google API key. This field required to import events."
2195
  msgstr ""
2196
 
2197
+ #: core/admin/page-import-gcal.php:98 core/lib/wpbc_all_translations.php:350
2198
+ #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:364
2199
+ #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:402
2200
+ #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:433 inc/gateways/ideal/wpbc-gw-ideal.php:422
2201
  #: inc/gateways/ideal/wpbc-gw-ideal.php:477 inc/gateways/ideal/wpbc-gw-ideal.php:481
2202
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:329 inc/gateways/paypal/wpbc-gw-paypal.php:529
2203
  #: inc/gateways/sage/wpbc-gw-sage.php:508 inc/gateways/stripe/wpbc-gw-stripe.php:428
2204
+ #: inc/gateways/stripe/wpbc-gw-stripe.php:593 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:556
2205
+ #: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:721
2206
  msgid "Note:"
2207
  msgstr ""
2208
 
2209
+ #: core/admin/page-import-gcal.php:99 core/lib/wpbc_all_translations.php:351
2210
  #, php-format
2211
  msgid "You can check in this %sinstruction how to generate and use your Google API key%s."
2212
  msgstr ""
2213
 
2214
+ #: core/admin/page-import-gcal.php:120 core/lib/wpbc_all_translations.php:352
2215
  #: inc/_ps/admin/br-table-import-gcal-p.php:148
2216
  msgid "Google Calendar ID"
2217
  msgstr ""
2218
 
2219
+ #: core/admin/page-import-gcal.php:138 core/lib/wpbc_all_translations.php:353
2220
  #: core/sync/wpbc-gcal.php:295
2221
  msgid "Maximum number"
2222
  msgstr ""
2223
 
2224
+ #: core/admin/page-import-gcal.php:139 core/lib/wpbc_all_translations.php:354
2225
  #: core/sync/wpbc-gcal.php:298
2226
  msgid "You can specify the maximum number of events to import during one session."
2227
  msgstr ""
2228
 
2229
  #: core/admin/page-import-gcal.php:148 core/admin/page-import-gcal.php:230
2230
+ #: core/lib/wpbc_all_translations.php:355 core/sync/wpbc-gcal.php:184 core/sync/wpbc-gcal.php:248
2231
  msgid "Now"
2232
  msgstr ""
2233
 
2234
  #: core/admin/page-import-gcal.php:149 core/admin/page-import-gcal.php:231
2235
+ #: core/lib/wpbc_all_translations.php:356 core/sync/wpbc-gcal.php:185 core/sync/wpbc-gcal.php:249
2236
  msgid "00:00 today"
2237
  msgstr ""
2238
 
2239
  #: core/admin/page-import-gcal.php:150 core/admin/page-import-gcal.php:232
2240
+ #: core/lib/wpbc_all_translations.php:357 core/sync/wpbc-gcal.php:186 core/sync/wpbc-gcal.php:250
2241
  msgid "Start of current week"
2242
  msgstr ""
2243
 
2244
  #: core/admin/page-import-gcal.php:151 core/admin/page-import-gcal.php:233
2245
+ #: core/lib/wpbc_all_translations.php:358 core/sync/wpbc-gcal.php:187 core/sync/wpbc-gcal.php:251
2246
  msgid "Start of current month"
2247
  msgstr ""
2248
 
2249
  #: core/admin/page-import-gcal.php:152 core/admin/page-import-gcal.php:234
2250
+ #: core/lib/wpbc_all_translations.php:359 core/sync/wpbc-gcal.php:188 core/sync/wpbc-gcal.php:252
2251
  msgid "End of current month"
2252
  msgstr ""
2253
 
2254
+ #: core/admin/page-import-gcal.php:153 core/lib/wpbc_all_translations.php:360
2255
  #: core/sync/wpbc-gcal.php:189
2256
  msgid "The start of time"
2257
  msgstr ""
2258
 
2259
  #: core/admin/page-import-gcal.php:154 core/admin/page-import-gcal.php:236
2260
+ #: core/lib/wpbc_all_translations.php:361 core/sync/wpbc-gcal.php:190 core/sync/wpbc-gcal.php:254
2261
  msgid "Specific date / time"
2262
  msgstr ""
2263
 
2264
+ #: core/admin/page-import-gcal.php:160 core/lib/wpbc_all_translations.php:362
2265
  #: core/sync/wpbc-gcal.php:197
2266
  msgid "Select option, when to start retrieving events."
2267
  msgstr ""
2268
 
2269
  #: core/admin/page-import-gcal.php:175 core/admin/page-import-gcal.php:257
2270
+ #: core/lib/wpbc_all_translations.php:363 core/sync/wpbc-gcal.php:199 core/sync/wpbc-gcal.php:263
2271
  msgid "Offset"
2272
  msgstr ""
2273
 
2274
  #: core/admin/page-import-gcal.php:176 core/admin/page-import-gcal.php:258
2275
+ #: core/lib/wpbc_all_translations.php:364 core/sync/wpbc-gcal.php:199 core/sync/wpbc-gcal.php:263
2276
  msgid "Enter date / time"
2277
  msgstr ""
2278
 
2279
  #: core/admin/page-import-gcal.php:194 core/admin/page-import-gcal.php:276
2280
+ #: core/lib/wpbc_all_translations.php:365 core/sync/wpbc-gcal.php:205 core/sync/wpbc-gcal.php:269
2281
  msgid "seconds"
2282
  msgstr ""
2283
 
2284
  #: core/admin/page-import-gcal.php:216 core/admin/page-import-gcal.php:298
2285
+ #: core/lib/wpbc_all_translations.php:366 core/sync/wpbc-gcal.php:215
2286
  msgid ""
2287
  "You can specify an additional offset from you chosen start point. The offset can be negative."
2288
  msgstr ""
2289
 
2290
  #: core/admin/page-import-gcal.php:219 core/admin/page-import-gcal.php:301
2291
+ #: core/lib/wpbc_all_translations.php:367 core/sync/wpbc-gcal.php:218 core/sync/wpbc-gcal.php:282
2292
  #, php-format
2293
  msgid "Type your date in format %s. Example: %s"
2294
  msgstr ""
2295
 
2296
+ #: core/admin/page-import-gcal.php:235 core/lib/wpbc_all_translations.php:368
2297
  #: core/sync/wpbc-gcal.php:253
2298
  msgid "The end of time"
2299
  msgstr ""
2300
 
2301
  #: core/admin/page-import-gcal.php:241 core/admin/wpbc-toolbar-tiny.php:614
2302
+ #: core/lib/wpbc_all_translations.php:369 core/sync/wpbc-gcal.php:235
2303
  msgid "Until"
2304
  msgstr ""
2305
 
2306
+ #: core/admin/page-import-gcal.php:242 core/lib/wpbc_all_translations.php:370
2307
  #: core/sync/wpbc-gcal.php:261
2308
  msgid "Select option, when to stop retrieving events."
2309
  msgstr ""
2310
 
2311
+ #: core/admin/page-import-gcal.php:318 core/lib/wpbc_all_translations.php:371
2312
  msgid "To get Google Calendar API key please follow this instruction"
2313
  msgstr ""
2314
 
2315
+ #: core/admin/page-import-gcal.php:320 core/lib/wpbc_all_translations.php:372
2316
  #, php-format
2317
  msgid "Go to Google Developer Console: %s."
2318
  msgstr ""
2319
 
2320
+ #: core/admin/page-import-gcal.php:321 core/lib/wpbc_all_translations.php:373
2321
  msgid "Give your project a name and click \"Create\"."
2322
  msgstr ""
2323
 
2324
+ #: core/admin/page-import-gcal.php:322 core/lib/wpbc_all_translations.php:374
2325
  msgid "In the sidebar click on \"APIs & auth\"."
2326
  msgstr ""
2327
 
2328
+ #: core/admin/page-import-gcal.php:323 core/lib/wpbc_all_translations.php:375
2329
  msgid "Click APIs and make sure \"Calendar API\" is set to ON."
2330
  msgstr ""
2331
 
2332
+ #: core/admin/page-import-gcal.php:324 core/lib/wpbc_all_translations.php:376
2333
  msgid "Now click on \"Credentials\" in the sidebar."
2334
  msgstr ""
2335
 
2336
+ #: core/admin/page-import-gcal.php:325 core/lib/wpbc_all_translations.php:377
2337
  msgid "Under the section \"Public API access\" click the button \"Create new Key\"."
2338
  msgstr ""
2339
 
2340
+ #: core/admin/page-import-gcal.php:326 core/lib/wpbc_all_translations.php:378
2341
  msgid "On the popup click the button \"Server Key\" and click \"Create\"."
2342
  msgstr ""
2343
 
2344
+ #: core/admin/page-import-gcal.php:327 core/lib/wpbc_all_translations.php:379
2345
  #, php-format
2346
  msgid ""
2347
  "You will now see a table loaded with the top item being the API Key. Copy this and paste it into "
2348
  "%sGoogle API Key%s field at this page."
2349
  msgstr ""
2350
 
2351
+ #: core/admin/page-import-gcal.php:330 core/lib/wpbc_all_translations.php:380
2352
  msgid "Set Your Calendar to Public"
2353
  msgstr ""
2354
 
2355
  #: core/admin/page-import-gcal.php:332 core/admin/page-import-gcal.php:340
2356
+ #: core/lib/wpbc_all_translations.php:381
2357
  msgid "Navigate to your Google calendars."
2358
  msgstr ""
2359
 
2360
  #: core/admin/page-import-gcal.php:333 core/admin/page-import-gcal.php:341
2361
+ #: core/lib/wpbc_all_translations.php:382
2362
  msgid "Open the settings for the calendar."
2363
  msgstr ""
2364
 
2365
+ #: core/admin/page-import-gcal.php:334 core/lib/wpbc_all_translations.php:383
2366
  msgid "Click the \"Share this Calendar\" link."
2367
  msgstr ""
2368
 
2369
+ #: core/admin/page-import-gcal.php:335 core/lib/wpbc_all_translations.php:384
2370
  msgid "Click the checkbox to make calendar public. Do not check the other option."
2371
  msgstr ""
2372
 
2373
+ #: core/admin/page-import-gcal.php:338 core/lib/wpbc_all_translations.php:385
2374
  msgid "Find Your Calendar ID"
2375
  msgstr ""
2376
 
2377
+ #: core/admin/page-import-gcal.php:342 core/lib/wpbc_all_translations.php:386
2378
  #, php-format
2379
  msgid ""
2380
  "Now copy the Calendar ID to use in the plugin settings in your WordPress admin. Make sure to "
2382
  msgstr ""
2383
 
2384
  #: core/admin/page-import-gcal.php:407 core/admin/page-import-gcal.php:408
2385
+ #: core/admin/page-import-gcal.php:409 core/lib/wpbc_all_translations.php:387
2386
  #: core/sync/wpbc-gcal.php:443 core/sync/wpbc-gcal.php:466
2387
  msgid "Import Google Calendar Events"
2388
  msgstr ""
2389
 
2390
  #: core/admin/page-import-gcal.php:487 core/admin/page-import-gcal.php:534
2391
+ #: core/lib/wpbc_all_translations.php:388
2392
  msgid "Auto import events"
2393
  msgstr ""
2394
 
2395
  #: core/admin/page-import-gcal.php:489 core/admin/page-import-gcal.php:542
2396
+ #: core/lib/wpbc_all_translations.php:389
2397
  msgid "Default settings for retrieving events"
2398
  msgstr ""
2399
 
2400
+ #: core/admin/page-import-gcal.php:525 core/lib/wpbc_all_translations.php:390
2401
  msgid "Google Calendar - General Settings"
2402
  msgstr ""
2403
 
2404
+ #: core/admin/page-settings.php:88 core/admin/page-settings.php:203
2405
+ #: core/admin/wpbc-toolbar-tiny.php:242 core/lib/wpbc_all_translations.php:391
2406
  #: inc/_ps/form/class-wpbc-form-help.php:115
2407
  msgid "Calendar"
2408
  msgstr ""
2409
 
2410
+ #: core/admin/page-settings.php:93 core/admin/page-settings.php:210
2411
+ #: core/lib/wpbc_all_translations.php:392 core/wpbc-functions.php:1948
2412
  #: inc/_bm/admin/page-availability.php:47 inc/_bm/admin/page-availability.php:504
2413
  #: inc/_bm/admin/page-availability.php:596 inc/_bm/admin/page-availability.php:597
2414
+ #: inc/_ps/wpbc-form-templates.php:307 inc/_ps/wpbc-form-templates.php:333
2415
+ #: inc/_ps/wpbc-form-templates.php:350
2416
  msgid "Availability"
2417
  msgstr ""
2418
 
2419
+ #: core/admin/page-settings.php:103 core/admin/page-settings.php:224
2420
+ #: core/lib/wpbc_all_translations.php:393
2421
  msgid "Booking Admin Panel"
2422
  msgstr ""
2423
 
2424
+ #: core/admin/page-settings.php:108 core/admin/page-settings.php:231
2425
+ #: core/lib/wpbc_all_translations.php:1739 js/wpbc-gutenberg.js:682
2426
+ msgid "Timeline"
2427
+ msgstr ""
2428
+
2429
+ #: core/admin/page-settings.php:116 core/lib/wpbc_all_translations.php:394
2430
  msgid "Auto cancellation / approval"
2431
  msgstr ""
2432
 
2433
+ #: core/admin/page-settings.php:126 core/admin/page-settings.php:268
2434
+ #: core/lib/wpbc_all_translations.php:395
2435
  msgid "Plugin Menu"
2436
  msgstr ""
2437
 
2438
+ #: core/admin/page-settings.php:131 core/lib/wpbc_all_translations.php:396
2439
  msgid "Uninstall"
2440
  msgstr ""
2441
 
2442
+ #: core/admin/page-settings.php:243 core/lib/wpbc_all_translations.php:397
2443
  msgid "Auto cancellation / auto approval of bookings"
2444
  msgstr ""
2445
 
2446
+ #: core/admin/page-settings.php:261 core/lib/wpbc_all_translations.php:398
2447
  msgid "Information"
2448
  msgstr ""
2449
 
2450
+ #: core/admin/page-settings.php:275 core/lib/wpbc_all_translations.php:399
2451
  msgid "Uninstall / deactivation"
2452
  msgstr ""
2453
 
2454
  #: core/admin/page-up.php:38 core/admin/wpbc-dashboard.php:505
2455
+ #: core/lib/wpbc_all_translations.php:400 inc/_ps/admin/page-settings-up.php:38
2456
  msgid "Upgrade"
2457
  msgstr ""
2458
 
2459
  #: core/admin/wpbc-class-listing.php:103 core/admin/wpbc-toolbar-tiny.php:1520
2460
+ #: core/admin/wpbc-toolbar-tiny.php:1529 core/lib/wpbc_all_translations.php:401
2461
  #: inc/_bl/admin/page-coupons.php:1003 inc/_bl/admin/page-coupons.php:1005
2462
  #: inc/_bl/wpbc-search-availability.php:629 inc/_bl/wpdev-booking-search-widget.php:75
2463
  #: inc/_bm/admin/page-availability.php:814 inc/_bm/admin/page-cost-deposit.php:81
2467
  msgid "Nothing Found"
2468
  msgstr ""
2469
 
2470
+ #: core/admin/wpbc-class-listing.php:125 core/lib/wpbc_all_translations.php:402
2471
  #: inc/_ps/wpbc-print.php:83
2472
  msgid "Labels"
2473
  msgstr ""
2474
 
2475
+ #: core/admin/wpbc-class-listing.php:129 core/lib/wpbc_all_translations.php:403
2476
  msgid "Booking Data"
2477
  msgstr ""
2478
 
2479
+ #: core/admin/wpbc-class-listing.php:130 core/lib/wpbc_all_translations.php:404
2480
  msgid "Booking Dates"
2481
  msgstr ""
2482
 
2483
+ #: core/admin/wpbc-class-listing.php:133 core/lib/wpbc_all_translations.php:405
2484
  msgid "Show ALL dates of booking"
2485
  msgstr ""
2486
 
2487
+ #: core/admin/wpbc-class-listing.php:139 core/lib/wpbc_all_translations.php:406
2488
  msgid "Show only check in/out dates"
2489
  msgstr ""
2490
 
2491
+ #: core/admin/wpbc-class-listing.php:221 core/lib/wpbc_all_translations.php:407
2492
  msgid "Resource not exist"
2493
  msgstr ""
2494
 
2495
+ #: core/admin/wpbc-class-listing.php:252 core/lib/wpbc_all_translations.php:408
2496
  #: inc/_bs/lib_s.php:294 inc/_bs/lib_s.php:309
2497
  msgid "Unknown"
2498
  msgstr ""
2499
 
2500
+ #: core/admin/wpbc-class-listing.php:335 core/lib/wpbc_all_translations.php:409
2501
  msgid "Imported"
2502
  msgstr ""
2503
 
2504
+ #: core/admin/wpbc-class-listing.php:399 core/lib/wpbc_all_translations.php:410
2505
  msgid "Move to trash"
2506
  msgstr ""
2507
 
2508
+ #: core/admin/wpbc-class-listing.php:405 core/admin/wpbc-toolbars.php:1011
2509
+ #: core/lib/wpbc_all_translations.php:411 core/timeline/v2/wpbc-class-timeline_v2.php:2612
2510
  msgid "Restore"
2511
  msgstr ""
2512
 
2513
+ #: core/admin/wpbc-class-listing.php:409 core/lib/wpbc_all_translations.php:412
2514
  msgid "Do you really want to delete this booking ?"
2515
  msgstr ""
2516
 
2517
+ #: core/admin/wpbc-class-listing.php:411 core/lib/wpbc_all_translations.php:413
2518
  #: inc/_bl/admin/page-coupons.php:814 inc/_bm/admin/page-seasons.php:608
2519
  msgid "Completely Delete"
2520
  msgstr ""
2521
 
2522
+ #: core/admin/wpbc-class-listing.php:420 core/admin/wpbc-toolbars.php:949
2523
+ #: core/lib/wpbc_all_translations.php:414 core/timeline/v2/wpbc-class-timeline_v2.php:2622
2524
  msgid "Approve"
2525
  msgstr ""
2526
 
2527
+ #: core/admin/wpbc-class-listing.php:425 core/admin/wpbc-toolbars.php:967
2528
+ #: core/lib/wpbc_all_translations.php:415
2529
  msgid "Do you really want to set booking as pending ?"
2530
  msgstr ""
2531
 
2532
+ #: core/admin/wpbc-class-listing.php:436 core/lib/wpbc_all_translations.php:416
2533
  #: inc/_bs/lib_s.php:337
2534
  msgid "Created"
2535
  msgstr ""
2536
 
2537
  #: core/admin/wpbc-class-timeline.php:85 core/admin/wpbc-class-timeline.php:94
2538
+ #: core/lib/wpbc_all_translations.php:417 core/timeline/v2/wpbc-class-timeline_v2.php:89
2539
+ #: core/timeline/v2/wpbc-class-timeline_v2.php:98 core/timeline/v2/wpbc-class-timeline_v2.php:107
2540
  msgid "Mon"
2541
  msgstr ""
2542
 
2543
  #: core/admin/wpbc-class-timeline.php:86 core/admin/wpbc-class-timeline.php:95
2544
+ #: core/lib/wpbc_all_translations.php:418 core/timeline/v2/wpbc-class-timeline_v2.php:90
2545
+ #: core/timeline/v2/wpbc-class-timeline_v2.php:99 core/timeline/v2/wpbc-class-timeline_v2.php:108
2546
  msgid "Tue"
2547
  msgstr ""
2548
 
2549
  #: core/admin/wpbc-class-timeline.php:87 core/admin/wpbc-class-timeline.php:96
2550
+ #: core/lib/wpbc_all_translations.php:419 core/timeline/v2/wpbc-class-timeline_v2.php:91
2551
+ #: core/timeline/v2/wpbc-class-timeline_v2.php:100 core/timeline/v2/wpbc-class-timeline_v2.php:109
2552
  msgid "Wed"
2553
  msgstr ""
2554
 
2555
  #: core/admin/wpbc-class-timeline.php:88 core/admin/wpbc-class-timeline.php:97
2556
+ #: core/lib/wpbc_all_translations.php:420 core/timeline/v2/wpbc-class-timeline_v2.php:92
2557
+ #: core/timeline/v2/wpbc-class-timeline_v2.php:101 core/timeline/v2/wpbc-class-timeline_v2.php:110
2558
  msgid "Thu"
2559
  msgstr ""
2560
 
2561
  #: core/admin/wpbc-class-timeline.php:89 core/admin/wpbc-class-timeline.php:98
2562
+ #: core/lib/wpbc_all_translations.php:421 core/timeline/v2/wpbc-class-timeline_v2.php:93
2563
+ #: core/timeline/v2/wpbc-class-timeline_v2.php:102 core/timeline/v2/wpbc-class-timeline_v2.php:111
2564
  msgid "Fri"
2565
  msgstr ""
2566
 
2567
  #: core/admin/wpbc-class-timeline.php:90 core/admin/wpbc-class-timeline.php:99
2568
+ #: core/lib/wpbc_all_translations.php:422 core/timeline/v2/wpbc-class-timeline_v2.php:94
2569
+ #: core/timeline/v2/wpbc-class-timeline_v2.php:103 core/timeline/v2/wpbc-class-timeline_v2.php:112
2570
  msgid "Sat"
2571
  msgstr ""
2572
 
2573
  #: core/admin/wpbc-class-timeline.php:91 core/admin/wpbc-class-timeline.php:100
2574
+ #: core/lib/wpbc_all_translations.php:423 core/timeline/v2/wpbc-class-timeline_v2.php:95
2575
+ #: core/timeline/v2/wpbc-class-timeline_v2.php:104 core/timeline/v2/wpbc-class-timeline_v2.php:113
2576
  msgid "Sun"
2577
  msgstr ""
2578
 
2579
  #: core/admin/wpbc-class-timeline.php:1208 core/admin/wpbc-class-timeline.php:1453
2580
+ #: core/lib/wpbc_all_translations.php:424 core/timeline/v2/wpbc-class-timeline_v2.php:1383
2581
+ #: core/timeline/v2/wpbc-class-timeline_v2.php:1396 inc/_ps/wpbc-form-templates.php:155
2582
  msgid "Times"
2583
  msgstr ""
2584
 
2585
+ #: core/admin/wpbc-class-timeline.php:2231 core/lib/wpbc_all_translations.php:425
2586
+ #: core/timeline/v2/wpbc-class-timeline_v2.php:2625
2587
+ #: core/timeline/v2/wpbc-class-timeline_v2.php:2646
2588
  msgid "Decline"
2589
  msgstr ""
2590
 
2591
+ #: core/admin/wpbc-class-timeline.php:2232 core/lib/wpbc_all_translations.php:426
2592
+ #: core/timeline/v2/wpbc-class-timeline_v2.php:2647
2593
  msgid "Pay"
2594
  msgstr ""
2595
 
2596
  #: core/admin/wpbc-class-timeline.php:2285 core/admin/wpbc-class-timeline.php:2288
2597
+ #: core/lib/wpbc_all_translations.php:427 core/timeline/v2/wpbc-class-timeline_v2.php:2706
2598
+ #: core/timeline/v2/wpbc-class-timeline_v2.php:2708 core/wpbc-functions.php:1993
2599
+ #: inc/_bs/lib_s.php:42 inc/_bs/lib_s.php:271 inc/_bs/lib_s.php:273
2600
+ #: inc/_ps/admin/page-settings-form.php:352 inc/_ps/admin/page-settings-form.php:363
2601
  msgid "Payment"
2602
  msgstr ""
2603
 
2604
  #: core/admin/wpbc-dashboard.php:35 core/admin/wpbc-toolbar-tiny.php:227
2605
+ #: core/lib/wpbc_all_translations.php:428 core/lib/wpdev-booking-widget.php:14
2606
  #: core/wpbc-functions.php:1844 core/wpbc.php:138 core/wpbc.php:167 core/wpbc.php:178
2607
  #: core/wpbc.php:189
2608
  msgid "Booking Calendar"
2609
  msgstr ""
2610
 
2611
  #: core/admin/wpbc-dashboard.php:319 core/admin/wpbc-dashboard.php:333
2612
+ #: core/lib/wpbc_all_translations.php:429
2613
  msgid "Video guide"
2614
  msgstr ""
2615
 
2616
+ #: core/admin/wpbc-dashboard.php:344 core/lib/wpbc_all_translations.php:430
2617
  msgid "Support"
2618
  msgstr ""
2619
 
2620
+ #: core/admin/wpbc-dashboard.php:355 core/lib/wpbc_all_translations.php:431
2621
  msgid "Getting Started"
2622
  msgstr ""
2623
 
2624
+ #: core/admin/wpbc-dashboard.php:359 core/lib/wpbc_all_translations.php:432
2625
  msgid "Help Info"
2626
  msgstr ""
2627
 
2628
+ #: core/admin/wpbc-dashboard.php:362 core/admin/wpbc-toolbars.php:441
2629
+ #: core/lib/wpbc_all_translations.php:433
2630
  msgid "FAQ"
2631
  msgstr ""
2632
 
2633
+ #: core/admin/wpbc-dashboard.php:365 core/lib/wpbc_all_translations.php:434
2634
  msgid "Contact email"
2635
  msgstr ""
2636
 
2637
+ #: core/admin/wpbc-dashboard.php:368 core/lib/wpbc_all_translations.php:435
2638
  msgid "Rate plugin (thanks:)"
2639
  msgstr ""
2640
 
2641
+ #: core/admin/wpbc-dashboard.php:446 core/lib/wpbc_all_translations.php:436
2642
  msgid "Current version"
2643
  msgstr ""
2644
 
2645
+ #: core/admin/wpbc-dashboard.php:451 core/lib/wpbc_all_translations.php:437
2646
  msgid "Demo"
2647
  msgstr ""
2648
 
2649
+ #: core/admin/wpbc-dashboard.php:455 core/lib/wpbc_all_translations.php:438
2650
  msgid "Version"
2651
  msgstr ""
2652
 
2653
+ #: core/admin/wpbc-dashboard.php:475 core/lib/wpbc_all_translations.php:439
2654
  msgid "Used for"
2655
  msgstr ""
2656
 
2657
+ #: core/admin/wpbc-dashboard.php:484 core/lib/wpbc_all_translations.php:440
2658
  msgid "websites"
2659
  msgstr ""
2660
 
2661
+ #: core/admin/wpbc-dashboard.php:486 core/lib/wpbc_all_translations.php:441
2662
  msgid "website"
2663
  msgstr ""
2664
 
2665
+ #: core/admin/wpbc-dashboard.php:492 core/lib/wpbc_all_translations.php:442
2666
  msgid "Release date"
2667
  msgstr ""
2668
 
2669
+ #: core/admin/wpbc-dashboard.php:507 core/lib/wpbc_all_translations.php:443
2670
  msgid "Explore Premium Features"
2671
  msgstr ""
2672
 
2673
+ #: core/admin/wpbc-dashboard.php:525 core/lib/wpbc_all_translations.php:444
2674
  msgid "Statistic"
2675
  msgstr ""
2676
 
2677
+ #: core/admin/wpbc-dashboard.php:529 core/lib/wpbc_all_translations.php:445
2678
  msgid "New (unverified) booking(s)"
2679
  msgstr ""
2680
 
2681
+ #: core/admin/wpbc-dashboard.php:533 core/lib/wpbc_all_translations.php:446
2682
  msgid "Pending booking(s)"
2683
  msgstr ""
2684
 
2685
+ #: core/admin/wpbc-dashboard.php:538 core/lib/wpbc_all_translations.php:447
2686
  msgid "Agenda"
2687
  msgstr ""
2688
 
2689
+ #: core/admin/wpbc-dashboard.php:542 core/lib/wpbc_all_translations.php:448
2690
  msgid "New booking(s) made today"
2691
  msgstr ""
2692
 
2693
+ #: core/admin/wpbc-dashboard.php:546 core/lib/wpbc_all_translations.php:449
2694
  msgid "Bookings for today"
2695
  msgstr ""
2696
 
2697
  #: core/admin/wpbc-toolbar-tiny.php:35 core/admin/wpbc-toolbar-tiny.php:2463
2698
+ #: core/lib/wpbc_all_translations.php:450
2699
  msgid "Insert booking calendar"
2700
  msgstr ""
2701
 
2702
  #: core/admin/wpbc-toolbar-tiny.php:36 core/admin/wpbc-toolbar-tiny.php:2464
2703
+ #: core/lib/wpbc_all_translations.php:451
2704
  msgid "Booking calendar"
2705
  msgstr ""
2706
 
2707
+ #: core/admin/wpbc-toolbar-tiny.php:225 core/lib/wpbc_all_translations.php:452
2708
  msgid "Insert Shortcode"
2709
  msgstr ""
2710
 
2711
+ #: core/admin/wpbc-toolbar-tiny.php:241 core/lib/wpbc_all_translations.php:453
2712
+ #: inc/_ps/admin/api-settings-p.php:197
2713
  msgid "TimeLine"
2714
  msgstr ""
2715
 
2716
+ #: core/admin/wpbc-toolbar-tiny.php:244 core/lib/wpbc_all_translations.php:454
2717
  msgid "Resources Selection"
2718
  msgstr ""
2719
 
2720
+ #: core/admin/wpbc-toolbar-tiny.php:246 core/lib/wpbc_all_translations.php:455
2721
+ #: core/wpbc-functions.php:2011 inc/_bl/admin/page-search.php:298 inc/_bl/biz_l.php:829
2722
  #: inc/_bl/biz_l.php:843
2723
  msgid "Search"
2724
  msgstr ""
2725
 
2726
+ #: core/admin/wpbc-toolbar-tiny.php:247 core/lib/wpbc_all_translations.php:456
2727
  msgid "Only Form"
2728
  msgstr ""
2729
 
2730
+ #: core/admin/wpbc-toolbar-tiny.php:250 core/lib/wpbc_all_translations.php:457
2731
  #: inc/_ps/form/class-wpbc-form-help.php:754
2732
  msgid "Other"
2733
  msgstr ""
2734
 
2735
+ #: core/admin/wpbc-toolbar-tiny.php:298 core/lib/wpbc_all_translations.php:458
2736
  msgid "Insert into page"
2737
  msgstr ""
2738
 
2739
  #: core/admin/wpbc-toolbar-tiny.php:371 core/admin/wpbc-toolbar-tiny.php:1151
2740
+ #: core/lib/wpbc_all_translations.php:459 core/wpbc.php:177 inc/_ps/admin/page-resources.php:40
2741
+ #: inc/_ps/p-toolbar.php:736
2742
  msgid "Booking resources"
2743
  msgstr ""
2744
 
2745
+ #: core/admin/wpbc-toolbar-tiny.php:372 core/lib/wpbc_all_translations.php:460
2746
  msgid "Select booking resources. Please use CTRL to select multiple booking resources."
2747
  msgstr ""
2748
 
2749
+ #: core/admin/wpbc-toolbar-tiny.php:406 core/lib/wpbc_all_translations.php:461
2750
  #: js/wpbc-gutenberg.js:734
2751
  msgid "View mode"
2752
  msgstr ""
2753
 
2754
+ #: core/admin/wpbc-toolbar-tiny.php:407 core/lib/wpbc_all_translations.php:462
2755
  msgid "Select type of view format"
2756
  msgstr ""
2757
 
2758
  #: core/admin/wpbc-toolbar-tiny.php:429 core/admin/wpbc-toolbar-tiny.php:438
2759
+ #: core/admin/wpbc-toolbars.php:785 core/lib/wpbc_all_translations.php:463
2760
  msgid "All bookings"
2761
  msgstr ""
2762
 
2763
+ #: core/admin/wpbc-toolbar-tiny.php:461 core/lib/wpbc_all_translations.php:464
2764
  msgid "Select number of months to scroll after loading"
2765
  msgstr ""
2766
 
2767
+ #: core/admin/wpbc-toolbar-tiny.php:482 core/lib/wpbc_all_translations.php:465
2768
  #: js/wpbc-gutenberg.js:740
2769
  msgid "Number of days to scroll"
2770
  msgstr ""
2771
 
2772
+ #: core/admin/wpbc-toolbar-tiny.php:483 core/lib/wpbc_all_translations.php:466
2773
  msgid "Select number of days to scroll after loading"
2774
  msgstr ""
2775
 
2776
+ #: core/admin/wpbc-toolbar-tiny.php:503 core/admin/wpbc-toolbars.php:1503
2777
+ #: core/lib/wpbc_all_translations.php:467 js/wpbc-gutenberg.js:746
2778
  msgid "Start Date"
2779
  msgstr ""
2780
 
2781
+ #: core/admin/wpbc-toolbar-tiny.php:581 core/lib/wpbc_all_translations.php:468
2782
  msgid "Select start date"
2783
  msgstr ""
2784
 
2785
  #: core/admin/wpbc-toolbar-tiny.php:674 core/admin/wpbc-toolbar-tiny.php:917
2786
  #: core/admin/wpbc-toolbar-tiny.php:1591 core/admin/wpbc-toolbar-tiny.php:1783
2787
+ #: core/lib/wpbc_all_translations.php:469 core/lib/wpdev-booking-widget.php:118
2788
+ #: inc/_ps/admin/br-table-import-gcal-p.php:170 inc/_ps/p-toolbar.php:937
2789
  #: inc/_ps/wpbc-booking-select-widget.php:153 js/wpbc-gutenberg.js:562 js/wpbc-gutenberg.js:638
2790
  #: js/wpbc-gutenberg.js:896 js/wpbc-gutenberg.js:1261
2791
  msgid "Booking resource"
2793
 
2794
  #: core/admin/wpbc-toolbar-tiny.php:675 core/admin/wpbc-toolbar-tiny.php:918
2795
  #: core/admin/wpbc-toolbar-tiny.php:1592 core/admin/wpbc-toolbar-tiny.php:1784
2796
+ #: core/lib/wpbc_all_translations.php:470 inc/_ps/admin/br-table-import-gcal-p.php:184
2797
  msgid "Select booking resource"
2798
  msgstr ""
2799
 
2800
  #: core/admin/wpbc-toolbar-tiny.php:699 core/admin/wpbc-toolbar-tiny.php:1200
2801
+ #: core/admin/wpbc-toolbar-tiny.php:1616 core/lib/wpbc_all_translations.php:471
2802
  #: inc/_bm/m-toolbar.php:30 inc/_ps/wpbc-booking-select-widget.php:238
2803
  msgid "Select default custom booking form"
2804
  msgstr ""
2805
 
2806
  #: core/admin/wpbc-toolbar-tiny.php:710 core/admin/wpbc-toolbar-tiny.php:940
2807
+ #: core/admin/wpbc-toolbar-tiny.php:1288 core/admin/wpbc-toolbars.php:1618
2808
+ #: core/lib/wpbc_all_translations.php:472 core/lib/wpdev-booking-widget.php:135
2809
  #: inc/_ps/wpbc-booking-select-widget.php:201
2810
  msgid "Visible months"
2811
  msgstr ""
2812
 
2813
  #: core/admin/wpbc-toolbar-tiny.php:711 core/admin/wpbc-toolbar-tiny.php:941
2814
+ #: core/admin/wpbc-toolbar-tiny.php:1289 core/lib/wpbc_all_translations.php:473
2815
  msgid "Select number of month to show for calendar."
2816
  msgstr ""
2817
 
2818
  #: core/admin/wpbc-toolbar-tiny.php:731 core/admin/wpbc-toolbar-tiny.php:961
2819
+ #: core/admin/wpbc-toolbar-tiny.php:1307 core/lib/wpbc_all_translations.php:474
2820
  msgid "Start month:"
2821
  msgstr ""
2822
 
2823
  #: core/admin/wpbc-toolbar-tiny.php:789 core/admin/wpbc-toolbar-tiny.php:1019
2824
+ #: core/admin/wpbc-toolbar-tiny.php:1365 core/lib/wpbc_all_translations.php:475
2825
  msgid "Select start month of calendar"
2826
  msgstr ""
2827
 
2828
  #: core/admin/wpbc-toolbar-tiny.php:796 core/admin/wpbc-toolbar-tiny.php:1026
2829
+ #: core/admin/wpbc-toolbar-tiny.php:1258 core/lib/wpbc_all_translations.php:476
2830
  msgid "Show advanced settings"
2831
  msgstr ""
2832
 
2833
  #: core/admin/wpbc-toolbar-tiny.php:797 core/admin/wpbc-toolbar-tiny.php:1027
2834
+ #: core/admin/wpbc-toolbar-tiny.php:1259 core/lib/wpbc_all_translations.php:477
2835
  msgid "Hide advanced settings"
2836
  msgstr ""
2837
 
2838
  #: core/admin/wpbc-toolbar-tiny.php:807 core/admin/wpbc-toolbar-tiny.php:1037
2839
+ #: core/admin/wpbc-toolbar-tiny.php:1269 core/lib/wpbc_all_translations.php:478
2840
  #, php-format
2841
  msgid "Setting advanced parameters of the calendar. %sLike width, height and structure %s"
2842
  msgstr ""
2843
 
2844
  #: core/admin/wpbc-toolbar-tiny.php:808 core/admin/wpbc-toolbar-tiny.php:1038
2845
+ #: core/lib/wpbc_all_translations.php:479
2846
  #, php-format
2847
  msgid "%s or minimum and fixed number of days selection for the specific day of week or season.%s"
2848
  msgstr ""
2849
 
2850
  #: core/admin/wpbc-toolbar-tiny.php:818 core/admin/wpbc-toolbar-tiny.php:1048
2851
+ #: core/admin/wpbc-toolbar-tiny.php:1372 core/admin/wpbc-toolbars.php:242
2852
+ #: core/lib/wpbc_all_translations.php:480 inc/_ps/form/class-wpbc-field-help-checkbox.php:146
2853
  #: inc/_ps/form/class-wpbc-field-help-select.php:111 js/wpbc-gutenberg.js:577
2854
  #: js/wpbc-gutenberg.js:650 js/wpbc-gutenberg.js:837
2855
  msgid "Options"
2856
  msgstr ""
2857
 
2858
  #: core/admin/wpbc-toolbar-tiny.php:839 core/admin/wpbc-toolbar-tiny.php:1069
2859
+ #: core/admin/wpbc-toolbar-tiny.php:1393 core/lib/wpbc_all_translations.php:481
2860
  #, php-format
2861
  msgid "Please read more about the possible customizations of these %soptions%s %shere%s"
2862
  msgstr ""
2863
 
2864
  #: core/admin/wpbc-toolbar-tiny.php:843 core/admin/wpbc-toolbar-tiny.php:1073
2865
+ #: core/admin/wpbc-toolbar-tiny.php:1397 core/lib/wpbc_all_translations.php:482
2866
  msgid "Specify the full width of calendar, height of date cell and number of months in one row. "
2867
  msgstr ""
2868
 
2869
  #: core/admin/wpbc-toolbar-tiny.php:844 core/admin/wpbc-toolbar-tiny.php:852
2870
  #: core/admin/wpbc-toolbar-tiny.php:1074 core/admin/wpbc-toolbar-tiny.php:1398
2871
+ #: core/lib/wpbc_all_translations.php:483 inc/_bm/admin/page-availability.php:510
2872
  #: inc/_ps/form/class-wpbc-form-help.php:418 inc/_ps/form/class-wpbc-form-help.php:565
2873
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:230
2874
  #: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:158
2876
  msgstr ""
2877
 
2878
  #: core/admin/wpbc-toolbar-tiny.php:845 core/admin/wpbc-toolbar-tiny.php:1075
2879
+ #: core/admin/wpbc-toolbar-tiny.php:1399 core/lib/wpbc_all_translations.php:484
2880
  msgid ""
2881
  "Calendar have 2 months in a row, the cell height is 30px and calendar full width 568px (possible "
2882
  "to use percentage for width: 100%)"
2884
 
2885
  #: core/admin/wpbc-toolbar-tiny.php:846 core/admin/wpbc-toolbar-tiny.php:854
2886
  #: core/admin/wpbc-toolbar-tiny.php:1076 core/admin/wpbc-toolbar-tiny.php:1400
2887
+ #: core/lib/wpbc_all_translations.php:485
2888
  msgid "Code Example"
2889
  msgstr ""
2890
 
2891
+ #: core/admin/wpbc-toolbar-tiny.php:851 core/lib/wpbc_all_translations.php:486
2892
  msgid ""
2893
  "Specify that during certain seasons (or days of week), the specific minimum number of days must "
2894
  "be booked. "
2895
  msgstr ""
2896
 
2897
+ #: core/admin/wpbc-toolbar-tiny.php:853 core/lib/wpbc_all_translations.php:487
2898
  msgid ""
2899
  "Visitor can select only 4 days starting at Monday, 3 or 7 days – Friday, 2 days – Saturday, etc…"
2900
  msgstr ""
2901
 
2902
+ #: core/admin/wpbc-toolbar-tiny.php:860 core/lib/wpbc_all_translations.php:488
2903
  #, php-format
2904
  msgid ""
2905
  "Please, read more about the shortcodes %shere%s or JavaScript customization of the specific "
2907
  msgstr ""
2908
 
2909
  #: core/admin/wpbc-toolbar-tiny.php:883 core/admin/wpbc-toolbar-tiny.php:1098
2910
+ #: core/lib/wpbc_all_translations.php:489
2911
  msgid "Aggregate booking dates from other resources"
2912
  msgstr ""
2913
 
2914
  #: core/admin/wpbc-toolbar-tiny.php:884 core/admin/wpbc-toolbar-tiny.php:1099
2915
+ #: core/lib/wpbc_all_translations.php:490
2916
  msgid ""
2917
  "Select booking resources, for getting booking dates from them and set such dates as unavailable "
2918
  "in destination calendar."
2919
  msgstr ""
2920
 
2921
+ #: core/admin/wpbc-toolbar-tiny.php:1130 core/lib/wpbc_all_translations.php:491
2922
+ #: inc/_bl/admin/page-search.php:423 inc/_bl/admin/page-search.php:456
2923
  #: inc/_bm/admin/api-settings-m.php:298 inc/_bm/admin/page-availability.php:252
2924
  #: inc/_bm/admin/page-cost-advanced.php:124 inc/_bm/admin/page-cost-deposit.php:341
2925
  #: inc/_bm/admin/page-cost-rate.php:214 inc/_bm/admin/page-cost.php:237
2926
+ #: inc/_ps/admin/page-resources.php:201 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:871
2927
+ #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:886
2928
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:479
2929
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:814
2930
  #: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:361 inc/gateways/sage/wpbc-gw-sage.php:875
2931
+ #: inc/gateways/stripe/wpbc-gw-stripe.php:948 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1050
2932
  msgid "Note!"
2933
  msgstr ""
2934
 
2935
+ #: core/admin/wpbc-toolbar-tiny.php:1131 core/lib/wpbc_all_translations.php:492
2936
  #, php-format
2937
  msgid ""
2938
  "This shortcode %s is using for selection of the booking form of specific booking resources in "
2939
  "selectbox"
2940
  msgstr ""
2941
 
2942
+ #: core/admin/wpbc-toolbar-tiny.php:1144 core/admin/wpbc-toolbars.php:1666
2943
+ #: core/lib/wpbc_all_translations.php:493 inc/_ps/admin/br-table-import-gcal-p.php:173
2944
  #: inc/_ps/wpbc-booking-select-widget.php:163
2945
  msgid "All"
2946
  msgstr ""
2947
 
2948
+ #: core/admin/wpbc-toolbar-tiny.php:1153 core/lib/wpbc_all_translations.php:494
2949
  #: inc/_ps/wpbc-booking-select-widget.php:175
2950
  msgid ""
2951
  "Select booking resources, for showing in selectbox. Please use CTRL to select multiple booking "
2952
  "resources."
2953
  msgstr ""
2954
 
2955
+ #: core/admin/wpbc-toolbar-tiny.php:1178 core/lib/wpbc_all_translations.php:495
2956
  #: inc/_ps/wpbc-booking-select-widget.php:181
2957
  msgid "Preselected resource"
2958
  msgstr ""
2959
 
2960
+ #: core/admin/wpbc-toolbar-tiny.php:1179 core/lib/wpbc_all_translations.php:496
2961
  msgid "Define preselected resource."
2962
  msgstr ""
2963
 
2964
+ #: core/admin/wpbc-toolbar-tiny.php:1204 core/lib/wpbc_all_translations.php:497
2965
+ #: inc/_bm/admin/api-settings-m.php:485 inc/_ps/p-toolbar.php:1222
2966
  msgid "Default Form"
2967
  msgstr ""
2968
 
2969
  #: core/admin/wpbc-toolbar-tiny.php:1220 core/admin/wpbc-toolbar-tiny.php:1229
2970
+ #: core/lib/wpbc_all_translations.php:498
2971
  msgid "Please select the resource:"
2972
  msgstr ""
2973
 
2974
+ #: core/admin/wpbc-toolbar-tiny.php:1221 core/lib/wpbc_all_translations.php:499
2975
  msgid "Title near your select box."
2976
  msgstr ""
2977
 
2978
+ #: core/admin/wpbc-toolbar-tiny.php:1238 core/lib/wpbc_all_translations.php:500
2979
  #: inc/_ps/wpbc-booking-select-widget.php:247
2980
  msgid "First option title"
2981
  msgstr ""
2982
 
2983
+ #: core/admin/wpbc-toolbar-tiny.php:1239 core/lib/wpbc_all_translations.php:501
2984
+ #: inc/_ps/personal.php:535 js/wpbc-gutenberg.js:771
2985
  msgid "Please Select"
2986
  msgstr ""
2987
 
2988
+ #: core/admin/wpbc-toolbar-tiny.php:1240 core/lib/wpbc_all_translations.php:502
2989
  #: inc/_ps/wpbc-booking-select-widget.php:254
2990
  msgid "First option in dropdown list."
2991
  msgstr ""
2992
 
2993
+ #: core/admin/wpbc-toolbar-tiny.php:1240 core/lib/wpbc_all_translations.php:503
2994
  #: inc/_ps/wpbc-booking-select-widget.php:256
2995
  msgid "Please leave it empty if you want to skip it."
2996
  msgstr ""
2997
 
2998
  #: core/admin/wpbc-toolbar-tiny.php:1430 core/admin/wpbc-toolbar-tiny.php:1710
2999
+ #: core/lib/wpbc_all_translations.php:504
3000
  msgid "Select shortcode to insert"
3001
  msgstr ""
3002
 
3003
+ #: core/admin/wpbc-toolbar-tiny.php:1442 core/lib/wpbc_all_translations.php:505
3004
  msgid "Search form"
3005
  msgstr ""
3006
 
3007
+ #: core/admin/wpbc-toolbar-tiny.php:1445 core/lib/wpbc_all_translations.php:506
3008
  #: inc/_bl/wpbc-search-availability.php:167 inc/_bl/wpbc-search-availability.php:619
3009
  #: inc/_bl/wpbc-search-availability.php:634
3010
  msgid "Search results"
3011
  msgstr ""
3012
 
3013
+ #: core/admin/wpbc-toolbar-tiny.php:1464 core/lib/wpbc_all_translations.php:507
3014
  msgid "Check this box to show search results on other page"
3015
  msgstr ""
3016
 
3017
+ #: core/admin/wpbc-toolbar-tiny.php:1481 core/lib/wpbc_all_translations.php:508
3018
  msgid "URL of search results:"
3019
  msgstr ""
3020
 
3021
+ #: core/admin/wpbc-toolbar-tiny.php:1483 core/lib/wpbc_all_translations.php:509
3022
  msgid "Type the URL of search results page."
3023
  msgstr ""
3024
 
3025
+ #: core/admin/wpbc-toolbar-tiny.php:1500 core/lib/wpbc_all_translations.php:510
3026
  msgid "Title of Search results:"
3027
  msgstr ""
3028
 
3029
  #: core/admin/wpbc-toolbar-tiny.php:1501 core/admin/wpbc-toolbar-tiny.php:1510
3030
+ #: core/lib/wpbc_all_translations.php:511 inc/_bl/wpdev-booking-search-widget.php:79
3031
  msgid "Result(s) Found"
3032
  msgstr ""
3033
 
3034
+ #: core/admin/wpbc-toolbar-tiny.php:1502 core/lib/wpbc_all_translations.php:512
3035
  msgid "Type the title of Search results."
3036
  msgstr ""
3037
 
3038
+ #: core/admin/wpbc-toolbar-tiny.php:1502 core/lib/wpbc_all_translations.php:513
3039
  msgid "show number of search results"
3040
  msgstr ""
3041
 
3042
+ #: core/admin/wpbc-toolbar-tiny.php:1519 core/lib/wpbc_all_translations.php:514
3043
  msgid "Nothing Found Message:"
3044
  msgstr ""
3045
 
3046
+ #: core/admin/wpbc-toolbar-tiny.php:1521 core/lib/wpbc_all_translations.php:515
3047
  msgid "Type the message, when nothing found."
3048
  msgstr ""
3049
 
3050
+ #: core/admin/wpbc-toolbar-tiny.php:1541 core/lib/wpbc_all_translations.php:516
3051
  msgid "Search only for users:"
3052
  msgstr ""
3053
 
3054
+ #: core/admin/wpbc-toolbar-tiny.php:1543 core/lib/wpbc_all_translations.php:517
3055
  msgid ""
3056
  "Type IDs of the users (separated by comma \",\") for searching availability only for these "
3057
  "users, or leave it blank for searching for all users."
3058
  msgstr ""
3059
 
3060
+ #: core/admin/wpbc-toolbar-tiny.php:1563 core/lib/wpbc_all_translations.php:518
3061
  #, php-format
3062
  msgid ""
3063
  "This shortcode %s is using for showing the search results at specific page, if the search form "
3064
  "is submit showing the search results at different page"
3065
  msgstr ""
3066
 
3067
+ #: core/admin/wpbc-toolbar-tiny.php:1625 core/lib/wpbc_all_translations.php:519
3068
  msgid "date"
3069
  msgstr ""
3070
 
3071
+ #: core/admin/wpbc-toolbar-tiny.php:1685 core/lib/wpbc_all_translations.php:520
3072
  msgid "Define date for booking"
3073
  msgstr ""
3074
 
3075
+ #: core/admin/wpbc-toolbar-tiny.php:1723 core/lib/wpbc_all_translations.php:521
3076
+ #: inc/_ps/p-toolbar.php:237
3077
  msgid "Edit Booking"
3078
  msgstr ""
3079
 
3080
+ #: core/admin/wpbc-toolbar-tiny.php:1726 core/lib/wpbc_all_translations.php:522
3081
  msgid "Show listing of customer bookings"
3082
  msgstr ""
3083
 
3084
+ #: core/admin/wpbc-toolbar-tiny.php:1729 core/lib/wpbc_all_translations.php:523
3085
  msgid "Show info about Booking Resource"
3086
  msgstr ""
3087
 
3088
+ #: core/admin/wpbc-toolbar-tiny.php:1745 core/lib/wpbc_all_translations.php:524
3089
  #, php-format
3090
  msgid ""
3091
  "This shortcode %s is used on a page, where visitors can %smodify%s their own booking(s), %scancel"
3092
  "%s or make %spayment%s after receiving an admin email payment request"
3093
  msgstr ""
3094
 
3095
+ #: core/admin/wpbc-toolbar-tiny.php:1746 core/lib/wpbc_all_translations.php:525
3096
  #, php-format
3097
  msgid ""
3098
  "The content of field %sURL to edit bookings%s on the %sgeneral booking settings page%s must link "
3100
  msgstr ""
3101
 
3102
  #: core/admin/wpbc-toolbar-tiny.php:1747 core/admin/wpbc-toolbar-tiny.php:1763
3103
+ #: core/lib/wpbc_all_translations.php:526
3104
  #, php-format
3105
  msgid "Email templates, which use shortcodes: %s, will be linked to this page"
3106
  msgstr ""
3107
 
3108
+ #: core/admin/wpbc-toolbar-tiny.php:1761 core/lib/wpbc_all_translations.php:527
3109
  #, php-format
3110
  msgid ""
3111
  "This shortcode %s is used on a page, where visitors can %sview listing%s of their own booking(s)"
3112
  msgstr ""
3113
 
3114
+ #: core/admin/wpbc-toolbar-tiny.php:1762 core/lib/wpbc_all_translations.php:528
3115
  #, php-format
3116
  msgid ""
3117
  "The content of field %sURL of page for customer bookings listing%s on the %sgeneral booking "
3118
  "settings page%s must link to this page"
3119
  msgstr ""
3120
 
3121
+ #: core/admin/wpbc-toolbar-tiny.php:1764 core/lib/wpbc_all_translations.php:529
3122
  #, php-format
3123
  msgid "%s You can use in this shortcode the same parameters as for %s shortcode"
3124
  msgstr ""
3125
 
3126
+ #: core/admin/wpbc-toolbar-tiny.php:1764 core/lib/wpbc_all_translations.php:530
3127
  msgid "Trick"
3128
  msgstr ""
3129
 
3130
+ #: core/admin/wpbc-toolbar-tiny.php:1805 core/lib/wpbc_all_translations.php:531
3131
  #: inc/_bl/admin/api-settings-l.php:466 inc/_ps/admin/br-table-export-feeds.php:79
3132
  #: inc/_ps/admin/br-table-import-gcal-p.php:63
3133
  msgid "Capacity"
3134
  msgstr ""
3135
 
3136
+ #: core/admin/wpbc-toolbar-tiny.php:1811 core/lib/wpbc_all_translations.php:532
3137
  msgid "Select type of info to show."
3138
  msgstr ""
3139
 
3140
  #: core/admin/wpbc-toolbar-tiny.php:2121 core/admin/wpbc-toolbar-tiny.php:2164
3141
  #: core/admin/wpbc-toolbar-tiny.php:2248 core/admin/wpbc-toolbar-tiny.php:2337
3142
+ #: core/lib/wpbc_all_translations.php:533
3143
  msgid "No booking resources"
3144
  msgstr ""
3145
 
3146
+ #: core/admin/wpbc-toolbars.php:41 core/lib/wpbc_all_translations.php:534
3147
  msgid "Filters"
3148
  msgstr ""
3149
 
3150
+ #: core/admin/wpbc-toolbars.php:350 core/lib/wpbc_all_translations.php:535
3151
  msgid "Expand Advanced Toolbar"
3152
  msgstr ""
3153
 
3154
+ #: core/admin/wpbc-toolbars.php:357 core/lib/wpbc_all_translations.php:536
3155
  msgid "Collapse Advanced Toolbar"
3156
  msgstr ""
3157
 
3158
+ #: core/admin/wpbc-toolbars.php:379 core/lib/wpbc_all_translations.php:537
3159
  msgid "Send email notification to customer after approval, cancellation or deletion of bookings"
3160
  msgstr ""
3161
 
3162
+ #: core/admin/wpbc-toolbars.php:380 core/lib/wpbc_all_translations.php:538
3163
  msgid "Emails sending"
3164
  msgstr ""
3165
 
3166
+ #: core/admin/wpbc-toolbars.php:405 core/lib/wpbc_all_translations.php:539
3167
  msgid "Booking ID"
3168
  msgstr ""
3169
 
3170
+ #: core/admin/wpbc-toolbars.php:408 core/admin/wpbc-toolbars.php:2241
3171
+ #: core/lib/wpbc_all_translations.php:540
3172
  msgid "Go"
3173
  msgstr ""
3174
 
3175
+ #: core/admin/wpbc-toolbars.php:442 core/lib/wpbc_all_translations.php:541
3176
  msgid "Technical Support"
3177
  msgstr ""
3178
 
3179
+ #: core/admin/wpbc-toolbars.php:444 core/lib/wpbc_all_translations.php:542
3180
  msgid "About Booking Calendar"
3181
  msgstr ""
3182
 
3183
+ #: core/admin/wpbc-toolbars.php:511 core/admin/wpbc-toolbars.php:691
3184
+ #: core/admin/wpbc-toolbars.php:896 core/admin/wpbc-toolbars.php:1516
3185
+ #: core/lib/wpbc_all_translations.php:543 inc/_bs/lib_s.php:84
3186
  msgid "Apply"
3187
  msgstr ""
3188
 
3189
+ #: core/admin/wpbc-toolbars.php:512 core/lib/wpbc_all_translations.php:544
3190
  msgid "Refresh booking listing"
3191
  msgstr ""
3192
 
3193
+ #: core/admin/wpbc-toolbars.php:526 core/lib/wpbc_all_translations.php:545
3194
  msgid "Reset filter to default values"
3195
  msgstr ""
3196
 
3197
+ #: core/admin/wpbc-toolbars.php:552 core/admin/wpbc-toolbars.php:767
3198
+ #: core/lib/wpbc_all_translations.php:546
3199
  msgid "Any"
3200
  msgstr ""
3201
 
3202
+ #: core/admin/wpbc-toolbars.php:573 core/admin/wpbc-toolbars.php:807
3203
+ #: core/lib/wpbc_all_translations.php:547
3204
  msgid "week"
3205
  msgstr ""
3206
 
3207
+ #: core/admin/wpbc-toolbars.php:574 core/admin/wpbc-toolbars.php:808
3208
+ #: core/lib/wpbc_all_translations.php:548
3209
  msgid "weeks"
3210
  msgstr ""
3211
 
3212
+ #: core/admin/wpbc-toolbars.php:575 core/admin/wpbc-toolbars.php:809
3213
+ #: core/lib/wpbc_all_translations.php:549
3214
  msgid "month"
3215
  msgstr ""
3216
 
3217
+ #: core/admin/wpbc-toolbars.php:576 core/admin/wpbc-toolbars.php:577
3218
+ #: core/admin/wpbc-toolbars.php:578 core/admin/wpbc-toolbars.php:810
3219
+ #: core/admin/wpbc-toolbars.php:811 core/admin/wpbc-toolbars.php:812
3220
+ #: core/lib/wpbc_all_translations.php:550
3221
  msgid "months"
3222
  msgstr ""
3223
 
3224
+ #: core/admin/wpbc-toolbars.php:586 core/admin/wpbc-toolbars.php:821
3225
+ #: core/lib/wpbc_all_translations.php:551
3226
  msgid "Filter bookings by booking dates"
3227
  msgstr ""
3228
 
3229
+ #: core/admin/wpbc-toolbars.php:590 core/lib/wpbc_all_translations.php:552
3230
  msgid "Current dates"
3231
  msgstr ""
3232
 
3233
+ #: core/admin/wpbc-toolbars.php:591 core/admin/wpbc-toolbars.php:825
3234
+ #: core/lib/wpbc_all_translations.php:553
3235
  msgid "Today"
3236
  msgstr ""
3237
 
3238
+ #: core/admin/wpbc-toolbars.php:592 core/lib/wpbc_all_translations.php:554
3239
  msgid "Previous dates"
3240
  msgstr ""
3241
 
3242
+ #: core/admin/wpbc-toolbars.php:593 core/admin/wpbc-toolbars.php:826
3243
+ #: core/lib/wpbc_all_translations.php:555
3244
  msgid "All dates"
3245
  msgstr ""
3246
 
3247
+ #: core/admin/wpbc-toolbars.php:595 core/lib/wpbc_all_translations.php:556
3248
  msgid "Today check in/out"
3249
  msgstr ""
3250
 
3251
+ #: core/admin/wpbc-toolbars.php:596 core/lib/wpbc_all_translations.php:557
3252
  msgid "Check In - Tomorrow"
3253
  msgstr ""
3254
 
3255
+ #: core/admin/wpbc-toolbars.php:597 core/lib/wpbc_all_translations.php:558
3256
  msgid "Check Out - Tomorrow"
3257
  msgstr ""
3258
 
3259
+ #: core/admin/wpbc-toolbars.php:602 core/lib/wpbc_all_translations.php:559
3260
  #: core/wpbc-functions.php:2521
3261
  msgid "Next"
3262
  msgstr ""
3263
 
3264
+ #: core/admin/wpbc-toolbars.php:626 core/admin/wpbc-toolbars.php:831
3265
+ #: core/lib/wpbc_all_translations.php:560
3266
  msgid "Prior"
3267
  msgstr ""
3268
 
3269
+ #: core/admin/wpbc-toolbars.php:666 core/admin/wpbc-toolbars.php:871
3270
+ #: core/lib/wpbc_all_translations.php:561
3271
  msgid "Check-in"
3272
  msgstr ""
3273
 
3274
+ #: core/admin/wpbc-toolbars.php:678 core/admin/wpbc-toolbars.php:883
3275
+ #: core/lib/wpbc_all_translations.php:562
3276
  msgid "Check-out"
3277
  msgstr ""
3278
 
3279
+ #: core/admin/wpbc-toolbars.php:750 core/lib/wpbc_all_translations.php:563
3280
  msgid "Order by"
3281
  msgstr ""
3282
 
3283
+ #: core/admin/wpbc-toolbars.php:764 core/lib/wpbc_all_translations.php:564
3284
  msgid "Exist"
3285
  msgstr ""
3286
 
3287
+ #: core/admin/wpbc-toolbars.php:765 core/lib/wpbc_all_translations.php:565
3288
  msgid "In Trash"
3289
  msgstr ""
3290
 
3291
+ #: core/admin/wpbc-toolbars.php:786 core/lib/wpbc_all_translations.php:566
3292
  msgid "New bookings"
3293
  msgstr ""
3294
 
3295
+ #: core/admin/wpbc-toolbars.php:823 core/lib/wpbc_all_translations.php:567
3296
  msgid "Creation"
3297
  msgstr ""
3298
 
3299
+ #: core/admin/wpbc-toolbars.php:950 core/lib/wpbc_all_translations.php:568
3300
  msgid "Approve selected bookings"
3301
  msgstr ""
3302
 
3303
+ #: core/admin/wpbc-toolbars.php:965 core/lib/wpbc_all_translations.php:569
3304
  msgid "Set selected bookings as pending"
3305
  msgstr ""
3306
 
3307
+ #: core/admin/wpbc-toolbars.php:995 core/lib/wpbc_all_translations.php:570
3308
  msgid "Move selected bookings to trash"
3309
  msgstr ""
3310
 
3311
+ #: core/admin/wpbc-toolbars.php:1012 core/lib/wpbc_all_translations.php:571
3312
  msgid "Restore selected bookings"
3313
  msgstr ""
3314
 
3315
+ #: core/admin/wpbc-toolbars.php:1028 core/lib/wpbc_all_translations.php:572
3316
+ #: core/timeline/v2/wpbc-class-timeline_v2.php:2616 inc/_bl/admin/page-coupons.php:216
3317
+ #: inc/_bl/admin/page-coupons.php:222 inc/_bm/admin/page-availability.php:240
3318
+ #: inc/_bm/admin/page-availability.php:246 inc/_bm/admin/page-cost-valuation.php:567
3319
+ #: inc/_bm/admin/page-cost.php:223 inc/_bm/admin/page-cost.php:233
3320
+ #: inc/_bm/admin/page-seasons.php:201 inc/_bm/admin/page-seasons.php:207 inc/_bm/m-toolbar.php:287
3321
  #: inc/_ps/admin/page-resources.php:189 inc/_ps/admin/page-resources.php:195
3322
  msgid "Delete"
3323
  msgstr ""
3324
 
3325
+ #: core/admin/wpbc-toolbars.php:1029 core/lib/wpbc_all_translations.php:573
3326
  msgid "Delete selected bookings"
3327
  msgstr ""
3328
 
3329
+ #: core/admin/wpbc-toolbars.php:1031 core/lib/wpbc_all_translations.php:574
3330
  #: core/sync/wpbc-gcal-class.php:671
3331
  msgid "Do you really want to delete selected booking(s) ?"
3332
  msgstr ""
3333
 
3334
+ #: core/admin/wpbc-toolbars.php:1047 core/lib/wpbc_all_translations.php:575
3335
  msgid "Reason of cancellation"
3336
  msgstr ""
3337
 
3338
+ #: core/admin/wpbc-toolbars.php:1075 core/admin/wpbc-toolbars.php:1076 core/lib/wpbc-ajax.php:332
3339
+ msgid "Empty Trash"
3340
+ msgstr ""
3341
+
3342
+ #: core/admin/wpbc-toolbars.php:1106 core/lib/wpbc_all_translations.php:576
3343
  msgid "Read All"
3344
  msgstr ""
3345
 
3346
+ #: core/admin/wpbc-toolbars.php:1107 core/lib/wpbc_all_translations.php:577
3347
  msgid "Mark as read all bookings"
3348
  msgstr ""
3349
 
3350
+ #: core/admin/wpbc-toolbars.php:1120 core/lib/wpbc_all_translations.php:578
3351
  msgid "Read"
3352
  msgstr ""
3353
 
3354
+ #: core/admin/wpbc-toolbars.php:1121 core/lib/wpbc_all_translations.php:579
3355
  msgid "Mark as read selected bookings"
3356
  msgstr ""
3357
 
3358
+ #: core/admin/wpbc-toolbars.php:1135 core/lib/wpbc_all_translations.php:580
3359
  msgid "Unread"
3360
  msgstr ""
3361
 
3362
+ #: core/admin/wpbc-toolbars.php:1136 core/lib/wpbc_all_translations.php:581
3363
  msgid "Mark as Unread selected bookings"
3364
  msgstr ""
3365
 
3366
+ #: core/admin/wpbc-toolbars.php:1185 core/admin/wpbc-toolbars.php:1245
3367
+ #: core/lib/wpbc_all_translations.php:585
 
 
 
 
 
 
 
 
 
 
 
 
3368
  msgid "Show day"
3369
  msgstr ""
3370
 
3371
+ #: core/admin/wpbc-toolbars.php:1202 core/admin/wpbc-toolbars.php:1259
3372
+ #: core/lib/wpbc_all_translations.php:586
3373
  msgid "Show week"
3374
  msgstr ""
3375
 
3376
+ #: core/admin/wpbc-toolbars.php:1219 core/admin/wpbc-toolbars.php:1273
3377
+ #: core/lib/wpbc_all_translations.php:582
3378
+ msgid "Show month"
3379
+ msgstr ""
3380
+
3381
+ #: core/admin/wpbc-toolbars.php:1287 core/lib/wpbc_all_translations.php:587
3382
  msgid "Show 2 months"
3383
  msgstr ""
3384
 
3385
+ #: core/admin/wpbc-toolbars.php:1344 core/admin/wpbc-toolbars.php:1358
3386
+ #: core/admin/wpbc-toolbars.php:1405 core/lib/wpbc_all_translations.php:588
3387
  msgid "Previous 4 weeks"
3388
  msgstr ""
3389
 
3390
+ #: core/admin/wpbc-toolbars.php:1345 core/admin/wpbc-toolbars.php:1359
3391
+ #: core/admin/wpbc-toolbars.php:1406 core/lib/wpbc_all_translations.php:589
3392
  msgid "Previous week"
3393
  msgstr ""
3394
 
3395
+ #: core/admin/wpbc-toolbars.php:1346 core/admin/wpbc-toolbars.php:1360
3396
+ #: core/admin/wpbc-toolbars.php:1407 core/lib/wpbc_all_translations.php:590
3397
  msgid "Current week"
3398
  msgstr ""
3399
 
3400
+ #: core/admin/wpbc-toolbars.php:1347 core/admin/wpbc-toolbars.php:1361
3401
+ #: core/admin/wpbc-toolbars.php:1408 core/lib/wpbc_all_translations.php:591
3402
  msgid "Next week"
3403
  msgstr ""
3404
 
3405
+ #: core/admin/wpbc-toolbars.php:1348 core/admin/wpbc-toolbars.php:1362
3406
+ #: core/admin/wpbc-toolbars.php:1409 core/lib/wpbc_all_translations.php:592
3407
  msgid "Next 4 weeks"
3408
  msgstr ""
3409
 
3410
+ #: core/admin/wpbc-toolbars.php:1372 core/admin/wpbc-toolbars.php:1422
3411
+ #: core/admin/wpbc-toolbars.php:1437 core/lib/wpbc_all_translations.php:593
3412
  msgid "Previous 3 months"
3413
  msgstr ""
3414
 
3415
+ #: core/admin/wpbc-toolbars.php:1373 core/admin/wpbc-toolbars.php:1423
3416
+ #: core/admin/wpbc-toolbars.php:1438 core/lib/wpbc_all_translations.php:594
3417
  msgid "Previous month"
3418
  msgstr ""
3419
 
3420
+ #: core/admin/wpbc-toolbars.php:1374 core/admin/wpbc-toolbars.php:1424
3421
+ #: core/admin/wpbc-toolbars.php:1439 core/lib/wpbc_all_translations.php:595
3422
  msgid "Current month"
3423
  msgstr ""
3424
 
3425
+ #: core/admin/wpbc-toolbars.php:1375 core/admin/wpbc-toolbars.php:1425
3426
+ #: core/admin/wpbc-toolbars.php:1440 core/lib/wpbc_all_translations.php:596
3427
  msgid "Next month"
3428
  msgstr ""
3429
 
3430
+ #: core/admin/wpbc-toolbars.php:1376 core/admin/wpbc-toolbars.php:1426
3431
+ #: core/admin/wpbc-toolbars.php:1441 core/lib/wpbc_all_translations.php:597
3432
  msgid "Next 3 months"
3433
  msgstr ""
3434
 
3435
+ #: core/admin/wpbc-toolbars.php:1390 core/lib/wpbc_all_translations.php:598
3436
  msgid "Previous 7 days"
3437
  msgstr ""
3438
 
3439
+ #: core/admin/wpbc-toolbars.php:1391 core/lib/wpbc_all_translations.php:599
3440
  msgid "Previous day"
3441
  msgstr ""
3442
 
3443
+ #: core/admin/wpbc-toolbars.php:1392 core/lib/wpbc_all_translations.php:600
3444
  msgid "Current day"
3445
  msgstr ""
3446
 
3447
+ #: core/admin/wpbc-toolbars.php:1393 core/lib/wpbc_all_translations.php:601
3448
  msgid "Next day"
3449
  msgstr ""
3450
 
3451
+ #: core/admin/wpbc-toolbars.php:1394 core/lib/wpbc_all_translations.php:602
3452
  msgid "Next 7 days"
3453
  msgstr ""
3454
 
3455
+ #: core/admin/wpbc-toolbars.php:1665 core/lib/wpbc_all_translations.php:603
3456
  msgid "Number of months in one row"
3457
  msgstr ""
3458
 
3459
+ #: core/admin/wpbc-toolbars.php:1710 core/lib/wpbc_all_translations.php:604
3460
  msgid "Calendar width"
3461
  msgstr ""
3462
 
3463
+ #: core/admin/wpbc-toolbars.php:1758 core/lib/wpbc_all_translations.php:605
3464
  msgid "Calendar cell height"
3465
  msgstr ""
3466
 
3467
+ #: core/admin/wpbc-toolbars.php:1867 core/admin/wpbc-toolbars.php:1868
3468
+ #: core/lib/wpbc_all_translations.php:606
3469
  msgid "Send email notification to customer about this operation"
3470
  msgstr ""
3471
 
3472
+ #: core/admin/wpbc-toolbars.php:1910 core/admin/wpbc-toolbars.php:1911
3473
+ #: core/lib/wpbc_all_translations.php:607
3474
  msgid "Add to Google Calendar"
3475
  msgstr ""
3476
 
3477
+ #: core/admin/wpbc-toolbars.php:2101 core/lib/wpbc_all_translations.php:608
3478
  #: inc/gateways/page-gateways.php:1396 inc/gateways/page-gateways.php:1414
3479
  msgid "Total"
3480
  msgstr ""
3481
 
3482
+ #: core/admin/wpbc-toolbars.php:2237 core/lib/wpbc_all_translations.php:609
3483
  msgid "ID or Title"
3484
  msgstr ""
3485
 
3486
+ #: core/any/api-emails.php:507 core/lib/wpbc_all_translations.php:610
3487
  msgid "Email copy to"
3488
  msgstr ""
3489
 
3490
  #: core/class/wpbc-class-dismiss.php:26 core/class/wpbc-class-dismiss.php:30
3491
+ #: core/lib/wpbc_all_translations.php:611 core/wpbc-functions.php:2788 core/wpbc-functions.php:2811
3492
  msgid "Dismiss"
3493
  msgstr ""
3494
 
3495
+ #: core/class/wpbc-class-notices.php:26 core/lib/wpbc_all_translations.php:612
3496
  #, php-format
3497
  msgid ""
3498
  "Probably you updated your paid version of Booking Calendar by free version or update process "
3499
  "failed. You can request the new update of your paid version at %1sthis page%2s."
3500
  msgstr ""
3501
 
3502
+ #: core/class/wpbc-class-welcome.php:1773 core/class/wpbc-class-welcome.php:2259
3503
+ #: core/lib/wpbc_all_translations.php:613 inc/_ps/admin/page-settings-up.php:144
3504
  msgid "Purchase"
3505
  msgstr ""
3506
 
3507
+ #: core/class/wpbc-class-welcome.php:1773 core/class/wpbc-class-welcome.php:2259
3508
+ #: core/lib/wpbc_all_translations.php:614 inc/_ps/admin/page-settings-up.php:144
3509
  msgid "Upgrade Now"
3510
  msgstr ""
3511
 
3512
  #: core/lib/wpbc-ajax.php:33 core/lib/wpbc-ajax.php:37 core/lib/wpbc-ajax.php:67
3513
+ #: core/lib/wpbc-ajax.php:82 core/lib/wpbc_all_translations.php:615
3514
+ #: inc/gateways/ideal/wpbc-gw-ideal.php:1113
3515
  #, php-format
3516
  msgid ""
3517
  "%sError!%s Request do not pass security check! Please refresh the page and try one more time."
3518
  msgstr ""
3519
 
3520
+ #: core/lib/wpbc-ajax.php:138 core/lib/wpbc_all_translations.php:616
3521
  msgid "Set as Unread"
3522
  msgstr ""
3523
 
3524
+ #: core/lib/wpbc-ajax.php:140 core/lib/wpbc_all_translations.php:617
3525
  msgid "Set as Read"
3526
  msgstr ""
3527
 
3528
+ #: core/lib/wpbc-ajax.php:208 core/lib/wpbc_all_translations.php:618
3529
  msgid "Set as Approved"
3530
  msgstr ""
3531
 
3532
+ #: core/lib/wpbc-ajax.php:210 core/lib/wpbc_all_translations.php:619
3533
  msgid "Set as Pending"
3534
  msgstr ""
3535
 
3536
+ #: core/lib/wpbc-ajax.php:231 core/lib/wpbc-ajax.php:378 core/lib/wpbc_all_translations.php:620
3537
  msgid "Reason for cancellation here"
3538
  msgstr ""
3539
 
3540
+ #: core/lib/wpbc-ajax.php:232 core/lib/wpbc-ajax.php:379 core/lib/wpbc_all_translations.php:621
3541
  msgid "Reason of cancellation here"
3542
  msgstr ""
3543
 
3544
+ #: core/lib/wpbc-ajax.php:277 core/lib/wpbc_all_translations.php:622
3545
  msgid "Moved to trash"
3546
  msgstr ""
3547
 
3548
+ #: core/lib/wpbc-ajax.php:285 core/lib/wpbc_all_translations.php:623
3549
  msgid "Restored"
3550
  msgstr ""
3551
 
3552
+ #: core/lib/wpbc-ajax.php:358
3553
+ #, php-format
3554
+ msgid "Deleted %d bookings from trash"
3555
+ msgstr ""
3556
+
3557
+ #: core/lib/wpbc-ajax.php:529 core/lib/wpbc_all_translations.php:624 inc/_ps/personal.php:160
3558
  msgid "Saved"
3559
  msgstr ""
3560
 
3561
+ #: core/lib/wpbc-booking-new.php:37 core/lib/wpbc_all_translations.php:625
3562
  msgid "The code you entered is incorrect"
3563
  msgstr ""
3564
 
3565
+ #: core/lib/wpbc-booking-new.php:138 core/lib/wpbc_all_translations.php:626
3566
  msgid "Updating..."
3567
  msgstr ""
3568
 
3569
+ #: core/lib/wpbc-booking-new.php:163 core/lib/wpbc_all_translations.php:627
3570
+ #: inc/_ps/personal.php:2368 inc/_ps/personal.php:2559
3571
  msgid "Updated successfully"
3572
  msgstr ""
3573
 
3574
+ #: core/lib/wpbc-booking-new.php:851 core/lib/wpbc_all_translations.php:628
3575
  msgid "Error!"
3576
  msgstr ""
3577
 
3578
+ #: core/lib/wpbc-booking-new.php:852 core/lib/wpbc_all_translations.php:629
3579
  msgid ""
3580
  "Probably these date(s) just was booking by other visitor. Please reload this page and make "
3581
  "booking again."
3582
  msgstr ""
3583
 
3584
+ #: core/lib/wpbc_all_translations.php:31
3585
+ msgid ""
3586
+ "Check the box, if you want to use syntax highlighter during customization booking form at "
3587
+ "Settings - Form page."
3588
+ msgstr ""
3589
+
3590
+ #: core/lib/wpbc_all_translations.php:583
3591
+ msgid "Show 3 months"
3592
+ msgstr ""
3593
+
3594
+ #: core/lib/wpbc_all_translations.php:584
3595
+ msgid "Show year"
3596
+ msgstr ""
3597
+
3598
+ #: core/lib/wpbc_all_translations.php:630
3599
  msgid "Number of months"
3600
  msgstr ""
3601
 
3602
+ #: core/lib/wpbc_all_translations.php:631 inc/_bs/lib_s.php:46 inc/_bs/lib_s.php:291
3603
  msgid "Paid OK"
3604
  msgstr ""
3605
 
3606
+ #: core/lib/wpbc_all_translations.php:632
3607
  msgid "Email is sent to Visitor after Canceling of booking (moved to trash)."
3608
  msgstr ""
3609
 
3610
+ #: core/lib/wpbc_all_translations.php:633
3611
  #, php-format
3612
  msgid ""
3613
  "Probabaly you updated your paid version of Booking Calendar by free version or update process "
3614
  "failed. You can request the new update of your paid version at %1sthis page%2s."
3615
  msgstr ""
3616
 
3617
+ #: core/lib/wpbc_all_translations.php:634
3618
  msgid "Copy to admin"
3619
  msgstr ""
3620
 
3621
+ #: core/lib/wpbc_all_translations.php:635
3622
  msgid "Enable / disable sending copy of this email notification to admin"
3623
  msgstr ""
3624
 
3625
+ #: core/lib/wpbc_all_translations.php:636
3626
  msgid "Customization of email template, which is sending to Visitor after approval of booking"
3627
  msgstr ""
3628
 
3629
+ #: core/lib/wpbc_all_translations.php:637
3630
  msgid "Email is sending to Visitor after Approval of booking."
3631
  msgstr ""
3632
 
3633
+ #: core/lib/wpbc_all_translations.php:638
3634
  msgid "Customization of email template, which is sending to Visitor after Cancellation of booking"
3635
  msgstr ""
3636
 
3637
+ #: core/lib/wpbc_all_translations.php:639
3638
  msgid "Email is sending to Visitor after Deleting of booking."
3639
  msgstr ""
3640
 
3641
+ #: core/lib/wpbc_all_translations.php:640
3642
  msgid ""
3643
  "Customization of email template, which is sending to Visitor, when booking status is set to "
3644
  "Pending"
3645
  msgstr ""
3646
 
3647
+ #: core/lib/wpbc_all_translations.php:641
3648
  msgid "Email is sending to Visitor after booking set as Pending."
3649
  msgstr ""
3650
 
3651
+ #: core/lib/wpbc_all_translations.php:642
3652
  msgid "Email is sending to Visitor after Canceling of booking (moved to trash)."
3653
  msgstr ""
3654
 
3655
+ #: core/lib/wpbc_all_translations.php:643
3656
  msgid "Confgure ULR feed(s) at this settings page."
3657
  msgstr ""
3658
 
3659
+ #: core/lib/wpbc_all_translations.php:644
3660
  msgid "Reject"
3661
  msgstr ""
3662
 
3663
+ #: core/lib/wpbc_all_translations.php:645
3664
  msgid "Visit these (previosly configured URL feeds) pages for downloading .ics files."
3665
  msgstr ""
3666
 
3667
+ #: core/lib/wpbc_all_translations.php:646
3668
  msgid "Google Calendar"
3669
  msgstr ""
3670
 
3671
+ #: core/lib/wpbc_all_translations.php:647
3672
  msgid "Events Import"
3673
  msgstr ""
3674
 
3675
+ #: core/lib/wpbc_all_translations.php:648
3676
  msgid "Import Settings"
3677
  msgstr ""
3678
 
3679
+ #: core/lib/wpbc_all_translations.php:649
3680
  msgid "Customization of synchronization with Google Calendar"
3681
  msgstr ""
3682
 
3683
+ #: core/lib/wpbc_all_translations.php:650 core/wpbc-debug.php:123 core/wpbc-emails.php:447
3684
  #: core/wpbc.php:342 core/wpbc.php:383 inc/_bl/admin/page-coupons.php:1003
3685
  #: inc/_bl/admin/page-coupons.php:1005 inc/_bm/admin/page-availability.php:814
3686
  #: inc/_bm/admin/page-cost-deposit.php:81 inc/_bm/admin/page-cost-early-late-booking.php:82
3687
  #: inc/_bm/admin/page-cost-rate.php:77 inc/_bm/admin/page-cost-valuation.php:103
3688
  #: inc/_bm/admin/page-seasons.php:826 inc/_bm/admin/page-seasons.php:828 inc/_bs/lib_s.php:344
3689
+ #: inc/_ps/hash/wpbc-hash-functions.php:67 inc/_ps/hash/wpbc-hash-functions.php:106
3690
+ #: inc/_ps/hash/wpbc-hash-functions.php:134 inc/_ps/hash/wpbc-hash-functions.php:162
3691
  #: inc/gateways/stripe/wpbc-gw-stripe.php:311 inc/gateways/stripe/wpbc-gw-stripe.php:927
3692
+ #: inc/gateways/stripe/wpbc-gw-stripe.php:938 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:308
3693
+ #: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1068
3694
+ #: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1082
3695
+ #: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1093
3696
  msgid "Error"
3697
  msgstr ""
3698
 
3699
+ #: core/lib/wpbc_all_translations.php:651
3700
  msgid "does not exist"
3701
  msgstr ""
3702
 
3703
+ #: core/lib/wpbc_all_translations.php:652 core/lib/wpdev-booking-class.php:500
3704
  msgid "Calendar is loading..."
3705
  msgstr ""
3706
 
3707
+ #: core/lib/wpbc_all_translations.php:653 core/lib/wpdev-booking-class.php:684
3708
+ #: core/lib/wpdev-booking-class.php:745 inc/_ps/personal.php:887 inc/_ps/personal.php:898
3709
  msgid "Wrong booking hash in URL (probably expired)"
3710
  msgstr ""
3711
 
3712
+ #: core/lib/wpbc_all_translations.php:654
3713
  msgid "Booking resource type is not defined. Its can be, when at the URL is wrong booking hash."
3714
  msgstr ""
3715
 
3716
+ #: core/lib/wpbc_all_translations.php:655 core/lib/wpdev-booking-class.php:865
3717
  #, php-format
3718
  msgid ""
3719
  "%sWarning! Booking calendar for this booking resource are already at the page, please check more "
3720
  "about this issue at %sthis page%s"
3721
  msgstr ""
3722
 
3723
+ #: core/lib/wpbc_all_translations.php:656 core/lib/wpdev-booking-class.php:1145
3724
  #: core/lib/wpdev-booking-widget.php:40 inc/_ps/wpbc-booking-select-widget.php:55
3725
  msgid "You need to use special shortcode [bookingedit] for booking editing."
3726
  msgstr ""
3727
 
3728
+ #: core/lib/wpbc_all_translations.php:657 core/lib/wpdev-booking-class.php:1019
3729
+ #: core/lib/wpdev-booking-class.php:1290 core/lib/wpdev-booking-class.php:1292
3730
+ #: inc/_ps/hash/wpbc-hash-functions.php:106 inc/_ps/hash/wpbc-hash-functions.php:134
3731
+ #: inc/_ps/hash/wpbc-hash-functions.php:162 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1464
3732
  msgid "Wrong booking hash in URL. Probably hash is expired."
3733
  msgstr ""
3734
 
3735
+ #: core/lib/wpbc_all_translations.php:658 core/lib/wpdev-booking-class.php:1023
3736
+ #: core/lib/wpdev-booking-class.php:1296 js/wpbc-gutenberg.js:1114 js/wpbc-gutenberg.js:1200
3737
  msgid "You do not set any parameters for booking editing"
3738
  msgstr ""
3739
 
3740
+ #: core/lib/wpbc_all_translations.php:659 core/lib/wpdev-booking-class.php:1025
3741
+ #: core/lib/wpdev-booking-class.php:1298
3742
  #, php-format
3743
  msgid "Please check more about configuration at %sthis page%s"
3744
  msgstr ""
3745
 
3746
+ #: core/lib/wpbc_all_translations.php:660 core/lib/wpdev-booking-widget.php:108
3747
  msgid "Booking form with calendar"
3748
  msgstr ""
3749
 
3750
+ #: core/lib/wpbc_all_translations.php:661 core/lib/wpdev-booking-widget.php:109
3751
  msgid "Only availability calendar"
3752
  msgstr ""
3753
 
3754
+ #: core/lib/wpbc_all_translations.php:662 core/lib/wpdev-booking-widget.php:150
3755
  msgid "Footer"
3756
  msgstr ""
3757
 
3758
+ #: core/lib/wpbc_all_translations.php:663 core/lib/wpdev-booking-widget.php:155
3759
  #, php-format
3760
  msgid "Example: %sMake booking here%s"
3761
  msgstr ""
3762
 
3763
+ #: core/lib/wpbc_all_translations.php:664 core/lib/wpdev-booking-widget.php:159
3764
  #: inc/_ps/wpbc-booking-select-widget.php:263
3765
  #, php-format
3766
  msgid ""
3768
  "at the same page, then the last will not be visible."
3769
  msgstr ""
3770
 
3771
+ #: core/lib/wpbc_all_translations.php:665 core/lib/wpdev-booking-widget.php:163
3772
  #, php-format
3773
  msgid "%sSeveral widgets are supported at %spaid versions%s."
3774
  msgstr ""
3775
 
3776
+ #: core/lib/wpbc_all_translations.php:666 core/sync/wpbc-gcal-class.php:300
3777
  msgid "Importing Feed"
3778
  msgstr ""
3779
 
3780
+ #: core/lib/wpbc_all_translations.php:667 core/sync/wpbc-gcal-class.php:316
3781
  msgid "Data Parsing"
3782
  msgstr ""
3783
 
3784
+ #: core/lib/wpbc_all_translations.php:668 core/sync/wpbc-gcal-class.php:423
3785
  msgid ""
3786
  "Some data was retrieved, but could not be parsed successfully. Please ensure your feed URL is "
3787
  "correct."
3788
  msgstr ""
3789
 
3790
+ #: core/lib/wpbc_all_translations.php:669 core/sync/wpbc-gcal-class.php:430
3791
  msgid "The feed could not be found (404). Please ensure your feed URL is correct."
3792
  msgstr ""
3793
 
3794
+ #: core/lib/wpbc_all_translations.php:670 core/sync/wpbc-gcal-class.php:433
3795
  msgid ""
3796
  "Access to this feed was denied (403). Please ensure you have public sharing enabled for your "
3797
  "calendar."
3798
  msgstr ""
3799
 
3800
+ #: core/lib/wpbc_all_translations.php:671 core/sync/wpbc-gcal-class.php:436
3801
  #, php-format
3802
  msgid ""
3803
  "The feed data could not be retrieved. Error code: %s. Please ensure your feed URL is correct."
3804
  msgstr ""
3805
 
3806
+ #: core/lib/wpbc_all_translations.php:672 core/sync/wpbc-gcal-class.php:609
3807
  #: core/sync/wpbc-gcal-class.php:659
3808
  msgid "GID"
3809
  msgstr ""
3810
 
3811
+ #: core/lib/wpbc_all_translations.php:673 core/sync/wpbc-gcal-class.php:623
3812
  msgid "Selection"
3813
  msgstr ""
3814
 
3815
+ #: core/lib/wpbc_all_translations.php:674 core/sync/wpbc-gcal-class.php:637
3816
  msgid "Location:"
3817
  msgstr ""
3818
 
3819
+ #: core/lib/wpbc_all_translations.php:675 core/sync/wpbc-gcal-class.php:667
3820
  msgid "Reload page"
3821
  msgstr ""
3822
 
3823
+ #: core/lib/wpbc_all_translations.php:676 core/sync/wpbc-gcal-class.php:680
3824
  msgid "Delete selected booking(s)"
3825
  msgstr ""
3826
 
3827
+ #: core/lib/wpbc_all_translations.php:677 core/sync/wpbc-gcal.php:279
3828
  msgid "You can specify an additional offset from you chosen end point. The offset can be negative."
3829
  msgstr ""
3830
 
3831
+ #: core/lib/wpbc_all_translations.php:678 core/sync/wpbc-gcal.php:399
3832
  msgid "Retrieve Google Calendar Events "
3833
  msgstr ""
3834
 
3835
+ #: core/lib/wpbc_all_translations.php:679 core/sync/wpbc-gcal.php:405
3836
  msgid "Please configure settings for import Google Calendar events"
3837
  msgstr ""
3838
 
3839
+ #: core/lib/wpbc_all_translations.php:680 core/sync/wpbc-gcal.php:433
3840
  msgid "Configure"
3841
  msgstr ""
3842
 
3843
+ #: core/lib/wpbc_all_translations.php:681 core/wpbc-activation.php:565
3844
  #, php-format
3845
  msgid "%s Found %s not indexed bookings %s"
3846
  msgstr ""
3847
 
3848
+ #: core/lib/wpbc_all_translations.php:682 core/wpbc-activation.php:580
3849
  #, php-format
3850
  msgid "%s Finish getting sort dates. %s"
3851
  msgstr ""
3852
 
3853
+ #: core/lib/wpbc_all_translations.php:683 core/wpbc-activation.php:589
3854
  #, php-format
3855
  msgid "Updated booking: %s"
3856
  msgstr ""
3857
 
3858
+ #: core/lib/wpbc_all_translations.php:684 core/wpbc-activation.php:1012
3859
  msgid "Booking form"
3860
  msgstr ""
3861
 
3862
+ #: core/lib/wpbc_all_translations.php:685 core/wpbc-activation.php:1107
3863
  #: inc/_ps/admin/page-email-edit.php:310
3864
  msgid "The reservation has been modified"
3865
  msgstr ""
3866
 
3867
+ #: core/lib/wpbc_all_translations.php:686 core/wpbc-activation.php:1108
3868
  #: inc/_ps/admin/page-email-edit.php:324
3869
  #, php-format
3870
  msgid ""
3872
  "Thank you, %s"
3873
  msgstr ""
3874
 
3875
+ #: core/lib/wpbc_all_translations.php:687 core/wpbc-activation.php:1168
3876
  #: inc/_bs/admin/api-settings-s.php:376
3877
  msgid "Booked Times:"
3878
  msgstr ""
3879
 
3880
+ #: core/lib/wpbc_all_translations.php:688 core/wpbc-activation.php:1188
3881
  msgid ""
3882
  "This booking canceled because we did not receive payment and the administrator did not approve "
3883
  "it."
3884
  msgstr ""
3885
 
3886
+ #: core/lib/wpbc_all_translations.php:689 core/wpbc-activation.php:1220
3887
  #: inc/_bs/admin/page-email-payment.php:314
3888
  msgid "You need to make payment for this reservation"
3889
  msgstr ""
3890
 
3891
+ #: core/lib/wpbc_all_translations.php:690 core/wpbc-activation.php:1221
3892
  #: inc/_bs/admin/page-email-payment.php:328
3893
  #, php-format
3894
  msgid ""
3896
  "Thank you, %s"
3897
  msgstr ""
3898
 
3899
+ #: core/lib/wpbc_all_translations.php:691 core/wpbc-activation.php:1258
3900
  #: inc/_bm/admin/api-settings-m.php:247
3901
  msgid "Cost: "
3902
  msgstr ""
3903
 
3904
+ #: core/lib/wpbc_all_translations.php:692 core/wpbc-activation.php:1289
3905
  #: inc/_bl/admin/api-settings-l.php:75
3906
  msgid "Available: "
3907
  msgstr ""
3908
 
3909
+ #: core/lib/wpbc_all_translations.php:693 core/wpbc-emails.php:78
3910
  msgid "Booking system"
3911
  msgstr ""
3912
 
3913
+ #: core/lib/wpbc_all_translations.php:694 core/wpbc-emails.php:184
3914
  msgid ""
3915
  "You can use (in subject and content of email template) any shortcodes, which you used in the "
3916
  "booking form. Use the shortcodes in the same way as you used them in the content form at "
3917
  "Settings Fields page."
3918
  msgstr ""
3919
 
3920
+ #: core/lib/wpbc_all_translations.php:695 core/wpbc-emails.php:187
3921
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:803
3922
  msgid "You can use following shortcodes in content of this template"
3923
  msgstr ""
3924
 
3925
+ #: core/lib/wpbc_all_translations.php:696 core/wpbc-emails.php:191
3926
  #: inc/gateways/page-gateways.php:1047
3927
  #, php-format
3928
  msgid ""
3930
  "Fields page"
3931
  msgstr ""
3932
 
3933
+ #: core/lib/wpbc_all_translations.php:697 core/wpbc-emails.php:193
3934
  #, php-format
3935
  msgid "%s - inserting data info about the booking"
3936
  msgstr ""
3937
 
3938
+ #: core/lib/wpbc_all_translations.php:698 core/wpbc-emails.php:197
3939
  #, php-format
3940
  msgid "%s - inserting the dates of booking"
3941
  msgstr ""
3942
 
3943
+ #: core/lib/wpbc_all_translations.php:699 core/wpbc-emails.php:201
3944
  #, php-format
3945
  msgid "%s - inserting check-in date (first day of reservation),"
3946
  msgstr ""
3947
 
3948
+ #: core/lib/wpbc_all_translations.php:700 core/wpbc-emails.php:205 core/wpbc-emails.php:206
3949
  #, php-format
3950
  msgid "%s - inserting check-out date (last day of reservation),"
3951
  msgstr ""
3952
 
3953
+ #: core/lib/wpbc_all_translations.php:701 core/wpbc-emails.php:211
3954
  #, php-format
3955
  msgid "%s - inserting the number of booking dates "
3956
  msgstr ""
3957
 
3958
+ #: core/lib/wpbc_all_translations.php:702 core/wpbc-emails.php:217
3959
  #, php-format
3960
  msgid "%s - inserting ID of booking "
3961
  msgstr ""
3962
 
3963
+ #: core/lib/wpbc_all_translations.php:703 core/wpbc-emails.php:222
3964
  #, php-format
3965
  msgid "%s or %s - inserting the title of the booking resource "
3966
  msgstr ""
3967
 
3968
+ #: core/lib/wpbc_all_translations.php:704 core/wpbc-emails.php:228
3969
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:811
3970
  #, php-format
3971
  msgid "%s - inserting the cost of booking "
3972
  msgstr ""
3973
 
3974
+ #: core/lib/wpbc_all_translations.php:705 core/wpbc-emails.php:234
3975
  #, php-format
3976
  msgid "%s - inserting your site URL "
3977
  msgstr ""
3978
 
3979
+ #: core/lib/wpbc_all_translations.php:706 core/wpbc-emails.php:237
3980
  #, php-format
3981
  msgid "%s - inserting IP address of the user who made this action "
3982
  msgstr ""
3983
 
3984
+ #: core/lib/wpbc_all_translations.php:707 core/wpbc-emails.php:238
3985
  #, php-format
3986
  msgid ""
3987
  "%s - inserting contents of the User-Agent: header from the current request, if there is one "
3988
  msgstr ""
3989
 
3990
+ #: core/lib/wpbc_all_translations.php:708 core/wpbc-emails.php:239
3991
  #, php-format
3992
  msgid "%s - inserting address of the page (if any), where visitor make this action "
3993
  msgstr ""
3994
 
3995
+ #: core/lib/wpbc_all_translations.php:709 core/wpbc-emails.php:243
3996
  #, php-format
3997
  msgid "%s - inserting date of this action "
3998
  msgstr ""
3999
 
4000
+ #: core/lib/wpbc_all_translations.php:710 core/wpbc-emails.php:240
4001
  #, php-format
4002
  msgid "%s - inserting time of this action "
4003
  msgstr ""
4004
 
4005
+ #: core/lib/wpbc_all_translations.php:711 core/wpbc-emails.php:257
4006
  #, php-format
4007
  msgid "%s - inserting moderate link of new booking "
4008
  msgstr ""
4009
 
4010
+ #: core/lib/wpbc_all_translations.php:712 core/wpbc-emails.php:274
4011
  #, php-format
4012
  msgid ""
4013
  "%s - inserting link to the page where visitor can edit the reservation, (possible to use the %s "
4014
  "parameter for setting different %s of this page. Example: %s )"
4015
  msgstr ""
4016
 
4017
+ #: core/lib/wpbc_all_translations.php:713 core/wpbc-emails.php:278
4018
  #, php-format
4019
  msgid ""
4020
  "%s - inserting link to the page where visitor can cancel the reservation, (possible to use the "
4021
  "%s parameter for setting different %s of this page. Example: %s )"
4022
  msgstr ""
4023
 
4024
+ #: core/lib/wpbc_all_translations.php:714 core/wpbc-emails.php:283
4025
  #, php-format
4026
  msgid ""
4027
  "%s - inserting link to payment page where visitor can pay for the reservation (possible to use "
4028
  "the %s parameter for setting different %s of this page. Example: %s )"
4029
  msgstr ""
4030
 
4031
+ #: core/lib/wpbc_all_translations.php:715 core/wpbc-emails.php:287
4032
  #, php-format
4033
  msgid "%s - add the reason for booking payment, you can enter it before sending email, "
4034
  msgstr ""
4035
 
4036
+ #: core/lib/wpbc_all_translations.php:716 core/wpbc-emails.php:293
4037
  #, php-format
4038
  msgid "%s - add the reason booking was cancelled, you can enter it before sending email, "
4039
  msgstr ""
4040
 
4041
+ #: core/lib/wpbc_all_translations.php:717 core/wpbc-emails.php:301 core/wpbc-translation.php:271
4042
  msgid "Configuration in several languages"
4043
  msgstr ""
4044
 
4045
+ #: core/lib/wpbc_all_translations.php:718 core/wpbc-emails.php:302 core/wpbc-translation.php:272
4046
  #, php-format
4047
  msgid "%s - start new translation section, where %s - locale of translation"
4048
  msgstr ""
4049
 
4050
+ #: core/lib/wpbc_all_translations.php:719 core/wpbc-emails.php:303 core/wpbc-translation.php:273
4051
  #, php-format
4052
  msgid "Example #1: %s - start French translation section"
4053
  msgstr ""
4054
 
4055
+ #: core/lib/wpbc_all_translations.php:720 core/wpbc-emails.php:304 core/wpbc-translation.php:274
4056
  #, php-format
4057
  msgid "Example #2: \"%s\" - English and French translation of some message"
4058
  msgstr ""
4059
 
4060
+ #: core/lib/wpbc_all_translations.php:721 core/wpbc-functions.php:1017 inc/_bm/biz_m.php:2044
4061
  msgid "yes"
4062
  msgstr ""
4063
 
4064
+ #: core/lib/wpbc_all_translations.php:722 core/wpbc-functions.php:1021
4065
  msgid "no"
4066
  msgstr ""
4067
 
4068
+ #: core/lib/wpbc_all_translations.php:723 core/wpbc-functions.php:1921
4069
  #: inc/_bm/admin/page-cost.php:48 inc/_bm/admin/page-cost.php:570
4070
  msgid "Costs and Rates"
4071
  msgstr ""
4072
 
4073
+ #: core/lib/wpbc_all_translations.php:724 core/wpbc-functions.php:1930
4074
  #: inc/_bm/admin/page-cost-advanced.php:43 inc/_bm/admin/page-cost-advanced.php:148
4075
  #: inc/gateways/page-gateways.php:92
4076
  msgid "Advanced Cost"
4077
  msgstr ""
4078
 
4079
+ #: core/lib/wpbc_all_translations.php:725 core/wpbc-functions.php:1939
4080
  #: inc/_bl/admin/page-coupons.php:45 inc/_bl/admin/page-coupons.php:47
4081
  msgid "Coupons"
4082
  msgstr ""
4083
 
4084
+ #: core/lib/wpbc_all_translations.php:726 core/wpbc-functions.php:1957
4085
  #: inc/_bm/admin/page-seasons.php:45 inc/_bm/admin/page-seasons.php:47
4086
  msgid "Season Filters"
4087
  msgstr ""
4088
 
4089
+ #: core/lib/wpbc_all_translations.php:727 core/wpbc-functions.php:2119
4090
  msgid "Warning! Some error occur, during sending registration request."
4091
  msgstr ""
4092
 
4093
+ #: core/lib/wpbc_all_translations.php:728 core/wpbc-functions.php:2124
4094
  msgid ""
4095
  "Please refresh this page and if the same error appear again contact support by email (with info "
4096
  "about order number and website) for finishing the registrations"
4097
  msgstr ""
4098
 
4099
+ #: core/lib/wpbc_all_translations.php:729 core/wpbc-functions.php:2152
4100
  #, php-format
4101
  msgid "If you like %s please leave us a %s rating. A huge thank you in advance!"
4102
  msgstr ""
4103
 
4104
+ #: core/lib/wpbc_all_translations.php:730 core/wpbc-functions.php:2320
4105
  msgid "Changes saved."
4106
  msgstr ""
4107
 
4108
+ #: core/lib/wpbc_all_translations.php:731 core/wpbc-functions.php:2426
4109
  msgid "Click to toggle"
4110
  msgstr ""
4111
 
4112
+ #: core/lib/wpbc_all_translations.php:732 core/wpbc-functions.php:2488
4113
  msgid "Prev"
4114
  msgstr ""
4115
 
4116
+ #: core/lib/wpbc_all_translations.php:733 core/wpbc-functions.php:2850
4117
  msgid "We&#8217;ve assembled some links to get you started:"
4118
  msgstr ""
4119
 
4120
+ #: core/lib/wpbc_all_translations.php:734 core/wpbc-functions.php:2853
4121
  msgid "Get Started"
4122
  msgstr ""
4123
 
4124
+ #: core/lib/wpbc_all_translations.php:735 core/wpbc-functions.php:2856
4125
  #, php-format
4126
  msgid "Insert booking form %sshortcode%s into your %sPost%s or %sPage%s"
4127
  msgstr ""
4128
 
4129
+ #: core/lib/wpbc_all_translations.php:736 core/wpbc-functions.php:2865
4130
  #, php-format
4131
  msgid "or add booking calendar %sWidget%s to your sidebar."
4132
  msgstr ""
4133
 
4134
+ #: core/lib/wpbc_all_translations.php:737 core/wpbc-functions.php:2871
4135
  #, php-format
4136
  msgid "Check %show todo%s that and what %sshortcodes%s are available."
4137
  msgstr ""
4138
 
4139
+ #: core/lib/wpbc_all_translations.php:738 core/wpbc-functions.php:2878
4140
  #, php-format
4141
  msgid "Add new booking from your post/page or from %sAdmin Panel%s."
4142
  msgstr ""
4143
 
4144
+ #: core/lib/wpbc_all_translations.php:739 core/wpbc-functions.php:2884
4145
  msgid "Next Steps"
4146
  msgstr ""
4147
 
4148
+ #: core/lib/wpbc_all_translations.php:740 core/wpbc-functions.php:2887
4149
  #, php-format
4150
  msgid "Check %sBooking Listing%s page for new bookings."
4151
  msgstr ""
4152
 
4153
+ #: core/lib/wpbc_all_translations.php:741 core/wpbc-functions.php:2892
4154
  #, php-format
4155
  msgid "Configure booking %sSettings%s."
4156
  msgstr ""
4157
 
4158
+ #: core/lib/wpbc_all_translations.php:742 core/wpbc-functions.php:2896
4159
  #, php-format
4160
  msgid "Configure predefined set of your %sForm Fields%s."
4161
  msgstr ""
4162
 
4163
+ #: core/lib/wpbc_all_translations.php:743 core/wpbc-functions.php:2900
4164
  #, php-format
4165
  msgid "Configure your predefined %sEmail Templates%s."
4166
  msgstr ""
4167
 
4168
+ #: core/lib/wpbc_all_translations.php:744 core/wpbc-functions.php:2906
4169
  msgid "Have a questions?"
4170
  msgstr ""
4171
 
4172
+ #: core/lib/wpbc_all_translations.php:745 core/wpbc-functions.php:2909
4173
  #, php-format
4174
  msgid "Check out our %sHelp%s"
4175
  msgstr ""
4176
 
4177
+ #: core/lib/wpbc_all_translations.php:746 core/wpbc-functions.php:2914
4178
  #, php-format
4179
  msgid "See %sFAQ%s."
4180
  msgstr ""
4181
 
4182
+ #: core/lib/wpbc_all_translations.php:747 core/wpbc-functions.php:2919
4183
  #, php-format
4184
  msgid "Still having questions? Contact %sSupport%s."
4185
  msgstr ""
4186
 
4187
+ #: core/lib/wpbc_all_translations.php:748 core/wpbc-functions.php:2927 core/wpbc.php:205
4188
  #, php-format
4189
  msgid "Need even more functionality? Check %s higher versions %s"
4190
  msgstr ""
4191
 
4192
+ #: core/lib/wpbc_all_translations.php:749 core/wpbc-js.php:112
4193
  msgid "This field is required"
4194
  msgstr ""
4195
 
4196
+ #: core/lib/wpbc_all_translations.php:750 core/wpbc-js.php:113
4197
  msgid "This checkbox must be checked"
4198
  msgstr ""
4199
 
4200
+ #: core/lib/wpbc_all_translations.php:751 core/wpbc-js.php:114
4201
  msgid "At least one option must be selected"
4202
  msgstr ""
4203
 
4204
+ #: core/lib/wpbc_all_translations.php:752 core/wpbc-js.php:115
4205
  msgid "Incorrect email field"
4206
  msgstr ""
4207
 
4208
+ #: core/lib/wpbc_all_translations.php:753 core/wpbc-js.php:116
4209
  msgid "Your emails do not match"
4210
  msgstr ""
4211
 
4212
+ #: core/lib/wpbc_all_translations.php:754 core/wpbc-js.php:117
4213
  msgid "Please, select booking date(s) at Calendar."
4214
  msgstr ""
4215
 
4216
+ #: core/lib/wpbc_all_translations.php:755 core/wpbc-js.php:132
4217
  msgid "Deleting"
4218
  msgstr ""
4219
 
4220
+ #: core/lib/wpbc_all_translations.php:756 core/wpbc-js.php:133
4221
  msgid "Updating"
4222
  msgstr ""
4223
 
4224
+ #: core/lib/wpbc_all_translations.php:757 core/wpbc-js.php:134
4225
  msgid "Saving"
4226
  msgstr ""
4227
 
4228
+ #: core/lib/wpbc_all_translations.php:758 core/wpbc.php:97
4229
  msgid "Booking"
4230
  msgstr ""
4231
 
4232
+ #: core/lib/wpbc_all_translations.php:759 core/wpbc.php:289 core/wpbc.php:296
4233
  msgid "Action is not allowed!"
4234
  msgstr ""
4235
 
4236
+ #: core/lib/wpbc_all_translations.php:760 inc/_bl/admin/activation-l.php:119
4237
  #: inc/_bl/admin/activation-l.php:123 inc/_bl/admin/activation-l.php:174
4238
+ #: inc/_bl/admin/page-search.php:715 inc/_bm/admin/api-settings-m.php:567 inc/_bm/m-toolbar.php:62
4239
  #: inc/_bm/m-toolbar.php:404 inc/_ps/admin/page-settings-form.php:328
4240
  #: inc/_ps/wpbc-booking-select-widget.php:230
4241
  msgid "Standard"
4242
  msgstr ""
4243
 
4244
+ #: core/lib/wpbc_all_translations.php:761 inc/_bl/admin/activation-l.php:120
4245
  #: inc/_bl/admin/activation-l.php:124 inc/_bl/admin/activation-l.php:157
4246
  #: inc/_bl/admin/activation-l.php:158 inc/_bl/admin/activation-l.php:175
4247
  msgid "Superior"
4248
  msgstr ""
4249
 
4250
+ #: core/lib/wpbc_all_translations.php:762 inc/_bl/admin/activation-l.php:120
4251
  #: inc/_bs/admin/activation-s.php:93
4252
  msgid "Resource #1"
4253
  msgstr ""
4254
 
4255
+ #: core/lib/wpbc_all_translations.php:763 inc/_bl/admin/activation-l.php:121
4256
  #: inc/_bl/admin/activation-l.php:125
4257
  msgid "Presidential Suite"
4258
  msgstr ""
4259
 
4260
+ #: core/lib/wpbc_all_translations.php:764 inc/_bl/admin/activation-l.php:121
4261
  #: inc/_bs/admin/activation-s.php:94
4262
  msgid "Resource #2"
4263
  msgstr ""
4264
 
4265
+ #: core/lib/wpbc_all_translations.php:765 inc/_bl/admin/activation-l.php:122
4266
  #: inc/_bl/admin/activation-l.php:126 inc/_mu/admin/activation-u.php:83
4267
  msgid "Royal Villa"
4268
  msgstr ""
4269
 
4270
+ #: core/lib/wpbc_all_translations.php:766 inc/_bl/admin/activation-l.php:122
4271
  #: inc/_bs/admin/activation-s.php:95
4272
  msgid "Resource #3"
4273
  msgstr ""
4274
 
4275
+ #: core/lib/wpbc_all_translations.php:767 inc/_bl/admin/api-settings-l.php:34
4276
  msgid ""
4277
  "Use \"Check In\" date as available in calendar for booking resources with capacity higher then 1 "
4278
  "for search results"
4279
  msgstr ""
4280
 
4281
+ #: core/lib/wpbc_all_translations.php:768 inc/_bl/admin/api-settings-l.php:43
4282
  msgid ""
4283
  "Use \"Check Out\" date as available in calendar for booking resources with capacity higher then "
4284
  "1 search results"
4285
  msgstr ""
4286
 
4287
+ #: core/lib/wpbc_all_translations.php:769 inc/_bl/admin/api-settings-l.php:66
4288
  msgid "Show availability in tooltip"
4289
  msgstr ""
4290
 
4291
+ #: core/lib/wpbc_all_translations.php:770 inc/_bl/admin/api-settings-l.php:67
4292
  msgid ""
4293
  "Check this box to display the available number of booking resources with a tooltip, when mouse "
4294
  "hovers over each day on the calendar(s)."
4295
  msgstr ""
4296
 
4297
+ #: core/lib/wpbc_all_translations.php:771 inc/_bl/admin/api-settings-l.php:76
4298
  msgid "Availability Title"
4299
  msgstr ""
4300
 
4301
+ #: core/lib/wpbc_all_translations.php:772 inc/_bl/admin/api-settings-l.php:77
4302
  #, php-format
4303
  msgid "Type your %savailability%s description"
4304
  msgstr ""
4305
 
4306
+ #: core/lib/wpbc_all_translations.php:773 inc/_bl/admin/api-settings-l.php:110
4307
  #: inc/_bs/admin/api-settings-s.php:516
4308
  msgid "Auto-cancel bookings"
4309
  msgstr ""
4310
 
4311
+ #: core/lib/wpbc_all_translations.php:774 inc/_bl/admin/api-settings-l.php:111
4312
  #: inc/_bl/admin/api-settings-l.php:131
4313
  msgid ""
4314
  "Auto Cancel all pending bookings for the specific date(s), if some booking is approved for these "
4315
  "date(s)"
4316
  msgstr ""
4317
 
4318
+ #: core/lib/wpbc_all_translations.php:775 inc/_bl/admin/api-settings-l.php:129
4319
  #: inc/_bl/admin/api-settings-l.php:289
4320
  msgid ""
4321
  "Warning!!! After you approved the specific booking(s), all your pending bookings of the same "
4323
  "approved booking, will be automatically canceled!"
4324
  msgstr ""
4325
 
4326
+ #: core/lib/wpbc_all_translations.php:776 inc/_bl/admin/api-settings-l.php:160
4327
  msgid "Set capacity based on number of visitors"
4328
  msgstr ""
4329
 
4330
+ #: core/lib/wpbc_all_translations.php:777 inc/_bl/admin/api-settings-l.php:161
4331
  msgid ""
4332
  "Check this box if you want total availability (daily capacity) to depend on the number of "
4333
  "selected visitors."
4334
  msgstr ""
4335
 
4336
+ #: core/lib/wpbc_all_translations.php:778 inc/_bl/admin/api-settings-l.php:162
4337
+ #: inc/_ps/admin/api-settings-p.php:320 inc/_ps/admin/api-settings-p.php:333
4338
  #, php-format
4339
  msgid "Please read more info about configuration of this parameter %shere%s"
4340
  msgstr ""
4341
 
4342
+ #: core/lib/wpbc_all_translations.php:779 inc/_bl/admin/api-settings-l.php:177
4343
  msgid ""
4344
  "Add tooltip on calendar(s) to show availability based on the number of available booking "
4345
  "resource items remaining for each day."
4346
  msgstr ""
4347
 
4348
+ #: core/lib/wpbc_all_translations.php:780 inc/_bl/admin/api-settings-l.php:180
4349
  #, php-format
4350
  msgid ""
4351
  "Be sure to match the maximum number of visitors for the %sone booking resource%s with the number "
4352
  "of visitors specified on the booking form."
4353
  msgstr ""
4354
 
4355
+ #: core/lib/wpbc_all_translations.php:781 inc/_bl/admin/api-settings-l.php:183
4356
  msgid ""
4357
  "Display tooltip on calendar(s) to show availability based on total (fixed) number of visitors "
4358
  "for the resource, which can be at free booking resource items."
4359
  msgstr ""
4360
 
4361
+ #: core/lib/wpbc_all_translations.php:782 inc/_bl/admin/api-settings-l.php:186
4362
  #, php-format
4363
  msgid ""
4364
  "Be sure to match the maximum number of visitors for %sall booking resources%s with the number of "
4365
  "visitors specified on the booking form."
4366
  msgstr ""
4367
 
4368
+ #: core/lib/wpbc_all_translations.php:783 inc/_bl/admin/api-settings-l.php:214
4369
  msgid "Disable bookings in different booking resources"
4370
  msgstr ""
4371
 
4372
+ #: core/lib/wpbc_all_translations.php:784 inc/_bl/admin/api-settings-l.php:215
4373
  msgid ""
4374
  "Check this box to dissable reservations, which can be stored in different booking resources."
4375
  msgstr ""
4376
 
4377
+ #: core/lib/wpbc_all_translations.php:785 inc/_bl/admin/api-settings-l.php:216
4378
  msgid ""
4379
  "When checked, all reserved days must be at same booking resource otherwise error message will "
4380
  "show."
4381
  msgstr ""
4382
 
4383
+ #: core/lib/wpbc_all_translations.php:786 inc/_bl/admin/api-settings-l.php:337
4384
+ #: inc/_ps/p-toolbar.php:1213
4385
  msgid "Parent"
4386
  msgstr ""
4387
 
4388
+ #: core/lib/wpbc_all_translations.php:787 inc/_bl/admin/api-settings-l.php:343
4389
+ #: inc/_ps/p-toolbar.php:1231
4390
  msgid "Priority"
4391
  msgstr ""
4392
 
4393
+ #: core/lib/wpbc_all_translations.php:788 inc/_bl/admin/api-settings-l.php:350
4394
  msgid "Max visitors"
4395
  msgstr ""
4396
 
4397
+ #: core/lib/wpbc_all_translations.php:789 inc/_bl/admin/api-settings-l.php:470
4398
  msgid "Single"
4399
  msgstr ""
4400
 
4401
+ #: core/lib/wpbc_all_translations.php:790 inc/_bl/admin/api-settings-l.php:472
4402
  msgid "Child"
4403
  msgstr ""
4404
 
4405
+ #: core/lib/wpbc_all_translations.php:791 inc/_bl/admin/page-coupons.php:46
4406
  msgid "Setting coupons for discount"
4407
  msgstr ""
4408
 
4409
+ #: core/lib/wpbc_all_translations.php:792 inc/_bl/admin/page-coupons.php:122
4410
  #: inc/_bm/m-toolbar.php:590 inc/_bm/m-toolbar.php:592
4411
  msgid "Create dates filter"
4412
  msgstr ""
4413
 
4414
+ #: core/lib/wpbc_all_translations.php:793 inc/_bl/admin/page-coupons.php:124
4415
  #: inc/_bl/admin/page-coupons.php:871
4416
  msgid "Add New Discount Coupon"
4417
  msgstr ""
4418
 
4419
+ #: core/lib/wpbc_all_translations.php:794 inc/_bl/admin/page-coupons.php:214
4420
  #: inc/_bm/admin/page-availability.php:238 inc/_bm/admin/page-cost.php:217
4421
  #: inc/_bm/admin/page-seasons.php:199 inc/_ps/admin/page-resources.php:187
4422
  msgid "Bulk Actions"
4423
  msgstr ""
4424
 
4425
+ #: core/lib/wpbc_all_translations.php:795 inc/_bl/admin/page-coupons.php:505
4426
  #: inc/_bl/admin/page-coupons.php:1170
4427
  msgid "Coupon Code"
4428
  msgstr ""
4429
 
4430
+ #: core/lib/wpbc_all_translations.php:796 inc/_bl/admin/page-coupons.php:511
4431
  #: inc/_bl/admin/page-coupons.php:1185 inc/_bl/admin/page-coupons.php:1192
4432
  msgid "Savings"
4433
  msgstr ""
4434
 
4435
+ #: core/lib/wpbc_all_translations.php:797 inc/_bl/admin/page-coupons.php:517
4436
  msgid "Minimum Cost"
4437
  msgstr ""
4438
 
4439
+ #: core/lib/wpbc_all_translations.php:798 inc/_bl/admin/page-coupons.php:524
4440
  msgid "Expiration"
4441
  msgstr ""
4442
 
4443
+ #: core/lib/wpbc_all_translations.php:799 inc/_bl/admin/page-coupons.php:533
4444
  msgid "Number of usage"
4445
  msgstr ""
4446
 
4447
+ #: core/lib/wpbc_all_translations.php:800 inc/_bl/admin/page-coupons.php:585
4448
  #: inc/_bm/admin/page-availability.php:571 inc/_bm/admin/page-availability.php:1056
4449
  #: inc/_bm/admin/page-cost-rate.php:256 inc/_bm/admin/page-cost-valuation.php:416
4450
  #: inc/_bm/admin/page-cost.php:632 inc/_bm/admin/page-seasons.php:565
4453
  msgid "Select Booking Resource"
4454
  msgstr ""
4455
 
4456
+ #: core/lib/wpbc_all_translations.php:801 inc/_bl/admin/page-coupons.php:776
4457
  #: inc/_bl/admin/page-coupons.php:1396 inc/_ps/admin/api-settings-p.php:29
4458
+ #: inc/_ps/p-toolbar.php:722
4459
  msgid "All resources"
4460
  msgstr ""
4461
 
4462
+ #: core/lib/wpbc_all_translations.php:802 inc/_bl/admin/page-coupons.php:993
4463
  #: inc/_ps/wpbc-form-templates.php:124 inc/_ps/wpbc-form-templates.php:196
4464
  msgid "Coupon"
4465
  msgstr ""
4466
 
4467
+ #: core/lib/wpbc_all_translations.php:803 inc/_bl/admin/page-coupons.php:1171
4468
  msgid "Enter coupon code."
4469
  msgstr ""
4470
 
4471
+ #: core/lib/wpbc_all_translations.php:804 inc/_bl/admin/page-coupons.php:1232
4472
  msgid "Enter number of fixed or percentage savings."
4473
  msgstr ""
4474
 
4475
+ #: core/lib/wpbc_all_translations.php:805 inc/_bl/admin/page-coupons.php:1235
4476
  msgid "Expiration Date"
4477
  msgstr ""
4478
 
4479
+ #: core/lib/wpbc_all_translations.php:806 inc/_bl/admin/page-coupons.php:1311
4480
  msgid "Select Expiration Date of the coupon."
4481
  msgstr ""
4482
 
4483
+ #: core/lib/wpbc_all_translations.php:807 inc/_bl/admin/page-coupons.php:1318
4484
  msgid "Minimum Booking Cost"
4485
  msgstr ""
4486
 
4487
+ #: core/lib/wpbc_all_translations.php:808 inc/_bl/admin/page-coupons.php:1319
4488
  msgid "Enter minimum booking cost, when coupon is applicable."
4489
  msgstr ""
4490
 
4491
+ #: core/lib/wpbc_all_translations.php:809 inc/_bl/admin/page-coupons.php:1336
4492
  msgid "Maximum number of usage"
4493
  msgstr ""
4494
 
4495
+ #: core/lib/wpbc_all_translations.php:810 inc/_bl/admin/page-coupons.php:1337
4496
  msgid "Enter maximum number of times, when coupon is applicable."
4497
  msgstr ""
4498
 
4499
+ #: core/lib/wpbc_all_translations.php:811 inc/_bl/admin/page-coupons.php:1360
4500
  msgid "Select booking resources, where is possible to apply this coupon code."
4501
  msgstr ""
4502
 
4503
+ #: core/lib/wpbc_all_translations.php:812 inc/_bl/admin/page-coupons.php:1378
4504
  #: inc/_bm/admin/page-seasons.php:1224 inc/_bm/admin/page-seasons.php:1442
4505
+ #: inc/_ps/p-toolbar.php:1157
4506
  msgid "Add New"
4507
  msgstr ""
4508
 
4509
+ #: core/lib/wpbc_all_translations.php:813 inc/_bl/admin/page-search.php:87
4510
+ #: inc/_bl/admin/page-search.php:126 inc/_ps/admin/page-settings-form.php:662
4511
  #: inc/gateways/page-gateways.php:1046
4512
  msgid "Use these shortcodes for customization: "
4513
  msgstr ""
4514
 
4515
+ #: core/lib/wpbc_all_translations.php:814 inc/_bl/admin/page-search.php:88
4516
  #, php-format
4517
  msgid "%s - search inside posts/pages which are part of this category, "
4518
  msgstr ""
4519
 
4520
+ #: core/lib/wpbc_all_translations.php:815 inc/_bl/admin/page-search.php:89
4521
  #, php-format
4522
  msgid "%s - search inside posts/pages which have this tag, "
4523
  msgstr ""
4524
 
4525
+ #: core/lib/wpbc_all_translations.php:816 inc/_bl/admin/page-search.php:90
4526
+ #: inc/_bl/admin/page-search.php:142
4527
  #, php-format
4528
  msgid "%s - check-in date, "
4529
  msgstr ""
4530
 
4531
+ #: core/lib/wpbc_all_translations.php:817 inc/_bl/admin/page-search.php:91
4532
+ #: inc/_bl/admin/page-search.php:143
4533
  #, php-format
4534
  msgid "%s - check-out date, "
4535
  msgstr ""
4536
 
4537
+ #: core/lib/wpbc_all_translations.php:818 inc/_bl/admin/page-search.php:92
4538
  #, php-format
4539
  msgid "%s - default selection number of visitors, "
4540
  msgstr ""
4541
 
4542
+ #: core/lib/wpbc_all_translations.php:819 inc/_bl/admin/page-search.php:93
4543
  #, php-format
4544
  msgid "Example: %s - custom number of visitor selections\""
4545
  msgstr ""
4546
 
4547
+ #: core/lib/wpbc_all_translations.php:820 inc/_bl/admin/page-search.php:95
4548
  #, php-format
4549
  msgid "%s - search button, "
4550
  msgstr ""
4551
 
4552
+ #: core/lib/wpbc_all_translations.php:821 inc/_bl/admin/page-search.php:96
4553
+ #: inc/_bl/admin/page-search.php:148
4554
  msgid "HTML tags is accepted."
4555
  msgstr ""
4556
 
4557
+ #: core/lib/wpbc_all_translations.php:822 inc/_bl/admin/page-search.php:127
4558
  #, php-format
4559
  msgid "%s - resource title, "
4560
  msgstr ""
4561
 
4562
+ #: core/lib/wpbc_all_translations.php:823 inc/_bl/admin/page-search.php:128
4563
+ #: inc/_bl/admin/page-search.php:129
4564
  #, php-format
4565
  msgid "%s - link to the page with booking form, "
4566
  msgstr ""
4567
 
4568
+ #: core/lib/wpbc_all_translations.php:824 inc/_bl/admin/page-search.php:130
4569
  #, php-format
4570
  msgid "%s - availability of booking resource, "
4571
  msgstr ""
4572
 
4573
+ #: core/lib/wpbc_all_translations.php:825 inc/_bl/admin/page-search.php:131
4574
  #, php-format
4575
  msgid "%s - maximum number of visitors for the booking resource, "
4576
  msgstr ""
4577
 
4578
+ #: core/lib/wpbc_all_translations.php:826 inc/_bl/admin/page-search.php:132
4579
  #, php-format
4580
  msgid "%s - cost of booking the resource, "
4581
  msgstr ""
4582
 
4583
+ #: core/lib/wpbc_all_translations.php:827 inc/_bl/admin/page-search.php:133
4584
  #, php-format
4585
  msgid "%s - featured image, taken from the featured image associated with the post, "
4586
  msgstr ""
4587
 
4588
+ #: core/lib/wpbc_all_translations.php:828 inc/_bl/admin/page-search.php:134
4589
  #, php-format
4590
  msgid "%s - booking info, taken from the excerpt associated with the post, "
4591
  msgstr ""
4592
 
4593
+ #: core/lib/wpbc_all_translations.php:829 inc/_bl/admin/page-search.php:136
4594
  #: inc/_ps/form/class-wpbc-form-help.php:677
4595
  msgid "Full cost of the booking."
4596
  msgstr ""
4597
 
4598
+ #: core/lib/wpbc_all_translations.php:830 inc/_bl/admin/page-search.php:137
4599
  #: inc/_ps/form/class-wpbc-form-help.php:679
4600
  msgid "Cost of the booking for the selected dates only."
4601
  msgstr ""
4602
 
4603
+ #: core/lib/wpbc_all_translations.php:831 inc/_bl/admin/page-search.php:138
4604
  #: inc/_ps/form/class-wpbc-form-help.php:681
4605
  msgid "Additional cost, which depends on the fields selection in the form."
4606
  msgstr ""
4607
 
4608
+ #: core/lib/wpbc_all_translations.php:832 inc/_bl/admin/page-search.php:139
4609
  #: inc/_ps/form/class-wpbc-form-help.php:683
4610
  msgid "The deposit cost of the booking."
4611
  msgstr ""
4612
 
4613
+ #: core/lib/wpbc_all_translations.php:833 inc/_bl/admin/page-search.php:140
4614
  #: inc/_ps/form/class-wpbc-form-help.php:685
4615
  msgid "Balance cost of the booking - difference between deposit and full cost."
4616
  msgstr ""
4617
 
4618
+ #: core/lib/wpbc_all_translations.php:834 inc/_bl/admin/page-search.php:155
4619
  msgid "hour(s)"
4620
  msgstr ""
4621
 
4622
+ #: core/lib/wpbc_all_translations.php:835 inc/_bl/admin/page-search.php:158
4623
  #: inc/_bm/admin/api-settings-m.php:74 inc/_bm/admin/api-settings-m.php:129
4624
  msgid "day(s)"
4625
  msgstr ""
4626
 
4627
+ #: core/lib/wpbc_all_translations.php:836 inc/_bl/admin/page-search.php:163
4628
  msgid "Cache expiration"
4629
  msgstr ""
4630
 
4631
+ #: core/lib/wpbc_all_translations.php:837 inc/_bl/admin/page-search.php:164
4632
  msgid "Select time of cache expiration"
4633
  msgstr ""
4634
 
4635
+ #: core/lib/wpbc_all_translations.php:838 inc/_bl/admin/page-search.php:299
4636
+ #: inc/_bl/admin/page-search.php:300
4637
  msgid "Search Settings"
4638
  msgstr ""
4639
 
4640
+ #: core/lib/wpbc_all_translations.php:839 inc/_bl/admin/page-search.php:361
4641
  msgid "Cache Updated"
4642
  msgstr ""
4643
 
4644
+ #: core/lib/wpbc_all_translations.php:840 inc/_bl/admin/page-search.php:386
4645
+ #: inc/_bl/admin/page-search.php:432
4646
  msgid "Search Availability Form"
4647
  msgstr ""
4648
 
4649
+ #: core/lib/wpbc_all_translations.php:841 inc/_bl/admin/page-search.php:387
4650
+ #: inc/_bl/admin/page-search.php:450 js/wpbc-gutenberg.js:1001
4651
  msgid "Search Results"
4652
  msgstr ""
4653
 
4654
+ #: core/lib/wpbc_all_translations.php:842 inc/_bl/admin/page-search.php:388
4655
+ #: inc/_bl/admin/page-search.php:477
4656
  msgid "Search Cache"
4657
  msgstr ""
4658
 
4659
+ #: core/lib/wpbc_all_translations.php:843 inc/_bl/admin/page-search.php:424
4660
  #, php-format
4661
  msgid ""
4662
  "If you do not see search results at front-end side of your website, please check troubleshooting "
4663
  "instruction %shere%s"
4664
  msgstr ""
4665
 
4666
+ #: core/lib/wpbc_all_translations.php:844 inc/_bl/admin/page-search.php:457
4667
  msgid "CSS customization of search form and search results you can make at this file"
4668
  msgstr ""
4669
 
4670
+ #: core/lib/wpbc_all_translations.php:845 inc/_bl/admin/page-search.php:629
4671
+ #: inc/_bl/admin/page-search.php:693
4672
  msgid "Select Template"
4673
  msgstr ""
4674
 
4675
+ #: core/lib/wpbc_all_translations.php:846
4676
  msgid "Inlinee Search Form Template"
4677
  msgstr ""
4678
 
4679
+ #: core/lib/wpbc_all_translations.php:847 inc/_bl/admin/page-search.php:660
4680
  msgid "Horizontal Search Form Template"
4681
  msgstr ""
4682
 
4683
+ #: core/lib/wpbc_all_translations.php:848 inc/_bl/admin/page-search.php:670
4684
  msgid "Standard Search Form Template"
4685
  msgstr ""
4686
 
4687
+ #: core/lib/wpbc_all_translations.php:849 inc/_bl/admin/page-search.php:782
4688
  #: inc/_bm/admin/page-seasons.php:1227 inc/_bm/admin/page-seasons.php:1445
4689
  #: inc/_ps/admin/page-settings-form.php:496
4690
  msgid "Reset"
4691
  msgstr ""
4692
 
4693
+ #: core/lib/wpbc_all_translations.php:850 inc/_bl/admin/page-search.php:783
4694
  #: inc/_ps/admin/page-settings-form.php:497
4695
  msgid "Reset current Form"
4696
  msgstr ""
4697
 
4698
+ #: core/lib/wpbc_all_translations.php:851 inc/_bl/admin/page-search.php:852
4699
  msgid "Cache will expire:"
4700
  msgstr ""
4701
 
4702
+ #: core/lib/wpbc_all_translations.php:852 inc/_bl/admin/page-search.php:882
4703
  #, php-format
4704
  msgid "Found: %s booking forms inside of posts or pages "
4705
  msgstr ""
4706
 
4707
+ #: core/lib/wpbc_all_translations.php:853 inc/_bl/admin/page-search.php:886
4708
  msgid "Page"
4709
  msgstr ""
4710
 
4711
+ #: core/lib/wpbc_all_translations.php:854 inc/_bl/admin/page-search.php:909
4712
  msgid "Reset Search Cache"
4713
  msgstr ""
4714
 
4715
+ #: core/lib/wpbc_all_translations.php:855 inc/_bl/biz_l.php:136
4716
  msgid ""
4717
  "Try selecting fewer visitors. The number of visitors may be more than the number of available "
4718
  "units on selected day(s)!"
4719
  msgstr ""
4720
 
4721
+ #: core/lib/wpbc_all_translations.php:856 inc/_bl/biz_l.php:372
4722
  msgid "coupon"
4723
  msgstr ""
4724
 
4725
+ #: core/lib/wpbc_all_translations.php:857 inc/_bl/biz_l.php:374
4726
  msgid "discount"
4727
  msgstr ""
4728
 
4729
+ #: core/lib/wpbc_all_translations.php:858 inc/_bl/biz_l.php:568
4730
  msgid "Please select check-in and check-out days!"
4731
  msgstr ""
4732
 
4733
+ #: core/lib/wpbc_all_translations.php:859 inc/_bl/biz_l.php:1789 inc/_bl/biz_l.php:1800
4734
+ #: inc/_bl/biz_l.php:1817 inc/_bl/biz_l.php:1822
4735
  #, php-format
4736
  msgid ""
4737
  "Sorry, the reservation was not made because these days are already booked!!! %s (Its not "
4739
  "page and try other days."
4740
  msgstr ""
4741
 
4742
+ #: core/lib/wpbc_all_translations.php:860 inc/_bl/biz_l.php:2399
4743
  #, php-format
4744
  msgid "The folowing pending booking(s): %s deleted."
4745
  msgstr ""
4746
 
4747
+ #: core/lib/wpbc_all_translations.php:861 inc/_bl/wpbc-search-availability.php:819
4748
  msgid "Book now"
4749
  msgstr ""
4750
 
4751
+ #: core/lib/wpbc_all_translations.php:862 inc/_bl/wpdev-booking-search-widget.php:14
4752
  #: inc/_bl/wpdev-booking-search-widget.php:67
4753
  msgid "Search availability"
4754
  msgstr ""
4755
 
4756
+ #: core/lib/wpbc_all_translations.php:863 inc/_bl/wpdev-booking-search-widget.php:15
4757
  msgid "Search results."
4758
  msgstr ""
4759
 
4760
+ #: core/lib/wpbc_all_translations.php:864 inc/_bl/wpdev-booking-search-widget.php:16
4761
  msgid "Nothing found."
4762
  msgstr ""
4763
 
4764
+ #: core/lib/wpbc_all_translations.php:865 inc/_bl/wpdev-booking-search-widget.php:85
4765
  msgid "Title of search widget"
4766
  msgstr ""
4767
 
4768
+ #: core/lib/wpbc_all_translations.php:866 inc/_bl/wpdev-booking-search-widget.php:93
4769
  msgid "Title of search results"
4770
  msgstr ""
4771
 
4772
+ #: core/lib/wpbc_all_translations.php:867 inc/_bl/wpdev-booking-search-widget.php:98
4773
  #, php-format
4774
  msgid "Please type the %sTitle of search results%s."
4775
  msgstr ""
4776
 
4777
+ #: core/lib/wpbc_all_translations.php:868 inc/_bl/wpdev-booking-search-widget.php:102
4778
  msgid "Nothing found message"
4779
  msgstr ""
4780
 
4781
+ #: core/lib/wpbc_all_translations.php:869 inc/_bl/wpdev-booking-search-widget.php:107
4782
  #, php-format
4783
  msgid "Please type the %smessage ,what is showing, when nothing found%s."
4784
  msgstr ""
4785
 
4786
+ #: core/lib/wpbc_all_translations.php:870 inc/_bl/wpdev-booking-search-widget.php:111
4787
  msgid "URL of Search Results"
4788
  msgstr ""
4789
 
4790
+ #: core/lib/wpbc_all_translations.php:871 inc/_bl/wpdev-booking-search-widget.php:116
4791
  #, php-format
4792
  msgid ""
4793
  "Please type the URL of the page %s(with %s shortcode in content)%s, where search results will "
4794
  "show."
4795
  msgstr ""
4796
 
4797
+ #: core/lib/wpbc_all_translations.php:872 inc/_bm/admin/activation-m.php:48
4798
+ #: inc/_mu/multiuser.php:634
4799
  msgid "Weekend"
4800
  msgstr ""
4801
 
4802
+ #: core/lib/wpbc_all_translations.php:873 inc/_bm/admin/activation-m.php:92
4803
+ #: inc/_mu/multiuser.php:636
4804
  msgid "High season"
4805
  msgstr ""
4806
 
4807
+ #: core/lib/wpbc_all_translations.php:874 inc/_bm/admin/api-settings-m.php:35
4808
  msgid "Limit available days from today"
4809
  msgstr ""
4810
 
4811
+ #: core/lib/wpbc_all_translations.php:875 inc/_bm/admin/api-settings-m.php:36
4812
  msgid "Select number of available days in calendar start from today."
4813
  msgstr ""
4814
 
4815
+ #: core/lib/wpbc_all_translations.php:876 inc/_bm/admin/api-settings-m.php:85
4816
  msgid "Unavailable time before / after booking"
4817
  msgstr ""
4818
 
4819
+ #: core/lib/wpbc_all_translations.php:877 inc/_bm/admin/api-settings-m.php:87
4820
  msgid ""
4821
  "This feature is applying only for bookings for specific timeslots, or if activated check in/out "
4822
  "time option."
4823
  msgstr ""
4824
 
4825
+ #: core/lib/wpbc_all_translations.php:878 inc/_bm/admin/api-settings-m.php:110
4826
  #: inc/_bm/admin/api-settings-m.php:134
4827
  msgid "Before booking"
4828
  msgstr ""
4829
 
4830
+ #: core/lib/wpbc_all_translations.php:879 inc/_bm/admin/api-settings-m.php:111
4831
  #: inc/_bm/admin/api-settings-m.php:120 inc/_bm/admin/api-settings-m.php:135
4832
  #: inc/_bm/admin/api-settings-m.php:144
4833
  msgid "Select unavailable time interval."
4834
  msgstr ""
4835
 
4836
+ #: core/lib/wpbc_all_translations.php:880 inc/_bm/admin/api-settings-m.php:119
4837
  #: inc/_bm/admin/api-settings-m.php:143
4838
  msgid "After booking"
4839
  msgstr ""
4840
 
4841
+ #: core/lib/wpbc_all_translations.php:881 inc/_bm/admin/api-settings-m.php:170
4842
  msgid "Showing cost in date cell"
4843
  msgstr ""
4844
 
4845
+ #: core/lib/wpbc_all_translations.php:882 inc/_bm/admin/api-settings-m.php:171
4846
  #, php-format
4847
  msgid " Check this box to display the %sdaily cost at the date cells%s in the calendar(s)."
4848
  msgstr ""
4849
 
4850
+ #: core/lib/wpbc_all_translations.php:883 inc/_bm/admin/api-settings-m.php:188
4851
  msgid "Currency symbol"
4852
  msgstr ""
4853
 
4854
+ #: core/lib/wpbc_all_translations.php:884 inc/_bm/admin/api-settings-m.php:224
4855
  #, php-format
4856
  msgid ""
4857
  "Type your %scurrency symbol%s to display near daily cost in date cells. %sDocumentation on "
4858
  "currency symbols%s"
4859
  msgstr ""
4860
 
4861
+ #: core/lib/wpbc_all_translations.php:885 inc/_bm/admin/api-settings-m.php:237
4862
  msgid "Showing cost in tooltip"
4863
  msgstr ""
4864
 
4865
+ #: core/lib/wpbc_all_translations.php:886 inc/_bm/admin/api-settings-m.php:238
4866
  msgid ""
4867
  " Check this box to display the daily cost with a tooltip when mouse hovers over each day on the "
4868
  "calendar(s)."
4869
  msgstr ""
4870
 
4871
+ #: core/lib/wpbc_all_translations.php:887 inc/_bm/admin/api-settings-m.php:246
4872
  msgid "Cost Title"
4873
  msgstr ""
4874
 
4875
+ #: core/lib/wpbc_all_translations.php:888 inc/_bm/admin/api-settings-m.php:248
4876
  #, php-format
4877
  msgid "Type your %scost%s description"
4878
  msgstr ""
4879
 
4880
+ #: core/lib/wpbc_all_translations.php:889 inc/_bm/admin/api-settings-m.php:569
4881
  #: inc/_bm/m-toolbar.php:67 inc/_bm/m-toolbar.php:414
4882
  msgid "Custom Forms"
4883
  msgstr ""
4884
 
4885
+ #: core/lib/wpbc_all_translations.php:890 inc/_bm/admin/page-availability.php:48
4886
  msgid "Configuration of availability for booking resources"
4887
  msgstr ""
4888
 
4889
+ #: core/lib/wpbc_all_translations.php:891 inc/_bm/admin/page-availability.php:49
4890
  msgid "Availability Settings"
4891
  msgstr ""
4892
 
4893
+ #: core/lib/wpbc_all_translations.php:892 inc/_bm/admin/page-availability.php:143
4894
+ #: inc/_bm/admin/page-cost.php:119 inc/_ps/p-toolbar.php:1186
4895
  msgid "Show Children Resources"
4896
  msgstr ""
4897
 
4898
+ #: core/lib/wpbc_all_translations.php:893 inc/_bm/admin/page-availability.php:145
4899
+ #: inc/_bm/admin/page-cost.php:121 inc/_ps/p-toolbar.php:1188
4900
  msgid "Hide Children Resources"
4901
  msgstr ""
4902
 
4903
+ #: core/lib/wpbc_all_translations.php:894 inc/_bm/admin/page-availability.php:239
4904
  #: inc/_bm/admin/page-availability.php:244 inc/_bm/admin/page-availability.php:800
4905
  msgid "Set Availability"
4906
  msgstr ""
4907
 
4908
+ #: core/lib/wpbc_all_translations.php:895 inc/_bm/admin/page-availability.php:253
4909
  #: inc/_bm/admin/page-cost.php:238 inc/_ps/admin/page-resources.php:202
4910
  #, php-format
4911
  msgid ""
4913
  "booking(s) from this resource(s). Otherwise you will have %slost bookings%s."
4914
  msgstr ""
4915
 
4916
+ #: core/lib/wpbc_all_translations.php:896 inc/_bm/admin/page-availability.php:499
4917
  #: inc/_bm/admin/page-cost.php:565 inc/_ps/admin/page-resources.php:463
4918
  msgid "Resource Name"
4919
  msgstr ""
4920
 
4921
+ #: core/lib/wpbc_all_translations.php:897 inc/_bm/admin/page-availability.php:608
4922
  #: inc/_bm/admin/page-availability.php:895
4923
  msgid "All days"
4924
  msgstr ""
4925
 
4926
+ #: core/lib/wpbc_all_translations.php:898 inc/_bm/admin/page-availability.php:609
4927
  #: inc/_bm/admin/page-availability.php:637 inc/_bm/admin/page-availability.php:890
4928
  #: inc/_bm/admin/page-availability.php:904 inc/_bm/admin/page-availability.php:933
4929
  #: inc/_bm/admin/page-availability.php:1097 inc/_bm/admin/page-cost-rate.php:348
4930
  msgid "available"
4931
  msgstr ""
4932
 
4933
+ #: core/lib/wpbc_all_translations.php:899 inc/_bm/admin/page-availability.php:610
4934
  #: inc/_bm/admin/page-availability.php:638 inc/_bm/admin/page-availability.php:891
4935
  #: inc/_bm/admin/page-availability.php:900 inc/_bm/admin/page-availability.php:929
4936
  #: inc/_bm/admin/page-availability.php:1093 inc/_bm/admin/page-cost-rate.php:344
4937
  msgid "unavailable"
4938
  msgstr ""
4939
 
4940
+ #: core/lib/wpbc_all_translations.php:900 inc/_bm/admin/page-availability.php:635
4941
  #, php-format
4942
  msgid "and %s on seasons:"
4943
  msgstr ""
4944
 
4945
+ #: core/lib/wpbc_all_translations.php:901 inc/_bm/admin/page-availability.php:925
4946
  #, php-format
4947
  msgid "Select %s days by activating specific season filter below or %sadd new season filter%s"
4948
  msgstr ""
4949
 
4950
+ #: core/lib/wpbc_all_translations.php:902 inc/_bm/admin/page-availability.php:943
4951
  #: inc/_bm/admin/page-cost-deposit.php:309 inc/_bm/admin/page-cost-early-late-booking.php:314
4952
  #: inc/_bm/admin/page-cost-early-late-booking.php:514 inc/_bm/admin/page-cost-rate.php:119
4953
  #: inc/_bm/admin/page-cost-valuation.php:148
4954
  msgid "Hide season filters"
4955
  msgstr ""
4956
 
4957
+ #: core/lib/wpbc_all_translations.php:903 inc/_bm/admin/page-availability.php:948
4958
  #: inc/_bm/admin/page-cost-deposit.php:314 inc/_bm/admin/page-cost-early-late-booking.php:319
4959
  #: inc/_bm/admin/page-cost-early-late-booking.php:519 inc/_bm/admin/page-cost-rate.php:124
4960
  #: inc/_bm/admin/page-cost-valuation.php:153
4961
  msgid "Show all exist season filters"
4962
  msgstr ""
4963
 
4964
+ #: core/lib/wpbc_all_translations.php:904 inc/_bm/admin/page-availability.php:981
4965
  #: inc/_bm/admin/page-cost-rate.php:157 inc/gateways/page-gateways.php:849
4966
  msgid "Enabled"
4967
  msgstr ""
4968
 
4969
+ #: core/lib/wpbc_all_translations.php:905 inc/_bm/admin/page-cost-advanced.php:44
4970
  msgid "Customization of additional cost, which depend from form fields"
4971
  msgstr ""
4972
 
4973
+ #: core/lib/wpbc_all_translations.php:906 inc/_bm/admin/page-cost-advanced.php:45
4974
  msgid "Advanced Cost Settings"
4975
  msgstr ""
4976
 
4977
+ #: core/lib/wpbc_all_translations.php:907 inc/_bm/admin/page-cost-advanced.php:125
4978
  msgid "Configure additional cost, which depend from selection of selectbox(es) and checkbox(es)."
4979
  msgstr ""
4980
 
4981
+ #: core/lib/wpbc_all_translations.php:908 inc/_bm/admin/page-cost-advanced.php:127
4982
  #, php-format
4983
  msgid ""
4984
  "Fields %s(selectbox(es) and checkbox(es))%s are shown here automatically if they exist in the "
4985
  "%sbooking form%s."
4986
  msgstr ""
4987
 
4988
+ #: core/lib/wpbc_all_translations.php:909 inc/_bm/admin/page-cost-advanced.php:441
4989
  #: inc/_bm/admin/page-cost-deposit.php:181
4990
  msgid "Deposit type"
4991
  msgstr ""
4992
 
4993
+ #: core/lib/wpbc_all_translations.php:910 inc/_bm/admin/page-cost-advanced.php:460
4994
  msgid "of total cost"
4995
  msgstr ""
4996
 
4997
+ #: core/lib/wpbc_all_translations.php:911 inc/_bm/admin/page-cost-advanced.php:462
4998
  #: inc/_bs/admin/api-settings-s.php:898
4999
  msgid "night"
5000
  msgstr ""
5001
 
5002
+ #: core/lib/wpbc_all_translations.php:912 inc/_bm/admin/page-cost-advanced.php:463
5003
  msgid "as additional sum"
5004
  msgstr ""
5005
 
5006
+ #: core/lib/wpbc_all_translations.php:913 inc/_bm/admin/page-cost-advanced.php:658
5007
  msgid "Enter additional cost in formats:"
5008
  msgstr ""
5009
 
5010
+ #: core/lib/wpbc_all_translations.php:914 inc/_bm/admin/page-cost-advanced.php:659
5011
  #, php-format
5012
  msgid ""
5013
  "For example, if the original cost of the booking is %s, then after applying additional costs the "
5014
  "total cost will be folowing"
5015
  msgstr ""
5016
 
5017
+ #: core/lib/wpbc_all_translations.php:915 inc/_bm/admin/page-cost-advanced.php:662
5018
  msgid "Enter fixed cost"
5019
  msgstr ""
5020
 
5021
+ #: core/lib/wpbc_all_translations.php:916 inc/_bm/admin/page-cost-advanced.php:662
5022
  #: inc/_bm/admin/page-cost-advanced.php:665 inc/_bm/admin/page-cost-advanced.php:671
5023
  #: inc/_bm/admin/page-cost-advanced.php:681
5024
  #, php-format
5025
  msgid "%s, then total cost will be %s"
5026
  msgstr ""
5027
 
5028
+ #: core/lib/wpbc_all_translations.php:917 inc/_bm/admin/page-cost-advanced.php:665
5029
  msgid "Enter percentage of the entire booking"
5030
  msgstr ""
5031
 
5032
+ #: core/lib/wpbc_all_translations.php:918 inc/_bm/admin/page-cost-advanced.php:668
5033
  msgid "Enter fixed amount for each selected day"
5034
  msgstr ""
5035
 
5036
+ #: core/lib/wpbc_all_translations.php:919 inc/_bm/admin/page-cost-advanced.php:668
5037
  #, php-format
5038
  msgid "%s, then total cost will be (if selected 3 days) %s"
5039
  msgstr ""
5040
 
5041
+ #: core/lib/wpbc_all_translations.php:920 inc/_bm/admin/page-cost-advanced.php:668
5042
  #: inc/_ps/form/class-wpbc-form-help.php:279 inc/_ps/form/class-wpbc-form-help.php:292
5043
  #: inc/_ps/form/class-wpbc-form-help.php:306 inc/_ps/form/class-wpbc-form-help.php:344
5044
  msgid "or"
5045
  msgstr ""
5046
 
5047
+ #: core/lib/wpbc_all_translations.php:921 inc/_bm/admin/page-cost-advanced.php:671
5048
  msgid "Enter percentage as additional sum, which is based only on original cost and not full sum"
5049
  msgstr ""
5050
 
5051
+ #: core/lib/wpbc_all_translations.php:922 inc/_bm/admin/page-cost-advanced.php:674
5052
  #: inc/_bm/admin/page-cost-advanced.php:686
5053
  #, php-format
5054
  msgid "Please check more info about configuration of this cost settings on this %spage%s."
5055
  msgstr ""
5056
 
5057
+ #: core/lib/wpbc_all_translations.php:923 inc/_bm/admin/page-cost-deposit.php:73
5058
  msgid "Set Deposit"
5059
  msgstr ""
5060
 
5061
+ #: core/lib/wpbc_all_translations.php:924 inc/_bm/admin/page-cost-deposit.php:135
5062
  msgid "deposit payment for booking resource"
5063
  msgstr ""
5064
 
5065
+ #: core/lib/wpbc_all_translations.php:925 inc/_bm/admin/page-cost-deposit.php:153
5066
  #: inc/_bm/admin/page-cost-deposit.php:162
5067
  msgid "Deposit amount"
5068
  msgstr ""
5069
 
5070
+ #: core/lib/wpbc_all_translations.php:926 inc/_bm/admin/page-cost-deposit.php:199
5071
  #: inc/_bm/admin/page-cost-early-late-booking.php:203
5072
  #: inc/_bm/admin/page-cost-early-late-booking.php:404
5073
  msgid "fixed total in"
5074
  msgstr ""
5075
 
5076
+ #: core/lib/wpbc_all_translations.php:927 inc/_bm/admin/page-cost-deposit.php:200
5077
  #: inc/_bm/admin/page-cost-early-late-booking.php:204
5078
  #: inc/_bm/admin/page-cost-early-late-booking.php:405
5079
  msgid "of payment"
5080
  msgstr ""
5081
 
5082
+ #: core/lib/wpbc_all_translations.php:928 inc/_bm/admin/page-cost-deposit.php:209
5083
  #: inc/_bm/admin/page-cost-early-late-booking.php:213
5084
  #: inc/_bm/admin/page-cost-early-late-booking.php:414
5085
  msgid "Conditions"
5086
  msgstr ""
5087
 
5088
+ #: core/lib/wpbc_all_translations.php:929 inc/_bm/admin/page-cost-deposit.php:219
5089
  #, php-format
5090
  msgid ""
5091
  "Show deposit payment form, only if difference between %sToday%s and %sCheck In%s days more than"
5092
  msgstr ""
5093
 
5094
+ #: core/lib/wpbc_all_translations.php:930 inc/_bm/admin/page-cost-deposit.php:271
5095
  #, php-format
5096
  msgid "Show deposit payment form, only if %sCheck In%s day inside of this %sSeason Filter%s"
5097
  msgstr ""
5098
 
5099
+ #: core/lib/wpbc_all_translations.php:931 inc/_bm/admin/page-cost-deposit.php:275
5100
  #: inc/_bm/admin/page-cost-early-late-booking.php:280
5101
  #: inc/_bm/admin/page-cost-early-late-booking.php:480 inc/_bm/admin/page-cost-valuation.php:542
5102
  msgid "Any days"
5103
  msgstr ""
5104
 
5105
+ #: core/lib/wpbc_all_translations.php:932 inc/_bm/admin/page-cost-deposit.php:342
5106
  msgid "Deposit payment total"
5107
  msgstr ""
5108
 
5109
+ #: core/lib/wpbc_all_translations.php:933 inc/_bm/admin/page-cost-rate.php:69
5110
  msgid "Set Rates"
5111
  msgstr ""
5112
 
5113
+ #: core/lib/wpbc_all_translations.php:934 inc/_bm/admin/page-cost-rate.php:163
5114
  #: inc/_bm/admin/page-cost.php:660 inc/_bm/admin/page-cost.php:661
5115
  msgid "Rates"
5116
  msgstr ""
5117
 
5118
+ #: core/lib/wpbc_all_translations.php:935 inc/_bm/admin/page-cost-rate.php:167
5119
  msgid "Seasonal price"
5120
  msgstr ""
5121
 
5122
+ #: core/lib/wpbc_all_translations.php:936 inc/_bm/admin/page-cost-rate.php:171
5123
  #: inc/_bm/admin/page-cost-valuation.php:198
5124
  msgid "Season"
5125
  msgstr ""
5126
 
5127
+ #: core/lib/wpbc_all_translations.php:937 inc/_bm/admin/page-cost-rate.php:215
5128
  #, php-format
5129
  msgid ""
5130
  "Enter seasonal rate(s) (cost diference in %s from standard cost %s or a fixed cost) of the "
5131
  "booking resource (%s) or %sAdd a new seasonal filter%s"
5132
  msgstr ""
5133
 
5134
+ #: core/lib/wpbc_all_translations.php:938 inc/_bm/admin/page-cost-valuation.php:96
5135
  #: inc/_bm/admin/page-cost.php:220 inc/_bm/admin/page-cost.php:229
5136
  msgid "Set Valuation Days"
5137
  msgstr ""
5138
 
5139
+ #: core/lib/wpbc_all_translations.php:939 inc/_bm/admin/page-cost-valuation.php:185
5140
  #: inc/_mu/admin/page-users.php:437
5141
  msgid "Status"
5142
  msgstr ""
5143
 
5144
+ #: core/lib/wpbc_all_translations.php:940 inc/_bm/admin/page-cost-valuation.php:194
5145
  msgid "Costs"
5146
  msgstr ""
5147
 
5148
+ #: core/lib/wpbc_all_translations.php:941 inc/_bm/admin/page-cost-valuation.php:249
5149
  msgid "Add new cost"
5150
  msgstr ""
5151
 
5152
+ #: core/lib/wpbc_all_translations.php:942 inc/_bm/admin/page-cost-valuation.php:272
5153
  #, php-format
5154
  msgid ""
5155
  "Cost setings at %stop have higher priority%s than other costs of same type at the %sbottom%s of "
5156
  "the list."
5157
  msgstr ""
5158
 
5159
+ #: core/lib/wpbc_all_translations.php:943 inc/_bm/admin/page-cost-valuation.php:275
5160
  #, php-format
5161
  msgid ""
5162
  "Please create all %s terms firstly %s(from higher priority to lower)%s, then terms %s and after "
5163
  "terms %s"
5164
  msgstr ""
5165
 
5166
+ #: core/lib/wpbc_all_translations.php:944 inc/_bm/admin/page-cost-valuation.php:275
5167
  #: inc/_bm/admin/page-cost-valuation.php:278 inc/_bm/admin/page-cost-valuation.php:450
5168
  msgid "Together"
5169
  msgstr ""
5170
 
5171
+ #: core/lib/wpbc_all_translations.php:945 inc/_bm/admin/page-cost-valuation.php:275
5172
  #: inc/_bm/admin/page-cost-valuation.php:278 inc/_bm/admin/page-cost-valuation.php:282
5173
  #: inc/_bm/admin/page-cost-valuation.php:284 inc/_bm/admin/page-cost-valuation.php:448
5174
  msgid "For"
5175
  msgstr ""
5176
 
5177
+ #: core/lib/wpbc_all_translations.php:946 inc/_bm/admin/page-cost-valuation.php:278
5178
  #, php-format
5179
  msgid "%s and %s terms have higher priority than a range %s days."
5180
  msgstr ""
5181
 
5182
+ #: core/lib/wpbc_all_translations.php:947 inc/_bm/admin/page-cost-valuation.php:282
5183
  #, php-format
5184
  msgid "%s - definition of check-out date."
5185
  msgstr ""
5186
 
5187
+ #: core/lib/wpbc_all_translations.php:948 inc/_bm/admin/page-cost-valuation.php:284
5188
  #: inc/_bs/admin/api-settings-s.php:199 inc/_bs/admin/api-settings-s.php:325
5189
  #: inc/_bs/admin/api-settings-s.php:338 inc/_ps/form/class-wpbc-form-help.php:532
5190
  #: inc/_ps/form/class-wpbc-form-help.php:535
5191
  msgid "Example"
5192
  msgstr ""
5193
 
5194
+ #: core/lib/wpbc_all_translations.php:949 inc/_bm/admin/page-cost-valuation.php:291
5195
  msgid ""
5196
  "Specific cost will take affect, only if it active (the box at the left side is checked) and if "
5197
  "\"Check In\" (start) date belong to selected season filter or if set \"Any days\"."
5198
  msgstr ""
5199
 
5200
+ #: core/lib/wpbc_all_translations.php:950 inc/_bm/admin/page-cost-valuation.php:335
5201
  #: inc/_bm/admin/page-cost-valuation.php:336 inc/_bm/biz_m.php:219 inc/_bm/biz_m.php:251
5202
  #: inc/_bm/biz_m.php:252
5203
  msgid " for all days!"
5204
  msgstr ""
5205
 
5206
+ #: core/lib/wpbc_all_translations.php:951 inc/_bm/admin/page-cost-valuation.php:341
5207
  #: inc/_bm/admin/page-cost-valuation.php:502 inc/_bm/biz_m.php:217 inc/_bm/biz_m.php:249
5208
  msgid "from the cost of 1 day "
5209
  msgstr ""
5210
 
5211
+ #: core/lib/wpbc_all_translations.php:952 inc/_bm/admin/page-cost-valuation.php:342
5212
  #: inc/_bm/admin/page-cost-valuation.php:503 inc/_bm/biz_m.php:216 inc/_bm/biz_m.php:248
5213
  msgid "per 1 day"
5214
  msgstr ""
5215
 
5216
+ #: core/lib/wpbc_all_translations.php:953 inc/_bm/admin/page-cost-valuation.php:470
5217
  #: inc/_bm/admin/page-seasons.php:1564
5218
  msgid "to"
5219
  msgstr ""
5220
 
5221
+ #: core/lib/wpbc_all_translations.php:954 inc/_bm/admin/page-cost-valuation.php:504
5222
  #: inc/_bm/biz_m.php:218 inc/_bm/biz_m.php:250
5223
  #, php-format
5224
  msgid "Additional cost in %s per 1 day"
5225
  msgstr ""
5226
 
5227
+ #: core/lib/wpbc_all_translations.php:955 inc/_bm/admin/page-cost.php:49
5228
  msgid "Customization of rates, valuation days cost and deposit amount "
5229
  msgstr ""
5230
 
5231
+ #: core/lib/wpbc_all_translations.php:956 inc/_bm/admin/page-cost.php:50
5232
  msgid "Costs and Rates Settings"
5233
  msgstr ""
5234
 
5235
+ #: core/lib/wpbc_all_translations.php:957 inc/_bm/admin/page-cost.php:219
5236
  #: inc/_bm/admin/page-cost.php:228
5237
  msgid "Set Rate"
5238
  msgstr ""
5239
 
5240
+ #: core/lib/wpbc_all_translations.php:958 inc/_bm/admin/page-cost.php:221
5241
  #: inc/_bm/admin/page-cost.php:230
5242
  msgid "Set Deposit Amount"
5243
  msgstr ""
5244
 
5245
+ #: core/lib/wpbc_all_translations.php:959 inc/_bm/admin/page-cost.php:667
5246
  #: inc/_bm/admin/page-cost.php:668
5247
  msgid "Valuation days"
5248
  msgstr ""
5249
 
5250
+ #: core/lib/wpbc_all_translations.php:960 inc/_bm/admin/page-cost.php:674
5251
  #: inc/_bm/admin/page-cost.php:675 inc/gateways/page-gateways.php:1412
5252
  msgid "Deposit"
5253
  msgstr ""
5254
 
5255
+ #: core/lib/wpbc_all_translations.php:961 inc/_bm/admin/page-seasons.php:46
5256
  msgid "Customizaton of Season Filters"
5257
  msgstr ""
5258
 
5259
+ #: core/lib/wpbc_all_translations.php:962 inc/_bm/admin/page-seasons.php:680
5260
  #: inc/_bm/admin/page-seasons.php:815
5261
  msgid "Specific Dates Filter"
5262
  msgstr ""
5263
 
5264
+ #: core/lib/wpbc_all_translations.php:963 inc/_bm/admin/page-seasons.php:743
5265
  #: inc/_bm/admin/page-seasons.php:821
5266
  msgid "Conditional Dates Filter"
5267
  msgstr ""
5268
 
5269
+ #: core/lib/wpbc_all_translations.php:964 inc/_bm/admin/page-seasons.php:956
5270
  #: inc/_bm/admin/page-seasons.php:1257
5271
  msgid "Filter Name"
5272
  msgstr ""
5273
 
5274
+ #: core/lib/wpbc_all_translations.php:965 inc/_bm/admin/page-seasons.php:957
5275
  #: inc/_bm/admin/page-seasons.php:1258
5276
  msgid "Type filter name"
5277
  msgstr ""
5278
 
5279
+ #: core/lib/wpbc_all_translations.php:966 inc/_bm/admin/page-seasons.php:990
5280
  msgid "Weekdays"
5281
  msgstr ""
5282
 
5283
+ #: core/lib/wpbc_all_translations.php:967 inc/_bm/admin/page-seasons.php:1106
5284
  msgid "Months"
5285
  msgstr ""
5286
 
5287
+ #: core/lib/wpbc_all_translations.php:968 inc/_bm/admin/page-seasons.php:1108
5288
  #: inc/_bm/admin/page-seasons.php:1283
5289
  msgid "January"
5290
  msgstr ""
5291
 
5292
+ #: core/lib/wpbc_all_translations.php:969 inc/_bm/admin/page-seasons.php:1109
5293
  #: inc/_bm/admin/page-seasons.php:1284
5294
  msgid "February"
5295
  msgstr ""
5296
 
5297
+ #: core/lib/wpbc_all_translations.php:970 inc/_bm/admin/page-seasons.php:1110
5298
  #: inc/_bm/admin/page-seasons.php:1285
5299
  msgid "March"
5300
  msgstr ""
5301
 
5302
+ #: core/lib/wpbc_all_translations.php:971 inc/_bm/admin/page-seasons.php:1111
5303
  #: inc/_bm/admin/page-seasons.php:1286
5304
  msgid "April"
5305
  msgstr ""
5306
 
5307
+ #: core/lib/wpbc_all_translations.php:972 inc/_bm/admin/page-seasons.php:1112
5308
  #: inc/_bm/admin/page-seasons.php:1287 inc/_bm/admin/page-seasons.php:1490
5309
  msgid "May"
5310
  msgstr ""
5311
 
5312
+ #: core/lib/wpbc_all_translations.php:973 inc/_bm/admin/page-seasons.php:1113
5313
  #: inc/_bm/admin/page-seasons.php:1288
5314
  msgid "June"
5315
  msgstr ""
5316
 
5317
+ #: core/lib/wpbc_all_translations.php:974 inc/_bm/admin/page-seasons.php:1114
5318
  #: inc/_bm/admin/page-seasons.php:1289
5319
  msgid "July"
5320
  msgstr ""
5321
 
5322
+ #: core/lib/wpbc_all_translations.php:975 inc/_bm/admin/page-seasons.php:1115
5323
  #: inc/_bm/admin/page-seasons.php:1290
5324
  msgid "August"
5325
  msgstr ""
5326
 
5327
+ #: core/lib/wpbc_all_translations.php:976 inc/_bm/admin/page-seasons.php:1116
5328
  #: inc/_bm/admin/page-seasons.php:1291
5329
  msgid "September"
5330
  msgstr ""
5331
 
5332
+ #: core/lib/wpbc_all_translations.php:977 inc/_bm/admin/page-seasons.php:1117
5333
  #: inc/_bm/admin/page-seasons.php:1292
5334
  msgid "October"
5335
  msgstr ""
5336
 
5337
+ #: core/lib/wpbc_all_translations.php:978 inc/_bm/admin/page-seasons.php:1118
5338
  #: inc/_bm/admin/page-seasons.php:1293
5339
  msgid "November"
5340
  msgstr ""
5341
 
5342
+ #: core/lib/wpbc_all_translations.php:979 inc/_bm/admin/page-seasons.php:1119
5343
  #: inc/_bm/admin/page-seasons.php:1294
5344
  msgid "December"
5345
  msgstr ""
5346
 
5347
+ #: core/lib/wpbc_all_translations.php:980 inc/_bm/admin/page-seasons.php:1174
5348
  msgid "Years"
5349
  msgstr ""
5350
 
5351
+ #: core/lib/wpbc_all_translations.php:981 inc/_bm/admin/page-seasons.php:1272
5352
  #: inc/_bm/admin/page-seasons.php:1487
5353
  msgid "Mo"
5354
  msgstr ""
5355
 
5356
+ #: core/lib/wpbc_all_translations.php:982 inc/_bm/admin/page-seasons.php:1273
5357
  #: inc/_bm/admin/page-seasons.php:1487
5358
  msgid "Tu"
5359
  msgstr ""
5360
 
5361
+ #: core/lib/wpbc_all_translations.php:983 inc/_bm/admin/page-seasons.php:1274
5362
  #: inc/_bm/admin/page-seasons.php:1487
5363
  msgid "We"
5364
  msgstr ""
5365
 
5366
+ #: core/lib/wpbc_all_translations.php:984 inc/_bm/admin/page-seasons.php:1275
5367
  #: inc/_bm/admin/page-seasons.php:1487
5368
  msgid "Th"
5369
  msgstr ""
5370
 
5371
+ #: core/lib/wpbc_all_translations.php:985 inc/_bm/admin/page-seasons.php:1276
5372
  #: inc/_bm/admin/page-seasons.php:1487
5373
  msgid "Fr"
5374
  msgstr ""
5375
 
5376
+ #: core/lib/wpbc_all_translations.php:986 inc/_bm/admin/page-seasons.php:1277
5377
  #: inc/_bm/admin/page-seasons.php:1487
5378
  msgid "Sa"
5379
  msgstr ""
5380
 
5381
+ #: core/lib/wpbc_all_translations.php:987 inc/_bm/admin/page-seasons.php:1278
5382
  #: inc/_bm/admin/page-seasons.php:1487
5383
  msgid "Su"
5384
  msgstr ""
5385
 
5386
+ #: core/lib/wpbc_all_translations.php:988 inc/_bm/admin/page-seasons.php:1489
5387
  msgid "Jan"
5388
  msgstr ""
5389
 
5390
+ #: core/lib/wpbc_all_translations.php:989 inc/_bm/admin/page-seasons.php:1489
5391
  msgid "Feb"
5392
  msgstr ""
5393
 
5394
+ #: core/lib/wpbc_all_translations.php:990 inc/_bm/admin/page-seasons.php:1490
5395
  msgid "Mar"
5396
  msgstr ""
5397
 
5398
+ #: core/lib/wpbc_all_translations.php:991 inc/_bm/admin/page-seasons.php:1490
5399
  msgid "Apr"
5400
  msgstr ""
5401
 
5402
+ #: core/lib/wpbc_all_translations.php:992 inc/_bm/admin/page-seasons.php:1491
5403
  msgid "Jun"
5404
  msgstr ""
5405
 
5406
+ #: core/lib/wpbc_all_translations.php:993 inc/_bm/admin/page-seasons.php:1491
5407
  msgid "Jul"
5408
  msgstr ""
5409
 
5410
+ #: core/lib/wpbc_all_translations.php:994 inc/_bm/admin/page-seasons.php:1491
5411
  msgid "Aug"
5412
  msgstr ""
5413
 
5414
+ #: core/lib/wpbc_all_translations.php:995 inc/_bm/admin/page-seasons.php:1492
5415
  msgid "Sep"
5416
  msgstr ""
5417
 
5418
+ #: core/lib/wpbc_all_translations.php:996 inc/_bm/admin/page-seasons.php:1492
5419
  msgid "Oct"
5420
  msgstr ""
5421
 
5422
+ #: core/lib/wpbc_all_translations.php:997 inc/_bm/admin/page-seasons.php:1492
5423
  msgid "Nov"
5424
  msgstr ""
5425
 
5426
+ #: core/lib/wpbc_all_translations.php:998 inc/_bm/admin/page-seasons.php:1492
5427
  msgid "Dec"
5428
  msgstr ""
5429
 
5430
+ #: core/lib/wpbc_all_translations.php:999 inc/_bm/admin/page-seasons.php:1562
5431
  #: inc/_bm/admin/page-seasons.php:1580 inc/_bm/admin/page-seasons.php:1602
5432
  #: inc/_bm/admin/page-seasons.php:1626 inc/_bm/admin/page-seasons.php:1644
5433
  msgid "No days"
5434
  msgstr ""
5435
 
5436
+ #: core/lib/wpbc_all_translations.php:1000 inc/_bm/admin/page-seasons.php:1564
5437
  msgid "time"
5438
  msgstr ""
5439
 
5440
+ #: core/lib/wpbc_all_translations.php:1001 inc/_bm/admin/page-seasons.php:1582
5441
  msgid "Every"
5442
  msgstr ""
5443
 
5444
+ #: core/lib/wpbc_all_translations.php:1002 inc/_bm/admin/page-seasons.php:1598
5445
  msgid "Each day "
5446
  msgstr ""
5447
 
5448
+ #: core/lib/wpbc_all_translations.php:1003 inc/_bm/admin/page-seasons.php:1600
5449
  msgid "on each day "
5450
  msgstr ""
5451
 
5452
+ #: core/lib/wpbc_all_translations.php:1004 inc/_bm/admin/page-seasons.php:1605
5453
  msgid "On each "
5454
  msgstr ""
5455
 
5456
+ #: core/lib/wpbc_all_translations.php:1005 inc/_bm/admin/page-seasons.php:1607
5457
  msgid "on each "
5458
  msgstr ""
5459
 
5460
+ #: core/lib/wpbc_all_translations.php:1006 inc/_bm/admin/page-seasons.php:1624
5461
  msgid "of every month "
5462
  msgstr ""
5463
 
5464
+ #: core/lib/wpbc_all_translations.php:1007 inc/_bm/admin/page-seasons.php:1628
5465
  msgid "of"
5466
  msgstr ""
5467
 
5468
+ #: core/lib/wpbc_all_translations.php:1008 inc/_bm/biz_m.php:220
5469
  msgid "for all days!"
5470
  msgstr ""
5471
 
5472
+ #: core/lib/wpbc_all_translations.php:1009 inc/_bm/biz_m.php:764
5473
  msgid "Standard booking resource cost"
5474
  msgstr ""
5475
 
5476
+ #: core/lib/wpbc_all_translations.php:1010 inc/_bm/biz_m.php:765
5477
  msgid "Total booking resource cost"
5478
  msgstr ""
5479
 
5480
+ #: core/lib/wpbc_all_translations.php:1011 inc/_bm/m-toolbar.php:288
5481
  msgid "Delete selected booking form"
5482
  msgstr ""
5483
 
5484
+ #: core/lib/wpbc_all_translations.php:1012 inc/_bm/m-toolbar.php:292
5485
  msgid "Do you really want to delete selected booking form ?"
5486
  msgstr ""
5487
 
5488
+ #: core/lib/wpbc_all_translations.php:1013 inc/_bm/m-toolbar.php:317 inc/_bm/m-toolbar.php:318
5489
  msgid "Add New Custom Form"
5490
  msgstr ""
5491
 
5492
+ #: core/lib/wpbc_all_translations.php:1014 inc/_bm/m-toolbar.php:351
5493
  msgid "Type the name of booking form"
5494
  msgstr ""
5495
 
5496
+ #: core/lib/wpbc_all_translations.php:1015 inc/_bm/m-toolbar.php:358
5497
  msgid "Create"
5498
  msgstr ""
5499
 
5500
+ #: core/lib/wpbc_all_translations.php:1016 inc/_bm/m-toolbar.php:359
5501
  msgid "Create new form"
5502
  msgstr ""
5503
 
5504
+ #: core/lib/wpbc_all_translations.php:1017 inc/_bm/m-toolbar.php:554
5505
  msgid "There are no extended booking forms"
5506
  msgstr ""
5507
 
5508
+ #: core/lib/wpbc_all_translations.php:1018 inc/_bm/m-toolbar.php:598 inc/_bm/m-toolbar.php:600
5509
  msgid "Create conditional days filter"
5510
  msgstr ""
5511
 
5512
+ #: core/lib/wpbc_all_translations.php:1019 inc/_bs/admin/activation-s.php:93
5513
  #: inc/_mu/admin/activation-u.php:85 inc/_ps/admin/activation-p.php:46
5514
  msgid "Apartment#1"
5515
  msgstr ""
5516
 
5517
+ #: core/lib/wpbc_all_translations.php:1020 inc/_bs/admin/activation-s.php:94
5518
  #: inc/_mu/admin/activation-u.php:86 inc/_ps/admin/activation-p.php:47
5519
  msgid "Apartment#2"
5520
  msgstr ""
5521
 
5522
+ #: core/lib/wpbc_all_translations.php:1021 inc/_bs/admin/activation-s.php:95
5523
  #: inc/_ps/admin/activation-p.php:48
5524
  msgid "Apartment#3"
5525
  msgstr ""
5526
 
5527
+ #: core/lib/wpbc_all_translations.php:1022 inc/_bs/admin/api-settings-s.php:31
5528
  msgid "Range days"
5529
  msgstr ""
5530
 
5531
+ #: core/lib/wpbc_all_translations.php:1023 inc/_bs/admin/api-settings-s.php:46
5532
  #, php-format
5533
  msgid "Select a %sFIXED%s number of days with %s1 mouse click%s"
5534
  msgstr ""
5535
 
5536
+ #: core/lib/wpbc_all_translations.php:1024 inc/_bs/admin/api-settings-s.php:48
5537
  #, php-format
5538
  msgid "Select a %sDYNAMIC%s range of days with %s2 mouse clicks%s"
5539
  msgstr ""
5540
 
5541
+ #: core/lib/wpbc_all_translations.php:1025 inc/_bs/admin/api-settings-s.php:74
5542
  #: inc/_bs/admin/api-settings-s.php:138
5543
  msgid "Days selection number"
5544
  msgstr ""
5545
 
5546
+ #: core/lib/wpbc_all_translations.php:1026 inc/_bs/admin/api-settings-s.php:75
5547
  #, php-format
5548
  msgid "Type your %snumber of days for range selection%s"
5549
  msgstr ""
5550
 
5551
+ #: core/lib/wpbc_all_translations.php:1027 inc/_bs/admin/api-settings-s.php:83
5552
  #: inc/_bs/admin/api-settings-s.php:211
5553
  msgid "Specific day(s) of week"
5554
  msgstr ""
5555
 
5556
+ #: core/lib/wpbc_all_translations.php:1028 inc/_bs/admin/api-settings-s.php:84
5557
  #: inc/_bs/admin/api-settings-s.php:215
5558
  msgid "Any day of week"
5559
  msgstr ""
5560
 
5561
+ #: core/lib/wpbc_all_translations.php:1029 inc/_bs/admin/api-settings-s.php:90
5562
  #: inc/_bs/admin/api-settings-s.php:223
5563
  msgid "Start day of range"
5564
  msgstr ""
5565
 
5566
+ #: core/lib/wpbc_all_translations.php:1030 inc/_bs/admin/api-settings-s.php:119
5567
  #: inc/_bs/admin/api-settings-s.php:252
5568
  msgid "Select your start day of range selection at week"
5569
  msgstr ""
5570
 
5571
+ #: core/lib/wpbc_all_translations.php:1031 inc/_bs/admin/api-settings-s.php:152
5572
  #: inc/_bs/admin/api-settings-s.php:157
5573
  msgid "Min"
5574
  msgstr ""
5575
 
5576
+ #: core/lib/wpbc_all_translations.php:1032 inc/_bs/admin/api-settings-s.php:170
5577
  #: inc/_bs/admin/api-settings-s.php:175
5578
  msgid "Max"
5579
  msgstr ""
5580
 
5581
+ #: core/lib/wpbc_all_translations.php:1033 inc/_bs/admin/api-settings-s.php:187
5582
  #, php-format
5583
  msgid "Select your %sminimum and maximum number of days for range selection%s"
5584
  msgstr ""
5585
 
5586
+ #: core/lib/wpbc_all_translations.php:1034 inc/_bs/admin/api-settings-s.php:198
5587
  msgid "Specific days selections"
5588
  msgstr ""
5589
 
5590
+ #: core/lib/wpbc_all_translations.php:1035 inc/_bs/admin/api-settings-s.php:200
5591
  #, php-format
5592
  msgid ""
5593
  "Type your %sspecific%s days, which can be selected by visitors, or leave this value empty. It "
5595
  "this: %s) or combination (example:%s, its the same like this: %s)"
5596
  msgstr ""
5597
 
5598
+ #: core/lib/wpbc_all_translations.php:1036 inc/_bs/admin/api-settings-s.php:281
5599
  msgid "Use time selections as recurrent time slots"
5600
  msgstr ""
5601
 
5602
+ #: core/lib/wpbc_all_translations.php:1037 inc/_bs/admin/api-settings-s.php:282
5603
  msgid ""
5604
  "Check this box if you want to use recurrent time to reserve several days. This means that middle "
5605
  "days will be partially booked by actual times, otherwise the time in the booking form will be "
5606
  "used as check-in/check-out time for the first and last day of the reservation."
5607
  msgstr ""
5608
 
5609
+ #: core/lib/wpbc_all_translations.php:1038 inc/_bs/admin/api-settings-s.php:315
5610
  msgid "Check this option, to use check in/out time during booking process. "
5611
  msgstr ""
5612
 
5613
+ #: core/lib/wpbc_all_translations.php:1039 inc/_bs/admin/api-settings-s.php:316
5614
  #, php-format
5615
  msgid "%s Important!%s This will overwrite any times selection in your booking form."
5616
  msgstr ""
5617
 
5618
+ #: core/lib/wpbc_all_translations.php:1040 inc/_bs/admin/api-settings-s.php:323
5619
  msgid "Check-in time"
5620
  msgstr ""
5621
 
5622
+ #: core/lib/wpbc_all_translations.php:1041 inc/_bs/admin/api-settings-s.php:324
5623
  #, php-format
5624
  msgid "Type your %sCheck-in%s time of booking"
5625
  msgstr ""
5626
 
5627
+ #: core/lib/wpbc_all_translations.php:1042 inc/_bs/admin/api-settings-s.php:336
5628
  msgid "Check-Out time"
5629
  msgstr ""
5630
 
5631
+ #: core/lib/wpbc_all_translations.php:1043 inc/_bs/admin/api-settings-s.php:337
5632
  #, php-format
5633
  msgid "Type your %sCheck-Out%s time of booking"
5634
  msgstr ""
5635
 
5636
+ #: core/lib/wpbc_all_translations.php:1044 inc/_bs/admin/api-settings-s.php:351
5637
  msgid "Change over days as triangles"
5638
  msgstr ""
5639
 
5640
+ #: core/lib/wpbc_all_translations.php:1045 inc/_bs/admin/api-settings-s.php:352
5641
  msgid "Check this option, to show change over days as triangles. "
5642
  msgstr ""
5643
 
5644
+ #: core/lib/wpbc_all_translations.php:1046 inc/_bs/admin/api-settings-s.php:377
5645
  msgid "Title of booked timeslot(s)"
5646
  msgstr ""
5647
 
5648
+ #: core/lib/wpbc_all_translations.php:1047 inc/_bs/admin/api-settings-s.php:378
5649
  #, php-format
5650
  msgid "Type your %stitle%s, what will show in mouseover tooltip near booked timeslot(s)"
5651
  msgstr ""
5652
 
5653
+ #: core/lib/wpbc_all_translations.php:1048 inc/_bs/admin/api-settings-s.php:418
5654
  msgid "Time Format"
5655
  msgstr ""
5656
 
5657
+ #: core/lib/wpbc_all_translations.php:1049 inc/_bs/admin/api-settings-s.php:452
5658
  #, php-format
5659
  msgid ""
5660
  "Type your time format for emails and the booking table. %sDocumentation on time formatting%s"
5661
  msgstr ""
5662
 
5663
+ #: core/lib/wpbc_all_translations.php:1050 inc/_bs/admin/api-settings-s.php:478
5664
  msgid "Auto approve all new bookings"
5665
  msgstr ""
5666
 
5667
+ #: core/lib/wpbc_all_translations.php:1051 inc/_bs/admin/api-settings-s.php:479
5668
  #, php-format
5669
  msgid "Check this checkbox to %sactivate%s auto approve of all new pending bookings."
5670
  msgstr ""
5671
 
5672
+ #: core/lib/wpbc_all_translations.php:1052 inc/_bs/admin/api-settings-s.php:517
5673
  #, php-format
5674
  msgid "Check this box to %sactivate%s auto-cancellation for pending, unpaid bookings."
5675
  msgstr ""
5676
 
5677
+ #: core/lib/wpbc_all_translations.php:1053 inc/_bs/admin/api-settings-s.php:541
5678
  msgid "Cancel bookings older"
5679
  msgstr ""
5680
 
5681
+ #: core/lib/wpbc_all_translations.php:1054 inc/_bs/admin/api-settings-s.php:542
5682
  msgid "Cancel only pending, unpaid bookings, which are older than this selection."
5683
  msgstr ""
5684
 
5685
+ #: core/lib/wpbc_all_translations.php:1055 inc/_bs/admin/api-settings-s.php:550
5686
  msgid "Cancellation email sent"
5687
  msgstr ""
5688
 
5689
+ #: core/lib/wpbc_all_translations.php:1056 inc/_bs/admin/api-settings-s.php:551
5690
  #, php-format
5691
  msgid "Check this box to %ssend%s cancellation email for this resource."
5692
  msgstr ""
5693
 
5694
+ #: core/lib/wpbc_all_translations.php:1057 inc/_bs/admin/api-settings-s.php:559
5695
  #: inc/_bs/admin/api-settings-s.php:560
5696
  msgid "Reason for cancellation"
5697
  msgstr ""
5698
 
5699
+ #: core/lib/wpbc_all_translations.php:1058 inc/_bs/admin/api-settings-s.php:561
5700
  #, php-format
5701
  msgid "Type the reason for %scancellation%s for the email template."
5702
  msgstr ""
5703
 
5704
+ #: core/lib/wpbc_all_translations.php:1059 inc/_bs/admin/page-email-payment.php:560
5705
  msgid "Payment request"
5706
  msgstr ""
5707
 
5708
+ #: core/lib/wpbc_all_translations.php:1060 inc/_bs/admin/page-email-payment.php:562
5709
  msgid "Customization of email template, which is sending to Visitor after payment request"
5710
  msgstr ""
5711
 
5712
+ #: core/lib/wpbc_all_translations.php:1061
5713
  msgid "Email with Payment Request which is sending to Visitor."
5714
  msgstr ""
5715
 
5716
+ #: core/lib/wpbc_all_translations.php:1062 core/wpbc-js.php:136
5717
  msgid "Error! Please reset your check-in/check-out dates above."
5718
  msgstr ""
5719
 
5720
+ #: core/lib/wpbc_all_translations.php:1063 core/wpbc-js.php:137
5721
  msgid ""
5722
  "Start Time is invalid. The date or time may be booked, or already in the past! Please choose "
5723
  "another date or time."
5724
  msgstr ""
5725
 
5726
+ #: core/lib/wpbc_all_translations.php:1064 core/wpbc-js.php:138
5727
  msgid ""
5728
  "End Time is invalid. The date or time may be booked, or already in the past. The End Time may "
5729
  "also be earlier that the start time, if only 1 day was selected! Please choose another date or "
5730
  "time."
5731
  msgstr ""
5732
 
5733
+ #: core/lib/wpbc_all_translations.php:1065 core/wpbc-js.php:139 core/wpbc-js.php:140
5734
  msgid "The time(s) may be booked, or already in the past!"
5735
  msgstr ""
5736
 
5737
+ #: core/lib/wpbc_all_translations.php:1066 inc/_bs/biz_s.php:408
5738
  msgid "Cost saved successfully"
5739
  msgstr ""
5740
 
5741
+ #: core/lib/wpbc_all_translations.php:1067 inc/_bs/biz_s.php:415
5742
  msgid "Cost is not correct. It must be greater than 0"
5743
  msgstr ""
5744
 
5745
+ #: core/lib/wpbc_all_translations.php:1068 inc/_bs/biz_s.php:600
5746
  msgid "Request has been sent"
5747
  msgstr ""
5748
 
5749
+ #: core/lib/wpbc_all_translations.php:1069 inc/_bs/biz_s.php:607
5750
  msgid "Request has failed"
5751
  msgstr ""
5752
 
5753
+ #: core/lib/wpbc_all_translations.php:1070 inc/_bs/biz_s.php:638
5754
  msgid "The payment status is changed successfully"
5755
  msgstr ""
5756
 
5757
+ #: core/lib/wpbc_all_translations.php:1071 inc/_bs/biz_s.php:645
5758
  msgid "The changing of payment status is failed"
5759
  msgstr ""
5760
 
5761
+ #: core/lib/wpbc_all_translations.php:1072 inc/_bs/biz_s.php:1022
5762
  msgid "deposit"
5763
  msgstr ""
5764
 
5765
+ #: core/lib/wpbc_all_translations.php:1073 inc/_bs/biz_s.php:1023
5766
  msgid "Total cost"
5767
  msgstr ""
5768
 
5769
+ #: core/lib/wpbc_all_translations.php:1074 inc/_bs/biz_s.php:1024
5770
  msgid "balance"
5771
  msgstr ""
5772
 
5773
+ #: core/lib/wpbc_all_translations.php:1075 inc/_bs/lib_s.php:40 inc/_bs/lib_s.php:71
5774
  #: inc/_bs/s-toolbar.php:94
5775
  msgid "Payment status"
5776
  msgstr ""
5777
 
5778
+ #: core/lib/wpbc_all_translations.php:1076 inc/_bs/lib_s.php:44
5779
  msgid "Any Status"
5780
  msgstr ""
5781
 
5782
+ #: core/lib/wpbc_all_translations.php:1077 inc/_bs/lib_s.php:47
5783
  msgid "Unknown Status"
5784
  msgstr ""
5785
 
5786
+ #: core/lib/wpbc_all_translations.php:1078 inc/_bs/lib_s.php:48 inc/_bs/lib_s.php:323
5787
  msgid "Not Completed"
5788
  msgstr ""
5789
 
5790
+ #: core/lib/wpbc_all_translations.php:1079 inc/_bs/lib_s.php:49 inc/_bs/lib_s.php:312
5791
  #: inc/_bs/lib_s.php:332
5792
  msgid "Failed"
5793
  msgstr ""
5794
 
5795
+ #: core/lib/wpbc_all_translations.php:1080 inc/_bs/lib_s.php:139
5796
  msgid "min"
5797
  msgstr ""
5798
 
5799
+ #: core/lib/wpbc_all_translations.php:1081 inc/_bs/lib_s.php:139
5800
  msgid "max"
5801
  msgstr ""
5802
 
5803
+ #: core/lib/wpbc_all_translations.php:1082 inc/_bs/lib_s.php:267 inc/_bs/lib_s.php:307
5804
  #: inc/_bs/lib_s.php:325
5805
  msgid "Completed"
5806
  msgstr ""
5807
 
5808
+ #: core/lib/wpbc_all_translations.php:1083 inc/_bs/lib_s.php:308 inc/_bs/lib_s.php:328
5809
  msgid "In-Progress"
5810
  msgstr ""
5811
 
5812
+ #: core/lib/wpbc_all_translations.php:1084 inc/_bs/lib_s.php:310 inc/_bs/lib_s.php:345
5813
  msgid "Partially paid"
5814
  msgstr ""
5815
 
5816
+ #: core/lib/wpbc_all_translations.php:1085 inc/_bs/lib_s.php:311 inc/_bs/lib_s.php:346
5817
  msgid "Cancelled"
5818
  msgstr ""
5819
 
5820
+ #: core/lib/wpbc_all_translations.php:1086 inc/_bs/lib_s.php:313 inc/_bs/lib_s.php:334
5821
  msgid "Refunded"
5822
  msgstr ""
5823
 
5824
+ #: core/lib/wpbc_all_translations.php:1087 inc/_bs/lib_s.php:314 inc/_bs/lib_s.php:347
5825
  msgid "Fraud"
5826
  msgstr ""
5827
 
5828
+ #: core/lib/wpbc_all_translations.php:1088 inc/_bs/lib_s.php:321
5829
  msgid "!Paid OK"
5830
  msgstr ""
5831
 
5832
+ #: core/lib/wpbc_all_translations.php:1089 inc/_bs/lib_s.php:322
5833
  msgid "Unknown status"
5834
  msgstr ""
5835
 
5836
+ #: core/lib/wpbc_all_translations.php:1090 inc/_bs/lib_s.php:327
5837
  msgid "Processed"
5838
  msgstr ""
5839
 
5840
+ #: core/lib/wpbc_all_translations.php:1091 inc/_bs/lib_s.php:329
5841
  msgid "Canceled_Reversal"
5842
  msgstr ""
5843
 
5844
+ #: core/lib/wpbc_all_translations.php:1092 inc/_bs/lib_s.php:330
5845
  msgid "Denied"
5846
  msgstr ""
5847
 
5848
+ #: core/lib/wpbc_all_translations.php:1093 inc/_bs/lib_s.php:331
5849
  msgid "Expired"
5850
  msgstr ""
5851
 
5852
+ #: core/lib/wpbc_all_translations.php:1094 inc/_bs/lib_s.php:333
5853
  msgid "Partially_Refunded"
5854
  msgstr ""
5855
 
5856
+ #: core/lib/wpbc_all_translations.php:1095 inc/_bs/lib_s.php:335
5857
  msgid "Reversed"
5858
  msgstr ""
5859
 
5860
+ #: core/lib/wpbc_all_translations.php:1096 inc/_bs/lib_s.php:336
5861
  msgid "Voided"
5862
  msgstr ""
5863
 
5864
+ #: core/lib/wpbc_all_translations.php:1097 inc/_bs/lib_s.php:339
5865
  msgid "Not authed"
5866
  msgstr ""
5867
 
5868
+ #: core/lib/wpbc_all_translations.php:1098 inc/_bs/lib_s.php:340
5869
  msgid "Malformed"
5870
  msgstr ""
5871
 
5872
+ #: core/lib/wpbc_all_translations.php:1099 inc/_bs/lib_s.php:341
5873
  msgid "Invalid"
5874
  msgstr ""
5875
 
5876
+ #: core/lib/wpbc_all_translations.php:1100 inc/_bs/lib_s.php:342
5877
  msgid "Abort"
5878
  msgstr ""
5879
 
5880
+ #: core/lib/wpbc_all_translations.php:1101 inc/_bs/lib_s.php:343
5881
  msgid "Rejected"
5882
  msgstr ""
5883
 
5884
+ #: core/lib/wpbc_all_translations.php:1102 inc/_bs/lib_s.php:348
5885
  msgid "Suspended"
5886
  msgstr ""
5887
 
5888
+ #: core/lib/wpbc_all_translations.php:1103 inc/_bs/s-toolbar.php:68
5889
  msgid "Send payment request to visitor"
5890
  msgstr ""
5891
 
5892
+ #: core/lib/wpbc_all_translations.php:1104 core/timeline/v2/wpbc-class-timeline_v2.php:2596
5893
+ #: inc/_bs/s-toolbar.php:110 inc/_ps/p-toolbar.php:131 inc/_ps/p-toolbar.php:507
5894
  msgid "Print"
5895
  msgstr ""
5896
 
5897
+ #: core/lib/wpbc_all_translations.php:1105 inc/_bs/s-toolbar.php:136
5898
  msgid "Save cost"
5899
  msgstr ""
5900
 
5901
+ #: core/lib/wpbc_all_translations.php:1106 inc/_bs/s-toolbar.php:173
5902
  msgid "Change status"
5903
  msgstr ""
5904
 
5905
+ #: core/lib/wpbc_all_translations.php:1107 inc/_bs/s-toolbar.php:196
5906
  msgid "Send payment request to customer"
5907
  msgstr ""
5908
 
5909
+ #: core/lib/wpbc_all_translations.php:1108 inc/_bs/s-toolbar.php:200
5910
  #, php-format
5911
  msgid "Type your %sreason for payment%s request"
5912
  msgstr ""
5913
 
5914
+ #: core/lib/wpbc_all_translations.php:1109 inc/_bs/s-toolbar.php:208
5915
  msgid "Send Request"
5916
  msgstr ""
5917
 
5918
+ #: core/lib/wpbc_all_translations.php:1110 inc/_bs/s-toolbar.php:230
5919
  msgid "Auto-fill form"
5920
  msgstr ""
5921
 
5922
+ #: core/lib/wpbc_all_translations.php:1111 inc/_mu/admin/activation-u.php:84
5923
  msgid "Suite"
5924
  msgstr ""
5925
 
5926
+ #: core/lib/wpbc_all_translations.php:1112 inc/_mu/admin/api-settings-u.php:91
5927
  #: inc/_ps/admin/br-table-export-feeds.php:89 inc/_ps/admin/br-table-import-gcal-p.php:73
5928
  msgid "User"
5929
  msgstr ""
5930
 
5931
+ #: core/lib/wpbc_all_translations.php:1113 inc/_mu/admin/api-settings-u.php:437
5932
  #: inc/_mu/admin/page-users.php:254 inc/_mu/admin/page-users.php:595
5933
  #: inc/_mu/admin/page-users.php:599
5934
  msgid "Super Admin"
5935
  msgstr ""
5936
 
5937
+ #: core/lib/wpbc_all_translations.php:1114 inc/_mu/admin/api-settings-u.php:441
5938
  #: inc/_mu/admin/page-users.php:289 inc/_mu/admin/page-users.php:603
5939
  #: inc/_mu/admin/page-users.php:607
5940
  msgid "Regular User"
5941
  msgstr ""
5942
 
5943
+ #: core/lib/wpbc_all_translations.php:1115 inc/_mu/admin/api-settings-u.php:446
5944
  msgid "Inactive User"
5945
  msgstr ""
5946
 
5947
+ #: core/lib/wpbc_all_translations.php:1116 inc/_mu/admin/page-users.php:43
5948
  #: inc/_mu/admin/page-users.php:433
5949
  msgid "Users"
5950
  msgstr ""
5951
 
5952
+ #: core/lib/wpbc_all_translations.php:1117 inc/_mu/admin/page-users.php:44
5953
  msgid "Manage Users"
5954
  msgstr ""
5955
 
5956
+ #: core/lib/wpbc_all_translations.php:1118 inc/_mu/admin/page-users.php:45
5957
  msgid "Users Settings"
5958
  msgstr ""
5959
 
5960
+ #: core/lib/wpbc_all_translations.php:1119 inc/_mu/admin/page-users.php:209
5961
+ #: inc/_mu/multiuser.php:649
5962
  msgid "User is Activated"
5963
  msgstr ""
5964
 
5965
+ #: core/lib/wpbc_all_translations.php:1120 inc/_mu/admin/page-users.php:237
5966
+ #: inc/_mu/multiuser.php:699
5967
  msgid "User is Deactivated"
5968
  msgstr ""
5969
 
5970
+ #: core/lib/wpbc_all_translations.php:1121 inc/_mu/admin/page-users.php:441
5971
  msgid "User Role"
5972
  msgstr ""
5973
 
5974
+ #: core/lib/wpbc_all_translations.php:1122 inc/_mu/admin/page-users.php:452
5975
  #: inc/_mu/admin/page-users.php:595 inc/_mu/admin/page-users.php:603
5976
  msgid "Set user as"
5977
  msgstr ""
5978
 
5979
+ #: core/lib/wpbc_all_translations.php:1123 inc/_mu/admin/page-users.php:548
5980
  msgid "Unlimited"
5981
  msgstr ""
5982
 
5983
+ #: core/lib/wpbc_all_translations.php:1124 inc/_mu/admin/page-users.php:560
5984
  #: inc/_mu/admin/page-users.php:568 inc/_mu/admin/page-users.php:574
5985
  #: inc/_mu/admin/page-users.php:581 inc/_mu/admin/page-users.php:594
5986
  #: inc/_mu/admin/page-users.php:602
5987
  msgid "Do you really want"
5988
  msgstr ""
5989
 
5990
+ #: core/lib/wpbc_all_translations.php:1125 inc/_mu/admin/page-users.php:561
5991
  msgid "make user active"
5992
  msgstr ""
5993
 
5994
+ #: core/lib/wpbc_all_translations.php:1126 inc/_mu/admin/page-users.php:565
5995
  msgid "Activate"
5996
  msgstr ""
5997
 
5998
+ #: core/lib/wpbc_all_translations.php:1127 inc/_mu/admin/page-users.php:569
5999
  msgid "make user inactive"
6000
  msgstr ""
6001
 
6002
+ #: core/lib/wpbc_all_translations.php:1128 inc/_mu/admin/page-users.php:572
6003
  msgid "Deactivate"
6004
  msgstr ""
6005
 
6006
+ #: core/lib/wpbc_all_translations.php:1129 inc/_mu/admin/page-users.php:575
6007
  msgid "delete configuration"
6008
  msgstr ""
6009
 
6010
+ #: core/lib/wpbc_all_translations.php:1130 inc/_mu/admin/page-users.php:579
6011
  msgid "Delete settings"
6012
  msgstr ""
6013
 
6014
+ #: core/lib/wpbc_all_translations.php:1131 inc/_mu/admin/page-users.php:582
6015
  msgid "delete all booking data"
6016
  msgstr ""
6017
 
6018
+ #: core/lib/wpbc_all_translations.php:1132 inc/_mu/admin/page-users.php:586
6019
  msgid "Delete data"
6020
  msgstr ""
6021
 
6022
+ #: core/lib/wpbc_all_translations.php:1133 inc/_mu/multiuser.php:635
6023
  msgid "Work days"
6024
  msgstr ""
6025
 
6026
+ #: core/lib/wpbc_all_translations.php:1134 inc/_mu/multiuser.php:768
6027
  #, php-format
6028
  msgid ""
6029
  "%sYou do not have permissions for this page.%s Your account is not active, please contact "
6030
  "administrator.%s"
6031
  msgstr ""
6032
 
6033
+ #: core/lib/wpbc_all_translations.php:1135 inc/_mu/multiuser.php:807
6034
  #, php-format
6035
  msgid "%sYou do not have permissions for this booking resources.%s"
6036
  msgstr ""
6037
 
6038
+ #: core/lib/wpbc_all_translations.php:1136 inc/_mu/multiuser.php:813
6039
  #, php-format
6040
  msgid "%sNo this booking resources.%s"
6041
  msgstr ""
6042
 
6043
+ #: core/lib/wpbc_all_translations.php:1137 inc/_ps/admin/activation-p.php:52
6044
  msgid "Please, reserve an apartment with fresh flowers."
6045
  msgstr ""
6046
 
6047
+ #: core/lib/wpbc_all_translations.php:1138 inc/_ps/admin/api-settings-p.php:56
6048
  msgid "Default booking resource"
6049
  msgstr ""
6050
 
6051
+ #: core/lib/wpbc_all_translations.php:1139 inc/_ps/admin/api-settings-p.php:57
6052
  msgid "Select your default booking resource."
6053
  msgstr ""
6054
 
6055
+ #: core/lib/wpbc_all_translations.php:1140 inc/_ps/admin/api-settings-p.php:70
6056
  msgid "Resources number per page"
6057
  msgstr ""
6058
 
6059
+ #: core/lib/wpbc_all_translations.php:1141 inc/_ps/admin/api-settings-p.php:71
6060
  msgid "Select number of booking resources (single or parent) per page at Resource menu page"
6061
  msgstr ""
6062
 
6063
+ #: core/lib/wpbc_all_translations.php:1142 inc/_ps/admin/api-settings-p.php:183
6064
+ #: inc/_ps/admin/api-settings-p.php:197
6065
  msgid "Booking title"
6066
  msgstr ""
6067
 
6068
+ #: core/lib/wpbc_all_translations.php:1143 inc/_ps/admin/api-settings-p.php:183
6069
  msgid "admin panel"
6070
  msgstr ""
6071
 
6072
+ #: core/lib/wpbc_all_translations.php:1144 inc/_ps/admin/api-settings-p.php:184
6073
  #, php-format
6074
  msgid ""
6075
  "Type %sdefault title of bookings%s in calendar view mode at Booking Listing page (You can use "
6076
  "the shortcodes from the bottom form of Settings Fields page)."
6077
  msgstr ""
6078
 
6079
+ #: core/lib/wpbc_all_translations.php:1145
6080
  msgid "front panel"
6081
  msgstr ""
6082
 
6083
+ #: core/lib/wpbc_all_translations.php:1146 inc/_ps/admin/api-settings-p.php:198
6084
  #, php-format
6085
  msgid ""
6086
  "Type %sdefault title of bookings%s in %stimeline at front-end side%s. You can use the shortcodes "
6087
  "from the bottom form of Settings Fields page."
6088
  msgstr ""
6089
 
6090
+ #: core/lib/wpbc_all_translations.php:1147 inc/_ps/admin/api-settings-p.php:206
6091
  msgid "Booking details in popover"
6092
  msgstr ""
6093
 
6094
+ #: core/lib/wpbc_all_translations.php:1148 inc/_ps/admin/api-settings-p.php:207
6095
  #, php-format
6096
  msgid ""
6097
  "Check this box if you want to %sshow popover with booking details%s in timeline at %sfront-end%s "
6098
  "side."
6099
  msgstr ""
6100
 
6101
+ #: core/lib/wpbc_all_translations.php:1149 inc/_ps/admin/api-settings-p.php:228
6102
  msgid "semicolon"
6103
  msgstr ""
6104
 
6105
+ #: core/lib/wpbc_all_translations.php:1150 inc/_ps/admin/api-settings-p.php:229
6106
  msgid "comma"
6107
  msgstr ""
6108
 
6109
+ #: core/lib/wpbc_all_translations.php:1151 inc/_ps/admin/api-settings-p.php:234
6110
  msgid "CSV data separator"
6111
  msgstr ""
6112
 
6113
+ #: core/lib/wpbc_all_translations.php:1152 inc/_ps/admin/api-settings-p.php:235
6114
  msgid "Select separator of data for export bookings to CSV."
6115
  msgstr ""
6116
 
6117
+ #: core/lib/wpbc_all_translations.php:1153 inc/_ps/admin/api-settings-p.php:317
6118
  #: js/wpbc-gutenberg.js:1096
6119
  msgid "URL to edit bookings"
6120
  msgstr ""
6121
 
6122
+ #: core/lib/wpbc_all_translations.php:1154 inc/_ps/admin/api-settings-p.php:318
6123
  #, php-format
6124
  msgid "Type URL for %svisitors%s to edit bookings. You must insert %s shortcode into this page."
6125
  msgstr ""
6126
 
6127
+ #: core/lib/wpbc_all_translations.php:1155 inc/_ps/admin/api-settings-p.php:342
6128
  msgid "Change hash after the booking is approved"
6129
  msgstr ""
6130
 
6131
+ #: core/lib/wpbc_all_translations.php:1156 inc/_ps/admin/api-settings-p.php:343
6132
  msgid ""
6133
  "Check this box if you want to change the booking hash after approval. When checked, visitor will "
6134
  "not be able to edit or cancel the booking."
6135
  msgstr ""
6136
 
6137
+ #: core/lib/wpbc_all_translations.php:1157 inc/_ps/admin/page-email-edit.php:556
6138
  msgid "Modified"
6139
  msgstr ""
6140
 
6141
+ #: core/lib/wpbc_all_translations.php:1158
6142
  msgid "Customization of email template, which is sending after modification of booking"
6143
  msgstr ""
6144
 
6145
+ #: core/lib/wpbc_all_translations.php:1159
6146
  msgid "Email is sending to Visitor after Editing of booking."
6147
  msgstr ""
6148
 
6149
+ #: core/lib/wpbc_all_translations.php:1160 inc/_ps/admin/page-resources.php:39
6150
  msgid "Customizaton of booking resources"
6151
  msgstr ""
6152
 
6153
+ #: core/lib/wpbc_all_translations.php:1161 inc/_ps/admin/page-settings-form.php:137
6154
  #: inc/_ps/admin/page-settings-form.php:157
6155
  msgid "Form fields"
6156
  msgstr ""
6157
 
6158
+ #: core/lib/wpbc_all_translations.php:1162 inc/_ps/admin/page-settings-form.php:138
6159
  msgid "Content of Booking Fields"
6160
  msgstr ""
6161
 
6162
+ #: core/lib/wpbc_all_translations.php:1163 inc/_ps/admin/page-settings-form.php:164
6163
  msgid "Generate tag"
6164
  msgstr ""
6165
 
6166
+ #: core/lib/wpbc_all_translations.php:1164 inc/_ps/admin/page-settings-form.php:173
6167
  #, php-format
6168
  msgid "Content of booking fields data for email templates (%s-shortcode) and booking listing page"
6169
  msgstr ""
6170
 
6171
+ #: core/lib/wpbc_all_translations.php:1165 inc/_ps/admin/page-settings-form.php:312
6172
  msgid "Form Template"
6173
  msgstr ""
6174
 
6175
+ #: core/lib/wpbc_all_translations.php:1166 inc/_ps/admin/page-settings-form.php:325
6176
  msgid "Standard Templates"
6177
  msgstr ""
6178
 
6179
+ #: core/lib/wpbc_all_translations.php:1167 inc/_ps/admin/page-settings-form.php:338
6180
  #: inc/_ps/form/class-wpbc-field-help-textarea.php:111
6181
  msgid "Columns"
6182
  msgstr ""
6183
 
6184
+ #: core/lib/wpbc_all_translations.php:1168 inc/_ps/admin/page-settings-form.php:410
6185
  msgid "Advanced Templates"
6186
  msgstr ""
6187
 
6188
+ #: core/lib/wpbc_all_translations.php:1169 inc/_ps/admin/page-settings-form.php:413
6189
  msgid "Wizard (several steps)"
6190
  msgstr ""
6191
 
6192
+ #: core/lib/wpbc_all_translations.php:1170 inc/_ps/admin/page-settings-form.php:426
6193
  msgid "Time slots for different weekdays"
6194
  msgstr ""
6195
 
6196
+ #: core/lib/wpbc_all_translations.php:1171 inc/_ps/admin/page-settings-form.php:436
6197
  msgid "Hints"
6198
  msgstr ""
6199
 
6200
+ #: core/lib/wpbc_all_translations.php:1172 inc/_ps/admin/page-settings-form.php:458
6201
  msgid "Reset Form"
6202
  msgstr ""
6203
 
6204
+ #: core/lib/wpbc_all_translations.php:1173 inc/_ps/admin/page-settings-form.php:511
6205
  msgid "Both"
6206
  msgstr ""
6207
 
6208
+ #: core/lib/wpbc_all_translations.php:1174 inc/_ps/admin/page-settings-form.php:512
6209
  msgid "Reset Booking Form and Content of Booking Fields Form"
6210
  msgstr ""
6211
 
6212
+ #: core/lib/wpbc_all_translations.php:1175 inc/_ps/admin/page-settings-form.php:663
6213
  #: inc/gateways/page-gateways.php:1048
6214
  #, php-format
6215
  msgid "%s - inserting data from fields of booking form"
6216
  msgstr ""
6217
 
6218
+ #: core/lib/wpbc_all_translations.php:1176 inc/_ps/admin/page-settings-form.php:664
6219
  #, php-format
6220
  msgid "%s - inserting new line"
6221
  msgstr ""
6222
 
6223
+ #: core/lib/wpbc_all_translations.php:1177 inc/_ps/admin/page-settings-form.php:668
6224
  #: inc/_ps/form/class-wpbc-form-help.php:93 inc/gateways/page-gateways.php:1103
6225
  #, php-format
6226
  msgid ""
6228
  "that all \"open\" tags (like %s) are closed (like this %s)."
6229
  msgstr ""
6230
 
6231
+ #: core/lib/wpbc_all_translations.php:1178 inc/_ps/admin/page-settings-up.php:39
6232
  msgid "Upgrade to higher version"
6233
  msgstr ""
6234
 
6235
+ #: core/lib/wpbc_all_translations.php:1179 inc/_ps/class/wpbc-settings-table.php:260
6236
  msgid "No results found."
6237
  msgstr ""
6238
 
6239
+ #: core/lib/wpbc_all_translations.php:1180 inc/_ps/form/class-wpbc-field-help-checkbox.php:90
6240
  #, php-format
6241
  msgid "Wrap each item with %s tag"
6242
  msgstr ""
6243
 
6244
+ #: core/lib/wpbc_all_translations.php:1181 inc/_ps/form/class-wpbc-field-help-checkbox.php:104
6245
  msgid "Put a label before field"
6246
  msgstr ""
6247
 
6248
+ #: core/lib/wpbc_all_translations.php:1182 inc/_ps/form/class-wpbc-field-help-checkbox.php:118
6249
  #, php-format
6250
  msgid "Make it %sexclusive%s"
6251
  msgstr ""
6252
 
6253
+ #: core/lib/wpbc_all_translations.php:1183 inc/_ps/form/class-wpbc-field-help-checkbox.php:128
6254
  #: inc/_ps/form/class-wpbc-field-help-radio.php:85 inc/_ps/form/class-wpbc-field-help-select.php:78
6255
  #: inc/_ps/form/class-wpbc-field-help-text.php:194
6256
  msgid "Default value"
6257
  msgstr ""
6258
 
6259
+ #: core/lib/wpbc_all_translations.php:1184 inc/_ps/form/class-wpbc-field-help-checkbox.php:136
6260
  #, php-format
6261
  msgid "One Value from %sOptions%s list or term %s for selection of all checkboxes"
6262
  msgstr ""
6263
 
6264
+ #: core/lib/wpbc_all_translations.php:1185 inc/_ps/form/class-wpbc-field-help-checkbox.php:146
6265
  #: inc/_ps/form/class-wpbc-field-help-select.php:111
6266
  #: inc/_ps/form/class-wpbc-field-help-text.php:177
6267
  msgid "required"
6268
  msgstr ""
6269
 
6270
+ #: core/lib/wpbc_all_translations.php:1186 inc/_ps/form/class-wpbc-field-help-checkbox.php:164
6271
  #: inc/_ps/form/class-wpbc-field-help-select.php:129
6272
  msgid "Titles of options"
6273
  msgstr ""
6274
 
6275
+ #: core/lib/wpbc_all_translations.php:1187 inc/_ps/form/class-wpbc-field-help-radio.php:93
6276
  #: inc/_ps/form/class-wpbc-field-help-select.php:86
6277
  #, php-format
6278
  msgid "One Value from %sOptions%s list"
6279
  msgstr ""
6280
 
6281
+ #: core/lib/wpbc_all_translations.php:1188 inc/_ps/form/class-wpbc-field-help-select.php:101
6282
  #, php-format
6283
  msgid "Allow %smultiple%s selections"
6284
  msgstr ""
6285
 
6286
+ #: core/lib/wpbc_all_translations.php:1189 inc/_ps/form/class-wpbc-field-help-text.php:167
6287
  #, php-format
6288
  msgid "Set as %srequired%s"
6289
  msgstr ""
6290
 
6291
+ #: core/lib/wpbc_all_translations.php:1190 inc/_ps/form/class-wpbc-field-help-text.php:228
6292
  msgid "Placeholder"
6293
  msgstr ""
6294
 
6295
+ #: core/lib/wpbc_all_translations.php:1191 inc/_ps/form/class-wpbc-field-help-text.php:247
6296
  msgid "Class"
6297
  msgstr ""
6298
 
6299
+ #: core/lib/wpbc_all_translations.php:1192 inc/_ps/form/class-wpbc-field-help-text.php:264
6300
  msgid "Size"
6301
  msgstr ""
6302
 
6303
+ #: core/lib/wpbc_all_translations.php:1193 inc/_ps/form/class-wpbc-field-help-text.php:281
6304
  msgid "Maxlength"
6305
  msgstr ""
6306
 
6307
+ #: core/lib/wpbc_all_translations.php:1194 inc/_ps/form/class-wpbc-field-help-text.php:298
6308
  msgid "Copy and paste this shortcode into the form at left side"
6309
  msgstr ""
6310
 
6311
+ #: core/lib/wpbc_all_translations.php:1195 inc/_ps/form/class-wpbc-field-help-text.php:313
6312
  #, php-format
6313
  msgid "Put this code in %sContent of Booking Fields%s and in %sEmail Templates%s"
6314
  msgstr ""
6315
 
6316
+ #: core/lib/wpbc_all_translations.php:1196 inc/_ps/form/class-wpbc-field-help-textarea.php:94
6317
  msgid "Rows"
6318
  msgstr ""
6319
 
6320
+ #: core/lib/wpbc_all_translations.php:1197 inc/_ps/form/class-wpbc-form-help.php:86
6321
  msgid "General Information"
6322
  msgstr ""
6323
 
6324
+ #: core/lib/wpbc_all_translations.php:1198 inc/_ps/form/class-wpbc-form-help.php:109
6325
  msgid "Required Fields in Booking Form"
6326
  msgstr ""
6327
 
6328
+ #: core/lib/wpbc_all_translations.php:1199 inc/_ps/form/class-wpbc-form-help.php:117
6329
  #, php-format
6330
  msgid "You must to have this shortcode:%s in the form."
6331
  msgstr ""
6332
 
6333
+ #: core/lib/wpbc_all_translations.php:1200 inc/_ps/form/class-wpbc-form-help.php:119
6334
  msgid ""
6335
  "You can insert several calendars of different resources into the form allowing you to book "
6336
  "several resources during one booking process."
6337
  msgstr ""
6338
 
6339
+ #: core/lib/wpbc_all_translations.php:1201 inc/_ps/form/class-wpbc-form-help.php:120
6340
  #, php-format
6341
  msgid "Example: %s."
6342
  msgstr ""
6343
 
6344
+ #: core/lib/wpbc_all_translations.php:1202 inc/_ps/form/class-wpbc-form-help.php:121
6345
  #, php-format
6346
  msgid ""
6347
  "where %s – default calendar %s (you can select desired resource of calendar by inserting "
6348
  "shortcode into page)%s"
6349
  msgstr ""
6350
 
6351
+ #: core/lib/wpbc_all_translations.php:1203 inc/_ps/form/class-wpbc-form-help.php:122
6352
  #: inc/_ps/form/class-wpbc-form-help.php:123
6353
  #, php-format
6354
  msgid "%s – calendar of booking resource with %s"
6355
  msgstr ""
6356
 
6357
+ #: core/lib/wpbc_all_translations.php:1204 inc/_ps/form/class-wpbc-form-help.php:124
6358
  #, php-format
6359
  msgid "Please check more about this feature %shere%s."
6360
  msgstr ""
6361
 
6362
+ #: core/lib/wpbc_all_translations.php:1205 inc/_ps/form/class-wpbc-form-help.php:126
6363
  #: inc/_ps/form/class-wpbc-form-help.php:197 inc/_ps/form/class-wpbc-form-help.php:230
6364
  #: inc/_ps/form/class-wpbc-form-help.php:278 inc/_ps/form/class-wpbc-form-help.php:291
6365
  #: inc/_ps/form/class-wpbc-form-help.php:305 inc/_ps/form/class-wpbc-form-help.php:343
6369
  msgid "You can %suse this shortcode only once%s in the form."
6370
  msgstr ""
6371
 
6372
+ #: core/lib/wpbc_all_translations.php:1206 inc/_ps/form/class-wpbc-form-help.php:135
6373
  msgid "Email Field"
6374
  msgstr ""
6375
 
6376
+ #: core/lib/wpbc_all_translations.php:1207 inc/_ps/form/class-wpbc-form-help.php:136
6377
  #, php-format
6378
  msgid "You must have this shortcode:%s in the booking form."
6379
  msgstr ""
6380
 
6381
+ #: core/lib/wpbc_all_translations.php:1208 inc/_ps/form/class-wpbc-form-help.php:136
6382
  msgid "This is the primary email field, which is used for sending emails to visitors."
6383
  msgstr ""
6384
 
6385
+ #: core/lib/wpbc_all_translations.php:1209 inc/_ps/form/class-wpbc-form-help.php:163
6386
  msgid "Drop Down"
6387
  msgstr ""
6388
 
6389
+ #: core/lib/wpbc_all_translations.php:1210 inc/_ps/form/class-wpbc-form-help.php:175
6390
  msgid "Checkbox(es)"
6391
  msgstr ""
6392
 
6393
+ #: core/lib/wpbc_all_translations.php:1211 inc/_ps/form/class-wpbc-form-help.php:182
6394
  msgid "Radio Button(s)"
6395
  msgstr ""
6396
 
6397
+ #: core/lib/wpbc_all_translations.php:1212 inc/_ps/form/class-wpbc-form-help.php:196
6398
  #, php-format
6399
  msgid "Insert %s shortcode to prevent SPAM bookings."
6400
  msgstr ""
6401
 
6402
+ #: core/lib/wpbc_all_translations.php:1213 inc/_ps/form/class-wpbc-form-help.php:206
6403
  msgid "Submit Button"
6404
  msgstr ""
6405
 
6406
+ #: core/lib/wpbc_all_translations.php:1214 inc/_ps/form/class-wpbc-form-help.php:214
6407
  msgid "Times Fields"
6408
  msgstr ""
6409
 
6410
+ #: core/lib/wpbc_all_translations.php:1215 inc/_ps/form/class-wpbc-form-help.php:220
6411
  msgid "Time Slot List"
6412
  msgstr ""
6413
 
6414
+ #: core/lib/wpbc_all_translations.php:1216 inc/_ps/form/class-wpbc-form-help.php:222
6415
  #: inc/_ps/form/class-wpbc-form-help.php:302 inc/_ps/form/class-wpbc-form-help.php:340
6416
  #: inc/_ps/form/class-wpbc-form-help.php:379
6417
  #, php-format
6418
  msgid "Select the %s using the predefined %sTime List%s."
6419
  msgstr ""
6420
 
6421
+ #: core/lib/wpbc_all_translations.php:1217 inc/_ps/form/class-wpbc-form-help.php:222
6422
  msgid "Time Slot"
6423
  msgstr ""
6424
 
6425
+ #: core/lib/wpbc_all_translations.php:1218 inc/_ps/form/class-wpbc-form-help.php:223
6426
  #, php-format
6427
  msgid ""
6428
  "Please note, %sthe use of the time shortcode%s. If you select a date with some booked time "
6429
  "slots, this time field will %sdisable booked times slots%s (set them as grayed)."
6430
  msgstr ""
6431
 
6432
+ #: core/lib/wpbc_all_translations.php:1219 inc/_ps/form/class-wpbc-form-help.php:224
6433
  #, php-format
6434
  msgid "It works only in %ssingle day selection%s mode."
6435
  msgstr ""
6436
 
6437
+ #: core/lib/wpbc_all_translations.php:1220 inc/_ps/form/class-wpbc-form-help.php:225
6438
  msgid ""
6439
  "Also some early versions of the IE do not support disabling of the options in the selectboxes."
6440
  msgstr ""
6441
 
6442
+ #: core/lib/wpbc_all_translations.php:1221 inc/_ps/form/class-wpbc-form-help.php:226
6443
  msgid ""
6444
  "Even if visitor selects the booked timeslot, system will not allow them to make the booking."
6445
  msgstr ""
6446
 
6447
+ #: core/lib/wpbc_all_translations.php:1222 inc/_ps/form/class-wpbc-form-help.php:229
6448
  #: inc/_ps/form/class-wpbc-form-help.php:342 inc/_ps/form/class-wpbc-form-help.php:381
6449
  #, php-format
6450
  msgid ""
6452
  "Time)%s only."
6453
  msgstr ""
6454
 
6455
+ #: core/lib/wpbc_all_translations.php:1223 inc/_ps/form/class-wpbc-form-help.php:231
6456
  #, php-format
6457
  msgid "If you use this shortcode, %syou can not use any other time shortcodes%s in the form."
6458
  msgstr ""
6459
 
6460
+ #: core/lib/wpbc_all_translations.php:1224 inc/_ps/form/class-wpbc-form-help.php:273
6461
  msgid "Start Time - Text field"
6462
  msgstr ""
6463
 
6464
+ #: core/lib/wpbc_all_translations.php:1225 inc/_ps/form/class-wpbc-form-help.php:275
6465
  #: inc/_ps/form/class-wpbc-form-help.php:288
6466
  #, php-format
6467
  msgid "Enter %s in text field."
6468
  msgstr ""
6469
 
6470
+ #: core/lib/wpbc_all_translations.php:1226 inc/_ps/admin/api-settings-p.php:109
6471
+ #: inc/_ps/admin/api-settings-p.php:115 inc/_ps/form/class-wpbc-form-help.php:275
6472
  #: inc/_ps/form/class-wpbc-form-help.php:292 inc/_ps/form/class-wpbc-form-help.php:302
6473
  #: inc/_ps/form/class-wpbc-form-help.php:344 inc/_ps/form/class-wpbc-form-help.php:383
6474
  msgid "Start Time"
6475
  msgstr ""
6476
 
6477
+ #: core/lib/wpbc_all_translations.php:1227 inc/_ps/form/class-wpbc-form-help.php:277
6478
  #: inc/_ps/form/class-wpbc-form-help.php:290 inc/_ps/form/class-wpbc-form-help.php:496
6479
  #, php-format
6480
  msgid "Please note: this field only supports military time format %s(24 Hour Time)%s."
6481
  msgstr ""
6482
 
6483
+ #: core/lib/wpbc_all_translations.php:1228 inc/_ps/form/class-wpbc-form-help.php:279
6484
  #: inc/_ps/form/class-wpbc-form-help.php:292 inc/_ps/form/class-wpbc-form-help.php:306
6485
  #: inc/_ps/form/class-wpbc-form-help.php:344 inc/_ps/form/class-wpbc-form-help.php:383
6486
  #, php-format
6487
  msgid "You can also use the %s in the form."
6488
  msgstr ""
6489
 
6490
+ #: core/lib/wpbc_all_translations.php:1229 inc/_ps/admin/api-settings-p.php:128
6491
+ #: inc/_ps/admin/api-settings-p.php:134 inc/_ps/form/class-wpbc-form-help.php:279
6492
  #: inc/_ps/form/class-wpbc-form-help.php:288 inc/_ps/form/class-wpbc-form-help.php:306
6493
  #: inc/_ps/form/class-wpbc-form-help.php:340
6494
  msgid "End Time"
6495
  msgstr ""
6496
 
6497
+ #: core/lib/wpbc_all_translations.php:1230 inc/_ps/form/class-wpbc-form-help.php:279
6498
  #: inc/_ps/form/class-wpbc-form-help.php:292 inc/_ps/form/class-wpbc-form-help.php:306
6499
  #: inc/_ps/form/class-wpbc-form-help.php:344 inc/_ps/form/class-wpbc-form-help.php:379
6500
  msgid "Duration Time"
6501
  msgstr ""
6502
 
6503
+ #: core/lib/wpbc_all_translations.php:1231 inc/_ps/form/class-wpbc-form-help.php:279
6504
  #: inc/_ps/form/class-wpbc-form-help.php:292 inc/_ps/form/class-wpbc-form-help.php:306
6505
  #: inc/_ps/form/class-wpbc-form-help.php:344
6506
  msgid "fields"
6507
  msgstr ""
6508
 
6509
+ #: core/lib/wpbc_all_translations.php:1232 inc/_ps/form/class-wpbc-form-help.php:286
6510
  msgid "End Time - Text field"
6511
  msgstr ""
6512
 
6513
+ #: core/lib/wpbc_all_translations.php:1233 inc/_ps/form/class-wpbc-form-help.php:300
6514
  msgid "Start Time - Drop Down list"
6515
  msgstr ""
6516
 
6517
+ #: core/lib/wpbc_all_translations.php:1234 inc/_ps/form/class-wpbc-form-help.php:304
6518
  #, php-format
6519
  msgid ""
6520
  "Please note, in the %sOptions list%s you can use times in military time format %s(24 Hour "
6521
  "Time)%s only."
6522
  msgstr ""
6523
 
6524
+ #: core/lib/wpbc_all_translations.php:1235 inc/_ps/form/class-wpbc-form-help.php:338
6525
  msgid "End Time - Drop Down list"
6526
  msgstr ""
6527
 
6528
+ #: core/lib/wpbc_all_translations.php:1236 inc/_ps/form/class-wpbc-form-help.php:377
6529
  msgid "Duration Time - Drop Down list"
6530
  msgstr ""
6531
 
6532
+ #: core/lib/wpbc_all_translations.php:1237 inc/_ps/form/class-wpbc-form-help.php:383
6533
  msgid "field"
6534
  msgstr ""
6535
 
6536
+ #: core/lib/wpbc_all_translations.php:1238 inc/_ps/form/class-wpbc-form-help.php:416
6537
  msgid "Different time slots, for the different week days"
6538
  msgstr ""
6539
 
6540
+ #: core/lib/wpbc_all_translations.php:1239 inc/_ps/form/class-wpbc-form-help.php:419
6541
  msgid ""
6542
  "This feature provides the possibility to use the different time slot selections in the booking "
6543
  "form for the different week days or different days - which are assigned to the specific season "
6544
  "filters. So each week day (day of specific season filter) can have a different time slots list."
6545
  msgstr ""
6546
 
6547
+ #: core/lib/wpbc_all_translations.php:1240 inc/_ps/form/class-wpbc-form-help.php:421
6548
  #: inc/_ps/form/class-wpbc-form-help.php:568
6549
  msgid "Configuration"
6550
  msgstr ""
6551
 
6552
+ #: core/lib/wpbc_all_translations.php:1241 inc/_ps/form/class-wpbc-form-help.php:422
6553
  #: inc/_ps/form/class-wpbc-form-help.php:569
6554
  #, php-format
6555
  msgid "The general structure of the configuration %scondition rule%s is as follows"
6556
  msgstr ""
6557
 
6558
+ #: core/lib/wpbc_all_translations.php:1242 inc/_ps/form/class-wpbc-form-help.php:428
6559
  #: inc/_ps/form/class-wpbc-form-help.php:449 inc/_ps/form/class-wpbc-form-help.php:472
6560
  #: inc/_ps/form/class-wpbc-form-help.php:575 inc/_ps/form/class-wpbc-form-help.php:596
6561
  #: inc/_ps/form/class-wpbc-form-help.php:619
6562
  msgid "Parameters"
6563
  msgstr ""
6564
 
6565
+ #: core/lib/wpbc_all_translations.php:1243 inc/_ps/form/class-wpbc-form-help.php:429
6566
  #: inc/_ps/form/class-wpbc-form-help.php:576
6567
  #, php-format
6568
  msgid ""
6572
  "conditions. Please check more about it, in the examples."
6573
  msgstr ""
6574
 
6575
+ #: core/lib/wpbc_all_translations.php:1244 inc/_ps/form/class-wpbc-form-help.php:430
6576
  #: inc/_ps/form/class-wpbc-form-help.php:577
6577
  #, php-format
6578
  msgid ""
6583
  "filter in the Season Filters page."
6584
  msgstr ""
6585
 
6586
+ #: core/lib/wpbc_all_translations.php:1245 inc/_ps/form/class-wpbc-form-help.php:431
6587
  #, php-format
6588
  msgid ""
6589
  "%svalue%s – value of the specific conditions. If the value is true, the content of the "
6592
  "at initial stage, when the date in calendar is not yet selected."
6593
  msgstr ""
6594
 
6595
+ #: core/lib/wpbc_all_translations.php:1246 inc/_ps/form/class-wpbc-form-help.php:433
6596
  #: inc/_ps/form/class-wpbc-form-help.php:580
6597
  msgid "Examples"
6598
  msgstr ""
6599
 
6600
+ #: core/lib/wpbc_all_translations.php:1247 inc/_ps/form/class-wpbc-form-help.php:434
6601
  #: inc/_ps/form/class-wpbc-form-help.php:581
6602
  msgid "Week days conditions."
6603
  msgstr ""
6604
 
6605
+ #: core/lib/wpbc_all_translations.php:1248 inc/_ps/form/class-wpbc-form-help.php:450
6606
  #: inc/_ps/form/class-wpbc-form-help.php:597
6607
  msgid "default value, if no dates are selected, or none exist conditions are true."
6608
  msgstr ""
6609
 
6610
+ #: core/lib/wpbc_all_translations.php:1249 inc/_ps/form/class-wpbc-form-help.php:458
6611
  #: inc/_ps/form/class-wpbc-form-help.php:475
6612
  msgid "You can use the several values, separated by comma."
6613
  msgstr ""
6614
 
6615
+ #: core/lib/wpbc_all_translations.php:1250 inc/_ps/form/class-wpbc-form-help.php:460
6616
  #: inc/_ps/form/class-wpbc-form-help.php:607
6617
  msgid "Season filters conditions."
6618
  msgstr ""
6619
 
6620
+ #: core/lib/wpbc_all_translations.php:1251 inc/_ps/form/class-wpbc-form-help.php:473
6621
  #: inc/_ps/form/class-wpbc-form-help.php:620
6622
  msgid "Season filter on the Season Filters page,"
6623
  msgstr ""
6624
 
6625
+ #: core/lib/wpbc_all_translations.php:1252 inc/_ps/form/class-wpbc-form-help.php:474
6626
  #: inc/_ps/form/class-wpbc-form-help.php:621
6627
  msgid "Season filter on the Season Filters page"
6628
  msgstr ""
6629
 
6630
+ #: core/lib/wpbc_all_translations.php:1253 inc/_ps/form/class-wpbc-form-help.php:477
6631
  #: inc/_ps/form/class-wpbc-form-help.php:624
6632
  msgid "Additional info"
6633
  msgstr ""
6634
 
6635
+ #: core/lib/wpbc_all_translations.php:1254 inc/_ps/form/class-wpbc-form-help.php:478
6636
  #: inc/_ps/form/class-wpbc-form-help.php:625
6637
  #, php-format
6638
  msgid ""
6640
  "section."
6641
  msgstr ""
6642
 
6643
+ #: core/lib/wpbc_all_translations.php:1255 inc/_ps/form/class-wpbc-form-help.php:479
6644
  #: inc/_ps/form/class-wpbc-form-help.php:626
6645
  #, php-format
6646
  msgid "Please check more about this feature at %sthis page%s"
6647
  msgstr ""
6648
 
6649
+ #: core/lib/wpbc_all_translations.php:1256 inc/_ps/form/class-wpbc-form-help.php:493
6650
  msgid "Time Field"
6651
  msgstr ""
6652
 
6653
+ #: core/lib/wpbc_all_translations.php:1257 inc/_ps/form/class-wpbc-form-help.php:495
6654
  #, php-format
6655
  msgid "Enter the %sTime%s using the text field."
6656
  msgstr ""
6657
 
6658
+ #: core/lib/wpbc_all_translations.php:1258 inc/_ps/form/class-wpbc-form-help.php:498
6659
  msgid "This field does not impact to availability (booking for the specific time) ."
6660
  msgstr ""
6661
 
6662
+ #: core/lib/wpbc_all_translations.php:1259 inc/_ps/form/class-wpbc-form-help.php:499
6663
  msgid "The value of this field is just saved into DB."
6664
  msgstr ""
6665
 
6666
+ #: core/lib/wpbc_all_translations.php:1260 inc/_ps/form/class-wpbc-form-help.php:509
6667
  msgid "Country List"
6668
  msgstr ""
6669
 
6670
+ #: core/lib/wpbc_all_translations.php:1261 inc/_ps/form/class-wpbc-form-help.php:511
6671
  msgid "Select the country from the predefined country list."
6672
  msgstr ""
6673
 
6674
+ #: core/lib/wpbc_all_translations.php:1262 inc/_ps/form/class-wpbc-form-help.php:512
6675
  #, php-format
6676
  msgid "You can customize the country list at this file: %s"
6677
  msgstr ""
6678
 
6679
+ #: core/lib/wpbc_all_translations.php:1263 inc/_ps/form/class-wpbc-form-help.php:513
6680
  msgid "You can insert this field with default selected value."
6681
  msgstr ""
6682
 
6683
+ #: core/lib/wpbc_all_translations.php:1264 inc/_ps/form/class-wpbc-form-help.php:514
6684
  #, php-format
6685
  msgid "Example: %s - %s\"United States\"%s is selected by default."
6686
  msgstr ""
6687
 
6688
+ #: core/lib/wpbc_all_translations.php:1265 inc/_ps/form/class-wpbc-form-help.php:523
6689
  msgid "Language Sections"
6690
  msgstr ""
6691
 
6692
+ #: core/lib/wpbc_all_translations.php:1266 inc/_ps/form/class-wpbc-form-help.php:525
6693
  msgid "Plugin support configurations of the booking form are available in different languages."
6694
  msgstr ""
6695
 
6696
+ #: core/lib/wpbc_all_translations.php:1267 inc/_ps/form/class-wpbc-form-help.php:526
6697
  msgid "The active language of the booking form depends on the active locale of the site."
6698
  msgstr ""
6699
 
6700
+ #: core/lib/wpbc_all_translations.php:1268 inc/_ps/form/class-wpbc-form-help.php:527
6701
  msgid ""
6702
  "Booking Calendar supports WPML and qTranslate plugins for dynamic changing of website locale."
6703
  msgstr ""
6704
 
6705
+ #: core/lib/wpbc_all_translations.php:1269 inc/_ps/form/class-wpbc-form-help.php:529
6706
  msgid "Usage"
6707
  msgstr ""
6708
 
6709
+ #: core/lib/wpbc_all_translations.php:1270 inc/_ps/form/class-wpbc-form-help.php:530
6710
  #, php-format
6711
  msgid "start new translation section in specific language, where %s - locale of the translation."
6712
  msgstr ""
6713
 
6714
+ #: core/lib/wpbc_all_translations.php:1271 inc/_ps/form/class-wpbc-form-help.php:533
6715
  msgid "English and French translation"
6716
  msgstr ""
6717
 
6718
+ #: core/lib/wpbc_all_translations.php:1272 inc/_ps/form/class-wpbc-form-help.php:536
6719
  msgid "of configuration booking form in English and French languages"
6720
  msgstr ""
6721
 
6722
+ #: core/lib/wpbc_all_translations.php:1273 inc/_ps/form/class-wpbc-form-help.php:555
6723
  msgid ""
6724
  "Register and Translate everything in WPML plugin. Translation can be done at the WPML > \"String "
6725
  "translation\" page. Required WPML 3.2 with String Translation plugin."
6726
  msgstr ""
6727
 
6728
+ #: core/lib/wpbc_all_translations.php:1274 inc/_ps/form/class-wpbc-form-help.php:563
6729
  msgid "Different form fields, for the different week days"
6730
  msgstr ""
6731
 
6732
+ #: core/lib/wpbc_all_translations.php:1275 inc/_ps/form/class-wpbc-form-help.php:566
6733
  msgid ""
6734
  "This feature provides the possibility to show the different form fields or any other HTML "
6735
  "content in the booking form, depending on the selection of specific week day in calendar or "
6736
  "different days, which are assigned to the specific season filters"
6737
  msgstr ""
6738
 
6739
+ #: core/lib/wpbc_all_translations.php:1276 inc/_ps/form/class-wpbc-form-help.php:578
6740
  #, php-format
6741
  msgid ""
6742
  "%svalue%s – value of the specific conditions. If the value is true, so then the content of the "
6745
  "at initial stage, when the date in calendar is not yet selected."
6746
  msgstr ""
6747
 
6748
+ #: core/lib/wpbc_all_translations.php:1277 inc/_ps/form/class-wpbc-form-help.php:605
6749
  msgid "You can use several values, separated by comma."
6750
  msgstr ""
6751
 
6752
+ #: core/lib/wpbc_all_translations.php:1278 inc/_ps/form/class-wpbc-form-help.php:622
6753
  msgid "You can use several values, separated by a comma."
6754
  msgstr ""
6755
 
6756
+ #: core/lib/wpbc_all_translations.php:1279 inc/_ps/form/class-wpbc-form-help.php:635
6757
  msgid "Cost Fields"
6758
  msgstr ""
6759
 
6760
+ #: core/lib/wpbc_all_translations.php:1280 inc/_ps/form/class-wpbc-form-help.php:641
6761
  msgid "Cost Correction Field"
6762
  msgstr ""
6763
 
6764
+ #: core/lib/wpbc_all_translations.php:1281 inc/_ps/form/class-wpbc-form-help.php:643
6765
  #, php-format
6766
  msgid "This field is visible only in Admin Panel at %sAdd booking page%s."
6767
  msgstr ""
6768
 
6769
+ #: core/lib/wpbc_all_translations.php:1282 inc/_ps/form/class-wpbc-form-help.php:644
6770
  #, php-format
6771
  msgid "Use this field for %scorrecting the cost%s during adding new booking."
6772
  msgstr ""
6773
 
6774
+ #: core/lib/wpbc_all_translations.php:1283 inc/_ps/form/class-wpbc-form-help.php:655
6775
  msgid "Discount Coupon field"
6776
  msgstr ""
6777
 
6778
+ #: core/lib/wpbc_all_translations.php:1284 inc/_ps/form/class-wpbc-form-help.php:657
6779
  msgid "Please use this field for possibility to use coupon discounts by your visitors."
6780
  msgstr ""
6781
 
6782
+ #: core/lib/wpbc_all_translations.php:1285 inc/_ps/form/class-wpbc-form-help.php:658
6783
  #, php-format
6784
  msgid "You can configure the discount coupon codes at this %spage%s."
6785
  msgstr ""
6786
 
6787
+ #: core/lib/wpbc_all_translations.php:1286 inc/_ps/form/class-wpbc-form-help.php:667
6788
  msgid "Hints for your form"
6789
  msgstr ""
6790
 
6791
+ #: core/lib/wpbc_all_translations.php:1287 inc/_ps/form/class-wpbc-form-help.php:673
6792
  msgid "Cost Hints"
6793
  msgstr ""
6794
 
6795
+ #: core/lib/wpbc_all_translations.php:1288 inc/_ps/form/class-wpbc-form-help.php:675
6796
  #: inc/_ps/form/class-wpbc-form-help.php:697
6797
  #, php-format
6798
  msgid ""
6800
  "calendar or options in checkboxes or selectboxes)%s."
6801
  msgstr ""
6802
 
6803
+ #: core/lib/wpbc_all_translations.php:1289 inc/_ps/form/class-wpbc-form-help.php:695
6804
  msgid "Dates and Times Hints"
6805
  msgstr ""
6806
 
6807
+ #: core/lib/wpbc_all_translations.php:1290 inc/_ps/form/class-wpbc-form-help.php:699
6808
  #: inc/gateways/page-gateways.php:1073
6809
  msgid "Selected Check In date."
6810
  msgstr ""
6811
 
6812
+ #: core/lib/wpbc_all_translations.php:1291 inc/_ps/form/class-wpbc-form-help.php:700
6813
  #: inc/_ps/form/class-wpbc-form-help.php:703 inc/_ps/form/class-wpbc-form-help.php:706
6814
  #: inc/_ps/form/class-wpbc-form-help.php:709 inc/_ps/form/class-wpbc-form-help.php:712
6815
  #: inc/_ps/form/class-wpbc-form-help.php:715 inc/_ps/form/class-wpbc-form-help.php:718
6823
  msgid "Example:"
6824
  msgstr ""
6825
 
6826
+ #: core/lib/wpbc_all_translations.php:1292 inc/_ps/form/class-wpbc-form-help.php:702
6827
  #: inc/_ps/form/class-wpbc-form-help.php:705 inc/gateways/page-gateways.php:1076
6828
  msgid "Selected Check Out date."
6829
  msgstr ""
6830
 
6831
+ #: core/lib/wpbc_all_translations.php:1293 inc/_ps/form/class-wpbc-form-help.php:708
6832
  #: inc/gateways/page-gateways.php:1079
6833
  msgid "Selected Start Time."
6834
  msgstr ""
6835
 
6836
+ #: core/lib/wpbc_all_translations.php:1294 inc/_ps/form/class-wpbc-form-help.php:711
6837
  #: inc/gateways/page-gateways.php:1082
6838
  msgid "Selected End Time."
6839
  msgstr ""
6840
 
6841
+ #: core/lib/wpbc_all_translations.php:1295 inc/_ps/form/class-wpbc-form-help.php:714
6842
  #: inc/gateways/page-gateways.php:1085
6843
  msgid "All selected dates."
6844
  msgstr ""
6845
 
6846
+ #: core/lib/wpbc_all_translations.php:1296 inc/_ps/form/class-wpbc-form-help.php:717
6847
  #: inc/gateways/page-gateways.php:1088
6848
  msgid "All selected dates with times."
6849
  msgstr ""
6850
 
6851
+ #: core/lib/wpbc_all_translations.php:1297 inc/_ps/form/class-wpbc-form-help.php:720
6852
  #: inc/gateways/page-gateways.php:1091
6853
  msgid "All selected dates in \"short\" format."
6854
  msgstr ""
6855
 
6856
+ #: core/lib/wpbc_all_translations.php:1298 inc/_ps/form/class-wpbc-form-help.php:723
6857
  #: inc/gateways/page-gateways.php:1094
6858
  msgid "All selected dates with times in \"short\" format.."
6859
  msgstr ""
6860
 
6861
+ #: core/lib/wpbc_all_translations.php:1299 inc/_ps/form/class-wpbc-form-help.php:726
6862
  #: inc/gateways/page-gateways.php:1097
6863
  msgid "Number of selected days."
6864
  msgstr ""
6865
 
6866
+ #: core/lib/wpbc_all_translations.php:1300 inc/_ps/form/class-wpbc-form-help.php:729
6867
  #: inc/gateways/page-gateways.php:1100
6868
  msgid "Number of selected nights."
6869
  msgstr ""
6870
 
6871
+ #: core/lib/wpbc_all_translations.php:1301 inc/_ps/form/class-wpbc-form-help.php:739
6872
  msgid "Other Hints"
6873
  msgstr ""
6874
 
6875
+ #: core/lib/wpbc_all_translations.php:1302 inc/_ps/form/class-wpbc-form-help.php:741
6876
  #: inc/_ps/form/class-wpbc-form-help.php:743 inc/gateways/page-gateways.php:1051
6877
  msgid "title of booking resource"
6878
  msgstr ""
6879
 
6880
+ #: core/lib/wpbc_all_translations.php:1303 inc/_ps/form/class-wpbc-form-help.php:742
6881
  msgid "ID of booking resource."
6882
  msgstr ""
6883
 
6884
+ #: core/lib/wpbc_all_translations.php:1304 inc/_ps/form/class-wpbc-form-help.php:744
6885
  msgid "cost of booking resource."
6886
  msgstr ""
6887
 
6888
+ #: core/lib/wpbc_all_translations.php:1305 inc/_ps/form/class-wpbc-form-help.php:745
6889
  msgid "capacity of booking resource."
6890
  msgstr ""
6891
 
6892
+ #: core/lib/wpbc_all_translations.php:1306 inc/_ps/form/class-wpbc-form-help.php:746
6893
  msgid "maximum number of visitors per booking resource."
6894
  msgstr ""
6895
 
6896
+ #: core/lib/wpbc_all_translations.php:1307 inc/_ps/form/class-wpbc-form-help.php:760
6897
  msgid "Tips and Tricks"
6898
  msgstr ""
6899
 
6900
+ #: core/lib/wpbc_all_translations.php:1308 inc/_ps/form/class-wpbc-form-help.php:762
6901
  #, php-format
6902
  msgid "%sEmail verification field%s."
6903
  msgstr ""
6904
 
6905
+ #: core/lib/wpbc_all_translations.php:1309 inc/_ps/form/class-wpbc-form-help.php:764
6906
  #, php-format
6907
  msgid "%sDescription of usage%s."
6908
  msgstr ""
6909
 
6910
+ #: core/lib/wpbc_all_translations.php:1310 inc/_ps/form/class-wpbc-form-help.php:765
6911
  #, php-format
6912
  msgid ""
6913
  "To create verification email, you need to use special CSS class in other email field. This CSS "
6915
  "field: %s"
6916
  msgstr ""
6917
 
6918
+ #: core/lib/wpbc_all_translations.php:1311 inc/_ps/form/class-wpbc-form-help.php:766
6919
  #, php-format
6920
  msgid "%sExample%s."
6921
  msgstr ""
6922
 
6923
+ #: core/lib/wpbc_all_translations.php:1312 inc/_ps/form/class-wpbc-form-help.php:767
6924
  msgid "confirmation email field of the primary email field"
6925
  msgstr ""
6926
 
6927
+ #: core/lib/wpbc_all_translations.php:1313 inc/_ps/form/class-wpbc-form-help.php:791
6928
  msgid "Generate Tag"
6929
  msgstr ""
6930
 
6931
+ #: core/lib/wpbc_all_translations.php:1314 inc/_ps/form/class-wpbc-form-help.php:807
6932
  msgid "Select option to configure or show help info about tags"
6933
  msgstr ""
6934
 
6935
+ #: core/lib/wpbc_all_translations.php:1315 inc/_ps/p-toolbar.php:34
6936
  msgid "Keyword"
6937
  msgstr ""
6938
 
6939
+ #: core/lib/wpbc_all_translations.php:1316 inc/_ps/p-toolbar.php:42
6940
  msgid "Enter Keyword here"
6941
  msgstr ""
6942
 
6943
+ #: core/lib/wpbc_all_translations.php:1317 inc/_ps/p-toolbar.php:96
6944
  msgid ""
6945
  "Save filter settings as default template (Please, click Apply filter button, before saving!)"
6946
  msgstr ""
6947
 
6948
+ #: core/lib/wpbc_all_translations.php:1318 inc/_ps/p-toolbar.php:100
6949
  msgid "Save as Default"
6950
  msgstr ""
6951
 
6952
+ #: core/lib/wpbc_all_translations.php:1319 inc/_ps/p-toolbar.php:106
6953
  msgid "Delete your previously saved default filer template!"
6954
  msgstr ""
6955
 
6956
+ #: core/lib/wpbc_all_translations.php:1320 inc/_ps/p-toolbar.php:110
6957
  msgid "Delete template"
6958
  msgstr ""
6959
 
6960
+ #: core/lib/wpbc_all_translations.php:1321 inc/_ps/p-toolbar.php:132
6961
  msgid "Print bookings listing"
6962
  msgstr ""
6963
 
6964
+ #: core/lib/wpbc_all_translations.php:1322 inc/_ps/p-toolbar.php:174
6965
  msgid "Export only current page of bookings to CSV format"
6966
  msgstr ""
6967
 
6968
+ #: core/lib/wpbc_all_translations.php:1323 inc/_ps/p-toolbar.php:187
6969
  msgid "Export All"
6970
  msgstr ""
6971
 
6972
+ #: core/lib/wpbc_all_translations.php:1324 inc/_ps/p-toolbar.php:188
6973
  msgid "Export All bookings to CSV format"
6974
  msgstr ""
6975
 
6976
+ #: core/lib/wpbc_all_translations.php:1325 inc/_ps/p-toolbar.php:255
6977
  msgid "Edit Note"
6978
  msgstr ""
6979
 
6980
+ #: core/lib/wpbc_all_translations.php:1326 inc/_ps/p-toolbar.php:278
6981
  msgid "Change Language"
6982
  msgstr ""
6983
 
6984
+ #: core/lib/wpbc_all_translations.php:1327 inc/_ps/p-toolbar.php:290
6985
  msgid "Default Locale"
6986
  msgstr ""
6987
 
6988
+ #: core/lib/wpbc_all_translations.php:1328 inc/_ps/p-toolbar.php:326
6989
  msgid "Change Resource"
6990
  msgstr ""
6991
 
6992
+ #: core/lib/wpbc_all_translations.php:1329 inc/_ps/p-toolbar.php:351 inc/_ps/p-toolbar.php:464
6993
+ #: inc/_ps/personal.php:2116
6994
  msgid "Duplicate Booking"
6995
  msgstr ""
6996
 
6997
+ #: core/lib/wpbc_all_translations.php:1330 inc/_ps/p-toolbar.php:382
6998
  msgid "Save"
6999
  msgstr ""
7000
 
7001
+ #: core/lib/wpbc_all_translations.php:1331 inc/_ps/p-toolbar.php:431
7002
  msgid "Change"
7003
  msgstr ""
7004
 
7005
+ #: core/lib/wpbc_all_translations.php:1332 inc/_ps/p-toolbar.php:501
7006
  msgid "Print bookings"
7007
  msgstr ""
7008
 
7009
+ #: core/lib/wpbc_all_translations.php:1333 inc/_ps/p-toolbar.php:540
7010
  msgid "Export bookings"
7011
  msgstr ""
7012
 
7013
+ #: core/lib/wpbc_all_translations.php:1334 inc/_ps/p-toolbar.php:543
7014
  msgid "Download the CSV file of exported booking data"
7015
  msgstr ""
7016
 
7017
+ #: core/lib/wpbc_all_translations.php:1335 inc/_ps/p-toolbar.php:551
7018
  msgid "Download"
7019
  msgstr ""
7020
 
7021
+ #: core/lib/wpbc_all_translations.php:1336 inc/_ps/p-toolbar.php:788
7022
  msgid "Clear booking resources selection"
7023
  msgstr ""
7024
 
7025
+ #: core/lib/wpbc_all_translations.php:1337 inc/_ps/p-toolbar.php:792
7026
  msgid "Apply booking resources selection"
7027
  msgstr ""
7028
 
7029
+ #: core/lib/wpbc_all_translations.php:1338 inc/_ps/p-toolbar.php:822
7030
  msgid ""
7031
  "Please note, its not possible to add new resources, if \"All resources\" option is selected. "
7032
  "Please clear the selection, then add new resources."
7033
  msgstr ""
7034
 
7035
+ #: core/lib/wpbc_all_translations.php:1339 inc/_ps/p-toolbar.php:1110 inc/_ps/p-toolbar.php:1158
7036
  msgid "Add New Booking Resource(s)"
7037
  msgstr ""
7038
 
7039
+ #: core/lib/wpbc_all_translations.php:1340 inc/_ps/p-toolbar.php:1150
7040
  msgid "Enter name of booking resource"
7041
  msgstr ""
7042
 
7043
+ #: core/lib/wpbc_all_translations.php:1341 inc/_ps/p-toolbar.php:1174
7044
  msgid "Resources count"
7045
  msgstr ""
7046
 
7047
+ #: core/lib/wpbc_all_translations.php:1342 inc/_ps/personal.php:249
7048
  msgid "This booking resources does not exist"
7049
  msgstr ""
7050
 
7051
+ #: core/lib/wpbc_all_translations.php:1343 inc/_ps/personal.php:294
7052
  msgid "Generating columns"
7053
  msgstr ""
7054
 
7055
+ #: core/lib/wpbc_all_translations.php:1344 inc/_ps/personal.php:335
7056
  msgid "Exporting booking data"
7057
  msgstr ""
7058
 
7059
+ #: core/lib/wpbc_all_translations.php:1345 inc/_ps/personal.php:378
7060
  msgid "Generating content of file"
7061
  msgstr ""
7062
 
7063
+ #: core/lib/wpbc_all_translations.php:1346 inc/_ps/personal.php:420
7064
  msgid "Saving to file"
7065
  msgstr ""
7066
 
7067
+ #: core/lib/wpbc_all_translations.php:1347 inc/_ps/personal.php:871
7068
  msgid "The booking was canceled by the visitor."
7069
  msgstr ""
7070
 
7071
+ #: core/lib/wpbc_all_translations.php:1348 inc/_ps/personal.php:932
7072
  msgid "The booking has been canceled successfully"
7073
  msgstr ""
7074
 
7075
+ #: core/lib/wpbc_all_translations.php:1349 inc/_ps/personal.php:953
7076
  msgid "Incorrect date format"
7077
  msgstr ""
7078
 
7079
+ #: core/lib/wpbc_all_translations.php:1350 inc/_ps/personal.php:2095
7080
  msgid "Change your Booking"
7081
  msgstr ""
7082
 
7083
+ #: core/lib/wpbc_all_translations.php:1351 inc/_ps/personal.php:2097
7084
  msgid "Cancel Booking"
7085
  msgstr ""
7086
 
7087
+ #: core/lib/wpbc_all_translations.php:1352 inc/_ps/personal.php:2375
7088
  msgid "Warning! The resource was not changed. Current dates are already booked there."
7089
  msgstr ""
7090
 
7091
+ #: core/lib/wpbc_all_translations.php:1353 inc/_ps/personal.php:2512
7092
  msgid "The booking has been duplicated successfully"
7093
  msgstr ""
7094
 
7095
+ #: core/lib/wpbc_all_translations.php:1354 inc/_ps/personal.php:2521
7096
  msgid "Warning! Operation failed. Current dates are already booked there."
7097
  msgstr ""
7098
 
7099
+ #: core/lib/wpbc_all_translations.php:1355 inc/_ps/personal.php:2608
7100
  msgid "Sending request..."
7101
  msgstr ""
7102
 
7103
+ #: core/lib/wpbc_all_translations.php:1356 inc/_ps/personal.php:2637
7104
  msgid "Order number"
7105
  msgstr ""
7106
 
7107
+ #: core/lib/wpbc_all_translations.php:1357 inc/_ps/personal.php:2639
7108
  msgid "Register"
7109
  msgstr ""
7110
 
7111
+ #: core/lib/wpbc_all_translations.php:1358 inc/_ps/personal.php:2641
7112
  msgid ""
7113
  "Please, enter order number of your purchased version, which you received to your billing email."
7114
  msgstr ""
7115
 
7116
+ #: core/lib/wpbc_all_translations.php:1359 inc/_ps/personal.php:2643
7117
  #, php-format
7118
  msgid "If you will get any difficulties or have a questions, please contact by email %s"
7119
  msgstr ""
7120
 
7121
+ #: core/lib/wpbc_all_translations.php:1360 inc/_ps/wpbc-booking-select-widget.php:226
7122
  msgid "Default form"
7123
  msgstr ""
7124
 
7125
+ #: core/lib/wpbc_all_translations.php:1361 inc/_ps/wpbc-check-updates.php:178
7126
  #, php-format
7127
  msgid ""
7128
  "There is a new version of %1$s available. <a href=\"%2$s\" target=\"_blank\" title=\"%3$s\">View "
7129
  "version %4$s details</a>. <em>Automatic update is unavailable for this plugin.</em>"
7130
  msgstr ""
7131
 
7132
+ #: core/lib/wpbc_all_translations.php:1362 inc/_ps/wpbc-check-updates.php:184
7133
  #, php-format
7134
  msgid "You can request the new update of plugin on %1$sthis page%2$s."
7135
  msgstr ""
7136
 
7137
+ #: core/lib/wpbc_all_translations.php:1363 inc/_ps/wpbc-check-updates.php:191
7138
  msgid "Upgrade Notice"
7139
  msgstr ""
7140
 
7141
+ #: core/lib/wpbc_all_translations.php:1364 inc/_ps/wpbc-check-updates.php:231
7142
  #, php-format
7143
  msgid "Version %s By %s"
7144
  msgstr ""
7145
 
7146
+ #: core/lib/wpbc_all_translations.php:1365 inc/_ps/wpbc-check-updates.php:235
7147
  msgid "View details"
7148
  msgstr ""
7149
 
7150
+ #: core/lib/wpbc_all_translations.php:1366 inc/_ps/wpbc-form-templates.php:34
7151
  #: inc/_ps/wpbc-form-templates.php:49 inc/_ps/wpbc-form-templates.php:69
7152
  #: inc/_ps/wpbc-form-templates.php:92 inc/_ps/wpbc-form-templates.php:114
7153
  msgid "First Name (required)"
7154
  msgstr ""
7155
 
7156
+ #: core/lib/wpbc_all_translations.php:1367 inc/_ps/wpbc-form-templates.php:35
7157
  #: inc/_ps/wpbc-form-templates.php:50 inc/_ps/wpbc-form-templates.php:70
7158
  #: inc/_ps/wpbc-form-templates.php:93 inc/_ps/wpbc-form-templates.php:115
7159
  msgid "Last Name (required)"
7160
  msgstr ""
7161
 
7162
+ #: core/lib/wpbc_all_translations.php:1368 inc/_ps/wpbc-form-templates.php:36
7163
  #: inc/_ps/wpbc-form-templates.php:51 inc/_ps/wpbc-form-templates.php:71
7164
  #: inc/_ps/wpbc-form-templates.php:94 inc/_ps/wpbc-form-templates.php:116
7165
  msgid "Email (required)"
7166
  msgstr ""
7167
 
7168
+ #: core/lib/wpbc_all_translations.php:1369 inc/_ps/wpbc-form-templates.php:37
7169
  #: inc/_ps/wpbc-form-templates.php:52 inc/_ps/wpbc-form-templates.php:72
7170
  #: inc/_ps/wpbc-form-templates.php:95 inc/_ps/wpbc-form-templates.php:117
7171
  #: inc/_ps/wpbc-form-templates.php:147 inc/_ps/wpbc-form-templates.php:159
7174
  msgid "Phone"
7175
  msgstr ""
7176
 
7177
+ #: core/lib/wpbc_all_translations.php:1370 inc/_ps/wpbc-form-templates.php:38
7178
  #: inc/_ps/wpbc-form-templates.php:57 inc/_ps/wpbc-form-templates.php:77
7179
  #: inc/_ps/wpbc-form-templates.php:100 inc/_ps/wpbc-form-templates.php:148
7180
  #: inc/_ps/wpbc-form-templates.php:164 inc/_ps/wpbc-form-templates.php:179
7181
  msgid "Adults"
7182
  msgstr ""
7183
 
7184
+ #: core/lib/wpbc_all_translations.php:1371 inc/_ps/wpbc-form-templates.php:38
7185
  #: inc/_ps/wpbc-form-templates.php:57 inc/_ps/wpbc-form-templates.php:77
7186
  #: inc/_ps/wpbc-form-templates.php:100 inc/_ps/wpbc-form-templates.php:149
7187
  #: inc/_ps/wpbc-form-templates.php:165 inc/_ps/wpbc-form-templates.php:180
7188
  msgid "Children"
7189
  msgstr ""
7190
 
7191
+ #: core/lib/wpbc_all_translations.php:1372 inc/_ps/wpbc-form-templates.php:39
7192
  #: inc/_ps/wpbc-form-templates.php:58 inc/_ps/wpbc-form-templates.php:78
7193
  #: inc/_ps/wpbc-form-templates.php:101 inc/_ps/wpbc-form-templates.php:123
7194
  #: inc/_ps/wpbc-form-templates.php:150 inc/_ps/wpbc-form-templates.php:166
7196
  msgid "Details"
7197
  msgstr ""
7198
 
7199
+ #: core/lib/wpbc_all_translations.php:1373 inc/_ps/wpbc-form-templates.php:40
7200
  #: inc/_ps/wpbc-form-templates.php:59 inc/_ps/wpbc-form-templates.php:79
7201
  #: inc/_ps/wpbc-form-templates.php:102 inc/_ps/wpbc-form-templates.php:125
7202
  msgid "I Accept term and conditions"
7203
  msgstr ""
7204
 
7205
+ #: core/lib/wpbc_all_translations.php:1374 inc/_ps/wpbc-form-templates.php:48
7206
  #: inc/_ps/wpbc-form-templates.php:68
7207
  msgid "Select Times"
7208
  msgstr ""
7209
 
7210
+ #: core/lib/wpbc_all_translations.php:1375 inc/_ps/wpbc-form-templates.php:53
7211
  #: inc/_ps/wpbc-form-templates.php:73 inc/_ps/wpbc-form-templates.php:96
7212
  #: inc/_ps/wpbc-form-templates.php:118
7213
  msgid "Address (required)"
7214
  msgstr ""
7215
 
7216
+ #: core/lib/wpbc_all_translations.php:1376 inc/_ps/wpbc-form-templates.php:54
7217
  #: inc/_ps/wpbc-form-templates.php:74 inc/_ps/wpbc-form-templates.php:97
7218
  #: inc/_ps/wpbc-form-templates.php:119
7219
  msgid "City (required)"
7220
  msgstr ""
7221
 
7222
+ #: core/lib/wpbc_all_translations.php:1377 inc/_ps/wpbc-form-templates.php:55
7223
  #: inc/_ps/wpbc-form-templates.php:75 inc/_ps/wpbc-form-templates.php:98
7224
  #: inc/_ps/wpbc-form-templates.php:120
7225
  msgid "Post code (required)"
7226
  msgstr ""
7227
 
7228
+ #: core/lib/wpbc_all_translations.php:1378 inc/_ps/wpbc-form-templates.php:56
7229
  #: inc/_ps/wpbc-form-templates.php:76 inc/_ps/wpbc-form-templates.php:99
7230
  #: inc/_ps/wpbc-form-templates.php:121
7231
  msgid "Country (required)"
7232
  msgstr ""
7233
 
7234
+ #: core/lib/wpbc_all_translations.php:1379 inc/_ps/wpbc-form-templates.php:89
7235
  msgid "night(s)"
7236
  msgstr ""
7237
 
7238
+ #: core/lib/wpbc_all_translations.php:1380 inc/_ps/wpbc-form-templates.php:90
7239
  #: inc/_ps/wpbc-form-templates.php:112
7240
  msgid "Full cost of the booking"
7241
  msgstr ""
7242
 
7243
+ #: core/lib/wpbc_all_translations.php:1381 inc/_ps/wpbc-form-templates.php:122
7244
  #: inc/_ps/wpbc-form-templates.php:194
7245
  msgid "Visitors"
7246
  msgstr ""
7247
 
7248
+ #: core/lib/wpbc_all_translations.php:1382 inc/_ps/wpbc-form-templates.php:145
7249
  #: inc/_ps/wpbc-form-templates.php:157 inc/_ps/wpbc-form-templates.php:172
7250
  #: inc/_ps/wpbc-form-templates.php:187
7251
  msgid "Last Name"
7252
  msgstr ""
7253
 
7254
+ #: core/lib/wpbc_all_translations.php:1383 inc/_ps/wpbc-form-templates.php:146
7255
  #: inc/_ps/wpbc-form-templates.php:158 inc/_ps/wpbc-form-templates.php:173
7256
  #: inc/_ps/wpbc-form-templates.php:188
7257
  msgid "Email"
7258
  msgstr ""
7259
 
7260
+ #: core/lib/wpbc_all_translations.php:1384 inc/_ps/wpbc-form-templates.php:160
7261
  #: inc/_ps/wpbc-form-templates.php:175 inc/_ps/wpbc-form-templates.php:190
7262
  msgid "Address"
7263
  msgstr ""
7264
 
7265
+ #: core/lib/wpbc_all_translations.php:1385 inc/_ps/wpbc-form-templates.php:161
7266
  #: inc/_ps/wpbc-form-templates.php:176 inc/_ps/wpbc-form-templates.php:191
7267
  msgid "City"
7268
  msgstr ""
7269
 
7270
+ #: core/lib/wpbc_all_translations.php:1386 inc/_ps/wpbc-form-templates.php:162
7271
  #: inc/_ps/wpbc-form-templates.php:177 inc/_ps/wpbc-form-templates.php:192
7272
  msgid "Post code"
7273
  msgstr ""
7274
 
7275
+ #: core/lib/wpbc_all_translations.php:1387 inc/_ps/wpbc-form-templates.php:163
7276
  #: inc/_ps/wpbc-form-templates.php:178 inc/_ps/wpbc-form-templates.php:193
7277
  #: inc/gateways/page-gateways.php:340
7278
  msgid "Country"
7279
  msgstr ""
7280
 
7281
+ #: core/lib/wpbc_all_translations.php:1388 inc/_ps/wpbc-form-templates.php:222
7282
+ #: inc/_ps/wpbc-form-templates.php:242 inc/_ps/wpbc-form-templates.php:252
7283
+ #: inc/_ps/wpbc-form-templates.php:262 inc/_ps/wpbc-form-templates.php:272
7284
  msgid "Check in"
7285
  msgstr ""
7286
 
7287
+ #: core/lib/wpbc_all_translations.php:1389 inc/_ps/wpbc-form-templates.php:225
7288
+ #: inc/_ps/wpbc-form-templates.php:243 inc/_ps/wpbc-form-templates.php:253
7289
+ #: inc/_ps/wpbc-form-templates.php:263 inc/_ps/wpbc-form-templates.php:273
7290
  msgid "Check out"
7291
  msgstr ""
7292
 
7293
+ #: core/lib/wpbc_all_translations.php:1390 inc/_ps/wpbc-form-templates.php:228
7294
+ #: inc/_ps/wpbc-form-templates.php:244 inc/_ps/wpbc-form-templates.php:254
7295
+ #: inc/_ps/wpbc-form-templates.php:264 inc/_ps/wpbc-form-templates.php:274
7296
  msgid "Guests"
7297
  msgstr ""
7298
 
7299
+ #: core/lib/wpbc_all_translations.php:1391 inc/_ps/wpbc-form-templates.php:308
7300
+ #: inc/_ps/wpbc-form-templates.php:334 inc/_ps/wpbc-form-templates.php:351
7301
  msgid "Max. persons"
7302
  msgstr ""
7303
 
7304
+ #: core/lib/wpbc_all_translations.php:1392 inc/_ps/wpbc-print.php:84
7305
  msgid "Data"
7306
  msgstr ""
7307
 
7308
+ #: core/lib/wpbc_all_translations.php:1393 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:293
7309
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:219
7310
  #: inc/gateways/ideal/wpbc-gw-ideal.php:378 inc/gateways/ipay88/wpbc-gw-ipay88.php:255
7311
  #: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:147 inc/gateways/paypal/wpbc-gw-paypal.php:344
7312
  #: inc/gateways/sage/wpbc-gw-sage.php:385 inc/gateways/stripe/wpbc-gw-stripe.php:350
7313
+ #: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:478
7314
  msgid "Enable this payment gateway"
7315
  msgstr ""
7316
 
7317
+ #: core/lib/wpbc_all_translations.php:1394 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:303
7318
  msgid "API Login ID"
7319
  msgstr ""
7320
 
7321
+ #: core/lib/wpbc_all_translations.php:1395 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:305
7322
  #, php-format
7323
  msgid "The merchant API Login ID is provided in the Merchant Interface of %s"
7324
  msgstr ""
7325
 
7326
+ #: core/lib/wpbc_all_translations.php:1396
7327
  msgid "Transaction Key"
7328
  msgstr ""
7329
 
7330
+ #: core/lib/wpbc_all_translations.php:1397 inc/gateways/stripe/wpbc-gw-stripe.php:378
7331
  #: inc/gateways/stripe/wpbc-gw-stripe.php:393 inc/gateways/stripe/wpbc-gw-stripe.php:410
7332
+ #: inc/gateways/stripe/wpbc-gw-stripe.php:425 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:506
7333
+ #: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:521
7334
+ #: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:538
7335
+ #: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:553
7336
  #, php-format
7337
  msgid "This parameter have to assigned to you by %s"
7338
  msgstr ""
7339
 
7340
+ #: core/lib/wpbc_all_translations.php:1398 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:361
7341
  #: inc/gateways/ideal/wpbc-gw-ideal.php:419 inc/gateways/paypal/wpbc-gw-paypal.php:423
7342
  #: inc/gateways/sage/wpbc-gw-sage.php:424
7343
  msgid "Chose payment mode"
7344
  msgstr ""
7345
 
7346
+ #: core/lib/wpbc_all_translations.php:1399 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:362
7347
  msgid ""
7348
  "Select \"Live test\" or \"Live\" environment for using Merchant account or \"Developer Test\" "
7349
  "for using Developer account."
7350
  msgstr ""
7351
 
7352
+ #: core/lib/wpbc_all_translations.php:1400 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:365
7353
  msgid ""
7354
  "Transactions posted against live merchant accounts using either of the above testing methods are "
7355
  "not submitted to financial institutions for authorization and are not stored in the Merchant "
7356
  "Interface."
7357
  msgstr ""
7358
 
7359
+ #: core/lib/wpbc_all_translations.php:1401 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:370
7360
  msgid "Developer Test"
7361
  msgstr ""
7362
 
7363
+ #: core/lib/wpbc_all_translations.php:1402 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:371
7364
  msgid "Live Test"
7365
  msgstr ""
7366
 
7367
+ #: core/lib/wpbc_all_translations.php:1403 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:372
7368
  #: inc/gateways/paypal/wpbc-gw-paypal.php:429
7369
  msgid "Live"
7370
  msgstr ""
7371
 
7372
+ #: core/lib/wpbc_all_translations.php:1404 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:380
7373
  #: inc/gateways/paypal/wpbc-gw-paypal.php:407 inc/gateways/sage/wpbc-gw-sage.php:438
7374
  msgid "Transaction type"
7375
  msgstr ""
7376
 
7377
+ #: core/lib/wpbc_all_translations.php:1405 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:381
7378
  msgid "Select transaction type, which supported by the payment gateway."
7379
  msgstr ""
7380
 
7381
+ #: core/lib/wpbc_all_translations.php:1406 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:384
7382
  msgid "Authorization and Capture"
7383
  msgstr ""
7384
 
7385
+ #: core/lib/wpbc_all_translations.php:1407 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:385
7386
  msgid "Authorization Only"
7387
  msgstr ""
7388
 
7389
+ #: core/lib/wpbc_all_translations.php:1408 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:391
7390
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:293 inc/gateways/paypal/wpbc-gw-paypal.php:438
7391
  #: inc/gateways/sage/wpbc-gw-sage.php:453 inc/gateways/stripe/wpbc-gw-stripe.php:446
7392
+ #: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:574
7393
  msgid "U.S. Dollars"
7394
  msgstr ""
7395
 
7396
+ #: core/lib/wpbc_all_translations.php:1409 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:392
7397
  #: inc/gateways/sage/wpbc-gw-sage.php:451 inc/gateways/stripe/wpbc-gw-stripe.php:447
7398
+ #: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:575
7399
  msgid "Pounds Sterling"
7400
  msgstr ""
7401
 
7402
+ #: core/lib/wpbc_all_translations.php:1410 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:393
7403
  #: inc/gateways/paypal/wpbc-gw-paypal.php:439 inc/gateways/sage/wpbc-gw-sage.php:452
7404
+ #: inc/gateways/stripe/wpbc-gw-stripe.php:448 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:576
7405
  msgid "Euros"
7406
  msgstr ""
7407
 
7408
+ #: core/lib/wpbc_all_translations.php:1411 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:394
7409
  #: inc/gateways/paypal/wpbc-gw-paypal.php:443 inc/gateways/sage/wpbc-gw-sage.php:456
7410
+ #: inc/gateways/stripe/wpbc-gw-stripe.php:449 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:577
7411
  msgid "Canadian Dollars"
7412
  msgstr ""
7413
 
7414
+ #: core/lib/wpbc_all_translations.php:1412 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:399
7415
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:299 inc/gateways/paypal/wpbc-gw-paypal.php:466
7416
  #: inc/gateways/sage/wpbc-gw-sage.php:478 inc/gateways/stripe/wpbc-gw-stripe.php:590
7417
+ #: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:718
7418
  msgid "Accepted Currency"
7419
  msgstr ""
7420
 
7421
+ #: core/lib/wpbc_all_translations.php:1413 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:400
7422
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:300 inc/gateways/paypal/wpbc-gw-paypal.php:467
7423
  #: inc/gateways/sage/wpbc-gw-sage.php:479 inc/gateways/stripe/wpbc-gw-stripe.php:591
7424
+ #: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:719
7425
  msgid "The currency code that gateway will process the payment in."
7426
  msgstr ""
7427
 
7428
+ #: core/lib/wpbc_all_translations.php:1414 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:403
7429
+ #: inc/gateways/stripe/wpbc-gw-stripe.php:594 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:722
7430
  msgid ""
7431
  "Setting the currency that is not supported by the payment processor will result in an error."
7432
  msgstr ""
7433
 
7434
+ #: core/lib/wpbc_all_translations.php:1415 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:413
7435
+ #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:414
7436
+ #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:1038 inc/gateways/ideal/wpbc-gw-ideal.php:309
7437
  #: inc/gateways/ideal/wpbc-gw-ideal.php:457 inc/gateways/ideal/wpbc-gw-ideal.php:458
7438
  #: inc/gateways/ideal/wpbc-gw-ideal.php:1046 inc/gateways/ipay88/wpbc-gw-ipay88.php:309
7439
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:310 inc/gateways/ipay88/wpbc-gw-ipay88.php:905
7441
  #: inc/gateways/paypal/wpbc-gw-paypal.php:1327 inc/gateways/sage/wpbc-gw-sage.php:488
7442
  #: inc/gateways/sage/wpbc-gw-sage.php:489 inc/gateways/sage/wpbc-gw-sage.php:1042
7443
  #: inc/gateways/stripe/wpbc-gw-stripe.php:612 inc/gateways/stripe/wpbc-gw-stripe.php:613
7444
+ #: inc/gateways/stripe/wpbc-gw-stripe.php:1117 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:740
7445
+ #: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:741
7446
+ #: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1295
7447
  msgid "Pay via"
7448
  msgstr ""
7449
 
7450
+ #: core/lib/wpbc_all_translations.php:1416 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:415
7451
  #: inc/gateways/ideal/wpbc-gw-ideal.php:459 inc/gateways/ipay88/wpbc-gw-ipay88.php:311
7452
  #: inc/gateways/paypal/wpbc-gw-paypal.php:497 inc/gateways/sage/wpbc-gw-sage.php:490
7453
+ #: inc/gateways/stripe/wpbc-gw-stripe.php:614 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:742
7454
  msgid "Payment button title"
7455
  msgstr ""
7456
 
7457
+ #: core/lib/wpbc_all_translations.php:1417 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:416
7458
  #: inc/gateways/ideal/wpbc-gw-ideal.php:460 inc/gateways/ipay88/wpbc-gw-ipay88.php:312
7459
  #: inc/gateways/paypal/wpbc-gw-paypal.php:498 inc/gateways/sage/wpbc-gw-sage.php:491
7460
+ #: inc/gateways/stripe/wpbc-gw-stripe.php:615 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:743
7461
  msgid "Enter the title of the payment button"
7462
  msgstr ""
7463
 
7464
+ #: core/lib/wpbc_all_translations.php:1418 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:427
7465
+ #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:428
7466
+ #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:1034 inc/gateways/ideal/wpbc-gw-ideal.php:471
7467
  #: inc/gateways/ideal/wpbc-gw-ideal.php:472 inc/gateways/ideal/wpbc-gw-ideal.php:1043
7468
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:323 inc/gateways/ipay88/wpbc-gw-ipay88.php:324
7469
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:902 inc/gateways/paypal/wpbc-gw-paypal.php:523
7470
  #: inc/gateways/paypal/wpbc-gw-paypal.php:524 inc/gateways/paypal/wpbc-gw-paypal.php:1329
7471
  #: inc/gateways/sage/wpbc-gw-sage.php:502 inc/gateways/sage/wpbc-gw-sage.php:503
7472
  #: inc/gateways/sage/wpbc-gw-sage.php:1038 inc/gateways/stripe/wpbc-gw-stripe.php:626
7473
+ #: inc/gateways/stripe/wpbc-gw-stripe.php:627 inc/gateways/stripe/wpbc-gw-stripe.php:1118
7474
+ #: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:754
7475
+ #: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:755
7476
+ #: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1296
7477
  #, php-format
7478
  msgid "Payment for booking %s on these day(s): %s"
7479
  msgstr ""
7480
 
7481
+ #: core/lib/wpbc_all_translations.php:1419 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:429
7482
  #: inc/gateways/ideal/wpbc-gw-ideal.php:473 inc/gateways/ipay88/wpbc-gw-ipay88.php:325
7483
  #: inc/gateways/paypal/wpbc-gw-paypal.php:525 inc/gateways/sage/wpbc-gw-sage.php:504
7484
+ #: inc/gateways/stripe/wpbc-gw-stripe.php:628 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:756
7485
  msgid "Payment description at gateway website"
7486
  msgstr ""
7487
 
7488
+ #: core/lib/wpbc_all_translations.php:1420 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:430
7489
  #: inc/gateways/ideal/wpbc-gw-ideal.php:474 inc/gateways/ipay88/wpbc-gw-ipay88.php:326
7490
  #: inc/gateways/paypal/wpbc-gw-paypal.php:526 inc/gateways/sage/wpbc-gw-sage.php:505
7491
+ #: inc/gateways/stripe/wpbc-gw-stripe.php:629 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:757
7492
  msgid "Enter the service name or the reason for the payment here."
7493
  msgstr ""
7494
 
7495
+ #: core/lib/wpbc_all_translations.php:1421 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:431
7496
  #: inc/gateways/ideal/wpbc-gw-ideal.php:475 inc/gateways/ipay88/wpbc-gw-ipay88.php:327
7497
  #: inc/gateways/paypal/wpbc-gw-paypal.php:527 inc/gateways/sage/wpbc-gw-sage.php:506
7498
+ #: inc/gateways/stripe/wpbc-gw-stripe.php:630 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:758
7499
  msgid "You can use any shortcodes, which you have used in content of booking fields data form."
7500
  msgstr ""
7501
 
7502
+ #: core/lib/wpbc_all_translations.php:1422 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:434
7503
  #: inc/gateways/ideal/wpbc-gw-ideal.php:478 inc/gateways/ipay88/wpbc-gw-ipay88.php:330
7504
  #: inc/gateways/paypal/wpbc-gw-paypal.php:530 inc/gateways/sage/wpbc-gw-sage.php:509
7505
  #, php-format
7506
  msgid "This field support only up to %s characters by payment system."
7507
  msgstr ""
7508
 
7509
+ #: core/lib/wpbc_all_translations.php:1423 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:452
7510
  msgid "Activate Relay Response"
7511
  msgstr ""
7512
 
7513
+ #: core/lib/wpbc_all_translations.php:1424 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:453
7514
  msgid ""
7515
  "Indicate to the payment gateway that you would like to receive the transaction response to your "
7516
  "site."
7517
  msgstr ""
7518
 
7519
+ #: core/lib/wpbc_all_translations.php:1425 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:456
7520
  msgid ""
7521
  "You should leave empty the Relay Response URL and Receipt Link URL/Text in the Merchant "
7522
  "Interface, if a Relay Response is activated here."
7523
  msgstr ""
7524
 
7525
+ #: core/lib/wpbc_all_translations.php:1426
7526
  msgid "MD5 Hash value"
7527
  msgstr ""
7528
 
7529
+ #: core/lib/wpbc_all_translations.php:1427
7530
  msgid ""
7531
  "Please enter the MD5 Hash value, which you configured in the settings of Merchant Interface."
7532
  msgstr ""
7533
 
7534
+ #: core/lib/wpbc_all_translations.php:1428
7535
  msgid "To configure MD5 Hash value in Relay Response for your transactions"
7536
  msgstr ""
7537
 
7538
+ #: core/lib/wpbc_all_translations.php:1429
7539
  msgid "Log on to the Merchant Interface"
7540
  msgstr ""
7541
 
7542
+ #: core/lib/wpbc_all_translations.php:1430
7543
  msgid "Click Settings under Account in the main menu on the left"
7544
  msgstr ""
7545
 
7546
+ #: core/lib/wpbc_all_translations.php:1431
7547
  msgid "Click MD5-Hash in the Security Settings section"
7548
  msgstr ""
7549
 
7550
+ #: core/lib/wpbc_all_translations.php:1432
7551
  msgid "Enter this value"
7552
  msgstr ""
7553
 
7554
+ #: core/lib/wpbc_all_translations.php:1433
7555
  msgid "Click Submit"
7556
  msgstr ""
7557
 
7558
+ #: core/lib/wpbc_all_translations.php:1434
7559
  #, php-format
7560
  msgid ""
7561
  "For more information about configuring Relay Response in the Merchant Interface, please see the "
7562
  "%sMerchant Integration Guide%s"
7563
  msgstr ""
7564
 
7565
+ #: core/lib/wpbc_all_translations.php:1435 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:492
7566
  #: inc/gateways/ideal/wpbc-gw-ideal.php:506 inc/gateways/ipay88/wpbc-gw-ipay88.php:351
7567
  #: inc/gateways/sage/wpbc-gw-sage.php:530 inc/gateways/stripe/wpbc-gw-stripe.php:654
7568
+ #: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:782
7569
  msgid "Return URL after Successful order"
7570
  msgstr ""
7571
 
7572
+ #: core/lib/wpbc_all_translations.php:1436 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:510
7573
  #: inc/gateways/ideal/wpbc-gw-ideal.php:522 inc/gateways/ipay88/wpbc-gw-ipay88.php:367
7574
  #: inc/gateways/paypal/wpbc-gw-paypal.php:591 inc/gateways/sage/wpbc-gw-sage.php:546
7575
+ #: inc/gateways/stripe/wpbc-gw-stripe.php:672 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:800
7576
  msgid "The URL where visitor will be redirected after completing payment."
7577
  msgstr ""
7578
 
7579
+ #: core/lib/wpbc_all_translations.php:1437 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:511
7580
  #: inc/gateways/ideal/wpbc-gw-ideal.php:523 inc/gateways/ipay88/wpbc-gw-ipay88.php:368
7581
  #: inc/gateways/paypal/wpbc-gw-paypal.php:592 inc/gateways/sage/wpbc-gw-sage.php:547
7582
+ #: inc/gateways/stripe/wpbc-gw-stripe.php:673 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:801
7583
  #, php-format
7584
  msgid "For example, a URL to your site that displays a %s\"Thank you for the payment\"%s."
7585
  msgstr ""
7586
 
7587
+ #: core/lib/wpbc_all_translations.php:1438 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:526
7588
  #: inc/gateways/ideal/wpbc-gw-ideal.php:537 inc/gateways/ipay88/wpbc-gw-ipay88.php:382
7589
  #: inc/gateways/sage/wpbc-gw-sage.php:561 inc/gateways/stripe/wpbc-gw-stripe.php:688
7590
+ #: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:816
7591
  msgid "Return URL after Failed order"
7592
  msgstr ""
7593
 
7594
+ #: core/lib/wpbc_all_translations.php:1439 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:544
7595
  #: inc/gateways/ideal/wpbc-gw-ideal.php:553 inc/gateways/ipay88/wpbc-gw-ipay88.php:398
7596
  #: inc/gateways/paypal/wpbc-gw-paypal.php:622 inc/gateways/sage/wpbc-gw-sage.php:577
7597
+ #: inc/gateways/stripe/wpbc-gw-stripe.php:706 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:834
7598
  msgid "The URL where the visitor will be redirected after completing payment."
7599
  msgstr ""
7600
 
7601
+ #: core/lib/wpbc_all_translations.php:1440 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:545
7602
  #: inc/gateways/ideal/wpbc-gw-ideal.php:554 inc/gateways/ipay88/wpbc-gw-ipay88.php:399
7603
  #: inc/gateways/paypal/wpbc-gw-paypal.php:623 inc/gateways/sage/wpbc-gw-sage.php:578
7604
+ #: inc/gateways/stripe/wpbc-gw-stripe.php:707 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:835
7605
  #, php-format
7606
  msgid "For example, the URL to your website that displays a %s\"Payment Canceled\"%s page."
7607
  msgstr ""
7608
 
7609
+ #: core/lib/wpbc_all_translations.php:1441 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:556
7610
  msgid "Automatically approve booking"
7611
  msgstr ""
7612
 
7613
+ #: core/lib/wpbc_all_translations.php:1442 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:557
7614
  msgid "Check this box to automatically approve booking, when visitor makes a successful payment."
7615
  msgstr ""
7616
 
7617
+ #: core/lib/wpbc_all_translations.php:1443 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:559
7618
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:412 inc/gateways/paypal/wpbc-gw-paypal.php:640
7619
  #: inc/gateways/sage/wpbc-gw-sage.php:591 inc/gateways/stripe/wpbc-gw-stripe.php:721
7620
+ #: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:849
7621
  msgid "This will not work, if the visitor leaves the payment page."
7622
  msgstr ""
7623
 
7624
+ #: core/lib/wpbc_all_translations.php:1444 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:779
7625
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:344
7626
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:425
7627
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:447
7630
  #: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:283 inc/gateways/pay_cash/wpbc-gw-pay_cash.php:388
7631
  #: inc/gateways/paypal/wpbc-gw-paypal.php:947 inc/gateways/paypal/wpbc-gw-paypal.php:1042
7632
  #: inc/gateways/sage/wpbc-gw-sage.php:783 inc/gateways/sage/wpbc-gw-sage.php:894
7633
+ #: inc/gateways/stripe/wpbc-gw-stripe.php:830 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:957
7634
  #, php-format
7635
  msgid "%s Settings"
7636
  msgstr ""
7637
 
7638
+ #: core/lib/wpbc_all_translations.php:1445 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:780
7639
  msgid "Integration of authorizenet payment system"
7640
  msgstr ""
7641
 
7642
+ #: core/lib/wpbc_all_translations.php:1446
7643
  #, php-format
7644
  msgid ""
7645
  "If you have no account on this system, please sign up for a %sdeveloper test account%s to obtain "
7647
  "gateway."
7648
  msgstr ""
7649
 
7650
+ #: core/lib/wpbc_all_translations.php:1447
7651
  msgid ""
7652
  "Please configure all fields inside the Billing form fields tab at this page, when using a "
7653
  "European payment processor"
7654
  msgstr ""
7655
 
7656
+ #: core/lib/wpbc_all_translations.php:1448 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:887
7657
  msgid "Be sure that the merchant server system clock is set to the proper time and time zone."
7658
  msgstr ""
7659
 
7660
+ #: core/lib/wpbc_all_translations.php:1449 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:897
7661
  #, php-format
7662
  msgid "%s - Server Integration Method (SIM)"
7663
  msgstr ""
7664
 
7665
+ #: core/lib/wpbc_all_translations.php:1450 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:231
7666
  #: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:159
7667
  msgid "Payment method description that the customer will see on your payment page."
7668
  msgstr ""
7669
 
7670
+ #: core/lib/wpbc_all_translations.php:1451 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:264
7671
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:343
7672
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:344
7673
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:425
7674
  msgid "Bank Transfer"
7675
  msgstr ""
7676
 
7677
+ #: core/lib/wpbc_all_translations.php:1452 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:345
7678
  msgid "Integration of Bank Transfer payment system"
7679
  msgstr ""
7680
 
7681
+ #: core/lib/wpbc_all_translations.php:1453 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:426
7682
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:466
7683
  msgid "Account details"
7684
  msgstr ""
7685
 
7686
+ #: core/lib/wpbc_all_translations.php:1454 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:480
7687
  #, php-format
7688
  msgid "Allow payments by %sdirect bank / wire transfer%s"
7689
  msgstr ""
7690
 
7691
+ #: core/lib/wpbc_all_translations.php:1455 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:482
7692
  #: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:364
7693
  msgid "Its only show fixed payment details."
7694
  msgstr ""
7695
 
7696
+ #: core/lib/wpbc_all_translations.php:1456 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:717
7697
  msgid "Sort Code"
7698
  msgstr ""
7699
 
7700
+ #: core/lib/wpbc_all_translations.php:1457 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:725
7701
  #, php-format
7702
  msgid ""
7703
  "Dear %sMake your payment %s directly into our bank account. %sPlease use your Booking ID %s as "
7704
  "the payment reference! %s %s: %s %s: %s %s: %s %s: %s"
7705
  msgstr ""
7706
 
7707
+ #: core/lib/wpbc_all_translations.php:1458 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:731
7708
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:738
7709
  msgid "Account Number"
7710
  msgstr ""
7711
 
7712
+ #: core/lib/wpbc_all_translations.php:1459 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:733
7713
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:741
7714
  msgid "IBAN"
7715
  msgstr ""
7716
 
7717
+ #: core/lib/wpbc_all_translations.php:1460 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:734
7718
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:742
7719
  msgid "BIC / Swift"
7720
  msgstr ""
7721
 
7722
+ #: core/lib/wpbc_all_translations.php:1461 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:737
7723
  msgid "Account Name"
7724
  msgstr ""
7725
 
7726
+ #: core/lib/wpbc_all_translations.php:1462 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:739
7727
  #: inc/gateways/ideal/wpbc-gw-ideal.php:324
7728
  msgid "Bank Name"
7729
  msgstr ""
7730
 
7731
+ #: core/lib/wpbc_all_translations.php:1463 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:787
7732
  msgid "BSB"
7733
  msgstr ""
7734
 
7735
+ #: core/lib/wpbc_all_translations.php:1464 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:788
7736
  msgid "Bank Transit Number"
7737
  msgstr ""
7738
 
7739
+ #: core/lib/wpbc_all_translations.php:1465 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:789
7740
  msgid "IFSC"
7741
  msgstr ""
7742
 
7743
+ #: core/lib/wpbc_all_translations.php:1466 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:790
7744
  msgid "Branch Sort"
7745
  msgstr ""
7746
 
7747
+ #: core/lib/wpbc_all_translations.php:1467 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:791
7748
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:792
7749
  msgid "Bank Code"
7750
  msgstr ""
7751
 
7752
+ #: core/lib/wpbc_all_translations.php:1468 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:793
7753
  msgid "Routing Number"
7754
  msgstr ""
7755
 
7756
+ #: core/lib/wpbc_all_translations.php:1469 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:794
7757
  msgid "Branch Code"
7758
  msgstr ""
7759
 
7760
+ #: core/lib/wpbc_all_translations.php:1470 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:804
7761
  #, php-format
7762
  msgid "%s - inserting all bank accounts details"
7763
  msgstr ""
7764
 
7765
+ #: core/lib/wpbc_all_translations.php:1471 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:805
7766
  #, php-format
7767
  msgid "%s - inserting account name"
7768
  msgstr ""
7769
 
7770
+ #: core/lib/wpbc_all_translations.php:1472 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:806
7771
  #, php-format
7772
  msgid "%s - inserting account number"
7773
  msgstr ""
7774
 
7775
+ #: core/lib/wpbc_all_translations.php:1473 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:807
7776
  #, php-format
7777
  msgid "%s - inserting bank name "
7778
  msgstr ""
7779
 
7780
+ #: core/lib/wpbc_all_translations.php:1474 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:808
7781
  #, php-format
7782
  msgid "%s - inserting sort code "
7783
  msgstr ""
7784
 
7785
+ #: core/lib/wpbc_all_translations.php:1475 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:809
7786
  #, php-format
7787
  msgid "%s - inserting IBAN "
7788
  msgstr ""
7789
 
7790
+ #: core/lib/wpbc_all_translations.php:1476 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:810
7791
  #, php-format
7792
  msgid "%s - inserting BIC "
7793
  msgstr ""
7794
 
7795
+ #: core/lib/wpbc_all_translations.php:1477 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:815
7796
  msgid ""
7797
  "You can use any shortcodes, that you can use in payment description form at Settings Payment "
7798
  "General page"
7799
  msgstr ""
7800
 
7801
+ #: core/lib/wpbc_all_translations.php:1478 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:888
7802
  msgid "+ Add Account"
7803
  msgstr ""
7804
 
7805
+ #: core/lib/wpbc_all_translations.php:1479 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:888
7806
  msgid "Remove selected account(s)"
7807
  msgstr ""
7808
 
7809
+ #: core/lib/wpbc_all_translations.php:1480 inc/gateways/ipay88/ipay88-backend.php:51
7810
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:500
7811
  msgid "Successful payment"
7812
  msgstr ""
7813
 
7814
+ #: core/lib/wpbc_all_translations.php:1481 inc/gateways/ipay88/ipay88-backend.php:53
7815
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:503
7816
  msgid " Parameters are incorrect,"
7817
  msgstr ""
7818
 
7819
+ #: core/lib/wpbc_all_translations.php:1482 inc/gateways/ipay88/ipay88-backend.php:54
7820
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:505
7821
  msgid "Cannot find the record"
7822
  msgstr ""
7823
 
7824
+ #: core/lib/wpbc_all_translations.php:1483 inc/gateways/ipay88/ipay88-backend.php:55
7825
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:507
7826
  msgid "Amount different"
7827
  msgstr ""
7828
 
7829
+ #: core/lib/wpbc_all_translations.php:1484 inc/gateways/ipay88/ipay88-backend.php:56
7830
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:509
7831
  msgid "Payment failed"
7832
  msgstr ""
7833
 
7834
+ #: core/lib/wpbc_all_translations.php:1485 inc/gateways/ipay88/ipay88-backend.php:57
7835
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:511
7836
  msgid "Payment status updated by Mobile88 Admin(Fail)"
7837
  msgstr ""
7838
 
7839
+ #: core/lib/wpbc_all_translations.php:1486 inc/gateways/ipay88/ipay88-backend.php:58
7840
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:513
7841
  msgid "Connection Error"
7842
  msgstr ""
7843
 
7844
+ #: core/lib/wpbc_all_translations.php:1487 inc/gateways/ipay88/wpbc-gw-ipay88.php:265
7845
  msgid "Merchant Code"
7846
  msgstr ""
7847
 
7848
+ #: core/lib/wpbc_all_translations.php:1488 inc/gateways/ipay88/wpbc-gw-ipay88.php:267
7849
  msgid "Enter your iPay88 Merchant Code."
7850
  msgstr ""
7851
 
7852
+ #: core/lib/wpbc_all_translations.php:1489 inc/gateways/ideal/wpbc-gw-ideal.php:403
7853
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:280
7854
  msgid "Merchant Key"
7855
  msgstr ""
7856
 
7857
+ #: core/lib/wpbc_all_translations.php:1490 inc/gateways/ipay88/wpbc-gw-ipay88.php:282
7858
  msgid "Enter your iPay88 Merchant Key."
7859
  msgstr ""
7860
 
7861
+ #: core/lib/wpbc_all_translations.php:1491 inc/gateways/ipay88/wpbc-gw-ipay88.php:292
7862
  msgid "Malaysian Ringgit"
7863
  msgstr ""
7864
 
7865
+ #: core/lib/wpbc_all_translations.php:1492 inc/gateways/ipay88/wpbc-gw-ipay88.php:294
7866
  #: inc/gateways/paypal/wpbc-gw-paypal.php:458 inc/gateways/sage/wpbc-gw-sage.php:471
7867
  msgid "Philippine Pesos"
7868
  msgstr ""
7869
 
7870
+ #: core/lib/wpbc_all_translations.php:1493 inc/gateways/ideal/wpbc-gw-ideal.php:564
7871
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:409 inc/gateways/paypal/wpbc-gw-paypal.php:637
7872
  #: inc/gateways/sage/wpbc-gw-sage.php:588 inc/gateways/stripe/wpbc-gw-stripe.php:718
7873
+ #: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:846
7874
  msgid "Automatically approve/cancel booking"
7875
  msgstr ""
7876
 
7877
+ #: core/lib/wpbc_all_translations.php:1494 inc/gateways/ideal/wpbc-gw-ideal.php:565
7878
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:410 inc/gateways/paypal/wpbc-gw-paypal.php:638
7879
  #: inc/gateways/sage/wpbc-gw-sage.php:589 inc/gateways/stripe/wpbc-gw-stripe.php:719
7880
+ #: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:847
7881
  msgid ""
7882
  "Check this box to automatically approve bookings, when visitor makes a successful payment, or "
7883
  "automatically cancel the booking, when visitor makes a payment cancellation."
7884
  msgstr ""
7885
 
7886
+ #: core/lib/wpbc_all_translations.php:1495 inc/gateways/ipay88/wpbc-gw-ipay88.php:660
7887
  msgid "Integration of iPay88 payment system"
7888
  msgstr ""
7889
 
7890
+ #: core/lib/wpbc_all_translations.php:1496 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:879
7891
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:751 inc/gateways/sage/wpbc-gw-sage.php:883
7892
+ #: inc/gateways/stripe/wpbc-gw-stripe.php:956 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1105
7893
  #, php-format
7894
  msgid ""
7895
  "Please configure all fields inside the %sBilling form fields%s section at %sPayments General%s "
7896
  "tab."
7897
  msgstr ""
7898
 
7899
+ #: core/lib/wpbc_all_translations.php:1497 inc/gateways/page-gateways.php:65
7900
  msgid "for 1 day"
7901
  msgstr ""
7902
 
7903
+ #: core/lib/wpbc_all_translations.php:1498 inc/gateways/page-gateways.php:66
7904
  msgid "for 1 night"
7905
  msgstr ""
7906
 
7907
+ #: core/lib/wpbc_all_translations.php:1499 inc/gateways/page-gateways.php:67
7908
  msgid "fixed sum"
7909
  msgstr ""
7910
 
7911
+ #: core/lib/wpbc_all_translations.php:1500 inc/gateways/page-gateways.php:68
7912
  msgid "for 1 hour"
7913
  msgstr ""
7914
 
7915
+ #: core/lib/wpbc_all_translations.php:1501 inc/gateways/page-gateways.php:73
7916
  msgid "Set the cost"
7917
  msgstr ""
7918
 
7919
+ #: core/lib/wpbc_all_translations.php:1502 inc/gateways/page-gateways.php:74
7920
  msgid " Select your cost configuration."
7921
  msgstr ""
7922
 
7923
+ #: core/lib/wpbc_all_translations.php:1503 inc/gateways/page-gateways.php:82
7924
  msgid "Time impact to cost"
7925
  msgstr ""
7926
 
7927
+ #: core/lib/wpbc_all_translations.php:1504 inc/gateways/page-gateways.php:83
7928
  #, php-format
7929
  msgid ""
7930
  "Check this box if you want the %stime selection%s on the booking form %sapplied to the cost "
7931
  "calculation%s."
7932
  msgstr ""
7933
 
7934
+ #: core/lib/wpbc_all_translations.php:1505 inc/gateways/page-gateways.php:93
7935
  msgid ""
7936
  "Check this box if you want that specific additional cost, which configured as percentage for "
7937
  "some option, apply to other additional fixed costs and not only to original booking cost."
7938
  msgstr ""
7939
 
7940
+ #: core/lib/wpbc_all_translations.php:1506 inc/gateways/page-gateways.php:174
7941
  #: inc/gateways/page-gateways.php:848
7942
  msgid "Currency"
7943
  msgstr ""
7944
 
7945
+ #: core/lib/wpbc_all_translations.php:1507 inc/gateways/page-gateways.php:177
7946
  msgid ""
7947
  "This is default currency that showing at your website. Specific payment gateway(s) can support "
7948
  "or does not suport it."
7949
  msgstr ""
7950
 
7951
+ #: core/lib/wpbc_all_translations.php:1508 inc/gateways/page-gateways.php:142
7952
  #: inc/gateways/page-gateways.php:180 inc/gateways/page-gateways.php:900
7953
  msgid "Important"
7954
  msgstr ""
7955
 
7956
+ #: core/lib/wpbc_all_translations.php:1509 inc/gateways/page-gateways.php:180
7957
  msgid "Check and configure currency at each activated payment gateway."
7958
  msgstr ""
7959
 
7960
+ #: core/lib/wpbc_all_translations.php:1510 inc/gateways/page-gateways.php:190
7961
  msgid "Currency Position"
7962
  msgstr ""
7963
 
7964
+ #: core/lib/wpbc_all_translations.php:1511 inc/gateways/page-gateways.php:191
7965
  msgid "Set position of the currency symbol."
7966
  msgstr ""
7967
 
7968
+ #: core/lib/wpbc_all_translations.php:1512 inc/gateways/page-gateways.php:194
7969
  msgid "Left"
7970
  msgstr ""
7971
 
7972
+ #: core/lib/wpbc_all_translations.php:1513 inc/gateways/page-gateways.php:198
7973
  msgid "Right"
7974
  msgstr ""
7975
 
7976
+ #: core/lib/wpbc_all_translations.php:1514 inc/gateways/page-gateways.php:202
7977
  msgid "Left with space"
7978
  msgstr ""
7979
 
7980
+ #: core/lib/wpbc_all_translations.php:1515 inc/gateways/page-gateways.php:206
7981
  msgid "Right with space"
7982
  msgstr ""
7983
 
7984
+ #: core/lib/wpbc_all_translations.php:1516 inc/gateways/page-gateways.php:225
7985
  msgid "Currency format"
7986
  msgstr ""
7987
 
7988
+ #: core/lib/wpbc_all_translations.php:1517 inc/gateways/page-gateways.php:226
7989
  msgid "Number of decimal points"
7990
  msgstr ""
7991
 
7992
+ #: core/lib/wpbc_all_translations.php:1518 inc/gateways/page-gateways.php:233
7993
  #: inc/gateways/page-gateways.php:248
7994
  msgid "No separator"
7995
  msgstr ""
7996
 
7997
+ #: core/lib/wpbc_all_translations.php:1519 inc/gateways/page-gateways.php:234
7998
  #: inc/gateways/page-gateways.php:249
7999
  msgid "Space"
8000
  msgstr ""
8001
 
8002
+ #: core/lib/wpbc_all_translations.php:1520 inc/gateways/page-gateways.php:235
8003
  #: inc/gateways/page-gateways.php:250
8004
  msgid "Dot"
8005
  msgstr ""
8006
 
8007
+ #: core/lib/wpbc_all_translations.php:1521 inc/gateways/page-gateways.php:236
8008
  #: inc/gateways/page-gateways.php:251
8009
  msgid "Comma"
8010
  msgstr ""
8011
 
8012
+ #: core/lib/wpbc_all_translations.php:1522 inc/gateways/page-gateways.php:241
8013
  msgid "Separator for the decimal point"
8014
  msgstr ""
8015
 
8016
+ #: core/lib/wpbc_all_translations.php:1523 inc/gateways/page-gateways.php:256
8017
  msgid "Thousands separator"
8018
  msgstr ""
8019
 
8020
+ #: core/lib/wpbc_all_translations.php:1524 inc/gateways/page-gateways.php:269
8021
  msgid "Please select"
8022
  msgstr ""
8023
 
8024
+ #: core/lib/wpbc_all_translations.php:1525 inc/gateways/page-gateways.php:280
8025
  msgid ""
8026
  "Please select a field from your booking form. This field will be automatically assigned to the "
8027
  "current field in the billing form."
8028
  msgstr ""
8029
 
8030
+ #: core/lib/wpbc_all_translations.php:1526 inc/gateways/page-gateways.php:292
8031
  msgid "Customer Email"
8032
  msgstr ""
8033
 
8034
+ #: core/lib/wpbc_all_translations.php:1527 inc/gateways/page-gateways.php:300
8035
  msgid "First Name(s)"
8036
  msgstr ""
8037
 
8038
+ #: core/lib/wpbc_all_translations.php:1528 inc/gateways/page-gateways.php:308
8039
  msgid "Last name"
8040
  msgstr ""
8041
 
8042
+ #: core/lib/wpbc_all_translations.php:1529 inc/gateways/page-gateways.php:324
8043
  msgid "Billing Address"
8044
  msgstr ""
8045
 
8046
+ #: core/lib/wpbc_all_translations.php:1530 inc/gateways/page-gateways.php:332
8047
  msgid "Billing City"
8048
  msgstr ""
8049
 
8050
+ #: core/lib/wpbc_all_translations.php:1531 inc/gateways/page-gateways.php:349
8051
  msgid "Post Code"
8052
  msgstr ""
8053
 
8054
+ #: core/lib/wpbc_all_translations.php:1532 inc/gateways/page-gateways.php:357
8055
  msgid "State"
8056
  msgstr ""
8057
 
8058
+ #: core/lib/wpbc_all_translations.php:1533 inc/gateways/page-gateways.php:369
8059
  msgid "Show booking details in payment form"
8060
  msgstr ""
8061
 
8062
+ #: core/lib/wpbc_all_translations.php:1534 inc/gateways/page-gateways.php:370
8063
  #, php-format
8064
  msgid ""
8065
  " Check this checkbox if you want to show the %sbooking details summary%s above the payment form"
8066
  msgstr ""
8067
 
8068
+ #: core/lib/wpbc_all_translations.php:1535 inc/gateways/page-gateways.php:381
8069
  msgid "Configure booking details summary above the payment form"
8070
  msgstr ""
8071
 
8072
+ #: core/lib/wpbc_all_translations.php:1536 inc/gateways/page-gateways.php:500
8073
  msgid "Payments"
8074
  msgstr ""
8075
 
8076
+ #: core/lib/wpbc_all_translations.php:1537 inc/gateways/page-gateways.php:501
8077
  msgid "Customizaton of Payment"
8078
  msgstr ""
8079
 
8080
+ #: core/lib/wpbc_all_translations.php:1538 inc/gateways/page-gateways.php:502
8081
  msgid "Payment Gateways"
8082
  msgstr ""
8083
 
8084
+ #: core/lib/wpbc_all_translations.php:1539 inc/gateways/page-gateways.php:518
8085
  #: inc/gateways/page-gateways.php:588 inc/gateways/page-gateways.php:615
8086
  msgid "Payment Settings"
8087
  msgstr ""
8088
 
8089
+ #: core/lib/wpbc_all_translations.php:1540 inc/gateways/page-gateways.php:519
8090
  msgid "Payment Gateways - General Settings"
8091
  msgstr ""
8092
 
8093
+ #: core/lib/wpbc_all_translations.php:1541 inc/gateways/page-gateways.php:586
8094
  #: inc/gateways/page-gateways.php:610
8095
  msgid "Active Payment Gateways"
8096
  msgstr ""
8097
 
8098
+ #: core/lib/wpbc_all_translations.php:1542 inc/gateways/page-gateways.php:587
8099
  #: inc/gateways/page-gateways.php:631
8100
  msgid "Billing form fields"
8101
  msgstr ""
8102
 
8103
+ #: core/lib/wpbc_all_translations.php:1543 inc/gateways/page-gateways.php:590
8104
  #: inc/gateways/page-gateways.php:645
8105
  msgid "Payment Description"
8106
  msgstr ""
8107
 
8108
+ #: core/lib/wpbc_all_translations.php:1544 inc/gateways/page-gateways.php:846
8109
  msgid "Gateway"
8110
  msgstr ""
8111
 
8112
+ #: core/lib/wpbc_all_translations.php:1545 inc/gateways/page-gateways.php:896
8113
  #, php-format
8114
  msgid "Some currencies at payment gateways are different from main currency %s"
8115
  msgstr ""
8116
 
8117
+ #: core/lib/wpbc_all_translations.php:1546 inc/gateways/page-gateways.php:900
8118
  #, php-format
8119
  msgid ""
8120
  "Interface of plugin is using %s currency. Specific payment gateway will use own currency in "
8121
  "payment form without currency exchange! Its can be reason of wrong cost."
8122
  msgstr ""
8123
 
8124
+ #: core/lib/wpbc_all_translations.php:1547 inc/gateways/page-gateways.php:1049
8125
  msgid "ID of booking"
8126
  msgstr ""
8127
 
8128
+ #: core/lib/wpbc_all_translations.php:1548 inc/gateways/page-gateways.php:1050
8129
  msgid "ID of booking resources"
8130
  msgstr ""
8131
 
8132
+ #: core/lib/wpbc_all_translations.php:1549 inc/gateways/page-gateways.php:1056
8133
  msgid "current date"
8134
  msgstr ""
8135
 
8136
+ #: core/lib/wpbc_all_translations.php:1550 inc/gateways/page-gateways.php:1057
8137
  msgid "current time"
8138
  msgstr ""
8139
 
8140
+ #: core/lib/wpbc_all_translations.php:1551 inc/gateways/page-gateways.php:1063
8141
  msgid "content data of this booking"
8142
  msgstr ""
8143
 
8144
+ #: core/lib/wpbc_all_translations.php:1552 inc/gateways/page-gateways.php:1064
8145
  #: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:181
8146
  msgid "show amount to pay"
8147
  msgstr ""
8148
 
8149
+ #: core/lib/wpbc_all_translations.php:1553 inc/gateways/page-gateways.php:1066
8150
  msgid "total booking cost"
8151
  msgstr ""
8152
 
8153
+ #: core/lib/wpbc_all_translations.php:1554 inc/gateways/page-gateways.php:1067
8154
  msgid "deposit cost"
8155
  msgstr ""
8156
 
8157
+ #: core/lib/wpbc_all_translations.php:1555 inc/gateways/page-gateways.php:1068
8158
  msgid "balance cost"
8159
  msgstr ""
8160
 
8161
+ #: core/lib/wpbc_all_translations.php:1556 inc/gateways/page-gateways.php:1069
8162
  msgid "original booking cost"
8163
  msgstr ""
8164
 
8165
+ #: core/lib/wpbc_all_translations.php:1557 inc/gateways/page-gateways.php:1070
8166
  msgid "additional booking cost"
8167
  msgstr ""
8168
 
8169
+ #: core/lib/wpbc_all_translations.php:1558 inc/gateways/page-gateways.php:1417
8170
  msgid "Amount to pay"
8171
  msgstr ""
8172
 
8173
+ #: core/lib/wpbc_all_translations.php:1559 inc/gateways/page-gateways.php:1451
8174
  #, php-format
8175
  msgid "Please make payment for your booking %s on %s For reference your booking ID: %s"
8176
  msgstr ""
8177
 
8178
+ #: core/lib/wpbc_all_translations.php:1560 inc/gateways/pay_cash/wpbc-gw-pay_cash.php:204
8179
  #: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:282 inc/gateways/pay_cash/wpbc-gw-pay_cash.php:283
8180
  msgid "Pay in Cash"
8181
  msgstr ""
8182
 
8183
+ #: core/lib/wpbc_all_translations.php:1561 inc/gateways/pay_cash/wpbc-gw-pay_cash.php:284
8184
  msgid "Integration of Pay in Cash payment system"
8185
  msgstr ""
8186
 
8187
+ #: core/lib/wpbc_all_translations.php:1562 inc/gateways/pay_cash/wpbc-gw-pay_cash.php:362
8188
  #, php-format
8189
  msgid "If you accept %scash payment%s, you can write details about it here"
8190
  msgstr ""
8191
 
8192
+ #: core/lib/wpbc_all_translations.php:1563 inc/gateways/pay_cash/wpbc-gw-pay_cash.php:523
8193
  #, php-format
8194
  msgid "Dear %sPay in cash %s for your booking %s on check in %sFor reference your booking ID: %s"
8195
  msgstr ""
8196
 
8197
+ #: core/lib/wpbc_all_translations.php:1564 inc/gateways/paypal/ipn.php:120
8198
  msgid "Error IPN"
8199
  msgstr ""
8200
 
8201
+ #: core/lib/wpbc_all_translations.php:1565 inc/gateways/paypal/ipn.php:250
8202
  msgid "Verified IPN"
8203
  msgstr ""
8204
 
8205
+ #: core/lib/wpbc_all_translations.php:1566 inc/gateways/paypal/ipn.php:273
8206
  msgid "Invalid IPN"
8207
  msgstr ""
8208
 
8209
+ #: core/lib/wpbc_all_translations.php:1567 inc/gateways/paypal/wpbc-gw-paypal.php:313
8210
  msgid "Make payments with payPal - its fast, free and secure!"
8211
  msgstr ""
8212
 
8213
+ #: core/lib/wpbc_all_translations.php:1568 inc/gateways/paypal/wpbc-gw-paypal.php:352
8214
  #: inc/gateways/paypal/wpbc-gw-paypal.php:822
8215
  msgid "Paypal Standard"
8216
  msgstr ""
8217
 
8218
+ #: core/lib/wpbc_all_translations.php:1569 inc/gateways/paypal/wpbc-gw-paypal.php:356
8219
  #: inc/gateways/paypal/wpbc-gw-paypal.php:822
8220
  msgid "Paypal Pro Hosted Solution"
8221
  msgstr ""
8222
 
8223
+ #: core/lib/wpbc_all_translations.php:1570 inc/gateways/paypal/wpbc-gw-paypal.php:363
8224
  msgid "Account Type"
8225
  msgstr ""
8226
 
8227
+ #: core/lib/wpbc_all_translations.php:1571 inc/gateways/paypal/wpbc-gw-paypal.php:375
8228
  msgid "Paypal Email address to receive payments"
8229
  msgstr ""
8230
 
8231
+ #: core/lib/wpbc_all_translations.php:1572 inc/gateways/paypal/wpbc-gw-paypal.php:377
8232
  msgid "This is the Paypal Email address where payments will be sent"
8233
  msgstr ""
8234
 
8235
+ #: core/lib/wpbc_all_translations.php:1573 inc/gateways/paypal/wpbc-gw-paypal.php:391
8236
  msgid "Secure Merchant ID"
8237
  msgstr ""
8238
 
8239
+ #: core/lib/wpbc_all_translations.php:1574 inc/gateways/paypal/wpbc-gw-paypal.php:393
8240
  msgid "This is the Secure Merchant ID, which can be found on the profile page"
8241
  msgstr ""
8242
 
8243
+ #: core/lib/wpbc_all_translations.php:1575 inc/gateways/paypal/wpbc-gw-paypal.php:408
8244
  msgid ""
8245
  " Indicates whether the transaction is payment on a final sale or an authorization for a final "
8246
  "sale, to be captured later. "
8247
  msgstr ""
8248
 
8249
+ #: core/lib/wpbc_all_translations.php:1576 inc/gateways/paypal/wpbc-gw-paypal.php:412
8250
  msgid "Sale"
8251
  msgstr ""
8252
 
8253
+ #: core/lib/wpbc_all_translations.php:1577 inc/gateways/paypal/wpbc-gw-paypal.php:413
8254
  msgid "Authorization"
8255
  msgstr ""
8256
 
8257
+ #: core/lib/wpbc_all_translations.php:1578 inc/gateways/paypal/wpbc-gw-paypal.php:424
8258
  msgid " Select using test (Sandbox Test Environment) or live PayPal payment."
8259
  msgstr ""
8260
 
8261
+ #: core/lib/wpbc_all_translations.php:1579 inc/gateways/paypal/wpbc-gw-paypal.php:430
8262
  msgid "Sandbox"
8263
  msgstr ""
8264
 
8265
+ #: core/lib/wpbc_all_translations.php:1580 inc/gateways/paypal/wpbc-gw-paypal.php:440
8266
  msgid "British Pound"
8267
  msgstr ""
8268
 
8269
+ #: core/lib/wpbc_all_translations.php:1581 inc/gateways/paypal/wpbc-gw-paypal.php:441
8270
  msgid "Japanese Yen"
8271
  msgstr ""
8272
 
8273
+ #: core/lib/wpbc_all_translations.php:1582 inc/gateways/paypal/wpbc-gw-paypal.php:442
8274
  #: inc/gateways/sage/wpbc-gw-sage.php:455
8275
  msgid "Australian Dollars"
8276
  msgstr ""
8277
 
8278
+ #: core/lib/wpbc_all_translations.php:1583 inc/gateways/paypal/wpbc-gw-paypal.php:444
8279
  #: inc/gateways/sage/wpbc-gw-sage.php:457
8280
  msgid "New Zealand Dollar"
8281
  msgstr ""
8282
 
8283
+ #: core/lib/wpbc_all_translations.php:1584 inc/gateways/paypal/wpbc-gw-paypal.php:445
8284
  #: inc/gateways/sage/wpbc-gw-sage.php:458
8285
  msgid "Swiss Franc"
8286
  msgstr ""
8287
 
8288
+ #: core/lib/wpbc_all_translations.php:1585 inc/gateways/paypal/wpbc-gw-paypal.php:446
8289
  #: inc/gateways/sage/wpbc-gw-sage.php:459
8290
  msgid "Hong Kong Dollar"
8291
  msgstr ""
8292
 
8293
+ #: core/lib/wpbc_all_translations.php:1586 inc/gateways/paypal/wpbc-gw-paypal.php:447
8294
  #: inc/gateways/sage/wpbc-gw-sage.php:460
8295
  msgid "Singapore Dollar"
8296
  msgstr ""
8297
 
8298
+ #: core/lib/wpbc_all_translations.php:1587 inc/gateways/paypal/wpbc-gw-paypal.php:448
8299
  #: inc/gateways/sage/wpbc-gw-sage.php:461
8300
  msgid "Swedish Krona"
8301
  msgstr ""
8302
 
8303
+ #: core/lib/wpbc_all_translations.php:1588 inc/gateways/paypal/wpbc-gw-paypal.php:449
8304
  #: inc/gateways/sage/wpbc-gw-sage.php:462
8305
  msgid "Danish Krone"
8306
  msgstr ""
8307
 
8308
+ #: core/lib/wpbc_all_translations.php:1589 inc/gateways/paypal/wpbc-gw-paypal.php:450
8309
  #: inc/gateways/sage/wpbc-gw-sage.php:463
8310
  msgid "Polish Zloty"
8311
  msgstr ""
8312
 
8313
+ #: core/lib/wpbc_all_translations.php:1590 inc/gateways/paypal/wpbc-gw-paypal.php:451
8314
  #: inc/gateways/sage/wpbc-gw-sage.php:464
8315
  msgid "Norwegian Krone"
8316
  msgstr ""
8317
 
8318
+ #: core/lib/wpbc_all_translations.php:1591 inc/gateways/paypal/wpbc-gw-paypal.php:452
8319
  #: inc/gateways/sage/wpbc-gw-sage.php:465
8320
  msgid "Hungarian Forint"
8321
  msgstr ""
8322
 
8323
+ #: core/lib/wpbc_all_translations.php:1592 inc/gateways/paypal/wpbc-gw-paypal.php:453
8324
  #: inc/gateways/sage/wpbc-gw-sage.php:466
8325
  msgid "Czech Koruna"
8326
  msgstr ""
8327
 
8328
+ #: core/lib/wpbc_all_translations.php:1593 inc/gateways/paypal/wpbc-gw-paypal.php:454
8329
  msgid "Israeli New Shekel"
8330
  msgstr ""
8331
 
8332
+ #: core/lib/wpbc_all_translations.php:1594 inc/gateways/paypal/wpbc-gw-paypal.php:455
8333
  #: inc/gateways/sage/wpbc-gw-sage.php:468
8334
  msgid "Mexican Peso"
8335
  msgstr ""
8336
 
8337
+ #: core/lib/wpbc_all_translations.php:1595 inc/gateways/paypal/wpbc-gw-paypal.php:456
8338
  #: inc/gateways/sage/wpbc-gw-sage.php:469
8339
  msgid "Brazilian Real (only for Brazilian users)"
8340
  msgstr ""
8341
 
8342
+ #: core/lib/wpbc_all_translations.php:1596 inc/gateways/paypal/wpbc-gw-paypal.php:457
8343
  #: inc/gateways/sage/wpbc-gw-sage.php:470
8344
  msgid "Malaysian Ringgits (only for Malaysian users)"
8345
  msgstr ""
8346
 
8347
+ #: core/lib/wpbc_all_translations.php:1597 inc/gateways/paypal/wpbc-gw-paypal.php:459
8348
  #: inc/gateways/sage/wpbc-gw-sage.php:472
8349
  msgid "Taiwan New Dollars"
8350
  msgstr ""
8351
 
8352
+ #: core/lib/wpbc_all_translations.php:1598 inc/gateways/paypal/wpbc-gw-paypal.php:460
8353
  #: inc/gateways/sage/wpbc-gw-sage.php:473
8354
  msgid "Thai Baht"
8355
  msgstr ""
8356
 
8357
+ #: core/lib/wpbc_all_translations.php:1599 inc/gateways/paypal/wpbc-gw-paypal.php:461
8358
  msgid "Turkish Lira (only for Turkish members)"
8359
  msgstr ""
8360
 
8361
+ #: core/lib/wpbc_all_translations.php:1600 inc/gateways/paypal/wpbc-gw-paypal.php:480
8362
  msgid "Custom button title"
8363
  msgstr ""
8364
 
8365
+ #: core/lib/wpbc_all_translations.php:1601 inc/gateways/paypal/wpbc-gw-paypal.php:487
8366
  msgid "Payment Button type"
8367
  msgstr ""
8368
 
8369
+ #: core/lib/wpbc_all_translations.php:1602 inc/gateways/paypal/wpbc-gw-paypal.php:542
8370
  msgid "Show Reference Text Box"
8371
  msgstr ""
8372
 
8373
+ #: core/lib/wpbc_all_translations.php:1603 inc/gateways/paypal/wpbc-gw-paypal.php:543
8374
  msgid "Check this box to show Reference Text Box"
8375
  msgstr ""
8376
 
8377
+ #: core/lib/wpbc_all_translations.php:1604 inc/gateways/paypal/wpbc-gw-paypal.php:551
8378
  #: inc/gateways/paypal/wpbc-gw-paypal.php:552 inc/gateways/paypal/wpbc-gw-paypal.php:1331
8379
  msgid "Enter your phone number"
8380
  msgstr ""
8381
 
8382
+ #: core/lib/wpbc_all_translations.php:1605 inc/gateways/paypal/wpbc-gw-paypal.php:553
8383
  msgid "Reference Text Box Title"
8384
  msgstr ""
8385
 
8386
+ #: core/lib/wpbc_all_translations.php:1606 inc/gateways/paypal/wpbc-gw-paypal.php:554
8387
  msgid ""
8388
  "Enter a title for the Reference text box (i.e. Your email address). Visitors will see this text."
8389
  msgstr ""
8390
 
8391
+ #: core/lib/wpbc_all_translations.php:1607 inc/gateways/paypal/wpbc-gw-paypal.php:575
8392
  msgid "Return URL from PayPal"
8393
  msgstr ""
8394
 
8395
+ #: core/lib/wpbc_all_translations.php:1608 inc/gateways/paypal/wpbc-gw-paypal.php:606
8396
  msgid "Cancel Return URL from PayPal"
8397
  msgstr ""
8398
 
8399
+ #: core/lib/wpbc_all_translations.php:1609 inc/gateways/paypal/wpbc-gw-paypal.php:657
8400
  #, php-format
8401
  msgid "To use this feature you %smust activate auto-return link%s at your Paypal account."
8402
  msgstr ""
8403
 
8404
+ #: core/lib/wpbc_all_translations.php:1610 inc/gateways/paypal/wpbc-gw-paypal.php:658
8405
  msgid "Follow these steps to configure it:"
8406
  msgstr ""
8407
 
8408
+ #: core/lib/wpbc_all_translations.php:1611 inc/gateways/paypal/wpbc-gw-paypal.php:660
8409
  msgid "Log in to your PayPal account."
8410
  msgstr ""
8411
 
8412
+ #: core/lib/wpbc_all_translations.php:1612 inc/gateways/paypal/wpbc-gw-paypal.php:661
8413
  msgid "Click the Profile subtab."
8414
  msgstr ""
8415
 
8416
+ #: core/lib/wpbc_all_translations.php:1613 inc/gateways/paypal/wpbc-gw-paypal.php:662
8417
  msgid "Click Website Payment Preferences in the Seller Preferences column."
8418
  msgstr ""
8419
 
8420
+ #: core/lib/wpbc_all_translations.php:1614 inc/gateways/paypal/wpbc-gw-paypal.php:663
8421
  msgid "Under Auto Return for Website Payments, click the On radio button."
8422
  msgstr ""
8423
 
8424
+ #: core/lib/wpbc_all_translations.php:1615 inc/gateways/paypal/wpbc-gw-paypal.php:664
8425
  msgid "For the Return URL, enter the Return URL from PayPal on your site for successfull payment."
8426
  msgstr ""
8427
 
8428
+ #: core/lib/wpbc_all_translations.php:1616 inc/gateways/paypal/wpbc-gw-paypal.php:673
8429
  msgid ""
8430
  "Instant Payment Notification (IPN) is a message service that notifies you of events related to "
8431
  "PayPal transactions"
8432
  msgstr ""
8433
 
8434
+ #: core/lib/wpbc_all_translations.php:1617 inc/gateways/paypal/wpbc-gw-paypal.php:682
8435
  msgid "Sending email for verified transaction"
8436
  msgstr ""
8437
 
8438
+ #: core/lib/wpbc_all_translations.php:1618 inc/gateways/paypal/wpbc-gw-paypal.php:692
8439
  #, php-format
8440
  msgid "Email for getting report for %sverified%s transactions."
8441
  msgstr ""
8442
 
8443
+ #: core/lib/wpbc_all_translations.php:1619 inc/gateways/paypal/wpbc-gw-paypal.php:705
8444
  msgid "Sending email for invalid transaction"
8445
  msgstr ""
8446
 
8447
+ #: core/lib/wpbc_all_translations.php:1620 inc/gateways/paypal/wpbc-gw-paypal.php:715
8448
  #, php-format
8449
  msgid "Email for getting report for %sinvalid%s transactions."
8450
  msgstr ""
8451
 
8452
+ #: core/lib/wpbc_all_translations.php:1621 inc/gateways/paypal/wpbc-gw-paypal.php:728
8453
  msgid "Sending email if error occur during verification"
8454
  msgstr ""
8455
 
8456
+ #: core/lib/wpbc_all_translations.php:1622 inc/gateways/paypal/wpbc-gw-paypal.php:738
8457
  #, php-format
8458
  msgid "Email for getting report for %ssome errors in verification process%s."
8459
  msgstr ""
8460
 
8461
+ #: core/lib/wpbc_all_translations.php:1623 inc/gateways/paypal/wpbc-gw-paypal.php:750
8462
  msgid "Use SSL connection"
8463
  msgstr ""
8464
 
8465
+ #: core/lib/wpbc_all_translations.php:1624 inc/gateways/paypal/wpbc-gw-paypal.php:751
8466
  msgid "Use the SSL connection for posting data, instead of standard HTTP connection"
8467
  msgstr ""
8468
 
8469
+ #: core/lib/wpbc_all_translations.php:1625 inc/gateways/paypal/wpbc-gw-paypal.php:758
8470
  msgid "Use cURL posting"
8471
  msgstr ""
8472
 
8473
+ #: core/lib/wpbc_all_translations.php:1626 inc/gateways/paypal/wpbc-gw-paypal.php:759
8474
  msgid "Use the cURL for posting data, instead of fsockopen() function"
8475
  msgstr ""
8476
 
8477
+ #: core/lib/wpbc_all_translations.php:1627 inc/gateways/paypal/wpbc-gw-paypal.php:775
8478
  msgid " Follow these instructions to set up your listener at your PayPal account:"
8479
  msgstr ""
8480
 
8481
+ #: core/lib/wpbc_all_translations.php:1628 inc/gateways/paypal/wpbc-gw-paypal.php:777
8482
  msgid "Click Profile on the My Account tab."
8483
  msgstr ""
8484
 
8485
+ #: core/lib/wpbc_all_translations.php:1629 inc/gateways/paypal/wpbc-gw-paypal.php:778
8486
  msgid "Click Instant Payment Notification Preferences in the Selling Preferences column."
8487
  msgstr ""
8488
 
8489
+ #: core/lib/wpbc_all_translations.php:1630 inc/gateways/paypal/wpbc-gw-paypal.php:779
8490
  msgid "Click Choose IPN Settings to specify your listeners URL and activate the listener."
8491
  msgstr ""
8492
 
8493
+ #: core/lib/wpbc_all_translations.php:1631 inc/gateways/paypal/wpbc-gw-paypal.php:780
8494
  msgid "Specify the URL for your listener in the Notification URL field as:"
8495
  msgstr ""
8496
 
8497
+ #: core/lib/wpbc_all_translations.php:1632 inc/gateways/paypal/wpbc-gw-paypal.php:782
8498
  msgid "Click Receive IPN messages (Enabled) to enable your listener."
8499
  msgstr ""
8500
 
8501
+ #: core/lib/wpbc_all_translations.php:1633 inc/gateways/paypal/wpbc-gw-paypal.php:783
8502
  msgid "Click Save."
8503
  msgstr ""
8504
 
8505
+ #: core/lib/wpbc_all_translations.php:1634 inc/gateways/paypal/wpbc-gw-paypal.php:784
8506
  msgid "Click Back to Profile Summary to return to the Profile after activating your listener."
8507
  msgstr ""
8508
 
8509
+ #: core/lib/wpbc_all_translations.php:1635 inc/gateways/paypal/wpbc-gw-paypal.php:946
8510
  msgid "PayPal"
8511
  msgstr ""
8512
 
8513
+ #: core/lib/wpbc_all_translations.php:1636 inc/gateways/paypal/wpbc-gw-paypal.php:948
8514
  msgid "Integration of Paypal payment system"
8515
  msgstr ""
8516
 
8517
+ #: core/lib/wpbc_all_translations.php:1637 inc/gateways/paypal/wpbc-gw-paypal.php:1069
8518
  msgid "PayPal IPN"
8519
  msgstr ""
8520
 
8521
+ #: core/lib/wpbc_all_translations.php:1638 inc/gateways/sage/wpbc-gw-sage.php:355
8522
  #, php-format
8523
  msgid "Pay using %s payment service"
8524
  msgstr ""
8525
 
8526
+ #: core/lib/wpbc_all_translations.php:1639 inc/gateways/sage/wpbc-gw-sage.php:395
8527
  msgid "Vendor Name"
8528
  msgstr ""
8529
 
8530
+ #: core/lib/wpbc_all_translations.php:1640 inc/gateways/sage/wpbc-gw-sage.php:397
8531
  msgid "Set this value to the Vendor Name assigned to you by Sage Pay or chosen when you applied."
8532
  msgstr ""
8533
 
8534
+ #: core/lib/wpbc_all_translations.php:1641 inc/gateways/sage/wpbc-gw-sage.php:410
8535
  msgid "XOR Encryption password"
8536
  msgstr ""
8537
 
8538
+ #: core/lib/wpbc_all_translations.php:1642 inc/gateways/sage/wpbc-gw-sage.php:412
8539
  msgid "Set this value to the XOR Encryption password assigned to you by Sage Pay"
8540
  msgstr ""
8541
 
8542
+ #: core/lib/wpbc_all_translations.php:1643 inc/gateways/ideal/wpbc-gw-ideal.php:420
8543
  #: inc/gateways/sage/wpbc-gw-sage.php:425
8544
  msgid "Select TEST for the Test Server and LIVE in the live environment"
8545
  msgstr ""
8546
 
8547
+ #: core/lib/wpbc_all_translations.php:1644 inc/gateways/ideal/wpbc-gw-ideal.php:432
8548
  #: inc/gateways/sage/wpbc-gw-sage.php:429 inc/gateways/stripe/wpbc-gw-stripe.php:365
8549
  #: inc/gateways/stripe/wpbc-gw-stripe.php:408 inc/gateways/stripe/wpbc-gw-stripe.php:423
8550
+ #: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:493
8551
+ #: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:536
8552
+ #: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:551
8553
  msgid "TEST"
8554
  msgstr ""
8555
 
8556
+ #: core/lib/wpbc_all_translations.php:1645 inc/gateways/ideal/wpbc-gw-ideal.php:433
8557
  #: inc/gateways/sage/wpbc-gw-sage.php:430 inc/gateways/stripe/wpbc-gw-stripe.php:366
8558
+ #: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:494
8559
  msgid "LIVE"
8560
  msgstr ""
8561
 
8562
+ #: core/lib/wpbc_all_translations.php:1646 inc/gateways/sage/wpbc-gw-sage.php:439
8563
  msgid "This can be DEFERRED or AUTHENTICATED if your Sage Pay account supports those payment types"
8564
  msgstr ""
8565
 
8566
+ #: core/lib/wpbc_all_translations.php:1647 inc/gateways/sage/wpbc-gw-sage.php:443
8567
  msgid "PAYMENT"
8568
  msgstr ""
8569
 
8570
+ #: core/lib/wpbc_all_translations.php:1648 inc/gateways/sage/wpbc-gw-sage.php:444
8571
  msgid "DEFERRED"
8572
  msgstr ""
8573
 
8574
+ #: core/lib/wpbc_all_translations.php:1649 inc/gateways/sage/wpbc-gw-sage.php:445
8575
  msgid "AUTHENTICATE"
8576
  msgstr ""
8577
 
8578
+ #: core/lib/wpbc_all_translations.php:1650 inc/gateways/sage/wpbc-gw-sage.php:454
8579
  msgid "Yen"
8580
  msgstr ""
8581
 
8582
+ #: core/lib/wpbc_all_translations.php:1651 inc/gateways/sage/wpbc-gw-sage.php:467
8583
  msgid "Israeli Shekel"
8584
  msgstr ""
8585
 
8586
+ #: core/lib/wpbc_all_translations.php:1652 inc/gateways/sage/wpbc-gw-sage.php:782
8587
  msgid "Sage"
8588
  msgstr ""
8589
 
8590
+ #: core/lib/wpbc_all_translations.php:1653 inc/gateways/sage/wpbc-gw-sage.php:784
8591
  msgid "Integration of Sage payment system"
8592
  msgstr ""
8593
 
8594
+ #: core/lib/wpbc_all_translations.php:1654 inc/gateways/sage/wpbc-gw-sage.php:876
8595
+ #: inc/gateways/stripe/wpbc-gw-stripe.php:949 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1051
8596
  #, php-format
8597
  msgid "If you have no account on this system, please visit %s to create one."
8598
  msgstr ""
8599
 
8600
+ #: core/lib/wpbc_all_translations.php:1655 core/wpbc-functions.php:3479
8601
  msgid "Payment rejected"
8602
  msgstr ""
8603
 
8604
+ #: core/lib/wpbc_all_translations.php:1656 inc/gateways/ideal/wpbc-gw-ideal.php:388
8605
  msgid "Merchant ID"
8606
  msgstr ""
8607
 
8608
+ #: core/lib/wpbc_all_translations.php:1657 inc/gateways/ideal/wpbc-gw-ideal.php:390
8609
  msgid "Enter your iDEAL Merchant ID"
8610
  msgstr ""
8611
 
8612
+ #: core/lib/wpbc_all_translations.php:1658 inc/gateways/ideal/wpbc-gw-ideal.php:405
8613
  msgid "Enter your iDEAL Merchant Key."
8614
  msgstr ""
8615
 
8616
+ #: core/lib/wpbc_all_translations.php:1659 inc/gateways/ideal/wpbc-gw-ideal.php:423
8617
  #, php-format
8618
  msgid "Test mode requires the option %s to be selected in the %s account configuration section %s"
8619
  msgstr ""
8620
 
8621
+ #: core/lib/wpbc_all_translations.php:1660 inc/gateways/ideal/wpbc-gw-ideal.php:424
8622
  msgid "Test with Simulator"
8623
  msgstr ""
8624
 
8625
+ #: core/lib/wpbc_all_translations.php:1661 inc/gateways/ideal/wpbc-gw-ideal.php:426
8626
  msgid "My Profile – Connection"
8627
  msgstr ""
8628
 
8629
+ #: core/lib/wpbc_all_translations.php:1662 inc/gateways/ideal/wpbc-gw-ideal.php:482
8630
  #, php-format
8631
  msgid ""
8632
  "If not supplied then the description as configured in the administration/management portal "
8634
  "be applied."
8635
  msgstr ""
8636
 
8637
+ #: core/lib/wpbc_all_translations.php:1663 inc/gateways/ideal/wpbc-gw-ideal.php:483
8638
  msgid "Always use Description"
8639
  msgstr ""
8640
 
8641
+ #: core/lib/wpbc_all_translations.php:1664 inc/gateways/ideal/wpbc-gw-ideal.php:802
8642
+ #: inc/gateways/stripe/wpbc-gw-stripe.php:831 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:958
8643
  #, php-format
8644
  msgid "Integration of %s payment system"
8645
  msgstr ""
8646
 
8647
+ #: core/lib/wpbc_all_translations.php:1665 inc/gateways/ideal/wpbc-gw-ideal.php:893
8648
  #, php-format
8649
  msgid "Processing your %s payments through %s"
8650
  msgstr ""
8651
 
8652
+ #: core/lib/wpbc_all_translations.php:1666 core/wpbc-emails.php:264
8653
  #, php-format
8654
  msgid "%s - inserting link for export booking to"
8655
  msgstr ""
8656
 
8657
+ #: core/lib/wpbc_all_translations.php:1667 inc/_ps/admin/br-table-export-feeds.php:176
8658
  msgid ".ics Feed URL"
8659
  msgstr ""
8660
 
8661
+ #: core/lib/wpbc_all_translations.php:1668 core/wpbc-emails.php:245 core/wpbc-emails.php:246
8662
  #: core/wpbc-emails.php:247 core/wpbc-emails.php:248 core/wpbc-emails.php:249
8663
  #: core/wpbc-emails.php:250 core/wpbc-emails.php:251
8664
  #, php-format
8665
  msgid "%s - inserting modification date of booking "
8666
  msgstr ""
8667
 
8668
+ #: core/lib/wpbc_all_translations.php:1669 inc/_ps/form/class-wpbc-form-help.php:687
8669
  msgid "Coupon discount value of the booking."
8670
  msgstr ""
8671
 
8672
+ #: core/lib/wpbc_all_translations.php:1670 inc/gateways/stripe/stripe-charge.php:381
8673
  msgid "Stripe. Ouch, something went wrong!"
8674
  msgstr ""
8675
 
8676
+ #: core/lib/wpbc_all_translations.php:1671 inc/gateways/stripe/wpbc-gw-stripe.php:320
8677
  #, php-format
8678
  msgid "Please pay %s"
8679
  msgstr ""
8680
 
8681
+ #: core/lib/wpbc_all_translations.php:1672 inc/gateways/stripe/wpbc-gw-stripe.php:360
8682
+ #: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:488
8683
  msgid "Chose payment account"
8684
  msgstr ""
8685
 
8686
+ #: core/lib/wpbc_all_translations.php:1673 inc/gateways/stripe/wpbc-gw-stripe.php:376
8687
+ #: inc/gateways/stripe/wpbc-gw-stripe.php:408 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:504
8688
+ #: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:536
8689
  msgid "Publishable key"
8690
  msgstr ""
8691
 
8692
+ #: core/lib/wpbc_all_translations.php:1674 inc/gateways/stripe/wpbc-gw-stripe.php:391
8693
+ #: inc/gateways/stripe/wpbc-gw-stripe.php:423 inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:519
8694
+ #: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:551
8695
  msgid "Secret key"
8696
  msgstr ""
8697
 
8698
+ #: core/lib/wpbc_all_translations.php:1675 inc/gateways/stripe/wpbc-gw-stripe.php:595
8699
+ #: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:723
8700
  msgid "For more information:"
8701
  msgstr ""
8702
 
8703
+ #: core/lib/wpbc_all_translations.php:1676 inc/gateways/stripe/wpbc-gw-stripe.php:929
8704
+ #: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1084
8705
  #, php-format
8706
  msgid "require PHP version %s or newer!"
8707
  msgstr ""
8708
 
8709
+ #: core/lib/wpbc_all_translations.php:1677 inc/_bl/admin/page-search.php:145
8710
  #, php-format
8711
  msgid "%s - ID of booking resource, "
8712
  msgstr ""
8713
 
8714
+ #: core/lib/wpbc_all_translations.php:1678 inc/_bl/admin/page-search.php:146
8715
  #, php-format
8716
  msgid "%s - ID of page with booking form, "
8717
  msgstr ""
8718
 
8719
+ #: core/lib/wpbc_all_translations.php:1679 inc/_bs/admin/page-email-payment.php:698
8720
  msgid "Email with Payment Request which is sent to Visitor."
8721
  msgstr ""
8722
 
8723
+ #: core/lib/wpbc_all_translations.php:1680 inc/_ps/admin/page-email-edit.php:558
8724
  msgid "Customization of email template, which is sent after modification of booking"
8725
  msgstr ""
8726
 
8727
+ #: core/lib/wpbc_all_translations.php:1681 inc/_ps/admin/page-email-edit.php:694
8728
  msgid "Email is sent to Visitor after Editing of booking."
8729
  msgstr ""
8730
 
8731
+ #: core/lib/wpbc_all_translations.php:1682 core/lib/wpdev-booking-class.php:692
8732
  msgid "Booking resource type is not defined. This can be, when at the URL is wrong booking hash."
8733
  msgstr ""
8734
 
8735
+ #: core/lib/wpbc_all_translations.php:1683 core/lib/wpdev-booking-class.php:1011
8736
  msgid "My bookings"
8737
  msgstr ""
8738
 
8739
+ #: core/lib/wpbc_all_translations.php:1684 core/wpbc-emails.php:271
8740
  #, php-format
8741
  msgid ""
8742
  "%s - inserting link to the page where visitor can see listing of own bookings, (possible to use "
8743
  "the %s parameter for setting different %s of this page. Example: %s )"
8744
  msgstr ""
8745
 
8746
+ #: core/lib/wpbc_all_translations.php:1685 inc/_bl/admin/page-search.php:650
8747
  msgid "Inline Search Form Template"
8748
  msgstr ""
8749
 
8750
+ #: core/lib/wpbc_all_translations.php:1686 inc/_bm/admin/api-settings-m.php:275
8751
  msgid "Show booking details in tooltip"
8752
  msgstr ""
8753
 
8754
+ #: core/lib/wpbc_all_translations.php:1687 inc/_bm/admin/api-settings-m.php:276
8755
  #, php-format
8756
  msgid ""
8757
  "Check this box to display booking details with a tooltip, when mouse hovers over each day on the "
8758
  "calendar(s). %sIts works only for bookings for specific timeslot(s)!%s"
8759
  msgstr ""
8760
 
8761
+ #: core/lib/wpbc_all_translations.php:1688 inc/_bm/admin/api-settings-m.php:284
8762
  msgid "Booking details"
8763
  msgstr ""
8764
 
8765
+ #: core/lib/wpbc_all_translations.php:1689 inc/_bm/admin/api-settings-m.php:285
8766
  msgid "You can use the shortcodes from the bottom form of Settings Fields page."
8767
  msgstr ""
8768
 
8769
+ #: core/lib/wpbc_all_translations.php:1690 inc/_bm/admin/api-settings-m.php:299
8770
  msgid "This option can impact to speed of page loading."
8771
  msgstr ""
8772
 
8773
+ #: core/lib/wpbc_all_translations.php:1691 inc/_bm/admin/page-cost-advanced.php:680
8774
  msgid ""
8775
  "Use arithmetic expressions in cost configurations, including fields shortcodes and simple "
8776
  "mathematics operations"
8777
  msgstr ""
8778
 
8779
+ #: core/lib/wpbc_all_translations.php:1692 inc/_bm/admin/page-cost-advanced.php:682
8780
  #, php-format
8781
  msgid "if selected %s"
8782
  msgstr ""
8783
 
8784
+ #: core/lib/wpbc_all_translations.php:1693 inc/_bs/admin/api-settings-s.php:304
8785
  msgid "Set check out date as available"
8786
  msgstr ""
8787
 
8788
+ #: core/lib/wpbc_all_translations.php:1694 inc/_bs/admin/api-settings-s.php:305
8789
  msgid "Check this option, to remove last selected day of saving to booking."
8790
  msgstr ""
8791
 
8792
+ #: core/lib/wpbc_all_translations.php:1695 inc/_bs/admin/api-settings-s.php:489
8793
  msgid "Auto approve bookings during import"
8794
  msgstr ""
8795
 
8796
+ #: core/lib/wpbc_all_translations.php:1696 inc/_bs/admin/api-settings-s.php:490
8797
  #, php-format
8798
  msgid ""
8799
  "Check this checkbox to activate auto approve of all bookings %sduring import from external "
8800
  "source(s)%s."
8801
  msgstr ""
8802
 
8803
+ #: core/lib/wpbc_all_translations.php:1697 inc/_bs/admin/api-settings-s.php:497
8804
  msgid "Auto approve booking, if booking cost is zero"
8805
  msgstr ""
8806
 
8807
+ #: core/lib/wpbc_all_translations.php:1698 inc/_bs/admin/api-settings-s.php:498
8808
  #, php-format
8809
  msgid "Check this checkbox to activate auto approve of booking, %swhen cost of booking is zero%s."
8810
  msgstr ""
8811
 
8812
+ #: core/lib/wpbc_all_translations.php:1699 inc/_bs/admin/api-settings-s.php:505
8813
  msgid "Auto approve bookings after creation booking in admin panel"
8814
  msgstr ""
8815
 
8816
+ #: core/lib/wpbc_all_translations.php:1700 inc/_bs/admin/api-settings-s.php:506
8817
  #, php-format
8818
  msgid ""
8819
  "Check this checkbox to activate auto approve of booking, %sif booking was made in admin panel%s."
8820
  msgstr ""
8821
 
8822
+ #: core/lib/wpbc_all_translations.php:1701 inc/_mu/admin/api-settings-u.php:62
8823
  msgid "Activate custom booking forms for regular users"
8824
  msgstr ""
8825
 
8826
+ #: core/lib/wpbc_all_translations.php:1702 inc/_mu/admin/api-settings-u.php:63
8827
  msgid "Check this box if you want to use multiple custom booking forms for activated regular users"
8828
  msgstr ""
8829
 
8830
+ #: core/lib/wpbc_all_translations.php:1703 inc/_ps/admin/api-settings-p.php:98
8831
  msgid "Start / End time for Calendar Overview"
8832
  msgstr ""
8833
 
8834
+ #: core/lib/wpbc_all_translations.php:1704 inc/_ps/admin/api-settings-p.php:146
8835
  #, php-format
8836
  msgid "Select start and end time showing for Calendar Overview in %sDay%s view mode"
8837
  msgstr ""
8838
 
8839
+ #: core/lib/wpbc_all_translations.php:1705 inc/_ps/admin/api-settings-p.php:279
8840
  msgid "Show / hide notes"
8841
  msgstr ""
8842
 
8843
+ #: core/lib/wpbc_all_translations.php:1706 inc/_ps/admin/api-settings-p.php:280
8844
  msgid "Check this box if you want to open notes section by default in Booking Listing page."
8845
  msgstr ""
8846
 
8847
+ #: core/lib/wpbc_all_translations.php:1707 inc/_ps/admin/api-settings-p.php:330
8848
  #: js/wpbc-gutenberg.js:1182
8849
  msgid "URL of page for customer bookings listing"
8850
  msgstr ""
8851
 
8852
+ #: core/lib/wpbc_all_translations.php:1708 inc/_ps/admin/api-settings-p.php:331
8853
  #, php-format
8854
  msgid ""
8855
  "Type URL for %svisitors%s to view own bookings. You must insert %s shortcode into this page."
8856
  msgstr ""
8857
 
8858
+ #: core/lib/wpbc_all_translations.php:1709 inc/gateways/page-gateways.php:105
8859
  msgid "Do not show payment form, after submit booking form"
8860
  msgstr ""
8861
 
8862
+ #: core/lib/wpbc_all_translations.php:1710 inc/gateways/page-gateways.php:106
8863
  msgid "Check this box if you want to show payment form only after sending payment request by email"
8864
  msgstr ""
8865
 
8866
+ #: core/lib/wpbc_all_translations.php:1711 inc/gateways/page-gateways.php:115
8867
  msgid "Auto send payment request after creation booking in admin panel"
8868
  msgstr ""
8869
 
8870
+ #: core/lib/wpbc_all_translations.php:1712 inc/gateways/page-gateways.php:116
8871
  msgid ""
8872
  "Check this box if you want automatically send payment request to visitor, if booking was made in "
8873
  "admin panel"
8874
  msgstr ""
8875
 
8876
+ #: core/lib/wpbc_all_translations.php:1713 inc/gateways/page-gateways.php:129
8877
  msgid "Show deposit and total booking cost together"
8878
  msgstr ""
8879
 
8880
+ #: core/lib/wpbc_all_translations.php:1714 inc/gateways/page-gateways.php:130
8881
  msgid ""
8882
  "Check this box if you want to show deposit amount and total booking cost, after submit of "
8883
  "booking."
8884
  msgstr ""
8885
 
8886
+ #: core/lib/wpbc_all_translations.php:1715 inc/gateways/page-gateways.php:142
8887
  msgid ""
8888
  "Please note, at admin panel for booking will be saved deposit cost and notes about deposit, do "
8889
  "not depend from the visitor choice of this payment. You need to check each such payment manually!"
8890
  msgstr ""
8891
 
8892
+ #: core/lib/wpbc_all_translations.php:1716 inc/gateways/page-gateways.php:153
8893
  msgid "Send email on cost changes"
8894
  msgstr ""
8895
 
8896
+ #: core/lib/wpbc_all_translations.php:1717 inc/gateways/page-gateways.php:154
8897
  msgid ""
8898
  "Check this box if you want to send booking modification email, if cost of booking was edited in "
8899
  "booking listing page."
8900
  msgstr ""
8901
 
8902
+ #: core/lib/wpbc_all_translations.php:1718 inc/gateways/page-gateways.php:589
8903
  #: inc/gateways/page-gateways.php:635
8904
  msgid "Payment Options"
8905
  msgstr ""
8906
 
8907
+ #: core/lib/wpbc_all_translations.php:1719 core/wpbc-js.php:141
8908
  msgid "Times:"
8909
  msgstr ""
8910
 
8911
+ #: core/lib/wpbc_all_translations.php:1720 inc/_bm/admin/page-cost-early-late-booking.php:74
8912
  msgid "Set Early / Late Booking"
8913
  msgstr ""
8914
 
8915
+ #: core/lib/wpbc_all_translations.php:1721 inc/_bm/admin/page-cost-early-late-booking.php:139
8916
  #, php-format
8917
  msgid "%sEarly booking discount%s for booking resource"
8918
  msgstr ""
8919
 
8920
+ #: core/lib/wpbc_all_translations.php:1722 inc/_bm/admin/page-cost-early-late-booking.php:157
8921
  #: inc/_bm/admin/page-cost-early-late-booking.php:166
8922
  #: inc/_bm/admin/page-cost-early-late-booking.php:185
8923
  #: inc/_bm/admin/page-cost-early-late-booking.php:358
8926
  msgid "Discount"
8927
  msgstr ""
8928
 
8929
+ #: core/lib/wpbc_all_translations.php:1723 inc/_bm/admin/page-cost-early-late-booking.php:223
8930
  #, php-format
8931
  msgid "Apply discount, only if difference between %stoday%s and %scheck in%s day %smore%s than"
8932
  msgstr ""
8933
 
8934
+ #: core/lib/wpbc_all_translations.php:1724 inc/_bm/admin/page-cost-early-late-booking.php:276
8935
  #: inc/_bm/admin/page-cost-early-late-booking.php:476
8936
  #, php-format
8937
  msgid "Apply discount, only if %scheck in%s day inside of this %sseason filter%s"
8938
  msgstr ""
8939
 
8940
+ #: core/lib/wpbc_all_translations.php:1725 inc/_bm/admin/page-cost-early-late-booking.php:340
8941
  #, php-format
8942
  msgid "%sLast minute booking discount%s for booking resource"
8943
  msgstr ""
8944
 
8945
+ #: core/lib/wpbc_all_translations.php:1726 inc/_bm/admin/page-cost-early-late-booking.php:424
8946
  #, php-format
8947
  msgid "Apply discount, only if difference between %stoday%s and %scheck in%s day %sless%s than"
8948
  msgstr ""
8949
 
8950
+ #: core/lib/wpbc_all_translations.php:1727 inc/_bm/admin/page-cost.php:222
8951
  msgid "Early / Late Booking"
8952
  msgstr ""
8953
 
8954
+ #: core/lib/wpbc_all_translations.php:1728 inc/_bm/admin/page-cost.php:231
8955
  msgid "Set Early / Late Booking Amount"
8956
  msgstr ""
8957
 
8958
+ #: core/lib/wpbc_all_translations.php:1729 inc/_bm/admin/page-cost.php:681
8959
  msgid "Set Early / Late booking discount"
8960
  msgstr ""
8961
 
8962
+ #: core/lib/wpbc_all_translations.php:1730 inc/_bm/admin/page-cost.php:682
8963
  msgid "Early / Late"
8964
  msgstr ""
8965
 
8966
+ #: core/lib/wpbc_all_translations.php:1731 js/wpbc-gutenberg.js:55
8967
  msgid "Show a booking form, availability calendar or other elements from Booking Calendar plugin."
8968
  msgstr ""
8969
 
8970
+ #: core/lib/wpbc_all_translations.php:1732 js/wpbc-gutenberg.js:140
8971
  msgid "Configure Booking Calendar Block"
8972
  msgstr ""
8973
 
8974
+ #: core/lib/wpbc_all_translations.php:1733 js/wpbc-gutenberg.js:290
8975
  msgid "Click to Preview Block"
8976
  msgstr ""
8977
 
8978
+ #: core/lib/wpbc_all_translations.php:1734 js/wpbc-gutenberg.js:565 js/wpbc-gutenberg.js:641
8979
  #: js/wpbc-gutenberg.js:825
8980
  msgid "Visible months number"
8981
  msgstr ""
8982
 
8983
+ #: core/lib/wpbc_all_translations.php:1735 js/wpbc-gutenberg.js:568 js/wpbc-gutenberg.js:644
8984
  #: js/wpbc-gutenberg.js:828
8985
  msgid "Start month"
8986
  msgstr ""
8987
 
8988
+ #: core/lib/wpbc_all_translations.php:1736 js/wpbc-gutenberg.js:571 js/wpbc-gutenberg.js:902
8989
  msgid "Custom booking form"
8990
  msgstr ""
8991
 
8992
+ #: core/lib/wpbc_all_translations.php:1737 js/wpbc-gutenberg.js:574 js/wpbc-gutenberg.js:647
8993
  #: js/wpbc-gutenberg.js:834
8994
  msgid "Unavailable dates from other booking resources"
8995
  msgstr ""
8996
 
8997
+ #: core/lib/wpbc_all_translations.php:1738 js/wpbc-gutenberg.js:608
8998
  msgid "Availability Calendar"
8999
  msgstr ""
9000
 
9001
+ #: core/lib/wpbc_all_translations.php:1740 js/wpbc-gutenberg.js:712 js/wpbc-gutenberg.js:813
 
 
 
 
9002
  msgid "Booking resource(s)"
9003
  msgstr ""
9004
 
9005
+ #: core/lib/wpbc_all_translations.php:1741 js/wpbc-gutenberg.js:749
9006
  msgid "Show from/to"
9007
  msgstr ""
9008
 
9009
+ #: core/lib/wpbc_all_translations.php:1742 js/wpbc-gutenberg.js:766
9010
  msgid "All booking resources"
9011
  msgstr ""
9012
 
9013
+ #: core/lib/wpbc_all_translations.php:1743 js/wpbc-gutenberg.js:783
9014
  msgid "Selection of Resources"
9015
  msgstr ""
9016
 
9017
+ #: core/lib/wpbc_all_translations.php:1744 js/wpbc-gutenberg.js:819
9018
  msgid "Selected booking resource (by default)"
9019
  msgstr ""
9020
 
9021
+ #: core/lib/wpbc_all_translations.php:1745 js/wpbc-gutenberg.js:822
9022
  msgid "Title of first option in list"
9023
  msgstr ""
9024
 
9025
+ #: core/lib/wpbc_all_translations.php:1746 js/wpbc-gutenberg.js:831
9026
  msgid "Custom booking form for all booking resources"
9027
  msgstr ""
9028
 
9029
+ #: core/lib/wpbc_all_translations.php:1747 js/wpbc-gutenberg.js:866
9030
  msgid "Booking Form (without calendar)"
9031
  msgstr ""
9032
 
9033
+ #: core/lib/wpbc_all_translations.php:1748 js/wpbc-gutenberg.js:899
9034
  msgid "Date for submit booking"
9035
  msgstr ""
9036
 
9037
+ #: core/lib/wpbc_all_translations.php:1749 js/wpbc-gutenberg.js:931
9038
  msgid "Search Availability form"
9039
  msgstr ""
9040
 
9041
+ #: core/lib/wpbc_all_translations.php:1750 js/wpbc-gutenberg.js:961
9042
  msgid "Show search results on other page"
9043
  msgstr ""
9044
 
9045
+ #: core/lib/wpbc_all_translations.php:1751 js/wpbc-gutenberg.js:964
9046
  msgid "Search results page must have this shortcode"
9047
  msgstr ""
9048
 
9049
+ #: core/lib/wpbc_all_translations.php:1752 js/wpbc-gutenberg.js:967
9050
  msgid "Show search results in the same page"
9051
  msgstr ""
9052
 
9053
+ #: core/lib/wpbc_all_translations.php:1753 js/wpbc-gutenberg.js:970
9054
  msgid "Search Results Title"
9055
  msgstr ""
9056
 
9057
+ #: core/lib/wpbc_all_translations.php:1754 js/wpbc-gutenberg.js:973
9058
  msgid "Title, if no search results"
9059
  msgstr ""
9060
 
9061
+ #: core/lib/wpbc_all_translations.php:1755 js/wpbc-gutenberg.js:976
9062
  msgid "Search in booking resources of WP users"
9063
  msgstr ""
9064
 
9065
+ #: core/lib/wpbc_all_translations.php:1756 js/wpbc-gutenberg.js:1030
9066
  msgid "Show search results on this page, after redirection from search form at other page."
9067
  msgstr ""
9068
 
9069
+ #: core/lib/wpbc_all_translations.php:1757 js/wpbc-gutenberg.js:1054
9070
  msgid "System Block"
9071
  msgstr ""
9072
 
9073
+ #: core/lib/wpbc_all_translations.php:1758 js/wpbc-gutenberg.js:1054
9074
  msgid "Booking Calendar Editing"
9075
  msgstr ""
9076
 
9077
+ #: core/lib/wpbc_all_translations.php:1759 js/wpbc-gutenberg.js:1085
9078
  msgid ""
9079
  "This block required for ability to edit, cancel the booking by visitor, who made the booking, or "
9080
  "for ability to show payment form, after sending payment request."
9081
  msgstr ""
9082
 
9083
+ #: core/lib/wpbc_all_translations.php:1760 js/wpbc-gutenberg.js:1090 js/wpbc-gutenberg.js:1176
9084
  msgid "Link to this page must be defined"
9085
  msgstr ""
9086
 
9087
+ #: core/lib/wpbc_all_translations.php:1761 js/wpbc-gutenberg.js:1094 js/wpbc-gutenberg.js:1180
9088
  msgid "at this option"
9089
  msgstr ""
9090
 
9091
+ #: core/lib/wpbc_all_translations.php:1762 js/wpbc-gutenberg.js:1104 js/wpbc-gutenberg.js:1190
9092
  msgid "You can not open this page directly. Please, use links in "
9093
  msgstr ""
9094
 
9095
+ #: core/lib/wpbc_all_translations.php:1763 js/wpbc-gutenberg.js:1112 js/wpbc-gutenberg.js:1198
9096
  msgid "If you open this page directly, then you will see this error"
9097
  msgstr ""
9098
 
9099
+ #: core/lib/wpbc_all_translations.php:1764 js/wpbc-gutenberg.js:1140
9100
  msgid "Customer Bookings Listing"
9101
  msgstr ""
9102
 
9103
+ #: core/lib/wpbc_all_translations.php:1765 js/wpbc-gutenberg.js:1171
9104
  msgid ""
9105
  "Visitors of your website, can view previous (own) bookings, by clicking on secret link in email, "
9106
  "which is sending after booking created."
9107
  msgstr ""
9108
 
9109
+ #: core/lib/wpbc_all_translations.php:1766 js/wpbc-gutenberg.js:1231
9110
  msgid "Show Info of Booking Resource"
9111
  msgstr ""
9112
 
9113
+ #: core/lib/wpbc_all_translations.php:1767 js/wpbc-gutenberg.js:1297
9114
  msgid "Click to edit"
9115
  msgstr ""
9116
 
9117
+ #: core/lib/wpbc_all_translations.php:1768 js/wpbc-gutenberg.js:1299
9118
  msgid "This is not real preview. Its configuration block of \"Booking Calendar\"."
9119
  msgstr ""
9120
 
9121
+ #: core/lib/wpbc_all_translations.php:1769 inc/_bl/admin/page-search.php:175
9122
  msgid "Sort search results by"
9123
  msgstr ""
9124
 
9125
+ #: core/lib/wpbc_all_translations.php:1770 inc/_bl/admin/page-search.php:176
9126
  msgid "Select type of sorting search results"
9127
  msgstr ""
9128
 
9129
+ #: core/lib/wpbc_all_translations.php:1771 inc/_bl/admin/page-search.php:180
9130
+ #: inc/_bl/admin/page-search.php:181
9131
  msgid "ID of booking resource"
9132
  msgstr ""
9133
 
9134
+ #: core/lib/wpbc_all_translations.php:1772 inc/_bl/admin/page-search.php:182
9135
+ #: inc/_bl/admin/page-search.php:183
9136
  msgid "Title of booking resource"
9137
  msgstr ""
9138
 
9139
+ #: core/lib/wpbc_all_translations.php:1773 inc/_bl/admin/page-search.php:184
9140
+ #: inc/_bl/admin/page-search.php:185
9141
  msgid "Priority field of booking resource"
9142
  msgstr ""
9143
 
9144
+ #: core/lib/wpbc_all_translations.php:1774 inc/_bl/admin/page-search.php:186
9145
+ #: inc/_bl/admin/page-search.php:187
9146
  msgid "Cost of booking resource"
9147
  msgstr ""
9148
 
9149
+ #: core/lib/wpbc_all_translations.php:1775 inc/_bl/admin/page-search.php:188
9150
+ #: inc/_bl/admin/page-search.php:189
9151
  msgid "Cost of booking"
9152
  msgstr ""
9153
 
9154
+ #: core/lib/wpbc_all_translations.php:1776 inc/_ps/admin/api-settings-p.php:260
9155
  msgid "Deactivate send email option at Add Booking page"
9156
  msgstr ""
9157
 
9158
+ #: core/lib/wpbc_all_translations.php:1777 inc/_ps/admin/api-settings-p.php:261
9159
  msgid ""
9160
  "Check this box if you want to deactivate by default option \"Send email\" at Add Booking page."
9161
  msgstr ""
9162
 
9163
+ #: core/lib/wpbc_all_translations.php:1778 inc/_ps/admin/api-settings-p.php:269
9164
  msgid "Deactivate send email option at Booking Listing page"
9165
  msgstr ""
9166
 
9167
+ #: core/lib/wpbc_all_translations.php:1779 inc/_ps/admin/api-settings-p.php:270
9168
  msgid ""
9169
  "Check this box if you want to deactivate by default option \"Send email\" at Booking Listing "
9170
  "page."
9171
  msgstr ""
9172
 
9173
+ #: core/lib/wpbc_all_translations.php:1780 inc/_ps/admin/api-settings-p.php:291
9174
  msgid "Force change booking resource for exist booking"
9175
  msgstr ""
9176
 
9177
+ #: core/lib/wpbc_all_translations.php:1781 inc/_ps/admin/api-settings-p.php:292
9178
  msgid ""
9179
  "Check this box if you want to skip checking availability of new booking resource during changing "
9180
  "booking resource of exist booking at Booking Listing page."
9181
  msgstr ""
9182
 
9183
+ #: core/lib/wpbc_all_translations.php:1782 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:337
9184
  msgid "Signature Key"
9185
  msgstr ""
9186
 
9187
+ #: core/lib/wpbc_all_translations.php:1783 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:339
9188
  msgid "Please enter the Signature Key, which you generated in the settings of Merchant Interface."
9189
  msgstr ""
9190
 
9191
+ #: core/lib/wpbc_all_translations.php:1784 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:341
9192
  msgid "To generate new Signature Key"
9193
  msgstr ""
9194
 
9195
+ #: core/lib/wpbc_all_translations.php:1785 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:342
9196
  #, php-format
9197
  msgid "Log on to the %sMerchant Interface%s"
9198
  msgstr ""
9199
 
9200
+ #: core/lib/wpbc_all_translations.php:1786 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:343
9201
  msgid ""
9202
  "In the merchant interface, go to Account > Settings > Security Settings > General Security "
9203
  "Settings > API Credential & Keys"
9204
  msgstr ""
9205
 
9206
+ #: core/lib/wpbc_all_translations.php:1787 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:344
9207
  msgid "Answer the secret question."
9208
  msgstr ""
9209
 
9210
+ #: core/lib/wpbc_all_translations.php:1788 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:345
9211
  msgid "Select New Signature Key. Your signature key is displayed as a string."
9212
  msgstr ""
9213
 
9214
+ #: core/lib/wpbc_all_translations.php:1789 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:346
9215
  msgid "Click Copy to Clipboard."
9216
  msgstr ""
9217
 
9218
+ #: core/lib/wpbc_all_translations.php:1790 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:347
9219
  #, php-format
9220
  msgid "For more information, please check %shere%s"
9221
  msgstr ""
9222
 
9223
+ #: core/lib/wpbc_all_translations.php:1791 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:872
9224
  #, php-format
9225
  msgid ""
9226
  "If you have no account on this system, please sign up for a %sdeveloper test account%s to obtain "
9227
  "an API Login ID and Signature Key. These keys will authenticate requests to the payment gateway."
9228
  msgstr ""
9229
+
9230
+ #: core/timeline/v2/wpbc-class-timeline_v2.php:2516
9231
+ msgid "Loading"
9232
+ msgstr ""
9233
+
9234
+ #: core/wpbc-emails.php:260
9235
+ #, php-format
9236
+ msgid "%s - inserting link to approve booking in 1 mouse click "
9237
+ msgstr ""
9238
+
9239
+ #: core/wpbc-emails.php:261
9240
+ #, php-format
9241
+ msgid "%s - inserting link to set booking as pending in 1 mouse click "
9242
+ msgstr ""
9243
+
9244
+ #: core/wpbc-emails.php:262
9245
+ #, php-format
9246
+ msgid "%s - inserting link for move booking to trash in 1 mouse click "
9247
+ msgstr ""
9248
+
9249
+ #: inc/_bl/admin/page-search.php:640
9250
+ msgid "Flex Search Form Template"
9251
+ msgstr ""
9252
+
9253
+ #: inc/_bl/admin/page-search.php:704
9254
+ msgid "Flex"
9255
+ msgstr ""
9256
+
9257
+ #: inc/_ps/hash/wpbc-hash-functions.php:101
9258
+ #, php-format
9259
+ msgid "Booking %s have been approved."
9260
+ msgstr ""
9261
+
9262
+ #: inc/_ps/hash/wpbc-hash-functions.php:129
9263
+ #, php-format
9264
+ msgid "Booking %s have been set as pending."
9265
+ msgstr ""
9266
+
9267
+ #: inc/_ps/hash/wpbc-hash-functions.php:157
9268
+ #, php-format
9269
+ msgid "Booking %s have been moved to trash."
9270
+ msgstr ""
9271
+
9272
+ #: inc/_ps/p-toolbar.php:70 inc/_ps/p-toolbar.php:71
9273
+ msgid "Find lost bookings"
9274
+ msgstr ""
9275
+
9276
+ #: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1070
9277
+ #, php-format
9278
+ msgid "require correct configuration of this option: %sURL to edit bookings%s"
9279
+ msgstr ""
9280
+
9281
+ #: inc/gateways/stripe_v3/wpbc-gw-stripe_v3.php:1112
9282
+ msgid "You may test your integration over HTTP. However, live integrations must use HTTPS."
9283
+ msgstr ""
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: booking calendar, booking system, availability calendar, events calendar,
5
  Requires at least: 4.0
6
  Requires PHP: 5.2.4
7
  Tested up to: 5.2
8
- Stable tag: 8.5.1.2
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -13,13 +13,13 @@ Booking Calendar - original 1st booking plugin for WordPress. Easily receive res
13
 
14
  == Description ==
15
 
16
- ####The original "**Booking Calendar**" plugin is the 1st booking system for WordPress, **downloaded over 1,000,000** times [since 2009](https://wpbookingcalendar.com/changelog/).
17
 
18
  **Booking Calendar** plugin enable awesome **booking system** for your site. Simply show availability and receive bookings for your property or service in easy to use booking system with clean and smooth interface.
19
 
20
  >[Homepage](https://wpbookingcalendar.com/ "Booking Calendar") | [Features Overview](https://wpbookingcalendar.com/overview/ "Features Overview of Booking Calendar") | [Premium Demos](https://wpbookingcalendar.com/demo/ "Live demos of PRO versions") | [HELP](https://wpbookingcalendar.com/help/ "Video Guides and Tutorials of Booking Calendar")
21
 
22
- Your website visitors can **check availability** of **property** *(like apartment, house, hotel room, etc.)* or any **service** you offer and **make a booking** in a minute. Different versions of WP Booking Calendar provide hundreds of features to complete almost any booking functionality for your business.
23
 
24
  [youtube https://www.youtube.com/embed/videoseries?list=PLabuVtqCh9dwLA5cpz1p2RrZOitLuVupR&rel=0]
25
  > Overview of Booking Calendar, start receive bookings in 60 seconds
@@ -27,6 +27,7 @@ Your website visitors can **check availability** of **property** *(like apartmen
27
  **Your Customers will be able to:**
28
 
29
  1. Select day(s) in calendar *(which is possible to customize for fitting to your site design)*
 
30
  1. Fill booking form fields *(which is possible to configure - change fields labels, activate/deactivate or set as required)*
31
  1. Submit a booking
32
 
@@ -50,11 +51,11 @@ Booking Calendar is built to work out of the box. Just activate it and insert bo
50
 
51
  **Make New Bookings on Client side.**
52
 
 
53
  - Make bookings in **friendly booking interface** - select the date(s) and fill booking form fields.
54
- - **New**. **Timeslots bookings** in Booking Calendar Free version, as well. Ability to receive simple bookings for specific timeslots (times during selected day).
55
  - **Prevent of double booking** for already reserved days (1 booking per 1 day) or **allow multiple (unlimited) bookings per same day** in same calendar.
56
- - **New** Set **pending days as available** in booking form. You can receive as many bookings as you need to and stop receiving bookings on specific date(s), when you approve some booking on specific date(s).
57
- - **New**. **Timeline** - Glance booking checking for a year (3 months or month), at front-end side of your website.
58
  - Booking form and calendar support fully **responsive design** that looks great on any device.
59
 
60
  **Manage your Bookings in Admin Panel.**
@@ -167,34 +168,34 @@ Please see [FAQ](https://wpbookingcalendar.com/faq/).
167
  = Support Languages =
168
 
169
  - English
170
- - Spanish [100% Completed]
171
- - Dutch [99% Completed]
172
- - Romanian [99% Completed]
173
- - Slovenian [99% Completed]
174
- - German [99% Completed]
 
 
175
  - Italian [97% Completed]
176
- - Finnish [97% Completed]
177
- - Danish [95% Completed]
178
- - Greek [95% Completed]
179
- - Bulgarian [95% Completed]
180
- - Hungarian [95% Completed]
181
- - Polish [95% Completed]
182
- - Turkish [95% Completed]
183
- - Swedish [94% Completed]
184
- - Chinese (Taiwan) [93% Completed]
185
- - Russian [91% Completed]
186
  - Portugal [90% Completed]
187
- - Galician (Spanish) [90% Completed]
188
- - Thai [90% Completed]
189
  - Norwegian [87% Completed]
190
  - Brazilian Portuguese [87% Completed]
191
  - Hebrew [87% Completed]
192
- - Ukrainian [87% Completed]
193
- - French [87% Completed]
194
  - Chinese [86% Completed]
195
- - Czech [74% Completed]
196
- - Slovak [74% Completed]
197
- - Croatian [74% Completed]
198
  - Catalan [73% Completed]
199
  - Arabic [73% Completed]
200
  - Belorussian [9% Completed]
@@ -226,8 +227,47 @@ Please see [Video Guides](https://wpbookingcalendar.com/help/).
226
  13. **Time Slots**. Simple configuration of **time slots** selection in booking form.
227
 
228
  == Changelog ==
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
229
  = 8.5.1.2 =
230
- * **Fix**. Issue in some WordPress installtions of showing several times 'Welcome to Booking Calendar' menu items in dashboard.
231
 
232
  = 8.5.1.1 =
233
  * **Fix**. Show options "Force import" (ability to import bookings without checking) and "Trash all imported bookings before new import" in all versions of plugin.
@@ -592,5 +632,5 @@ Please see [Video Guides](https://wpbookingcalendar.com/help/).
592
  For more information, see the [full release notes](https://wpbookingcalendar.com/changelog/).
593
 
594
  == Upgrade Notice ==
595
- = 8.5 =
596
- Improve of bookings importing. In paid versions highlighting code syntax in booking form. Stripe integration update.
5
  Requires at least: 4.0
6
  Requires PHP: 5.2.4
7
  Tested up to: 5.2
8
+ Stable tag: 8.6
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
13
 
14
  == Description ==
15
 
16
+ ####The original "**Booking Calendar**" plugin is the 1st booking system for WordPress, **downloaded over 1,300,000** times [since 2009](https://wpbookingcalendar.com/changelog/).
17
 
18
  **Booking Calendar** plugin enable awesome **booking system** for your site. Simply show availability and receive bookings for your property or service in easy to use booking system with clean and smooth interface.
19
 
20
  >[Homepage](https://wpbookingcalendar.com/ "Booking Calendar") | [Features Overview](https://wpbookingcalendar.com/overview/ "Features Overview of Booking Calendar") | [Premium Demos](https://wpbookingcalendar.com/demo/ "Live demos of PRO versions") | [HELP](https://wpbookingcalendar.com/help/ "Video Guides and Tutorials of Booking Calendar")
21
 
22
+ Your website visitors can **check availability** of **property** *(like apartment, house, hotel room, etc.)* or any **service** you offer and **make a booking** in a minute for a **full day(s)** or specific **timeslot** (in Booking Calendar Free version). Different versions of WP Booking Calendar provide hundreds of features to complete almost any booking functionality for your business.
23
 
24
  [youtube https://www.youtube.com/embed/videoseries?list=PLabuVtqCh9dwLA5cpz1p2RrZOitLuVupR&rel=0]
25
  > Overview of Booking Calendar, start receive bookings in 60 seconds
27
  **Your Customers will be able to:**
28
 
29
  1. Select day(s) in calendar *(which is possible to customize for fitting to your site design)*
30
+ 1. *Optional*. Select available **time-slot to book** in your booking form.
31
  1. Fill booking form fields *(which is possible to configure - change fields labels, activate/deactivate or set as required)*
32
  1. Submit a booking
33
 
51
 
52
  **Make New Bookings on Client side.**
53
 
54
+ - **Timeslots bookings** in Booking Calendar Free version, as well. Ability to receive simple bookings for specific time-slots (times during selected day).
55
  - Make bookings in **friendly booking interface** - select the date(s) and fill booking form fields.
 
56
  - **Prevent of double booking** for already reserved days (1 booking per 1 day) or **allow multiple (unlimited) bookings per same day** in same calendar.
57
+ - Set **pending days as available** in booking form. You can receive as many bookings as you need to and stop receiving bookings on specific date(s), when you approve some booking on specific date(s).
58
+ - **Timeline** - Glance booking checking for a year, month or day, at front-end side of your website.
59
  - Booking form and calendar support fully **responsive design** that looks great on any device.
60
 
61
  **Manage your Bookings in Admin Panel.**
168
  = Support Languages =
169
 
170
  - English
171
+ - French [100% Completed]
172
+ - Hungarian [99% Completed]
173
+ - Spanish [99% Completed]
174
+ - Dutch [98% Completed]
175
+ - Romanian [98% Completed]
176
+ - Slovenian [98% Completed]
177
+ - German [98% Completed]
178
  - Italian [97% Completed]
179
+ - Finnish [96% Completed]
180
+ - Danish [94% Completed]
181
+ - Greek [94% Completed]
182
+ - Bulgarian [94% Completed]
183
+ - Polish [94% Completed]
184
+ - Turkish [94% Completed]
185
+ - Swedish [93% Completed]
186
+ - Chinese (Taiwan) [92% Completed]
187
+ - Russian [90% Completed]
 
188
  - Portugal [90% Completed]
189
+ - Galician (Spanish) [89% Completed]
190
+ - Thai [89% Completed]
191
  - Norwegian [87% Completed]
192
  - Brazilian Portuguese [87% Completed]
193
  - Hebrew [87% Completed]
194
+ - Ukrainian [86% Completed]
 
195
  - Chinese [86% Completed]
196
+ - Czech [73% Completed]
197
+ - Slovak [73% Completed]
198
+ - Croatian [73% Completed]
199
  - Catalan [73% Completed]
200
  - Arabic [73% Completed]
201
  - Belorussian [9% Completed]
227
  13. **Time Slots**. Simple configuration of **time slots** selection in booking form.
228
 
229
  == Changelog ==
230
+ = 8.6 =
231
+ - Changes in **all** versions:
232
+ * **New**. Updated new interface of **Calendar Overview** in admin panel and **Timeline** at front-end side with new clean, flex design.
233
+ * **New**. **Timeline & Calendar Overview** - mobile friendly look.
234
+ * **New**. **Timeline & Calendar Overview** - nicely showing several bookings for the same date(s) (dividing day into several rows). For example during bookings for specific times, while showing Month Timeline view.
235
+ * **New**. **Timeline & Calendar Overview** - very handy hints for each day of booking, when mouse over specific booking day.
236
+ * **New**. **Timeline & Calendar Overview** - aggregated booking details title marked with different color for easy finding and checking how many bookings in specific date(s).
237
+ * **New**. **Timeline & Calendar Overview** - ability to restore old Timeline look at Booking > Settings General page in Timeline section.
238
+ * **New**. Settings section "Calendar Overview | Timeline" at Booking > Settings General page (8.5.2.20)
239
+ * **New**. Button "Empty Trash" at Booking Listing page in Action toolbar to completely delete All bookings from Trash (8.5.2.24)
240
+ * **Translation**. French translation [100% completed] by Philippe Nowak and Alain Pruvost
241
+ * **Translation**. Hungarian translation [99% completed] by Vincze István
242
+ * **Improvement** More clean colors for booking details at the Booking Listing page (8.5.2.5)
243
+ * **Improvement** Added **[add_to_google_cal_url]** - shortcode in "Approved booking" email template for fast manual adding of booking to Google Calendar (8.5.2.13)
244
+ * **Fix**. Issue of blocking entire day, if in booking form was used start time and end or duration of time fields and visitor use multiple days selection mode, and all start time options for specific day was booked. In multiple day selection mode its incorrect, because user can start days selection at available day, and finish selection with end time at this partially booked day, where no available start-time. Now system block such dates only during single day selection mode. (8.5.2.4)
245
+ * **Fix**. Disable send button, after submit booking, for prevent of several same bookings (8.5.2.7)
246
+ * **Fix**. Issue of not showing bookings that start from 'yesterday' date at Booking Listing page, when selecting 'Current dates' in Filter toolbar. (8.5.2.14)
247
+ * **Fix**. Issue of not showing bookings that start from 'today' date at Booking Listing page, when selecting 'Past dates' in Filter toolbar. (8.5.2.16)
248
+ * **Under Hub**. Added useful hook for Auto approve bookings only for specific booking resources: apply_filters( 'wpbc_get_booking_resources_arr_to_auto_approve', $booking_resources_to_approve );. Add code similar to this in your functions.php file in your theme, or in some other php file: function my_wpbc_get_booking_resources_arr_to_auto_approve( $resources_to_approve ) { $resources_to_approve = array( 1, 9, 12, 33 ); return $resources_to_approve; } add_filter( 'wpbc_get_booking_resources_arr_to_auto_approve', 'my_wpbc_get_booking_resources_arr_to_auto_approve' ); (8.5.2.27)
249
+ * **Under Hub**. Added useful hook for Google Adwords Conversion tracking: do_action( 'wpbc_track_new_booking', $params ); How to use this hook? Add code similar to this in your functions.php file in your theme, or in some other php file: add_action( 'wpbc_track_new_booking', 'my_booking_tracking' ); function my_booking_tracking( $params ){ ?><!-- Your Google Code for Booking Conversion Page --><?php } (8.5.2.25)
250
+ - Changes in **Personal / Business Small / Business Medium / Business Large / MultiUser** versions:
251
+ * **New**. Ability to **export only approved bookings into .ics feeds**. Available in Booking Manager plugin since 2.0.11 or newer update. (8.5.2.3)
252
+ * **New**. Do not update cost of booking, while editing this booking. (8.5.2.1) *(Business Small/Medium/Large, MultiUser)*
253
+ * **Improvement** New Flex Template for search form - more nice CSS style for search form and search results (8.5.2.11) *(Business Large, MultiUser)*
254
+ * **Fix**. Issue of not ability to submit the booking for additional calendar(s), if used booking form with several calendars and was not selected date(s) in main calendar (8.5.2.26) *(Business Medium/Large, MultiUser)*
255
+ * **Fix**. Issue of not showing booking resource in search availability results, if resource was booked for specific time-slot on specific date, where we search availability. (8.5.2.7) *(Business Large, MultiUser)*
256
+ * **Fix**. Issue of showing default booking resource instead of "All booking resources" for Regular user in MultiUser version at the Booking Listing and Calendar Overview pages, while was set show "All resources" at the Booking > Settings General page. (8.5.2.8) *(MultiUser)*
257
+ * **Fix**. Issue of prevent loading Stripe v.3 at some systems, where PHP version lower than PHP 5.4 (8.5.2.9) *(Business Small/Medium/Large, MultiUser)*
258
+ * **Fix**. Issue of "not auto selecting dates" during editing/cancellation of the booking by visitor, and not updating cost / dates hints in some systems. Conflict with "WPBakery Page Builder" plugin. (8.5.2.10) *(Personal, Business Small/Medium/Large, MultiUser)*
259
+ * **Fix**. Issue of not showing warning message about not checked checkbox, during validation required checkboxes that have several options and one option was checked. (8.5.2.12) *(Personal, Business Small/Medium/Large, MultiUser)*
260
+ * **Fix**. Issue of not submitting booking for additional calendars (if using several calendars and one booking form), if payment form does not show for such bookings (8.5.2.17) *(Business Medium/Large, MultiUser)*
261
+ * **Fix**. Issue of not showing as booked dates in calendar, that relative to change-over days, while activated "Allow unlimited bookings per same day(s)" option. (8.5.2.18) *(Business Large, MultiUser)*
262
+ * **Fix**. Issue of incorrectly showing additional cost hints for options, that was defined as percentage at the Booking > Resources > Advanced cost page. (8.5.2.21) *(Business Medium/Large, MultiUser)*
263
+ * **Fix**. Do not send emails, if was empty email field (its possible in situation, when in booking form several email fields for several persons), otherwise was showing error (8.5.2.22) *(Personal, Business Small/Medium/Large, MultiUser)*
264
+ * **Fix**. Start using "choozen" library for selection of booking resources just during page loading (because library loaded in head), instead of using after full page loaded. Its prevent issue of showing wide selectbox during page loading. (8.5.2.23)
265
+ * **Under Hub**. Ability to define rechecking cost with PayPal tax during response of PayPal IPN. Require of adding function like this: function my_wpbc_paypal_ipn_tax( $paypal_tax_percent ){ return 20; } add_filter( 'wpbc_paypal_ipn_tax', 'my_wpbc_paypal_ipn_tax' ); (8.5.2.2) *(Business Small/Medium/Large, MultiUser)*
266
+ * **Under Hub**. More easy find lost bookings (in booking resource(s) that have been deleted). Now, its show only lost bookings. Use link like this: http://server/wp-admin/admin.php?page=wpbc&wh_booking_type=lost ) (8.5.2.19) *(Personal, Business Small/Medium/Large, MultiUser)*
267
+ * **Under Hub**. Show only one payment system after booking process, if visitor selected payment system in booking form. Example: of shortcode for showing selection of payment forms: Select payment method: [select payment-method "All payment methods@@" "Stripe@@stripe_v3" "PayPal@@paypal" "Authorize.Net@@authorizenet" "Sage Pay@@sage" "Bank Transfer@@bank_transfer" "Pay in Cash@@pay_cash" "iPay88@@ipay88" "iDEAL@@ideal"] P.S. This solution was suggested by "Dan Brown". Thank you. (8.5.2.28) *(Business Small/Medium/Large, MultiUser)*
268
+
269
  = 8.5.1.2 =
270
+ * **Fix**. Issue in some WordPress installations of showing several times 'Welcome to Booking Calendar' menu items in dashboard.
271
 
272
  = 8.5.1.1 =
273
  * **Fix**. Show options "Force import" (ability to import bookings without checking) and "Trash all imported bookings before new import" in all versions of plugin.
632
  For more information, see the [full release notes](https://wpbookingcalendar.com/changelog/).
633
 
634
  == Upgrade Notice ==
635
+ = 8.6 =
636
+ New updated Timeline & Calendar Overview in clean flex design.
wpdev-booking.php CHANGED
@@ -1,59 +1,59 @@
1
- <?php
2
- /*
3
- Plugin Name: Booking Calendar
4
- 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: 8.5.1.2
11
- */
12
-
13
- /* Copyright 2009 - 2019 www.wpbookingcalendar.com (email: info@wpbookingcalendar.com),
14
-
15
- This program is free software: you can redistribute it and/or modify
16
- it under the terms of the GNU General Public License as published by
17
- the Free Software Foundation, either version 2 of the License, or
18
- (at your option) any later version.
19
-
20
- This program is distributed in the hope that it will be useful,
21
- but WITHOUT ANY WARRANTY; without even the implied warranty of
22
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23
- GNU General Public License for more details.
24
-
25
- You should have received a copy of the GNU General Public License
26
- along with this program. If not, see <http://www.gnu.org/licenses/>
27
- */
28
-
29
- if ( ! defined( 'ABSPATH' ) ) die( '<h3>Direct access to this file do not allow!</h3>' ); // Exit if accessed directly
30
-
31
-
32
- if ( ! defined( 'WP_BK_VERSION_NUM' ) ) { define( 'WP_BK_VERSION_NUM', '8.5.1.2' ); }
33
-
34
- ////////////////////////////////////////////////////////////////////////////////
35
- // PRIMARY URL CONSTANTS
36
- ////////////////////////////////////////////////////////////////////////////////
37
-
38
- // ..\home\siteurl\www\wp-content\plugins\plugin-name\wpdev-booking.php
39
- if ( ! defined( 'WPBC_FILE' ) ) define( 'WPBC_FILE', __FILE__ );
40
-
41
- // wpdev-booking.php
42
- if ( ! defined('WPBC_PLUGIN_FILENAME' ) ) define('WPBC_PLUGIN_FILENAME', basename( __FILE__ ) );
43
-
44
- // plugin-name
45
- if ( ! defined('WPBC_PLUGIN_DIRNAME' ) ) define('WPBC_PLUGIN_DIRNAME', plugin_basename( dirname( __FILE__ ) ) );
46
-
47
- // ..\home\siteurl\www\wp-content\plugins\plugin-name
48
- if ( ! defined('WPBC_PLUGIN_DIR' ) ) define('WPBC_PLUGIN_DIR', untrailingslashit( plugin_dir_path( WPBC_FILE ) ) );
49
-
50
- // http: //website.com/wp-content/plugins/plugin-name
51
- if ( ! defined('WPBC_PLUGIN_URL' ) ) define('WPBC_PLUGIN_URL', untrailingslashit( plugins_url( '', WPBC_FILE ) ) );
52
-
53
- if ( ! defined('WP_BK_MIN_WP_VERSION' ) ) define('WP_BK_MIN_WP_VERSION', '4.0'); //Minimum required WP version //FixIn: 7.0.1.6
54
-
55
- require_once WPBC_PLUGIN_DIR . '/core/wpbc.php';
56
-
57
- /* TODO:
58
- 1. Auto populate booking info from exist customers into the booking form at Booking > Add booking page.
59
  */
1
+ <?php
2
+ /*
3
+ Plugin Name: Booking Calendar
4
+ 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: 8.6
11
+ */
12
+
13
+ /* Copyright 2009 - 2019 www.wpbookingcalendar.com (email: info@wpbookingcalendar.com),
14
+
15
+ This program is free software: you can redistribute it and/or modify
16
+ it under the terms of the GNU General Public License as published by
17
+ the Free Software Foundation, either version 2 of the License, or
18
+ (at your option) any later version.
19
+
20
+ This program is distributed in the hope that it will be useful,
21
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
22
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23
+ GNU General Public License for more details.
24
+
25
+ You should have received a copy of the GNU General Public License
26
+ along with this program. If not, see <http://www.gnu.org/licenses/>
27
+ */
28
+
29
+ if ( ! defined( 'ABSPATH' ) ) die( '<h3>Direct access to this file do not allow!</h3>' ); // Exit if accessed directly
30
+
31
+
32
+ if ( ! defined( 'WP_BK_VERSION_NUM' ) ) { define( 'WP_BK_VERSION_NUM', '8.6' ); }
33
+
34
+ ////////////////////////////////////////////////////////////////////////////////
35
+ // PRIMARY URL CONSTANTS
36
+ ////////////////////////////////////////////////////////////////////////////////
37
+
38
+ // ..\home\siteurl\www\wp-content\plugins\plugin-name\wpdev-booking.php
39
+ if ( ! defined( 'WPBC_FILE' ) ) define( 'WPBC_FILE', __FILE__ );
40
+
41
+ // wpdev-booking.php
42
+ if ( ! defined('WPBC_PLUGIN_FILENAME' ) ) define('WPBC_PLUGIN_FILENAME', basename( __FILE__ ) );
43
+
44
+ // plugin-name
45
+ if ( ! defined('WPBC_PLUGIN_DIRNAME' ) ) define('WPBC_PLUGIN_DIRNAME', plugin_basename( dirname( __FILE__ ) ) );
46
+
47
+ // ..\home\siteurl\www\wp-content\plugins\plugin-name
48
+ if ( ! defined('WPBC_PLUGIN_DIR' ) ) define('WPBC_PLUGIN_DIR', untrailingslashit( plugin_dir_path( WPBC_FILE ) ) );
49
+
50
+ // http: //website.com/wp-content/plugins/plugin-name
51
+ if ( ! defined('WPBC_PLUGIN_URL' ) ) define('WPBC_PLUGIN_URL', untrailingslashit( plugins_url( '', WPBC_FILE ) ) );
52
+
53
+ if ( ! defined('WP_BK_MIN_WP_VERSION' ) ) define('WP_BK_MIN_WP_VERSION', '4.0'); //Minimum required WP version //FixIn: 7.0.1.6
54
+
55
+ require_once WPBC_PLUGIN_DIR . '/core/wpbc.php';
56
+
57
+ /* TODO:
58
+ 1. Auto populate booking info from exist customers into the booking form at Booking > Add booking page.
59
  */