Booking Calendar - Version 8.5.1

Version Description

  • Changes in all versions:
    • Translation Spanish translation [100% completed] by Enrique Ferrater
    • Improvement On error in filling booking form fields, scroll only to first field with error. ( 8.5.1.3 )
  • Changes in Personal / Business Small / Business Medium / Business Large / MultiUser versions:
    • New. Search imported UID (from external .ics feed) or by keyword in notes (which entered by user) at Booking Listing page by entering keyword in Filter toolbar. (8.5.1.1) (Personal Business Small/Medium/Large, MultiUser)
    • Fix. Issue of showing Stripe payment button (integration v.3) during payment request to visitor. (8.5.1.2) (Business Small/Medium/Large, MultiUser)
Download this release

Release Info

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

Code changes from version 8.4.6 to 8.5.1

Files changed (62) hide show
  1. core/admin/api-settings.php +22 -1
  2. core/admin/page-email-new-admin.php +15 -1
  3. core/admin/page-form-free.php +2 -1
  4. core/admin/page-ics-general.php +18 -0
  5. core/admin/page-settings.php +1 -1
  6. core/admin/wpbc-class-timeline.php +12 -9
  7. core/admin/wpbc-sql.php +5 -5
  8. core/admin/wpbc-toolbars.php +1 -1
  9. core/any/activation.php +8 -6
  10. core/any/css/admin-listing-table.css +4 -0
  11. core/any/js/admin-support.js +16 -7
  12. core/class/wpbc-class-welcome.php +171 -12
  13. core/lib/wpbc-ajax.php +7 -2
  14. core/lib/wpbc-booking-new.php +19 -13
  15. core/lib/wpbc_all_translations.php +34 -2
  16. core/lib/wpdev-booking-class.php +19 -7
  17. core/wpbc-activation.php +11 -2
  18. core/wpbc-constants.php +0 -1
  19. core/wpbc-css.php +4 -1
  20. core/wpbc-emails.php +6 -0
  21. core/wpbc-functions.php +127 -3
  22. core/wpbc-js.php +41 -29
  23. css/calendar.css +1 -1
  24. js/admin.js +10 -1
  25. js/client.js +30 -18
  26. js/wpbc-migrate.js +41 -0
  27. js/wpbc_times.js +60 -41
  28. languages/booking-ar_SA.mo +0 -0
  29. languages/booking-be_BY.mo +0 -0
  30. languages/booking-bg_BG.mo +0 -0
  31. languages/booking-ca.mo +0 -0
  32. languages/booking-cs_CZ.mo +0 -0
  33. languages/booking-da_DK.mo +0 -0
  34. languages/booking-de_DE.mo +0 -0
  35. languages/booking-el.mo +0 -0
  36. languages/booking-es_ES.mo +0 -0
  37. languages/booking-fi.mo +0 -0
  38. languages/booking-fr_FR.mo +0 -0
  39. languages/booking-gl_ES.mo +0 -0
  40. languages/booking-he_IL.mo +0 -0
  41. languages/booking-hr.mo +0 -0
  42. languages/booking-hu_HU.mo +0 -0
  43. languages/booking-it_IT.mo +0 -0
  44. languages/booking-nb_NO.mo +0 -0
  45. languages/booking-nl_NL.mo +0 -0
  46. languages/booking-pl_PL.mo +0 -0
  47. languages/booking-pt_BR.mo +0 -0
  48. languages/booking-pt_PT.mo +0 -0
  49. languages/booking-ro_RO.mo +0 -0
  50. languages/booking-ru_RU.mo +0 -0
  51. languages/booking-sk_SK.mo +0 -0
  52. languages/booking-sl_SI.mo +0 -0
  53. languages/booking-sv_SE.mo +0 -0
  54. languages/booking-th_TH.mo +0 -0
  55. languages/booking-tr_TR.mo +0 -0
  56. languages/booking-uk_UK.mo +0 -0
  57. languages/booking-zh_CN.mo +0 -0
  58. languages/booking-zh_TW.mo +0 -0
  59. languages/booking.pot +1494 -1334
  60. languages/wpdev-country-list.php +0 -1
  61. readme.txt +77 -32
  62. wpdev-booking.php +4 -1
core/admin/api-settings.php CHANGED
@@ -276,7 +276,20 @@ class WPBC_Settings_API_General extends WPBC_Settings_API {
276
  , 'label' => __('Check the box, if you want to use simple booking form customization from Free plugin version at Settings - Form page.' ,'booking')
277
  , 'description' => ''
278
  , 'group' => 'form'
279
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
280
  $this->fields['booking_is_use_captcha'] = array(
281
  'type' => 'checkbox'
282
  , 'default' => $default_options_values['booking_is_use_captcha'] //'Off'
@@ -1076,6 +1089,14 @@ class WPBC_Settings_API_General extends WPBC_Settings_API {
1076
  . 'Reset custom forms'
1077
  . '</a></center>';
1078
  }
 
 
 
 
 
 
 
 
1079
  }
1080
  if ( 0 ) { // ! wpbc_is_this_demo() ) {
1081
 
276
  , 'label' => __('Check the box, if you want to use simple booking form customization from Free plugin version at Settings - Form page.' ,'booking')
277
  , 'description' => ''
278
  , 'group' => 'form'
279
+ );
280
+ if ( class_exists( 'wpdev_bk_personal' ) ) //FixIn: 8.1.1.12
281
+ $this->fields['booking_is_use_codehighlighter_booking_form'] = array(
282
+ 'type' => 'checkbox'
283
+ , 'default' => $default_options_values['booking_is_use_codehighlighter_booking_form'] //'Off'
284
+ , 'title' => __('Syntax highlighter' ,'booking')
285
+ , 'label' => __('Check the box, if you want to use syntax highlighter during customization booking form.' ,'booking')
286
+ , 'description' => ''
287
+ , 'group' => 'form'
288
+ );
289
+
290
+
291
+
292
+
293
  $this->fields['booking_is_use_captcha'] = array(
294
  'type' => 'checkbox'
295
  , 'default' => $default_options_values['booking_is_use_captcha'] //'Off'
1089
  . 'Reset custom forms'
1090
  . '</a></center>';
1091
  }
1092
+
1093
+ //FixIn: 8.4.7.19
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
 
core/admin/page-email-new-admin.php CHANGED
@@ -493,6 +493,13 @@ class WPBC_Settings_Page_Email_NewAdmin extends WPBC_Page_Structure {
493
 
494
 
495
  public function in_page() { // P a g e t a g
 
 
 
 
 
 
 
496
  return 'wpbc-settings';
497
  }
498
 
@@ -1070,7 +1077,14 @@ function wpbc__get_replace_shortcodes__email_new_admin( $booking_id, $bktype, $f
1070
  // '<a href="' .
1071
  esc_url( wpbc_get_bookings_url() . '&view_mode=vm_listing&tab=actions&wh_booking_id=' . $booking_id )
1072
  // . '">' . __('here', 'booking') . '</a>'
1073
- );
 
 
 
 
 
 
 
1074
  $replace[ 'visitorbookingediturl' ] = apply_bk_filter( 'wpdev_booking_set_booking_edit_link_at_email', '[visitorbookingediturl]', $booking_id );
1075
  $replace[ 'visitorbookingslisting' ] = apply_bk_filter( 'wpdev_booking_set_booking_edit_link_at_email', '[visitorbookingslisting]', $booking_id ); //FixIn: 8.1.3.5.1
1076
  $replace[ 'visitorbookingcancelurl' ] = apply_bk_filter( 'wpdev_booking_set_booking_edit_link_at_email', '[visitorbookingcancelurl]', $booking_id );
493
 
494
 
495
  public function in_page() { // P a g e t a g
496
+ // if (
497
+ // ( ! wpbc_is_mu_user_can_be_here( 'only_super_admin' ) )
498
+ // && ( ! wpbc_is_current_user_have_this_role('contributor') )
499
+ // ){ // If this User not "super admin", then do not load this page at all
500
+ // return (string) rand(100000, 1000000);
501
+ // }
502
+
503
  return 'wpbc-settings';
504
  }
505
 
1077
  // '<a href="' .
1078
  esc_url( wpbc_get_bookings_url() . '&view_mode=vm_listing&tab=actions&wh_booking_id=' . $booking_id )
1079
  // . '">' . __('here', 'booking') . '</a>'
1080
+ );
1081
+
1082
+ if ( function_exists( 'wpbc_get_url_click2approve' ) ) {
1083
+ $replace['click2approve'] = wpbc_get_url_click2approve( $booking_id ); //FixIn: 8.4.7.25
1084
+ $replace['click2decline'] = wpbc_get_url_click2decline( $booking_id ); //FixIn: 8.4.7.25
1085
+ $replace['click2trash'] = wpbc_get_url_click2trash( $booking_id ); //FixIn: 8.4.7.25
1086
+ }
1087
+
1088
  $replace[ 'visitorbookingediturl' ] = apply_bk_filter( 'wpdev_booking_set_booking_edit_link_at_email', '[visitorbookingediturl]', $booking_id );
1089
  $replace[ 'visitorbookingslisting' ] = apply_bk_filter( 'wpdev_booking_set_booking_edit_link_at_email', '[visitorbookingslisting]', $booking_id ); //FixIn: 8.1.3.5.1
1090
  $replace[ 'visitorbookingcancelurl' ] = apply_bk_filter( 'wpdev_booking_set_booking_edit_link_at_email', '[visitorbookingcancelurl]', $booking_id );
core/admin/page-form-free.php CHANGED
@@ -482,7 +482,8 @@ class WPBC_Page_SettingsFormFieldsFree extends WPBC_Page_Structure {
482
  // Fields //////////////////////////////////////////////////
483
  if ( $form_field['type'] == 'text' )
484
  $my_form.=' <input type="text" name="'. $form_field['name'] . $my_boook_type.'" id="'. $form_field['name'] . $my_boook_type.'" class="input-xlarge'
485
- . ( ( $form_field['required'] == 'On' ) ? ' wpdev-validates-as-required' : '' )
 
486
  .'" />';
487
 
488
  if ( $form_field['type'] == 'email' )
482
  // Fields //////////////////////////////////////////////////
483
  if ( $form_field['type'] == 'text' )
484
  $my_form.=' <input type="text" name="'. $form_field['name'] . $my_boook_type.'" id="'. $form_field['name'] . $my_boook_type.'" class="input-xlarge'
485
+ . ( ( $form_field['required'] == 'On' ) ? ' wpdev-validates-as-required' : '' )
486
+ //. ( ( strpos( $form_field['name'], 'phone' ) !== false ) ? ' validate_as_digit' : '' )
487
  .'" />';
488
 
489
  if ( $form_field['type'] == 'email' )
core/admin/page-ics-general.php CHANGED
@@ -181,6 +181,24 @@ class WPBC_API_SettingsGeneralSync extends WPBC_Settings_API {
181
  , 'description' => ''
182
  , 'group' => 'import_advanced'
183
  );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
184
  }
185
 
186
  ////////////////////////////////////////////////////////////////////////
181
  , 'description' => ''
182
  , 'group' => 'import_advanced'
183
  );
184
+ //FixIn: 8.4.7.1
185
+ $this->fields['booking_ics_force_import'] = array(
186
+ 'type' => 'checkbox'
187
+ , 'default' => 'Off'
188
+ , 'title' => __('Force import', 'booking')
189
+ , 'label' => __('Import bookings without checking, if such bookings already have been imported.' ,'booking')
190
+ , 'description' => ''
191
+ , 'group' => 'import_advanced'
192
+ );
193
+ //FixIn: 8.4.7.12
194
+ $this->fields['booking_ics_force_trash_before_import'] = array(
195
+ 'type' => 'checkbox'
196
+ , 'default' => 'Off'
197
+ , 'title' => __('Trash all imported bookings before new import', 'booking') . ' ' . '[Experimental Feature]'
198
+ , 'label' => __('Move all previously imported bookings to trash before new import bookings. Its can resolve issue of updating deleted and edited events in external sources. Its work only, if you are using one source (.ics feed) for importing into specific booking resource!' ,'booking')
199
+ , 'description' => ''
200
+ , 'group' => 'import_advanced'
201
+ );
202
  }
203
 
204
  ////////////////////////////////////////////////////////////////////////
core/admin/page-settings.php CHANGED
@@ -34,7 +34,7 @@ class WPBC_Page_SettingsGeneral extends WPBC_Page_Structure {
34
  ) { // If tab was not selected or selected default, then redirect it to the "form" tab.
35
  $_REQUEST['tab'] = 'form';
36
  }
37
-
38
  }
39
  else {
40
  parent::__construct();
34
  ) { // If tab was not selected or selected default, then redirect it to the "form" tab.
35
  $_REQUEST['tab'] = 'form';
36
  }
37
+
38
  }
39
  else {
40
  parent::__construct();
core/admin/wpbc-class-timeline.php CHANGED
@@ -230,6 +230,8 @@ class WPBC_Timeline {
230
  */
231
  public function ajax_init( $attr ) {
232
 
 
 
233
  $this->is_frontend = (bool) $attr['is_frontend'];;
234
 
235
  //Ovverride some parameters
@@ -411,7 +413,7 @@ class WPBC_Timeline {
411
 
412
 
413
  // Get booking data
414
- $bk_listing = wpbc_get_bookings_objects( $args );
415
 
416
  $this->bookings = $bk_listing['bookings'];
417
  $this->booking_types = $bk_listing['resources'];
@@ -2013,10 +2015,10 @@ class WPBC_Timeline {
2013
  ?>
2014
  <tr class="wpbc_tl_table_row_bookings">
2015
  <td class="wpbc_tl_collumn_1"><?php
2016
-
2017
  // Title in first collumn of the each row in calendar //////
2018
  if ( ( $is_matrix ) && ( isset( $bk_resources_id[$d_inc] ) ) && (isset( $booking_types[$bk_resources_id[$d_inc]] )) ) { // Matrix - resource titles
2019
-
2020
  $resource_value = $booking_types[$bk_resources_id[$d_inc]];
2021
  $bk_admin_url = wpbc_get_params_in_url( wpbc_get_bookings_url( false, false ), array( 'wh_booking_type' ) );
2022
 
@@ -2029,7 +2031,7 @@ class WPBC_Timeline {
2029
 
2030
  ?><a href="<?php echo $this->options['resource_link'][ $resource_value->booking_type_id ]; ?>" ><?php //FixIn: 7.2.1.14
2031
  }
2032
-
2033
  echo apply_bk_filter('wpdev_check_for_active_language', $resource_value->title ); //FixIn: 7.0.1.11
2034
 
2035
  if ( ( isset( $this->options['resource_link'] ) ) && ( isset( $this->options['resource_link'][ $resource_value->booking_type_id ] ) ) ){ //FixIn: 7.0.1.50
@@ -2194,13 +2196,14 @@ class WPBC_Timeline {
2194
  // Trash
2195
  //$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>';
2196
  //FixIn: 6.1.1.10
2197
- $is_trash = $bookings[$bk_id]->trash;
 
2198
  // Trash
2199
- $header_title .= '<a class=\'button button-secondary trash_bk_link'.(( $is_trash)?' hidden_items ':'').'\' href=\'javascript:;\' onclick=\'javascript:trash__restore_booking(1,' . $bk_id . ', ' . $this->current_user_id . ', &quot;' . wpbc_get_booking_locale() . '&quot; , 1 );\' ><i class=\'glyphicon glyphicon-trash\'></i></a>';
2200
  // Restore
2201
  $header_title .= '<a class=\'button button-secondary restore_bk_link'.((!$is_trash)?' hidden_items ':'').'\' 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>';
2202
  // Delete
2203
- $header_title .= '<a class=\'button button-secondary delete_bk_link'.((!$is_trash)?' hidden_items ':'').'\' href=\'javascript:;\' onclick=\'javascript:delete_booking(' . $bk_id . ', ' . $this->current_user_id . ', &quot;' . wpbc_get_booking_locale() . '&quot; , 1 );\' ><i class=\'glyphicon glyphicon-remove\'></i></a>';
2204
  //End FixIn: 6.1.1.10
2205
 
2206
  // Approve | Decline
@@ -2291,7 +2294,7 @@ class WPBC_Timeline {
2291
 
2292
  }
2293
  $content_text .= '</div>';
2294
-
2295
  if ( ( class_exists( 'wpdev_bk_biz_s' ) ) ) { //&& ( ! $this->is_frontend ) ){
2296
 
2297
  //FixIn: 8.3.3.9
@@ -2323,7 +2326,7 @@ class WPBC_Timeline {
2323
  $content_text .= '<div class=\'clear\'></div>'; // New line
2324
 
2325
 
2326
- // Notes
2327
  if ( ! empty( $bookings[$bk_id]->remark ) ) {
2328
  $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
2329
  $content_text .= '<div class=\'clear\'></div>'; // New line
230
  */
231
  public function ajax_init( $attr ) {
232
 
233
+ if ( ! defined( 'WPBC_TIMELINE_AJAX' ) ) { define( 'WPBC_TIMELINE_AJAX', true ); } //FixIn: 8.4.7.13
234
+
235
  $this->is_frontend = (bool) $attr['is_frontend'];;
236
 
237
  //Ovverride some parameters
413
 
414
 
415
  // Get booking data
416
+ $bk_listing = wpbc_get_bookings_objects( $args );
417
 
418
  $this->bookings = $bk_listing['bookings'];
419
  $this->booking_types = $bk_listing['resources'];
2015
  ?>
2016
  <tr class="wpbc_tl_table_row_bookings">
2017
  <td class="wpbc_tl_collumn_1"><?php
2018
+
2019
  // Title in first collumn of the each row in calendar //////
2020
  if ( ( $is_matrix ) && ( isset( $bk_resources_id[$d_inc] ) ) && (isset( $booking_types[$bk_resources_id[$d_inc]] )) ) { // Matrix - resource titles
2021
+
2022
  $resource_value = $booking_types[$bk_resources_id[$d_inc]];
2023
  $bk_admin_url = wpbc_get_params_in_url( wpbc_get_bookings_url( false, false ), array( 'wh_booking_type' ) );
2024
 
2031
 
2032
  ?><a href="<?php echo $this->options['resource_link'][ $resource_value->booking_type_id ]; ?>" ><?php //FixIn: 7.2.1.14
2033
  }
2034
+
2035
  echo apply_bk_filter('wpdev_check_for_active_language', $resource_value->title ); //FixIn: 7.0.1.11
2036
 
2037
  if ( ( isset( $this->options['resource_link'] ) ) && ( isset( $this->options['resource_link'][ $resource_value->booking_type_id ] ) ) ){ //FixIn: 7.0.1.50
2196
  // Trash
2197
  //$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>';
2198
  //FixIn: 6.1.1.10
2199
+ $is_trash = $bookings[$bk_id]->trash;
2200
+
2201
  // Trash
2202
+ $header_title .= '<a class=\'button button-secondary trash_bk_link'.(( $is_trash)?' hidden_items ':'').'\' 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
2203
  // Restore
2204
  $header_title .= '<a class=\'button button-secondary restore_bk_link'.((!$is_trash)?' hidden_items ':'').'\' 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>';
2205
  // Delete
2206
+ $header_title .= '<a class=\'button button-secondary delete_bk_link'.((!$is_trash)?' hidden_items ':'').'\' 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
2207
  //End FixIn: 6.1.1.10
2208
 
2209
  // Approve | Decline
2294
 
2295
  }
2296
  $content_text .= '</div>';
2297
+
2298
  if ( ( class_exists( 'wpdev_bk_biz_s' ) ) ) { //&& ( ! $this->is_frontend ) ){
2299
 
2300
  //FixIn: 8.3.3.9
2326
  $content_text .= '<div class=\'clear\'></div>'; // New line
2327
 
2328
 
2329
+ // Notes
2330
  if ( ! empty( $bookings[$bk_id]->remark ) ) {
2331
  $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
2332
  $content_text .= '<div class=\'clear\'></div>'; // New line
core/admin/wpbc-sql.php CHANGED
@@ -661,7 +661,7 @@ 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' ];
@@ -1028,7 +1028,7 @@ function wpbc_get_sql_for_booking_listing( $args ){
1028
 
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
@@ -1064,7 +1064,7 @@ function wpbc_set_sql_where_for_dates( $wh_booking_date, $wh_booking_date2, $pre
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 ;
1067
- $sql_where .= $and_pre."( ".$pref."booking_date >= ( CURDATE() + INTERVAL '00:00:01' HOUR_SECOND ) ) ".$and_suf ;
1068
 
1069
 
1070
  } else if ($wh_booking_date === '2') { // Previous
@@ -1130,8 +1130,8 @@ function wpbc_set_sql_where_for_modification_date( $wh_modification_date, $wh_mo
1130
  else { $and_pre = ''; $and_suf = ' AND '; }
1131
 
1132
  if ($wh_modification_date === '1') { // Today
1133
- $sql_where = $and_pre."( ".$pref."modification_date <= ( CURDATE() + INTERVAL 1 DAY ) ) ".$and_suf ;
1134
- $sql_where .= $and_pre."( ".$pref."modification_date >= ( CURDATE() - INTERVAL 1 DAY ) ) ".$and_suf ;
1135
 
1136
  } else if ($wh_modification_date === '3') { // All
1137
  $sql_where = '';
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' ];
1028
 
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
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 ;
1067
+ $sql_where .= $and_pre."( ".$pref."booking_date >= ( CURDATE() - INTERVAL '00:00:01' HOUR_SECOND ) ) ".$and_suf ; //FixIn: 8.4.7.21
1068
 
1069
 
1070
  } else if ($wh_booking_date === '2') { // Previous
1130
  else { $and_pre = ''; $and_suf = ' AND '; }
1131
 
1132
  if ($wh_modification_date === '1') { // Today
1133
+ $sql_where = $and_pre."( ".$pref."modification_date <= ( CURDATE() + INTERVAL '23:59:59' HOUR_SECOND ) ) ".$and_suf ; //FixIn: 8.4.7.22
1134
+ $sql_where .= $and_pre."( ".$pref."modification_date >= ( CURDATE() - INTERVAL '00:00:01' HOUR_SECOND ) ) ".$and_suf ; //FixIn: 8.4.7.22
1135
 
1136
  } else if ($wh_modification_date === '3') { // All
1137
  $sql_where = '';
core/admin/wpbc-toolbars.php CHANGED
@@ -1921,7 +1921,7 @@ function wpbc_btn_add_booking_to_google_calendar( $booking_data, $button_attr =
1921
 
1922
  // Dates.
1923
 
1924
- $check_in_timestamp = $check_in_timestamp = '';
1925
  if ( ! empty( $booking_data[ 'dates_short' ] ) ) {
1926
 
1927
 
1921
 
1922
  // Dates.
1923
 
1924
+ $check_in_timestamp = $check_out_timestamp = '';
1925
  if ( ! empty( $booking_data[ 'dates_short' ] ) ) {
1926
 
1927
 
core/any/activation.php CHANGED
@@ -240,9 +240,10 @@ abstract class WPBC_Install {
240
  /** Run Activate */
241
  public function wpbc_activate() {
242
 
243
- if ( ( function_exists( 'set_time_limit' ) ) && // Try to extend script running to 15 minutes
244
- ( ! in_array( ini_get( 'safe_mode' ), array( '1', 'On' ) ) ) // It's doesn't work, if PHP have SAFE MODE ON
245
- ) set_time_limit( 900 );
 
246
 
247
  ini_set('memory_limit','256M'); //FixIn:6.1.1.15
248
  ini_set('max_execution_time', 300); //FixIn: 7.0.1.57
@@ -260,9 +261,10 @@ abstract class WPBC_Install {
260
  /** Run Deactivate */
261
  public function wpbc_deactivate() {
262
 
263
- if ( ( function_exists( 'set_time_limit' ) ) && // Try to extend script running to 15 minutes
264
- ( ! in_array( ini_get( 'safe_mode' ), array( '1', 'On' ) ) ) // It's doesn't work, if PHP have SAFE MODE ON
265
- ) set_time_limit( 900 );
 
266
 
267
  ini_set('memory_limit','256M'); //FixIn:6.1.1.15
268
  ini_set('max_execution_time', 300); //FixIn: 7.0.1.57
240
  /** Run Activate */
241
  public function wpbc_activate() {
242
 
243
+ //FixIn: 8.4.7.24
244
+ if ( function_exists( 'set_time_limit' ) ) {
245
+ set_time_limit( 900 );
246
+ }
247
 
248
  ini_set('memory_limit','256M'); //FixIn:6.1.1.15
249
  ini_set('max_execution_time', 300); //FixIn: 7.0.1.57
261
  /** Run Deactivate */
262
  public function wpbc_deactivate() {
263
 
264
+ //FixIn: 8.4.7.24
265
+ if ( function_exists( 'set_time_limit' ) ) {
266
+ set_time_limit( 900 );
267
+ }
268
 
269
  ini_set('memory_limit','256M'); //FixIn:6.1.1.15
270
  ini_set('max_execution_time', 300); //FixIn: 7.0.1.57
core/any/css/admin-listing-table.css CHANGED
@@ -166,6 +166,10 @@
166
  .wpbc-listing-collumn .payment-label-error {
167
  background-color: #FA773D !important;
168
  }
 
 
 
 
169
 
170
  /* Pagination */
171
  .wpbc-pagination .button{
166
  .wpbc-listing-collumn .payment-label-error {
167
  background-color: #FA773D !important;
168
  }
169
+ /* //FixIn: 8.4.7.2 */
170
+ .wpbc-listing-collumn .label-imported {
171
+ background-color: #81A6C6 !important;
172
+ }
173
 
174
  /* Pagination */
175
  .wpbc-pagination .button{
core/any/js/admin-support.js CHANGED
@@ -673,16 +673,25 @@ jQuery(window).load(function(){
673
  * @param {string} editor_textarea_content - Content
674
  */
675
  function wpbc_reset_wp_editor_content( editor_textarea_id, editor_textarea_content ) {
676
- if( typeof tinymce != "undefined" ) {
677
- var editor = tinymce.get( editor_textarea_id );
678
- if( editor && editor instanceof tinymce.Editor ) {
679
- editor.setContent( editor_textarea_content );
680
- editor.save( { no_events: true } );
 
 
 
 
 
 
 
 
 
 
 
681
  } else {
682
  jQuery( '#' + editor_textarea_id ).val( editor_textarea_content );
683
  }
684
- } else {
685
- jQuery( '#' + editor_textarea_id ).val( editor_textarea_content );
686
  }
687
  }
688
 
673
  * @param {string} editor_textarea_content - Content
674
  */
675
  function wpbc_reset_wp_editor_content( editor_textarea_id, editor_textarea_content ) {
676
+
677
+ //FixIn: 8.4.7.18
678
+
679
+ if ( (typeof WPBC_CM !== 'undefined') && ( WPBC_CM.is_defined( '#' + editor_textarea_id ) ) ){
680
+
681
+ WPBC_CM.set_codemirror_value( '#' + editor_textarea_id , editor_textarea_content );
682
+ } else {
683
+
684
+ if( typeof tinymce != "undefined" ) {
685
+ var editor = tinymce.get( editor_textarea_id );
686
+ if( editor && editor instanceof tinymce.Editor ) {
687
+ editor.setContent( editor_textarea_content );
688
+ editor.save( { no_events: true } );
689
+ } else {
690
+ jQuery( '#' + editor_textarea_id ).val( editor_textarea_content );
691
+ }
692
  } else {
693
  jQuery( '#' + editor_textarea_id ).val( editor_textarea_content );
694
  }
 
 
695
  }
696
  }
697
 
core/class/wpbc-class-welcome.php CHANGED
@@ -30,6 +30,29 @@ class WPBC_Welcome {
30
  private function css() {
31
 
32
  ?><style type="text/css">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
33
  /* Welcome Page ***************************************************************/
34
  .wpbc-welcome-page .about-text {
35
  margin-right:0px;
@@ -347,6 +370,27 @@ class WPBC_Welcome {
347
 
348
  ?>
349
  <style type="text/css">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
350
  .wpbc-changelog-list ul {
351
  list-style: outside;
352
  }
@@ -391,23 +435,138 @@ class WPBC_Welcome {
391
  <?php
392
 
393
  $this->maintence_section();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
394
  //
 
 
 
 
 
395
  ////////////////////////////////////////////////////////////////////////////////////////////////////////////
396
  // 8.4
397
  ////////////////////////////////////////////////////////////////////////////////////////////////////////////
398
  ?>
399
- <h2 style='font-size: 2.1em;'>What's New in Booking Calendar <span style="font-size: 1.1em;font-weight: 600;font-family: Consolas,Monaco,monospace;padding-left: 10px;color: #5F5F5F;"
400
- >8.4</span></h2><?php
401
- $this->show_separator();
402
- // <!--iframe width="560" height="315" src="https://www.youtube.com/embed/kLrI7zqKeQQ?rel=0" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe-->
403
- ?><div style="text-align: center;margin-top:2em;"><iframe width="560" height="315" src="https://www.youtube.com/embed/rpg1kApZCdw?rel=0&amp;start=0&amp;rel=0" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe></div><?php
404
- ?><div style="width:100%;font-size:0.8em;margin:2em 1em;text-align: center;">
405
- <?php
406
- printf( 'For more information about current update, see %srelease notes%s',
407
- '<a class="" href="https://wpbookingcalendar.com/changelog/" target="_blank">', '</a>.' );
408
- ?>
409
- </div><?php
410
- //
 
 
 
 
 
 
 
 
 
411
  ////////////////////////////////////////////////////////////////////////////////////////////////////////////
412
  // 8.3
413
  ////////////////////////////////////////////////////////////////////////////////////////////////////////////
30
  private function css() {
31
 
32
  ?><style type="text/css">
33
+ .feature-section.three-col,
34
+ .feature-section.two-col {
35
+ display: flex;
36
+ flex-direction: row;
37
+ justify-content: space-between;
38
+ align-items: flex-start;
39
+ }
40
+ .feature-section.two-col .col.col-1{
41
+ width:100%;
42
+ }
43
+ .feature-section.two-col .col.col-2{
44
+ width: 70%;
45
+ padding: 0 0 0 7%;
46
+ box-sizing: border-box;
47
+ }
48
+ @media (max-width: 782px) {
49
+ /* iPad mini and all iPhones and other Mobile Devices */
50
+ .feature-section.three-col,
51
+ .feature-section.two-col {
52
+ display: block;
53
+ }
54
+ }
55
+
56
  /* Welcome Page ***************************************************************/
57
  .wpbc-welcome-page .about-text {
58
  margin-right:0px;
370
 
371
  ?>
372
  <style type="text/css">
373
+ .feature-section.two-col {
374
+ display: flex;
375
+ flex-direction: row;
376
+ justify-content: space-between;
377
+ align-items: flex-start;
378
+ }
379
+ .feature-section.two-col .col.col-1{
380
+ width:100%;
381
+ }
382
+ .feature-section.two-col .col.col-2{
383
+ width: 70%;
384
+ padding: 0 0 0 7%;
385
+ box-sizing: border-box;
386
+ }
387
+ @media (max-width: 782px) {
388
+ /* iPad mini and all iPhones and other Mobile Devices */
389
+ .feature-section.two-col {
390
+ display: block;
391
+ }
392
+ }
393
+
394
  .wpbc-changelog-list ul {
395
  list-style: outside;
396
  }
435
  <?php
436
 
437
  $this->maintence_section();
438
+
439
+ ////////////////////////////////////////////////////////////////////////////////////////////////////////////
440
+ // 8.5
441
+ ////////////////////////////////////////////////////////////////////////////////////////////////////////////
442
+ ?>
443
+ <h2 style='font-size: 2.1em;'>What's New in Booking Calendar <span style="font-size: 1.1em;
444
+ font-weight: 600;font-family: Consolas,Monaco,monospace;padding-left: 10px;color: #5F5F5F;">8.5</span></h2><?php
445
+ $this->show_separator();
446
+
447
+ // $this->show_col_section( array(
448
+ //
449
+ // array( 'h4' => wpbc_recheck_strong_symbols( 'Different structures of booking forms' ),
450
+ // 'text' => wpbc_recheck_strong_symbols( '<ul style="list-style: none;padding: 5px;margin:0;">'
451
+ // . '<li>' . 'Ability to define different structures of booking forms at Booking > Settings > Form page' . '</li>'
452
+ // . '<li style="list-style: disc inside;">' . '**Vertical** - form under calendar' . '</li>'
453
+ // . '<li style="list-style: disc inside;">' . '**Side by side** - form at right side of calendar' . '</li>'
454
+ // . '<li style="list-style: disc inside;">' . '**Centered** - form and calendar are centered' . '</li>'
455
+ // . '<li style="list-style: disc inside;">' . '**Dark** - form for dark background' . '</li>'
456
+ // . '</ul>' )
457
+ //
458
+ // . '<span style="font-size:0.85em;">' .wpbc_recheck_strong_symbols( 'Available in Booking Calendar **Free** version' ) . '</span>'
459
+ //
460
+ // )
461
+ // //, array( 'img' => '8.1/booking-form-structure-2.png', 'img_style'=>'margin-top:20px;width: 85%;' )
462
+ // )
463
+ // );
464
+
465
+ $this->show_col_section( array(
466
+ array( 'text' =>
467
+ '<h4>' .wpbc_recheck_strong_symbols( 'New' ) . '</h4>'
468
+ . '<ul style="list-style: disc outside;padding: 20px;margin:0;">'
469
+ . '<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>'
470
+ . '<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>'
471
+ . '<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>'
472
+ . '<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>'
473
+ . '<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>'
474
+ . '<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>'
475
+ . '<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>'
476
+ . '<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>'
477
+ . '<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>'
478
+ . '</ul>'
479
+
480
+ . '<h4>' .wpbc_recheck_strong_symbols( 'Improvement' ) . '</h4>'
481
+ . '<ul style="list-style: disc outside;padding: 20px;margin:0;">'
482
+ . '<li>' . wpbc_recheck_strong_symbols( '**Improvement** Changed color of "Imported" label for bookings in Booking Listing page (8.4.7.2)' ) . '</li>'
483
+ . '<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>'
484
+ . '<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>'
485
+ . '<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>'
486
+
487
+ . '<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>'
488
+ . '<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>'
489
+ . '<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>'
490
+ . '</ul>'
491
+
492
+ )
493
+ , array( 'text' =>
494
+ '<h4>' .wpbc_recheck_strong_symbols( 'Translation' ) . '</h4>'
495
+ . '<ul style="list-style: disc outside;padding: 20px;margin:0;">'
496
+
497
+ . '<li>' . wpbc_recheck_strong_symbols( 'New Romanian translation by Silviu Nita' ) . '</li>'
498
+ . '<li>' . wpbc_recheck_strong_symbols( 'Update of Slovenian translation by Klemen Gaber' ) . '</li>'
499
+ . '<li>' . wpbc_recheck_strong_symbols( 'Update of Dutch translation by Boris Hoekmeijer' ) . '</li>'
500
+ . '<li>' . wpbc_recheck_strong_symbols( 'Update of German translation by Dominik Ziegler' ) . '</li>'
501
+ . '</ul>'
502
+
503
+ . '<h4>' .wpbc_recheck_strong_symbols( 'Fixes' ) . '</h4>'
504
+ . '<ul style="list-style: disc outside;padding: 20px;margin:0;">'
505
+ . '<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>'
506
+ . '<li>' . wpbc_recheck_strong_symbols( '**Fix**. Issue of incorrectly showing months scroll in calendar at some iPads (8.4.7.17)' ) . '</li>'
507
+ . '<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>'
508
+ . '<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>'
509
+ . '<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>'
510
+
511
+ . '<li>' . wpbc_recheck_strong_symbols( '**Fix**. Warning: Invalid argument supplied for foreach() in ..\multiuser.php on line 558 (8.4.7.4) *(MultiUser)*' ) . '</li>'
512
+ . '<li>' . wpbc_recheck_strong_symbols( '**Fix**. Showing of users in Booking > Settings > Users page in WordPress MU installation (8.4.7.5) *(MultiUser)*' ) . '</li>'
513
+ . '<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>'
514
+ . '<li>' . wpbc_recheck_strong_symbols( '**Fix**. Translation issue of Completed payment status (8.4.7.11) *(Business Small/Medium/Large, MultiUser)*' ) . '</li>'
515
+ . '<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>'
516
+
517
+ . '<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>'
518
+ . '<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>'
519
+ . '<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>'
520
+
521
+ . '</ul>'
522
+ )
523
+ )
524
+ );
525
+ $this->show_separator();
526
+
527
+ // $this->show_col_section( array(
528
+ //
529
+ // //array( 'img' => '8.1/booking-calendar-stripe-gateway-2.png', 'img_style'=>'margin-top:20px;width: 85%;' ),
530
+ //
531
+ // array( 'h4' => wpbc_recheck_strong_symbols( '**Stripe** payment system integration' ),
532
+ // 'text' => wpbc_recheck_strong_symbols( '<ul style="list-style: none;padding: 5px;margin:0;">'
533
+ // . '<li>' . 'Integration with **<a target="_blank" href="https://stripe.com/">Stripe</a>** payment gateway.' . '</li>'
534
+ // . '<li>' . 'Showing on screen (same page) payment form, with ability to pay by cards.' . '</li>'
535
+ // . '<li>' . 'Ability to auto approve or auto decline booking, after successful or failed payment.' . '</li>'
536
+ // . '</ul>' )
537
+ //
538
+ // . '<span style="font-size:0.85em;">' .wpbc_recheck_strong_symbols( 'Available in **Business Small / Business Medium / Business Large / MultiUser** versions' ) . '</span>'
539
  //
540
+ // )
541
+ // )
542
+ // );
543
+
544
+
545
  ////////////////////////////////////////////////////////////////////////////////////////////////////////////
546
  // 8.4
547
  ////////////////////////////////////////////////////////////////////////////////////////////////////////////
548
  ?>
549
+
550
+ <div class="clear" style="margin-top:20px;"></div>
551
+ <a id="wpbc_show_advanced_section_link_show" class="wpbc_expand_section_link" href="javascript:void(0)"
552
+ onclick="javascript:jQuery( '.version_update_8_4' ).toggle();"
553
+ >+ 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.4</span></a>
554
+
555
+ <div class="version_update_8_4" style="display:none;">
556
+
557
+ <h2 style='font-size: 2.1em;'>What's New in Booking Calendar <span style="font-size: 1.1em;font-weight: 600;font-family: Consolas,Monaco,monospace;padding-left: 10px;color: #5F5F5F;"
558
+ >8.4</span></h2><?php
559
+ $this->show_separator();
560
+ // <!--iframe width="560" height="315" src="https://www.youtube.com/embed/kLrI7zqKeQQ?rel=0" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe-->
561
+ ?><div style="text-align: center;margin-top:2em;"><iframe width="560" height="315" src="https://www.youtube.com/embed/rpg1kApZCdw?rel=0&amp;start=0&amp;rel=0" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe></div><?php
562
+ ?><div style="width:100%;font-size:0.8em;margin:2em 1em;text-align: center;">
563
+ <?php
564
+ printf( 'For more information about current update, see %srelease notes%s',
565
+ '<a class="" href="https://wpbookingcalendar.com/changelog/" target="_blank">', '</a>.' );
566
+ ?>
567
+ </div><?php
568
+ ?></div><?php
569
+
570
  ////////////////////////////////////////////////////////////////////////////////////////////////////////////
571
  // 8.3
572
  ////////////////////////////////////////////////////////////////////////////////////////////////////////////
core/lib/wpbc-ajax.php CHANGED
@@ -95,8 +95,13 @@ function wpbc_ajax_UPDATE_READ_UNREAD () {
95
  else $is_new = '0';
96
 
97
  $id_of_new_bookings = $_POST[ "booking_id" ];
98
- $arrayof_bookings_id = explode('|',$id_of_new_bookings);
99
- $arrayof_bookings_id = wpbc_clean_digit_or_csd( $arrayof_bookings_id ); //FixIn: 8.4.5.15
 
 
 
 
 
100
  $user_id = $_POST[ "user_id" ];
101
  $user_id = wpbc_clean_digit_or_csd( $user_id ); //FixIn: 8.4.5.15
102
 
95
  else $is_new = '0';
96
 
97
  $id_of_new_bookings = $_POST[ "booking_id" ];
98
+ //FixIn: 8.4.7.15
99
+ if ( 'all' == $id_of_new_bookings ) {
100
+ $arrayof_bookings_id = explode( '|', $id_of_new_bookings );
101
+ } else {
102
+ $arrayof_bookings_id = explode( '|', $id_of_new_bookings );
103
+ $arrayof_bookings_id = wpbc_clean_digit_or_csd( $arrayof_bookings_id ); //FixIn: 8.4.5.15
104
+ }
105
  $user_id = $_POST[ "user_id" ];
106
  $user_id = wpbc_clean_digit_or_csd( $user_id ); //FixIn: 8.4.5.15
107
 
core/lib/wpbc-booking-new.php CHANGED
@@ -254,7 +254,7 @@ function wpbc_add_new_booking( $params , $is_edit_booking = false ){
254
  if ( $bktype == 0 )
255
  return false; // Error: Unknown booking resources
256
  }
257
-
258
  make_bk_action('check_multiuser_params_for_client_side', $bktype ); // Activate working with specific user in WP MU
259
 
260
  ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
@@ -415,7 +415,7 @@ function wpbc_add_new_booking( $params , $is_edit_booking = false ){
415
  if ( isset( $params["is_send_emeils"] ) ) $is_send_emeils = $params["is_send_emeils"];
416
  else $is_send_emeils = 1;
417
 
418
-
419
  //FixIn: 8.4.2.9
420
  if ( ( $is_edit_booking === false )
421
  || ( true === $is_duplicate_booking )
@@ -430,13 +430,16 @@ function wpbc_add_new_booking( $params , $is_edit_booking = false ){
430
  wpbc_send_email_new_visitor( $booking_id, $bktype, $email_content ) ;
431
 
432
  }
433
-
434
- if ( ( isset( $params["is_show_payment_form"]) ) && ( $params["is_show_payment_form"] == 1 ) ) {
435
- //debuge('wpdev_new_booking',$booking_id, $bktype, $str_dates__dd_mm_yyyy, array($start_time, $end_time ) ,$formdata );
436
- do_action('wpdev_new_booking',$booking_id, $bktype, $str_dates__dd_mm_yyyy, array($start_time, $end_time ) ,$formdata );
437
- } else
438
- do_action('wpbc_update_cost_of_new_booking',$booking_id, $bktype, $str_dates__dd_mm_yyyy, array($start_time, $end_time ) ,$formdata );
439
 
 
 
 
 
 
 
 
 
 
440
  wpbc_integrate_MailChimp($formdata, $bktype);
441
 
442
  if ( ( $auto_approve_new_bookings_is_active == 'On') && ($is_send_emeils != 0 ) ){
@@ -450,22 +453,25 @@ function wpbc_add_new_booking( $params , $is_edit_booking = false ){
450
  wpbc_send_email_modified($booking_id, $bktype, $email_content );
451
  }
452
  $admin_uri = ltrim( str_replace( get_site_url( null, '', 'admin' ), '', admin_url('admin.php?') ), '/' ) ;
453
-
 
 
 
 
454
  if ( strpos($_SERVER['HTTP_REFERER'], $admin_uri ) === false ) {
455
 
456
- if ( ( isset( $params["is_show_payment_form"]) ) && ( $params["is_show_payment_form"] == 1 ) )
457
  do_action('wpdev_new_booking',$booking_id, $bktype, $str_dates__dd_mm_yyyy, array($start_time, $end_time ) ,$formdata );
458
  else
459
  do_action('wpbc_update_cost_of_new_booking',$booking_id, $bktype, $str_dates__dd_mm_yyyy, array($start_time, $end_time ) ,$formdata );
460
-
461
  }
462
 
463
  }
464
-
465
 
466
  // Re-Update booking resource TYPE if its needed here
467
  if ( isset( $params["skip_page_checking_for_updating"] ) ) $skip_page_checking_for_updating = (bool) $params["skip_page_checking_for_updating"];
468
- else $skip_page_checking_for_updating = true;
469
  make_bk_action('wpdev_booking_reupdate_bk_type_to_childs', $booking_id, $bktype, $str_dates__dd_mm_yyyy, array($start_time, $end_time ) , $formdata , $skip_page_checking_for_updating );
470
 
471
  //if ( ( wpbc_is_new_booking_page( 'HTTP_REFERER' ) ) ||
254
  if ( $bktype == 0 )
255
  return false; // Error: Unknown booking resources
256
  }
257
+
258
  make_bk_action('check_multiuser_params_for_client_side', $bktype ); // Activate working with specific user in WP MU
259
 
260
  ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
415
  if ( isset( $params["is_send_emeils"] ) ) $is_send_emeils = $params["is_send_emeils"];
416
  else $is_send_emeils = 1;
417
 
418
+
419
  //FixIn: 8.4.2.9
420
  if ( ( $is_edit_booking === false )
421
  || ( true === $is_duplicate_booking )
430
  wpbc_send_email_new_visitor( $booking_id, $bktype, $email_content ) ;
431
 
432
  }
 
 
 
 
 
 
433
 
434
+ //Check if cost correction field exist
435
+ $fin_summ = apply_bk_filter( 'check_if_cost_exist_in_field', false, $formdata, $bktype ); //FixIn: 8.4.7.28
436
+ if ( $fin_summ === false ) {
437
+ if ( ( isset( $params["is_show_payment_form"]) ) && ( $params["is_show_payment_form"] == 1 ) ) {
438
+ //debuge('wpdev_new_booking',$booking_id, $bktype, $str_dates__dd_mm_yyyy, array($start_time, $end_time ) ,$formdata );
439
+ do_action('wpdev_new_booking',$booking_id, $bktype, $str_dates__dd_mm_yyyy, array($start_time, $end_time ) ,$formdata );
440
+ } else
441
+ do_action('wpbc_update_cost_of_new_booking',$booking_id, $bktype, $str_dates__dd_mm_yyyy, array($start_time, $end_time ) ,$formdata );
442
+ }
443
  wpbc_integrate_MailChimp($formdata, $bktype);
444
 
445
  if ( ( $auto_approve_new_bookings_is_active == 'On') && ($is_send_emeils != 0 ) ){
453
  wpbc_send_email_modified($booking_id, $bktype, $email_content );
454
  }
455
  $admin_uri = ltrim( str_replace( get_site_url( null, '', 'admin' ), '', admin_url('admin.php?') ), '/' ) ;
456
+
457
+ $is_show_payment_form_after_editing = true; // Default
458
+ if ( $is_edit_booking !== false ) {
459
+ $is_show_payment_form_after_editing = ! false; //FixIn: 8.4.6.0
460
+ }
461
  if ( strpos($_SERVER['HTTP_REFERER'], $admin_uri ) === false ) {
462
 
463
+ if ( ( isset( $params["is_show_payment_form"]) ) && ( $params["is_show_payment_form"] == 1 ) && ( $is_show_payment_form_after_editing ) )
464
  do_action('wpdev_new_booking',$booking_id, $bktype, $str_dates__dd_mm_yyyy, array($start_time, $end_time ) ,$formdata );
465
  else
466
  do_action('wpbc_update_cost_of_new_booking',$booking_id, $bktype, $str_dates__dd_mm_yyyy, array($start_time, $end_time ) ,$formdata );
 
467
  }
468
 
469
  }
470
+
471
 
472
  // Re-Update booking resource TYPE if its needed here
473
  if ( isset( $params["skip_page_checking_for_updating"] ) ) $skip_page_checking_for_updating = (bool) $params["skip_page_checking_for_updating"];
474
+ else $skip_page_checking_for_updating = true;
475
  make_bk_action('wpdev_booking_reupdate_bk_type_to_childs', $booking_id, $bktype, $str_dates__dd_mm_yyyy, array($start_time, $end_time ) , $formdata , $skip_page_checking_for_updating );
476
 
477
  //if ( ( wpbc_is_new_booking_page( 'HTTP_REFERER' ) ) ||
core/lib/wpbc_all_translations.php CHANGED
@@ -2,7 +2,7 @@
2
  $wpbc_all_translations[] = __('Select the skin of the booking calendar', 'booking');
3
  $wpbc_all_translations[] = __('month(s)', 'booking');
4
  $wpbc_all_translations[] = __('year(s)', 'booking');
5
- $wpbc_all_translations[] = __('Number of months', 'booking');
6
  $wpbc_all_translations[] = __('Select the maximum number of months to show (scroll)', 'booking');
7
  $wpbc_all_translations[] = __('Start Day of the week', 'booking');
8
  $wpbc_all_translations[] = __('Select your start day of the week', 'booking');
@@ -27,6 +27,8 @@
27
  $wpbc_all_translations[] = __('Simple', 'booking');
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[] = __('CAPTCHA', 'booking');
31
  $wpbc_all_translations[] = __('Check the box to activate CAPTCHA inside the booking form.', 'booking');
32
  $wpbc_all_translations[] = __('Auto-fill fields', 'booking');
@@ -306,6 +308,10 @@
306
  $wpbc_all_translations[] = __('Use check in/out time of plugin, during import .ics feeds', 'booking');
307
  $wpbc_all_translations[] = __('Append check out day', 'booking');
308
  $wpbc_all_translations[] = __('Append one check out day, during import .ics feeds, if activated using check in/out times', 'booking');
 
 
 
 
309
  $wpbc_all_translations[] = __('General', 'booking');
310
  $wpbc_all_translations[] = __('General Settings', 'booking');
311
  $wpbc_all_translations[] = __('Assign events fields to specific booking form field', 'booking');
@@ -320,6 +326,8 @@
320
  $wpbc_all_translations[] = __('Its useful, if you need to import/export bookings from/to external websites, like %s', 'booking');
321
  $wpbc_all_translations[] = __('and any other calendar that uses .ics format', 'booking');
322
  $wpbc_all_translations[] = __('.ics - is a file format of iCalendar standard for exchanging calendar and scheduling information between different sources %s Using a common calendar format (.ics), you can keep all your calendars updated and synchronized.', 'booking');
 
 
323
  $wpbc_all_translations[] = __('How to start import of .ics feeds (files)?', 'booking');
324
  $wpbc_all_translations[] = __('Install %s plugin.', 'booking');
325
  $wpbc_all_translations[] = __('Insert %s shortcode into some post(s) or page(s). Check more info about this %sshortcode configuration%s', 'booking');
@@ -398,6 +406,7 @@
398
  $wpbc_all_translations[] = __('Show only check in/out dates', 'booking');
399
  $wpbc_all_translations[] = __('Resource not exist', 'booking');
400
  $wpbc_all_translations[] = __('Unknown', 'booking');
 
401
  $wpbc_all_translations[] = __('Move to trash', 'booking');
402
  $wpbc_all_translations[] = __('Restore', 'booking');
403
  $wpbc_all_translations[] = __('Do you really want to delete this booking ?', 'booking');
@@ -452,7 +461,6 @@
452
  $wpbc_all_translations[] = __('View mode', 'booking');
453
  $wpbc_all_translations[] = __('Select type of view format', 'booking');
454
  $wpbc_all_translations[] = __('All bookings', 'booking');
455
- $wpbc_all_translations[] = __('Number of months to scroll', 'booking');
456
  $wpbc_all_translations[] = __('Select number of months to scroll after loading', 'booking');
457
  $wpbc_all_translations[] = __('Number of days to scroll', 'booking');
458
  $wpbc_all_translations[] = __('Select number of days to scroll after loading', 'booking');
@@ -619,6 +627,7 @@
619
  $wpbc_all_translations[] = __('Updated successfully', 'booking');
620
  $wpbc_all_translations[] = __('Error!', 'booking');
621
  $wpbc_all_translations[] = __('Probably these date(s) just was booking by other visitor. Please reload this page and make booking again.', 'booking');
 
622
  $wpbc_all_translations[] = __('Paid OK', 'booking');
623
  $wpbc_all_translations[] = __('Email is sent to Visitor after Canceling of booking (moved to trash).', 'booking');
624
  $wpbc_all_translations[] = __('Probabaly you updated your paid version of Booking Calendar by free version or update process failed. You can request the new update of your paid version at %1sthis page%2s.', 'booking');
@@ -1757,4 +1766,27 @@
1757
  $wpbc_all_translations[] = __('Show Info of Booking Resource', 'booking');
1758
  $wpbc_all_translations[] = __('Click to edit', 'booking');
1759
  $wpbc_all_translations[] = __('This is not real preview. Its configuration block of "Booking Calendar".', 'booking');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1760
  }
2
  $wpbc_all_translations[] = __('Select the skin of the booking calendar', 'booking');
3
  $wpbc_all_translations[] = __('month(s)', 'booking');
4
  $wpbc_all_translations[] = __('year(s)', 'booking');
5
+ $wpbc_all_translations[] = __('Number of months to scroll', 'booking');
6
  $wpbc_all_translations[] = __('Select the maximum number of months to show (scroll)', 'booking');
7
  $wpbc_all_translations[] = __('Start Day of the week', 'booking');
8
  $wpbc_all_translations[] = __('Select your start day of the week', 'booking');
27
  $wpbc_all_translations[] = __('Simple', 'booking');
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');
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');
314
+ $wpbc_all_translations[] = __('Move all previously imported bookings to trash before new import bookings. Its can resolve issue of updating deleted and edited events in external sources. Its work only, if you are using one source (.ics feed) for importing into specific booking resource!', 'booking');
315
  $wpbc_all_translations[] = __('General', 'booking');
316
  $wpbc_all_translations[] = __('General Settings', 'booking');
317
  $wpbc_all_translations[] = __('Assign events fields to specific booking form field', 'booking');
326
  $wpbc_all_translations[] = __('Its useful, if you need to import/export bookings from/to external websites, like %s', 'booking');
327
  $wpbc_all_translations[] = __('and any other calendar that uses .ics format', 'booking');
328
  $wpbc_all_translations[] = __('.ics - is a file format of iCalendar standard for exchanging calendar and scheduling information between different sources %s Using a common calendar format (.ics), you can keep all your calendars updated and synchronized.', 'booking');
329
+ $wpbc_all_translations[] = __('Is it automatic process?', 'booking');
330
+ $wpbc_all_translations[] = __('By default .ics import is not automatic process. You need to set up CRON script on your server to periodically access front-end page(s) with import .ics feeds shortcodes.', 'booking');
331
  $wpbc_all_translations[] = __('How to start import of .ics feeds (files)?', 'booking');
332
  $wpbc_all_translations[] = __('Install %s plugin.', 'booking');
333
  $wpbc_all_translations[] = __('Insert %s shortcode into some post(s) or page(s). Check more info about this %sshortcode configuration%s', 'booking');
406
  $wpbc_all_translations[] = __('Show only check in/out dates', 'booking');
407
  $wpbc_all_translations[] = __('Resource not exist', 'booking');
408
  $wpbc_all_translations[] = __('Unknown', 'booking');
409
+ $wpbc_all_translations[] = __('Imported', 'booking');
410
  $wpbc_all_translations[] = __('Move to trash', 'booking');
411
  $wpbc_all_translations[] = __('Restore', 'booking');
412
  $wpbc_all_translations[] = __('Do you really want to delete this booking ?', 'booking');
461
  $wpbc_all_translations[] = __('View mode', 'booking');
462
  $wpbc_all_translations[] = __('Select type of view format', 'booking');
463
  $wpbc_all_translations[] = __('All bookings', 'booking');
 
464
  $wpbc_all_translations[] = __('Select number of months to scroll after loading', 'booking');
465
  $wpbc_all_translations[] = __('Number of days to scroll', 'booking');
466
  $wpbc_all_translations[] = __('Select number of days to scroll after loading', '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');
633
  $wpbc_all_translations[] = __('Probabaly you updated your paid version of Booking Calendar by free version or update process failed. You can request the new update of your paid version at %1sthis page%2s.', 'booking');
1766
  $wpbc_all_translations[] = __('Show Info of Booking Resource', 'booking');
1767
  $wpbc_all_translations[] = __('Click to edit', 'booking');
1768
  $wpbc_all_translations[] = __('This is not real preview. Its configuration block of "Booking Calendar".', 'booking');
1769
+ $wpbc_all_translations[] = __('Sort search results by', 'booking');
1770
+ $wpbc_all_translations[] = __('Select type of sorting search results', 'booking');
1771
+ $wpbc_all_translations[] = __('ID of booking resource', 'booking');
1772
+ $wpbc_all_translations[] = __('Title of booking resource', 'booking');
1773
+ $wpbc_all_translations[] = __('Priority field of booking resource', 'booking');
1774
+ $wpbc_all_translations[] = __('Cost of booking resource', 'booking');
1775
+ $wpbc_all_translations[] = __('Cost of booking', 'booking');
1776
+ $wpbc_all_translations[] = __('Deactivate send email option at Add Booking page', 'booking');
1777
+ $wpbc_all_translations[] = __('Check this box if you want to deactivate by default option "Send email" at Add Booking page.', 'booking');
1778
+ $wpbc_all_translations[] = __('Deactivate send email option at Booking Listing page', 'booking');
1779
+ $wpbc_all_translations[] = __('Check this box if you want to deactivate by default option "Send email" at Booking Listing page.', 'booking');
1780
+ $wpbc_all_translations[] = __('Force change booking resource for exist booking', 'booking');
1781
+ $wpbc_all_translations[] = __('Check this box if you want to skip checking availability of new booking resource during changing booking resource of exist booking at Booking Listing page.', 'booking');
1782
+ $wpbc_all_translations[] = __('Signature Key', 'booking');
1783
+ $wpbc_all_translations[] = __('Please enter the Signature Key, which you generated in the settings of Merchant Interface.', 'booking');
1784
+ $wpbc_all_translations[] = __('To generate new Signature Key', 'booking');
1785
+ $wpbc_all_translations[] = __('Log on to the %sMerchant Interface%s', 'booking');
1786
+ $wpbc_all_translations[] = __('In the merchant interface, go to Account > Settings > Security Settings > General Security Settings > API Credential & Keys', 'booking');
1787
+ $wpbc_all_translations[] = __('Answer the secret question.', 'booking');
1788
+ $wpbc_all_translations[] = __('Select New Signature Key. Your signature key is displayed as a string.', 'booking');
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
  }
core/lib/wpdev-booking-class.php CHANGED
@@ -409,6 +409,7 @@ class wpdev_booking {
409
  $text_for_day_cell = date('d');
410
 
411
  $my_result .= '<div class="block_hints datepick">';
 
412
  if ($booking_legend_is_show_item_available == 'On') // __('Available' ,'booking')
413
  $my_result .= '<div class="wpdev_hint_with_text"><div class="block_free datepick-days-cell"><a>'.$text_for_day_cell.'</a></div><div class="block_text">- '. $booking_legend_text_for_item_available.'</div></div>';
414
  if ($booking_legend_is_show_item_approved == 'On') // __('Booked' ,'booking')
@@ -1244,7 +1245,17 @@ class wpdev_booking {
1244
  function bookingedit_shortcode($attr) {
1245
 
1246
  //if ( function_exists( 'wpbc_br_cache' ) ) $br_cache = wpbc_br_cache(); // Init booking resources cache
1247
-
 
 
 
 
 
 
 
 
 
 
1248
  $my_boook_count = get_bk_option( 'booking_client_cal_count' );
1249
  $my_boook_type = 1;
1250
  $my_booking_form = 'standard';
@@ -1260,12 +1271,14 @@ class wpdev_booking {
1260
  $additional_bk_types = $attr['aggregate'];
1261
  $my_boook_type .= ';'.$additional_bk_types;
1262
  }
 
 
1263
 
1264
  if (isset($_GET['booking_hash'])) {
1265
  $my_booking_id_type = apply_bk_filter('wpdev_booking_get_hash_to_id',false, $_GET['booking_hash'] );
1266
  if ($my_booking_id_type !== false) {
1267
- $my_edited_bk_id = $my_booking_id_type[0];
1268
- $my_boook_type = $my_booking_id_type[1];
1269
  if ($my_boook_type == '') return __('Wrong booking hash in URL. Probably hash is expired.' ,'booking');
1270
  } else {
1271
  return __('Wrong booking hash in URL. Probably hash is expired.' ,'booking');
@@ -1274,18 +1287,17 @@ class wpdev_booking {
1274
  } else {
1275
  return __('You do not set any parameters for booking editing' ,'booking')
1276
  . ' <br/><em>'
1277
- . sprintf( __('Please check more about configuration at %sthis page%s' ,'booking') , '<a href="https://wpbookingcalendar.com/faq/configure-editing-cancel-payment-bookings-for-visitors/" target="_blank">' , '</a>.')
 
1278
  . '</em>';
1279
  }
1280
- if ( isset( $attr['options'] ) ) { $bk_otions = $attr['options']; }
1281
 
1282
  $res = $this->add_booking_form_action($my_boook_type,$my_boook_count, 0 , $my_booking_form, '', false, $bk_otions );
1283
 
1284
  if (isset($_GET['booking_pay'])) {
1285
- //debuge($_GET);
1286
  // Payment form
1287
  $res .= apply_bk_filter('wpdev_get_payment_form',$my_edited_bk_id, $my_boook_type );
1288
-
1289
  }
1290
 
1291
  return $res;
409
  $text_for_day_cell = date('d');
410
 
411
  $my_result .= '<div class="block_hints datepick">';
412
+ //$my_result .= '<div class="wpdev_hint_with_text"><div class="block_free datepick-days-cell datepick-unselectable" style="background-color: #fff;"><a>'.$text_for_day_cell.'</a></div><div class="block_text">- '. 'Unavailable' .'</div></div>';
413
  if ($booking_legend_is_show_item_available == 'On') // __('Available' ,'booking')
414
  $my_result .= '<div class="wpdev_hint_with_text"><div class="block_free datepick-days-cell"><a>'.$text_for_day_cell.'</a></div><div class="block_text">- '. $booking_legend_text_for_item_available.'</div></div>';
415
  if ($booking_legend_is_show_item_approved == 'On') // __('Booked' ,'booking')
1245
  function bookingedit_shortcode($attr) {
1246
 
1247
  //if ( function_exists( 'wpbc_br_cache' ) ) $br_cache = wpbc_br_cache(); // Init booking resources cache
1248
+
1249
+ if ( isset( $_GET['wpbc_hash'] ) ) {
1250
+
1251
+ if ( function_exists( 'wpbc_parse_one_way_hash' ) ) {
1252
+
1253
+ $one_way_hash_response = wpbc_parse_one_way_hash( $_GET['wpbc_hash'] );
1254
+
1255
+ return $one_way_hash_response;
1256
+ }
1257
+ }
1258
+
1259
  $my_boook_count = get_bk_option( 'booking_client_cal_count' );
1260
  $my_boook_type = 1;
1261
  $my_booking_form = 'standard';
1271
  $additional_bk_types = $attr['aggregate'];
1272
  $my_boook_type .= ';'.$additional_bk_types;
1273
  }
1274
+ if ( isset( $attr['options'] ) ) { $bk_otions = $attr['options']; }
1275
+
1276
 
1277
  if (isset($_GET['booking_hash'])) {
1278
  $my_booking_id_type = apply_bk_filter('wpdev_booking_get_hash_to_id',false, $_GET['booking_hash'] );
1279
  if ($my_booking_id_type !== false) {
1280
+ $my_edited_bk_id = $my_booking_id_type[0];
1281
+ $my_boook_type = $my_booking_id_type[1];
1282
  if ($my_boook_type == '') return __('Wrong booking hash in URL. Probably hash is expired.' ,'booking');
1283
  } else {
1284
  return __('Wrong booking hash in URL. Probably hash is expired.' ,'booking');
1287
  } else {
1288
  return __('You do not set any parameters for booking editing' ,'booking')
1289
  . ' <br/><em>'
1290
+ . sprintf( __('Please check more about configuration at %sthis page%s' ,'booking')
1291
+ , '<a href="https://wpbookingcalendar.com/faq/configure-editing-cancel-payment-bookings-for-visitors/" target="_blank">' , '</a>.')
1292
  . '</em>';
1293
  }
1294
+
1295
 
1296
  $res = $this->add_booking_form_action($my_boook_type,$my_boook_count, 0 , $my_booking_form, '', false, $bk_otions );
1297
 
1298
  if (isset($_GET['booking_pay'])) {
 
1299
  // Payment form
1300
  $res .= apply_bk_filter('wpdev_get_payment_form',$my_edited_bk_id, $my_boook_type );
 
1301
  }
1302
 
1303
  return $res;
core/wpbc-activation.php CHANGED
@@ -1085,6 +1085,9 @@ function wpbc_get_default_options( $option_name = '', $is_get_multiuser_general_
1085
  $default_options['booking_is_use_simple_booking_form'] = 'Off'; //FixIn: 8.1.1.12
1086
  $mu_option4delete[]='booking_is_use_simple_booking_form';
1087
 
 
 
 
1088
  $default_options['booking_form'] = str_replace( '\\n\\', '', wpbc_get_default_booking_form() );
1089
  $default_options['booking_form_show'] = str_replace( '\\n\\', '', wpbc_get_default_booking_form_show() );
1090
 
@@ -1148,6 +1151,10 @@ function wpbc_get_default_options( $option_name = '', $is_get_multiuser_general_
1148
  //$mu_option4delete[]='booking_ics_import_add_change_over_time'; // No need to delete ^
1149
  $default_options['booking_ics_import_append_checkout_day'] = 'On';
1150
  //$mu_option4delete[]='booking_ics_import_append_checkout_day'; // No need to delete ^
 
 
 
 
1151
 
1152
  $default_options['booking_recurrent_time'] = 'Off';
1153
  $mu_option4delete[]='booking_recurrent_time';
@@ -1283,8 +1290,10 @@ function wpbc_get_default_options( $option_name = '', $is_get_multiuser_general_
1283
  $default_options['booking_found_search_item'] = str_replace( '\\n\\r', "\n", wpbc_get_default_search_results_template() ); //FixIn:6.1.0.1
1284
  $mu_option4delete[]='booking_found_search_item';
1285
  $default_options['booking_cache_expiration'] = '2d';
1286
- $mu_option4delete[]='booking_cache_expiration';
1287
-
 
 
1288
  // Updated during regeneration seacrh cache
1289
  //$default_options['booking_cache_content']='';
1290
  $mu_option4delete[]='booking_cache_content';
1085
  $default_options['booking_is_use_simple_booking_form'] = 'Off'; //FixIn: 8.1.1.12
1086
  $mu_option4delete[]='booking_is_use_simple_booking_form';
1087
 
1088
+ $default_options['booking_is_use_codehighlighter_booking_form'] = 'On'; //FixIn: 8.4.7.18
1089
+ $mu_option4delete[]='booking_is_use_codehighlighter_booking_form';
1090
+
1091
  $default_options['booking_form'] = str_replace( '\\n\\', '', wpbc_get_default_booking_form() );
1092
  $default_options['booking_form_show'] = str_replace( '\\n\\', '', wpbc_get_default_booking_form_show() );
1093
 
1151
  //$mu_option4delete[]='booking_ics_import_add_change_over_time'; // No need to delete ^
1152
  $default_options['booking_ics_import_append_checkout_day'] = 'On';
1153
  //$mu_option4delete[]='booking_ics_import_append_checkout_day'; // No need to delete ^
1154
+ $default_options['booking_ics_force_import'] = 'Off'; //FixIn: 8.4.7.1
1155
+ //$mu_option4delete[]='booking_ics_force_import'; // No need to delete ^
1156
+ $default_options['booking_ics_force_trash_before_import'] = 'Off'; //FixIn: 8.4.7.12
1157
+ //$mu_option4delete[]='booking_ics_force_trash_before_import'; // No need to delete ^
1158
 
1159
  $default_options['booking_recurrent_time'] = 'Off';
1160
  $mu_option4delete[]='booking_recurrent_time';
1290
  $default_options['booking_found_search_item'] = str_replace( '\\n\\r', "\n", wpbc_get_default_search_results_template() ); //FixIn:6.1.0.1
1291
  $mu_option4delete[]='booking_found_search_item';
1292
  $default_options['booking_cache_expiration'] = '2d';
1293
+ $mu_option4delete[]='booking_cache_expiration';
1294
+ $default_options['booking_search_results_order'] = 'prioritet'; //FixIn: 8.4.7.8
1295
+ $mu_option4delete[]='booking_search_results_order';
1296
+
1297
  // Updated during regeneration seacrh cache
1298
  //$default_options['booking_cache_content']='';
1299
  $mu_option4delete[]='booking_cache_content';
core/wpbc-constants.php CHANGED
@@ -26,7 +26,6 @@ if ( ! defined( 'WP_BK_CHECK_OUT_MINUS_DAY_SEARCH' ) ) { define( 'WP_BK_C
26
  ////////////////////////////////////////////////////////////
27
  // SYSTEM CONSTANTS //////////////
28
  ////////////////////////////////////////////////////////////
29
- if ( ! defined( 'WP_BK_VERSION_NUM' ) ) { define( 'WP_BK_VERSION_NUM', '8.4.6' ); }
30
  if ( ! defined( 'WP_BK_MINOR_UPDATE' ) ) { define( 'WP_BK_MINOR_UPDATE', true ); }
31
  if ( ! defined( 'WP_BK_RESPONSE' ) ) { define( 'WP_BK_RESPONSE', false ); }
32
  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
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
core/wpbc-css.php CHANGED
@@ -74,7 +74,10 @@ class WPBC_CSS extends WPBC_JS_CSS{
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
  wp_enqueue_style('wpbc-calendar', wpbc_plugin_url( '/css/calendar.css' ), array(), WP_BK_VERSION_NUM);
79
  // Calendar Skins
80
  $calendar_skin_path = wpbc_get_calendar_skin_url();
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);
82
  // Calendar Skins
83
  $calendar_skin_path = wpbc_get_calendar_skin_url();
core/wpbc-emails.php CHANGED
@@ -255,6 +255,12 @@ function wpbc_get_email_help_shortcodes( $skip_shortcodes = array() , $email_exa
255
  // [moderatelink]
256
  if ( ! in_array( 'moderatelink', $skip_shortcodes ) ) {
257
  $fields[] = sprintf(__('%s - inserting moderate link of new booking ' ,'booking'),'<code>[moderatelink]</code>');
 
 
 
 
 
 
258
  $fields[] = sprintf(__('%s - inserting link for export booking to' ,'booking'),'<code>[add_to_google_cal_url]</code>') . ' Google Calendar'; //FixIn: 7.1.2.5
259
  }
260
 
255
  // [moderatelink]
256
  if ( ! in_array( 'moderatelink', $skip_shortcodes ) ) {
257
  $fields[] = sprintf(__('%s - inserting moderate link of new booking ' ,'booking'),'<code>[moderatelink]</code>');
258
+
259
+ //FixIn: 8.4.7.25
260
+ $fields[] = sprintf(__('%s - inserting link to approve booking in 1 mouse click ' ,'booking'),'<code>[click2approve]</code>');
261
+ $fields[] = sprintf(__('%s - inserting link to set booking as pending in 1 mouse click ' ,'booking'),'<code>[click2decline]</code>');
262
+ $fields[] = sprintf(__('%s - inserting link for move booking to trash in 1 mouse click ' ,'booking'),'<code>[click2trash]</code>');
263
+
264
  $fields[] = sprintf(__('%s - inserting link for export booking to' ,'booking'),'<code>[add_to_google_cal_url]</code>') . ' Google Calendar'; //FixIn: 7.1.2.5
265
  }
266
 
core/wpbc-functions.php CHANGED
@@ -3070,7 +3070,7 @@ function wpbc_system_info() {
3070
  if ( is_array( $mysql_info ) ) $sql_mode = $mysql_info[0]->Value;
3071
  if ( empty( $sql_mode ) ) $sql_mode = 'Not set';
3072
 
3073
- $safe_mode = ( ini_get( 'safe_mode' ) ) ? 'On' : 'Off';
3074
  $allow_url_fopen = ( ini_get( 'allow_url_fopen' ) ) ? 'On' : 'Off';
3075
  $upload_max_filesize = ( ini_get( 'upload_max_filesize' ) ) ? ini_get( 'upload_max_filesize' ) : 'N/A';
3076
  $post_max_size = ( ini_get( 'post_max_size' ) ) ? ini_get( 'post_max_size' ) : 'N/A';
@@ -3109,7 +3109,6 @@ function wpbc_system_info() {
3109
  'Operating System' => PHP_OS,
3110
  'Server' => $_SERVER["SERVER_SOFTWARE"],
3111
  'PHP Version' => PHP_VERSION,
3112
- 'PHP Safe Mode' => $safe_mode,
3113
  'MYSQL Version' => $wpdb->get_var( "SELECT VERSION() AS version" ),
3114
  'SQL Mode' => $sql_mode,
3115
  'Memory usage' => $memory_usage,
@@ -3123,7 +3122,6 @@ function wpbc_system_info() {
3123
 
3124
  $system_info['php_info'] = array(
3125
  'PHP Version' => PHP_VERSION,
3126
- 'PHP Safe Mode' => $safe_mode,
3127
  'PHP Memory Limit' => '<strong>' . $memory_limit . '</strong>',
3128
  'PHP Max Script Execute Time' => '<strong>' . $max_execution_time . '</strong>',
3129
 
@@ -3365,4 +3363,130 @@ function wpbc_get_wpbm_version() {
3365
  return 0;
3366
  else
3367
  return WPBM_VERSION_NUM;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3368
  }
3070
  if ( is_array( $mysql_info ) ) $sql_mode = $mysql_info[0]->Value;
3071
  if ( empty( $sql_mode ) ) $sql_mode = 'Not set';
3072
 
3073
+ //FixIn: 8.4.7.24
3074
  $allow_url_fopen = ( ini_get( 'allow_url_fopen' ) ) ? 'On' : 'Off';
3075
  $upload_max_filesize = ( ini_get( 'upload_max_filesize' ) ) ? ini_get( 'upload_max_filesize' ) : 'N/A';
3076
  $post_max_size = ( ini_get( 'post_max_size' ) ) ? ini_get( 'post_max_size' ) : 'N/A';
3109
  'Operating System' => PHP_OS,
3110
  'Server' => $_SERVER["SERVER_SOFTWARE"],
3111
  'PHP Version' => PHP_VERSION,
 
3112
  'MYSQL Version' => $wpdb->get_var( "SELECT VERSION() AS version" ),
3113
  'SQL Mode' => $sql_mode,
3114
  'Memory usage' => $memory_usage,
3122
 
3123
  $system_info['php_info'] = array(
3124
  'PHP Version' => PHP_VERSION,
 
3125
  'PHP Memory Limit' => '<strong>' . $memory_limit . '</strong>',
3126
  'PHP Max Script Execute Time' => '<strong>' . $max_execution_time . '</strong>',
3127
 
3363
  return 0;
3364
  else
3365
  return WPBM_VERSION_NUM;
3366
+ }
3367
+
3368
+
3369
+ //FixIn: 8.4.7.20.2
3370
+
3371
+ /** Check if booking approved or not
3372
+ * @param $booking_id
3373
+ *
3374
+ * @return bool
3375
+ */
3376
+ function wpbc_is_booking_approved( $booking_id ){ //FixIn: 8.1.2.8
3377
+
3378
+ $is_booking_approved = false;
3379
+
3380
+ global $wpdb;
3381
+
3382
+ $dates_result = $wpdb->get_results( "SELECT DISTINCT approved FROM {$wpdb->prefix}bookingdates WHERE booking_id = {$booking_id} ORDER BY booking_date" );
3383
+
3384
+ foreach ( $dates_result as $my_date ) {
3385
+
3386
+ if ( '1' == $my_date->approved ) {
3387
+ $is_booking_approved = true; //FixIn: 8.3.1.2
3388
+ }
3389
+ }
3390
+
3391
+ return $is_booking_approved;
3392
+ }
3393
+
3394
+
3395
+ /**
3396
+ * Approve specific booking and send email about this.
3397
+ *
3398
+ * @param int $booking_id - ID of booking
3399
+ * @param string $email_reason
3400
+ */
3401
+ function wpbc_auto_approve_booking( $booking_id , $email_reason = '' ) {
3402
+
3403
+ global $wpdb;
3404
+
3405
+ $booking_id = wpbc_clean_digit_or_csd( $booking_id ); // Check paramter if it number or comma separated list of numbers
3406
+
3407
+ if ( is_numeric( $booking_id ) ) { //FixIn: 8.1.2.8
3408
+ if ( ! wpbc_is_booking_approved( $booking_id ) ) {
3409
+ wpbc_send_email_approved( $booking_id, 1, $email_reason );
3410
+ }
3411
+ } else {
3412
+ $booking_id_arr = explode( ',',$booking_id );
3413
+ foreach ( $booking_id_arr as $bk_id ) {
3414
+ if ( ! wpbc_is_booking_approved( $bk_id ) ) {
3415
+ wpbc_send_email_approved( $bk_id, 1, $email_reason );
3416
+ }
3417
+
3418
+ }
3419
+ }
3420
+
3421
+ $update_sql = "UPDATE {$wpdb->prefix}bookingdates SET approved = '1' WHERE booking_id IN ({$booking_id});";
3422
+
3423
+ if ( false === $wpdb->query( $update_sql ) ){
3424
+
3425
+ wpbc_redirect( site_url() );
3426
+ }
3427
+ }
3428
+
3429
+
3430
+ /**
3431
+ * Set as Pending specific booking and send email about this.
3432
+ *
3433
+ * @param int $booking_id - ID of booking
3434
+ * @param string $denyreason
3435
+ */
3436
+ function wpbc_auto_pending_booking( $booking_id, $denyreason = '' ) { //FixIn: 8.4.7.25
3437
+
3438
+ global $wpdb;
3439
+
3440
+ $booking_id = wpbc_clean_digit_or_csd( $booking_id ); // Check paramter if it number or comma separated list of numbers
3441
+
3442
+ if ( is_numeric( $booking_id ) ) { //FixIn: 8.1.2.8
3443
+ if ( wpbc_is_booking_approved( $booking_id ) ) {
3444
+ wpbc_send_email_deny( $booking_id, 1, $denyreason );
3445
+ }
3446
+ } else {
3447
+ $booking_id_arr = explode( ',',$booking_id );
3448
+ foreach ( $booking_id_arr as $bk_id ) {
3449
+ if ( wpbc_is_booking_approved( $bk_id ) ) {
3450
+ wpbc_send_email_deny( $bk_id, 1, $denyreason );
3451
+ }
3452
+
3453
+ }
3454
+ }
3455
+
3456
+ $update_sql = "UPDATE {$wpdb->prefix}bookingdates SET approved = '0' WHERE booking_id IN ({$booking_id});";
3457
+
3458
+ if ( false === $wpdb->query( $update_sql ) ){
3459
+
3460
+ wpbc_redirect( site_url() );
3461
+ }
3462
+ }
3463
+
3464
+
3465
+ /**
3466
+ * Cancel (move to Trash) specific booking.
3467
+ *
3468
+ * @param int $booking_id - ID of booking
3469
+ * @param string $email_reason - reason of cancellation
3470
+ */
3471
+ function wpbc_auto_cancel_booking( $booking_id , $email_reason = '' ) { //FixIn: 8.4.7.25
3472
+
3473
+ global $wpdb;
3474
+
3475
+ $booking_id = wpbc_clean_digit_or_csd( $booking_id ); // Check paramter if it number or comma separated list of numbers
3476
+
3477
+ if ( empty( $email_reason ) ) { //FixIn: 8.4.7.25
3478
+ // Get the reason of cancellation.
3479
+ $email_reason = __( 'Payment rejected', 'booking' );
3480
+ $auto_cancel_pending_unpaid_bk_is_send_email = get_bk_option( 'booking_auto_cancel_pending_unpaid_bk_is_send_email' );
3481
+ if ( $auto_cancel_pending_unpaid_bk_is_send_email == 'On' ) {
3482
+ $email_reason = get_bk_option( 'booking_auto_cancel_pending_unpaid_bk_email_reason' );
3483
+ }
3484
+ }
3485
+ // Send decline emails
3486
+ wpbc_send_email_trash( $booking_id, 1, $email_reason );
3487
+
3488
+ if ( false === $wpdb->query( "UPDATE {$wpdb->prefix}booking AS bk SET bk.trash = 1 WHERE booking_id IN ({$booking_id})" ) ){
3489
+
3490
+ wpbc_redirect( site_url() );
3491
+ }
3492
  }
core/wpbc-js.php CHANGED
@@ -150,32 +150,44 @@ function wpbc_js_load_libs( $where_to_load ) {
150
  // jQuery
151
  wp_enqueue_script( 'jquery' );
152
 
153
- $version = wpbc_get_registered_jquery_version();
154
-
155
- $schema = is_ssl() ? 'https://' : 'http://'; // set_url_scheme() is not defined yet //FixIn: 7.2.1.4
156
-
157
- if ( $version !== false ) {
158
-
159
- if ( version_compare( $version, '1.9.1', '<' ) ) { // load jQuery 1.7.1, if "Theme" load older jQuery //FixIn: 7.0.1.3
160
- wp_deregister_script('jquery');
161
- wp_register_script( 'jquery', $schema . 'code.jquery.com/jquery-1.9.1.min.js', false, '1.9.1' ); //FixIn: 7.0.1.3
162
- // wp_register_script('jquery', $schema . 'code.jquery.com/jquery-latest.min.js', false, false);
163
- wp_enqueue_script('jquery');
164
-
165
- wp_register_script('jquery-migrate', $schema . 'code.jquery.com/jquery-migrate-1.4.1.min.js', false, '1.4.1' ); //FixIn: 8.2.1.29 //FixIn: 7.0.1.3
166
- wp_enqueue_script( 'jquery-migrate' ); //FixIn: 7.0.1.3
167
- }
168
-
169
- ////////////////////////////////////////////////////////////////////////
170
- // jQuery Migrate
171
- if ( version_compare( $version, '1.9', '>=' ) ) { // if the jQuery newer then 1.9, then need to load this jquery-migrate-1.4.1 and NOT the jquery-migrate-3.0.0.min.js
172
- wp_register_script('jquery-migrate', $schema . 'code.jquery.com/jquery-migrate-1.4.1.min.js', false, '1.4.1' ); //FixIn: 8.2.1.29
173
- wp_enqueue_script( 'jquery-migrate' );
174
- }
175
- } else {
176
- do_action( 'wpbc_jquery_unknown' ); //FixIn: 7.0.1.33 - new hook for sitation, when we can not identificate version of jQuery, sometimes, need manually to load jquery-migrate
 
 
 
 
177
  }
178
-
 
 
 
 
 
 
 
 
179
 
180
  // Default Admin Libs
181
  if ( ( $where_to_load == 'admin' )
@@ -187,13 +199,10 @@ function wpbc_js_load_libs( $where_to_load ) {
187
  wp_enqueue_script( 'thickbox' ); // JS Thickbox
188
  wp_enqueue_media();
189
  }
190
-
191
  wp_enqueue_style( 'wp-color-picker' ); // Color Picker
192
  wp_enqueue_script( 'wp-color-picker' );
193
  wp_enqueue_script( 'jquery-ui-sortable' ); // UI Sortable
194
-
195
  wp_enqueue_script( 'wp-utils' ); // WP Utils, that support wp.teplate, based on undescore _.template system //FixIn: TimeFreeGenerator
196
-
197
  // if ( wpbc_is_bookings_page() )
198
  // wp_enqueue_script( 'jquery-ui-dialog' ); // UI Dialog - for payment request dialog
199
  }
@@ -212,11 +221,14 @@ function wpbc_js_load_files( $where_to_load ) {
212
  }
213
 
214
  //Add backward compatibility for having jQuery.browser (basically the same as in jquery-migrate
215
- // wp_enqueue_script( 'wpbc-migrate', wpbc_plugin_url( '/js/wpbc-migrate.js'), array( 'jquery-core' ), '1.1' ); //FixIn: 8.3.1.3 //FixIn: 8.2.1.29
216
 
217
  // Datepicker
218
  wp_enqueue_script( 'wpbc-datepick', wpbc_plugin_url( '/js/datepick/jquery.datepick.js'), array( 'wpbc-global-vars' ), '1.1');
219
 
 
 
 
220
  // Localization
221
  $calendar_localization_url = wpbc_get_calendar_localization_url();
222
  if ( ! empty( $calendar_localization_url ) )
150
  // jQuery
151
  wp_enqueue_script( 'jquery' );
152
 
153
+ //FixIn: 8.4.7.23
154
+ if ( false ) {
155
+ $version = wpbc_get_registered_jquery_version();
156
+
157
+ $schema = is_ssl() ? 'https://' : 'http://'; // set_url_scheme() is not defined yet //FixIn: 7.2.1.4
158
+
159
+
160
+ if ( $version !== false ) {
161
+
162
+ if ( version_compare( $version, '1.9.1', '<' ) ) { // load jQuery 1.7.1, if "Theme" load older jQuery //FixIn: 7.0.1.3
163
+ wp_deregister_script( 'jquery' );
164
+ wp_register_script( 'jquery', $schema . 'code.jquery.com/jquery-1.9.1.min.js', false, '1.9.1' ); //FixIn: 7.0.1.3
165
+ // wp_register_script('jquery', $schema . 'code.jquery.com/jquery-latest.min.js', false, false);
166
+ wp_enqueue_script( 'jquery' );
167
+
168
+ wp_register_script( 'jquery-migrate', $schema . 'code.jquery.com/jquery-migrate-1.4.1.min.js', false, '1.4.1' ); //FixIn: 8.2.1.29 //FixIn: 7.0.1.3
169
+ wp_enqueue_script( 'jquery-migrate' ); //FixIn: 7.0.1.3
170
+ }
171
+
172
+ ////////////////////////////////////////////////////////////////////////
173
+ // jQuery Migrate
174
+ if ( version_compare( $version, '1.9', '>=' ) ) { // if the jQuery newer then 1.9, then need to load this jquery-migrate-1.4.1 and NOT the jquery-migrate-3.0.0.min.js
175
+ wp_register_script( 'jquery-migrate', $schema . 'code.jquery.com/jquery-migrate-1.4.1.min.js', false, '1.4.1' ); //FixIn: 8.2.1.29
176
+ wp_enqueue_script( 'jquery-migrate' );
177
+ }
178
+ } else {
179
+ do_action( 'wpbc_jquery_unknown' ); //FixIn: 7.0.1.33 - new hook for sitation, when we can not identificate version of jQuery, sometimes, need manually to load jquery-migrate
180
+ }
181
  }
182
+
183
+ //Test latest version of jQuery here: //FixIn: 8.4.7.23
184
+ if ( false ) {
185
+ wp_deregister_script( 'jquery' );
186
+ wp_deregister_script( 'jquery-migrate' );
187
+ $schema = is_ssl() ? 'https://' : 'http://';
188
+ //wp_register_script('jquery', $schema . 'code.jquery.com/jquery-3.4.1.min.js', false, false);
189
+ wp_enqueue_script( 'jquery', $schema . 'code.jquery.com/jquery-3.4.1.min.js', false, false );
190
+ }
191
 
192
  // Default Admin Libs
193
  if ( ( $where_to_load == 'admin' )
199
  wp_enqueue_script( 'thickbox' ); // JS Thickbox
200
  wp_enqueue_media();
201
  }
 
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
  }
221
  }
222
 
223
  //Add backward compatibility for having jQuery.browser (basically the same as in jquery-migrate
224
+ wp_enqueue_script( 'wpbc-migrate', wpbc_plugin_url( '/js/wpbc-migrate.js'), array( 'jquery' ), '1.1' ); //FixIn: 8.4.7.23 //FixIn: 8.3.1.3 //FixIn: 8.2.1.29
225
 
226
  // Datepicker
227
  wp_enqueue_script( 'wpbc-datepick', wpbc_plugin_url( '/js/datepick/jquery.datepick.js'), array( 'wpbc-global-vars' ), '1.1');
228
 
229
+ //wp_enqueue_script( 'wpbc-datepick-plugin', wpbc_plugin_url( '/js/datepick.5.1/jquery.plugin.js'), array( 'wpbc-global-vars' ), '5.1');
230
+ //wp_enqueue_script( 'wpbc-datepick', wpbc_plugin_url( '/js/datepick.5.1/jquery.datepick.js'), array( 'wpbc-global-vars' ), '5.1');
231
+
232
  // Localization
233
  $calendar_localization_url = wpbc_get_calendar_localization_url();
234
  if ( ! empty( $calendar_localization_url ) )
css/calendar.css CHANGED
@@ -481,7 +481,7 @@ div#datepick-div textarea {
481
  /*******************************************************************************/
482
  @media (max-width: 480px) {
483
  }
484
- @media (max-width: 768px) { /* iPad mini and all iPhones and other Mobile Devices */
485
  .bk_calendar_frame { /* Define the width of calendar to the 100% of the device screen*/
486
  width:100% !important;
487
  }
481
  /*******************************************************************************/
482
  @media (max-width: 480px) {
483
  }
484
+ @media (max-width: 769px) { /* iPad mini and all iPhones and other Mobile Devices //FixIn: 8.4.7.17 */
485
  .bk_calendar_frame { /* Define the width of calendar to the 100% of the device screen*/
486
  width:100% !important;
487
  }
js/admin.js CHANGED
@@ -631,4 +631,13 @@ function wpbc_import_gcal_events( us_id
631
  });
632
  });
633
  });
634
- }( jQuery ) );
 
 
 
 
 
 
 
 
 
631
  });
632
  });
633
  });
634
+ }( jQuery ) );
635
+
636
+ //FixIn: 8.4.7.14
637
+ function wpbc_are_you_sure_popup(){
638
+ if ( wpbc_are_you_sure( 'Do you really want to do this ?' ) ) {
639
+ return true;
640
+ } else {
641
+ return false;
642
+ }
643
+ }
js/client.js CHANGED
@@ -290,7 +290,11 @@ function init_datepick_cal(bk_type, date_approved_par, my_num_month, start_day_
290
  time_return_value[ 1 ] = time_return_value[ 1 ].replace( "date2approve", "" );
291
  }
292
  }
293
- var is_exist_check_in_out_for_parent_resource = Math.max( checkin_days_count[0], checkout_days_count[0] );
 
 
 
 
294
 
295
  if ( ( time_return_value !== false ) && ( is_exist_check_in_out_for_parent_resource == 0 ) ) { // Check this only for single booking resources - is_exist_check_in_out_for_parent_resource == 0
296
  if ( is_booking_used_check_in_out_time === true ) {
@@ -658,7 +662,7 @@ function mybooking_submit( submit_form , bk_type, wpdev_active_locale){
658
  ( element.className.indexOf('wpdev-validates-as-required') !== -1 )
659
  && ( jQuery( element ).is( ':visible' ) ) //FixIn: 7.2.1.12.2 // Its prevent of saving hints, and some other hidden element
660
  && ( ! jQuery(':radio[name="'+element.name+'"]', submit_form).is(":checked") ) ) {
661
- showErrorMessage( element , message_verif_requred_for_radio_box);
662
  return;
663
  }
664
  continue;
@@ -701,25 +705,25 @@ function mybooking_submit( submit_form , bk_type, wpdev_active_locale){
701
  var reg = /^\d{10}$/;
702
  var message_verif_phone = "Please enter correctly phone number";
703
  if ( inp_value != '' )
704
- if(reg.test(inp_value) == false) {showErrorMessage( element , message_verif_phone);return;}
705
  }*/
706
 
707
  // Validation Check --- Requred fields
708
  if ( element.className.indexOf('wpdev-validates-as-required') !== -1 ){
709
  if ((element.type =='checkbox') && ( element.checked === false)) {
710
  if ( ! jQuery(':checkbox[name="'+element.name+'"]', submit_form).is(":checked") ) {
711
- showErrorMessage( element , message_verif_requred_for_check_box);
712
  return;
713
  }
714
  }
715
  if (element.type =='radio') {
716
  if ( ! jQuery(':radio[name="'+element.name+'"]', submit_form).is(":checked") ) {
717
- showErrorMessage( element , message_verif_requred_for_radio_box);
718
  return;
719
  }
720
  }
721
  if ( (element.type !='checkbox') && (element.type !='radio') && ( jQuery.trim(inp_value) === '')) { //FixIn:7.0.1.39
722
- showErrorMessage( element , message_verif_requred);
723
  return;
724
  }
725
  }
@@ -729,7 +733,10 @@ function mybooking_submit( submit_form , bk_type, wpdev_active_locale){
729
  inp_value = inp_value.replace(/^\s+|\s+$/gm,''); // Trim white space //FixIn: 5.4.5
730
  var reg = /^([A-Za-z0-9_\-\.\+])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,})$/;
731
  if ( inp_value != '' )
732
- if(reg.test(inp_value) == false) {showErrorMessage( element , message_verif_emeil);return;}
 
 
 
733
  }
734
 
735
  // Validation Check --- Same Email Field
@@ -745,7 +752,8 @@ function mybooking_submit( submit_form , bk_type, wpdev_active_locale){
745
 
746
  // Recheck the values of the both emails, if they do not equla show warning
747
  if ( jQuery('[name="' + primary_email_name + bk_type + '"]').val() !== inp_value ) {
748
- showErrorMessage( element , message_verif_same_emeil );return;
 
749
  }
750
  }
751
  }
@@ -967,13 +975,16 @@ function send_ajax_submit(bk_type,formdata,captcha_chalange,user_captcha,is_send
967
  ////////////////////////////////////////////////////////////////////////////
968
 
969
  // Show Error Message in Booking Form at Front End
970
- function showErrorMessage( element , errorMessage) {
971
  //FixIn: 8.4.0.2
972
  // if(typeof( bk_form_step_click ) == 'function') {
973
  // bk_form_step_click(); // rollback to 1st step, if system will show warning and booking form is using this customization: in the Exmaple #2 here: https://wpbookingcalendar.com/faq/customize-booking-form-for-having-several-steps-of-reservation/
974
  // }
975
-
976
- makeScroll( element );
 
 
 
977
 
978
  jQuery("[name='"+ element.name +"']")
979
  .fadeOut( 350 ).fadeIn( 300 )
@@ -1249,6 +1260,7 @@ function wpbc_check_errors_in_booking_form( bk_type ) {
1249
  // Show Warning only if the calendar visible ( we are at step with calendar)
1250
  if ( ( jQuery( '#calendar_booking' + bk_type ).is( ':visible' ) ) && ( '' == jQuery( el ).val() ) ) { //FixIn: 8.4.4.5
1251
  showMessageUnderElement( '#date_booking' + bk_type, message_verif_selectdts, '' );
 
1252
  is_error_in_field = true; // Error
1253
  }
1254
  }
@@ -1264,7 +1276,7 @@ function wpbc_check_errors_in_booking_form( bk_type ) {
1264
  if ( 'checkbox' == jQuery( el ).attr( 'type' ) ){
1265
 
1266
  if ( !jQuery( el ).is( ':checked' ) ){
1267
- showErrorMessage( el, message_verif_requred_for_check_box );
1268
  is_error_in_field = true; // Error
1269
  }
1270
 
@@ -1272,7 +1284,7 @@ function wpbc_check_errors_in_booking_form( bk_type ) {
1272
  } else if ( 'radio' == jQuery( el ).attr( 'type' ) ){
1273
 
1274
  if ( !jQuery( ':radio[name="' + jQuery( el ).attr( 'name' ) + '"]', my_form ).is( ':checked' ) ){
1275
- showErrorMessage( el, message_verif_requred_for_radio_box );
1276
  is_error_in_field = true; // Error
1277
  }
1278
 
@@ -1282,7 +1294,7 @@ function wpbc_check_errors_in_booking_form( bk_type ) {
1282
  var inp_value = jQuery( el ).val();
1283
 
1284
  if ( '' === jQuery.trim( inp_value ) ){
1285
- showErrorMessage( el, message_verif_requred );
1286
  is_error_in_field = true; // Error
1287
  }
1288
  }
@@ -1294,7 +1306,7 @@ function wpbc_check_errors_in_booking_form( bk_type ) {
1294
  inp_value = inp_value.replace( /^\s+|\s+$/gm, '' ); // Trim white space //FixIn: 5.4.5
1295
  var reg = /^([A-Za-z0-9_\-\.\+])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,})$/;
1296
  if ( (inp_value != '') && (reg.test( inp_value ) == false) ){
1297
- showErrorMessage( el, message_verif_emeil );
1298
  is_error_in_field = true; // Error
1299
  }
1300
  }
@@ -1322,7 +1334,7 @@ function wpbc_check_errors_in_booking_form( bk_type ) {
1322
  var inp_value = jQuery( el ).val();
1323
 
1324
  if ( ( inp_value != '' ) && ( regex.test( inp_value ) == false ) ){
1325
- showErrorMessage( el, message_verif_phone );
1326
  is_error_in_field = true; // Error
1327
  }
1328
  }
@@ -1337,7 +1349,7 @@ function wpbc_check_errors_in_booking_form( bk_type ) {
1337
  var inp_value = jQuery( el ).val();
1338
 
1339
  if ( ( inp_value != '' ) && ( regex.test( inp_value ) == false ) ){
1340
- showErrorMessage( el, message_verif_phone );
1341
  is_error_in_field = true; // Error
1342
  }
1343
  }
@@ -1361,7 +1373,7 @@ function wpbc_check_errors_in_booking_form( bk_type ) {
1361
  var inp_value = jQuery( el ).val();
1362
 
1363
  if ( ( inp_value != '' ) && ( regex.test( inp_value ) == false ) ){
1364
- showErrorMessage( el, message_verif_phone );
1365
  is_error_in_field = true; // Error
1366
  }
1367
  }
290
  time_return_value[ 1 ] = time_return_value[ 1 ].replace( "date2approve", "" );
291
  }
292
  }
293
+ var is_exist_check_in_out_for_parent_resource = Math.max( checkin_days_count[0], checkout_days_count[0] );
294
+ //FixIn: 8.4.7.29
295
+ if ( ! wpdev_in_array( parent_booking_resources, bk_type ) ) {
296
+ is_exist_check_in_out_for_parent_resource = 0;
297
+ }
298
 
299
  if ( ( time_return_value !== false ) && ( is_exist_check_in_out_for_parent_resource == 0 ) ) { // Check this only for single booking resources - is_exist_check_in_out_for_parent_resource == 0
300
  if ( is_booking_used_check_in_out_time === true ) {
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;
667
  }
668
  continue;
705
  var reg = /^\d{10}$/;
706
  var message_verif_phone = "Please enter correctly phone number";
707
  if ( inp_value != '' )
708
+ if(reg.test(inp_value) == false) {showErrorMessage( element , message_verif_phone, false );return;}
709
  }*/
710
 
711
  // Validation Check --- Requred fields
712
  if ( element.className.indexOf('wpdev-validates-as-required') !== -1 ){
713
  if ((element.type =='checkbox') && ( element.checked === false)) {
714
  if ( ! jQuery(':checkbox[name="'+element.name+'"]', submit_form).is(":checked") ) {
715
+ showErrorMessage( element , message_verif_requred_for_check_box, false ); //FixIn: 8.5.1.3
716
  return;
717
  }
718
  }
719
  if (element.type =='radio') {
720
  if ( ! jQuery(':radio[name="'+element.name+'"]', submit_form).is(":checked") ) {
721
+ showErrorMessage( element , message_verif_requred_for_radio_box, false ); //FixIn: 8.5.1.3
722
  return;
723
  }
724
  }
725
  if ( (element.type !='checkbox') && (element.type !='radio') && ( jQuery.trim(inp_value) === '')) { //FixIn:7.0.1.39
726
+ showErrorMessage( element , message_verif_requred, false ); //FixIn: 8.5.1.3
727
  return;
728
  }
729
  }
733
  inp_value = inp_value.replace(/^\s+|\s+$/gm,''); // Trim white space //FixIn: 5.4.5
734
  var reg = /^([A-Za-z0-9_\-\.\+])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,})$/;
735
  if ( inp_value != '' )
736
+ if(reg.test(inp_value) == false) {
737
+ showErrorMessage( element , message_verif_emeil, false ); //FixIn: 8.5.1.3
738
+ return;
739
+ }
740
  }
741
 
742
  // Validation Check --- Same Email Field
752
 
753
  // Recheck the values of the both emails, if they do not equla show warning
754
  if ( jQuery('[name="' + primary_email_name + bk_type + '"]').val() !== inp_value ) {
755
+ showErrorMessage( element , message_verif_same_emeil , false ); //FixIn: 8.5.1.3
756
+ return;
757
  }
758
  }
759
  }
975
  ////////////////////////////////////////////////////////////////////////////
976
 
977
  // Show Error Message in Booking Form at Front End
978
+ function showErrorMessage( element , errorMessage , isScrollStop ) { //FixIn: 8.5.1.3
979
  //FixIn: 8.4.0.2
980
  // if(typeof( bk_form_step_click ) == 'function') {
981
  // bk_form_step_click(); // rollback to 1st step, if system will show warning and booking form is using this customization: in the Exmaple #2 here: https://wpbookingcalendar.com/faq/customize-booking-form-for-having-several-steps-of-reservation/
982
  // }
983
+
984
+ //FixIn: 8.5.1.3
985
+ if ( ! isScrollStop ){
986
+ makeScroll( element );
987
+ }
988
 
989
  jQuery("[name='"+ element.name +"']")
990
  .fadeOut( 350 ).fadeIn( 300 )
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
1265
  }
1266
  }
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
  }
1282
 
1284
  } else if ( 'radio' == jQuery( el ).attr( 'type' ) ){
1285
 
1286
  if ( !jQuery( ':radio[name="' + jQuery( el ).attr( 'name' ) + '"]', my_form ).is( ':checked' ) ){
1287
+ showErrorMessage( el, message_verif_requred_for_radio_box, is_error_in_field );
1288
  is_error_in_field = true; // Error
1289
  }
1290
 
1294
  var inp_value = jQuery( el ).val();
1295
 
1296
  if ( '' === jQuery.trim( inp_value ) ){
1297
+ showErrorMessage( el, message_verif_requred, is_error_in_field );
1298
  is_error_in_field = true; // Error
1299
  }
1300
  }
1306
  inp_value = inp_value.replace( /^\s+|\s+$/gm, '' ); // Trim white space //FixIn: 5.4.5
1307
  var reg = /^([A-Za-z0-9_\-\.\+])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,})$/;
1308
  if ( (inp_value != '') && (reg.test( inp_value ) == false) ){
1309
+ showErrorMessage( el, message_verif_emeil, is_error_in_field );
1310
  is_error_in_field = true; // Error
1311
  }
1312
  }
1334
  var inp_value = jQuery( el ).val();
1335
 
1336
  if ( ( inp_value != '' ) && ( regex.test( inp_value ) == false ) ){
1337
+ showErrorMessage( el, message_verif_phone, is_error_in_field );
1338
  is_error_in_field = true; // Error
1339
  }
1340
  }
1349
  var inp_value = jQuery( el ).val();
1350
 
1351
  if ( ( inp_value != '' ) && ( regex.test( inp_value ) == false ) ){
1352
+ showErrorMessage( el, message_verif_phone, is_error_in_field );
1353
  is_error_in_field = true; // Error
1354
  }
1355
  }
1373
  var inp_value = jQuery( el ).val();
1374
 
1375
  if ( ( inp_value != '' ) && ( regex.test( inp_value ) == false ) ){
1376
+ showErrorMessage( el, message_verif_phone, is_error_in_field );
1377
  is_error_in_field = true; // Error
1378
  }
1379
  }
js/wpbc-migrate.js CHANGED
@@ -1,6 +1,46 @@
1
  (function() {
 
2
  var matched, browser;
3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  // Use of jQuery.browser is frowned upon.
5
  // More details: http://api.jquery.com/jQuery.browser
6
  // jQuery.uaMatch maintained for back-compat
@@ -39,4 +79,5 @@
39
  //jQuery.migrateMute = true;
40
 
41
  jQuery.browser = browser;
 
42
  })();
1
  (function() {
2
+
3
  var matched, browser;
4
 
5
+ jQuery.uaMatch = function( ua ) {
6
+ ua = ua.toLowerCase();
7
+
8
+ var match = /(chrome)[ \/]([\w.]+)/.exec( ua ) ||
9
+ /(webkit)[ \/]([\w.]+)/.exec( ua ) ||
10
+ /(opera)(?:.*version|)[ \/]([\w.]+)/.exec( ua ) ||
11
+ /(msie)[\s?]([\w.]+)/.exec( ua ) ||
12
+ /(trident)(?:.*? rv:([\w.]+)|)/.exec( ua ) ||
13
+ ua.indexOf("compatible") < 0 && /(mozilla)(?:.*? rv:([\w.]+)|)/.exec( ua ) ||
14
+ [];
15
+
16
+ return {
17
+ browser: match[ 1 ] || "",
18
+ version: match[ 2 ] || "0"
19
+ };
20
+ };
21
+
22
+ matched = jQuery.uaMatch( navigator.userAgent );
23
+ //IE 11+ fix (Trident)
24
+ matched.browser = matched.browser == 'trident' ? 'msie' : matched.browser;
25
+ browser = {};
26
+
27
+ if ( matched.browser ) {
28
+ browser[ matched.browser ] = true;
29
+ browser.version = matched.version;
30
+ }
31
+
32
+ // Chrome is Webkit, but Webkit is also Safari.
33
+ if ( browser.chrome ) {
34
+ browser.webkit = true;
35
+ } else if ( browser.webkit ) {
36
+ browser.safari = true;
37
+ }
38
+
39
+ jQuery.browser = browser;
40
+
41
+
42
+ /* var matched, browser;
43
+
44
  // Use of jQuery.browser is frowned upon.
45
  // More details: http://api.jquery.com/jQuery.browser
46
  // jQuery.uaMatch maintained for back-compat
79
  //jQuery.migrateMute = true;
80
 
81
  jQuery.browser = browser;
82
+ */
83
  })();
js/wpbc_times.js CHANGED
@@ -366,7 +366,7 @@ function wpbc_is_time_field_in_booking_form( resource_id, form_elements ){
366
  var my_element = element.name; //.toString();
367
  if ( my_element.indexOf( 'rangetime' ) !== -1 ){ // Range Time
368
  if ( element.value == '' ){ //FixIn: 7.0.Beta.19
369
- showErrorMessage( element, message_verif_requred );
370
  return true;
371
  }
372
  var my_rangetime = element.value.split( '-' );
@@ -818,6 +818,7 @@ function wpbc_is_time_field_in_booking_form( resource_id, form_elements ){
818
  }
819
 
820
 
 
821
  // Disable Booked Time Slots in selectbox
822
  function bkDisableBookedTimeSlots( all_dates, bk_type ){
823
 
@@ -830,6 +831,10 @@ function wpbc_is_time_field_in_booking_form( resource_id, form_elements ){
830
  var start_time_slot_field_name = 'select[name="starttime' + bk_type + '"]';
831
  var start_time_slot_field_name2 = 'select[name="starttime' + bk_type + '[]"]';
832
 
 
 
 
 
833
  // HERE WE WILL DISABLE ALL OPTIONS IN RANGE TIME INTERVALS FOR SINGLE DAYS SELECTIONS FOR THAT DAYS WHERE HOURS ALREADY BOOKED
834
  //here is not range selections
835
  all_dates = get_first_day_of_selection( all_dates );
@@ -839,8 +844,14 @@ function wpbc_is_time_field_in_booking_form( resource_id, form_elements ){
839
  td_class = (current_single_day_selections[ 1 ] * 1) + '-' + (current_single_day_selections[ 0 ] * 1) + '-' + (current_single_day_selections[ 2 ] * 1);
840
  var times_array = [];
841
 
842
- jQuery( time_slot_field_name + ' option:disabled,' + time_slot_field_name2 + ' option:disabled,' + start_time_slot_field_name + ' option:disabled,' + start_time_slot_field_name2 + ' option:disabled' ).removeClass( 'booked' ); // Remove class "booked"
843
- jQuery( time_slot_field_name + ' option:disabled,' + time_slot_field_name2 + ' option:disabled,' + start_time_slot_field_name + ' option:disabled,' + start_time_slot_field_name2 + ' option:disabled' ).removeAttr( 'disabled' ); // Make active all times
 
 
 
 
 
 
844
 
845
 
846
  if ( jQuery( time_slot_field_name + ',' + time_slot_field_name2 + ',' + start_time_slot_field_name + ',' + start_time_slot_field_name2 ).length == 0 ) return; // WE DO NOT HAVE RANGE SELECTIONS AT THIS FORM SO JUST RETURN
@@ -899,36 +910,57 @@ function wpbc_is_time_field_in_booking_form( resource_id, form_elements ){
899
  }
900
  }
901
 
902
- var removed_time_slots = is_time_slot_booked_for_this_time_array( bk_type, times_array, td_class );
903
- var my_time_value = jQuery( time_slot_field_name + ' option,' + time_slot_field_name2 + ' option,' + start_time_slot_field_name + ' option,' + start_time_slot_field_name2 + ' option' );
904
 
905
- for ( j = 0; j < my_time_value.length; j++ ){
906
- if ( wpdev_in_array( removed_time_slots, j ) ){
907
- jQuery( time_slot_field_name + ' option:eq(' + j + '),' + time_slot_field_name2 + ' option:eq(' + j + '),' + start_time_slot_field_name + ' option:eq(' + j + '),' + start_time_slot_field_name2 + ' option:eq(' + j + ')' ).attr( 'disabled', 'disabled' ); // Make disable some options
908
- jQuery( time_slot_field_name + ' option:eq(' + j + '),' + time_slot_field_name2 + ' option:eq(' + j + '),' + start_time_slot_field_name + ' option:eq(' + j + '),' + start_time_slot_field_name2 + ' option:eq(' + j + ')' ).addClass( 'booked' ); // Add "booked" CSS class
909
- if ( jQuery( time_slot_field_name + ' option:eq(' + j + '),' + time_slot_field_name2 + ' option:eq(' + j + '),' + start_time_slot_field_name + ' option:eq(' + j + '),' + start_time_slot_field_name2 + ' option:eq(' + j + ')' ).attr( 'selected' ) ){ // iF THIS ELEMENT IS SELECTED SO REMOVE IT FROM THIS TIME
910
- jQuery( time_slot_field_name + ' option:eq(' + j + '),' + time_slot_field_name2 + ' option:eq(' + j + '),' + start_time_slot_field_name + ' option:eq(' + j + '),' + start_time_slot_field_name2 + ' option:eq(' + j + ')' ).removeAttr( 'selected' );
911
 
912
- if ( IEversion_4_bk == 7 ){ // Emulate disabling option in selectboxes for IE7 - its set selected option, which is not disabled
913
 
914
- var rangetime_element = document.getElementsByName( "rangetime" + bk_type );
915
- if ( typeof(rangetime_element) != 'undefined' && rangetime_element != null ){
916
- set_selected_first_not_disabled_option_IE7( document.getElementsByName( "rangetime" + bk_type )[ 0 ] );
917
- }
918
 
919
- var start_element = document.getElementsByName( "starttime" + bk_type );
920
- if ( typeof(start_element) != 'undefined' && start_element != null ){
921
- set_selected_first_not_disabled_option_IE7( document.getElementsByName( "starttime" + bk_type )[ 0 ] );
922
- }
 
 
 
 
 
 
 
 
923
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
924
  }
925
  }
926
  }
 
927
  }
928
 
929
  if ( IEversion_4_bk == 7 ){ // Emulate disabling option in selectboxes for IE7 - its set grayed text options, which is disabled
930
  emulate_disabled_options_to_gray_IE7( "rangetime" + bk_type );
931
  emulate_disabled_options_to_gray_IE7( "starttime" + bk_type );
 
932
  }
933
  }
934
 
@@ -1005,28 +1037,15 @@ function wpbc_is_time_field_in_booking_form( resource_id, form_elements ){
1005
  }
1006
  }
1007
 
 
 
1008
 
1009
- function is_time_slot_booked_for_this_time_array( bk_type, times_array, td_class ) {
1010
-
1011
- var time_slot_field_name = 'select[name="rangetime' + bk_type + '"]';
1012
- var time_slot_field_name2 = 'select[name="rangetime' + bk_type + '[]"]';
1013
- // Get rangetime element from possible conditional section //FixIn: 7.0.Beta.11
1014
- if ( typeof(wpbc_get_conditional_section_id_for_weekday) == 'function' ){
1015
- var conditional_field_element_id = wpbc_get_conditional_section_id_for_weekday( td_class, bk_type );
1016
- if ( conditional_field_element_id !== false ){
1017
- time_slot_field_name = conditional_field_element_id + ' ' + 'select[name="rangetime' + bk_type + '"]';
1018
- time_slot_field_name2 = conditional_field_element_id + ' ' + 'select[name="rangetime' + bk_type + '[]"]';
1019
- }
1020
- }
1021
-
1022
- var start_time_slot_field_name = 'select[name="starttime' + bk_type + '"]';
1023
- var start_time_slot_field_name2 = 'select[name="starttime' + bk_type + '[]"]';
1024
- // Get rangetime element from possible conditional section //FixIn: 7.0.Beta.11
1025
  if ( typeof(wpbc_get_conditional_section_id_for_weekday) == 'function' ){
1026
  var conditional_field_element_id = wpbc_get_conditional_section_id_for_weekday( td_class, bk_type );
1027
  if ( conditional_field_element_id !== false ){
1028
- start_time_slot_field_name = conditional_field_element_id + ' ' + 'select[name="starttime' + bk_type + '"]';
1029
- start_time_slot_field_name2 = conditional_field_element_id + ' ' + 'select[name="starttime' + bk_type + '[]"]';
1030
  }
1031
  }
1032
 
@@ -1065,7 +1084,7 @@ function wpbc_is_time_field_in_booking_form( resource_id, form_elements ){
1065
 
1066
  if ( s == 2 ){
1067
  my_range_time = times_array[ i - 1 ][ 0 ] + ':' + times_array[ i - 1 ][ 1 ] + ' - ' + times_array[ i ][ 0 ] + ':' + times_array[ i ][ 1 ];
1068
- my_time_value = jQuery( time_slot_field_name + ' option,' + time_slot_field_name2 + ' option,' + start_time_slot_field_name + ' option,' + start_time_slot_field_name2 + ' option' );
1069
 
1070
  for ( j = 0; j < my_time_value.length; j++ ){
1071
 
@@ -1241,7 +1260,7 @@ function wpbc_is_time_field_in_booking_form( resource_id, form_elements ){
1241
  if ( ( my_start_time_options.length > 0 )
1242
  && ( ( bk_days_selection_mode == 'single' ) || ( bk_days_selection_mode == 'multiple' ) )
1243
  ){ // Only if range selections exist and we are have single days selections
1244
- var removed_time_slots = is_time_slot_booked_for_this_time_array( bk_type, times_array, td_class );
1245
  var some_exist_time_slots = [];
1246
  var my_time_value = jQuery( start_time_fields + ' option,'+start_time_fields2 + ' option');
1247
 
@@ -1260,7 +1279,7 @@ function wpbc_is_time_field_in_booking_form( resource_id, form_elements ){
1260
  if ( ( my_timerange_value.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 );
1264
  var some_exist_time_slots = [];
1265
  var my_time_value = jQuery( time_slot_field_name + ' option,'+time_slot_field_name2 + ' option');
1266
 
366
  var my_element = element.name; //.toString();
367
  if ( my_element.indexOf( 'rangetime' ) !== -1 ){ // Range Time
368
  if ( element.value == '' ){ //FixIn: 7.0.Beta.19
369
+ showErrorMessage( element, message_verif_requred , false ); //FixIn: 8.5.1.3
370
  return true;
371
  }
372
  var my_rangetime = element.value.split( '-' );
818
  }
819
 
820
 
821
+ //FixIn: 8.4.7.6
822
  // Disable Booked Time Slots in selectbox
823
  function bkDisableBookedTimeSlots( all_dates, bk_type ){
824
 
831
  var start_time_slot_field_name = 'select[name="starttime' + bk_type + '"]';
832
  var start_time_slot_field_name2 = 'select[name="starttime' + bk_type + '[]"]';
833
 
834
+ var end_time_slot_field_name = 'select[name="endtime' + bk_type + '"]';
835
+ var end_time_slot_field_name2 = 'select[name="endtime' + bk_type + '[]"]';
836
+
837
+
838
  // HERE WE WILL DISABLE ALL OPTIONS IN RANGE TIME INTERVALS FOR SINGLE DAYS SELECTIONS FOR THAT DAYS WHERE HOURS ALREADY BOOKED
839
  //here is not range selections
840
  all_dates = get_first_day_of_selection( all_dates );
844
  td_class = (current_single_day_selections[ 1 ] * 1) + '-' + (current_single_day_selections[ 0 ] * 1) + '-' + (current_single_day_selections[ 2 ] * 1);
845
  var times_array = [];
846
 
847
+ jQuery( time_slot_field_name + ' option:disabled,' + time_slot_field_name2 + ' option:disabled,'
848
+ + start_time_slot_field_name + ' option:disabled,' + start_time_slot_field_name2 + ' option:disabled,'
849
+ + end_time_slot_field_name + ' option:disabled,' + end_time_slot_field_name2 + ' option:disabled'
850
+ ).removeClass( 'booked' ); // Remove class "booked"
851
+ jQuery( time_slot_field_name + ' option:disabled,' + time_slot_field_name2 + ' option:disabled,'
852
+ + start_time_slot_field_name + ' option:disabled,' + start_time_slot_field_name2 + ' option:disabled,'
853
+ + end_time_slot_field_name + ' option:disabled,' + end_time_slot_field_name2 + ' option:disabled'
854
+ ).removeAttr( 'disabled' ); // Make active all times
855
 
856
 
857
  if ( jQuery( time_slot_field_name + ',' + time_slot_field_name2 + ',' + start_time_slot_field_name + ',' + start_time_slot_field_name2 ).length == 0 ) return; // WE DO NOT HAVE RANGE SELECTIONS AT THIS FORM SO JUST RETURN
910
  }
911
  }
912
 
 
 
913
 
914
+ var check_times_fields=[
915
+ [ time_slot_field_name, time_slot_field_name2 ],
916
+ [ start_time_slot_field_name, start_time_slot_field_name2 ],
917
+ [ end_time_slot_field_name, end_time_slot_field_name2 ]
918
+ ];
 
919
 
 
920
 
921
+ for ( var ctf= 0; ctf < check_times_fields.length; ctf++ ){
 
 
 
922
 
923
+ var time_field_to_check = check_times_fields[ ctf ];
924
+
925
+ //TODO: continue here with time_field_to_check
926
+ var removed_time_slots = is_time_slot_booked_for_this_time_array( bk_type, times_array, td_class , time_field_to_check );
927
+ //console.log( 'removed_time_slots', removed_time_slots );
928
+
929
+ var my_time_value = jQuery( time_field_to_check[ 0 ] + ' option,' + time_field_to_check[ 1 ] + ' option' );
930
+
931
+ for ( j = 0; j < my_time_value.length; j++ ){
932
+ if ( wpdev_in_array( removed_time_slots, j ) ){
933
+ jQuery( time_field_to_check[ 0 ] + ' option:eq(' + j + '),' + time_field_to_check[ 1 ] + ' option:eq(' + j + ')' ).attr( 'disabled', 'disabled' ); // Make disable some options
934
+ jQuery( time_field_to_check[ 0 ] + ' option:eq(' + j + '),' + time_field_to_check[ 1 ] + ' option:eq(' + j + ')' ).addClass( 'booked' ); // Add "booked" CSS class
935
 
936
+ if (
937
+ jQuery( time_field_to_check[ 0 ] + ' option:eq(' + j + '),' + time_field_to_check[ 1 ] + ' option:eq(' + j + ')' ).attr( 'selected' )
938
+ ){ // iF THIS ELEMENT IS SELECTED SO REMOVE IT FROM THIS TIME
939
+ jQuery( time_field_to_check[ 0 ] + ' option:eq(' + j + '),' + time_field_to_check[ 1 ] + ' option:eq(' + j + ')' ).removeAttr( 'selected' );
940
+
941
+ if ( IEversion_4_bk == 7 ){ // Emulate disabling option in selectboxes for IE7 - its set selected option, which is not disabled
942
+
943
+ var rangetime_element = document.getElementsByName( "rangetime" + bk_type );
944
+ if ( typeof (rangetime_element) != 'undefined' && rangetime_element != null ){
945
+ set_selected_first_not_disabled_option_IE7( document.getElementsByName( "rangetime" + bk_type )[ 0 ] );
946
+ }
947
+
948
+ var start_element = document.getElementsByName( "starttime" + bk_type );
949
+ if ( typeof (start_element) != 'undefined' && start_element != null ){
950
+ set_selected_first_not_disabled_option_IE7( document.getElementsByName( "starttime" + bk_type )[ 0 ] );
951
+ }
952
+
953
+ }
954
  }
955
  }
956
  }
957
+
958
  }
959
 
960
  if ( IEversion_4_bk == 7 ){ // Emulate disabling option in selectboxes for IE7 - its set grayed text options, which is disabled
961
  emulate_disabled_options_to_gray_IE7( "rangetime" + bk_type );
962
  emulate_disabled_options_to_gray_IE7( "starttime" + bk_type );
963
+ emulate_disabled_options_to_gray_IE7( "endtime" + bk_type );
964
  }
965
  }
966
 
1037
  }
1038
  }
1039
 
1040
+ //FixIn: 8.4.7.6
1041
+ function is_time_slot_booked_for_this_time_array( bk_type, times_array, td_class, time_field_to_check ) {
1042
 
1043
+ // Get time element from possible conditional section //FixIn: 7.0.Beta.11
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1044
  if ( typeof(wpbc_get_conditional_section_id_for_weekday) == 'function' ){
1045
  var conditional_field_element_id = wpbc_get_conditional_section_id_for_weekday( td_class, bk_type );
1046
  if ( conditional_field_element_id !== false ){
1047
+ time_field_to_check[ 0 ] = conditional_field_element_id + ' ' + time_field_to_check[ 0 ];
1048
+ time_field_to_check[ 1 ] = conditional_field_element_id + ' ' + time_field_to_check[ 1 ];
1049
  }
1050
  }
1051
 
1084
 
1085
  if ( s == 2 ){
1086
  my_range_time = times_array[ i - 1 ][ 0 ] + ':' + times_array[ i - 1 ][ 1 ] + ' - ' + times_array[ i ][ 0 ] + ':' + times_array[ i ][ 1 ];
1087
+ my_time_value = jQuery( time_field_to_check[ 0 ] + ' option,' + time_field_to_check[ 1 ] + ' option' );
1088
 
1089
  for ( j = 0; j < my_time_value.length; j++ ){
1090
 
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 = [];
1265
  var my_time_value = jQuery( start_time_fields + ' option,'+start_time_fields2 + ' option');
1266
 
1279
  if ( ( my_timerange_value.length > 0 )
1280
  && ( ( bk_days_selection_mode == 'single' ) || ( bk_days_selection_mode == 'multiple' ) )
1281
  ){ // Only if range selections exist and we are have single days selections
1282
+ var removed_time_slots = is_time_slot_booked_for_this_time_array( bk_type, times_array, td_class, [ time_slot_field_name, time_slot_field_name2 ] );
1283
  var some_exist_time_slots = [];
1284
  var my_time_value = jQuery( time_slot_field_name + ' option,'+time_slot_field_name2 + ' option');
1285
 
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 ADDED
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: 2018-09-23 09:30+0300\n"
7
  "PO-Revision-Date: \n"
8
  "Last-Translator: wpdevelop <info@wpdevelop.com>\n"
9
  "Language-Team: wpdevelop <info@wpbookingcalendar.com>\n"
@@ -34,8 +34,9 @@ msgstr ""
34
  msgid "year(s)"
35
  msgstr ""
36
 
37
- #: core/admin/api-settings.php:94 core/lib/wpbc_all_translations.php:5
38
- msgid "Number of months"
 
39
  msgstr ""
40
 
41
  #: core/admin/api-settings.php:95 core/lib/wpbc_all_translations.php:6
@@ -129,16 +130,16 @@ msgstr ""
129
  msgid "Show partially booked days with same background as in legend item"
130
  msgstr ""
131
 
132
- #: core/admin/api-settings.php:164 core/admin/api-settings.php:301 core/admin/api-settings.php:461
133
- #: core/admin/api-settings.php:496 core/admin/api-settings.php:804
134
- #: core/admin/page-ics-export.php:467 core/admin/wpbc-class-timeline.php:2317
135
  #: core/lib/wpbc_all_translations.php:21 inc/_bl/admin/api-settings-l.php:179
136
  #: inc/_bl/admin/api-settings-l.php:185 inc/_bl/admin/api-settings-l.php:216
137
- #: inc/gateways/page-gateways.php:177 js/wpbc-gutenberg.js:961
138
  msgid "Note"
139
  msgstr ""
140
 
141
- #: core/admin/api-settings.php:165 core/admin/api-settings.php:462
142
  #: core/lib/wpbc_all_translations.php:22
143
  msgid "Partially booked item - day, which is booked for the specific time-slot(s)."
144
  msgstr ""
@@ -163,11 +164,11 @@ msgstr ""
163
  msgid "Simple"
164
  msgstr ""
165
 
166
- #: core/admin/api-settings.php:275 core/admin/wpbc-toolbar-tiny.php:239
167
- #: core/admin/wpbc-toolbar-tiny.php:697 core/admin/wpbc-toolbar-tiny.php:1198
168
- #: core/admin/wpbc-toolbar-tiny.php:1614 core/lib/wpbc_all_translations.php:28
169
  #: inc/_bm/m-toolbar.php:29 inc/_bm/m-toolbar.php:113 inc/_bm/m-toolbar.php:392
170
- #: inc/_ps/lib_p.php:264 js/wpbc-gutenberg.js:529
171
  msgid "Booking Form"
172
  msgstr ""
173
 
@@ -177,127 +178,137 @@ msgid ""
177
  "Settings - Form page."
178
  msgstr ""
179
 
180
- #: core/admin/api-settings.php:283 core/lib/wpbc_all_translations.php:30
 
 
 
 
 
 
 
 
 
 
181
  #: inc/_ps/form/class-wpbc-form-help.php:194
182
  msgid "CAPTCHA"
183
  msgstr ""
184
 
185
- #: core/admin/api-settings.php:284 core/lib/wpbc_all_translations.php:31
186
  msgid "Check the box to activate CAPTCHA inside the booking form."
187
  msgstr ""
188
 
189
- #: core/admin/api-settings.php:291 core/lib/wpbc_all_translations.php:32
190
  msgid "Auto-fill fields"
191
  msgstr ""
192
 
193
- #: core/admin/api-settings.php:292 core/lib/wpbc_all_translations.php:33
194
  msgid "Check the box to activate auto-fill form fields for logged in users."
195
  msgstr ""
196
 
197
- #: core/admin/api-settings.php:299 core/lib/wpbc_all_translations.php:34
198
  msgid "Use CSS BootStrap"
199
  msgstr ""
200
 
201
- #: core/admin/api-settings.php:300 core/lib/wpbc_all_translations.php:35
202
  msgid "Using BootStrap CSS for the form fields"
203
  msgstr ""
204
 
205
- #: core/admin/api-settings.php:301 core/lib/wpbc_all_translations.php:36
206
  msgid "You must not deactivate loading BootStrap files at advanced section of these settings!"
207
  msgstr ""
208
 
209
- #: core/admin/api-settings.php:311 core/lib/wpbc_all_translations.php:37
210
  msgid "Show legend below calendar"
211
  msgstr ""
212
 
213
- #: core/admin/api-settings.php:312 core/lib/wpbc_all_translations.php:38
214
  msgid "Check this box to display a legend of dates below the booking calendar."
215
  msgstr ""
216
 
217
- #: core/admin/api-settings.php:324 core/lib/wpbc_all_translations.php:39
218
  msgid "Available item"
219
  msgstr ""
220
 
221
- #: core/admin/api-settings.php:338 core/lib/wpbc_all_translations.php:40
222
  #: core/wpbc-activation.php:1026
223
  msgid "Available"
224
  msgstr ""
225
 
226
- #: core/admin/api-settings.php:347 core/lib/wpbc_all_translations.php:41
227
  #, php-format
228
  msgid "Activate and type your %stitle of available%s item in legend"
229
  msgstr ""
230
 
231
- #: core/admin/api-settings.php:361 core/lib/wpbc_all_translations.php:42
232
  msgid "Pending item"
233
  msgstr ""
234
 
235
- #: core/admin/api-settings.php:375 core/admin/page-email-deny.php:558
236
- #: core/admin/wpbc-class-listing.php:328 core/admin/wpbc-class-listing.php:421
237
- #: core/admin/wpbc-toolbars.php:541 core/admin/wpbc-toolbars.php:956
238
- #: core/lib/wpbc_all_translations.php:43 core/wpbc-activation.php:1030 inc/_bs/lib_s.php:322
239
- #: inc/_ps/personal.php:338 inc/_ps/wpbc-print.php:119
240
  msgid "Pending"
241
  msgstr ""
242
 
243
- #: core/admin/api-settings.php:384 core/lib/wpbc_all_translations.php:44
244
  #, php-format
245
  msgid "Activate and type your %stitle of pending%s item in legend"
246
  msgstr ""
247
 
248
- #: core/admin/api-settings.php:398 core/lib/wpbc_all_translations.php:45
249
  msgid "Approved item"
250
  msgstr ""
251
 
252
- #: core/admin/api-settings.php:412 core/lib/wpbc_all_translations.php:46
253
  #: core/wpbc-activation.php:1034
254
  msgid "Booked"
255
  msgstr ""
256
 
257
- #: core/admin/api-settings.php:421 core/lib/wpbc_all_translations.php:47
258
  #, php-format
259
  msgid "Activate and type your %stitle of approved%s item in legend"
260
  msgstr ""
261
 
262
- #: core/admin/api-settings.php:436 core/lib/wpbc_all_translations.php:48
263
  msgid "Partially booked item"
264
  msgstr ""
265
 
266
- #: core/admin/api-settings.php:450 core/lib/wpbc_all_translations.php:49
267
  #: core/wpbc-activation.php:1040
268
  msgid "Partially booked"
269
  msgstr ""
270
 
271
- #: core/admin/api-settings.php:459 core/lib/wpbc_all_translations.php:50
272
  #, php-format
273
  msgid "Activate and type your %stitle of partially booked%s item in legend"
274
  msgstr ""
275
 
276
- #: core/admin/api-settings.php:484 core/lib/wpbc_all_translations.php:51
277
  msgid "Show date number in legend"
278
  msgstr ""
279
 
280
- #: core/admin/api-settings.php:485 core/lib/wpbc_all_translations.php:52
281
  msgid "Check this box to display today date number in legend cells. "
282
  msgstr ""
283
 
284
- #: core/admin/api-settings.php:493 core/lib/wpbc_all_translations.php:53
285
  msgid "Show \"Thank You\" message"
286
  msgstr ""
287
 
288
- #: core/admin/api-settings.php:494 core/lib/wpbc_all_translations.php:54
289
  msgid "Redirect visitor to a new \"Thank You\" page"
290
  msgstr ""
291
 
292
- #: core/admin/api-settings.php:496 core/lib/wpbc_all_translations.php:55
293
  msgid "This action will have no effect, if the payment form(s) is active!"
294
  msgstr ""
295
 
296
- #: core/admin/api-settings.php:501 core/lib/wpbc_all_translations.php:56
297
  msgid "Action after booking is done"
298
  msgstr ""
299
 
300
- #: core/admin/api-settings.php:510 core/lib/wpbc_all_translations.php:57
301
  #: core/wpbc-activation.php:867
302
  #, php-format
303
  msgid ""
@@ -305,122 +316,122 @@ msgid ""
305
  "possible."
306
  msgstr ""
307
 
308
- #: core/admin/api-settings.php:511 core/lib/wpbc_all_translations.php:58
309
  msgid "Message title"
310
  msgstr ""
311
 
312
- #: core/admin/api-settings.php:512 core/lib/wpbc_all_translations.php:59
313
  #, php-format
314
  msgid "Type title of message %safter booking has done by user%s"
315
  msgstr ""
316
 
317
- #: core/admin/api-settings.php:523 core/lib/wpbc_all_translations.php:60
318
  msgid "Time of message showing"
319
  msgstr ""
320
 
321
- #: core/admin/api-settings.php:524 core/lib/wpbc_all_translations.php:61
322
  msgid "Set duration of time (milliseconds) to show this message"
323
  msgstr ""
324
 
325
- #: core/admin/api-settings.php:551 core/lib/wpbc_all_translations.php:62
326
  msgid "URL of \"thank you\" page"
327
  msgstr ""
328
 
329
- #: core/admin/api-settings.php:567 core/lib/wpbc_all_translations.php:63
330
  #, php-format
331
  msgid "Type URL of %s\"Thank You\" page%s"
332
  msgstr ""
333
 
334
- #: core/admin/api-settings.php:579 core/lib/wpbc_all_translations.php:64 core/wpbc.php:137
335
  #: core/wpbc.php:138
336
  msgid "Bookings Listing"
337
  msgstr ""
338
 
339
- #: core/admin/api-settings.php:580 core/admin/page-timeline.php:45 core/admin/page-timeline.php:46
340
- #: core/admin/page-timeline.php:47 core/admin/wpbc-toolbars.php:474
341
- #: core/lib/wpbc_all_translations.php:65 core/wpbc-functions.php:1847
342
  msgid "Calendar Overview"
343
  msgstr ""
344
 
345
- #: core/admin/api-settings.php:585 core/lib/wpbc_all_translations.php:66
346
  msgid "Default booking admin page"
347
  msgstr ""
348
 
349
- #: core/admin/api-settings.php:586 core/lib/wpbc_all_translations.php:67
350
  msgid "Select your default view mode of bookings at the booking listing page"
351
  msgstr ""
352
 
353
- #: core/admin/api-settings.php:600 core/admin/wpbc-toolbar-tiny.php:392
354
- #: core/admin/wpbc-toolbars.php:1191 core/lib/wpbc_all_translations.php:68
355
  #: inc/_bl/admin/page-coupons.php:526
356
  msgid "Day"
357
  msgstr ""
358
 
359
- #: core/admin/api-settings.php:601 core/admin/wpbc-toolbar-tiny.php:393
360
- #: core/admin/wpbc-toolbars.php:1205 core/lib/wpbc_all_translations.php:69
361
  msgid "Week"
362
  msgstr ""
363
 
364
- #: core/admin/api-settings.php:602 core/admin/api-settings.php:609
365
- #: core/admin/wpbc-toolbar-tiny.php:395 core/admin/wpbc-toolbars.php:1140
366
- #: core/admin/wpbc-toolbars.php:1219 core/lib/wpbc_all_translations.php:70
367
  #: inc/_bl/admin/page-coupons.php:525
368
  msgid "Month"
369
  msgstr ""
370
 
371
- #: core/admin/api-settings.php:603 core/admin/wpbc-toolbar-tiny.php:397
372
- #: core/admin/wpbc-toolbars.php:1233 core/lib/wpbc_all_translations.php:71
373
  msgid "2 Months"
374
  msgstr ""
375
 
376
- #: core/admin/api-settings.php:604 core/admin/api-settings.php:610
377
- #: core/admin/wpbc-toolbar-tiny.php:399 core/admin/wpbc-toolbars.php:1154
378
  #: core/lib/wpbc_all_translations.php:72
379
  msgid "3 Months"
380
  msgstr ""
381
 
382
- #: core/admin/api-settings.php:605 core/admin/api-settings.php:611
383
- #: core/admin/wpbc-toolbar-tiny.php:400 core/admin/wpbc-toolbars.php:571
384
- #: core/admin/wpbc-toolbars.php:805 core/admin/wpbc-toolbars.php:1168
385
  #: core/lib/wpbc_all_translations.php:73 inc/_bl/admin/page-coupons.php:524
386
  msgid "Year"
387
  msgstr ""
388
 
389
- #: core/admin/api-settings.php:616 core/lib/wpbc_all_translations.php:74
390
  msgid "Default calendar view mode"
391
  msgstr ""
392
 
393
- #: core/admin/api-settings.php:617 core/lib/wpbc_all_translations.php:75
394
  msgid "Select your default calendar view mode at booking calendar overview page"
395
  msgstr ""
396
 
397
- #: core/admin/api-settings.php:627 core/lib/wpbc_all_translations.php:76
398
  msgid "Filter tab"
399
  msgstr ""
400
 
401
- #: core/admin/api-settings.php:628 core/lib/wpbc_all_translations.php:77
402
  msgid "Actions tab"
403
  msgstr ""
404
 
405
- #: core/admin/api-settings.php:633 core/lib/wpbc_all_translations.php:78
406
  msgid "Default toolbar tab"
407
  msgstr ""
408
 
409
- #: core/admin/api-settings.php:634 core/lib/wpbc_all_translations.php:79
410
  msgid "Select your default opened tab in toolbar at booking listing page"
411
  msgstr ""
412
 
413
- #: core/admin/api-settings.php:646 core/lib/wpbc_all_translations.php:80
414
  msgid "Bookings number per page"
415
  msgstr ""
416
 
417
- #: core/admin/api-settings.php:647 core/lib/wpbc_all_translations.php:81
418
  msgid "Select number of bookings per page in booking listing"
419
  msgstr ""
420
 
421
- #: core/admin/api-settings.php:654 core/admin/api-settings.php:655
422
- #: core/admin/wpbc-class-listing.php:122 core/admin/wpbc-toolbars.php:727
423
- #: core/admin/wpbc-toolbars.php:730 core/lib/wpbc_all_translations.php:82
424
  #: core/sync/wpbc-gcal-class.php:605 core/sync/wpbc-gcal-class.php:626
425
  #: inc/_bl/admin/page-coupons.php:495 inc/_bm/admin/page-availability.php:491
426
  #: inc/_bm/admin/page-availability.php:972 inc/_bm/admin/page-cost-rate.php:148
@@ -429,24 +440,30 @@ msgstr ""
429
  #: inc/_ps/admin/br-table-export-feeds.php:168 inc/_ps/admin/br-table-import-gcal-p.php:140
430
  #: inc/_ps/admin/page-resources.php:455 inc/_ps/form/class-wpbc-field-help-text.php:211
431
  #: inc/_ps/lib_p.php:124 inc/_ps/lib_p.php:128 inc/_ps/wpbc-print.php:82
432
- #: inc/gateways/page-gateways.php:840
433
  msgid "ID"
434
  msgstr ""
435
 
436
- #: core/admin/api-settings.php:654 core/admin/api-settings.php:656 core/admin/api-settings.php:660
437
- #: core/admin/api-settings.php:664 core/lib/wpbc_all_translations.php:83
 
 
 
438
  msgid "ASC"
439
  msgstr ""
440
 
441
- #: core/admin/api-settings.php:655 core/admin/api-settings.php:657 core/admin/api-settings.php:661
442
- #: core/admin/api-settings.php:665 core/lib/wpbc_all_translations.php:84
 
 
 
443
  msgid "DESC"
444
  msgstr ""
445
 
446
- #: core/admin/api-settings.php:656 core/admin/api-settings.php:657
447
- #: core/admin/wpbc-class-timeline.php:69 core/admin/wpbc-toolbars.php:580
448
- #: core/admin/wpbc-toolbars.php:642 core/admin/wpbc-toolbars.php:728
449
- #: core/admin/wpbc-toolbars.php:731 core/admin/wpbc-toolbars.php:847
450
  #: core/lib/wpbc_all_translations.php:85 core/sync/wpbc-gcal-class.php:608
451
  #: core/sync/wpbc-gcal-class.php:643 inc/_bs/lib_s.php:180 inc/_bs/lib_s.php:185
452
  #: inc/_ps/lib_p.php:125 inc/_ps/lib_p.php:129 inc/_ps/wpbc-form-templates.php:89
@@ -454,78 +471,78 @@ msgstr ""
454
  msgid "Dates"
455
  msgstr ""
456
 
457
- #: core/admin/api-settings.php:660 core/admin/api-settings.php:661
458
- #: core/lib/wpbc_all_translations.php:86 inc/_bl/admin/page-search.php:789
459
  #: inc/_bm/admin/page-availability.php:876 inc/_bm/admin/page-cost-rate.php:106
460
  #: inc/_bm/admin/page-cost-valuation.php:134 inc/_bs/lib_s.php:181 inc/_bs/lib_s.php:186
461
  #: inc/_ps/lib_p.php:126 inc/_ps/lib_p.php:130
462
  msgid "Resource"
463
  msgstr ""
464
 
465
- #: core/admin/api-settings.php:664 core/admin/api-settings.php:665
466
- #: core/admin/wpbc-toolbar-tiny.php:1802 core/lib/wpbc_all_translations.php:87
467
  #: inc/_bs/admin/api-settings-s.php:924 inc/_bs/lib_s.php:139 inc/_bs/lib_s.php:182
468
  #: inc/_bs/lib_s.php:187 inc/_ps/wpbc-print.php:86
469
  msgid "Cost"
470
  msgstr ""
471
 
472
- #: core/admin/api-settings.php:670 core/lib/wpbc_all_translations.php:88
473
  msgid "Bookings default order"
474
  msgstr ""
475
 
476
- #: core/admin/api-settings.php:671 core/lib/wpbc_all_translations.php:89
477
  msgid "Select your default order of bookings in the booking listing"
478
  msgstr ""
479
 
480
- #: core/admin/api-settings.php:688 core/lib/wpbc_all_translations.php:90
481
  msgid "Date Format"
482
  msgstr ""
483
 
484
- #: core/admin/api-settings.php:693 core/lib/wpbc_all_translations.php:91
485
  msgid "F j, Y"
486
  msgstr ""
487
 
488
- #: core/admin/api-settings.php:696 core/admin/wpbc-toolbars.php:1431
489
  #: core/lib/wpbc_all_translations.php:92 inc/_bm/admin/api-settings-m.php:197
490
  #: inc/_bs/admin/api-settings-s.php:426 inc/_bs/lib_s.php:54
491
  msgid "Custom"
492
  msgstr ""
493
 
494
- #: core/admin/api-settings.php:722 core/lib/wpbc_all_translations.php:93
495
  #, php-format
496
  msgid ""
497
  "Type your date format for emails and the booking table. %sDocumentation on date formatting%s"
498
  msgstr ""
499
 
500
- #: core/admin/api-settings.php:735 core/lib/wpbc_all_translations.php:94
501
  msgid "Short days view"
502
  msgstr ""
503
 
504
- #: core/admin/api-settings.php:736 core/lib/wpbc_all_translations.php:95
505
  msgid "Wide days view"
506
  msgstr ""
507
 
508
- #: core/admin/api-settings.php:741 core/lib/wpbc_all_translations.php:96
509
  msgid "Dates view"
510
  msgstr ""
511
 
512
- #: core/admin/api-settings.php:742 core/lib/wpbc_all_translations.php:97
513
  msgid "Select the default view for dates on the booking tables"
514
  msgstr ""
515
 
516
- #: core/admin/api-settings.php:758 core/lib/wpbc_all_translations.php:98
517
  msgid "Show / hide hints"
518
  msgstr ""
519
 
520
- #: core/admin/api-settings.php:759 core/lib/wpbc_all_translations.php:99
521
  msgid "Check this box if you want to show help hints on the admin panel."
522
  msgstr ""
523
 
524
- #: core/admin/api-settings.php:779 core/lib/wpbc_all_translations.php:100
525
  msgid "Allow unlimited bookings per same day(s)"
526
  msgstr ""
527
 
528
- #: core/admin/api-settings.php:780 core/lib/wpbc_all_translations.php:101
529
  #, php-format
530
  msgid ""
531
  "Check this box, if you want to %sset any days as available%s in calendar. Your visitors will be "
@@ -533,147 +550,147 @@ msgid ""
533
  "date(s)%s of other visitors."
534
  msgstr ""
535
 
536
- #: core/admin/api-settings.php:790 core/lib/wpbc_all_translations.php:762
537
  #: inc/_bl/admin/api-settings-l.php:101
538
  msgid "Use pending days as available"
539
  msgstr ""
540
 
541
- #: core/admin/api-settings.php:791 core/lib/wpbc_all_translations.php:763
542
  #: inc/_bl/admin/api-settings-l.php:102
543
  msgid "Check this box if you want to show the pending days as available in calendars"
544
  msgstr ""
545
 
546
- #: core/admin/api-settings.php:802 core/lib/wpbc_all_translations.php:102
547
  msgid "Checking to prevent double booking, during submitting booking"
548
  msgstr ""
549
 
550
- #: core/admin/api-settings.php:803 core/lib/wpbc_all_translations.php:103
551
  #, php-format
552
  msgid ""
553
  "Check this box, if you want to %sre-check if the selected dates available during submitting "
554
  "booking%s."
555
  msgstr ""
556
 
557
- #: core/admin/api-settings.php:805 core/lib/wpbc_all_translations.php:104
558
  msgid ""
559
  "This feature useful to prevent double booking of the same date(s) or time(s), if several "
560
  "visitors try to book the same date(s) in same calendar during the same time."
561
  msgstr ""
562
 
563
- #: core/admin/api-settings.php:806 core/lib/wpbc_all_translations.php:105
564
  msgid "This feature does not work for booking resources with capacity higher than one."
565
  msgstr ""
566
 
567
- #: core/admin/api-settings.php:823 core/lib/wpbc_all_translations.php:106
568
  msgid "Show advanced settings of JavaScript loading"
569
  msgstr ""
570
 
571
- #: core/admin/api-settings.php:824 core/lib/wpbc_all_translations.php:107
572
  msgid "Hide advanced settings of JavaScript loading"
573
  msgstr ""
574
 
575
- #: core/admin/api-settings.php:832 core/lib/wpbc_all_translations.php:108
576
  msgid "Disable Bootstrap loading on Front-End"
577
  msgstr ""
578
 
579
- #: core/admin/api-settings.php:833 core/admin/api-settings.php:842
580
- #: core/lib/wpbc_all_translations.php:109
581
  msgid ""
582
  " If your theme or some other plugin is load the BootStrap JavaScripts, you can disable loading "
583
  "of this script by this plugin."
584
  msgstr ""
585
 
586
- #: core/admin/api-settings.php:841 core/lib/wpbc_all_translations.php:110
587
  msgid "Disable Bootstrap loading on Back-End"
588
  msgstr ""
589
 
590
- #: core/admin/api-settings.php:851 core/lib/wpbc_all_translations.php:111
591
  msgid "Load JS and CSS files only on specific pages"
592
  msgstr ""
593
 
594
- #: core/admin/api-settings.php:852 core/lib/wpbc_all_translations.php:112
595
  msgid "Activate loading of CSS and JavaScript files of plugin only at specific pages."
596
  msgstr ""
597
 
598
- #: core/admin/api-settings.php:862 core/lib/wpbc_all_translations.php:113
599
  msgid "Relative URLs of pages, where to load plugin CSS and JS files"
600
  msgstr ""
601
 
602
- #: core/admin/api-settings.php:863 core/lib/wpbc_all_translations.php:114
603
  #, php-format
604
  msgid ""
605
  "Enter relative URLs of pages, where you have Booking Calendar elements (booking forms or "
606
  "availability calendars). Please enter one URL per line. Example: %s"
607
  msgstr ""
608
 
609
- #: core/admin/api-settings.php:877 core/lib/wpbc_all_translations.php:115
610
  msgid "Show system debugging log for beta features"
611
  msgstr ""
612
 
613
- #: core/admin/api-settings.php:878 core/lib/wpbc_all_translations.php:116
614
  msgid "Activate this option only for testing beta features"
615
  msgstr ""
616
 
617
- #: core/admin/api-settings.php:894 core/lib/wpbc_all_translations.php:117
618
  msgid "Show settings of powered by notice"
619
  msgstr ""
620
 
621
- #: core/admin/api-settings.php:895 core/lib/wpbc_all_translations.php:118
622
  msgid "Hide settings of powered by notice"
623
  msgstr ""
624
 
625
- #: core/admin/api-settings.php:902 core/lib/wpbc_all_translations.php:119
626
  msgid "Powered by notice"
627
  msgstr ""
628
 
629
- #: core/admin/api-settings.php:903 core/lib/wpbc_all_translations.php:120
630
  msgid " Turn On/Off powered by \"Booking Calendar\" notice under the calendar."
631
  msgstr ""
632
 
633
- #: core/admin/api-settings.php:911 core/lib/wpbc_all_translations.php:121
634
  msgid "Help and info notices"
635
  msgstr ""
636
 
637
- #: core/admin/api-settings.php:912 core/lib/wpbc_all_translations.php:122
638
  msgid " Turn On/Off version notice and help info links at booking admin panel."
639
  msgstr ""
640
 
641
- #: core/admin/api-settings.php:940 core/lib/wpbc_all_translations.php:123
642
  msgid "Plugin menu position"
643
  msgstr ""
644
 
645
- #: core/admin/api-settings.php:943 core/lib/wpbc_all_translations.php:124
646
  msgid "Top"
647
  msgstr ""
648
 
649
- #: core/admin/api-settings.php:944 core/lib/wpbc_all_translations.php:125
650
  msgid "Middle"
651
  msgstr ""
652
 
653
- #: core/admin/api-settings.php:945 core/lib/wpbc_all_translations.php:126
654
  msgid "Bottom"
655
  msgstr ""
656
 
657
- #: core/admin/api-settings.php:956 core/lib/wpbc_all_translations.php:127
658
  msgid "User permissions for plugin menu pages"
659
  msgstr ""
660
 
661
- #: core/admin/api-settings.php:971 core/admin/wpbc-class-timeline.php:70
662
- #: core/admin/wpbc-toolbars.php:548 core/admin/wpbc-toolbars.php:763
663
- #: core/lib/wpbc_all_translations.php:128 core/wpbc.php:136
664
  msgid "Bookings"
665
  msgstr ""
666
 
667
- #: core/admin/api-settings.php:980 core/admin/page-new.php:33 core/admin/page-new.php:34
668
- #: core/admin/page-new.php:35 core/admin/wpbc-toolbars.php:1794
669
- #: core/lib/wpbc_all_translations.php:129 core/wpbc-functions.php:1877 core/wpbc.php:165
670
  #: core/wpbc.php:166 core/wpbc.php:167
671
  msgid "Add booking"
672
  msgstr ""
673
 
674
- #: core/admin/api-settings.php:990 core/admin/page-import-gcal.php:491
675
- #: core/admin/wpbc-class-timeline.php:68 core/lib/wpbc_all_translations.php:130
676
- #: core/wpbc-functions.php:1887 core/wpbc.php:176 core/wpbc.php:178
677
  #: inc/_bl/admin/page-coupons.php:540 inc/_bl/admin/page-coupons.php:1355
678
  #: inc/_bm/admin/page-availability.php:875 inc/_bm/admin/page-cost-rate.php:105
679
  #: inc/_bm/admin/page-cost-valuation.php:133 inc/_mu/admin/page-users.php:446
@@ -682,47 +699,47 @@ msgstr ""
682
  msgid "Resources"
683
  msgstr ""
684
 
685
- #: core/admin/api-settings.php:999 core/lib/wpbc_all_translations.php:131
686
- #: core/wpbc-functions.php:1942 core/wpbc.php:187 core/wpbc.php:189 core/wpbc.php:396
687
  #: inc/_bl/admin/page-coupons.php:47 inc/_bm/admin/page-seasons.php:47
688
  msgid "Settings"
689
  msgstr ""
690
 
691
- #: core/admin/api-settings.php:1000 core/lib/wpbc_all_translations.php:132
692
  msgid "Select user access level for the menu pages of plugin"
693
  msgstr ""
694
 
695
- #: core/admin/api-settings.php:1011 core/lib/wpbc_all_translations.php:133 core/wpbc.php:204
696
  msgid "Premium"
697
  msgstr ""
698
 
699
- #: core/admin/api-settings.php:1012 core/lib/wpbc_all_translations.php:134
700
  msgid "Show / hide menu"
701
  msgstr ""
702
 
703
- #: core/admin/api-settings.php:1015 core/admin/wpbc-toolbar-tiny.php:590
704
- #: core/admin/wpbc-toolbar-tiny.php:1809 core/admin/wpbc-toolbars.php:782
705
- #: core/lib/wpbc_all_translations.php:135 core/lib/wpdev-booking-widget.php:104
706
- #: js/wpbc-gutenberg.js:1261
707
  msgid "Show"
708
  msgstr ""
709
 
710
- #: core/admin/api-settings.php:1016 core/class/wpbc-class-notices.php:104
711
- #: core/lib/wpbc_all_translations.php:136 core/sync/wpbc-gcal-class.php:669
712
- #: core/wpbc-functions.php:2346
713
  msgid "Hide"
714
  msgstr ""
715
 
716
- #: core/admin/api-settings.php:1033 core/lib/wpbc_all_translations.php:137
717
  msgid "Delete booking data, when plugin deactivated"
718
  msgstr ""
719
 
720
- #: core/admin/api-settings.php:1034 core/lib/wpbc_all_translations.php:138
721
  msgid "Check this box to delete all booking data when you uninstal this plugin."
722
  msgstr ""
723
 
724
- #: core/admin/api-settings.php:1060 core/admin/page-form-free.php:968
725
- #: core/lib/wpbc_all_translations.php:139 core/sync/wpbc-gcal-class.php:439
726
  #: core/sync/wpbc-gcal-class.php:607 core/sync/wpbc-gcal-class.php:633
727
  #: inc/_bl/admin/api-settings-l.php:368 inc/_bm/admin/page-availability.php:990
728
  #: inc/_bm/admin/page-cost-rate.php:176 inc/_bm/admin/page-seasons.php:519
@@ -730,70 +747,70 @@ msgstr ""
730
  msgid "Info"
731
  msgstr ""
732
 
733
- #: core/admin/api-settings.php:1086 core/admin/page-settings.php:282
734
- #: core/lib/wpbc_all_translations.php:140
735
  msgid "Restore all dismissed windows"
736
  msgstr ""
737
 
738
- #: core/admin/api-settings.php:1210 core/admin/api-settings.php:1241
739
- #: core/admin/api-settings.php:1273 core/admin/api-settings.php:1286
740
- #: core/admin/api-settings.php:1319 core/lib/wpbc_all_translations.php:141
741
- #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:509
742
- #: inc/gateways/ipay88/wpbc-gw-ipay88.php:412 inc/gateways/page-gateways.php:889
743
  #: inc/gateways/paypal/wpbc-gw-paypal.php:640 inc/gateways/sage/wpbc-gw-sage.php:591
744
- #: inc/gateways/stripe/wpbc-gw-stripe.php:661
745
  msgid "Warning"
746
  msgstr ""
747
 
748
- #: core/admin/api-settings.php:1211 core/lib/wpbc_all_translations.php:142
749
  msgid ""
750
  "You allow unlimited number of bookings per same dates, its can be a reason of double bookings on "
751
  "the same date. Do you really want to do this?"
752
  msgstr ""
753
 
754
- #: core/admin/api-settings.php:1242 core/lib/wpbc_all_translations.php:143
755
  msgid "This feature can impact to speed of submitting booking. Do you really want to do this?"
756
  msgstr ""
757
 
758
- #: core/admin/api-settings.php:1274 core/admin/api-settings.php:1287
759
- #: core/lib/wpbc_all_translations.php:144
760
  msgid ""
761
  "You are need to be sure what you are doing. You are disable of loading some JavaScripts Do you "
762
  "really want to do this?"
763
  msgstr ""
764
 
765
- #: core/admin/api-settings.php:1320 core/lib/wpbc_all_translations.php:145
766
  msgid ""
767
  "If you check this option, all booking data will be deleted when you uninstall this plugin. Do "
768
  "you really want to do this?"
769
  msgstr ""
770
 
771
  #: core/admin/page-bookings.php:45 core/admin/page-bookings.php:46 core/admin/page-bookings.php:47
772
- #: core/admin/wpbc-toolbars.php:459 core/lib/wpbc_all_translations.php:146
773
- #: core/wpbc-functions.php:1855
774
  msgid "Booking Listing"
775
  msgstr ""
776
 
777
  #: core/admin/page-email-approved.php:177 core/admin/page-email-deleted.php:178
778
  #: core/admin/page-email-deny.php:178 core/admin/page-email-new-admin.php:176
779
  #: core/admin/page-email-new-visitor.php:176 core/admin/page-email-trash.php:178
780
- #: core/lib/wpbc_all_translations.php:147 inc/_bm/admin/page-cost-deposit.php:134
781
  #: inc/_bm/admin/page-cost-early-late-booking.php:138
782
  #: inc/_bm/admin/page-cost-early-late-booking.php:339 inc/_bs/admin/page-email-payment.php:179
783
- #: inc/_ps/admin/page-email-edit.php:178 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:274
784
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:218
785
  #: inc/gateways/ideal/wpbc-gw-ideal.php:377 inc/gateways/ipay88/wpbc-gw-ipay88.php:254
786
  #: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:146 inc/gateways/paypal/wpbc-gw-paypal.php:343
787
  #: inc/gateways/paypal/wpbc-gw-paypal.php:681 inc/gateways/paypal/wpbc-gw-paypal.php:704
788
  #: inc/gateways/paypal/wpbc-gw-paypal.php:727 inc/gateways/sage/wpbc-gw-sage.php:384
789
- #: inc/gateways/stripe/wpbc-gw-stripe.php:289
790
  msgid "Enable / Disable"
791
  msgstr ""
792
 
793
  #: core/admin/page-email-approved.php:178 core/admin/page-email-deleted.php:179
794
  #: core/admin/page-email-deny.php:179 core/admin/page-email-new-admin.php:177
795
  #: core/admin/page-email-new-visitor.php:177 core/admin/page-email-trash.php:179
796
- #: core/lib/wpbc_all_translations.php:148 inc/_bs/admin/page-email-payment.php:180
797
  #: inc/_ps/admin/page-email-edit.php:179
798
  msgid "Enable this email notification"
799
  msgstr ""
@@ -802,7 +819,7 @@ msgstr ""
802
  #: core/admin/page-email-deleted.php:190 core/admin/page-email-deleted.php:205
803
  #: core/admin/page-email-deny.php:190 core/admin/page-email-deny.php:207
804
  #: core/admin/page-email-trash.php:190 core/admin/page-email-trash.php:205
805
- #: core/lib/wpbc_all_translations.php:149 inc/_bs/admin/page-email-payment.php:191
806
  #: inc/_bs/admin/page-email-payment.php:206 inc/_ps/admin/page-email-edit.php:190
807
  #: inc/_ps/admin/page-email-edit.php:205
808
  msgid "Copy(ies)"
@@ -810,14 +827,14 @@ msgstr ""
810
 
811
  #: core/admin/page-email-approved.php:190 core/admin/page-email-deleted.php:191
812
  #: core/admin/page-email-deny.php:191 core/admin/page-email-trash.php:191
813
- #: core/lib/wpbc_all_translations.php:150 inc/_bs/admin/page-email-payment.php:192
814
  #: inc/_ps/admin/page-email-edit.php:191
815
  msgid "Enable / disable sending email(s) to additional addresses"
816
  msgstr ""
817
 
818
  #: core/admin/page-email-approved.php:205 core/admin/page-email-deleted.php:205
819
  #: core/admin/page-email-deny.php:207 core/admin/page-email-new-admin.php:192
820
- #: core/admin/page-email-trash.php:205 core/lib/wpbc_all_translations.php:151
821
  #: inc/_bm/admin/page-cost-valuation.php:275 inc/_bm/admin/page-cost-valuation.php:278
822
  #: inc/_bs/admin/page-email-payment.php:206 inc/_ps/admin/page-email-edit.php:205
823
  msgid "To"
@@ -828,7 +845,7 @@ msgstr ""
828
  #: core/admin/page-email-deny.php:217 core/admin/page-email-deny.php:272
829
  #: core/admin/page-email-new-admin.php:202 core/admin/page-email-new-admin.php:254
830
  #: core/admin/page-email-new-visitor.php:254 core/admin/page-email-trash.php:215
831
- #: core/admin/page-email-trash.php:277 core/lib/wpbc_all_translations.php:152
832
  #: inc/_bs/admin/page-email-payment.php:216 inc/_bs/admin/page-email-payment.php:273
833
  #: inc/_ps/admin/page-email-edit.php:215 inc/_ps/admin/page-email-edit.php:272
834
  #: inc/gateways/paypal/wpbc-gw-paypal.php:691 inc/gateways/paypal/wpbc-gw-paypal.php:714
@@ -844,25 +861,25 @@ msgstr ""
844
  #: core/admin/page-email-new-admin.php:254 core/admin/page-email-new-admin.php:295
845
  #: core/admin/page-email-new-visitor.php:254 core/admin/page-email-new-visitor.php:295
846
  #: core/admin/page-email-trash.php:215 core/admin/page-email-trash.php:277
847
- #: core/admin/page-email-trash.php:319 core/admin/page-form-free.php:1129
848
- #: core/admin/page-form-free.php:2053 core/lib/wpbc_all_translations.php:153
849
  #: inc/_bs/admin/page-email-payment.php:216 inc/_bs/admin/page-email-payment.php:273
850
  #: inc/_bs/admin/page-email-payment.php:317 inc/_ps/admin/page-email-edit.php:215
851
  #: inc/_ps/admin/page-email-edit.php:272 inc/_ps/admin/page-email-edit.php:313
852
- #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:286
853
- #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:301 inc/gateways/ideal/wpbc-gw-ideal.php:389
854
  #: inc/gateways/ideal/wpbc-gw-ideal.php:404 inc/gateways/ipay88/wpbc-gw-ipay88.php:266
855
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:281 inc/gateways/paypal/wpbc-gw-paypal.php:376
856
  #: inc/gateways/paypal/wpbc-gw-paypal.php:392 inc/gateways/sage/wpbc-gw-sage.php:396
857
- #: inc/gateways/sage/wpbc-gw-sage.php:411 inc/gateways/stripe/wpbc-gw-stripe.php:317
858
- #: inc/gateways/stripe/wpbc-gw-stripe.php:332 inc/gateways/stripe/wpbc-gw-stripe.php:349
859
- #: inc/gateways/stripe/wpbc-gw-stripe.php:364
860
  msgid "Required"
861
  msgstr ""
862
 
863
  #: core/admin/page-email-approved.php:216 core/admin/page-email-deleted.php:216
864
  #: core/admin/page-email-deny.php:218 core/admin/page-email-trash.php:216
865
- #: core/lib/wpbc_all_translations.php:154 inc/_bs/admin/page-email-payment.php:217
866
  #: inc/_ps/admin/page-email-edit.php:216
867
  msgid "You can put multiple emails separated by"
868
  msgstr ""
@@ -873,13 +890,13 @@ msgstr ""
873
  #: core/admin/page-email-new-admin.php:220 core/admin/page-email-new-admin.php:272
874
  #: core/admin/page-email-new-visitor.php:272 core/admin/page-email-trash.php:234
875
  #: core/admin/page-email-trash.php:295 core/admin/page-form-timeslots.php:767
876
- #: core/admin/wpbc-toolbar-tiny.php:429 core/admin/wpbc-toolbar-tiny.php:1800
877
- #: core/lib/wpbc_all_translations.php:155 core/lib/wpdev-booking-widget.php:96
878
  #: core/sync/wpbc-gcal-class.php:606 core/sync/wpbc-gcal-class.php:629
879
  #: inc/_bm/admin/page-availability.php:985 inc/_bm/admin/page-seasons.php:514
880
  #: inc/_bs/admin/page-email-payment.php:235 inc/_bs/admin/page-email-payment.php:291
881
  #: inc/_ps/admin/page-email-edit.php:234 inc/_ps/admin/page-email-edit.php:290
882
- #: inc/_ps/wpbc-booking-select-widget.php:140 js/wpbc-gutenberg.js:734
883
  msgid "Title"
884
  msgstr ""
885
 
@@ -889,7 +906,7 @@ msgstr ""
889
  #: core/admin/page-email-new-admin.php:220 core/admin/page-email-new-admin.php:272
890
  #: core/admin/page-email-new-visitor.php:272 core/admin/page-email-trash.php:234
891
  #: core/admin/page-email-trash.php:295 core/admin/page-form-timeslots.php:132
892
- #: core/admin/wpbc-toolbar-tiny.php:429 core/lib/wpbc_all_translations.php:156
893
  #: inc/_bs/admin/page-email-payment.php:235 inc/_bs/admin/page-email-payment.php:291
894
  #: inc/_ps/admin/page-email-edit.php:234 inc/_ps/admin/page-email-edit.php:290
895
  #: inc/_ps/form/class-wpbc-field-help-button.php:73
@@ -908,19 +925,19 @@ msgstr ""
908
  #: core/admin/page-email-approved.php:262 core/admin/page-email-deleted.php:262
909
  #: core/admin/page-email-deny.php:262 core/admin/page-email-new-admin.php:244
910
  #: core/admin/page-email-new-visitor.php:244 core/admin/page-email-trash.php:262
911
- #: core/admin/page-import-gcal.php:159 core/admin/wpbc-toolbar-tiny.php:593
912
- #: core/lib/wpbc_all_translations.php:157 core/sync/wpbc-gcal.php:171
913
  #: inc/_bm/admin/page-cost-valuation.php:275 inc/_bm/admin/page-cost-valuation.php:278
914
  #: inc/_bm/admin/page-cost-valuation.php:449 inc/_bm/admin/page-seasons.php:1564
915
  #: inc/_bs/admin/page-email-payment.php:263 inc/_ps/admin/page-email-edit.php:262
916
  msgid "From"
917
  msgstr ""
918
 
919
- #: core/admin/page-email-approved.php:272 core/lib/wpbc_all_translations.php:158
920
  msgid "Email Address will be used in the FROM field of response to Visitor."
921
  msgstr ""
922
 
923
- #: core/admin/page-email-approved.php:310 core/lib/wpbc_all_translations.php:159
924
  #: core/wpbc-activation.php:994
925
  msgid "Your booking has been approved"
926
  msgstr ""
@@ -928,7 +945,7 @@ msgstr ""
928
  #: core/admin/page-email-approved.php:312 core/admin/page-email-deleted.php:313
929
  #: core/admin/page-email-deny.php:313 core/admin/page-email-new-admin.php:294
930
  #: core/admin/page-email-new-visitor.php:294 core/admin/page-email-trash.php:318
931
- #: core/lib/wpbc_all_translations.php:160 inc/_bs/admin/page-email-payment.php:316
932
  #: inc/_ps/admin/page-email-edit.php:312
933
  msgid "Subject"
934
  msgstr ""
@@ -936,13 +953,13 @@ msgstr ""
936
  #: core/admin/page-email-approved.php:313 core/admin/page-email-deleted.php:314
937
  #: core/admin/page-email-deny.php:314 core/admin/page-email-new-admin.php:295
938
  #: core/admin/page-email-new-visitor.php:295 core/admin/page-email-trash.php:319
939
- #: core/lib/wpbc_all_translations.php:161 inc/_bs/admin/page-email-payment.php:317
940
  #: inc/_ps/admin/page-email-edit.php:313
941
  #, php-format
942
  msgid "Type your email %ssubject%s for the booking confimation message."
943
  msgstr ""
944
 
945
- #: core/admin/page-email-approved.php:325 core/lib/wpbc_all_translations.php:162
946
  #: core/wpbc-activation.php:996
947
  #, php-format
948
  msgid ""
@@ -950,7 +967,7 @@ msgid ""
950
  "you, %s"
951
  msgstr ""
952
 
953
- #: core/admin/page-email-approved.php:327 core/lib/wpbc_all_translations.php:163
954
  #: core/wpbc-activation.php:998
955
  #, php-format
956
  msgid "Your booking %s for: %s has been approved.%sThank you, %s"
@@ -959,7 +976,7 @@ msgstr ""
959
  #: core/admin/page-email-approved.php:334 core/admin/page-email-deleted.php:331
960
  #: core/admin/page-email-deny.php:331 core/admin/page-email-new-admin.php:310
961
  #: core/admin/page-email-new-visitor.php:316 core/admin/page-email-trash.php:336
962
- #: core/lib/wpbc_all_translations.php:164 inc/_bs/admin/page-email-payment.php:334
963
  #: inc/_ps/admin/page-email-edit.php:330
964
  msgid "Content"
965
  msgstr ""
@@ -967,7 +984,7 @@ msgstr ""
967
  #: core/admin/page-email-approved.php:335 core/admin/page-email-deleted.php:332
968
  #: core/admin/page-email-deny.php:332 core/admin/page-email-new-admin.php:311
969
  #: core/admin/page-email-new-visitor.php:317 core/admin/page-email-trash.php:337
970
- #: core/lib/wpbc_all_translations.php:165 inc/_bs/admin/page-email-payment.php:335
971
  #: inc/_ps/admin/page-email-edit.php:331
972
  msgid "Type your email message content. "
973
  msgstr ""
@@ -975,7 +992,7 @@ msgstr ""
975
  #: core/admin/page-email-approved.php:356 core/admin/page-email-deleted.php:353
976
  #: core/admin/page-email-deny.php:353 core/admin/page-email-new-admin.php:332
977
  #: core/admin/page-email-new-visitor.php:338 core/admin/page-email-trash.php:358
978
- #: core/lib/wpbc_all_translations.php:166 inc/_bs/admin/page-email-payment.php:356
979
  #: inc/_ps/admin/page-email-edit.php:352
980
  msgid "Email Heading"
981
  msgstr ""
@@ -983,7 +1000,7 @@ msgstr ""
983
  #: core/admin/page-email-approved.php:357 core/admin/page-email-deleted.php:354
984
  #: core/admin/page-email-deny.php:354 core/admin/page-email-new-admin.php:333
985
  #: core/admin/page-email-new-visitor.php:339 core/admin/page-email-trash.php:359
986
- #: core/lib/wpbc_all_translations.php:167 inc/_bs/admin/page-email-payment.php:357
987
  #: inc/_ps/admin/page-email-edit.php:353
988
  msgid "Enter main heading contained within the email notification."
989
  msgstr ""
@@ -991,7 +1008,7 @@ msgstr ""
991
  #: core/admin/page-email-approved.php:366 core/admin/page-email-deleted.php:363
992
  #: core/admin/page-email-deny.php:363 core/admin/page-email-new-admin.php:342
993
  #: core/admin/page-email-new-visitor.php:348 core/admin/page-email-trash.php:368
994
- #: core/lib/wpbc_all_translations.php:168 inc/_bs/admin/page-email-payment.php:366
995
  #: inc/_ps/admin/page-email-edit.php:362
996
  msgid "Email Footer Text"
997
  msgstr ""
@@ -999,7 +1016,7 @@ msgstr ""
999
  #: core/admin/page-email-approved.php:367 core/admin/page-email-deleted.php:364
1000
  #: core/admin/page-email-deny.php:364 core/admin/page-email-new-admin.php:343
1001
  #: core/admin/page-email-new-visitor.php:349 core/admin/page-email-trash.php:369
1002
- #: core/lib/wpbc_all_translations.php:169 inc/_bs/admin/page-email-payment.php:367
1003
  #: inc/_ps/admin/page-email-edit.php:363
1004
  msgid "Enter text contained within footer of the email notification"
1005
  msgstr ""
@@ -1007,7 +1024,7 @@ msgstr ""
1007
  #: core/admin/page-email-approved.php:377 core/admin/page-email-deleted.php:374
1008
  #: core/admin/page-email-deny.php:374 core/admin/page-email-new-admin.php:353
1009
  #: core/admin/page-email-new-visitor.php:359 core/admin/page-email-trash.php:379
1010
- #: core/lib/wpbc_all_translations.php:170 inc/_bs/admin/page-email-payment.php:377
1011
  #: inc/_ps/admin/page-email-edit.php:373
1012
  msgid "Email template"
1013
  msgstr ""
@@ -1015,7 +1032,7 @@ msgstr ""
1015
  #: core/admin/page-email-approved.php:378 core/admin/page-email-deleted.php:375
1016
  #: core/admin/page-email-deny.php:375 core/admin/page-email-new-admin.php:354
1017
  #: core/admin/page-email-new-visitor.php:360 core/admin/page-email-trash.php:380
1018
- #: core/lib/wpbc_all_translations.php:171 inc/_bs/admin/page-email-payment.php:378
1019
  #: inc/_ps/admin/page-email-edit.php:374
1020
  msgid "Choose email template."
1021
  msgstr ""
@@ -1023,7 +1040,7 @@ msgstr ""
1023
  #: core/admin/page-email-approved.php:382 core/admin/page-email-deleted.php:379
1024
  #: core/admin/page-email-deny.php:379 core/admin/page-email-new-admin.php:358
1025
  #: core/admin/page-email-new-visitor.php:364 core/admin/page-email-trash.php:384
1026
- #: core/lib/wpbc_all_translations.php:172 inc/_bs/admin/page-email-payment.php:382
1027
  #: inc/_ps/admin/page-email-edit.php:378
1028
  msgid "Plain (without styles)"
1029
  msgstr ""
@@ -1031,7 +1048,7 @@ msgstr ""
1031
  #: core/admin/page-email-approved.php:383 core/admin/page-email-deleted.php:380
1032
  #: core/admin/page-email-deny.php:380 core/admin/page-email-new-admin.php:359
1033
  #: core/admin/page-email-new-visitor.php:365 core/admin/page-email-trash.php:385
1034
- #: core/lib/wpbc_all_translations.php:173 inc/_bs/admin/page-email-payment.php:383
1035
  #: inc/_ps/admin/page-email-edit.php:379
1036
  msgid "Standard 1 column"
1037
  msgstr ""
@@ -1039,7 +1056,7 @@ msgstr ""
1039
  #: core/admin/page-email-approved.php:390 core/admin/page-email-deleted.php:387
1040
  #: core/admin/page-email-deny.php:387 core/admin/page-email-new-admin.php:366
1041
  #: core/admin/page-email-new-visitor.php:372 core/admin/page-email-trash.php:392
1042
- #: core/lib/wpbc_all_translations.php:174 inc/_bs/admin/page-email-payment.php:390
1043
  #: inc/_ps/admin/page-email-edit.php:386
1044
  #, php-format
1045
  msgid "You can override this email template in this folder %s"
@@ -1048,7 +1065,7 @@ msgstr ""
1048
  #: core/admin/page-email-approved.php:400 core/admin/page-email-deleted.php:397
1049
  #: core/admin/page-email-deny.php:397 core/admin/page-email-new-admin.php:376
1050
  #: core/admin/page-email-new-visitor.php:382 core/admin/page-email-trash.php:402
1051
- #: core/lib/wpbc_all_translations.php:175 inc/_bs/admin/page-email-payment.php:400
1052
  #: inc/_ps/admin/page-email-edit.php:396
1053
  msgid "Base Color"
1054
  msgstr ""
@@ -1056,7 +1073,7 @@ msgstr ""
1056
  #: core/admin/page-email-approved.php:401 core/admin/page-email-deleted.php:398
1057
  #: core/admin/page-email-deny.php:398 core/admin/page-email-new-admin.php:377
1058
  #: core/admin/page-email-new-visitor.php:383 core/admin/page-email-trash.php:403
1059
- #: core/lib/wpbc_all_translations.php:176 inc/_bs/admin/page-email-payment.php:401
1060
  #: inc/_ps/admin/page-email-edit.php:397
1061
  msgid "The base color for email templates."
1062
  msgstr ""
@@ -1073,7 +1090,7 @@ msgstr ""
1073
  #: core/admin/page-email-new-visitor.php:402 core/admin/page-email-new-visitor.php:411
1074
  #: core/admin/page-email-trash.php:404 core/admin/page-email-trash.php:413
1075
  #: core/admin/page-email-trash.php:422 core/admin/page-email-trash.php:431
1076
- #: core/lib/wpbc_all_translations.php:177 inc/_bs/admin/page-email-payment.php:402
1077
  #: inc/_bs/admin/page-email-payment.php:411 inc/_bs/admin/page-email-payment.php:420
1078
  #: inc/_bs/admin/page-email-payment.php:429 inc/_ps/admin/page-email-edit.php:398
1079
  #: inc/_ps/admin/page-email-edit.php:407 inc/_ps/admin/page-email-edit.php:416
@@ -1084,7 +1101,7 @@ msgstr ""
1084
  #: core/admin/page-email-approved.php:409 core/admin/page-email-deleted.php:406
1085
  #: core/admin/page-email-deny.php:406 core/admin/page-email-new-admin.php:385
1086
  #: core/admin/page-email-new-visitor.php:391 core/admin/page-email-trash.php:411
1087
- #: core/lib/wpbc_all_translations.php:178 inc/_bs/admin/page-email-payment.php:409
1088
  #: inc/_ps/admin/page-email-edit.php:405
1089
  msgid "Background Color"
1090
  msgstr ""
@@ -1092,7 +1109,7 @@ msgstr ""
1092
  #: core/admin/page-email-approved.php:410 core/admin/page-email-deleted.php:407
1093
  #: core/admin/page-email-deny.php:407 core/admin/page-email-new-admin.php:386
1094
  #: core/admin/page-email-new-visitor.php:392 core/admin/page-email-trash.php:412
1095
- #: core/lib/wpbc_all_translations.php:179 inc/_bs/admin/page-email-payment.php:410
1096
  #: inc/_ps/admin/page-email-edit.php:406
1097
  msgid "The background color for email templates."
1098
  msgstr ""
@@ -1100,7 +1117,7 @@ msgstr ""
1100
  #: core/admin/page-email-approved.php:418 core/admin/page-email-deleted.php:415
1101
  #: core/admin/page-email-deny.php:415 core/admin/page-email-new-admin.php:394
1102
  #: core/admin/page-email-new-visitor.php:400 core/admin/page-email-trash.php:420
1103
- #: core/lib/wpbc_all_translations.php:180 inc/_bs/admin/page-email-payment.php:418
1104
  #: inc/_ps/admin/page-email-edit.php:414
1105
  msgid "Email Body Background Color"
1106
  msgstr ""
@@ -1108,7 +1125,7 @@ msgstr ""
1108
  #: core/admin/page-email-approved.php:419 core/admin/page-email-deleted.php:416
1109
  #: core/admin/page-email-deny.php:416 core/admin/page-email-new-admin.php:395
1110
  #: core/admin/page-email-new-visitor.php:401 core/admin/page-email-trash.php:421
1111
- #: core/lib/wpbc_all_translations.php:181 inc/_bs/admin/page-email-payment.php:419
1112
  #: inc/_ps/admin/page-email-edit.php:415
1113
  msgid "The main body background color for email templates."
1114
  msgstr ""
@@ -1116,7 +1133,7 @@ msgstr ""
1116
  #: core/admin/page-email-approved.php:427 core/admin/page-email-deleted.php:424
1117
  #: core/admin/page-email-deny.php:424 core/admin/page-email-new-admin.php:403
1118
  #: core/admin/page-email-new-visitor.php:409 core/admin/page-email-trash.php:429
1119
- #: core/lib/wpbc_all_translations.php:182 inc/_bs/admin/page-email-payment.php:427
1120
  #: inc/_ps/admin/page-email-edit.php:423
1121
  msgid "Email Body Text Colour"
1122
  msgstr ""
@@ -1124,7 +1141,7 @@ msgstr ""
1124
  #: core/admin/page-email-approved.php:428 core/admin/page-email-deleted.php:425
1125
  #: core/admin/page-email-deny.php:425 core/admin/page-email-new-admin.php:404
1126
  #: core/admin/page-email-new-visitor.php:410 core/admin/page-email-trash.php:430
1127
- #: core/lib/wpbc_all_translations.php:183 inc/_bs/admin/page-email-payment.php:428
1128
  #: inc/_ps/admin/page-email-edit.php:424
1129
  msgid "The main body text color for email templates."
1130
  msgstr ""
@@ -1132,7 +1149,7 @@ msgstr ""
1132
  #: core/admin/page-email-approved.php:443 core/admin/page-email-deleted.php:440
1133
  #: core/admin/page-email-deny.php:440 core/admin/page-email-new-admin.php:419
1134
  #: core/admin/page-email-new-visitor.php:425 core/admin/page-email-trash.php:445
1135
- #: core/lib/wpbc_all_translations.php:184 inc/_bs/admin/page-email-payment.php:443
1136
  #: inc/_ps/admin/page-email-edit.php:439
1137
  msgid "Email format"
1138
  msgstr ""
@@ -1140,7 +1157,7 @@ msgstr ""
1140
  #: core/admin/page-email-approved.php:444 core/admin/page-email-deleted.php:441
1141
  #: core/admin/page-email-deny.php:441 core/admin/page-email-new-admin.php:420
1142
  #: core/admin/page-email-new-visitor.php:426 core/admin/page-email-trash.php:446
1143
- #: core/lib/wpbc_all_translations.php:185 inc/_bs/admin/page-email-payment.php:444
1144
  #: inc/_ps/admin/page-email-edit.php:440
1145
  msgid "Choose which format of email to send."
1146
  msgstr ""
@@ -1148,7 +1165,7 @@ msgstr ""
1148
  #: core/admin/page-email-approved.php:448 core/admin/page-email-deleted.php:445
1149
  #: core/admin/page-email-deny.php:445 core/admin/page-email-new-admin.php:424
1150
  #: core/admin/page-email-new-visitor.php:430 core/admin/page-email-trash.php:450
1151
- #: core/lib/wpbc_all_translations.php:186 inc/_bs/admin/page-email-payment.php:448
1152
  #: inc/_ps/admin/page-email-edit.php:444
1153
  msgid "Plain text"
1154
  msgstr ""
@@ -1156,16 +1173,16 @@ msgstr ""
1156
  #: core/admin/page-email-approved.php:455 core/admin/page-email-deleted.php:452
1157
  #: core/admin/page-email-deny.php:452 core/admin/page-email-new-admin.php:431
1158
  #: core/admin/page-email-new-visitor.php:437 core/admin/page-email-trash.php:457
1159
- #: core/lib/wpbc_all_translations.php:187 inc/_bs/admin/page-email-payment.php:455
1160
- #: inc/_ps/admin/page-email-edit.php:451 inc/_ps/admin/page-settings-form.php:606
1161
- #: inc/_ps/form/class-wpbc-form-help.php:92 inc/gateways/page-gateways.php:1095
1162
  msgid "HTML"
1163
  msgstr ""
1164
 
1165
  #: core/admin/page-email-approved.php:456 core/admin/page-email-deleted.php:453
1166
  #: core/admin/page-email-deny.php:453 core/admin/page-email-new-admin.php:432
1167
  #: core/admin/page-email-new-visitor.php:438 core/admin/page-email-trash.php:458
1168
- #: core/lib/wpbc_all_translations.php:188 inc/_bs/admin/page-email-payment.php:456
1169
  #: inc/_ps/admin/page-email-edit.php:452
1170
  msgid "Multipart"
1171
  msgstr ""
@@ -1173,7 +1190,7 @@ msgstr ""
1173
  #: core/admin/page-email-approved.php:483 core/admin/page-email-deleted.php:480
1174
  #: core/admin/page-email-deny.php:480 core/admin/page-email-new-admin.php:458
1175
  #: core/admin/page-email-new-visitor.php:465 core/admin/page-email-trash.php:485
1176
- #: core/lib/wpbc_all_translations.php:189 inc/_bs/admin/page-email-payment.php:483
1177
  #: inc/_ps/admin/page-email-edit.php:479
1178
  #, php-format
1179
  msgid ""
@@ -1184,57 +1201,57 @@ msgstr ""
1184
  #: core/admin/page-email-approved.php:483 core/admin/page-email-deleted.php:480
1185
  #: core/admin/page-email-deny.php:480 core/admin/page-email-new-admin.php:458
1186
  #: core/admin/page-email-new-visitor.php:465 core/admin/page-email-trash.php:485
1187
- #: core/lib/wpbc_all_translations.php:190 core/sync/wpbc-gcal.php:406
1188
  #: inc/_bs/admin/page-email-payment.php:483 inc/_ps/admin/page-email-edit.php:479
1189
  msgid "here"
1190
  msgstr ""
1191
 
1192
- #: core/admin/page-email-approved.php:560 core/admin/wpbc-class-listing.php:329
1193
- #: core/admin/wpbc-toolbars.php:542 core/lib/wpbc_all_translations.php:191 inc/_ps/personal.php:337
1194
  #: inc/_ps/wpbc-print.php:118
1195
  msgid "Approved"
1196
  msgstr ""
1197
 
1198
  #: core/admin/page-email-approved.php:561 core/admin/page-email-deleted.php:559
1199
- #: core/admin/page-email-deny.php:559 core/admin/page-email-new-admin.php:506
1200
- #: core/admin/page-email-new-admin.php:507 core/admin/page-email-new-admin.php:531
1201
  #: core/admin/page-email-new-visitor.php:538 core/admin/page-email-trash.php:564
1202
- #: core/lib/wpbc_all_translations.php:192 inc/_bs/admin/page-email-payment.php:561
1203
  #: inc/_ps/admin/page-email-edit.php:557
1204
  msgid "Emails Settings"
1205
  msgstr ""
1206
 
1207
- #: core/admin/page-email-approved.php:562 core/lib/wpbc_all_translations.php:193
1208
  msgid "Customization of email template, which is sent to Visitor after approval of booking"
1209
  msgstr ""
1210
 
1211
- #: core/admin/page-email-approved.php:699 core/lib/wpbc_all_translations.php:194
1212
  msgid "Email is sent to Visitor after Approval of booking."
1213
  msgstr ""
1214
 
1215
  #: core/admin/page-email-approved.php:706 core/admin/page-email-deleted.php:703
1216
- #: core/admin/page-email-deny.php:703 core/admin/page-email-new-admin.php:679
1217
  #: core/admin/page-email-new-visitor.php:682 core/admin/page-email-trash.php:708
1218
- #: core/lib/wpbc_all_translations.php:195 inc/_bs/admin/page-email-payment.php:705
1219
  #: inc/_ps/admin/page-email-edit.php:701
1220
  msgid "Header / Footer"
1221
  msgstr ""
1222
 
1223
  #: core/admin/page-email-approved.php:713 core/admin/page-email-deleted.php:710
1224
- #: core/admin/page-email-deny.php:710 core/admin/page-email-new-admin.php:686
1225
  #: core/admin/page-email-new-visitor.php:689 core/admin/page-email-trash.php:715
1226
- #: core/lib/wpbc_all_translations.php:196 inc/_bs/admin/page-email-payment.php:712
1227
  #: inc/_ps/admin/page-email-edit.php:708
1228
  msgid "Email Styles"
1229
  msgstr ""
1230
 
1231
  #: core/admin/page-email-approved.php:725 core/admin/page-email-deleted.php:722
1232
- #: core/admin/page-email-deny.php:722 core/admin/page-email-new-admin.php:698
1233
  #: core/admin/page-email-new-visitor.php:701 core/admin/page-email-trash.php:727
1234
- #: core/admin/page-form-free.php:1131 core/admin/page-form-timeslots.php:768
1235
  #: core/admin/wpbc-class-listing.php:125 core/admin/wpbc-class-listing.php:145
1236
  #: core/admin/wpbc-toolbars.php:52 core/admin/wpbc-toolbars.php:174
1237
- #: core/lib/wpbc_all_translations.php:197 inc/_bl/admin/page-coupons.php:548
1238
  #: inc/_bm/admin/page-cost-valuation.php:203 inc/_bm/admin/page-seasons.php:527
1239
  #: inc/_bs/admin/page-email-payment.php:724 inc/_mu/admin/page-users.php:449
1240
  #: inc/_ps/admin/page-email-edit.php:720
@@ -1242,9 +1259,9 @@ msgid "Actions"
1242
  msgstr ""
1243
 
1244
  #: core/admin/page-email-approved.php:729 core/admin/page-email-deleted.php:726
1245
- #: core/admin/page-email-deny.php:726 core/admin/page-email-new-admin.php:702
1246
  #: core/admin/page-email-new-visitor.php:705 core/admin/page-email-trash.php:731
1247
- #: core/lib/wpbc_all_translations.php:198 inc/_bs/admin/page-email-payment.php:728
1248
  #: inc/_ps/admin/page-email-edit.php:724
1249
  msgid "Send Test Email"
1250
  msgstr ""
@@ -1252,17 +1269,17 @@ msgstr ""
1252
  #: core/admin/page-email-approved.php:731 core/admin/page-email-approved.php:767
1253
  #: core/admin/page-email-deleted.php:728 core/admin/page-email-deleted.php:764
1254
  #: core/admin/page-email-deny.php:728 core/admin/page-email-deny.php:764
1255
- #: core/admin/page-email-new-admin.php:704 core/admin/page-email-new-admin.php:740
1256
  #: core/admin/page-email-new-visitor.php:707 core/admin/page-email-new-visitor.php:743
1257
  #: core/admin/page-email-trash.php:733 core/admin/page-email-trash.php:769
1258
  #: core/admin/page-form-free.php:146 core/admin/page-form-free.php:197
1259
- #: core/admin/page-form-free.php:2173 core/admin/page-ics-export.php:236
1260
- #: core/admin/page-ics-general.php:386 core/admin/page-ics-import.php:203
1261
  #: core/admin/page-import-gcal.php:570 core/admin/page-settings.php:137
1262
- #: core/admin/page-settings.php:276 core/admin/wpbc-toolbars.php:1773
1263
- #: core/lib/wpbc_all_translations.php:199 inc/_bl/admin/page-coupons.php:220
1264
- #: inc/_bl/admin/page-coupons.php:1378 inc/_bl/admin/page-search.php:349
1265
- #: inc/_bl/admin/page-search.php:445 inc/_bm/admin/page-availability.php:1024
1266
  #: inc/_bm/admin/page-cost-advanced.php:102 inc/_bm/admin/page-cost-advanced.php:161
1267
  #: inc/_bm/admin/page-cost-deposit.php:362 inc/_bm/admin/page-cost-early-late-booking.php:544
1268
  #: inc/_bm/admin/page-cost-rate.php:231 inc/_bm/admin/page-cost-valuation.php:257
@@ -1271,85 +1288,85 @@ msgstr ""
1271
  #: inc/_bs/admin/page-email-payment.php:730 inc/_bs/admin/page-email-payment.php:766
1272
  #: inc/_mu/admin/page-users.php:168 inc/_ps/admin/page-email-edit.php:726
1273
  #: inc/_ps/admin/page-email-edit.php:762 inc/_ps/admin/page-resources.php:193
1274
- #: inc/_ps/admin/page-settings-form.php:118 inc/_ps/admin/page-settings-form.php:180
1275
- #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:863
1276
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:489
1277
  #: inc/gateways/ideal/wpbc-gw-ideal.php:923 inc/gateways/ipay88/wpbc-gw-ipay88.php:783
1278
- #: inc/gateways/page-gateways.php:658 inc/gateways/pay_cash/wpbc-gw-pay_cash.php:402
1279
- #: inc/gateways/paypal/wpbc-gw-paypal.php:1085 inc/gateways/sage/wpbc-gw-sage.php:911
1280
- #: inc/gateways/stripe/wpbc-gw-stripe.php:926
1281
  msgid "Save Changes"
1282
  msgstr ""
1283
 
1284
  #: core/admin/page-email-approved.php:749 core/admin/page-email-deleted.php:746
1285
- #: core/admin/page-email-deny.php:746 core/admin/page-email-new-admin.php:722
1286
  #: core/admin/page-email-new-visitor.php:725 core/admin/page-email-trash.php:751
1287
- #: core/admin/page-form-free.php:1130 core/admin/wpbc-dashboard.php:471
1288
- #: core/lib/wpbc_all_translations.php:200 inc/_bs/admin/page-email-payment.php:748
1289
  #: inc/_ps/admin/page-email-edit.php:744
1290
  msgid "Type"
1291
  msgstr ""
1292
 
1293
  #: core/admin/page-email-approved.php:756 core/admin/page-email-deleted.php:753
1294
- #: core/admin/page-email-deny.php:753 core/admin/page-email-new-admin.php:729
1295
  #: core/admin/page-email-new-visitor.php:732 core/admin/page-email-trash.php:758
1296
  #: core/admin/page-ics-import.php:194 core/admin/page-import-gcal.php:552
1297
  #: core/admin/page-settings.php:131 core/admin/page-settings.php:268
1298
- #: core/admin/wpbc-toolbars.php:426 core/admin/wpbc-toolbars.php:432
1299
- #: core/lib/wpbc_all_translations.php:201 inc/_bl/admin/page-search.php:399
1300
- #: inc/_bl/admin/page-search.php:427 inc/_bm/admin/page-cost-advanced.php:155
1301
  #: inc/_bs/admin/page-email-payment.php:755 inc/_ps/admin/page-email-edit.php:751
1302
- #: inc/_ps/admin/page-settings-form.php:174
1303
- #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:452 inc/gateways/page-gateways.php:647
1304
  #: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:393 inc/gateways/paypal/wpbc-gw-paypal.php:1059
1305
  #: inc/gateways/paypal/wpbc-gw-paypal.php:1076
1306
  msgid "Help"
1307
  msgstr ""
1308
 
1309
  #: core/admin/page-email-approved.php:839 core/admin/page-email-deleted.php:835
1310
- #: core/admin/page-email-deny.php:835 core/admin/page-email-new-admin.php:819
1311
  #: core/admin/page-email-new-visitor.php:814 core/admin/page-email-trash.php:840
1312
- #: core/lib/wpbc_all_translations.php:202 inc/_bs/admin/page-email-payment.php:837
1313
  #: inc/_ps/admin/page-email-edit.php:833
1314
  msgid "Email sent to "
1315
  msgstr ""
1316
 
1317
  #: core/admin/page-email-approved.php:841 core/admin/page-email-deleted.php:837
1318
- #: core/admin/page-email-deny.php:837 core/admin/page-email-new-admin.php:821
1319
  #: core/admin/page-email-new-visitor.php:816 core/admin/page-email-trash.php:842
1320
- #: core/lib/wpbc_all_translations.php:203 core/wpbc-emails.php:441
1321
  #: inc/_bs/admin/page-email-payment.php:839 inc/_ps/admin/page-email-edit.php:835
1322
  msgid "Email had not sent. Some error occuered."
1323
  msgstr ""
1324
 
1325
  #: core/admin/page-email-approved.php:856 core/admin/page-email-deleted.php:852
1326
- #: core/admin/page-email-deny.php:852 core/admin/page-email-new-admin.php:905
1327
  #: core/admin/page-email-new-visitor.php:831 core/admin/page-email-trash.php:857
1328
- #: core/lib/wpbc_all_translations.php:204 inc/_bs/admin/page-email-payment.php:854
1329
- #: inc/_ps/admin/page-email-edit.php:850 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:884
1330
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:562
1331
  #: inc/gateways/ideal/wpbc-gw-ideal.php:944 inc/gateways/ipay88/wpbc-gw-ipay88.php:804
1332
  #: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:423 inc/gateways/paypal/wpbc-gw-paypal.php:1106
1333
- #: inc/gateways/sage/wpbc-gw-sage.php:932 inc/gateways/stripe/wpbc-gw-stripe.php:945
1334
  msgid "Settings saved."
1335
  msgstr ""
1336
 
1337
  #: core/admin/page-email-approved.php:917 core/admin/page-email-approved.php:920
1338
  #: core/admin/page-email-deleted.php:913 core/admin/page-email-deleted.php:916
1339
  #: core/admin/page-email-deny.php:913 core/admin/page-email-deny.php:916
1340
- #: core/admin/page-email-new-admin.php:967 core/admin/page-email-new-admin.php:970
1341
  #: core/admin/page-email-new-visitor.php:892 core/admin/page-email-new-visitor.php:895
1342
  #: core/admin/page-email-trash.php:918 core/admin/page-email-trash.php:921
1343
- #: core/lib/wpbc_all_translations.php:205 inc/_bs/admin/page-email-payment.php:915
1344
  #: inc/_bs/admin/page-email-payment.php:918 inc/_ps/admin/page-email-edit.php:911
1345
  #: inc/_ps/admin/page-email-edit.php:914
1346
  msgid "If empty then title defined as WordPress"
1347
  msgstr ""
1348
 
1349
  #: core/admin/page-email-approved.php:937 core/admin/page-email-deleted.php:933
1350
- #: core/admin/page-email-deny.php:933 core/admin/page-email-new-admin.php:987
1351
  #: core/admin/page-email-new-visitor.php:912 core/admin/page-email-trash.php:938
1352
- #: core/lib/wpbc_all_translations.php:206 inc/_bs/admin/page-email-payment.php:935
1353
  #: inc/_ps/admin/page-email-edit.php:931
1354
  msgid ""
1355
  "Email different from website DNS, its can be a reason of not delivery emails. Please use the "
@@ -1357,52 +1374,52 @@ msgid ""
1357
  msgstr ""
1358
 
1359
  #: core/admin/page-email-deleted.php:311 core/admin/page-email-deny.php:311
1360
- #: core/admin/page-email-trash.php:316 core/lib/wpbc_all_translations.php:207
1361
  #: core/wpbc-activation.php:1005
1362
  msgid "Your booking has been declined"
1363
  msgstr ""
1364
 
1365
  #: core/admin/page-email-deleted.php:325 core/admin/page-email-deny.php:325
1366
- #: core/admin/page-email-trash.php:330 core/lib/wpbc_all_translations.php:208
1367
  #: core/wpbc-activation.php:1006
1368
  #, php-format
1369
  msgid "Your booking %s for: %s has been canceled. %sThank you, %s"
1370
  msgstr ""
1371
 
1372
- #: core/admin/page-email-deleted.php:558 core/lib/wpbc-ajax.php:340
1373
- #: core/lib/wpbc_all_translations.php:209 inc/_bl/admin/page-coupons.php:378
1374
  #: inc/_bl/admin/page-coupons.php:1023 inc/_bm/admin/page-availability.php:364
1375
  #: inc/_bm/admin/page-cost.php:325 inc/_bm/admin/page-seasons.php:313
1376
  #: inc/_bm/admin/page-seasons.php:843 inc/_bm/m-toolbar.php:547
1377
- #: inc/_ps/admin/page-resources.php:318 inc/_ps/personal.php:156
1378
  msgid "Deleted"
1379
  msgstr ""
1380
 
1381
  #: core/admin/page-email-deleted.php:560 core/admin/page-email-trash.php:565
1382
- #: core/lib/wpbc_all_translations.php:210
1383
  msgid "Customization of email template, which is sent to Visitor after Cancellation of booking"
1384
  msgstr ""
1385
 
1386
- #: core/admin/page-email-deleted.php:696 core/lib/wpbc_all_translations.php:211
1387
  msgid "Email is sent to Visitor after Deleting of booking."
1388
  msgstr ""
1389
 
1390
- #: core/admin/page-email-deny.php:560 core/lib/wpbc_all_translations.php:212
1391
  msgid ""
1392
  "Customization of email template, which is sent to Visitor, when booking status is set to Pending"
1393
  msgstr ""
1394
 
1395
- #: core/admin/page-email-deny.php:696 core/lib/wpbc_all_translations.php:213
1396
  msgid "Email is sent to Visitor after booking set as Pending."
1397
  msgstr ""
1398
 
1399
  #: core/admin/page-email-new-admin.php:292 core/admin/page-email-new-visitor.php:292
1400
- #: core/admin/wpbc-class-listing.php:301 core/lib/wpbc_all_translations.php:214
1401
  #: core/wpbc-activation.php:976 core/wpbc-activation.php:983
1402
  msgid "New booking"
1403
  msgstr ""
1404
 
1405
- #: core/admin/page-email-new-admin.php:308 core/lib/wpbc_all_translations.php:215
1406
  #: core/wpbc-activation.php:977
1407
  #, php-format
1408
  msgid ""
@@ -1410,29 +1427,29 @@ msgid ""
1410
  "booking is waiting for approval. Please visit the moderation panel%sThank you, %s"
1411
  msgstr ""
1412
 
1413
- #: core/admin/page-email-new-admin.php:505 core/lib/wpbc_all_translations.php:216
1414
- #: core/wpbc-functions.php:1959
1415
  msgid "Emails"
1416
  msgstr ""
1417
 
1418
- #: core/admin/page-email-new-admin.php:530 core/admin/page-email-new-visitor.php:537
1419
- #: core/lib/wpbc_all_translations.php:217
1420
  msgid "New"
1421
  msgstr ""
1422
 
1423
- #: core/admin/page-email-new-admin.php:530 core/lib/wpbc_all_translations.php:218
1424
  msgid "admin"
1425
  msgstr ""
1426
 
1427
- #: core/admin/page-email-new-admin.php:532 core/lib/wpbc_all_translations.php:219
1428
  msgid "Customization of email template, which is sending to Admin after new booking"
1429
  msgstr ""
1430
 
1431
- #: core/admin/page-email-new-admin.php:672 core/lib/wpbc_all_translations.php:220
1432
  msgid "Email is sending to Admin after creation of booking."
1433
  msgstr ""
1434
 
1435
- #: core/admin/page-email-new-visitor.php:307 core/lib/wpbc_all_translations.php:221
1436
  #: core/wpbc-activation.php:985
1437
  #, php-format
1438
  msgid ""
@@ -1440,7 +1457,7 @@ msgid ""
1440
  "edit this booking at this page: %s Thank you, %s"
1441
  msgstr ""
1442
 
1443
- #: core/admin/page-email-new-visitor.php:309 core/lib/wpbc_all_translations.php:222
1444
  #: core/wpbc-activation.php:987
1445
  #, php-format
1446
  msgid ""
@@ -1448,168 +1465,168 @@ msgid ""
1448
  "%s"
1449
  msgstr ""
1450
 
1451
- #: core/admin/page-email-new-visitor.php:537 core/lib/wpbc_all_translations.php:223
1452
  msgid "visitor"
1453
  msgstr ""
1454
 
1455
- #: core/admin/page-email-new-visitor.php:539 core/lib/wpbc_all_translations.php:224
1456
  msgid "Customization of email template, which is sending to Visitor after new booking"
1457
  msgstr ""
1458
 
1459
- #: core/admin/page-email-new-visitor.php:675 core/lib/wpbc_all_translations.php:225
1460
  msgid "Email is sending to Visitor after creation of booking."
1461
  msgstr ""
1462
 
1463
- #: core/admin/page-email-trash.php:563 core/admin/wpbc-class-listing.php:331
1464
- #: core/admin/wpbc-class-timeline.php:2302 core/admin/wpbc-toolbars.php:986
1465
- #: core/lib/wpbc_all_translations.php:226
1466
  msgid "Trash"
1467
  msgstr ""
1468
 
1469
- #: core/admin/page-email-trash.php:701 core/lib/wpbc_all_translations.php:227
1470
  msgid "Email is sent to visitor after cancelling of booking (moved to trash)."
1471
  msgstr ""
1472
 
1473
  #: core/admin/page-form-free.php:61 core/admin/page-settings.php:98
1474
- #: core/admin/page-settings.php:212 core/lib/wpbc_all_translations.php:228
1475
- #: core/wpbc-functions.php:1951 inc/_ps/admin/page-settings-form.php:39
1476
  msgid "Form"
1477
  msgstr ""
1478
 
1479
- #: core/admin/page-form-free.php:62 core/lib/wpbc_all_translations.php:229
1480
- #: inc/_ps/admin/page-settings-form.php:40
1481
  msgid "Fields Settings"
1482
  msgstr ""
1483
 
1484
- #: core/admin/page-form-free.php:63 core/lib/wpbc_all_translations.php:230
1485
- #: inc/_ps/admin/page-settings-form.php:41
1486
  msgid "Customizaton of Form Fields"
1487
  msgstr ""
1488
 
1489
  #: core/admin/page-form-free.php:76 core/admin/wpbc-dashboard.php:503
1490
- #: core/lib/wpbc_all_translations.php:231
1491
  msgid "Check Premium Features"
1492
  msgstr ""
1493
 
1494
- #: core/admin/page-form-free.php:77 core/lib/wpbc_all_translations.php:232
1495
  msgid "Upgrade to higher versions"
1496
  msgstr ""
1497
 
1498
- #: core/admin/page-form-free.php:167 core/lib/wpbc_all_translations.php:233
1499
  msgid "Form Field Configuration"
1500
  msgstr ""
1501
 
1502
  #: core/admin/page-form-free.php:281 core/admin/page-form-free.php:404
1503
- #: core/admin/page-form-free.php:561 core/lib/wpbc_all_translations.php:234
1504
- #: inc/_ps/personal.php:2042 inc/_ps/wpbc-form-templates.php:42 inc/_ps/wpbc-form-templates.php:61
1505
  #: inc/_ps/wpbc-form-templates.php:81 inc/_ps/wpbc-form-templates.php:104
1506
  #: inc/_ps/wpbc-form-templates.php:127
1507
  msgid "Send"
1508
  msgstr ""
1509
 
1510
- #: core/admin/page-form-free.php:834 core/lib/wpbc_all_translations.php:235
1511
  msgid "Reset to default form"
1512
  msgstr ""
1513
 
1514
- #: core/admin/page-form-free.php:838 core/admin/page-form-free.php:1448
1515
- #: core/admin/wpbc-class-listing.php:391 core/admin/wpbc-class-listing.php:397
1516
- #: core/admin/wpbc-toolbars.php:989 core/admin/wpbc-toolbars.php:1006
1517
- #: core/lib/wpbc_all_translations.php:236 inc/_bl/admin/page-coupons.php:236
1518
  #: inc/_bl/admin/page-coupons.php:808 inc/_bm/admin/page-availability.php:274
1519
  #: inc/_bm/admin/page-cost-valuation.php:354 inc/_bm/admin/page-cost.php:513
1520
  #: inc/_bm/admin/page-seasons.php:221 inc/_bm/admin/page-seasons.php:602
1521
- #: inc/_ps/admin/page-resources.php:222
1522
  msgid "Do you really want to do this ?"
1523
  msgstr ""
1524
 
1525
- #: core/admin/page-form-free.php:866 core/admin/page-form-free.php:2159
1526
- #: core/lib/wpbc_all_translations.php:237
1527
  msgid "Add New Field"
1528
  msgstr ""
1529
 
1530
- #: core/admin/page-form-free.php:883 core/admin/page-form-free.php:918
1531
- #: core/lib/wpbc_all_translations.php:238 inc/_ps/admin/page-settings-form.php:305
1532
  msgid "Select"
1533
  msgstr ""
1534
 
1535
- #: core/admin/page-form-free.php:883 core/lib/wpbc_all_translations.php:239
1536
  msgid "Form Field"
1537
  msgstr ""
1538
 
1539
- #: core/admin/page-form-free.php:905 core/lib/wpbc_all_translations.php:240
1540
  #: inc/_ps/form/class-wpbc-form-help.php:141
1541
  msgid "Standard Fields"
1542
  msgstr ""
1543
 
1544
- #: core/admin/page-form-free.php:908 core/lib/wpbc_all_translations.php:241
1545
  #: inc/_ps/form/class-wpbc-form-help.php:147
1546
  msgid "Text"
1547
  msgstr ""
1548
 
1549
- #: core/admin/page-form-free.php:928 core/lib/wpbc_all_translations.php:242
1550
  #: inc/_ps/form/class-wpbc-form-help.php:156
1551
  msgid "Textarea"
1552
  msgstr ""
1553
 
1554
- #: core/admin/page-form-free.php:938 core/lib/wpbc_all_translations.php:243
1555
  msgid "Checkbox"
1556
  msgstr ""
1557
 
1558
- #: core/admin/page-form-free.php:953 core/lib/wpbc_all_translations.php:244
1559
  #: inc/_ps/form/class-wpbc-form-help.php:486
1560
  msgid "Advanced Fields"
1561
  msgstr ""
1562
 
1563
- #: core/admin/page-form-free.php:957 core/admin/page-form-free.php:1973
1564
- #: core/admin/page-form-free.php:1974 core/admin/page-form-timeslots.php:106
1565
  #: core/admin/page-form-timeslots.php:201 core/admin/page-form-timeslots.php:766
1566
- #: core/admin/page-form-timeslots.php:816 core/lib/wpbc_all_translations.php:245
1567
- #: inc/_ps/admin/page-settings-form.php:366 inc/_ps/admin/page-settings-form.php:376
1568
- #: inc/_ps/admin/page-settings-form.php:386
1569
  msgid "Time Slots"
1570
  msgstr ""
1571
 
1572
- #: core/admin/page-form-free.php:1015 core/lib/wpbc_all_translations.php:246
1573
  msgid "View"
1574
  msgstr ""
1575
 
1576
- #: core/admin/page-form-free.php:1034 core/lib/wpbc_all_translations.php:247
1577
  msgid "Standard Forms"
1578
  msgstr ""
1579
 
1580
- #: core/admin/page-form-free.php:1037 core/lib/wpbc_all_translations.php:248
1581
  msgid "Form under calendar"
1582
  msgstr ""
1583
 
1584
- #: core/admin/page-form-free.php:1047 core/lib/wpbc_all_translations.php:249
1585
  msgid "Form at right side of calendar"
1586
  msgstr ""
1587
 
1588
- #: core/admin/page-form-free.php:1057 core/lib/wpbc_all_translations.php:250
1589
  msgid "Form and calendar are centered"
1590
  msgstr ""
1591
 
1592
- #: core/admin/page-form-free.php:1067 core/lib/wpbc_all_translations.php:251
1593
  msgid "Form for dark background"
1594
  msgstr ""
1595
 
1596
- #: core/admin/page-form-free.php:1127 core/admin/page-form-free.php:2032
1597
- #: core/lib/wpbc_all_translations.php:252
1598
  msgid "Active"
1599
  msgstr ""
1600
 
1601
- #: core/admin/page-form-free.php:1128 core/lib/wpbc_all_translations.php:253
1602
  msgid "Field Label"
1603
  msgstr ""
1604
 
1605
- #: core/admin/page-form-free.php:1130 core/admin/page-form-free.php:2098
1606
- #: core/lib/wpbc_all_translations.php:254 inc/_ps/form/class-wpbc-field-help-text.php:177
1607
  msgid "Name"
1608
  msgstr ""
1609
 
1610
- #: core/admin/page-form-free.php:1207 core/admin/page-form-free.php:1645
1611
- #: core/admin/page-form-free.php:1706 core/admin/wpbc-class-timeline.php:2216
1612
- #: core/lib/wpbc_all_translations.php:255 inc/_bl/admin/page-coupons.php:215
1613
  #: inc/_bl/admin/page-coupons.php:804 inc/_bl/admin/page-coupons.php:993
1614
  #: inc/_bm/admin/page-cost.php:218 inc/_bm/admin/page-seasons.php:200
1615
  #: inc/_bm/admin/page-seasons.php:598 inc/_bm/admin/page-seasons.php:815
@@ -1617,35 +1634,35 @@ msgstr ""
1617
  msgid "Edit"
1618
  msgstr ""
1619
 
1620
- #: core/admin/page-form-free.php:1208 core/admin/page-form-free.php:1646
1621
- #: core/admin/page-form-timeslots.php:788 core/lib/wpbc_all_translations.php:256
1622
  msgid "Remove"
1623
  msgstr ""
1624
 
1625
- #: core/admin/page-form-free.php:1876 core/lib/wpbc_all_translations.php:257
1626
  #: inc/_ps/form/class-wpbc-form-help.php:88
1627
  msgid "Shortcodes"
1628
  msgstr ""
1629
 
1630
- #: core/admin/page-form-free.php:1877 core/lib/wpbc_all_translations.php:258
1631
  #: inc/_ps/form/class-wpbc-form-help.php:89
1632
  msgid ""
1633
  "You can generate the form fields for your form (at the left side) by selection specific field in "
1634
  "the above selectbox."
1635
  msgstr ""
1636
 
1637
- #: core/admin/page-form-free.php:1878 core/lib/wpbc_all_translations.php:259
1638
  #: inc/_ps/form/class-wpbc-form-help.php:90
1639
  #, php-format
1640
  msgid "Please read more about the booking form fields configuration %shere%s."
1641
  msgstr ""
1642
 
1643
- #: core/admin/page-form-free.php:1880 core/lib/wpbc_all_translations.php:260
1644
  #: inc/_ps/form/class-wpbc-form-help.php:99
1645
  msgid "Default Form Templates"
1646
  msgstr ""
1647
 
1648
- #: core/admin/page-form-free.php:1881 core/lib/wpbc_all_translations.php:261
1649
  #: inc/_ps/form/class-wpbc-form-help.php:100
1650
  #, php-format
1651
  msgid ""
@@ -1655,92 +1672,92 @@ msgid ""
1655
  "reset both forms: Booking Form and Content of Booking Fields form."
1656
  msgstr ""
1657
 
1658
- #: core/admin/page-form-free.php:2011 core/lib/wpbc_all_translations.php:262
1659
  #: inc/_ps/wpbc-form-templates.php:144 inc/_ps/wpbc-form-templates.php:156
1660
  #: inc/_ps/wpbc-form-templates.php:171 inc/_ps/wpbc-form-templates.php:186
1661
  msgid "First Name"
1662
  msgstr ""
1663
 
1664
- #: core/admin/page-form-free.php:2033 core/lib/wpbc_all_translations.php:263
1665
  msgid "Show / hide field in booking form"
1666
  msgstr ""
1667
 
1668
- #: core/admin/page-form-free.php:2054 core/lib/wpbc_all_translations.php:264
1669
  msgid "Set field as required"
1670
  msgstr ""
1671
 
1672
- #: core/admin/page-form-free.php:2074 core/admin/page-form-timeslots.php:784
1673
- #: core/admin/wpbc-toolbar-tiny.php:427 core/admin/wpbc-toolbar-tiny.php:1218
1674
- #: core/lib/wpbc_all_translations.php:265 inc/_ps/form/class-wpbc-field-help-button.php:73
1675
- #: js/wpbc-gutenberg.js:813
1676
  msgid "Label"
1677
  msgstr ""
1678
 
1679
- #: core/admin/page-form-free.php:2103 core/lib/wpbc_all_translations.php:266
1680
  #, php-format
1681
  msgid "Type only %sunique field name%s, that is not using in form"
1682
  msgstr ""
1683
 
1684
- #: core/admin/page-form-free.php:2124 core/lib/wpbc_all_translations.php:267
1685
  msgid "Values"
1686
  msgstr ""
1687
 
1688
- #: core/admin/page-form-free.php:2129 core/lib/wpbc_all_translations.php:268
1689
  msgid "Enter dropdown options. One option per line."
1690
  msgstr ""
1691
 
1692
- #: core/admin/page-form-free.php:2164 core/admin/wpbc-toolbar-tiny.php:297
1693
- #: core/admin/wpbc-toolbars.php:702 core/admin/wpbc-toolbars.php:907
1694
- #: core/admin/wpbc-toolbars.php:1483 core/lib/wpbc_all_translations.php:269
1695
  #: core/sync/wpbc-gcal.php:445 inc/_bs/lib_s.php:104 inc/_bs/s-toolbar.php:209
1696
  #: inc/_ps/p-toolbar.php:477 inc/_ps/p-toolbar.php:522
1697
  msgid "Close"
1698
  msgstr ""
1699
 
1700
- #: core/admin/page-form-free.php:2178 core/lib/wpbc_all_translations.php:270
1701
  #: inc/_bm/m-toolbar.php:367 inc/_bm/m-toolbar.php:368 inc/_ps/p-toolbar.php:356
1702
  #: inc/_ps/p-toolbar.php:408 inc/_ps/p-toolbar.php:441
1703
  msgid "Cancel"
1704
  msgstr ""
1705
 
1706
- #: core/admin/page-form-timeslots.php:106 core/lib/wpbc_all_translations.php:271
1707
  msgid "in 24 hour format"
1708
  msgstr ""
1709
 
1710
- #: core/admin/page-form-timeslots.php:126 core/lib/wpbc_all_translations.php:272
1711
  #: inc/_ps/form/class-wpbc-field-help-checkbox.php:154
1712
  #: inc/_ps/form/class-wpbc-field-help-select.php:119
1713
  msgid "One option per line"
1714
  msgstr ""
1715
 
1716
- #: core/admin/page-form-timeslots.php:132 core/lib/wpbc_all_translations.php:273
1717
  msgid "Titles"
1718
  msgstr ""
1719
 
1720
- #: core/admin/page-form-timeslots.php:151 core/lib/wpbc_all_translations.php:274
1721
  #: inc/_ps/form/class-wpbc-field-help-checkbox.php:172
1722
  #: inc/_ps/form/class-wpbc-field-help-select.php:137
1723
  msgid "One title per line"
1724
  msgstr ""
1725
 
1726
- #: core/admin/page-form-timeslots.php:151 core/lib/wpbc_all_translations.php:275
1727
  msgid "Visible options in selectbox"
1728
  msgstr ""
1729
 
1730
- #: core/admin/page-form-timeslots.php:193 core/lib/wpbc_all_translations.php:276
1731
  msgid "Reset times by"
1732
  msgstr ""
1733
 
1734
  #: core/admin/page-form-timeslots.php:195 core/admin/page-import-gcal.php:69
1735
  #: core/admin/page-import-gcal.php:196 core/admin/page-import-gcal.php:278
1736
- #: core/admin/wpbc-toolbar-tiny.php:633 core/lib/wpbc_all_translations.php:277
1737
  #: core/sync/wpbc-gcal.php:207 core/sync/wpbc-gcal.php:271 inc/_bm/admin/api-settings-m.php:67
1738
  #: inc/_bm/admin/api-settings-m.php:104 inc/_bs/admin/api-settings-s.php:532
1739
  msgid "hours"
1740
  msgstr ""
1741
 
1742
  #: core/admin/page-form-timeslots.php:196 core/admin/page-import-gcal.php:67
1743
- #: core/lib/wpbc_all_translations.php:278 inc/_bm/admin/api-settings-m.php:98
1744
  #: inc/_bm/admin/api-settings-m.php:100 inc/_bs/admin/api-settings-s.php:528
1745
  #: inc/_bs/admin/api-settings-s.php:901
1746
  msgid "hour"
@@ -1748,12 +1765,12 @@ msgstr ""
1748
 
1749
  #: core/admin/page-form-timeslots.php:197 core/admin/page-form-timeslots.php:198
1750
  #: core/admin/page-form-timeslots.php:199 core/admin/page-import-gcal.php:195
1751
- #: core/admin/page-import-gcal.php:277 core/lib/wpbc_all_translations.php:279
1752
  #: core/sync/wpbc-gcal.php:206 core/sync/wpbc-gcal.php:270 inc/_bm/admin/api-settings-m.php:67
1753
  #: inc/_bm/admin/api-settings-m.php:96 inc/_bm/admin/api-settings-m.php:100
1754
  #: inc/_bs/admin/api-settings-s.php:525 inc/_bs/admin/api-settings-s.php:526
1755
- #: inc/_bs/admin/api-settings-s.php:527 inc/_ps/admin/page-settings-form.php:376
1756
- #: inc/_ps/admin/page-settings-form.php:386
1757
  msgid "minutes"
1758
  msgstr ""
1759
 
@@ -1761,60 +1778,60 @@ msgstr ""
1761
  #: core/admin/page-form-timeslots.php:435 core/admin/page-form-timeslots.php:444
1762
  #: core/admin/page-form-timeslots.php:446 core/admin/page-form-timeslots.php:455
1763
  #: core/admin/page-form-timeslots.php:457 core/admin/page-form-timeslots.php:466
1764
- #: core/admin/page-form-timeslots.php:468 core/lib/wpbc_all_translations.php:280
1765
- #: core/wpbc-js.php:131 inc/_ps/personal.php:249
1766
  msgid "Processing"
1767
  msgstr ""
1768
 
1769
- #: core/admin/page-form-timeslots.php:595 core/lib/wpbc_all_translations.php:281
1770
  msgid "+ Add Time Slot"
1771
  msgstr ""
1772
 
1773
  #: core/admin/page-ics-export.php:42 core/admin/page-ics-export.php:43
1774
- #: core/admin/page-ics-general.php:233 core/admin/page-ics-general.php:234
1775
- #: core/admin/page-ics-general.php:253 core/admin/page-ics-general.php:254
1776
  #: core/admin/page-ics-import.php:40 core/admin/page-ics-import.php:41
1777
  #: core/admin/page-import-gcal.php:388 core/admin/page-import-gcal.php:389
1778
- #: core/lib/wpbc_all_translations.php:282 core/wpbc-functions.php:1976
1779
  msgid "Sync"
1780
  msgstr ""
1781
 
1782
- #: core/admin/page-ics-export.php:44 core/admin/page-ics-general.php:235
1783
- #: core/admin/page-ics-general.php:368 core/admin/page-ics-general.php:376
1784
  #: core/admin/page-ics-import.php:42 core/admin/page-ics-import.php:59
1785
  #: core/admin/page-ics-import.php:60 core/admin/page-ics-import.php:62
1786
  #: core/admin/page-ics-import.php:186 core/admin/page-ics-import.php:464
1787
- #: core/admin/page-import-gcal.php:390 core/lib/wpbc_all_translations.php:283
1788
  #: core/sync/wpbc-gcal.php:465
1789
  msgid "Import"
1790
  msgstr ""
1791
 
1792
  #: core/admin/page-ics-export.php:44 core/admin/page-ics-export.php:61
1793
  #: core/admin/page-ics-export.php:62 core/admin/page-ics-export.php:64
1794
- #: core/admin/page-ics-export.php:228 core/admin/page-ics-general.php:235
1795
  #: core/admin/page-ics-import.php:42 core/admin/page-import-gcal.php:390
1796
- #: core/lib/wpbc_all_translations.php:284 inc/_ps/p-toolbar.php:142
1797
  msgid "Export"
1798
  msgstr ""
1799
 
1800
  #: core/admin/page-ics-export.php:64 core/admin/page-ics-export.php:228
1801
- #: core/lib/wpbc_all_translations.php:285
1802
  msgid "feed"
1803
  msgstr ""
1804
 
1805
  #: core/admin/page-ics-export.php:139 core/class/wpbc-class-notices.php:25
1806
- #: core/lib/wpbc_all_translations.php:286 core/sync/wpbc-gcal.php:398
1807
- #: inc/_bm/admin/page-cost-valuation.php:290 inc/_mu/multiuser.php:764
1808
  msgid "Warning!"
1809
  msgstr ""
1810
 
1811
- #: core/admin/page-ics-export.php:141 core/lib/wpbc_all_translations.php:287
1812
  #, php-format
1813
  msgid "This feature require %s"
1814
  msgstr ""
1815
 
1816
  #: core/admin/page-ics-export.php:163 core/admin/page-ics-import.php:162
1817
- #: core/lib/wpbc_all_translations.php:288 inc/_bl/admin/api-settings-l.php:162
1818
  #: inc/_bm/admin/api-settings-m.php:86 inc/_ps/form/class-wpbc-form-help.php:117
1819
  #: inc/_ps/form/class-wpbc-form-help.php:126 inc/_ps/form/class-wpbc-form-help.php:136
1820
  #: inc/_ps/form/class-wpbc-form-help.php:197 inc/_ps/form/class-wpbc-form-help.php:228
@@ -1824,167 +1841,187 @@ msgstr ""
1824
  #: inc/_ps/form/class-wpbc-form-help.php:343 inc/_ps/form/class-wpbc-form-help.php:380
1825
  #: inc/_ps/form/class-wpbc-form-help.php:382 inc/_ps/form/class-wpbc-form-help.php:497
1826
  #: inc/_ps/form/class-wpbc-form-help.php:515 inc/_ps/form/class-wpbc-form-help.php:645
1827
- #: inc/_ps/form/class-wpbc-form-help.php:659 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:407
1828
- #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:825
1829
- #: inc/gateways/ipay88/wpbc-gw-ipay88.php:750 inc/gateways/sage/wpbc-gw-sage.php:880
1830
- #: inc/gateways/stripe/wpbc-gw-stripe.php:895 js/wpbc-gutenberg.js:1099 js/wpbc-gutenberg.js:1185
1831
  msgid "Important!"
1832
  msgstr ""
1833
 
1834
  #: core/admin/page-ics-export.php:165 core/admin/page-ics-import.php:164
1835
- #: core/lib/wpbc_all_translations.php:289
1836
  #, php-format
1837
  msgid "This feature require %s plugin. You can install %s plugin from this %spage%s."
1838
  msgstr ""
1839
 
1840
  #: core/admin/page-ics-export.php:177 core/admin/page-ics-export.php:240
1841
- #: core/admin/page-ics-import.php:176 core/lib/wpbc_all_translations.php:290
1842
  msgid "How it works"
1843
  msgstr ""
1844
 
1845
  #: core/admin/page-ics-export.php:441 core/admin/page-ics-export.php:444
1846
- #: core/lib/wpbc_all_translations.php:291
1847
  msgid ".ics feed URL"
1848
  msgstr ""
1849
 
1850
- #: core/admin/page-ics-export.php:463 core/lib/wpbc_all_translations.php:292
1851
  #: inc/_ps/admin/br-table-export-feeds.php:69
1852
  msgid "Open in new window"
1853
  msgstr ""
1854
 
1855
- #: core/admin/page-ics-export.php:465 core/lib/wpbc_all_translations.php:293
1856
  msgid "Please enter URL for generating .ics feed"
1857
  msgstr ""
1858
 
1859
- #: core/admin/page-ics-export.php:468 core/lib/wpbc_all_translations.php:294
1860
  msgid "This .ics feed of bookings starting from today for 1 year"
1861
  msgstr ""
1862
 
1863
- #: core/admin/page-ics-general.php:68 core/admin/wpbc-toolbar-tiny.php:874
1864
- #: core/admin/wpbc-toolbar-tiny.php:1089 core/admin/wpbc-toolbar-tiny.php:1170
1865
- #: core/lib/wpbc_all_translations.php:295 inc/_bm/admin/api-settings-m.php:60
1866
  #: inc/_ps/wpbc-booking-select-widget.php:188
1867
  msgid "None"
1868
  msgstr ""
1869
 
1870
- #: core/admin/page-ics-general.php:101 core/lib/wpbc_all_translations.php:296
1871
  msgid "Event Title"
1872
  msgstr ""
1873
 
1874
  #: core/admin/page-ics-general.php:102 core/admin/page-ics-general.php:112
1875
- #: core/admin/page-ics-general.php:122 core/lib/wpbc_all_translations.php:297
1876
  #, php-format
1877
  msgid "Select field for assigning to %sevent property%s"
1878
  msgstr ""
1879
 
1880
- #: core/admin/page-ics-general.php:111 core/lib/wpbc_all_translations.php:298
1881
  msgid "Event Description (optional field)"
1882
  msgstr ""
1883
 
1884
- #: core/admin/page-ics-general.php:121 core/lib/wpbc_all_translations.php:299
1885
  msgid "Location"
1886
  msgstr ""
1887
 
1888
- #: core/admin/page-ics-general.php:132 core/admin/wpbc-class-listing.php:205
1889
- #: core/lib/wpbc_all_translations.php:300 core/sync/wpbc-gcal.php:314
1890
- #: inc/_bl/admin/activation-l.php:119 inc/_mu/multiuser.php:626 inc/_ps/admin/activation-p.php:45
1891
  msgid "Default"
1892
  msgstr ""
1893
 
1894
- #: core/admin/page-ics-general.php:158 core/lib/wpbc_all_translations.php:301
1895
  #: core/sync/wpbc-gcal.php:309
1896
  msgid "Timezone"
1897
  msgstr ""
1898
 
1899
- #: core/admin/page-ics-general.php:159 core/lib/wpbc_all_translations.php:302
1900
  #: core/sync/wpbc-gcal.php:343
1901
  msgid "Select a city in your required timezone, if you are having problems with dates and times."
1902
  msgstr ""
1903
 
1904
- #: core/admin/page-ics-general.php:171 core/lib/wpbc_all_translations.php:303
1905
  #: inc/_bs/admin/api-settings-s.php:314
1906
  msgid "Use check in/out time"
1907
  msgstr ""
1908
 
1909
- #: core/admin/page-ics-general.php:172 core/lib/wpbc_all_translations.php:304
1910
  msgid "Use check in/out time of plugin, during import .ics feeds"
1911
  msgstr ""
1912
 
1913
- #: core/admin/page-ics-general.php:179 core/lib/wpbc_all_translations.php:305
1914
  msgid "Append check out day"
1915
  msgstr ""
1916
 
1917
- #: core/admin/page-ics-general.php:180 core/lib/wpbc_all_translations.php:306
1918
  msgid "Append one check out day, during import .ics feeds, if activated using check in/out times"
1919
  msgstr ""
1920
 
1921
- #: core/admin/page-ics-general.php:252 core/admin/page-settings.php:74
1922
- #: core/lib/wpbc_all_translations.php:307 inc/gateways/page-gateways.php:510
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1923
  msgid "General"
1924
  msgstr ""
1925
 
1926
- #: core/admin/page-ics-general.php:253 core/admin/page-ics-general.php:254
1927
- #: core/admin/page-ics-general.php:361 core/admin/page-import-gcal.php:485
1928
  #: core/admin/page-settings.php:75 core/admin/page-settings.php:76
1929
- #: core/lib/wpbc_all_translations.php:308 core/wpbc.php:188
1930
  msgid "General Settings"
1931
  msgstr ""
1932
 
1933
- #: core/admin/page-ics-general.php:368 core/lib/wpbc_all_translations.php:309
1934
  msgid "Assign events fields to specific booking form field"
1935
  msgstr ""
1936
 
1937
- #: core/admin/page-ics-general.php:376 core/admin/page-settings.php:116
1938
- #: core/admin/page-settings.php:238 core/lib/wpbc_all_translations.php:310
1939
- #: inc/_bl/admin/page-search.php:599 inc/_bl/admin/page-search.php:633
1940
- #: inc/_bl/wpbc-search-availability.php:167 inc/_bl/wpbc-search-availability.php:619
1941
- #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:854 inc/gateways/ideal/wpbc-gw-ideal.php:914
1942
- #: inc/gateways/ipay88/wpbc-gw-ipay88.php:774 inc/gateways/paypal/wpbc-gw-paypal.php:1052
1943
- #: inc/gateways/sage/wpbc-gw-sage.php:902 inc/gateways/stripe/wpbc-gw-stripe.php:917
 
1944
  msgid "Advanced"
1945
  msgstr ""
1946
 
1947
- #: core/admin/page-ics-import.php:62 core/lib/wpbc_all_translations.php:311
1948
  msgid "feeds"
1949
  msgstr ""
1950
 
1951
  #: core/admin/page-ics-import.php:433 core/admin/wpbc-sql.php:588
1952
- #: core/admin/wpbc-toolbar-tiny.php:330 core/lib/wpbc_all_translations.php:312
1953
  #: inc/_bl/admin/page-coupons.php:1409 inc/_ps/p-toolbar.php:925 inc/_ps/p-toolbar.php:956
1954
  msgid "parent resource"
1955
  msgstr ""
1956
 
1957
- #: core/admin/page-ics-import.php:455 core/lib/wpbc_all_translations.php:313
1958
  msgid "Enter URL to .ics feed"
1959
  msgstr ""
1960
 
1961
- #: core/admin/page-ics-import.php:460 core/lib/wpbc_all_translations.php:314
1962
  msgid "Choose file"
1963
  msgstr ""
1964
 
1965
- #: core/admin/page-ics-import.php:461 core/lib/wpbc_all_translations.php:315
1966
  msgid "Insert file URL"
1967
  msgstr ""
1968
 
1969
- #: core/admin/page-ics-import.php:462 core/lib/wpbc_all_translations.php:316
1970
  msgid "Upload / Select "
1971
  msgstr ""
1972
 
1973
- #: core/admin/page-ics-import.php:499 core/lib/wpbc_all_translations.php:317
1974
  msgid "What does .ics feeds import/export mean?"
1975
  msgstr ""
1976
 
1977
- #: core/admin/page-ics-import.php:507 core/lib/wpbc_all_translations.php:318
1978
  #, php-format
1979
  msgid "Its useful, if you need to import/export bookings from/to external websites, like %s"
1980
  msgstr ""
1981
 
1982
- #: core/admin/page-ics-import.php:515 core/lib/wpbc_all_translations.php:319
1983
  msgid "and any other calendar that uses .ics format"
1984
  msgstr ""
1985
 
1986
  #: core/admin/page-ics-import.php:529 core/class/wpbc-class-welcome.php:579
1987
- #: core/lib/wpbc_all_translations.php:320
1988
  #, php-format
1989
  msgid ""
1990
  ".ics - is a file format of iCalendar standard for exchanging calendar and scheduling information "
@@ -1992,24 +2029,34 @@ msgid ""
1992
  "calendars updated and synchronized."
1993
  msgstr ""
1994
 
1995
- #: core/admin/page-ics-import.php:550 core/lib/wpbc_all_translations.php:321
 
 
 
 
 
 
 
 
 
 
1996
  msgid "How to start import of .ics feeds (files)?"
1997
  msgstr ""
1998
 
1999
- #: core/admin/page-ics-import.php:557 core/admin/page-ics-import.php:604
2000
- #: core/lib/wpbc_all_translations.php:322
2001
  #, php-format
2002
  msgid "Install %s plugin."
2003
  msgstr ""
2004
 
2005
- #: core/admin/page-ics-import.php:561 core/lib/wpbc_all_translations.php:323
2006
  #, php-format
2007
  msgid ""
2008
  "Insert %s shortcode into some post(s) or page(s). Check more info about this %sshortcode "
2009
  "configuration%s"
2010
  msgstr ""
2011
 
2012
- #: core/admin/page-ics-import.php:570 core/lib/wpbc_all_translations.php:324
2013
  #, php-format
2014
  msgid ""
2015
  "Using such shortcodes in pages give a great flexibility to import from different .ics feeds "
@@ -2017,26 +2064,26 @@ msgid ""
2017
  "accessing such different pages with different time intervals."
2018
  msgstr ""
2019
 
2020
- #: core/admin/page-ics-import.php:579 core/lib/wpbc_all_translations.php:325
2021
  msgid "Or you can import .ics feed or file directly at current page."
2022
  msgstr ""
2023
 
2024
- #: core/admin/page-ics-import.php:586 core/lib/wpbc_all_translations.php:326
2025
  #, php-format
2026
  msgid ""
2027
  "If you have inserted import shortcodes from %s, then you can configure your CRON for "
2028
  "periodically access these pages and import .ics feeds."
2029
  msgstr ""
2030
 
2031
- #: core/admin/page-ics-import.php:597 core/lib/wpbc_all_translations.php:327
2032
  msgid "How to start export of .ics feeds (files)?"
2033
  msgstr ""
2034
 
2035
- #: core/admin/page-ics-import.php:608 core/lib/wpbc_all_translations.php:328
2036
  msgid "Configure ULR feed(s) at this settings page."
2037
  msgstr ""
2038
 
2039
- #: core/admin/page-ics-import.php:613 core/lib/wpbc_all_translations.php:329
2040
  #, php-format
2041
  msgid ""
2042
  "Using such URL(s) you can import .ics feeds, from interface of other websites. %sCheck more "
@@ -2044,26 +2091,26 @@ msgid ""
2044
  "website."
2045
  msgstr ""
2046
 
2047
- #: core/admin/page-ics-import.php:622 core/lib/wpbc_all_translations.php:330
2048
  msgid "Visit these (previously configured URL feeds) pages for downloading .ics files."
2049
  msgstr ""
2050
 
2051
- #: core/admin/page-ics-import.php:677 core/lib/wpbc_all_translations.php:331
2052
- #: core/sync/wpbc-gcal-class.php:457 core/sync/wpbc-gcal.php:102 inc/_ps/personal.php:414
2053
  msgid "Done"
2054
  msgstr ""
2055
 
2056
- #: core/admin/page-import-gcal.php:60 core/lib/wpbc_all_translations.php:332
2057
  msgid "Activate auto import"
2058
  msgstr ""
2059
 
2060
- #: core/admin/page-import-gcal.php:61 core/lib/wpbc_all_translations.php:333
2061
  #, php-format
2062
  msgid "Check this box to %sactivate%s auto import events and creation bookings from them"
2063
  msgstr ""
2064
 
2065
- #: core/admin/page-import-gcal.php:71 core/admin/wpbc-toolbars.php:559
2066
- #: core/admin/wpbc-toolbars.php:793 core/lib/wpbc_all_translations.php:334 core/wpbc-emails.php:206
2067
  #: inc/_bm/admin/page-cost-advanced.php:461 inc/_bm/admin/page-cost-deposit.php:223
2068
  #: inc/_bm/admin/page-cost-early-late-booking.php:230
2069
  #: inc/_bm/admin/page-cost-early-late-booking.php:428 inc/_bm/admin/page-cost-valuation.php:346
@@ -2073,12 +2120,12 @@ msgid "day"
2073
  msgstr ""
2074
 
2075
  #: core/admin/page-import-gcal.php:73 core/admin/page-import-gcal.php:197
2076
- #: core/admin/page-import-gcal.php:279 core/admin/wpbc-toolbars.php:560
2077
- #: core/admin/wpbc-toolbars.php:561 core/admin/wpbc-toolbars.php:562
2078
- #: core/admin/wpbc-toolbars.php:563 core/admin/wpbc-toolbars.php:564
2079
- #: core/admin/wpbc-toolbars.php:794 core/admin/wpbc-toolbars.php:795
2080
- #: core/admin/wpbc-toolbars.php:796 core/admin/wpbc-toolbars.php:797
2081
- #: core/admin/wpbc-toolbars.php:798 core/lib/wpbc_all_translations.php:335
2082
  #: core/sync/wpbc-gcal.php:208 core/sync/wpbc-gcal.php:272 inc/_bl/admin/page-search.php:82
2083
  #: inc/_bm/admin/page-cost-deposit.php:225 inc/_bm/admin/page-cost-early-late-booking.php:228
2084
  #: inc/_bm/admin/page-cost-early-late-booking.php:430 inc/_bm/admin/page-cost-valuation.php:190
@@ -2088,202 +2135,202 @@ msgstr ""
2088
  msgid "days"
2089
  msgstr ""
2090
 
2091
- #: core/admin/page-import-gcal.php:78 core/lib/wpbc_all_translations.php:336
2092
  msgid "Import events every"
2093
  msgstr ""
2094
 
2095
- #: core/admin/page-import-gcal.php:79 core/lib/wpbc_all_translations.php:337
2096
  msgid "Select time duration of import requests."
2097
  msgstr ""
2098
 
2099
- #: core/admin/page-import-gcal.php:95 core/lib/wpbc_all_translations.php:338
2100
  msgid "Google API Key"
2101
  msgstr ""
2102
 
2103
- #: core/admin/page-import-gcal.php:96 core/lib/wpbc_all_translations.php:339
2104
  msgid "Please enter your Google API key. This field required to import events."
2105
  msgstr ""
2106
 
2107
- #: core/admin/page-import-gcal.php:98 core/lib/wpbc_all_translations.php:340
2108
- #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:317
2109
- #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:354
2110
- #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:385 inc/gateways/ideal/wpbc-gw-ideal.php:422
2111
  #: inc/gateways/ideal/wpbc-gw-ideal.php:477 inc/gateways/ideal/wpbc-gw-ideal.php:481
2112
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:329 inc/gateways/paypal/wpbc-gw-paypal.php:529
2113
- #: inc/gateways/sage/wpbc-gw-sage.php:508 inc/gateways/stripe/wpbc-gw-stripe.php:368
2114
- #: inc/gateways/stripe/wpbc-gw-stripe.php:533
2115
  msgid "Note:"
2116
  msgstr ""
2117
 
2118
- #: core/admin/page-import-gcal.php:99 core/lib/wpbc_all_translations.php:341
2119
  #, php-format
2120
  msgid "You can check in this %sinstruction how to generate and use your Google API key%s."
2121
  msgstr ""
2122
 
2123
- #: core/admin/page-import-gcal.php:120 core/lib/wpbc_all_translations.php:342
2124
  #: inc/_ps/admin/br-table-import-gcal-p.php:148
2125
  msgid "Google Calendar ID"
2126
  msgstr ""
2127
 
2128
- #: core/admin/page-import-gcal.php:138 core/lib/wpbc_all_translations.php:343
2129
  #: core/sync/wpbc-gcal.php:295
2130
  msgid "Maximum number"
2131
  msgstr ""
2132
 
2133
- #: core/admin/page-import-gcal.php:139 core/lib/wpbc_all_translations.php:344
2134
  #: core/sync/wpbc-gcal.php:298
2135
  msgid "You can specify the maximum number of events to import during one session."
2136
  msgstr ""
2137
 
2138
  #: core/admin/page-import-gcal.php:148 core/admin/page-import-gcal.php:230
2139
- #: core/lib/wpbc_all_translations.php:345 core/sync/wpbc-gcal.php:184 core/sync/wpbc-gcal.php:248
2140
  msgid "Now"
2141
  msgstr ""
2142
 
2143
  #: core/admin/page-import-gcal.php:149 core/admin/page-import-gcal.php:231
2144
- #: core/lib/wpbc_all_translations.php:346 core/sync/wpbc-gcal.php:185 core/sync/wpbc-gcal.php:249
2145
  msgid "00:00 today"
2146
  msgstr ""
2147
 
2148
  #: core/admin/page-import-gcal.php:150 core/admin/page-import-gcal.php:232
2149
- #: core/lib/wpbc_all_translations.php:347 core/sync/wpbc-gcal.php:186 core/sync/wpbc-gcal.php:250
2150
  msgid "Start of current week"
2151
  msgstr ""
2152
 
2153
  #: core/admin/page-import-gcal.php:151 core/admin/page-import-gcal.php:233
2154
- #: core/lib/wpbc_all_translations.php:348 core/sync/wpbc-gcal.php:187 core/sync/wpbc-gcal.php:251
2155
  msgid "Start of current month"
2156
  msgstr ""
2157
 
2158
  #: core/admin/page-import-gcal.php:152 core/admin/page-import-gcal.php:234
2159
- #: core/lib/wpbc_all_translations.php:349 core/sync/wpbc-gcal.php:188 core/sync/wpbc-gcal.php:252
2160
  msgid "End of current month"
2161
  msgstr ""
2162
 
2163
- #: core/admin/page-import-gcal.php:153 core/lib/wpbc_all_translations.php:350
2164
  #: core/sync/wpbc-gcal.php:189
2165
  msgid "The start of time"
2166
  msgstr ""
2167
 
2168
  #: core/admin/page-import-gcal.php:154 core/admin/page-import-gcal.php:236
2169
- #: core/lib/wpbc_all_translations.php:351 core/sync/wpbc-gcal.php:190 core/sync/wpbc-gcal.php:254
2170
  msgid "Specific date / time"
2171
  msgstr ""
2172
 
2173
- #: core/admin/page-import-gcal.php:160 core/lib/wpbc_all_translations.php:352
2174
  #: core/sync/wpbc-gcal.php:197
2175
  msgid "Select option, when to start retrieving events."
2176
  msgstr ""
2177
 
2178
  #: core/admin/page-import-gcal.php:175 core/admin/page-import-gcal.php:257
2179
- #: core/lib/wpbc_all_translations.php:353 core/sync/wpbc-gcal.php:199 core/sync/wpbc-gcal.php:263
2180
  msgid "Offset"
2181
  msgstr ""
2182
 
2183
  #: core/admin/page-import-gcal.php:176 core/admin/page-import-gcal.php:258
2184
- #: core/lib/wpbc_all_translations.php:354 core/sync/wpbc-gcal.php:199 core/sync/wpbc-gcal.php:263
2185
  msgid "Enter date / time"
2186
  msgstr ""
2187
 
2188
  #: core/admin/page-import-gcal.php:194 core/admin/page-import-gcal.php:276
2189
- #: core/lib/wpbc_all_translations.php:355 core/sync/wpbc-gcal.php:205 core/sync/wpbc-gcal.php:269
2190
  msgid "seconds"
2191
  msgstr ""
2192
 
2193
  #: core/admin/page-import-gcal.php:216 core/admin/page-import-gcal.php:298
2194
- #: core/lib/wpbc_all_translations.php:356 core/sync/wpbc-gcal.php:215
2195
  msgid ""
2196
  "You can specify an additional offset from you chosen start point. The offset can be negative."
2197
  msgstr ""
2198
 
2199
  #: core/admin/page-import-gcal.php:219 core/admin/page-import-gcal.php:301
2200
- #: core/lib/wpbc_all_translations.php:357 core/sync/wpbc-gcal.php:218 core/sync/wpbc-gcal.php:282
2201
  #, php-format
2202
  msgid "Type your date in format %s. Example: %s"
2203
  msgstr ""
2204
 
2205
- #: core/admin/page-import-gcal.php:235 core/lib/wpbc_all_translations.php:358
2206
  #: core/sync/wpbc-gcal.php:253
2207
  msgid "The end of time"
2208
  msgstr ""
2209
 
2210
- #: core/admin/page-import-gcal.php:241 core/admin/wpbc-toolbar-tiny.php:613
2211
- #: core/lib/wpbc_all_translations.php:359 core/sync/wpbc-gcal.php:235
2212
  msgid "Until"
2213
  msgstr ""
2214
 
2215
- #: core/admin/page-import-gcal.php:242 core/lib/wpbc_all_translations.php:360
2216
  #: core/sync/wpbc-gcal.php:261
2217
  msgid "Select option, when to stop retrieving events."
2218
  msgstr ""
2219
 
2220
- #: core/admin/page-import-gcal.php:318 core/lib/wpbc_all_translations.php:361
2221
  msgid "To get Google Calendar API key please follow this instruction"
2222
  msgstr ""
2223
 
2224
- #: core/admin/page-import-gcal.php:320 core/lib/wpbc_all_translations.php:362
2225
  #, php-format
2226
  msgid "Go to Google Developer Console: %s."
2227
  msgstr ""
2228
 
2229
- #: core/admin/page-import-gcal.php:321 core/lib/wpbc_all_translations.php:363
2230
  msgid "Give your project a name and click \"Create\"."
2231
  msgstr ""
2232
 
2233
- #: core/admin/page-import-gcal.php:322 core/lib/wpbc_all_translations.php:364
2234
  msgid "In the sidebar click on \"APIs & auth\"."
2235
  msgstr ""
2236
 
2237
- #: core/admin/page-import-gcal.php:323 core/lib/wpbc_all_translations.php:365
2238
  msgid "Click APIs and make sure \"Calendar API\" is set to ON."
2239
  msgstr ""
2240
 
2241
- #: core/admin/page-import-gcal.php:324 core/lib/wpbc_all_translations.php:366
2242
  msgid "Now click on \"Credentials\" in the sidebar."
2243
  msgstr ""
2244
 
2245
- #: core/admin/page-import-gcal.php:325 core/lib/wpbc_all_translations.php:367
2246
  msgid "Under the section \"Public API access\" click the button \"Create new Key\"."
2247
  msgstr ""
2248
 
2249
- #: core/admin/page-import-gcal.php:326 core/lib/wpbc_all_translations.php:368
2250
  msgid "On the popup click the button \"Server Key\" and click \"Create\"."
2251
  msgstr ""
2252
 
2253
- #: core/admin/page-import-gcal.php:327 core/lib/wpbc_all_translations.php:369
2254
  #, php-format
2255
  msgid ""
2256
  "You will now see a table loaded with the top item being the API Key. Copy this and paste it into "
2257
  "%sGoogle API Key%s field at this page."
2258
  msgstr ""
2259
 
2260
- #: core/admin/page-import-gcal.php:330 core/lib/wpbc_all_translations.php:370
2261
  msgid "Set Your Calendar to Public"
2262
  msgstr ""
2263
 
2264
  #: core/admin/page-import-gcal.php:332 core/admin/page-import-gcal.php:340
2265
- #: core/lib/wpbc_all_translations.php:371
2266
  msgid "Navigate to your Google calendars."
2267
  msgstr ""
2268
 
2269
  #: core/admin/page-import-gcal.php:333 core/admin/page-import-gcal.php:341
2270
- #: core/lib/wpbc_all_translations.php:372
2271
  msgid "Open the settings for the calendar."
2272
  msgstr ""
2273
 
2274
- #: core/admin/page-import-gcal.php:334 core/lib/wpbc_all_translations.php:373
2275
  msgid "Click the \"Share this Calendar\" link."
2276
  msgstr ""
2277
 
2278
- #: core/admin/page-import-gcal.php:335 core/lib/wpbc_all_translations.php:374
2279
  msgid "Click the checkbox to make calendar public. Do not check the other option."
2280
  msgstr ""
2281
 
2282
- #: core/admin/page-import-gcal.php:338 core/lib/wpbc_all_translations.php:375
2283
  msgid "Find Your Calendar ID"
2284
  msgstr ""
2285
 
2286
- #: core/admin/page-import-gcal.php:342 core/lib/wpbc_all_translations.php:376
2287
  #, php-format
2288
  msgid ""
2289
  "Now copy the Calendar ID to use in the plugin settings in your WordPress admin. Make sure to "
@@ -2291,33 +2338,33 @@ msgid ""
2291
  msgstr ""
2292
 
2293
  #: core/admin/page-import-gcal.php:407 core/admin/page-import-gcal.php:408
2294
- #: core/admin/page-import-gcal.php:409 core/lib/wpbc_all_translations.php:377
2295
  #: core/sync/wpbc-gcal.php:443 core/sync/wpbc-gcal.php:466
2296
  msgid "Import Google Calendar Events"
2297
  msgstr ""
2298
 
2299
  #: core/admin/page-import-gcal.php:487 core/admin/page-import-gcal.php:534
2300
- #: core/lib/wpbc_all_translations.php:378
2301
  msgid "Auto import events"
2302
  msgstr ""
2303
 
2304
  #: core/admin/page-import-gcal.php:489 core/admin/page-import-gcal.php:542
2305
- #: core/lib/wpbc_all_translations.php:379
2306
  msgid "Default settings for retrieving events"
2307
  msgstr ""
2308
 
2309
- #: core/admin/page-import-gcal.php:525 core/lib/wpbc_all_translations.php:380
2310
  msgid "Google Calendar - General Settings"
2311
  msgstr ""
2312
 
2313
  #: core/admin/page-settings.php:88 core/admin/page-settings.php:198
2314
- #: core/admin/wpbc-toolbar-tiny.php:241 core/lib/wpbc_all_translations.php:381
2315
  #: inc/_ps/form/class-wpbc-form-help.php:115
2316
  msgid "Calendar"
2317
  msgstr ""
2318
 
2319
  #: core/admin/page-settings.php:93 core/admin/page-settings.php:205
2320
- #: core/lib/wpbc_all_translations.php:382 core/wpbc-functions.php:1923
2321
  #: inc/_bm/admin/page-availability.php:47 inc/_bm/admin/page-availability.php:504
2322
  #: inc/_bm/admin/page-availability.php:596 inc/_bm/admin/page-availability.php:597
2323
  #: inc/_ps/wpbc-form-templates.php:279 inc/_ps/wpbc-form-templates.php:296
@@ -2325,42 +2372,42 @@ msgid "Availability"
2325
  msgstr ""
2326
 
2327
  #: core/admin/page-settings.php:103 core/admin/page-settings.php:219
2328
- #: core/lib/wpbc_all_translations.php:383
2329
  msgid "Booking Admin Panel"
2330
  msgstr ""
2331
 
2332
- #: core/admin/page-settings.php:111 core/lib/wpbc_all_translations.php:384
2333
  msgid "Auto cancellation / approval"
2334
  msgstr ""
2335
 
2336
  #: core/admin/page-settings.php:121 core/admin/page-settings.php:254
2337
- #: core/lib/wpbc_all_translations.php:385
2338
  msgid "Plugin Menu"
2339
  msgstr ""
2340
 
2341
- #: core/admin/page-settings.php:126 core/lib/wpbc_all_translations.php:386
2342
  msgid "Uninstall"
2343
  msgstr ""
2344
 
2345
- #: core/admin/page-settings.php:229 core/lib/wpbc_all_translations.php:387
2346
  msgid "Auto cancellation / auto approval of bookings"
2347
  msgstr ""
2348
 
2349
- #: core/admin/page-settings.php:247 core/lib/wpbc_all_translations.php:388
2350
  msgid "Information"
2351
  msgstr ""
2352
 
2353
- #: core/admin/page-settings.php:261 core/lib/wpbc_all_translations.php:389
2354
  msgid "Uninstall / deactivation"
2355
  msgstr ""
2356
 
2357
  #: core/admin/page-up.php:38 core/admin/wpbc-dashboard.php:505
2358
- #: core/lib/wpbc_all_translations.php:390 inc/_ps/admin/page-settings-up.php:38
2359
  msgid "Upgrade"
2360
  msgstr ""
2361
 
2362
- #: core/admin/wpbc-class-listing.php:103 core/admin/wpbc-toolbar-tiny.php:1519
2363
- #: core/admin/wpbc-toolbar-tiny.php:1528 core/lib/wpbc_all_translations.php:391
2364
  #: inc/_bl/admin/page-coupons.php:1003 inc/_bl/admin/page-coupons.php:1005
2365
  #: inc/_bl/wpbc-search-availability.php:629 inc/_bl/wpdev-booking-search-widget.php:75
2366
  #: inc/_bm/admin/page-availability.php:814 inc/_bm/admin/page-cost-deposit.php:81
@@ -2370,841 +2417,840 @@ msgstr ""
2370
  msgid "Nothing Found"
2371
  msgstr ""
2372
 
2373
- #: core/admin/wpbc-class-listing.php:125 core/lib/wpbc_all_translations.php:392
2374
  #: inc/_ps/wpbc-print.php:83
2375
  msgid "Labels"
2376
  msgstr ""
2377
 
2378
- #: core/admin/wpbc-class-listing.php:129 core/lib/wpbc_all_translations.php:393
2379
  msgid "Booking Data"
2380
  msgstr ""
2381
 
2382
- #: core/admin/wpbc-class-listing.php:130 core/lib/wpbc_all_translations.php:394
2383
  msgid "Booking Dates"
2384
  msgstr ""
2385
 
2386
- #: core/admin/wpbc-class-listing.php:133 core/lib/wpbc_all_translations.php:395
2387
  msgid "Show ALL dates of booking"
2388
  msgstr ""
2389
 
2390
- #: core/admin/wpbc-class-listing.php:139 core/lib/wpbc_all_translations.php:396
2391
  msgid "Show only check in/out dates"
2392
  msgstr ""
2393
 
2394
- #: core/admin/wpbc-class-listing.php:220 core/lib/wpbc_all_translations.php:397
2395
  msgid "Resource not exist"
2396
  msgstr ""
2397
 
2398
- #: core/admin/wpbc-class-listing.php:251 core/lib/wpbc_all_translations.php:398
2399
- #: inc/_bs/lib_s.php:290 inc/_bs/lib_s.php:305
2400
  msgid "Unknown"
2401
  msgstr ""
2402
 
2403
- #: core/admin/wpbc-class-listing.php:393 core/lib/wpbc_all_translations.php:399
 
 
 
 
2404
  msgid "Move to trash"
2405
  msgstr ""
2406
 
2407
- #: core/admin/wpbc-class-listing.php:399 core/admin/wpbc-toolbars.php:1003
2408
- #: core/lib/wpbc_all_translations.php:400
2409
  msgid "Restore"
2410
  msgstr ""
2411
 
2412
- #: core/admin/wpbc-class-listing.php:403 core/lib/wpbc_all_translations.php:401
2413
  msgid "Do you really want to delete this booking ?"
2414
  msgstr ""
2415
 
2416
- #: core/admin/wpbc-class-listing.php:405 core/lib/wpbc_all_translations.php:402
2417
  #: inc/_bl/admin/page-coupons.php:814 inc/_bm/admin/page-seasons.php:608
2418
  msgid "Completely Delete"
2419
  msgstr ""
2420
 
2421
- #: core/admin/wpbc-class-listing.php:414 core/admin/wpbc-toolbars.php:941
2422
- #: core/lib/wpbc_all_translations.php:403
2423
  msgid "Approve"
2424
  msgstr ""
2425
 
2426
- #: core/admin/wpbc-class-listing.php:419 core/admin/wpbc-toolbars.php:959
2427
- #: core/lib/wpbc_all_translations.php:404
2428
  msgid "Do you really want to set booking as pending ?"
2429
  msgstr ""
2430
 
2431
- #: core/admin/wpbc-class-listing.php:430 core/lib/wpbc_all_translations.php:405
2432
- #: inc/_bs/lib_s.php:333
2433
  msgid "Created"
2434
  msgstr ""
2435
 
2436
  #: core/admin/wpbc-class-timeline.php:85 core/admin/wpbc-class-timeline.php:94
2437
- #: core/lib/wpbc_all_translations.php:406
2438
  msgid "Mon"
2439
  msgstr ""
2440
 
2441
  #: core/admin/wpbc-class-timeline.php:86 core/admin/wpbc-class-timeline.php:95
2442
- #: core/lib/wpbc_all_translations.php:407
2443
  msgid "Tue"
2444
  msgstr ""
2445
 
2446
  #: core/admin/wpbc-class-timeline.php:87 core/admin/wpbc-class-timeline.php:96
2447
- #: core/lib/wpbc_all_translations.php:408
2448
  msgid "Wed"
2449
  msgstr ""
2450
 
2451
  #: core/admin/wpbc-class-timeline.php:88 core/admin/wpbc-class-timeline.php:97
2452
- #: core/lib/wpbc_all_translations.php:409
2453
  msgid "Thu"
2454
  msgstr ""
2455
 
2456
  #: core/admin/wpbc-class-timeline.php:89 core/admin/wpbc-class-timeline.php:98
2457
- #: core/lib/wpbc_all_translations.php:410
2458
  msgid "Fri"
2459
  msgstr ""
2460
 
2461
  #: core/admin/wpbc-class-timeline.php:90 core/admin/wpbc-class-timeline.php:99
2462
- #: core/lib/wpbc_all_translations.php:411
2463
  msgid "Sat"
2464
  msgstr ""
2465
 
2466
  #: core/admin/wpbc-class-timeline.php:91 core/admin/wpbc-class-timeline.php:100
2467
- #: core/lib/wpbc_all_translations.php:412
2468
  msgid "Sun"
2469
  msgstr ""
2470
 
2471
- #: core/admin/wpbc-class-timeline.php:1201 core/admin/wpbc-class-timeline.php:1446
2472
- #: core/lib/wpbc_all_translations.php:413 inc/_ps/wpbc-form-templates.php:155
2473
  msgid "Times"
2474
  msgstr ""
2475
 
2476
- #: core/admin/wpbc-class-timeline.php:2217 core/lib/wpbc_all_translations.php:414
2477
  msgid "Decline"
2478
  msgstr ""
2479
 
2480
- #: core/admin/wpbc-class-timeline.php:2218 core/lib/wpbc_all_translations.php:415
2481
  msgid "Pay"
2482
  msgstr ""
2483
 
2484
- #: core/admin/wpbc-class-timeline.php:2271 core/admin/wpbc-class-timeline.php:2274
2485
- #: core/lib/wpbc_all_translations.php:416 core/wpbc-functions.php:1968 inc/_bs/lib_s.php:42
2486
- #: inc/_bs/lib_s.php:267 inc/_bs/lib_s.php:269 inc/_ps/admin/page-settings-form.php:345
2487
- #: inc/_ps/admin/page-settings-form.php:356
2488
  msgid "Payment"
2489
  msgstr ""
2490
 
2491
- #: core/admin/wpbc-dashboard.php:35 core/admin/wpbc-toolbar-tiny.php:226
2492
- #: core/lib/wpbc_all_translations.php:417 core/lib/wpdev-booking-widget.php:14
2493
- #: core/wpbc-functions.php:1819 core/wpbc.php:138 core/wpbc.php:167 core/wpbc.php:178
2494
  #: core/wpbc.php:189
2495
  msgid "Booking Calendar"
2496
  msgstr ""
2497
 
2498
  #: core/admin/wpbc-dashboard.php:319 core/admin/wpbc-dashboard.php:333
2499
- #: core/lib/wpbc_all_translations.php:418
2500
  msgid "Video guide"
2501
  msgstr ""
2502
 
2503
- #: core/admin/wpbc-dashboard.php:344 core/lib/wpbc_all_translations.php:419
2504
  msgid "Support"
2505
  msgstr ""
2506
 
2507
- #: core/admin/wpbc-dashboard.php:355 core/lib/wpbc_all_translations.php:420
2508
  msgid "Getting Started"
2509
  msgstr ""
2510
 
2511
- #: core/admin/wpbc-dashboard.php:359 core/lib/wpbc_all_translations.php:421
2512
  msgid "Help Info"
2513
  msgstr ""
2514
 
2515
- #: core/admin/wpbc-dashboard.php:362 core/admin/wpbc-toolbars.php:433
2516
- #: core/lib/wpbc_all_translations.php:422
2517
  msgid "FAQ"
2518
  msgstr ""
2519
 
2520
- #: core/admin/wpbc-dashboard.php:365 core/lib/wpbc_all_translations.php:423
2521
  msgid "Contact email"
2522
  msgstr ""
2523
 
2524
- #: core/admin/wpbc-dashboard.php:368 core/lib/wpbc_all_translations.php:424
2525
  msgid "Rate plugin (thanks:)"
2526
  msgstr ""
2527
 
2528
- #: core/admin/wpbc-dashboard.php:446 core/lib/wpbc_all_translations.php:425
2529
  msgid "Current version"
2530
  msgstr ""
2531
 
2532
- #: core/admin/wpbc-dashboard.php:451 core/lib/wpbc_all_translations.php:426
2533
  msgid "Demo"
2534
  msgstr ""
2535
 
2536
- #: core/admin/wpbc-dashboard.php:455 core/lib/wpbc_all_translations.php:427
2537
  msgid "Version"
2538
  msgstr ""
2539
 
2540
- #: core/admin/wpbc-dashboard.php:475 core/lib/wpbc_all_translations.php:428
2541
  msgid "Used for"
2542
  msgstr ""
2543
 
2544
- #: core/admin/wpbc-dashboard.php:484 core/lib/wpbc_all_translations.php:429
2545
  msgid "websites"
2546
  msgstr ""
2547
 
2548
- #: core/admin/wpbc-dashboard.php:486 core/lib/wpbc_all_translations.php:430
2549
  msgid "website"
2550
  msgstr ""
2551
 
2552
- #: core/admin/wpbc-dashboard.php:492 core/lib/wpbc_all_translations.php:431
2553
  msgid "Release date"
2554
  msgstr ""
2555
 
2556
- #: core/admin/wpbc-dashboard.php:507 core/lib/wpbc_all_translations.php:432
2557
  msgid "Explore Premium Features"
2558
  msgstr ""
2559
 
2560
- #: core/admin/wpbc-dashboard.php:525 core/lib/wpbc_all_translations.php:433
2561
  msgid "Statistic"
2562
  msgstr ""
2563
 
2564
- #: core/admin/wpbc-dashboard.php:529 core/lib/wpbc_all_translations.php:434
2565
  msgid "New (unverified) booking(s)"
2566
  msgstr ""
2567
 
2568
- #: core/admin/wpbc-dashboard.php:533 core/lib/wpbc_all_translations.php:435
2569
  msgid "Pending booking(s)"
2570
  msgstr ""
2571
 
2572
- #: core/admin/wpbc-dashboard.php:538 core/lib/wpbc_all_translations.php:436
2573
  msgid "Agenda"
2574
  msgstr ""
2575
 
2576
- #: core/admin/wpbc-dashboard.php:542 core/lib/wpbc_all_translations.php:437
2577
  msgid "New booking(s) made today"
2578
  msgstr ""
2579
 
2580
- #: core/admin/wpbc-dashboard.php:546 core/lib/wpbc_all_translations.php:438
2581
  msgid "Bookings for today"
2582
  msgstr ""
2583
 
2584
- #: core/admin/wpbc-toolbar-tiny.php:35 core/admin/wpbc-toolbar-tiny.php:2462
2585
- #: core/lib/wpbc_all_translations.php:439
2586
  msgid "Insert booking calendar"
2587
  msgstr ""
2588
 
2589
- #: core/admin/wpbc-toolbar-tiny.php:36 core/admin/wpbc-toolbar-tiny.php:2463
2590
- #: core/lib/wpbc_all_translations.php:440
2591
  msgid "Booking calendar"
2592
  msgstr ""
2593
 
2594
- #: core/admin/wpbc-toolbar-tiny.php:224 core/lib/wpbc_all_translations.php:441
2595
  msgid "Insert Shortcode"
2596
  msgstr ""
2597
 
2598
- #: core/admin/wpbc-toolbar-tiny.php:240 core/lib/wpbc_all_translations.php:442
2599
  #: inc/_ps/admin/api-settings-p.php:192
2600
  msgid "TimeLine"
2601
  msgstr ""
2602
 
2603
- #: core/admin/wpbc-toolbar-tiny.php:243 core/lib/wpbc_all_translations.php:443
2604
  msgid "Resources Selection"
2605
  msgstr ""
2606
 
2607
- #: core/admin/wpbc-toolbar-tiny.php:245 core/lib/wpbc_all_translations.php:444
2608
- #: core/wpbc-functions.php:1986 inc/_bl/admin/page-search.php:257 inc/_bl/biz_l.php:828
2609
- #: inc/_bl/biz_l.php:841
2610
  msgid "Search"
2611
  msgstr ""
2612
 
2613
- #: core/admin/wpbc-toolbar-tiny.php:246 core/lib/wpbc_all_translations.php:445
2614
  msgid "Only Form"
2615
  msgstr ""
2616
 
2617
- #: core/admin/wpbc-toolbar-tiny.php:249 core/lib/wpbc_all_translations.php:446
2618
  #: inc/_ps/form/class-wpbc-form-help.php:754
2619
  msgid "Other"
2620
  msgstr ""
2621
 
2622
- #: core/admin/wpbc-toolbar-tiny.php:297 core/lib/wpbc_all_translations.php:447
2623
  msgid "Insert into page"
2624
  msgstr ""
2625
 
2626
- #: core/admin/wpbc-toolbar-tiny.php:370 core/admin/wpbc-toolbar-tiny.php:1150
2627
- #: core/lib/wpbc_all_translations.php:448 core/wpbc.php:177 inc/_ps/admin/page-resources.php:40
2628
  #: inc/_ps/p-toolbar.php:696
2629
  msgid "Booking resources"
2630
  msgstr ""
2631
 
2632
- #: core/admin/wpbc-toolbar-tiny.php:371 core/lib/wpbc_all_translations.php:449
2633
  msgid "Select booking resources. Please use CTRL to select multiple booking resources."
2634
  msgstr ""
2635
 
2636
- #: core/admin/wpbc-toolbar-tiny.php:405 core/lib/wpbc_all_translations.php:450
2637
- #: js/wpbc-gutenberg.js:731
2638
  msgid "View mode"
2639
  msgstr ""
2640
 
2641
- #: core/admin/wpbc-toolbar-tiny.php:406 core/lib/wpbc_all_translations.php:451
2642
  msgid "Select type of view format"
2643
  msgstr ""
2644
 
2645
- #: core/admin/wpbc-toolbar-tiny.php:428 core/admin/wpbc-toolbar-tiny.php:437
2646
- #: core/admin/wpbc-toolbars.php:777 core/lib/wpbc_all_translations.php:452
2647
  msgid "All bookings"
2648
  msgstr ""
2649
 
2650
- #: core/admin/wpbc-toolbar-tiny.php:459 core/lib/wpbc_all_translations.php:453
2651
- #: js/wpbc-gutenberg.js:740
2652
- msgid "Number of months to scroll"
2653
- msgstr ""
2654
-
2655
- #: core/admin/wpbc-toolbar-tiny.php:460 core/lib/wpbc_all_translations.php:454
2656
  msgid "Select number of months to scroll after loading"
2657
  msgstr ""
2658
 
2659
- #: core/admin/wpbc-toolbar-tiny.php:481 core/lib/wpbc_all_translations.php:455
2660
- #: js/wpbc-gutenberg.js:737
2661
  msgid "Number of days to scroll"
2662
  msgstr ""
2663
 
2664
- #: core/admin/wpbc-toolbar-tiny.php:482 core/lib/wpbc_all_translations.php:456
2665
  msgid "Select number of days to scroll after loading"
2666
  msgstr ""
2667
 
2668
- #: core/admin/wpbc-toolbar-tiny.php:502 core/admin/wpbc-toolbars.php:1450
2669
- #: core/lib/wpbc_all_translations.php:457 js/wpbc-gutenberg.js:743
2670
  msgid "Start Date"
2671
  msgstr ""
2672
 
2673
- #: core/admin/wpbc-toolbar-tiny.php:580 core/lib/wpbc_all_translations.php:458
2674
  msgid "Select start date"
2675
  msgstr ""
2676
 
2677
- #: core/admin/wpbc-toolbar-tiny.php:673 core/admin/wpbc-toolbar-tiny.php:916
2678
- #: core/admin/wpbc-toolbar-tiny.php:1590 core/admin/wpbc-toolbar-tiny.php:1782
2679
- #: core/lib/wpbc_all_translations.php:459 core/lib/wpdev-booking-widget.php:118
2680
  #: inc/_ps/admin/br-table-import-gcal-p.php:170 inc/_ps/p-toolbar.php:897
2681
- #: inc/_ps/wpbc-booking-select-widget.php:153 js/wpbc-gutenberg.js:559 js/wpbc-gutenberg.js:635
2682
- #: js/wpbc-gutenberg.js:893 js/wpbc-gutenberg.js:1258
2683
  msgid "Booking resource"
2684
  msgstr ""
2685
 
2686
- #: core/admin/wpbc-toolbar-tiny.php:674 core/admin/wpbc-toolbar-tiny.php:917
2687
- #: core/admin/wpbc-toolbar-tiny.php:1591 core/admin/wpbc-toolbar-tiny.php:1783
2688
- #: core/lib/wpbc_all_translations.php:460 inc/_ps/admin/br-table-import-gcal-p.php:184
2689
  msgid "Select booking resource"
2690
  msgstr ""
2691
 
2692
- #: core/admin/wpbc-toolbar-tiny.php:698 core/admin/wpbc-toolbar-tiny.php:1199
2693
- #: core/admin/wpbc-toolbar-tiny.php:1615 core/lib/wpbc_all_translations.php:461
2694
  #: inc/_bm/m-toolbar.php:30 inc/_ps/wpbc-booking-select-widget.php:238
2695
  msgid "Select default custom booking form"
2696
  msgstr ""
2697
 
2698
- #: core/admin/wpbc-toolbar-tiny.php:709 core/admin/wpbc-toolbar-tiny.php:939
2699
- #: core/admin/wpbc-toolbar-tiny.php:1287 core/admin/wpbc-toolbars.php:1565
2700
- #: core/lib/wpbc_all_translations.php:462 core/lib/wpdev-booking-widget.php:135
2701
  #: inc/_ps/wpbc-booking-select-widget.php:201
2702
  msgid "Visible months"
2703
  msgstr ""
2704
 
2705
- #: core/admin/wpbc-toolbar-tiny.php:710 core/admin/wpbc-toolbar-tiny.php:940
2706
- #: core/admin/wpbc-toolbar-tiny.php:1288 core/lib/wpbc_all_translations.php:463
2707
  msgid "Select number of month to show for calendar."
2708
  msgstr ""
2709
 
2710
- #: core/admin/wpbc-toolbar-tiny.php:730 core/admin/wpbc-toolbar-tiny.php:960
2711
- #: core/admin/wpbc-toolbar-tiny.php:1306 core/lib/wpbc_all_translations.php:464
2712
  msgid "Start month:"
2713
  msgstr ""
2714
 
2715
- #: core/admin/wpbc-toolbar-tiny.php:788 core/admin/wpbc-toolbar-tiny.php:1018
2716
- #: core/admin/wpbc-toolbar-tiny.php:1364 core/lib/wpbc_all_translations.php:465
2717
  msgid "Select start month of calendar"
2718
  msgstr ""
2719
 
2720
- #: core/admin/wpbc-toolbar-tiny.php:795 core/admin/wpbc-toolbar-tiny.php:1025
2721
- #: core/admin/wpbc-toolbar-tiny.php:1257 core/lib/wpbc_all_translations.php:466
2722
  msgid "Show advanced settings"
2723
  msgstr ""
2724
 
2725
- #: core/admin/wpbc-toolbar-tiny.php:796 core/admin/wpbc-toolbar-tiny.php:1026
2726
- #: core/admin/wpbc-toolbar-tiny.php:1258 core/lib/wpbc_all_translations.php:467
2727
  msgid "Hide advanced settings"
2728
  msgstr ""
2729
 
2730
- #: core/admin/wpbc-toolbar-tiny.php:806 core/admin/wpbc-toolbar-tiny.php:1036
2731
- #: core/admin/wpbc-toolbar-tiny.php:1268 core/lib/wpbc_all_translations.php:468
2732
  #, php-format
2733
  msgid "Setting advanced parameters of the calendar. %sLike width, height and structure %s"
2734
  msgstr ""
2735
 
2736
- #: core/admin/wpbc-toolbar-tiny.php:807 core/admin/wpbc-toolbar-tiny.php:1037
2737
- #: core/lib/wpbc_all_translations.php:469
2738
  #, php-format
2739
  msgid "%s or minimum and fixed number of days selection for the specific day of week or season.%s"
2740
  msgstr ""
2741
 
2742
- #: core/admin/wpbc-toolbar-tiny.php:817 core/admin/wpbc-toolbar-tiny.php:1047
2743
- #: core/admin/wpbc-toolbar-tiny.php:1371 core/admin/wpbc-toolbars.php:238
2744
- #: core/lib/wpbc_all_translations.php:470 inc/_ps/form/class-wpbc-field-help-checkbox.php:146
2745
- #: inc/_ps/form/class-wpbc-field-help-select.php:111 js/wpbc-gutenberg.js:574
2746
- #: js/wpbc-gutenberg.js:647 js/wpbc-gutenberg.js:834
2747
  msgid "Options"
2748
  msgstr ""
2749
 
2750
- #: core/admin/wpbc-toolbar-tiny.php:838 core/admin/wpbc-toolbar-tiny.php:1068
2751
- #: core/admin/wpbc-toolbar-tiny.php:1392 core/lib/wpbc_all_translations.php:471
2752
  #, php-format
2753
  msgid "Please read more about the possible customizations of these %soptions%s %shere%s"
2754
  msgstr ""
2755
 
2756
- #: core/admin/wpbc-toolbar-tiny.php:842 core/admin/wpbc-toolbar-tiny.php:1072
2757
- #: core/admin/wpbc-toolbar-tiny.php:1396 core/lib/wpbc_all_translations.php:472
2758
  msgid "Specify the full width of calendar, height of date cell and number of months in one row. "
2759
  msgstr ""
2760
 
2761
- #: core/admin/wpbc-toolbar-tiny.php:843 core/admin/wpbc-toolbar-tiny.php:851
2762
- #: core/admin/wpbc-toolbar-tiny.php:1073 core/admin/wpbc-toolbar-tiny.php:1397
2763
- #: core/lib/wpbc_all_translations.php:473 inc/_bm/admin/page-availability.php:510
2764
  #: inc/_ps/form/class-wpbc-form-help.php:418 inc/_ps/form/class-wpbc-form-help.php:565
2765
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:230
2766
  #: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:158
2767
  msgid "Description"
2768
  msgstr ""
2769
 
2770
- #: core/admin/wpbc-toolbar-tiny.php:844 core/admin/wpbc-toolbar-tiny.php:1074
2771
- #: core/admin/wpbc-toolbar-tiny.php:1398 core/lib/wpbc_all_translations.php:474
2772
  msgid ""
2773
  "Calendar have 2 months in a row, the cell height is 30px and calendar full width 568px (possible "
2774
  "to use percentage for width: 100%)"
2775
  msgstr ""
2776
 
2777
- #: core/admin/wpbc-toolbar-tiny.php:845 core/admin/wpbc-toolbar-tiny.php:853
2778
- #: core/admin/wpbc-toolbar-tiny.php:1075 core/admin/wpbc-toolbar-tiny.php:1399
2779
- #: core/lib/wpbc_all_translations.php:475
2780
  msgid "Code Example"
2781
  msgstr ""
2782
 
2783
- #: core/admin/wpbc-toolbar-tiny.php:850 core/lib/wpbc_all_translations.php:476
2784
  msgid ""
2785
  "Specify that during certain seasons (or days of week), the specific minimum number of days must "
2786
  "be booked. "
2787
  msgstr ""
2788
 
2789
- #: core/admin/wpbc-toolbar-tiny.php:852 core/lib/wpbc_all_translations.php:477
2790
  msgid ""
2791
  "Visitor can select only 4 days starting at Monday, 3 or 7 days – Friday, 2 days – Saturday, etc…"
2792
  msgstr ""
2793
 
2794
- #: core/admin/wpbc-toolbar-tiny.php:859 core/lib/wpbc_all_translations.php:478
2795
  #, php-format
2796
  msgid ""
2797
  "Please, read more about the shortcodes %shere%s or JavaScript customization of the specific "
2798
  "shortcodes %shere%s"
2799
  msgstr ""
2800
 
2801
- #: core/admin/wpbc-toolbar-tiny.php:882 core/admin/wpbc-toolbar-tiny.php:1097
2802
- #: core/lib/wpbc_all_translations.php:479
2803
  msgid "Aggregate booking dates from other resources"
2804
  msgstr ""
2805
 
2806
- #: core/admin/wpbc-toolbar-tiny.php:883 core/admin/wpbc-toolbar-tiny.php:1098
2807
- #: core/lib/wpbc_all_translations.php:480
2808
  msgid ""
2809
  "Select booking resources, for getting booking dates from them and set such dates as unavailable "
2810
  "in destination calendar."
2811
  msgstr ""
2812
 
2813
- #: core/admin/wpbc-toolbar-tiny.php:1129 core/lib/wpbc_all_translations.php:481
2814
- #: inc/_bl/admin/page-search.php:382 inc/_bl/admin/page-search.php:415
2815
  #: inc/_bm/admin/api-settings-m.php:298 inc/_bm/admin/page-availability.php:252
2816
  #: inc/_bm/admin/page-cost-advanced.php:124 inc/_bm/admin/page-cost-deposit.php:341
2817
  #: inc/_bm/admin/page-cost-rate.php:214 inc/_bm/admin/page-cost.php:237
2818
- #: inc/_ps/admin/page-resources.php:201 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:818
2819
- #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:833
2820
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:479
2821
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:814
2822
- #: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:361 inc/gateways/sage/wpbc-gw-sage.php:873
2823
- #: inc/gateways/stripe/wpbc-gw-stripe.php:888
2824
  msgid "Note!"
2825
  msgstr ""
2826
 
2827
- #: core/admin/wpbc-toolbar-tiny.php:1130 core/lib/wpbc_all_translations.php:482
2828
  #, php-format
2829
  msgid ""
2830
  "This shortcode %s is using for selection of the booking form of specific booking resources in "
2831
  "selectbox"
2832
  msgstr ""
2833
 
2834
- #: core/admin/wpbc-toolbar-tiny.php:1143 core/admin/wpbc-toolbars.php:1613
2835
- #: core/lib/wpbc_all_translations.php:483 inc/_ps/admin/br-table-import-gcal-p.php:173
2836
  #: inc/_ps/wpbc-booking-select-widget.php:163
2837
  msgid "All"
2838
  msgstr ""
2839
 
2840
- #: core/admin/wpbc-toolbar-tiny.php:1152 core/lib/wpbc_all_translations.php:484
2841
  #: inc/_ps/wpbc-booking-select-widget.php:175
2842
  msgid ""
2843
  "Select booking resources, for showing in selectbox. Please use CTRL to select multiple booking "
2844
  "resources."
2845
  msgstr ""
2846
 
2847
- #: core/admin/wpbc-toolbar-tiny.php:1177 core/lib/wpbc_all_translations.php:485
2848
  #: inc/_ps/wpbc-booking-select-widget.php:181
2849
  msgid "Preselected resource"
2850
  msgstr ""
2851
 
2852
- #: core/admin/wpbc-toolbar-tiny.php:1178 core/lib/wpbc_all_translations.php:486
2853
  msgid "Define preselected resource."
2854
  msgstr ""
2855
 
2856
- #: core/admin/wpbc-toolbar-tiny.php:1203 core/lib/wpbc_all_translations.php:487
2857
  #: inc/_bm/admin/api-settings-m.php:485 inc/_ps/p-toolbar.php:1182
2858
  msgid "Default Form"
2859
  msgstr ""
2860
 
2861
- #: core/admin/wpbc-toolbar-tiny.php:1219 core/admin/wpbc-toolbar-tiny.php:1228
2862
- #: core/lib/wpbc_all_translations.php:488
2863
  msgid "Please select the resource:"
2864
  msgstr ""
2865
 
2866
- #: core/admin/wpbc-toolbar-tiny.php:1220 core/lib/wpbc_all_translations.php:489
2867
  msgid "Title near your select box."
2868
  msgstr ""
2869
 
2870
- #: core/admin/wpbc-toolbar-tiny.php:1237 core/lib/wpbc_all_translations.php:490
2871
  #: inc/_ps/wpbc-booking-select-widget.php:247
2872
  msgid "First option title"
2873
  msgstr ""
2874
 
2875
- #: core/admin/wpbc-toolbar-tiny.php:1238 core/lib/wpbc_all_translations.php:491
2876
- #: inc/_ps/personal.php:516 js/wpbc-gutenberg.js:768
2877
  msgid "Please Select"
2878
  msgstr ""
2879
 
2880
- #: core/admin/wpbc-toolbar-tiny.php:1239 core/lib/wpbc_all_translations.php:492
2881
  #: inc/_ps/wpbc-booking-select-widget.php:254
2882
  msgid "First option in dropdown list."
2883
  msgstr ""
2884
 
2885
- #: core/admin/wpbc-toolbar-tiny.php:1239 core/lib/wpbc_all_translations.php:493
2886
  #: inc/_ps/wpbc-booking-select-widget.php:256
2887
  msgid "Please leave it empty if you want to skip it."
2888
  msgstr ""
2889
 
2890
- #: core/admin/wpbc-toolbar-tiny.php:1429 core/admin/wpbc-toolbar-tiny.php:1709
2891
- #: core/lib/wpbc_all_translations.php:494
2892
  msgid "Select shortcode to insert"
2893
  msgstr ""
2894
 
2895
- #: core/admin/wpbc-toolbar-tiny.php:1441 core/lib/wpbc_all_translations.php:495
2896
  msgid "Search form"
2897
  msgstr ""
2898
 
2899
- #: core/admin/wpbc-toolbar-tiny.php:1444 core/lib/wpbc_all_translations.php:496
2900
  #: inc/_bl/wpbc-search-availability.php:167 inc/_bl/wpbc-search-availability.php:619
2901
  #: inc/_bl/wpbc-search-availability.php:634
2902
  msgid "Search results"
2903
  msgstr ""
2904
 
2905
- #: core/admin/wpbc-toolbar-tiny.php:1463 core/lib/wpbc_all_translations.php:497
2906
  msgid "Check this box to show search results on other page"
2907
  msgstr ""
2908
 
2909
- #: core/admin/wpbc-toolbar-tiny.php:1480 core/lib/wpbc_all_translations.php:498
2910
  msgid "URL of search results:"
2911
  msgstr ""
2912
 
2913
- #: core/admin/wpbc-toolbar-tiny.php:1482 core/lib/wpbc_all_translations.php:499
2914
  msgid "Type the URL of search results page."
2915
  msgstr ""
2916
 
2917
- #: core/admin/wpbc-toolbar-tiny.php:1499 core/lib/wpbc_all_translations.php:500
2918
  msgid "Title of Search results:"
2919
  msgstr ""
2920
 
2921
- #: core/admin/wpbc-toolbar-tiny.php:1500 core/admin/wpbc-toolbar-tiny.php:1509
2922
- #: core/lib/wpbc_all_translations.php:501 inc/_bl/wpdev-booking-search-widget.php:79
2923
  msgid "Result(s) Found"
2924
  msgstr ""
2925
 
2926
- #: core/admin/wpbc-toolbar-tiny.php:1501 core/lib/wpbc_all_translations.php:502
2927
  msgid "Type the title of Search results."
2928
  msgstr ""
2929
 
2930
- #: core/admin/wpbc-toolbar-tiny.php:1501 core/lib/wpbc_all_translations.php:503
2931
  msgid "show number of search results"
2932
  msgstr ""
2933
 
2934
- #: core/admin/wpbc-toolbar-tiny.php:1518 core/lib/wpbc_all_translations.php:504
2935
  msgid "Nothing Found Message:"
2936
  msgstr ""
2937
 
2938
- #: core/admin/wpbc-toolbar-tiny.php:1520 core/lib/wpbc_all_translations.php:505
2939
  msgid "Type the message, when nothing found."
2940
  msgstr ""
2941
 
2942
- #: core/admin/wpbc-toolbar-tiny.php:1540 core/lib/wpbc_all_translations.php:506
2943
  msgid "Search only for users:"
2944
  msgstr ""
2945
 
2946
- #: core/admin/wpbc-toolbar-tiny.php:1542 core/lib/wpbc_all_translations.php:507
2947
  msgid ""
2948
  "Type IDs of the users (separated by comma \",\") for searching availability only for these "
2949
  "users, or leave it blank for searching for all users."
2950
  msgstr ""
2951
 
2952
- #: core/admin/wpbc-toolbar-tiny.php:1562 core/lib/wpbc_all_translations.php:508
2953
  #, php-format
2954
  msgid ""
2955
  "This shortcode %s is using for showing the search results at specific page, if the search form "
2956
  "is submit showing the search results at different page"
2957
  msgstr ""
2958
 
2959
- #: core/admin/wpbc-toolbar-tiny.php:1624 core/lib/wpbc_all_translations.php:509
2960
  msgid "date"
2961
  msgstr ""
2962
 
2963
- #: core/admin/wpbc-toolbar-tiny.php:1684 core/lib/wpbc_all_translations.php:510
2964
  msgid "Define date for booking"
2965
  msgstr ""
2966
 
2967
- #: core/admin/wpbc-toolbar-tiny.php:1722 core/lib/wpbc_all_translations.php:511
2968
  #: inc/_ps/p-toolbar.php:206
2969
  msgid "Edit Booking"
2970
  msgstr ""
2971
 
2972
- #: core/admin/wpbc-toolbar-tiny.php:1725 core/lib/wpbc_all_translations.php:512
2973
  msgid "Show listing of customer bookings"
2974
  msgstr ""
2975
 
2976
- #: core/admin/wpbc-toolbar-tiny.php:1728 core/lib/wpbc_all_translations.php:513
2977
  msgid "Show info about Booking Resource"
2978
  msgstr ""
2979
 
2980
- #: core/admin/wpbc-toolbar-tiny.php:1744 core/lib/wpbc_all_translations.php:514
2981
  #, php-format
2982
  msgid ""
2983
  "This shortcode %s is used on a page, where visitors can %smodify%s their own booking(s), %scancel"
2984
  "%s or make %spayment%s after receiving an admin email payment request"
2985
  msgstr ""
2986
 
2987
- #: core/admin/wpbc-toolbar-tiny.php:1745 core/lib/wpbc_all_translations.php:515
2988
  #, php-format
2989
  msgid ""
2990
  "The content of field %sURL to edit bookings%s on the %sgeneral booking settings page%s must link "
2991
  "to this page"
2992
  msgstr ""
2993
 
2994
- #: core/admin/wpbc-toolbar-tiny.php:1746 core/admin/wpbc-toolbar-tiny.php:1762
2995
- #: core/lib/wpbc_all_translations.php:516
2996
  #, php-format
2997
  msgid "Email templates, which use shortcodes: %s, will be linked to this page"
2998
  msgstr ""
2999
 
3000
- #: core/admin/wpbc-toolbar-tiny.php:1760 core/lib/wpbc_all_translations.php:517
3001
  #, php-format
3002
  msgid ""
3003
  "This shortcode %s is used on a page, where visitors can %sview listing%s of their own booking(s)"
3004
  msgstr ""
3005
 
3006
- #: core/admin/wpbc-toolbar-tiny.php:1761 core/lib/wpbc_all_translations.php:518
3007
  #, php-format
3008
  msgid ""
3009
  "The content of field %sURL of page for customer bookings listing%s on the %sgeneral booking "
3010
  "settings page%s must link to this page"
3011
  msgstr ""
3012
 
3013
- #: core/admin/wpbc-toolbar-tiny.php:1763 core/lib/wpbc_all_translations.php:519
3014
  #, php-format
3015
  msgid "%s You can use in this shortcode the same parameters as for %s shortcode"
3016
  msgstr ""
3017
 
3018
- #: core/admin/wpbc-toolbar-tiny.php:1763 core/lib/wpbc_all_translations.php:520
3019
  msgid "Trick"
3020
  msgstr ""
3021
 
3022
- #: core/admin/wpbc-toolbar-tiny.php:1804 core/lib/wpbc_all_translations.php:521
3023
  #: inc/_bl/admin/api-settings-l.php:466 inc/_ps/admin/br-table-export-feeds.php:79
3024
  #: inc/_ps/admin/br-table-import-gcal-p.php:63
3025
  msgid "Capacity"
3026
  msgstr ""
3027
 
3028
- #: core/admin/wpbc-toolbar-tiny.php:1810 core/lib/wpbc_all_translations.php:522
3029
  msgid "Select type of info to show."
3030
  msgstr ""
3031
 
3032
- #: core/admin/wpbc-toolbar-tiny.php:2120 core/admin/wpbc-toolbar-tiny.php:2163
3033
- #: core/admin/wpbc-toolbar-tiny.php:2247 core/admin/wpbc-toolbar-tiny.php:2336
3034
- #: core/lib/wpbc_all_translations.php:523
3035
  msgid "No booking resources"
3036
  msgstr ""
3037
 
3038
- #: core/admin/wpbc-toolbars.php:41 core/lib/wpbc_all_translations.php:524
3039
  msgid "Filters"
3040
  msgstr ""
3041
 
3042
- #: core/admin/wpbc-toolbars.php:346 core/lib/wpbc_all_translations.php:525
3043
  msgid "Expand Advanced Toolbar"
3044
  msgstr ""
3045
 
3046
- #: core/admin/wpbc-toolbars.php:353 core/lib/wpbc_all_translations.php:526
3047
  msgid "Collapse Advanced Toolbar"
3048
  msgstr ""
3049
 
3050
- #: core/admin/wpbc-toolbars.php:371 core/lib/wpbc_all_translations.php:527
3051
  msgid "Send email notification to customer after approval, cancellation or deletion of bookings"
3052
  msgstr ""
3053
 
3054
- #: core/admin/wpbc-toolbars.php:372 core/lib/wpbc_all_translations.php:528
3055
  msgid "Emails sending"
3056
  msgstr ""
3057
 
3058
- #: core/admin/wpbc-toolbars.php:397 core/lib/wpbc_all_translations.php:529
3059
  msgid "Booking ID"
3060
  msgstr ""
3061
 
3062
- #: core/admin/wpbc-toolbars.php:400 core/admin/wpbc-toolbars.php:2177
3063
- #: core/lib/wpbc_all_translations.php:530
3064
  msgid "Go"
3065
  msgstr ""
3066
 
3067
- #: core/admin/wpbc-toolbars.php:434 core/lib/wpbc_all_translations.php:531
3068
  msgid "Technical Support"
3069
  msgstr ""
3070
 
3071
- #: core/admin/wpbc-toolbars.php:436 core/lib/wpbc_all_translations.php:532
3072
  msgid "About Booking Calendar"
3073
  msgstr ""
3074
 
3075
- #: core/admin/wpbc-toolbars.php:503 core/admin/wpbc-toolbars.php:683
3076
- #: core/admin/wpbc-toolbars.php:888 core/admin/wpbc-toolbars.php:1463
3077
- #: core/lib/wpbc_all_translations.php:533 inc/_bs/lib_s.php:84
3078
  msgid "Apply"
3079
  msgstr ""
3080
 
3081
- #: core/admin/wpbc-toolbars.php:504 core/lib/wpbc_all_translations.php:534
3082
  msgid "Refresh booking listing"
3083
  msgstr ""
3084
 
3085
- #: core/admin/wpbc-toolbars.php:518 core/lib/wpbc_all_translations.php:535
3086
  msgid "Reset filter to default values"
3087
  msgstr ""
3088
 
3089
- #: core/admin/wpbc-toolbars.php:544 core/admin/wpbc-toolbars.php:759
3090
- #: core/lib/wpbc_all_translations.php:536
3091
  msgid "Any"
3092
  msgstr ""
3093
 
3094
- #: core/admin/wpbc-toolbars.php:565 core/admin/wpbc-toolbars.php:799
3095
- #: core/lib/wpbc_all_translations.php:537
3096
  msgid "week"
3097
  msgstr ""
3098
 
3099
- #: core/admin/wpbc-toolbars.php:566 core/admin/wpbc-toolbars.php:800
3100
- #: core/lib/wpbc_all_translations.php:538
3101
  msgid "weeks"
3102
  msgstr ""
3103
 
3104
- #: core/admin/wpbc-toolbars.php:567 core/admin/wpbc-toolbars.php:801
3105
- #: core/lib/wpbc_all_translations.php:539
3106
  msgid "month"
3107
  msgstr ""
3108
 
3109
- #: core/admin/wpbc-toolbars.php:568 core/admin/wpbc-toolbars.php:569
3110
- #: core/admin/wpbc-toolbars.php:570 core/admin/wpbc-toolbars.php:802
3111
- #: core/admin/wpbc-toolbars.php:803 core/admin/wpbc-toolbars.php:804
3112
- #: core/lib/wpbc_all_translations.php:540
3113
  msgid "months"
3114
  msgstr ""
3115
 
3116
- #: core/admin/wpbc-toolbars.php:578 core/admin/wpbc-toolbars.php:813
3117
- #: core/lib/wpbc_all_translations.php:541
3118
  msgid "Filter bookings by booking dates"
3119
  msgstr ""
3120
 
3121
- #: core/admin/wpbc-toolbars.php:582 core/lib/wpbc_all_translations.php:542
3122
  msgid "Current dates"
3123
  msgstr ""
3124
 
3125
- #: core/admin/wpbc-toolbars.php:583 core/admin/wpbc-toolbars.php:817
3126
- #: core/lib/wpbc_all_translations.php:543
3127
  msgid "Today"
3128
  msgstr ""
3129
 
3130
- #: core/admin/wpbc-toolbars.php:584 core/lib/wpbc_all_translations.php:544
3131
  msgid "Previous dates"
3132
  msgstr ""
3133
 
3134
- #: core/admin/wpbc-toolbars.php:585 core/admin/wpbc-toolbars.php:818
3135
- #: core/lib/wpbc_all_translations.php:545
3136
  msgid "All dates"
3137
  msgstr ""
3138
 
3139
- #: core/admin/wpbc-toolbars.php:587 core/lib/wpbc_all_translations.php:546
3140
  msgid "Today check in/out"
3141
  msgstr ""
3142
 
3143
- #: core/admin/wpbc-toolbars.php:588 core/lib/wpbc_all_translations.php:547
3144
  msgid "Check In - Tomorrow"
3145
  msgstr ""
3146
 
3147
- #: core/admin/wpbc-toolbars.php:589 core/lib/wpbc_all_translations.php:548
3148
  msgid "Check Out - Tomorrow"
3149
  msgstr ""
3150
 
3151
- #: core/admin/wpbc-toolbars.php:594 core/lib/wpbc_all_translations.php:549
3152
- #: core/wpbc-functions.php:2496
3153
  msgid "Next"
3154
  msgstr ""
3155
 
3156
- #: core/admin/wpbc-toolbars.php:618 core/admin/wpbc-toolbars.php:823
3157
- #: core/lib/wpbc_all_translations.php:550
3158
  msgid "Prior"
3159
  msgstr ""
3160
 
3161
- #: core/admin/wpbc-toolbars.php:658 core/admin/wpbc-toolbars.php:863
3162
- #: core/lib/wpbc_all_translations.php:551
3163
  msgid "Check-in"
3164
  msgstr ""
3165
 
3166
- #: core/admin/wpbc-toolbars.php:670 core/admin/wpbc-toolbars.php:875
3167
- #: core/lib/wpbc_all_translations.php:552
3168
  msgid "Check-out"
3169
  msgstr ""
3170
 
3171
- #: core/admin/wpbc-toolbars.php:742 core/lib/wpbc_all_translations.php:553
3172
  msgid "Order by"
3173
  msgstr ""
3174
 
3175
- #: core/admin/wpbc-toolbars.php:756 core/lib/wpbc_all_translations.php:554
3176
  msgid "Exist"
3177
  msgstr ""
3178
 
3179
- #: core/admin/wpbc-toolbars.php:757 core/lib/wpbc_all_translations.php:555
3180
  msgid "In Trash"
3181
  msgstr ""
3182
 
3183
- #: core/admin/wpbc-toolbars.php:778 core/lib/wpbc_all_translations.php:556
3184
  msgid "New bookings"
3185
  msgstr ""
3186
 
3187
- #: core/admin/wpbc-toolbars.php:815 core/lib/wpbc_all_translations.php:557
3188
  msgid "Creation"
3189
  msgstr ""
3190
 
3191
- #: core/admin/wpbc-toolbars.php:942 core/lib/wpbc_all_translations.php:558
3192
  msgid "Approve selected bookings"
3193
  msgstr ""
3194
 
3195
- #: core/admin/wpbc-toolbars.php:957 core/lib/wpbc_all_translations.php:559
3196
  msgid "Set selected bookings as pending"
3197
  msgstr ""
3198
 
3199
- #: core/admin/wpbc-toolbars.php:987 core/lib/wpbc_all_translations.php:560
3200
  msgid "Move selected bookings to trash"
3201
  msgstr ""
3202
 
3203
- #: core/admin/wpbc-toolbars.php:1004 core/lib/wpbc_all_translations.php:561
3204
  msgid "Restore selected bookings"
3205
  msgstr ""
3206
 
3207
- #: core/admin/wpbc-toolbars.php:1020 core/lib/wpbc_all_translations.php:562
3208
  #: inc/_bl/admin/page-coupons.php:216 inc/_bl/admin/page-coupons.php:222
3209
  #: inc/_bm/admin/page-availability.php:240 inc/_bm/admin/page-availability.php:246
3210
  #: inc/_bm/admin/page-cost-valuation.php:567 inc/_bm/admin/page-cost.php:223
@@ -3214,179 +3260,179 @@ msgstr ""
3214
  msgid "Delete"
3215
  msgstr ""
3216
 
3217
- #: core/admin/wpbc-toolbars.php:1021 core/lib/wpbc_all_translations.php:563
3218
  msgid "Delete selected bookings"
3219
  msgstr ""
3220
 
3221
- #: core/admin/wpbc-toolbars.php:1023 core/lib/wpbc_all_translations.php:564
3222
  #: core/sync/wpbc-gcal-class.php:671
3223
  msgid "Do you really want to delete selected booking(s) ?"
3224
  msgstr ""
3225
 
3226
- #: core/admin/wpbc-toolbars.php:1039 core/lib/wpbc_all_translations.php:565
3227
  msgid "Reason of cancellation"
3228
  msgstr ""
3229
 
3230
- #: core/admin/wpbc-toolbars.php:1062 core/lib/wpbc_all_translations.php:566
3231
  msgid "Read All"
3232
  msgstr ""
3233
 
3234
- #: core/admin/wpbc-toolbars.php:1063 core/lib/wpbc_all_translations.php:567
3235
  msgid "Mark as read all bookings"
3236
  msgstr ""
3237
 
3238
- #: core/admin/wpbc-toolbars.php:1076 core/lib/wpbc_all_translations.php:568
3239
  msgid "Read"
3240
  msgstr ""
3241
 
3242
- #: core/admin/wpbc-toolbars.php:1077 core/lib/wpbc_all_translations.php:569
3243
  msgid "Mark as read selected bookings"
3244
  msgstr ""
3245
 
3246
- #: core/admin/wpbc-toolbars.php:1091 core/lib/wpbc_all_translations.php:570
3247
  msgid "Unread"
3248
  msgstr ""
3249
 
3250
- #: core/admin/wpbc-toolbars.php:1092 core/lib/wpbc_all_translations.php:571
3251
  msgid "Mark as Unread selected bookings"
3252
  msgstr ""
3253
 
3254
- #: core/admin/wpbc-toolbars.php:1141 core/admin/wpbc-toolbars.php:1220
3255
- #: core/lib/wpbc_all_translations.php:572
3256
  msgid "Show month"
3257
  msgstr ""
3258
 
3259
- #: core/admin/wpbc-toolbars.php:1155 core/lib/wpbc_all_translations.php:573
3260
  msgid "Show 3 months"
3261
  msgstr ""
3262
 
3263
- #: core/admin/wpbc-toolbars.php:1169 core/lib/wpbc_all_translations.php:574
3264
  msgid "Show year"
3265
  msgstr ""
3266
 
3267
- #: core/admin/wpbc-toolbars.php:1192 core/lib/wpbc_all_translations.php:575
3268
  msgid "Show day"
3269
  msgstr ""
3270
 
3271
- #: core/admin/wpbc-toolbars.php:1206 core/lib/wpbc_all_translations.php:576
3272
  msgid "Show week"
3273
  msgstr ""
3274
 
3275
- #: core/admin/wpbc-toolbars.php:1234 core/lib/wpbc_all_translations.php:577
3276
  msgid "Show 2 months"
3277
  msgstr ""
3278
 
3279
- #: core/admin/wpbc-toolbars.php:1291 core/admin/wpbc-toolbars.php:1305
3280
- #: core/admin/wpbc-toolbars.php:1352 core/lib/wpbc_all_translations.php:578
3281
  msgid "Previous 4 weeks"
3282
  msgstr ""
3283
 
3284
- #: core/admin/wpbc-toolbars.php:1292 core/admin/wpbc-toolbars.php:1306
3285
- #: core/admin/wpbc-toolbars.php:1353 core/lib/wpbc_all_translations.php:579
3286
  msgid "Previous week"
3287
  msgstr ""
3288
 
3289
- #: core/admin/wpbc-toolbars.php:1293 core/admin/wpbc-toolbars.php:1307
3290
- #: core/admin/wpbc-toolbars.php:1354 core/lib/wpbc_all_translations.php:580
3291
  msgid "Current week"
3292
  msgstr ""
3293
 
3294
- #: core/admin/wpbc-toolbars.php:1294 core/admin/wpbc-toolbars.php:1308
3295
- #: core/admin/wpbc-toolbars.php:1355 core/lib/wpbc_all_translations.php:581
3296
  msgid "Next week"
3297
  msgstr ""
3298
 
3299
- #: core/admin/wpbc-toolbars.php:1295 core/admin/wpbc-toolbars.php:1309
3300
- #: core/admin/wpbc-toolbars.php:1356 core/lib/wpbc_all_translations.php:582
3301
  msgid "Next 4 weeks"
3302
  msgstr ""
3303
 
3304
- #: core/admin/wpbc-toolbars.php:1319 core/admin/wpbc-toolbars.php:1369
3305
- #: core/admin/wpbc-toolbars.php:1384 core/lib/wpbc_all_translations.php:583
3306
  msgid "Previous 3 months"
3307
  msgstr ""
3308
 
3309
- #: core/admin/wpbc-toolbars.php:1320 core/admin/wpbc-toolbars.php:1370
3310
- #: core/admin/wpbc-toolbars.php:1385 core/lib/wpbc_all_translations.php:584
3311
  msgid "Previous month"
3312
  msgstr ""
3313
 
3314
- #: core/admin/wpbc-toolbars.php:1321 core/admin/wpbc-toolbars.php:1371
3315
- #: core/admin/wpbc-toolbars.php:1386 core/lib/wpbc_all_translations.php:585
3316
  msgid "Current month"
3317
  msgstr ""
3318
 
3319
- #: core/admin/wpbc-toolbars.php:1322 core/admin/wpbc-toolbars.php:1372
3320
- #: core/admin/wpbc-toolbars.php:1387 core/lib/wpbc_all_translations.php:586
3321
  msgid "Next month"
3322
  msgstr ""
3323
 
3324
- #: core/admin/wpbc-toolbars.php:1323 core/admin/wpbc-toolbars.php:1373
3325
- #: core/admin/wpbc-toolbars.php:1388 core/lib/wpbc_all_translations.php:587
3326
  msgid "Next 3 months"
3327
  msgstr ""
3328
 
3329
- #: core/admin/wpbc-toolbars.php:1337 core/lib/wpbc_all_translations.php:588
3330
  msgid "Previous 7 days"
3331
  msgstr ""
3332
 
3333
- #: core/admin/wpbc-toolbars.php:1338 core/lib/wpbc_all_translations.php:589
3334
  msgid "Previous day"
3335
  msgstr ""
3336
 
3337
- #: core/admin/wpbc-toolbars.php:1339 core/lib/wpbc_all_translations.php:590
3338
  msgid "Current day"
3339
  msgstr ""
3340
 
3341
- #: core/admin/wpbc-toolbars.php:1340 core/lib/wpbc_all_translations.php:591
3342
  msgid "Next day"
3343
  msgstr ""
3344
 
3345
- #: core/admin/wpbc-toolbars.php:1341 core/lib/wpbc_all_translations.php:592
3346
  msgid "Next 7 days"
3347
  msgstr ""
3348
 
3349
- #: core/admin/wpbc-toolbars.php:1612 core/lib/wpbc_all_translations.php:593
3350
  msgid "Number of months in one row"
3351
  msgstr ""
3352
 
3353
- #: core/admin/wpbc-toolbars.php:1657 core/lib/wpbc_all_translations.php:594
3354
  msgid "Calendar width"
3355
  msgstr ""
3356
 
3357
- #: core/admin/wpbc-toolbars.php:1705 core/lib/wpbc_all_translations.php:595
3358
  msgid "Calendar cell height"
3359
  msgstr ""
3360
 
3361
- #: core/admin/wpbc-toolbars.php:1812 core/admin/wpbc-toolbars.php:1813
3362
- #: core/lib/wpbc_all_translations.php:596
3363
  msgid "Send email notification to customer about this operation"
3364
  msgstr ""
3365
 
3366
- #: core/admin/wpbc-toolbars.php:1846 core/admin/wpbc-toolbars.php:1847
3367
- #: core/lib/wpbc_all_translations.php:597
3368
  msgid "Add to Google Calendar"
3369
  msgstr ""
3370
 
3371
- #: core/admin/wpbc-toolbars.php:2037 core/lib/wpbc_all_translations.php:598
3372
- #: inc/gateways/page-gateways.php:1389 inc/gateways/page-gateways.php:1407
3373
  msgid "Total"
3374
  msgstr ""
3375
 
3376
- #: core/admin/wpbc-toolbars.php:2173 core/lib/wpbc_all_translations.php:599
3377
  msgid "ID or Title"
3378
  msgstr ""
3379
 
3380
- #: core/any/api-emails.php:504 core/lib/wpbc_all_translations.php:600
3381
  msgid "Email copy to"
3382
  msgstr ""
3383
 
3384
  #: core/class/wpbc-class-dismiss.php:26 core/class/wpbc-class-dismiss.php:30
3385
- #: core/lib/wpbc_all_translations.php:601 core/wpbc-functions.php:2763 core/wpbc-functions.php:2786
3386
  msgid "Dismiss"
3387
  msgstr ""
3388
 
3389
- #: core/class/wpbc-class-notices.php:26 core/lib/wpbc_all_translations.php:602
3390
  #, php-format
3391
  msgid ""
3392
  "Probably you updated your paid version of Booking Calendar by free version or update process "
@@ -3394,235 +3440,240 @@ msgid ""
3394
  msgstr ""
3395
 
3396
  #: core/class/wpbc-class-welcome.php:1519 core/class/wpbc-class-welcome.php:2005
3397
- #: core/lib/wpbc_all_translations.php:603 inc/_ps/admin/page-settings-up.php:144
3398
  msgid "Purchase"
3399
  msgstr ""
3400
 
3401
  #: core/class/wpbc-class-welcome.php:1519 core/class/wpbc-class-welcome.php:2005
3402
- #: core/lib/wpbc_all_translations.php:604 inc/_ps/admin/page-settings-up.php:144
3403
  msgid "Upgrade Now"
3404
  msgstr ""
3405
 
3406
- #: core/lib/wpbc-ajax.php:33 core/lib/wpbc-ajax.php:37 core/lib/wpbc-ajax.php:89
3407
- #: core/lib/wpbc_all_translations.php:605 inc/gateways/ideal/wpbc-gw-ideal.php:1113
3408
  #, php-format
3409
  msgid ""
3410
  "%sError!%s Request do not pass security check! Please refresh the page and try one more time."
3411
  msgstr ""
3412
 
3413
- #: core/lib/wpbc-ajax.php:138 core/lib/wpbc_all_translations.php:606
3414
  msgid "Set as Unread"
3415
  msgstr ""
3416
 
3417
- #: core/lib/wpbc-ajax.php:140 core/lib/wpbc_all_translations.php:607
3418
  msgid "Set as Read"
3419
  msgstr ""
3420
 
3421
- #: core/lib/wpbc-ajax.php:206 core/lib/wpbc_all_translations.php:608
3422
  msgid "Set as Approved"
3423
  msgstr ""
3424
 
3425
- #: core/lib/wpbc-ajax.php:208 core/lib/wpbc_all_translations.php:609
3426
  msgid "Set as Pending"
3427
  msgstr ""
3428
 
3429
- #: core/lib/wpbc-ajax.php:228 core/lib/wpbc-ajax.php:303 core/lib/wpbc_all_translations.php:610
3430
  msgid "Reason for cancellation here"
3431
  msgstr ""
3432
 
3433
- #: core/lib/wpbc-ajax.php:229 core/lib/wpbc-ajax.php:304 core/lib/wpbc_all_translations.php:611
3434
  msgid "Reason of cancellation here"
3435
  msgstr ""
3436
 
3437
- #: core/lib/wpbc-ajax.php:272 core/lib/wpbc_all_translations.php:612
3438
  msgid "Moved to trash"
3439
  msgstr ""
3440
 
3441
- #: core/lib/wpbc-ajax.php:280 core/lib/wpbc_all_translations.php:613
3442
  msgid "Restored"
3443
  msgstr ""
3444
 
3445
- #: core/lib/wpbc-ajax.php:453 core/lib/wpbc_all_translations.php:614 inc/_ps/personal.php:141
3446
  msgid "Saved"
3447
  msgstr ""
3448
 
3449
- #: core/lib/wpbc-booking-new.php:37 core/lib/wpbc_all_translations.php:615
3450
  msgid "The code you entered is incorrect"
3451
  msgstr ""
3452
 
3453
- #: core/lib/wpbc-booking-new.php:138 core/lib/wpbc_all_translations.php:616
3454
  msgid "Updating..."
3455
  msgstr ""
3456
 
3457
- #: core/lib/wpbc-booking-new.php:163 core/lib/wpbc_all_translations.php:617
3458
- #: inc/_ps/personal.php:2303 inc/_ps/personal.php:2494
3459
  msgid "Updated successfully"
3460
  msgstr ""
3461
 
3462
- #: core/lib/wpbc-booking-new.php:768 core/lib/wpbc_all_translations.php:618
3463
  msgid "Error!"
3464
  msgstr ""
3465
 
3466
- #: core/lib/wpbc-booking-new.php:769 core/lib/wpbc_all_translations.php:619
3467
  msgid ""
3468
  "Probably these date(s) just was booking by other visitor. Please reload this page and make "
3469
  "booking again."
3470
  msgstr ""
3471
 
3472
- #: core/lib/wpbc_all_translations.php:620 inc/_bs/lib_s.php:46 inc/_bs/lib_s.php:287
 
 
 
 
3473
  msgid "Paid OK"
3474
  msgstr ""
3475
 
3476
- #: core/lib/wpbc_all_translations.php:621
3477
  msgid "Email is sent to Visitor after Canceling of booking (moved to trash)."
3478
  msgstr ""
3479
 
3480
- #: core/lib/wpbc_all_translations.php:622
3481
  #, php-format
3482
  msgid ""
3483
  "Probabaly you updated your paid version of Booking Calendar by free version or update process "
3484
  "failed. You can request the new update of your paid version at %1sthis page%2s."
3485
  msgstr ""
3486
 
3487
- #: core/lib/wpbc_all_translations.php:623
3488
  msgid "Copy to admin"
3489
  msgstr ""
3490
 
3491
- #: core/lib/wpbc_all_translations.php:624
3492
  msgid "Enable / disable sending copy of this email notification to admin"
3493
  msgstr ""
3494
 
3495
- #: core/lib/wpbc_all_translations.php:625
3496
  msgid "Customization of email template, which is sending to Visitor after approval of booking"
3497
  msgstr ""
3498
 
3499
- #: core/lib/wpbc_all_translations.php:626
3500
  msgid "Email is sending to Visitor after Approval of booking."
3501
  msgstr ""
3502
 
3503
- #: core/lib/wpbc_all_translations.php:627
3504
  msgid "Customization of email template, which is sending to Visitor after Cancellation of booking"
3505
  msgstr ""
3506
 
3507
- #: core/lib/wpbc_all_translations.php:628
3508
  msgid "Email is sending to Visitor after Deleting of booking."
3509
  msgstr ""
3510
 
3511
- #: core/lib/wpbc_all_translations.php:629
3512
  msgid ""
3513
  "Customization of email template, which is sending to Visitor, when booking status is set to "
3514
  "Pending"
3515
  msgstr ""
3516
 
3517
- #: core/lib/wpbc_all_translations.php:630
3518
  msgid "Email is sending to Visitor after booking set as Pending."
3519
  msgstr ""
3520
 
3521
- #: core/lib/wpbc_all_translations.php:631
3522
  msgid "Email is sending to Visitor after Canceling of booking (moved to trash)."
3523
  msgstr ""
3524
 
3525
- #: core/lib/wpbc_all_translations.php:632
3526
  msgid "Confgure ULR feed(s) at this settings page."
3527
  msgstr ""
3528
 
3529
- #: core/lib/wpbc_all_translations.php:633
3530
  msgid "Reject"
3531
  msgstr ""
3532
 
3533
- #: core/lib/wpbc_all_translations.php:634
3534
  msgid "Visit these (previosly configured URL feeds) pages for downloading .ics files."
3535
  msgstr ""
3536
 
3537
- #: core/lib/wpbc_all_translations.php:635
3538
  msgid "Google Calendar"
3539
  msgstr ""
3540
 
3541
- #: core/lib/wpbc_all_translations.php:636
3542
  msgid "Events Import"
3543
  msgstr ""
3544
 
3545
- #: core/lib/wpbc_all_translations.php:637
3546
  msgid "Import Settings"
3547
  msgstr ""
3548
 
3549
- #: core/lib/wpbc_all_translations.php:638
3550
  msgid "Customization of synchronization with Google Calendar"
3551
  msgstr ""
3552
 
3553
- #: core/lib/wpbc_all_translations.php:639 core/wpbc-debug.php:123 core/wpbc-emails.php:441
3554
  #: core/wpbc.php:342 core/wpbc.php:383 inc/_bl/admin/page-coupons.php:1003
3555
  #: inc/_bl/admin/page-coupons.php:1005 inc/_bm/admin/page-availability.php:814
3556
  #: inc/_bm/admin/page-cost-deposit.php:81 inc/_bm/admin/page-cost-early-late-booking.php:82
3557
  #: inc/_bm/admin/page-cost-rate.php:77 inc/_bm/admin/page-cost-valuation.php:103
3558
- #: inc/_bm/admin/page-seasons.php:826 inc/_bm/admin/page-seasons.php:828 inc/_bs/lib_s.php:340
3559
- #: inc/gateways/stripe/wpbc-gw-stripe.php:867 inc/gateways/stripe/wpbc-gw-stripe.php:878
 
3560
  msgid "Error"
3561
  msgstr ""
3562
 
3563
- #: core/lib/wpbc_all_translations.php:640
3564
  msgid "does not exist"
3565
  msgstr ""
3566
 
3567
- #: core/lib/wpbc_all_translations.php:641 core/lib/wpdev-booking-class.php:498
3568
  msgid "Calendar is loading..."
3569
  msgstr ""
3570
 
3571
- #: core/lib/wpbc_all_translations.php:642 core/lib/wpdev-booking-class.php:682
3572
- #: core/lib/wpdev-booking-class.php:743 inc/_ps/personal.php:868 inc/_ps/personal.php:879
3573
  msgid "Wrong booking hash in URL (probably expired)"
3574
  msgstr ""
3575
 
3576
- #: core/lib/wpbc_all_translations.php:643
3577
  msgid "Booking resource type is not defined. Its can be, when at the URL is wrong booking hash."
3578
  msgstr ""
3579
 
3580
- #: core/lib/wpbc_all_translations.php:644 core/lib/wpdev-booking-class.php:863
3581
  #, php-format
3582
  msgid ""
3583
  "%sWarning! Booking calendar for this booking resource are already at the page, please check more "
3584
  "about this issue at %sthis page%s"
3585
  msgstr ""
3586
 
3587
- #: core/lib/wpbc_all_translations.php:645 core/lib/wpdev-booking-class.php:1130
3588
  #: core/lib/wpdev-booking-widget.php:40 inc/_ps/wpbc-booking-select-widget.php:55
3589
  msgid "You need to use special shortcode [bookingedit] for booking editing."
3590
  msgstr ""
3591
 
3592
- #: core/lib/wpbc_all_translations.php:646 core/lib/wpdev-booking-class.php:1012
3593
- #: core/lib/wpdev-booking-class.php:1263 core/lib/wpdev-booking-class.php:1265
3594
  msgid "Wrong booking hash in URL. Probably hash is expired."
3595
  msgstr ""
3596
 
3597
- #: core/lib/wpbc_all_translations.php:647 core/lib/wpdev-booking-class.php:1016
3598
- #: core/lib/wpdev-booking-class.php:1269 js/wpbc-gutenberg.js:1111 js/wpbc-gutenberg.js:1197
3599
  msgid "You do not set any parameters for booking editing"
3600
  msgstr ""
3601
 
3602
- #: core/lib/wpbc_all_translations.php:648 core/lib/wpdev-booking-class.php:1018
3603
- #: core/lib/wpdev-booking-class.php:1271
3604
  #, php-format
3605
  msgid "Please check more about configuration at %sthis page%s"
3606
  msgstr ""
3607
 
3608
- #: core/lib/wpbc_all_translations.php:649 core/lib/wpdev-booking-widget.php:108
3609
  msgid "Booking form with calendar"
3610
  msgstr ""
3611
 
3612
- #: core/lib/wpbc_all_translations.php:650 core/lib/wpdev-booking-widget.php:109
3613
  msgid "Only availability calendar"
3614
  msgstr ""
3615
 
3616
- #: core/lib/wpbc_all_translations.php:651 core/lib/wpdev-booking-widget.php:150
3617
  msgid "Footer"
3618
  msgstr ""
3619
 
3620
- #: core/lib/wpbc_all_translations.php:652 core/lib/wpdev-booking-widget.php:155
3621
  #, php-format
3622
  msgid "Example: %sMake booking here%s"
3623
  msgstr ""
3624
 
3625
- #: core/lib/wpbc_all_translations.php:653 core/lib/wpdev-booking-widget.php:159
3626
  #: inc/_ps/wpbc-booking-select-widget.php:263
3627
  #, php-format
3628
  msgid ""
@@ -3630,103 +3681,103 @@ msgid ""
3630
  "at the same page, then the last will not be visible."
3631
  msgstr ""
3632
 
3633
- #: core/lib/wpbc_all_translations.php:654 core/lib/wpdev-booking-widget.php:163
3634
  #, php-format
3635
  msgid "%sSeveral widgets are supported at %spaid versions%s."
3636
  msgstr ""
3637
 
3638
- #: core/lib/wpbc_all_translations.php:655 core/sync/wpbc-gcal-class.php:300
3639
  msgid "Importing Feed"
3640
  msgstr ""
3641
 
3642
- #: core/lib/wpbc_all_translations.php:656 core/sync/wpbc-gcal-class.php:316
3643
  msgid "Data Parsing"
3644
  msgstr ""
3645
 
3646
- #: core/lib/wpbc_all_translations.php:657 core/sync/wpbc-gcal-class.php:423
3647
  msgid ""
3648
  "Some data was retrieved, but could not be parsed successfully. Please ensure your feed URL is "
3649
  "correct."
3650
  msgstr ""
3651
 
3652
- #: core/lib/wpbc_all_translations.php:658 core/sync/wpbc-gcal-class.php:430
3653
  msgid "The feed could not be found (404). Please ensure your feed URL is correct."
3654
  msgstr ""
3655
 
3656
- #: core/lib/wpbc_all_translations.php:659 core/sync/wpbc-gcal-class.php:433
3657
  msgid ""
3658
  "Access to this feed was denied (403). Please ensure you have public sharing enabled for your "
3659
  "calendar."
3660
  msgstr ""
3661
 
3662
- #: core/lib/wpbc_all_translations.php:660 core/sync/wpbc-gcal-class.php:436
3663
  #, php-format
3664
  msgid ""
3665
  "The feed data could not be retrieved. Error code: %s. Please ensure your feed URL is correct."
3666
  msgstr ""
3667
 
3668
- #: core/lib/wpbc_all_translations.php:661 core/sync/wpbc-gcal-class.php:609
3669
  #: core/sync/wpbc-gcal-class.php:659
3670
  msgid "GID"
3671
  msgstr ""
3672
 
3673
- #: core/lib/wpbc_all_translations.php:662 core/sync/wpbc-gcal-class.php:623
3674
  msgid "Selection"
3675
  msgstr ""
3676
 
3677
- #: core/lib/wpbc_all_translations.php:663 core/sync/wpbc-gcal-class.php:637
3678
  msgid "Location:"
3679
  msgstr ""
3680
 
3681
- #: core/lib/wpbc_all_translations.php:664 core/sync/wpbc-gcal-class.php:667
3682
  msgid "Reload page"
3683
  msgstr ""
3684
 
3685
- #: core/lib/wpbc_all_translations.php:665 core/sync/wpbc-gcal-class.php:680
3686
  msgid "Delete selected booking(s)"
3687
  msgstr ""
3688
 
3689
- #: core/lib/wpbc_all_translations.php:666 core/sync/wpbc-gcal.php:279
3690
  msgid "You can specify an additional offset from you chosen end point. The offset can be negative."
3691
  msgstr ""
3692
 
3693
- #: core/lib/wpbc_all_translations.php:667 core/sync/wpbc-gcal.php:399
3694
  msgid "Retrieve Google Calendar Events "
3695
  msgstr ""
3696
 
3697
- #: core/lib/wpbc_all_translations.php:668 core/sync/wpbc-gcal.php:405
3698
  msgid "Please configure settings for import Google Calendar events"
3699
  msgstr ""
3700
 
3701
- #: core/lib/wpbc_all_translations.php:669 core/sync/wpbc-gcal.php:433
3702
  msgid "Configure"
3703
  msgstr ""
3704
 
3705
- #: core/lib/wpbc_all_translations.php:670 core/wpbc-activation.php:565
3706
  #, php-format
3707
  msgid "%s Found %s not indexed bookings %s"
3708
  msgstr ""
3709
 
3710
- #: core/lib/wpbc_all_translations.php:671 core/wpbc-activation.php:580
3711
  #, php-format
3712
  msgid "%s Finish getting sort dates. %s"
3713
  msgstr ""
3714
 
3715
- #: core/lib/wpbc_all_translations.php:672 core/wpbc-activation.php:589
3716
  #, php-format
3717
  msgid "Updated booking: %s"
3718
  msgstr ""
3719
 
3720
- #: core/lib/wpbc_all_translations.php:673 core/wpbc-activation.php:1010
3721
  msgid "Booking form"
3722
  msgstr ""
3723
 
3724
- #: core/lib/wpbc_all_translations.php:674 core/wpbc-activation.php:1102
3725
  #: inc/_ps/admin/page-email-edit.php:310
3726
  msgid "The reservation has been modified"
3727
  msgstr ""
3728
 
3729
- #: core/lib/wpbc_all_translations.php:675 core/wpbc-activation.php:1103
3730
  #: inc/_ps/admin/page-email-edit.php:324
3731
  #, php-format
3732
  msgid ""
@@ -3734,23 +3785,23 @@ msgid ""
3734
  "Thank you, %s"
3735
  msgstr ""
3736
 
3737
- #: core/lib/wpbc_all_translations.php:676 core/wpbc-activation.php:1143
3738
  #: inc/_bs/admin/api-settings-s.php:376
3739
  msgid "Booked Times:"
3740
  msgstr ""
3741
 
3742
- #: core/lib/wpbc_all_translations.php:677 core/wpbc-activation.php:1163
3743
  msgid ""
3744
  "This booking canceled because we did not receive payment and the administrator did not approve "
3745
  "it."
3746
  msgstr ""
3747
 
3748
- #: core/lib/wpbc_all_translations.php:678 core/wpbc-activation.php:1195
3749
  #: inc/_bs/admin/page-email-payment.php:314
3750
  msgid "You need to make payment for this reservation"
3751
  msgstr ""
3752
 
3753
- #: core/lib/wpbc_all_translations.php:679 core/wpbc-activation.php:1196
3754
  #: inc/_bs/admin/page-email-payment.php:328
3755
  #, php-format
3756
  msgid ""
@@ -3758,409 +3809,409 @@ msgid ""
3758
  "Thank you, %s"
3759
  msgstr ""
3760
 
3761
- #: core/lib/wpbc_all_translations.php:680 core/wpbc-activation.php:1233
3762
  #: inc/_bm/admin/api-settings-m.php:247
3763
  msgid "Cost: "
3764
  msgstr ""
3765
 
3766
- #: core/lib/wpbc_all_translations.php:681 core/wpbc-activation.php:1264
3767
  #: inc/_bl/admin/api-settings-l.php:75
3768
  msgid "Available: "
3769
  msgstr ""
3770
 
3771
- #: core/lib/wpbc_all_translations.php:682 core/wpbc-emails.php:78
3772
  msgid "Booking system"
3773
  msgstr ""
3774
 
3775
- #: core/lib/wpbc_all_translations.php:683 core/wpbc-emails.php:184
3776
  msgid ""
3777
  "You can use (in subject and content of email template) any shortcodes, which you used in the "
3778
  "booking form. Use the shortcodes in the same way as you used them in the content form at "
3779
  "Settings Fields page."
3780
  msgstr ""
3781
 
3782
- #: core/lib/wpbc_all_translations.php:684 core/wpbc-emails.php:187
3783
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:803
3784
  msgid "You can use following shortcodes in content of this template"
3785
  msgstr ""
3786
 
3787
- #: core/lib/wpbc_all_translations.php:685 core/wpbc-emails.php:191
3788
- #: inc/gateways/page-gateways.php:1040
3789
  #, php-format
3790
  msgid ""
3791
  "%s - inserting data info about the booking, which you configured in the content form at Settings "
3792
  "Fields page"
3793
  msgstr ""
3794
 
3795
- #: core/lib/wpbc_all_translations.php:686 core/wpbc-emails.php:193
3796
  #, php-format
3797
  msgid "%s - inserting data info about the booking"
3798
  msgstr ""
3799
 
3800
- #: core/lib/wpbc_all_translations.php:687 core/wpbc-emails.php:197
3801
  #, php-format
3802
  msgid "%s - inserting the dates of booking"
3803
  msgstr ""
3804
 
3805
- #: core/lib/wpbc_all_translations.php:688 core/wpbc-emails.php:201
3806
  #, php-format
3807
  msgid "%s - inserting check-in date (first day of reservation),"
3808
  msgstr ""
3809
 
3810
- #: core/lib/wpbc_all_translations.php:689 core/wpbc-emails.php:205 core/wpbc-emails.php:206
3811
  #, php-format
3812
  msgid "%s - inserting check-out date (last day of reservation),"
3813
  msgstr ""
3814
 
3815
- #: core/lib/wpbc_all_translations.php:690 core/wpbc-emails.php:211
3816
  #, php-format
3817
  msgid "%s - inserting the number of booking dates "
3818
  msgstr ""
3819
 
3820
- #: core/lib/wpbc_all_translations.php:691 core/wpbc-emails.php:217
3821
  #, php-format
3822
  msgid "%s - inserting ID of booking "
3823
  msgstr ""
3824
 
3825
- #: core/lib/wpbc_all_translations.php:692 core/wpbc-emails.php:222
3826
  #, php-format
3827
  msgid "%s or %s - inserting the title of the booking resource "
3828
  msgstr ""
3829
 
3830
- #: core/lib/wpbc_all_translations.php:693 core/wpbc-emails.php:228
3831
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:811
3832
  #, php-format
3833
  msgid "%s - inserting the cost of booking "
3834
  msgstr ""
3835
 
3836
- #: core/lib/wpbc_all_translations.php:694 core/wpbc-emails.php:234
3837
  #, php-format
3838
  msgid "%s - inserting your site URL "
3839
  msgstr ""
3840
 
3841
- #: core/lib/wpbc_all_translations.php:695 core/wpbc-emails.php:237
3842
  #, php-format
3843
  msgid "%s - inserting IP address of the user who made this action "
3844
  msgstr ""
3845
 
3846
- #: core/lib/wpbc_all_translations.php:696 core/wpbc-emails.php:238
3847
  #, php-format
3848
  msgid ""
3849
  "%s - inserting contents of the User-Agent: header from the current request, if there is one "
3850
  msgstr ""
3851
 
3852
- #: core/lib/wpbc_all_translations.php:697 core/wpbc-emails.php:239
3853
  #, php-format
3854
  msgid "%s - inserting address of the page (if any), where visitor make this action "
3855
  msgstr ""
3856
 
3857
- #: core/lib/wpbc_all_translations.php:698 core/wpbc-emails.php:243
3858
  #, php-format
3859
  msgid "%s - inserting date of this action "
3860
  msgstr ""
3861
 
3862
- #: core/lib/wpbc_all_translations.php:699 core/wpbc-emails.php:240
3863
  #, php-format
3864
  msgid "%s - inserting time of this action "
3865
  msgstr ""
3866
 
3867
- #: core/lib/wpbc_all_translations.php:700 core/wpbc-emails.php:257
3868
  #, php-format
3869
  msgid "%s - inserting moderate link of new booking "
3870
  msgstr ""
3871
 
3872
- #: core/lib/wpbc_all_translations.php:701 core/wpbc-emails.php:268
3873
  #, php-format
3874
  msgid ""
3875
  "%s - inserting link to the page where visitor can edit the reservation, (possible to use the %s "
3876
  "parameter for setting different %s of this page. Example: %s )"
3877
  msgstr ""
3878
 
3879
- #: core/lib/wpbc_all_translations.php:702 core/wpbc-emails.php:272
3880
  #, php-format
3881
  msgid ""
3882
  "%s - inserting link to the page where visitor can cancel the reservation, (possible to use the "
3883
  "%s parameter for setting different %s of this page. Example: %s )"
3884
  msgstr ""
3885
 
3886
- #: core/lib/wpbc_all_translations.php:703 core/wpbc-emails.php:277
3887
  #, php-format
3888
  msgid ""
3889
  "%s - inserting link to payment page where visitor can pay for the reservation (possible to use "
3890
  "the %s parameter for setting different %s of this page. Example: %s )"
3891
  msgstr ""
3892
 
3893
- #: core/lib/wpbc_all_translations.php:704 core/wpbc-emails.php:281
3894
  #, php-format
3895
  msgid "%s - add the reason for booking payment, you can enter it before sending email, "
3896
  msgstr ""
3897
 
3898
- #: core/lib/wpbc_all_translations.php:705 core/wpbc-emails.php:287
3899
  #, php-format
3900
  msgid "%s - add the reason booking was cancelled, you can enter it before sending email, "
3901
  msgstr ""
3902
 
3903
- #: core/lib/wpbc_all_translations.php:706 core/wpbc-emails.php:295 core/wpbc-translation.php:271
3904
  msgid "Configuration in several languages"
3905
  msgstr ""
3906
 
3907
- #: core/lib/wpbc_all_translations.php:707 core/wpbc-emails.php:296 core/wpbc-translation.php:272
3908
  #, php-format
3909
  msgid "%s - start new translation section, where %s - locale of translation"
3910
  msgstr ""
3911
 
3912
- #: core/lib/wpbc_all_translations.php:708 core/wpbc-emails.php:297 core/wpbc-translation.php:273
3913
  #, php-format
3914
  msgid "Example #1: %s - start French translation section"
3915
  msgstr ""
3916
 
3917
- #: core/lib/wpbc_all_translations.php:709 core/wpbc-emails.php:298 core/wpbc-translation.php:274
3918
  #, php-format
3919
  msgid "Example #2: \"%s\" - English and French translation of some message"
3920
  msgstr ""
3921
 
3922
- #: core/lib/wpbc_all_translations.php:710 core/wpbc-functions.php:1003 inc/_bm/biz_m.php:2014
3923
  msgid "yes"
3924
  msgstr ""
3925
 
3926
- #: core/lib/wpbc_all_translations.php:711 core/wpbc-functions.php:1007
3927
  msgid "no"
3928
  msgstr ""
3929
 
3930
- #: core/lib/wpbc_all_translations.php:712 core/wpbc-functions.php:1896
3931
  #: inc/_bm/admin/page-cost.php:48 inc/_bm/admin/page-cost.php:570
3932
  msgid "Costs and Rates"
3933
  msgstr ""
3934
 
3935
- #: core/lib/wpbc_all_translations.php:713 core/wpbc-functions.php:1905
3936
  #: inc/_bm/admin/page-cost-advanced.php:43 inc/_bm/admin/page-cost-advanced.php:148
3937
  #: inc/gateways/page-gateways.php:92
3938
  msgid "Advanced Cost"
3939
  msgstr ""
3940
 
3941
- #: core/lib/wpbc_all_translations.php:714 core/wpbc-functions.php:1914
3942
  #: inc/_bl/admin/page-coupons.php:45 inc/_bl/admin/page-coupons.php:47
3943
  msgid "Coupons"
3944
  msgstr ""
3945
 
3946
- #: core/lib/wpbc_all_translations.php:715 core/wpbc-functions.php:1932
3947
  #: inc/_bm/admin/page-seasons.php:45 inc/_bm/admin/page-seasons.php:47
3948
  msgid "Season Filters"
3949
  msgstr ""
3950
 
3951
- #: core/lib/wpbc_all_translations.php:716 core/wpbc-functions.php:2094
3952
  msgid "Warning! Some error occur, during sending registration request."
3953
  msgstr ""
3954
 
3955
- #: core/lib/wpbc_all_translations.php:717 core/wpbc-functions.php:2099
3956
  msgid ""
3957
  "Please refresh this page and if the same error appear again contact support by email (with info "
3958
  "about order number and website) for finishing the registrations"
3959
  msgstr ""
3960
 
3961
- #: core/lib/wpbc_all_translations.php:718 core/wpbc-functions.php:2127
3962
  #, php-format
3963
  msgid "If you like %s please leave us a %s rating. A huge thank you in advance!"
3964
  msgstr ""
3965
 
3966
- #: core/lib/wpbc_all_translations.php:719 core/wpbc-functions.php:2295
3967
  msgid "Changes saved."
3968
  msgstr ""
3969
 
3970
- #: core/lib/wpbc_all_translations.php:720 core/wpbc-functions.php:2401
3971
  msgid "Click to toggle"
3972
  msgstr ""
3973
 
3974
- #: core/lib/wpbc_all_translations.php:721 core/wpbc-functions.php:2463
3975
  msgid "Prev"
3976
  msgstr ""
3977
 
3978
- #: core/lib/wpbc_all_translations.php:722 core/wpbc-functions.php:2825
3979
  msgid "We&#8217;ve assembled some links to get you started:"
3980
  msgstr ""
3981
 
3982
- #: core/lib/wpbc_all_translations.php:723 core/wpbc-functions.php:2828
3983
  msgid "Get Started"
3984
  msgstr ""
3985
 
3986
- #: core/lib/wpbc_all_translations.php:724 core/wpbc-functions.php:2831
3987
  #, php-format
3988
  msgid "Insert booking form %sshortcode%s into your %sPost%s or %sPage%s"
3989
  msgstr ""
3990
 
3991
- #: core/lib/wpbc_all_translations.php:725 core/wpbc-functions.php:2840
3992
  #, php-format
3993
  msgid "or add booking calendar %sWidget%s to your sidebar."
3994
  msgstr ""
3995
 
3996
- #: core/lib/wpbc_all_translations.php:726 core/wpbc-functions.php:2846
3997
  #, php-format
3998
  msgid "Check %show todo%s that and what %sshortcodes%s are available."
3999
  msgstr ""
4000
 
4001
- #: core/lib/wpbc_all_translations.php:727 core/wpbc-functions.php:2853
4002
  #, php-format
4003
  msgid "Add new booking from your post/page or from %sAdmin Panel%s."
4004
  msgstr ""
4005
 
4006
- #: core/lib/wpbc_all_translations.php:728 core/wpbc-functions.php:2859
4007
  msgid "Next Steps"
4008
  msgstr ""
4009
 
4010
- #: core/lib/wpbc_all_translations.php:729 core/wpbc-functions.php:2862
4011
  #, php-format
4012
  msgid "Check %sBooking Listing%s page for new bookings."
4013
  msgstr ""
4014
 
4015
- #: core/lib/wpbc_all_translations.php:730 core/wpbc-functions.php:2867
4016
  #, php-format
4017
  msgid "Configure booking %sSettings%s."
4018
  msgstr ""
4019
 
4020
- #: core/lib/wpbc_all_translations.php:731 core/wpbc-functions.php:2871
4021
  #, php-format
4022
  msgid "Configure predefined set of your %sForm Fields%s."
4023
  msgstr ""
4024
 
4025
- #: core/lib/wpbc_all_translations.php:732 core/wpbc-functions.php:2875
4026
  #, php-format
4027
  msgid "Configure your predefined %sEmail Templates%s."
4028
  msgstr ""
4029
 
4030
- #: core/lib/wpbc_all_translations.php:733 core/wpbc-functions.php:2881
4031
  msgid "Have a questions?"
4032
  msgstr ""
4033
 
4034
- #: core/lib/wpbc_all_translations.php:734 core/wpbc-functions.php:2884
4035
  #, php-format
4036
  msgid "Check out our %sHelp%s"
4037
  msgstr ""
4038
 
4039
- #: core/lib/wpbc_all_translations.php:735 core/wpbc-functions.php:2889
4040
  #, php-format
4041
  msgid "See %sFAQ%s."
4042
  msgstr ""
4043
 
4044
- #: core/lib/wpbc_all_translations.php:736 core/wpbc-functions.php:2894
4045
  #, php-format
4046
  msgid "Still having questions? Contact %sSupport%s."
4047
  msgstr ""
4048
 
4049
- #: core/lib/wpbc_all_translations.php:737 core/wpbc-functions.php:2902 core/wpbc.php:205
4050
  #, php-format
4051
  msgid "Need even more functionality? Check %s higher versions %s"
4052
  msgstr ""
4053
 
4054
- #: core/lib/wpbc_all_translations.php:738 core/wpbc-js.php:112
4055
  msgid "This field is required"
4056
  msgstr ""
4057
 
4058
- #: core/lib/wpbc_all_translations.php:739 core/wpbc-js.php:113
4059
  msgid "This checkbox must be checked"
4060
  msgstr ""
4061
 
4062
- #: core/lib/wpbc_all_translations.php:740 core/wpbc-js.php:114
4063
  msgid "At least one option must be selected"
4064
  msgstr ""
4065
 
4066
- #: core/lib/wpbc_all_translations.php:741 core/wpbc-js.php:115
4067
  msgid "Incorrect email field"
4068
  msgstr ""
4069
 
4070
- #: core/lib/wpbc_all_translations.php:742 core/wpbc-js.php:116
4071
  msgid "Your emails do not match"
4072
  msgstr ""
4073
 
4074
- #: core/lib/wpbc_all_translations.php:743 core/wpbc-js.php:117
4075
  msgid "Please, select booking date(s) at Calendar."
4076
  msgstr ""
4077
 
4078
- #: core/lib/wpbc_all_translations.php:744 core/wpbc-js.php:132
4079
  msgid "Deleting"
4080
  msgstr ""
4081
 
4082
- #: core/lib/wpbc_all_translations.php:745 core/wpbc-js.php:133
4083
  msgid "Updating"
4084
  msgstr ""
4085
 
4086
- #: core/lib/wpbc_all_translations.php:746 core/wpbc-js.php:134
4087
  msgid "Saving"
4088
  msgstr ""
4089
 
4090
- #: core/lib/wpbc_all_translations.php:747 core/wpbc.php:97
4091
  msgid "Booking"
4092
  msgstr ""
4093
 
4094
- #: core/lib/wpbc_all_translations.php:748 core/wpbc.php:289 core/wpbc.php:296
4095
  msgid "Action is not allowed!"
4096
  msgstr ""
4097
 
4098
- #: core/lib/wpbc_all_translations.php:749 inc/_bl/admin/activation-l.php:119
4099
  #: inc/_bl/admin/activation-l.php:123 inc/_bl/admin/activation-l.php:174
4100
- #: inc/_bl/admin/page-search.php:623 inc/_bm/admin/api-settings-m.php:567 inc/_bm/m-toolbar.php:62
4101
- #: inc/_bm/m-toolbar.php:404 inc/_ps/admin/page-settings-form.php:321
4102
  #: inc/_ps/wpbc-booking-select-widget.php:230
4103
  msgid "Standard"
4104
  msgstr ""
4105
 
4106
- #: core/lib/wpbc_all_translations.php:750 inc/_bl/admin/activation-l.php:120
4107
  #: inc/_bl/admin/activation-l.php:124 inc/_bl/admin/activation-l.php:157
4108
  #: inc/_bl/admin/activation-l.php:158 inc/_bl/admin/activation-l.php:175
4109
  msgid "Superior"
4110
  msgstr ""
4111
 
4112
- #: core/lib/wpbc_all_translations.php:751 inc/_bl/admin/activation-l.php:120
4113
  #: inc/_bs/admin/activation-s.php:93
4114
  msgid "Resource #1"
4115
  msgstr ""
4116
 
4117
- #: core/lib/wpbc_all_translations.php:752 inc/_bl/admin/activation-l.php:121
4118
  #: inc/_bl/admin/activation-l.php:125
4119
  msgid "Presidential Suite"
4120
  msgstr ""
4121
 
4122
- #: core/lib/wpbc_all_translations.php:753 inc/_bl/admin/activation-l.php:121
4123
  #: inc/_bs/admin/activation-s.php:94
4124
  msgid "Resource #2"
4125
  msgstr ""
4126
 
4127
- #: core/lib/wpbc_all_translations.php:754 inc/_bl/admin/activation-l.php:122
4128
  #: inc/_bl/admin/activation-l.php:126 inc/_mu/admin/activation-u.php:83
4129
  msgid "Royal Villa"
4130
  msgstr ""
4131
 
4132
- #: core/lib/wpbc_all_translations.php:755 inc/_bl/admin/activation-l.php:122
4133
  #: inc/_bs/admin/activation-s.php:95
4134
  msgid "Resource #3"
4135
  msgstr ""
4136
 
4137
- #: core/lib/wpbc_all_translations.php:756 inc/_bl/admin/api-settings-l.php:34
4138
  msgid ""
4139
  "Use \"Check In\" date as available in calendar for booking resources with capacity higher then 1 "
4140
  "for search results"
4141
  msgstr ""
4142
 
4143
- #: core/lib/wpbc_all_translations.php:757 inc/_bl/admin/api-settings-l.php:43
4144
  msgid ""
4145
  "Use \"Check Out\" date as available in calendar for booking resources with capacity higher then "
4146
  "1 search results"
4147
  msgstr ""
4148
 
4149
- #: core/lib/wpbc_all_translations.php:758 inc/_bl/admin/api-settings-l.php:66
4150
  msgid "Show availability in tooltip"
4151
  msgstr ""
4152
 
4153
- #: core/lib/wpbc_all_translations.php:759 inc/_bl/admin/api-settings-l.php:67
4154
  msgid ""
4155
  "Check this box to display the available number of booking resources with a tooltip, when mouse "
4156
  "hovers over each day on the calendar(s)."
4157
  msgstr ""
4158
 
4159
- #: core/lib/wpbc_all_translations.php:760 inc/_bl/admin/api-settings-l.php:76
4160
  msgid "Availability Title"
4161
  msgstr ""
4162
 
4163
- #: core/lib/wpbc_all_translations.php:761 inc/_bl/admin/api-settings-l.php:77
4164
  #, php-format
4165
  msgid "Type your %savailability%s description"
4166
  msgstr ""
@@ -4196,7 +4247,7 @@ msgid ""
4196
  msgstr ""
4197
 
4198
  #: core/lib/wpbc_all_translations.php:769 inc/_bl/admin/api-settings-l.php:162
4199
- #: inc/_ps/admin/api-settings-p.php:285 inc/_ps/admin/api-settings-p.php:298
4200
  #, php-format
4201
  msgid "Please read more info about configuration of this parameter %shere%s"
4202
  msgstr ""
@@ -4369,8 +4420,8 @@ msgid "Add New"
4369
  msgstr ""
4370
 
4371
  #: core/lib/wpbc_all_translations.php:804 inc/_bl/admin/page-search.php:75
4372
- #: inc/_bl/admin/page-search.php:114 inc/_ps/admin/page-settings-form.php:601
4373
- #: inc/gateways/page-gateways.php:1039
4374
  msgid "Use these shortcodes for customization: "
4375
  msgstr ""
4376
 
@@ -4494,43 +4545,43 @@ msgstr ""
4494
  msgid "Select time of cache expiration"
4495
  msgstr ""
4496
 
4497
- #: core/lib/wpbc_all_translations.php:829 inc/_bl/admin/page-search.php:258
4498
- #: inc/_bl/admin/page-search.php:259
4499
  msgid "Search Settings"
4500
  msgstr ""
4501
 
4502
- #: core/lib/wpbc_all_translations.php:830 inc/_bl/admin/page-search.php:320
4503
  msgid "Cache Updated"
4504
  msgstr ""
4505
 
4506
- #: core/lib/wpbc_all_translations.php:831 inc/_bl/admin/page-search.php:345
4507
- #: inc/_bl/admin/page-search.php:391
4508
  msgid "Search Availability Form"
4509
  msgstr ""
4510
 
4511
- #: core/lib/wpbc_all_translations.php:832 inc/_bl/admin/page-search.php:346
4512
- #: inc/_bl/admin/page-search.php:409 js/wpbc-gutenberg.js:998
4513
  msgid "Search Results"
4514
  msgstr ""
4515
 
4516
- #: core/lib/wpbc_all_translations.php:833 inc/_bl/admin/page-search.php:347
4517
- #: inc/_bl/admin/page-search.php:436
4518
  msgid "Search Cache"
4519
  msgstr ""
4520
 
4521
- #: core/lib/wpbc_all_translations.php:834 inc/_bl/admin/page-search.php:383
4522
  #, php-format
4523
  msgid ""
4524
  "If you do not see search results at front-end side of your website, please check troubleshooting "
4525
  "instruction %shere%s"
4526
  msgstr ""
4527
 
4528
- #: core/lib/wpbc_all_translations.php:835 inc/_bl/admin/page-search.php:416
4529
  msgid "CSS customization of search form and search results you can make at this file"
4530
  msgstr ""
4531
 
4532
- #: core/lib/wpbc_all_translations.php:836 inc/_bl/admin/page-search.php:559
4533
- #: inc/_bl/admin/page-search.php:612
4534
  msgid "Select Template"
4535
  msgstr ""
4536
 
@@ -4538,62 +4589,62 @@ msgstr ""
4538
  msgid "Inlinee Search Form Template"
4539
  msgstr ""
4540
 
4541
- #: core/lib/wpbc_all_translations.php:838 inc/_bl/admin/page-search.php:579
4542
  msgid "Horizontal Search Form Template"
4543
  msgstr ""
4544
 
4545
- #: core/lib/wpbc_all_translations.php:839 inc/_bl/admin/page-search.php:589
4546
  msgid "Standard Search Form Template"
4547
  msgstr ""
4548
 
4549
- #: core/lib/wpbc_all_translations.php:840 inc/_bl/admin/page-search.php:690
4550
  #: inc/_bm/admin/page-seasons.php:1227 inc/_bm/admin/page-seasons.php:1445
4551
- #: inc/_ps/admin/page-settings-form.php:489
4552
  msgid "Reset"
4553
  msgstr ""
4554
 
4555
- #: core/lib/wpbc_all_translations.php:841 inc/_bl/admin/page-search.php:691
4556
- #: inc/_ps/admin/page-settings-form.php:490
4557
  msgid "Reset current Form"
4558
  msgstr ""
4559
 
4560
- #: core/lib/wpbc_all_translations.php:842 inc/_bl/admin/page-search.php:754
4561
  msgid "Cache will expire:"
4562
  msgstr ""
4563
 
4564
- #: core/lib/wpbc_all_translations.php:843 inc/_bl/admin/page-search.php:784
4565
  #, php-format
4566
  msgid "Found: %s booking forms inside of posts or pages "
4567
  msgstr ""
4568
 
4569
- #: core/lib/wpbc_all_translations.php:844 inc/_bl/admin/page-search.php:788
4570
  msgid "Page"
4571
  msgstr ""
4572
 
4573
- #: core/lib/wpbc_all_translations.php:845 inc/_bl/admin/page-search.php:811
4574
  msgid "Reset Search Cache"
4575
  msgstr ""
4576
 
4577
- #: core/lib/wpbc_all_translations.php:846 inc/_bl/biz_l.php:135
4578
  msgid ""
4579
  "Try selecting fewer visitors. The number of visitors may be more than the number of available "
4580
  "units on selected day(s)!"
4581
  msgstr ""
4582
 
4583
- #: core/lib/wpbc_all_translations.php:847 inc/_bl/biz_l.php:371
4584
  msgid "coupon"
4585
  msgstr ""
4586
 
4587
- #: core/lib/wpbc_all_translations.php:848 inc/_bl/biz_l.php:373
4588
  msgid "discount"
4589
  msgstr ""
4590
 
4591
- #: core/lib/wpbc_all_translations.php:849 inc/_bl/biz_l.php:567
4592
  msgid "Please select check-in and check-out days!"
4593
  msgstr ""
4594
 
4595
- #: core/lib/wpbc_all_translations.php:850 inc/_bl/biz_l.php:1779 inc/_bl/biz_l.php:1790
4596
- #: inc/_bl/biz_l.php:1807 inc/_bl/biz_l.php:1812
4597
  #, php-format
4598
  msgid ""
4599
  "Sorry, the reservation was not made because these days are already booked!!! %s (Its not "
@@ -4601,12 +4652,12 @@ msgid ""
4601
  "page and try other days."
4602
  msgstr ""
4603
 
4604
- #: core/lib/wpbc_all_translations.php:851 inc/_bl/biz_l.php:2333
4605
  #, php-format
4606
  msgid "The folowing pending booking(s): %s deleted."
4607
  msgstr ""
4608
 
4609
- #: core/lib/wpbc_all_translations.php:852 inc/_bl/wpbc-search-availability.php:768
4610
  msgid "Book now"
4611
  msgstr ""
4612
 
@@ -4657,12 +4708,12 @@ msgid ""
4657
  msgstr ""
4658
 
4659
  #: core/lib/wpbc_all_translations.php:863 inc/_bm/admin/activation-m.php:48
4660
- #: inc/_mu/multiuser.php:632
4661
  msgid "Weekend"
4662
  msgstr ""
4663
 
4664
  #: core/lib/wpbc_all_translations.php:864 inc/_bm/admin/activation-m.php:92
4665
- #: inc/_mu/multiuser.php:634
4666
  msgid "High season"
4667
  msgstr ""
4668
 
@@ -4824,7 +4875,7 @@ msgid "Show all exist season filters"
4824
  msgstr ""
4825
 
4826
  #: core/lib/wpbc_all_translations.php:895 inc/_bm/admin/page-availability.php:981
4827
- #: inc/_bm/admin/page-cost-rate.php:157 inc/gateways/page-gateways.php:842
4828
  msgid "Enabled"
4829
  msgstr ""
4830
 
@@ -5110,7 +5161,7 @@ msgid "Valuation days"
5110
  msgstr ""
5111
 
5112
  #: core/lib/wpbc_all_translations.php:951 inc/_bm/admin/page-cost.php:674
5113
- #: inc/_bm/admin/page-cost.php:675 inc/gateways/page-gateways.php:1405
5114
  msgid "Deposit"
5115
  msgstr ""
5116
 
@@ -5645,12 +5696,12 @@ msgstr ""
5645
  msgid "Unknown Status"
5646
  msgstr ""
5647
 
5648
- #: core/lib/wpbc_all_translations.php:1069 inc/_bs/lib_s.php:48 inc/_bs/lib_s.php:319
5649
  msgid "Not Completed"
5650
  msgstr ""
5651
 
5652
- #: core/lib/wpbc_all_translations.php:1070 inc/_bs/lib_s.php:49 inc/_bs/lib_s.php:308
5653
- #: inc/_bs/lib_s.php:328
5654
  msgid "Failed"
5655
  msgstr ""
5656
 
@@ -5662,87 +5713,88 @@ msgstr ""
5662
  msgid "max"
5663
  msgstr ""
5664
 
5665
- #: core/lib/wpbc_all_translations.php:1073 inc/_bs/lib_s.php:303 inc/_bs/lib_s.php:321
 
5666
  msgid "Completed"
5667
  msgstr ""
5668
 
5669
- #: core/lib/wpbc_all_translations.php:1074 inc/_bs/lib_s.php:304 inc/_bs/lib_s.php:324
5670
  msgid "In-Progress"
5671
  msgstr ""
5672
 
5673
- #: core/lib/wpbc_all_translations.php:1075 inc/_bs/lib_s.php:306 inc/_bs/lib_s.php:341
5674
  msgid "Partially paid"
5675
  msgstr ""
5676
 
5677
- #: core/lib/wpbc_all_translations.php:1076 inc/_bs/lib_s.php:307 inc/_bs/lib_s.php:342
5678
  msgid "Cancelled"
5679
  msgstr ""
5680
 
5681
- #: core/lib/wpbc_all_translations.php:1077 inc/_bs/lib_s.php:309 inc/_bs/lib_s.php:330
5682
  msgid "Refunded"
5683
  msgstr ""
5684
 
5685
- #: core/lib/wpbc_all_translations.php:1078 inc/_bs/lib_s.php:310 inc/_bs/lib_s.php:343
5686
  msgid "Fraud"
5687
  msgstr ""
5688
 
5689
- #: core/lib/wpbc_all_translations.php:1079 inc/_bs/lib_s.php:317
5690
  msgid "!Paid OK"
5691
  msgstr ""
5692
 
5693
- #: core/lib/wpbc_all_translations.php:1080 inc/_bs/lib_s.php:318
5694
  msgid "Unknown status"
5695
  msgstr ""
5696
 
5697
- #: core/lib/wpbc_all_translations.php:1081 inc/_bs/lib_s.php:323
5698
  msgid "Processed"
5699
  msgstr ""
5700
 
5701
- #: core/lib/wpbc_all_translations.php:1082 inc/_bs/lib_s.php:325
5702
  msgid "Canceled_Reversal"
5703
  msgstr ""
5704
 
5705
- #: core/lib/wpbc_all_translations.php:1083 inc/_bs/lib_s.php:326
5706
  msgid "Denied"
5707
  msgstr ""
5708
 
5709
- #: core/lib/wpbc_all_translations.php:1084 inc/_bs/lib_s.php:327
5710
  msgid "Expired"
5711
  msgstr ""
5712
 
5713
- #: core/lib/wpbc_all_translations.php:1085 inc/_bs/lib_s.php:329
5714
  msgid "Partially_Refunded"
5715
  msgstr ""
5716
 
5717
- #: core/lib/wpbc_all_translations.php:1086 inc/_bs/lib_s.php:331
5718
  msgid "Reversed"
5719
  msgstr ""
5720
 
5721
- #: core/lib/wpbc_all_translations.php:1087 inc/_bs/lib_s.php:332
5722
  msgid "Voided"
5723
  msgstr ""
5724
 
5725
- #: core/lib/wpbc_all_translations.php:1088 inc/_bs/lib_s.php:335
5726
  msgid "Not authed"
5727
  msgstr ""
5728
 
5729
- #: core/lib/wpbc_all_translations.php:1089 inc/_bs/lib_s.php:336
5730
  msgid "Malformed"
5731
  msgstr ""
5732
 
5733
- #: core/lib/wpbc_all_translations.php:1090 inc/_bs/lib_s.php:337
5734
  msgid "Invalid"
5735
  msgstr ""
5736
 
5737
- #: core/lib/wpbc_all_translations.php:1091 inc/_bs/lib_s.php:338
5738
  msgid "Abort"
5739
  msgstr ""
5740
 
5741
- #: core/lib/wpbc_all_translations.php:1092 inc/_bs/lib_s.php:339
5742
  msgid "Rejected"
5743
  msgstr ""
5744
 
5745
- #: core/lib/wpbc_all_translations.php:1093 inc/_bs/lib_s.php:344
5746
  msgid "Suspended"
5747
  msgstr ""
5748
 
@@ -5819,12 +5871,12 @@ msgid "Users Settings"
5819
  msgstr ""
5820
 
5821
  #: core/lib/wpbc_all_translations.php:1110 inc/_mu/admin/page-users.php:209
5822
- #: inc/_mu/multiuser.php:647
5823
  msgid "User is Activated"
5824
  msgstr ""
5825
 
5826
  #: core/lib/wpbc_all_translations.php:1111 inc/_mu/admin/page-users.php:237
5827
- #: inc/_mu/multiuser.php:697
5828
  msgid "User is Deactivated"
5829
  msgstr ""
5830
 
@@ -5880,23 +5932,23 @@ msgstr ""
5880
  msgid "Delete data"
5881
  msgstr ""
5882
 
5883
- #: core/lib/wpbc_all_translations.php:1124 inc/_mu/multiuser.php:633
5884
  msgid "Work days"
5885
  msgstr ""
5886
 
5887
- #: core/lib/wpbc_all_translations.php:1125 inc/_mu/multiuser.php:765
5888
  #, php-format
5889
  msgid ""
5890
  "%sYou do not have permissions for this page.%s Your account is not active, please contact "
5891
  "administrator.%s"
5892
  msgstr ""
5893
 
5894
- #: core/lib/wpbc_all_translations.php:1126 inc/_mu/multiuser.php:804
5895
  #, php-format
5896
  msgid "%sYou do not have permissions for this booking resources.%s"
5897
  msgstr ""
5898
 
5899
- #: core/lib/wpbc_all_translations.php:1127 inc/_mu/multiuser.php:810
5900
  #, php-format
5901
  msgid "%sNo this booking resources.%s"
5902
  msgstr ""
@@ -5975,21 +6027,21 @@ msgstr ""
5975
  msgid "Select separator of data for export bookings to CSV."
5976
  msgstr ""
5977
 
5978
- #: core/lib/wpbc_all_translations.php:1144 inc/_ps/admin/api-settings-p.php:282
5979
- #: js/wpbc-gutenberg.js:1093
5980
  msgid "URL to edit bookings"
5981
  msgstr ""
5982
 
5983
- #: core/lib/wpbc_all_translations.php:1145 inc/_ps/admin/api-settings-p.php:283
5984
  #, php-format
5985
  msgid "Type URL for %svisitors%s to edit bookings. You must insert %s shortcode into this page."
5986
  msgstr ""
5987
 
5988
- #: core/lib/wpbc_all_translations.php:1146 inc/_ps/admin/api-settings-p.php:307
5989
  msgid "Change hash after the booking is approved"
5990
  msgstr ""
5991
 
5992
- #: core/lib/wpbc_all_translations.php:1147 inc/_ps/admin/api-settings-p.php:308
5993
  msgid ""
5994
  "Check this box if you want to change the booking hash after approval. When checked, visitor will "
5995
  "not be able to edit or cancel the booking."
@@ -6011,78 +6063,78 @@ msgstr ""
6011
  msgid "Customizaton of booking resources"
6012
  msgstr ""
6013
 
6014
- #: core/lib/wpbc_all_translations.php:1152 inc/_ps/admin/page-settings-form.php:130
6015
- #: inc/_ps/admin/page-settings-form.php:150
6016
  msgid "Form fields"
6017
  msgstr ""
6018
 
6019
- #: core/lib/wpbc_all_translations.php:1153 inc/_ps/admin/page-settings-form.php:131
6020
  msgid "Content of Booking Fields"
6021
  msgstr ""
6022
 
6023
- #: core/lib/wpbc_all_translations.php:1154 inc/_ps/admin/page-settings-form.php:157
6024
  msgid "Generate tag"
6025
  msgstr ""
6026
 
6027
- #: core/lib/wpbc_all_translations.php:1155 inc/_ps/admin/page-settings-form.php:166
6028
  #, php-format
6029
  msgid "Content of booking fields data for email templates (%s-shortcode) and booking listing page"
6030
  msgstr ""
6031
 
6032
- #: core/lib/wpbc_all_translations.php:1156 inc/_ps/admin/page-settings-form.php:305
6033
  msgid "Form Template"
6034
  msgstr ""
6035
 
6036
- #: core/lib/wpbc_all_translations.php:1157 inc/_ps/admin/page-settings-form.php:318
6037
  msgid "Standard Templates"
6038
  msgstr ""
6039
 
6040
- #: core/lib/wpbc_all_translations.php:1158 inc/_ps/admin/page-settings-form.php:331
6041
  #: inc/_ps/form/class-wpbc-field-help-textarea.php:111
6042
  msgid "Columns"
6043
  msgstr ""
6044
 
6045
- #: core/lib/wpbc_all_translations.php:1159 inc/_ps/admin/page-settings-form.php:403
6046
  msgid "Advanced Templates"
6047
  msgstr ""
6048
 
6049
- #: core/lib/wpbc_all_translations.php:1160 inc/_ps/admin/page-settings-form.php:406
6050
  msgid "Wizard (several steps)"
6051
  msgstr ""
6052
 
6053
- #: core/lib/wpbc_all_translations.php:1161 inc/_ps/admin/page-settings-form.php:419
6054
  msgid "Time slots for different weekdays"
6055
  msgstr ""
6056
 
6057
- #: core/lib/wpbc_all_translations.php:1162 inc/_ps/admin/page-settings-form.php:429
6058
  msgid "Hints"
6059
  msgstr ""
6060
 
6061
- #: core/lib/wpbc_all_translations.php:1163 inc/_ps/admin/page-settings-form.php:451
6062
  msgid "Reset Form"
6063
  msgstr ""
6064
 
6065
- #: core/lib/wpbc_all_translations.php:1164 inc/_ps/admin/page-settings-form.php:504
6066
  msgid "Both"
6067
  msgstr ""
6068
 
6069
- #: core/lib/wpbc_all_translations.php:1165 inc/_ps/admin/page-settings-form.php:505
6070
  msgid "Reset Booking Form and Content of Booking Fields Form"
6071
  msgstr ""
6072
 
6073
- #: core/lib/wpbc_all_translations.php:1166 inc/_ps/admin/page-settings-form.php:602
6074
- #: inc/gateways/page-gateways.php:1041
6075
  #, php-format
6076
  msgid "%s - inserting data from fields of booking form"
6077
  msgstr ""
6078
 
6079
- #: core/lib/wpbc_all_translations.php:1167 inc/_ps/admin/page-settings-form.php:603
6080
  #, php-format
6081
  msgid "%s - inserting new line"
6082
  msgstr ""
6083
 
6084
- #: core/lib/wpbc_all_translations.php:1168 inc/_ps/admin/page-settings-form.php:607
6085
- #: inc/_ps/form/class-wpbc-form-help.php:93 inc/gateways/page-gateways.php:1096
6086
  #, php-format
6087
  msgid ""
6088
  "You can use any %sHTML tags%s in the booking form. Please use the HTML tags carefully. Be sure, "
@@ -6666,7 +6718,7 @@ msgid "Dates and Times Hints"
6666
  msgstr ""
6667
 
6668
  #: core/lib/wpbc_all_translations.php:1281 inc/_ps/form/class-wpbc-form-help.php:699
6669
- #: inc/gateways/page-gateways.php:1066
6670
  msgid "Selected Check In date."
6671
  msgstr ""
6672
 
@@ -6676,56 +6728,56 @@ msgstr ""
6676
  #: inc/_ps/form/class-wpbc-form-help.php:715 inc/_ps/form/class-wpbc-form-help.php:718
6677
  #: inc/_ps/form/class-wpbc-form-help.php:721 inc/_ps/form/class-wpbc-form-help.php:724
6678
  #: inc/_ps/form/class-wpbc-form-help.php:727 inc/_ps/form/class-wpbc-form-help.php:730
6679
- #: inc/gateways/page-gateways.php:1067 inc/gateways/page-gateways.php:1070
6680
- #: inc/gateways/page-gateways.php:1073 inc/gateways/page-gateways.php:1076
6681
- #: inc/gateways/page-gateways.php:1079 inc/gateways/page-gateways.php:1082
6682
- #: inc/gateways/page-gateways.php:1085 inc/gateways/page-gateways.php:1088
6683
- #: inc/gateways/page-gateways.php:1091 inc/gateways/page-gateways.php:1094
6684
  msgid "Example:"
6685
  msgstr ""
6686
 
6687
  #: core/lib/wpbc_all_translations.php:1283 inc/_ps/form/class-wpbc-form-help.php:702
6688
- #: inc/_ps/form/class-wpbc-form-help.php:705 inc/gateways/page-gateways.php:1069
6689
  msgid "Selected Check Out date."
6690
  msgstr ""
6691
 
6692
  #: core/lib/wpbc_all_translations.php:1284 inc/_ps/form/class-wpbc-form-help.php:708
6693
- #: inc/gateways/page-gateways.php:1072
6694
  msgid "Selected Start Time."
6695
  msgstr ""
6696
 
6697
  #: core/lib/wpbc_all_translations.php:1285 inc/_ps/form/class-wpbc-form-help.php:711
6698
- #: inc/gateways/page-gateways.php:1075
6699
  msgid "Selected End Time."
6700
  msgstr ""
6701
 
6702
  #: core/lib/wpbc_all_translations.php:1286 inc/_ps/form/class-wpbc-form-help.php:714
6703
- #: inc/gateways/page-gateways.php:1078
6704
  msgid "All selected dates."
6705
  msgstr ""
6706
 
6707
  #: core/lib/wpbc_all_translations.php:1287 inc/_ps/form/class-wpbc-form-help.php:717
6708
- #: inc/gateways/page-gateways.php:1081
6709
  msgid "All selected dates with times."
6710
  msgstr ""
6711
 
6712
  #: core/lib/wpbc_all_translations.php:1288 inc/_ps/form/class-wpbc-form-help.php:720
6713
- #: inc/gateways/page-gateways.php:1084
6714
  msgid "All selected dates in \"short\" format."
6715
  msgstr ""
6716
 
6717
  #: core/lib/wpbc_all_translations.php:1289 inc/_ps/form/class-wpbc-form-help.php:723
6718
- #: inc/gateways/page-gateways.php:1087
6719
  msgid "All selected dates with times in \"short\" format.."
6720
  msgstr ""
6721
 
6722
  #: core/lib/wpbc_all_translations.php:1290 inc/_ps/form/class-wpbc-form-help.php:726
6723
- #: inc/gateways/page-gateways.php:1090
6724
  msgid "Number of selected days."
6725
  msgstr ""
6726
 
6727
  #: core/lib/wpbc_all_translations.php:1291 inc/_ps/form/class-wpbc-form-help.php:729
6728
- #: inc/gateways/page-gateways.php:1093
6729
  msgid "Number of selected nights."
6730
  msgstr ""
6731
 
@@ -6734,7 +6786,7 @@ msgid "Other Hints"
6734
  msgstr ""
6735
 
6736
  #: core/lib/wpbc_all_translations.php:1293 inc/_ps/form/class-wpbc-form-help.php:741
6737
- #: inc/_ps/form/class-wpbc-form-help.php:743 inc/gateways/page-gateways.php:1044
6738
  msgid "title of booking resource"
6739
  msgstr ""
6740
 
@@ -6851,6 +6903,7 @@ msgid "Change Resource"
6851
  msgstr ""
6852
 
6853
  #: core/lib/wpbc_all_translations.php:1320 inc/_ps/p-toolbar.php:320 inc/_ps/p-toolbar.php:433
 
6854
  msgid "Duplicate Booking"
6855
  msgstr ""
6856
 
@@ -6904,76 +6957,76 @@ msgstr ""
6904
  msgid "Resources count"
6905
  msgstr ""
6906
 
6907
- #: core/lib/wpbc_all_translations.php:1333 inc/_ps/personal.php:230
6908
  msgid "This booking resources does not exist"
6909
  msgstr ""
6910
 
6911
- #: core/lib/wpbc_all_translations.php:1334 inc/_ps/personal.php:275
6912
  msgid "Generating columns"
6913
  msgstr ""
6914
 
6915
- #: core/lib/wpbc_all_translations.php:1335 inc/_ps/personal.php:316
6916
  msgid "Exporting booking data"
6917
  msgstr ""
6918
 
6919
- #: core/lib/wpbc_all_translations.php:1336 inc/_ps/personal.php:359
6920
  msgid "Generating content of file"
6921
  msgstr ""
6922
 
6923
- #: core/lib/wpbc_all_translations.php:1337 inc/_ps/personal.php:401
6924
  msgid "Saving to file"
6925
  msgstr ""
6926
 
6927
- #: core/lib/wpbc_all_translations.php:1338 inc/_ps/personal.php:852
6928
  msgid "The booking was canceled by the visitor."
6929
  msgstr ""
6930
 
6931
- #: core/lib/wpbc_all_translations.php:1339 inc/_ps/personal.php:913
6932
  msgid "The booking has been canceled successfully"
6933
  msgstr ""
6934
 
6935
- #: core/lib/wpbc_all_translations.php:1340 inc/_ps/personal.php:934
6936
  msgid "Incorrect date format"
6937
  msgstr ""
6938
 
6939
- #: core/lib/wpbc_all_translations.php:1341 inc/_ps/personal.php:2054
6940
  msgid "Change your Booking"
6941
  msgstr ""
6942
 
6943
- #: core/lib/wpbc_all_translations.php:1342 inc/_ps/personal.php:2056
6944
  msgid "Cancel Booking"
6945
  msgstr ""
6946
 
6947
- #: core/lib/wpbc_all_translations.php:1343 inc/_ps/personal.php:2310
6948
  msgid "Warning! The resource was not changed. Current dates are already booked there."
6949
  msgstr ""
6950
 
6951
- #: core/lib/wpbc_all_translations.php:1344 inc/_ps/personal.php:2447
6952
  msgid "The booking has been duplicated successfully"
6953
  msgstr ""
6954
 
6955
- #: core/lib/wpbc_all_translations.php:1345 inc/_ps/personal.php:2456
6956
  msgid "Warning! Operation failed. Current dates are already booked there."
6957
  msgstr ""
6958
 
6959
- #: core/lib/wpbc_all_translations.php:1346 inc/_ps/personal.php:2543
6960
  msgid "Sending request..."
6961
  msgstr ""
6962
 
6963
- #: core/lib/wpbc_all_translations.php:1347 inc/_ps/personal.php:2572
6964
  msgid "Order number"
6965
  msgstr ""
6966
 
6967
- #: core/lib/wpbc_all_translations.php:1348 inc/_ps/personal.php:2574
6968
  msgid "Register"
6969
  msgstr ""
6970
 
6971
- #: core/lib/wpbc_all_translations.php:1349 inc/_ps/personal.php:2576
6972
  msgid ""
6973
  "Please, enter order number of your purchased version, which you received to your billing email."
6974
  msgstr ""
6975
 
6976
- #: core/lib/wpbc_all_translations.php:1350 inc/_ps/personal.php:2578
6977
  #, php-format
6978
  msgid "If you will get any difficulties or have a questions, please contact by email %s"
6979
  msgstr ""
@@ -7165,307 +7218,307 @@ msgstr ""
7165
  msgid "Data"
7166
  msgstr ""
7167
 
7168
- #: core/lib/wpbc_all_translations.php:1384 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:275
7169
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:219
7170
  #: inc/gateways/ideal/wpbc-gw-ideal.php:378 inc/gateways/ipay88/wpbc-gw-ipay88.php:255
7171
  #: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:147 inc/gateways/paypal/wpbc-gw-paypal.php:344
7172
- #: inc/gateways/sage/wpbc-gw-sage.php:385 inc/gateways/stripe/wpbc-gw-stripe.php:290
7173
  msgid "Enable this payment gateway"
7174
  msgstr ""
7175
 
7176
- #: core/lib/wpbc_all_translations.php:1385 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:285
7177
  msgid "API Login ID"
7178
  msgstr ""
7179
 
7180
- #: core/lib/wpbc_all_translations.php:1386 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:287
7181
  #, php-format
7182
  msgid "The merchant API Login ID is provided in the Merchant Interface of %s"
7183
  msgstr ""
7184
 
7185
- #: core/lib/wpbc_all_translations.php:1387 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:300
7186
  msgid "Transaction Key"
7187
  msgstr ""
7188
 
7189
- #: core/lib/wpbc_all_translations.php:1388 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:302
7190
- #: inc/gateways/stripe/wpbc-gw-stripe.php:318 inc/gateways/stripe/wpbc-gw-stripe.php:333
7191
- #: inc/gateways/stripe/wpbc-gw-stripe.php:350 inc/gateways/stripe/wpbc-gw-stripe.php:365
7192
  #, php-format
7193
  msgid "This parameter have to assigned to you by %s"
7194
  msgstr ""
7195
 
7196
- #: core/lib/wpbc_all_translations.php:1389 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:314
7197
  #: inc/gateways/ideal/wpbc-gw-ideal.php:419 inc/gateways/paypal/wpbc-gw-paypal.php:423
7198
  #: inc/gateways/sage/wpbc-gw-sage.php:424
7199
  msgid "Chose payment mode"
7200
  msgstr ""
7201
 
7202
- #: core/lib/wpbc_all_translations.php:1390 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:315
7203
  msgid ""
7204
  "Select \"Live test\" or \"Live\" environment for using Merchant account or \"Developer Test\" "
7205
  "for using Developer account."
7206
  msgstr ""
7207
 
7208
- #: core/lib/wpbc_all_translations.php:1391 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:318
7209
  msgid ""
7210
  "Transactions posted against live merchant accounts using either of the above testing methods are "
7211
  "not submitted to financial institutions for authorization and are not stored in the Merchant "
7212
  "Interface."
7213
  msgstr ""
7214
 
7215
- #: core/lib/wpbc_all_translations.php:1392 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:322
7216
  msgid "Developer Test"
7217
  msgstr ""
7218
 
7219
- #: core/lib/wpbc_all_translations.php:1393 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:323
7220
  msgid "Live Test"
7221
  msgstr ""
7222
 
7223
- #: core/lib/wpbc_all_translations.php:1394 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:324
7224
  #: inc/gateways/paypal/wpbc-gw-paypal.php:429
7225
  msgid "Live"
7226
  msgstr ""
7227
 
7228
- #: core/lib/wpbc_all_translations.php:1395 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:332
7229
  #: inc/gateways/paypal/wpbc-gw-paypal.php:407 inc/gateways/sage/wpbc-gw-sage.php:438
7230
  msgid "Transaction type"
7231
  msgstr ""
7232
 
7233
- #: core/lib/wpbc_all_translations.php:1396 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:333
7234
  msgid "Select transaction type, which supported by the payment gateway."
7235
  msgstr ""
7236
 
7237
- #: core/lib/wpbc_all_translations.php:1397 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:336
7238
  msgid "Authorization and Capture"
7239
  msgstr ""
7240
 
7241
- #: core/lib/wpbc_all_translations.php:1398 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:337
7242
  msgid "Authorization Only"
7243
  msgstr ""
7244
 
7245
- #: core/lib/wpbc_all_translations.php:1399 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:343
7246
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:293 inc/gateways/paypal/wpbc-gw-paypal.php:438
7247
- #: inc/gateways/sage/wpbc-gw-sage.php:453 inc/gateways/stripe/wpbc-gw-stripe.php:386
7248
  msgid "U.S. Dollars"
7249
  msgstr ""
7250
 
7251
- #: core/lib/wpbc_all_translations.php:1400 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:344
7252
- #: inc/gateways/sage/wpbc-gw-sage.php:451 inc/gateways/stripe/wpbc-gw-stripe.php:387
7253
  msgid "Pounds Sterling"
7254
  msgstr ""
7255
 
7256
- #: core/lib/wpbc_all_translations.php:1401 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:345
7257
  #: inc/gateways/paypal/wpbc-gw-paypal.php:439 inc/gateways/sage/wpbc-gw-sage.php:452
7258
- #: inc/gateways/stripe/wpbc-gw-stripe.php:388
7259
  msgid "Euros"
7260
  msgstr ""
7261
 
7262
- #: core/lib/wpbc_all_translations.php:1402 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:346
7263
  #: inc/gateways/paypal/wpbc-gw-paypal.php:443 inc/gateways/sage/wpbc-gw-sage.php:456
7264
- #: inc/gateways/stripe/wpbc-gw-stripe.php:389
7265
  msgid "Canadian Dollars"
7266
  msgstr ""
7267
 
7268
- #: core/lib/wpbc_all_translations.php:1403 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:351
7269
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:299 inc/gateways/paypal/wpbc-gw-paypal.php:466
7270
- #: inc/gateways/sage/wpbc-gw-sage.php:478 inc/gateways/stripe/wpbc-gw-stripe.php:530
7271
  msgid "Accepted Currency"
7272
  msgstr ""
7273
 
7274
- #: core/lib/wpbc_all_translations.php:1404 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:352
7275
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:300 inc/gateways/paypal/wpbc-gw-paypal.php:467
7276
- #: inc/gateways/sage/wpbc-gw-sage.php:479 inc/gateways/stripe/wpbc-gw-stripe.php:531
7277
  msgid "The currency code that gateway will process the payment in."
7278
  msgstr ""
7279
 
7280
- #: core/lib/wpbc_all_translations.php:1405 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:355
7281
- #: inc/gateways/stripe/wpbc-gw-stripe.php:534
7282
  msgid ""
7283
  "Setting the currency that is not supported by the payment processor will result in an error."
7284
  msgstr ""
7285
 
7286
- #: core/lib/wpbc_all_translations.php:1406 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:365
7287
- #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:366
7288
- #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:983 inc/gateways/ideal/wpbc-gw-ideal.php:309
7289
  #: inc/gateways/ideal/wpbc-gw-ideal.php:457 inc/gateways/ideal/wpbc-gw-ideal.php:458
7290
  #: inc/gateways/ideal/wpbc-gw-ideal.php:1046 inc/gateways/ipay88/wpbc-gw-ipay88.php:309
7291
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:310 inc/gateways/ipay88/wpbc-gw-ipay88.php:905
7292
  #: inc/gateways/paypal/wpbc-gw-paypal.php:495 inc/gateways/paypal/wpbc-gw-paypal.php:496
7293
  #: inc/gateways/paypal/wpbc-gw-paypal.php:1327 inc/gateways/sage/wpbc-gw-sage.php:488
7294
- #: inc/gateways/sage/wpbc-gw-sage.php:489 inc/gateways/sage/wpbc-gw-sage.php:1040
7295
- #: inc/gateways/stripe/wpbc-gw-stripe.php:552 inc/gateways/stripe/wpbc-gw-stripe.php:553
7296
- #: inc/gateways/stripe/wpbc-gw-stripe.php:1052
7297
  msgid "Pay via"
7298
  msgstr ""
7299
 
7300
- #: core/lib/wpbc_all_translations.php:1407 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:367
7301
  #: inc/gateways/ideal/wpbc-gw-ideal.php:459 inc/gateways/ipay88/wpbc-gw-ipay88.php:311
7302
  #: inc/gateways/paypal/wpbc-gw-paypal.php:497 inc/gateways/sage/wpbc-gw-sage.php:490
7303
- #: inc/gateways/stripe/wpbc-gw-stripe.php:554
7304
  msgid "Payment button title"
7305
  msgstr ""
7306
 
7307
- #: core/lib/wpbc_all_translations.php:1408 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:368
7308
  #: inc/gateways/ideal/wpbc-gw-ideal.php:460 inc/gateways/ipay88/wpbc-gw-ipay88.php:312
7309
  #: inc/gateways/paypal/wpbc-gw-paypal.php:498 inc/gateways/sage/wpbc-gw-sage.php:491
7310
- #: inc/gateways/stripe/wpbc-gw-stripe.php:555
7311
  msgid "Enter the title of the payment button"
7312
  msgstr ""
7313
 
7314
- #: core/lib/wpbc_all_translations.php:1409 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:379
7315
- #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:380
7316
- #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:979 inc/gateways/ideal/wpbc-gw-ideal.php:471
7317
  #: inc/gateways/ideal/wpbc-gw-ideal.php:472 inc/gateways/ideal/wpbc-gw-ideal.php:1043
7318
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:323 inc/gateways/ipay88/wpbc-gw-ipay88.php:324
7319
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:902 inc/gateways/paypal/wpbc-gw-paypal.php:523
7320
  #: inc/gateways/paypal/wpbc-gw-paypal.php:524 inc/gateways/paypal/wpbc-gw-paypal.php:1329
7321
  #: inc/gateways/sage/wpbc-gw-sage.php:502 inc/gateways/sage/wpbc-gw-sage.php:503
7322
- #: inc/gateways/sage/wpbc-gw-sage.php:1036 inc/gateways/stripe/wpbc-gw-stripe.php:566
7323
- #: inc/gateways/stripe/wpbc-gw-stripe.php:567 inc/gateways/stripe/wpbc-gw-stripe.php:1053
7324
  #, php-format
7325
  msgid "Payment for booking %s on these day(s): %s"
7326
  msgstr ""
7327
 
7328
- #: core/lib/wpbc_all_translations.php:1410 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:381
7329
  #: inc/gateways/ideal/wpbc-gw-ideal.php:473 inc/gateways/ipay88/wpbc-gw-ipay88.php:325
7330
  #: inc/gateways/paypal/wpbc-gw-paypal.php:525 inc/gateways/sage/wpbc-gw-sage.php:504
7331
- #: inc/gateways/stripe/wpbc-gw-stripe.php:568
7332
  msgid "Payment description at gateway website"
7333
  msgstr ""
7334
 
7335
- #: core/lib/wpbc_all_translations.php:1411 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:382
7336
  #: inc/gateways/ideal/wpbc-gw-ideal.php:474 inc/gateways/ipay88/wpbc-gw-ipay88.php:326
7337
  #: inc/gateways/paypal/wpbc-gw-paypal.php:526 inc/gateways/sage/wpbc-gw-sage.php:505
7338
- #: inc/gateways/stripe/wpbc-gw-stripe.php:569
7339
  msgid "Enter the service name or the reason for the payment here."
7340
  msgstr ""
7341
 
7342
- #: core/lib/wpbc_all_translations.php:1412 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:383
7343
  #: inc/gateways/ideal/wpbc-gw-ideal.php:475 inc/gateways/ipay88/wpbc-gw-ipay88.php:327
7344
  #: inc/gateways/paypal/wpbc-gw-paypal.php:527 inc/gateways/sage/wpbc-gw-sage.php:506
7345
- #: inc/gateways/stripe/wpbc-gw-stripe.php:570
7346
  msgid "You can use any shortcodes, which you have used in content of booking fields data form."
7347
  msgstr ""
7348
 
7349
- #: core/lib/wpbc_all_translations.php:1413 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:386
7350
  #: inc/gateways/ideal/wpbc-gw-ideal.php:478 inc/gateways/ipay88/wpbc-gw-ipay88.php:330
7351
  #: inc/gateways/paypal/wpbc-gw-paypal.php:530 inc/gateways/sage/wpbc-gw-sage.php:509
7352
  #, php-format
7353
  msgid "This field support only up to %s characters by payment system."
7354
  msgstr ""
7355
 
7356
- #: core/lib/wpbc_all_translations.php:1414 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:404
7357
  msgid "Activate Relay Response"
7358
  msgstr ""
7359
 
7360
- #: core/lib/wpbc_all_translations.php:1415 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:405
7361
  msgid ""
7362
  "Indicate to the payment gateway that you would like to receive the transaction response to your "
7363
  "site."
7364
  msgstr ""
7365
 
7366
- #: core/lib/wpbc_all_translations.php:1416 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:408
7367
  msgid ""
7368
  "You should leave empty the Relay Response URL and Receipt Link URL/Text in the Merchant "
7369
  "Interface, if a Relay Response is activated here."
7370
  msgstr ""
7371
 
7372
- #: core/lib/wpbc_all_translations.php:1417 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:418
7373
  msgid "MD5 Hash value"
7374
  msgstr ""
7375
 
7376
- #: core/lib/wpbc_all_translations.php:1418 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:419
7377
  msgid ""
7378
  "Please enter the MD5 Hash value, which you configured in the settings of Merchant Interface."
7379
  msgstr ""
7380
 
7381
- #: core/lib/wpbc_all_translations.php:1419 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:421
7382
  msgid "To configure MD5 Hash value in Relay Response for your transactions"
7383
  msgstr ""
7384
 
7385
- #: core/lib/wpbc_all_translations.php:1420 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:422
7386
  msgid "Log on to the Merchant Interface"
7387
  msgstr ""
7388
 
7389
- #: core/lib/wpbc_all_translations.php:1421 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:423
7390
  msgid "Click Settings under Account in the main menu on the left"
7391
  msgstr ""
7392
 
7393
- #: core/lib/wpbc_all_translations.php:1422 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:424
7394
  msgid "Click MD5-Hash in the Security Settings section"
7395
  msgstr ""
7396
 
7397
- #: core/lib/wpbc_all_translations.php:1423 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:425
7398
  msgid "Enter this value"
7399
  msgstr ""
7400
 
7401
- #: core/lib/wpbc_all_translations.php:1424 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:426
7402
  msgid "Click Submit"
7403
  msgstr ""
7404
 
7405
- #: core/lib/wpbc_all_translations.php:1425 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:427
7406
  #, php-format
7407
  msgid ""
7408
  "For more information about configuring Relay Response in the Merchant Interface, please see the "
7409
  "%sMerchant Integration Guide%s"
7410
  msgstr ""
7411
 
7412
- #: core/lib/wpbc_all_translations.php:1426 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:442
7413
  #: inc/gateways/ideal/wpbc-gw-ideal.php:506 inc/gateways/ipay88/wpbc-gw-ipay88.php:351
7414
- #: inc/gateways/sage/wpbc-gw-sage.php:530 inc/gateways/stripe/wpbc-gw-stripe.php:594
7415
  msgid "Return URL after Successful order"
7416
  msgstr ""
7417
 
7418
- #: core/lib/wpbc_all_translations.php:1427 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:460
7419
  #: inc/gateways/ideal/wpbc-gw-ideal.php:522 inc/gateways/ipay88/wpbc-gw-ipay88.php:367
7420
  #: inc/gateways/paypal/wpbc-gw-paypal.php:591 inc/gateways/sage/wpbc-gw-sage.php:546
7421
- #: inc/gateways/stripe/wpbc-gw-stripe.php:612
7422
  msgid "The URL where visitor will be redirected after completing payment."
7423
  msgstr ""
7424
 
7425
- #: core/lib/wpbc_all_translations.php:1428 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:461
7426
  #: inc/gateways/ideal/wpbc-gw-ideal.php:523 inc/gateways/ipay88/wpbc-gw-ipay88.php:368
7427
  #: inc/gateways/paypal/wpbc-gw-paypal.php:592 inc/gateways/sage/wpbc-gw-sage.php:547
7428
- #: inc/gateways/stripe/wpbc-gw-stripe.php:613
7429
  #, php-format
7430
  msgid "For example, a URL to your site that displays a %s\"Thank you for the payment\"%s."
7431
  msgstr ""
7432
 
7433
- #: core/lib/wpbc_all_translations.php:1429 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:476
7434
  #: inc/gateways/ideal/wpbc-gw-ideal.php:537 inc/gateways/ipay88/wpbc-gw-ipay88.php:382
7435
- #: inc/gateways/sage/wpbc-gw-sage.php:561 inc/gateways/stripe/wpbc-gw-stripe.php:628
7436
  msgid "Return URL after Failed order"
7437
  msgstr ""
7438
 
7439
- #: core/lib/wpbc_all_translations.php:1430 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:494
7440
  #: inc/gateways/ideal/wpbc-gw-ideal.php:553 inc/gateways/ipay88/wpbc-gw-ipay88.php:398
7441
  #: inc/gateways/paypal/wpbc-gw-paypal.php:622 inc/gateways/sage/wpbc-gw-sage.php:577
7442
- #: inc/gateways/stripe/wpbc-gw-stripe.php:646
7443
  msgid "The URL where the visitor will be redirected after completing payment."
7444
  msgstr ""
7445
 
7446
- #: core/lib/wpbc_all_translations.php:1431 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:495
7447
  #: inc/gateways/ideal/wpbc-gw-ideal.php:554 inc/gateways/ipay88/wpbc-gw-ipay88.php:399
7448
  #: inc/gateways/paypal/wpbc-gw-paypal.php:623 inc/gateways/sage/wpbc-gw-sage.php:578
7449
- #: inc/gateways/stripe/wpbc-gw-stripe.php:647
7450
  #, php-format
7451
  msgid "For example, the URL to your website that displays a %s\"Payment Canceled\"%s page."
7452
  msgstr ""
7453
 
7454
- #: core/lib/wpbc_all_translations.php:1432 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:506
7455
  msgid "Automatically approve booking"
7456
  msgstr ""
7457
 
7458
- #: core/lib/wpbc_all_translations.php:1433 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:507
7459
  msgid "Check this box to automatically approve booking, when visitor makes a successful payment."
7460
  msgstr ""
7461
 
7462
- #: core/lib/wpbc_all_translations.php:1434 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:509
7463
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:412 inc/gateways/paypal/wpbc-gw-paypal.php:640
7464
- #: inc/gateways/sage/wpbc-gw-sage.php:591 inc/gateways/stripe/wpbc-gw-stripe.php:661
7465
  msgid "This will not work, if the visitor leaves the payment page."
7466
  msgstr ""
7467
 
7468
- #: core/lib/wpbc_all_translations.php:1435 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:726
7469
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:344
7470
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:425
7471
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:447
@@ -7473,17 +7526,17 @@ msgstr ""
7473
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:659 inc/gateways/ipay88/wpbc-gw-ipay88.php:764
7474
  #: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:283 inc/gateways/pay_cash/wpbc-gw-pay_cash.php:388
7475
  #: inc/gateways/paypal/wpbc-gw-paypal.php:947 inc/gateways/paypal/wpbc-gw-paypal.php:1042
7476
- #: inc/gateways/sage/wpbc-gw-sage.php:781 inc/gateways/sage/wpbc-gw-sage.php:892
7477
- #: inc/gateways/stripe/wpbc-gw-stripe.php:770
7478
  #, php-format
7479
  msgid "%s Settings"
7480
  msgstr ""
7481
 
7482
- #: core/lib/wpbc_all_translations.php:1436 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:727
7483
  msgid "Integration of authorizenet payment system"
7484
  msgstr ""
7485
 
7486
- #: core/lib/wpbc_all_translations.php:1437 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:819
7487
  #, php-format
7488
  msgid ""
7489
  "If you have no account on this system, please sign up for a %sdeveloper test account%s to obtain "
@@ -7497,11 +7550,11 @@ msgid ""
7497
  "European payment processor"
7498
  msgstr ""
7499
 
7500
- #: core/lib/wpbc_all_translations.php:1439 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:834
7501
  msgid "Be sure that the merchant server system clock is set to the proper time and time zone."
7502
  msgstr ""
7503
 
7504
- #: core/lib/wpbc_all_translations.php:1440 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:844
7505
  #, php-format
7506
  msgid "%s - Server Integration Method (SIM)"
7507
  msgstr ""
@@ -7713,13 +7766,13 @@ msgstr ""
7713
 
7714
  #: core/lib/wpbc_all_translations.php:1484 inc/gateways/ideal/wpbc-gw-ideal.php:564
7715
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:409 inc/gateways/paypal/wpbc-gw-paypal.php:637
7716
- #: inc/gateways/sage/wpbc-gw-sage.php:588 inc/gateways/stripe/wpbc-gw-stripe.php:658
7717
  msgid "Automatically approve/cancel booking"
7718
  msgstr ""
7719
 
7720
  #: core/lib/wpbc_all_translations.php:1485 inc/gateways/ideal/wpbc-gw-ideal.php:565
7721
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:410 inc/gateways/paypal/wpbc-gw-paypal.php:638
7722
- #: inc/gateways/sage/wpbc-gw-sage.php:589 inc/gateways/stripe/wpbc-gw-stripe.php:659
7723
  msgid ""
7724
  "Check this box to automatically approve bookings, when visitor makes a successful payment, or "
7725
  "automatically cancel the booking, when visitor makes a payment cancellation."
@@ -7729,9 +7782,9 @@ msgstr ""
7729
  msgid "Integration of iPay88 payment system"
7730
  msgstr ""
7731
 
7732
- #: core/lib/wpbc_all_translations.php:1487 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:826
7733
- #: inc/gateways/ipay88/wpbc-gw-ipay88.php:751 inc/gateways/sage/wpbc-gw-sage.php:881
7734
- #: inc/gateways/stripe/wpbc-gw-stripe.php:896
7735
  #, php-format
7736
  msgid ""
7737
  "Please configure all fields inside the %sBilling form fields%s section at %sPayments General%s "
@@ -7780,7 +7833,7 @@ msgid ""
7780
  msgstr ""
7781
 
7782
  #: core/lib/wpbc_all_translations.php:1497 inc/gateways/page-gateways.php:174
7783
- #: inc/gateways/page-gateways.php:841
7784
  msgid "Currency"
7785
  msgstr ""
7786
 
@@ -7791,7 +7844,7 @@ msgid ""
7791
  msgstr ""
7792
 
7793
  #: core/lib/wpbc_all_translations.php:1499 inc/gateways/page-gateways.php:142
7794
- #: inc/gateways/page-gateways.php:180 inc/gateways/page-gateways.php:893
7795
  msgid "Important"
7796
  msgstr ""
7797
 
@@ -7911,108 +7964,108 @@ msgstr ""
7911
  msgid "Configure booking details summary above the payment form"
7912
  msgstr ""
7913
 
7914
- #: core/lib/wpbc_all_translations.php:1527 inc/gateways/page-gateways.php:493
7915
  msgid "Payments"
7916
  msgstr ""
7917
 
7918
- #: core/lib/wpbc_all_translations.php:1528 inc/gateways/page-gateways.php:494
7919
  msgid "Customizaton of Payment"
7920
  msgstr ""
7921
 
7922
- #: core/lib/wpbc_all_translations.php:1529 inc/gateways/page-gateways.php:495
7923
  msgid "Payment Gateways"
7924
  msgstr ""
7925
 
7926
- #: core/lib/wpbc_all_translations.php:1530 inc/gateways/page-gateways.php:511
7927
- #: inc/gateways/page-gateways.php:581 inc/gateways/page-gateways.php:608
7928
  msgid "Payment Settings"
7929
  msgstr ""
7930
 
7931
- #: core/lib/wpbc_all_translations.php:1531 inc/gateways/page-gateways.php:512
7932
  msgid "Payment Gateways - General Settings"
7933
  msgstr ""
7934
 
7935
- #: core/lib/wpbc_all_translations.php:1532 inc/gateways/page-gateways.php:579
7936
- #: inc/gateways/page-gateways.php:603
7937
  msgid "Active Payment Gateways"
7938
  msgstr ""
7939
 
7940
- #: core/lib/wpbc_all_translations.php:1533 inc/gateways/page-gateways.php:580
7941
- #: inc/gateways/page-gateways.php:624
7942
  msgid "Billing form fields"
7943
  msgstr ""
7944
 
7945
- #: core/lib/wpbc_all_translations.php:1534 inc/gateways/page-gateways.php:583
7946
- #: inc/gateways/page-gateways.php:638
7947
  msgid "Payment Description"
7948
  msgstr ""
7949
 
7950
- #: core/lib/wpbc_all_translations.php:1535 inc/gateways/page-gateways.php:839
7951
  msgid "Gateway"
7952
  msgstr ""
7953
 
7954
- #: core/lib/wpbc_all_translations.php:1536 inc/gateways/page-gateways.php:889
7955
  #, php-format
7956
  msgid "Some currencies at payment gateways are different from main currency %s"
7957
  msgstr ""
7958
 
7959
- #: core/lib/wpbc_all_translations.php:1537 inc/gateways/page-gateways.php:893
7960
  #, php-format
7961
  msgid ""
7962
  "Interface of plugin is using %s currency. Specific payment gateway will use own currency in "
7963
  "payment form without currency exchange! Its can be reason of wrong cost."
7964
  msgstr ""
7965
 
7966
- #: core/lib/wpbc_all_translations.php:1538 inc/gateways/page-gateways.php:1042
7967
  msgid "ID of booking"
7968
  msgstr ""
7969
 
7970
- #: core/lib/wpbc_all_translations.php:1539 inc/gateways/page-gateways.php:1043
7971
  msgid "ID of booking resources"
7972
  msgstr ""
7973
 
7974
- #: core/lib/wpbc_all_translations.php:1540 inc/gateways/page-gateways.php:1049
7975
  msgid "current date"
7976
  msgstr ""
7977
 
7978
- #: core/lib/wpbc_all_translations.php:1541 inc/gateways/page-gateways.php:1050
7979
  msgid "current time"
7980
  msgstr ""
7981
 
7982
- #: core/lib/wpbc_all_translations.php:1542 inc/gateways/page-gateways.php:1056
7983
  msgid "content data of this booking"
7984
  msgstr ""
7985
 
7986
- #: core/lib/wpbc_all_translations.php:1543 inc/gateways/page-gateways.php:1057
7987
  #: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:181
7988
  msgid "show amount to pay"
7989
  msgstr ""
7990
 
7991
- #: core/lib/wpbc_all_translations.php:1544 inc/gateways/page-gateways.php:1059
7992
  msgid "total booking cost"
7993
  msgstr ""
7994
 
7995
- #: core/lib/wpbc_all_translations.php:1545 inc/gateways/page-gateways.php:1060
7996
  msgid "deposit cost"
7997
  msgstr ""
7998
 
7999
- #: core/lib/wpbc_all_translations.php:1546 inc/gateways/page-gateways.php:1061
8000
  msgid "balance cost"
8001
  msgstr ""
8002
 
8003
- #: core/lib/wpbc_all_translations.php:1547 inc/gateways/page-gateways.php:1062
8004
  msgid "original booking cost"
8005
  msgstr ""
8006
 
8007
- #: core/lib/wpbc_all_translations.php:1548 inc/gateways/page-gateways.php:1063
8008
  msgid "additional booking cost"
8009
  msgstr ""
8010
 
8011
- #: core/lib/wpbc_all_translations.php:1549 inc/gateways/page-gateways.php:1410
8012
  msgid "Amount to pay"
8013
  msgstr ""
8014
 
8015
- #: core/lib/wpbc_all_translations.php:1550 inc/gateways/page-gateways.php:1444
8016
  #, php-format
8017
  msgid "Please make payment for your booking %s on %s For reference your booking ID: %s"
8018
  msgstr ""
@@ -8387,13 +8440,13 @@ msgid "Select TEST for the Test Server and LIVE in the live environment"
8387
  msgstr ""
8388
 
8389
  #: core/lib/wpbc_all_translations.php:1635 inc/gateways/ideal/wpbc-gw-ideal.php:432
8390
- #: inc/gateways/sage/wpbc-gw-sage.php:429 inc/gateways/stripe/wpbc-gw-stripe.php:305
8391
- #: inc/gateways/stripe/wpbc-gw-stripe.php:348 inc/gateways/stripe/wpbc-gw-stripe.php:363
8392
  msgid "TEST"
8393
  msgstr ""
8394
 
8395
  #: core/lib/wpbc_all_translations.php:1636 inc/gateways/ideal/wpbc-gw-ideal.php:433
8396
- #: inc/gateways/sage/wpbc-gw-sage.php:430 inc/gateways/stripe/wpbc-gw-stripe.php:306
8397
  msgid "LIVE"
8398
  msgstr ""
8399
 
@@ -8421,21 +8474,21 @@ msgstr ""
8421
  msgid "Israeli Shekel"
8422
  msgstr ""
8423
 
8424
- #: core/lib/wpbc_all_translations.php:1643 inc/gateways/sage/wpbc-gw-sage.php:780
8425
  msgid "Sage"
8426
  msgstr ""
8427
 
8428
- #: core/lib/wpbc_all_translations.php:1644 inc/gateways/sage/wpbc-gw-sage.php:782
8429
  msgid "Integration of Sage payment system"
8430
  msgstr ""
8431
 
8432
- #: core/lib/wpbc_all_translations.php:1645 inc/gateways/sage/wpbc-gw-sage.php:874
8433
- #: inc/gateways/stripe/wpbc-gw-stripe.php:889
8434
  #, php-format
8435
  msgid "If you have no account on this system, please visit %s to create one."
8436
  msgstr ""
8437
 
8438
- #: core/lib/wpbc_all_translations.php:1646 inc/gateways/wpbc-response.php:133
8439
  msgid "Payment rejected"
8440
  msgstr ""
8441
 
@@ -8477,7 +8530,7 @@ msgid "Always use Description"
8477
  msgstr ""
8478
 
8479
  #: core/lib/wpbc_all_translations.php:1655 inc/gateways/ideal/wpbc-gw-ideal.php:802
8480
- #: inc/gateways/stripe/wpbc-gw-stripe.php:771
8481
  #, php-format
8482
  msgid "Integration of %s payment system"
8483
  msgstr ""
@@ -8511,30 +8564,30 @@ msgstr ""
8511
  msgid "Stripe. Ouch, something went wrong!"
8512
  msgstr ""
8513
 
8514
- #: core/lib/wpbc_all_translations.php:1662 inc/gateways/stripe/wpbc-gw-stripe.php:261
8515
  #, php-format
8516
  msgid "Please pay %s"
8517
  msgstr ""
8518
 
8519
- #: core/lib/wpbc_all_translations.php:1663 inc/gateways/stripe/wpbc-gw-stripe.php:300
8520
  msgid "Chose payment account"
8521
  msgstr ""
8522
 
8523
- #: core/lib/wpbc_all_translations.php:1664 inc/gateways/stripe/wpbc-gw-stripe.php:316
8524
- #: inc/gateways/stripe/wpbc-gw-stripe.php:348
8525
  msgid "Publishable key"
8526
  msgstr ""
8527
 
8528
- #: core/lib/wpbc_all_translations.php:1665 inc/gateways/stripe/wpbc-gw-stripe.php:331
8529
- #: inc/gateways/stripe/wpbc-gw-stripe.php:363
8530
  msgid "Secret key"
8531
  msgstr ""
8532
 
8533
- #: core/lib/wpbc_all_translations.php:1666 inc/gateways/stripe/wpbc-gw-stripe.php:535
8534
  msgid "For more information:"
8535
  msgstr ""
8536
 
8537
- #: core/lib/wpbc_all_translations.php:1667 inc/gateways/stripe/wpbc-gw-stripe.php:869
8538
  #, php-format
8539
  msgid "require PHP version %s or newer!"
8540
  msgstr ""
@@ -8561,11 +8614,11 @@ msgstr ""
8561
  msgid "Email is sent to Visitor after Editing of booking."
8562
  msgstr ""
8563
 
8564
- #: core/lib/wpbc_all_translations.php:1673 core/lib/wpdev-booking-class.php:690
8565
  msgid "Booking resource type is not defined. This can be, when at the URL is wrong booking hash."
8566
  msgstr ""
8567
 
8568
- #: core/lib/wpbc_all_translations.php:1674 core/lib/wpdev-booking-class.php:1004
8569
  msgid "My bookings"
8570
  msgstr ""
8571
 
@@ -8576,7 +8629,7 @@ msgid ""
8576
  "the %s parameter for setting different %s of this page. Example: %s )"
8577
  msgstr ""
8578
 
8579
- #: core/lib/wpbc_all_translations.php:1676 inc/_bl/admin/page-search.php:569
8580
  msgid "Inline Search Form Template"
8581
  msgstr ""
8582
 
@@ -8669,20 +8722,20 @@ msgstr ""
8669
  msgid "Select start and end time showing for Calendar Overview in %sDay%s view mode"
8670
  msgstr ""
8671
 
8672
- #: core/lib/wpbc_all_translations.php:1696 inc/_ps/admin/api-settings-p.php:257
8673
  msgid "Show / hide notes"
8674
  msgstr ""
8675
 
8676
- #: core/lib/wpbc_all_translations.php:1697 inc/_ps/admin/api-settings-p.php:258
8677
  msgid "Check this box if you want to open notes section by default in Booking Listing page."
8678
  msgstr ""
8679
 
8680
- #: core/lib/wpbc_all_translations.php:1698 inc/_ps/admin/api-settings-p.php:295
8681
- #: js/wpbc-gutenberg.js:1179
8682
  msgid "URL of page for customer bookings listing"
8683
  msgstr ""
8684
 
8685
- #: core/lib/wpbc_all_translations.php:1699 inc/_ps/admin/api-settings-p.php:296
8686
  #, php-format
8687
  msgid ""
8688
  "Type URL for %svisitors%s to view own bookings. You must insert %s shortcode into this page."
@@ -8732,8 +8785,8 @@ msgid ""
8732
  "booking listing page."
8733
  msgstr ""
8734
 
8735
- #: core/lib/wpbc_all_translations.php:1709 inc/gateways/page-gateways.php:582
8736
- #: inc/gateways/page-gateways.php:628
8737
  msgid "Payment Options"
8738
  msgstr ""
8739
 
@@ -8796,158 +8849,265 @@ msgstr ""
8796
  msgid "Early / Late"
8797
  msgstr ""
8798
 
8799
- #: js/wpbc-gutenberg.js:53
8800
  msgid "Show a booking form, availability calendar or other elements from Booking Calendar plugin."
8801
  msgstr ""
8802
 
8803
- #: js/wpbc-gutenberg.js:138
8804
  msgid "Configure Booking Calendar Block"
8805
  msgstr ""
8806
 
8807
- #: js/wpbc-gutenberg.js:287
8808
  msgid "Click to Preview Block"
8809
  msgstr ""
8810
 
8811
- #: js/wpbc-gutenberg.js:562 js/wpbc-gutenberg.js:638 js/wpbc-gutenberg.js:822
 
8812
  msgid "Visible months number"
8813
  msgstr ""
8814
 
8815
- #: js/wpbc-gutenberg.js:565 js/wpbc-gutenberg.js:641 js/wpbc-gutenberg.js:825
 
8816
  msgid "Start month"
8817
  msgstr ""
8818
 
8819
- #: js/wpbc-gutenberg.js:568 js/wpbc-gutenberg.js:899
8820
  msgid "Custom booking form"
8821
  msgstr ""
8822
 
8823
- #: js/wpbc-gutenberg.js:571 js/wpbc-gutenberg.js:644 js/wpbc-gutenberg.js:831
 
8824
  msgid "Unavailable dates from other booking resources"
8825
  msgstr ""
8826
 
8827
- #: js/wpbc-gutenberg.js:605
8828
  msgid "Availability Calendar"
8829
  msgstr ""
8830
 
8831
- #: js/wpbc-gutenberg.js:679
8832
  msgid "Timeline"
8833
  msgstr ""
8834
 
8835
- #: js/wpbc-gutenberg.js:709 js/wpbc-gutenberg.js:810
8836
  msgid "Booking resource(s)"
8837
  msgstr ""
8838
 
8839
- #: js/wpbc-gutenberg.js:746
8840
  msgid "Show from/to"
8841
  msgstr ""
8842
 
8843
- #: js/wpbc-gutenberg.js:763
8844
  msgid "All booking resources"
8845
  msgstr ""
8846
 
8847
- #: js/wpbc-gutenberg.js:780
8848
  msgid "Selection of Resources"
8849
  msgstr ""
8850
 
8851
- #: js/wpbc-gutenberg.js:816
8852
  msgid "Selected booking resource (by default)"
8853
  msgstr ""
8854
 
8855
- #: js/wpbc-gutenberg.js:819
8856
  msgid "Title of first option in list"
8857
  msgstr ""
8858
 
8859
- #: js/wpbc-gutenberg.js:828
8860
  msgid "Custom booking form for all booking resources"
8861
  msgstr ""
8862
 
8863
- #: js/wpbc-gutenberg.js:863
8864
  msgid "Booking Form (without calendar)"
8865
  msgstr ""
8866
 
8867
- #: js/wpbc-gutenberg.js:896
8868
  msgid "Date for submit booking"
8869
  msgstr ""
8870
 
8871
- #: js/wpbc-gutenberg.js:928
8872
  msgid "Search Availability form"
8873
  msgstr ""
8874
 
8875
- #: js/wpbc-gutenberg.js:958
8876
  msgid "Show search results on other page"
8877
  msgstr ""
8878
 
8879
- #: js/wpbc-gutenberg.js:961
8880
  msgid "Search results page must have this shortcode"
8881
  msgstr ""
8882
 
8883
- #: js/wpbc-gutenberg.js:964
8884
  msgid "Show search results in the same page"
8885
  msgstr ""
8886
 
8887
- #: js/wpbc-gutenberg.js:967
8888
  msgid "Search Results Title"
8889
  msgstr ""
8890
 
8891
- #: js/wpbc-gutenberg.js:970
8892
  msgid "Title, if no search results"
8893
  msgstr ""
8894
 
8895
- #: js/wpbc-gutenberg.js:973
8896
  msgid "Search in booking resources of WP users"
8897
  msgstr ""
8898
 
8899
- #: js/wpbc-gutenberg.js:1027
8900
  msgid "Show search results on this page, after redirection from search form at other page."
8901
  msgstr ""
8902
 
8903
- #: js/wpbc-gutenberg.js:1051
8904
  msgid "System Block"
8905
  msgstr ""
8906
 
8907
- #: js/wpbc-gutenberg.js:1051
8908
  msgid "Booking Calendar Editing"
8909
  msgstr ""
8910
 
8911
- #: js/wpbc-gutenberg.js:1082
8912
  msgid ""
8913
  "This block required for ability to edit, cancel the booking by visitor, who made the booking, or "
8914
  "for ability to show payment form, after sending payment request."
8915
  msgstr ""
8916
 
8917
- #: js/wpbc-gutenberg.js:1087 js/wpbc-gutenberg.js:1173
8918
  msgid "Link to this page must be defined"
8919
  msgstr ""
8920
 
8921
- #: js/wpbc-gutenberg.js:1091 js/wpbc-gutenberg.js:1177
8922
  msgid "at this option"
8923
  msgstr ""
8924
 
8925
- #: js/wpbc-gutenberg.js:1101 js/wpbc-gutenberg.js:1187
8926
  msgid "You can not open this page directly. Please, use links in "
8927
  msgstr ""
8928
 
8929
- #: js/wpbc-gutenberg.js:1109 js/wpbc-gutenberg.js:1195
8930
  msgid "If you open this page directly, then you will see this error"
8931
  msgstr ""
8932
 
8933
- #: js/wpbc-gutenberg.js:1137
8934
  msgid "Customer Bookings Listing"
8935
  msgstr ""
8936
 
8937
- #: js/wpbc-gutenberg.js:1168
8938
  msgid ""
8939
  "Visitors of your website, can view previous (own) bookings, by clicking on secret link in email, "
8940
  "which is sending after booking created."
8941
  msgstr ""
8942
 
8943
- #: js/wpbc-gutenberg.js:1228
8944
  msgid "Show Info of Booking Resource"
8945
  msgstr ""
8946
 
8947
- #: js/wpbc-gutenberg.js:1294
8948
  msgid "Click to edit"
8949
  msgstr ""
8950
 
8951
- #: js/wpbc-gutenberg.js:1296
8952
  msgid "This is not real preview. Its configuration block of \"Booking Calendar\"."
8953
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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"
34
  msgid "year(s)"
35
  msgstr ""
36
 
37
+ #: core/admin/api-settings.php:94 core/admin/wpbc-toolbar-tiny.php:460
38
+ #: core/lib/wpbc_all_translations.php:455 js/wpbc-gutenberg.js:743
39
+ msgid "Number of months to scroll"
40
  msgstr ""
41
 
42
  #: core/admin/api-settings.php:95 core/lib/wpbc_all_translations.php:6
130
  msgid "Show partially booked days with same background as in legend item"
131
  msgstr ""
132
 
133
+ #: core/admin/api-settings.php:164 core/admin/api-settings.php:314 core/admin/api-settings.php:474
134
+ #: core/admin/api-settings.php:509 core/admin/api-settings.php: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
 
142
+ #: core/admin/api-settings.php:165 core/admin/api-settings.php:475
143
  #: core/lib/wpbc_all_translations.php:22
144
  msgid "Partially booked item - day, which is booked for the specific time-slot(s)."
145
  msgstr ""
164
  msgid "Simple"
165
  msgstr ""
166
 
167
+ #: core/admin/api-settings.php:275 core/admin/wpbc-toolbar-tiny.php:240
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
 
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 ""
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
440
  #: inc/_ps/admin/br-table-export-feeds.php:168 inc/_ps/admin/br-table-import-gcal-p.php:140
441
  #: inc/_ps/admin/page-resources.php:455 inc/_ps/form/class-wpbc-field-help-text.php:211
442
  #: inc/_ps/lib_p.php:124 inc/_ps/lib_p.php:128 inc/_ps/wpbc-print.php:82
443
+ #: inc/gateways/page-gateways.php:847
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
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
  "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
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
  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
  #: 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
 
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
  #: 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
  #: 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 ""
890
  #: core/admin/page-email-new-admin.php:220 core/admin/page-email-new-admin.php:272
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
898
  #: inc/_ps/admin/page-email-edit.php:234 inc/_ps/admin/page-email-edit.php:290
899
+ #: inc/_ps/wpbc-booking-select-widget.php:140 js/wpbc-gutenberg.js:737
900
  msgid "Title"
901
  msgstr ""
902
 
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
925
  #: core/admin/page-email-approved.php:262 core/admin/page-email-deleted.php:262
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 ""
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
  #: 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 ""
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"
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
  #: 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
  #: 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
  #: 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
  #: 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
  #: 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
  #: 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
  #: 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
  #: 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
  #: 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
  #: 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
  #: 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
  #: 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
  #: 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
  #: 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
  #: 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
  #: 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
  #: 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
  #: 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
  #: 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
  #: 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
  #: 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
  #: 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
  #: 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"
1180
  msgstr ""
1181
 
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
  #: 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
  #: 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 ""
1214
 
1215
  #: core/admin/page-email-approved.php:561 core/admin/page-email-deleted.php:559
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 ""
1239
 
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 ""
1247
 
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
1259
  msgstr ""
1260
 
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 ""
1269
  #: core/admin/page-email-approved.php:731 core/admin/page-email-approved.php:767
1270
  #: core/admin/page-email-deleted.php:728 core/admin/page-email-deleted.php:764
1271
  #: core/admin/page-email-deny.php:728 core/admin/page-email-deny.php:764
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
1288
  #: inc/_bs/admin/page-email-payment.php:730 inc/_bs/admin/page-email-payment.php:766
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 ""
1309
 
1310
  #: core/admin/page-email-approved.php:756 core/admin/page-email-deleted.php:753
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
1321
  #: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:393 inc/gateways/paypal/wpbc-gw-paypal.php:1059
1322
  #: inc/gateways/paypal/wpbc-gw-paypal.php:1076
1323
  msgid "Help"
1324
  msgstr ""
1325
 
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 ""
1333
 
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 ""
1341
 
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
 
1354
  #: core/admin/page-email-approved.php:917 core/admin/page-email-approved.php:920
1355
  #: core/admin/page-email-deleted.php:913 core/admin/page-email-deleted.php:916
1356
  #: core/admin/page-email-deny.php:913 core/admin/page-email-deny.php:916
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"
1364
  msgstr ""
1365
 
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
  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 ""
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 ""
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 ""
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
  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
  "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
 
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
1772
+ #: inc/_bs/admin/api-settings-s.php:527 inc/_ps/admin/page-settings-form.php:383
1773
+ #: inc/_ps/admin/page-settings-form.php:393
1774
  msgid "minutes"
1775
  msgstr ""
1776
 
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
  #: 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
  "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
  "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
  "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
  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
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
  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
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
  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"
2730
  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
2813
  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%)"
2821
  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 "
2844
  "shortcodes %shere%s"
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 "
3037
  "to this page"
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
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 "
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
  "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
  "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
  "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 ""
3842
  "%s - inserting data info about the booking, which you configured in the content form at Settings "
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 ""
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 ""
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
 
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
 
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
  "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
 
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
 
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
 
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
 
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
 
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
 
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
 
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 ""
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."
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 ""
6140
  "You can use any %sHTML tags%s in the booking form. Please use the HTML tags carefully. Be sure, "
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
 
6728
  #: inc/_ps/form/class-wpbc-form-help.php:715 inc/_ps/form/class-wpbc-form-help.php:718
6729
  #: inc/_ps/form/class-wpbc-form-help.php:721 inc/_ps/form/class-wpbc-form-help.php:724
6730
  #: inc/_ps/form/class-wpbc-form-help.php:727 inc/_ps/form/class-wpbc-form-help.php:730
6731
+ #: inc/gateways/page-gateways.php:1074 inc/gateways/page-gateways.php:1077
6732
+ #: inc/gateways/page-gateways.php:1080 inc/gateways/page-gateways.php:1083
6733
+ #: inc/gateways/page-gateways.php:1086 inc/gateways/page-gateways.php:1089
6734
+ #: inc/gateways/page-gateways.php:1092 inc/gateways/page-gateways.php:1095
6735
+ #: inc/gateways/page-gateways.php:1098 inc/gateways/page-gateways.php:1101
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
 
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
 
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
 
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 ""
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
7345
  #: inc/gateways/paypal/wpbc-gw-paypal.php:495 inc/gateways/paypal/wpbc-gw-paypal.php:496
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
7526
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:659 inc/gateways/ipay88/wpbc-gw-ipay88.php:764
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 "
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 ""
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."
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 "
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
 
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
 
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 ""
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
 
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
 
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 ""
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 ""
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
 
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
 
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."
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
 
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 ""
languages/wpdev-country-list.php CHANGED
@@ -676,4 +676,3 @@ $wpbc_booking_region_cities_list["Pacific"]["Tongatapu"] = "Tongatapu";
676
  $wpbc_booking_region_cities_list["Pacific"]["Truk"] = "Truk";
677
  $wpbc_booking_region_cities_list["Pacific"]["Wake"] = "Wake";
678
  $wpbc_booking_region_cities_list["Pacific"]["Wallis"] = "Wallis";
679
- ?>
676
  $wpbc_booking_region_cities_list["Pacific"]["Truk"] = "Truk";
677
  $wpbc_booking_region_cities_list["Pacific"]["Wake"] = "Wake";
678
  $wpbc_booking_region_cities_list["Pacific"]["Wallis"] = "Wallis";
 
readme.txt CHANGED
@@ -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.4.6
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -167,36 +167,37 @@ Please see [FAQ](https://wpbookingcalendar.com/faq/).
167
  = Support Languages =
168
 
169
  - English
170
- - Dutch [100% Completed]
171
- - Slovenian [100% Completed]
172
- - Italian [99% Completed]
 
173
  - German [99% Completed]
174
- - Finnish [99% Completed]
175
- - Danish [97% Completed]
176
- - Greek [97% Completed]
177
- - Bulgarian [97% Completed]
178
- - Hungarian [97% Completed]
179
- - Polish [97% Completed]
180
- - Turkish [97% Completed]
181
- - Swedish [96% Completed]
182
- - Spanish [94% Completed]
183
- - Russian [93% Completed]
184
- - Portugal [92% Completed]
185
- - Galician (Spanish) [92% Completed]
186
- - Thai [92% Completed]
187
- - Norwegian [89% Completed]
188
- - Brazilian Portuguese [89% Completed]
189
- - Hebrew [89% Completed]
190
- - Ukrainian [88% Completed]
191
- - Chinese [88% Completed]
192
- - Chinese (Taiwan) [89% Completed]
193
- - French [89% Completed]
194
- - Czech [75% Completed]
195
- - Slovak [75% Completed]
196
- - Croatian [76% Completed]
197
- - Catalan [75% Completed]
198
- - Arabic [75% Completed]
199
- - Belarussian [9% Completed]
200
 
201
  Please recheck the status of each translation, before using plugin.
202
  We open for your help in new translations or correcting existing ones. You can translate to new language or update exist one, using this [tutorial of translation](https://wpbookingcalendar.com/faq/make-translation-of-wp-plugin/)
@@ -225,6 +226,50 @@ Please see [Video Guides](https://wpbookingcalendar.com/help/).
225
  13. **Time Slots**. Simple configuration of **time slots** selection in booking form.
226
 
227
  == Changelog ==
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
228
 
229
  = 8.4.6 =
230
  - Changes in **all** versions:
@@ -541,5 +586,5 @@ Please see [Video Guides](https://wpbookingcalendar.com/help/).
541
  For more information, see the [full release notes](https://wpbookingcalendar.com/changelog/).
542
 
543
  == Upgrade Notice ==
544
- = 8.4 =
545
- Support WordPress 5.0 and new Gutenberg editor. Use new Booking Calendar blocks in posts and pages.
5
  Requires at least: 4.0
6
  Requires PHP: 5.2.4
7
  Tested up to: 5.2
8
+ Stable tag: 8.5.1
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
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]
201
 
202
  Please recheck the status of each translation, before using plugin.
203
  We open for your help in new translations or correcting existing ones. You can translate to new language or update exist one, using this [tutorial of translation](https://wpbookingcalendar.com/faq/make-translation-of-wp-plugin/)
226
  13. **Time Slots**. Simple configuration of **time slots** selection in booking form.
227
 
228
  == Changelog ==
229
+ = 8.5.1 =
230
+ - Changes in **all** versions:
231
+ * **Translation** Spanish translation [100% completed] by Enrique Ferrater
232
+ * **Improvement** On error in filling booking form fields, scroll only to first field with error. ( 8.5.1.3 )
233
+ - Changes in **Personal / Business Small / Business Medium / Business Large / MultiUser** versions:
234
+ * **New**. Search imported UID (from external .ics feed) or by keyword in notes (which entered by user) at Booking Listing page by entering keyword in Filter toolbar. (8.5.1.1) *(Personal Business Small/Medium/Large, MultiUser)*
235
+ * **Fix**. Issue of showing Stripe payment button (integration v.3) during payment request to visitor. (8.5.1.2) *(Business Small/Medium/Large, MultiUser)*
236
+
237
+ = 8.5 =
238
+ - Changes in **all** versions:
239
+ * **Translation** Slovenian translation [99% completed] by Klemen Gaber
240
+ * **Translation** Romanian translation [99% completed] by Silviu Nita
241
+ * **Translation** Dutch translation [99% completed] by Boris Hoekmeijer
242
+ * **Translation** German translation [99% completed] by Dominik Ziegler
243
+ * **New** 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)
244
+ * **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)
245
+ * **Improvement** Changed color of "Imported" label for bookings in Booking Listing page (8.4.7.2)
246
+ * **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)
247
+ * **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)
248
+ * **Fix**. Issue of not working "Read All" button (issue was exist in updates 8.4.5, 8.4.6. (8.4.7.15)
249
+ * **Fix**. Issue of incorrectly showing months scroll in calendar at some iPads (8.4.7.17)
250
+ * **Fix**. Issue of not showing bookings for "Today" date in Booking Listing page, when bookings was made for entire date. (8.4.7.21)
251
+ * **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)
252
+ * **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)
253
+ - Changes in **Personal / Business Small / Business Medium / Business Large / MultiUser** versions:
254
+ * **New**. Highlight and 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)*
255
+ * **New**. Highlight and 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)*
256
+ * **New**. 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)
257
+ * **New**. 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)
258
+ * **New**. 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)
259
+ * **New**. 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)
260
+ * **New**. Ability to define sort order of search availability results at the Booking > Settings > Search page. (8.4.7.8) *(Business Large, MultiUser)*
261
+ * **New**. ** 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)
262
+ * **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)*
263
+ * **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)*
264
+ * **Improvement**. Added autocomplete Off to the search form fields, to prevent of showing tooltips in search fields. (8.4.7.7) *(Business Large, MultiUser)*
265
+ * **Fix**. Warning: Invalid argument supplied for foreach() in ..\multiuser.php on line 558 (8.4.7.4) *(MultiUser)*
266
+ * **Fix**. Showing of users in Booking > Settings > Users page in WordPress MU installation (8.4.7.5) *(MultiUser)*
267
+ * **Fix**. Issue with Stripe payment, when "Subject" have too long description with dates to book. (8.4.7.10) *(Business Small/Medium/Large, MultiUser)*
268
+ * **Fix**. Translation issue of 'Completed' payment status (8.4.7.11) *(Business Small/Medium/Large, MultiUser)*
269
+ * **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)*
270
+ * **Fix**. Showing Notice: Undefined offset: 9 in ../inc/_bl/wpbc-search-availability.php on line 689 (8.4.7.16) *(Business Large, MultiUser)*
271
+ * **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)*
272
+ * **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)*
273
 
274
  = 8.4.6 =
275
  - Changes in **all** versions:
586
  For more information, see the [full release notes](https://wpbookingcalendar.com/changelog/).
587
 
588
  == Upgrade Notice ==
589
+ = 8.5 =
590
+ Improve of bookings importing. In paid versions highlighting code syntax in booking form. Stripe integration update.
wpdev-booking.php CHANGED
@@ -7,7 +7,7 @@ Author: wpdevelop, oplugins
7
  Author URI: https://wpbookingcalendar.com/
8
  Text Domain: booking
9
  Domain Path: /languages/
10
- Version: 8.4.6
11
  */
12
 
13
  /* Copyright 2009 - 2019 www.wpbookingcalendar.com (email: info@wpbookingcalendar.com),
@@ -28,6 +28,9 @@ Version: 8.4.6
28
 
29
  if ( ! defined( 'ABSPATH' ) ) die( '<h3>Direct access to this file do not allow!</h3>' ); // Exit if accessed directly
30
 
 
 
 
31
  ////////////////////////////////////////////////////////////////////////////////
32
  // PRIMARY URL CONSTANTS
33
  ////////////////////////////////////////////////////////////////////////////////
7
  Author URI: https://wpbookingcalendar.com/
8
  Text Domain: booking
9
  Domain Path: /languages/
10
+ Version: 8.5.1
11
  */
12
 
13
  /* Copyright 2009 - 2019 www.wpbookingcalendar.com (email: info@wpbookingcalendar.com),
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' ); }
33
+
34
  ////////////////////////////////////////////////////////////////////////////////
35
  // PRIMARY URL CONSTANTS
36
  ////////////////////////////////////////////////////////////////////////////////