Booking Calendar - Version 8.4

Version Description

  • Changes in all versions:
    • New. Support Gutenberg editor. New Booking Calendar blocks for integration with new Gutenberg editor in posts and pages. ( 8.3.3.99 )
    • New. New Booking Calendar Blocks of Gutenberg editor, which support integration of 'Booking Form', 'Availability Calendar', 'Timeline', 'Selection of booking resources', 'Customer listing of previous bookings', 'Search form', 'Search results', 'Booking form only', 'Booking edit shortcode', 'Showing title of booking resource' ( 8.3.3.99 )
    • Translation. Finish translation [99% completed] by by Tero Janhunen
  • Changes in Personal / Business Small / Business Medium / Business Large / MultiUser versions:
    • Improvement Showing booking detaes selection in dates hints ([selected_short_dates_hint] and [selected_short_timedates_hint]) for additional calendars, if was used 2 or more calendars in one form (8.3.3.3) (Business Medium/Large, MultiUser)
    • Improvement During CSV Export show trash status of booking in exported file (8.3.3.7) (Personal Business Small/Medium/Large, MultiUser)
    • Improvement Do not show cost and payment status in mouse over tooltip in Calendar Overview page and in Timelines, if the cost of booking
Download this release

Release Info

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

Code changes from version 8.3.2 to 8.4

Files changed (48) hide show
  1. core/admin/wpbc-class-timeline.php +17 -11
  2. core/admin/wpbc-gutenberg.php +10 -3
  3. core/admin/wpbc-toolbar-tiny.php +13 -0
  4. core/class/wpbc-class-welcome.php +27 -4
  5. core/lib/wpbc-booking-new.php +4 -1
  6. core/lib/wpdev-booking-class.php +5 -1
  7. core/wpbc-activation.php +4 -0
  8. core/wpbc-constants.php +2 -2
  9. core/wpbc-include.php +1 -1
  10. core/wpbc-js.php +2 -2
  11. css/wpbc-gutenberg.css +176 -0
  12. js/datepick/{jquery.datepick-zh-CN.js → jquery.datepick-cn.js} +0 -0
  13. js/datepick/{jquery.datepick-zh-TW.js → jquery.datepick-tw.js} +0 -0
  14. js/wpbc-gutenberg.js +1334 -15
  15. js/wpbc_times.js +2 -2
  16. languages/booking-ar_SA.mo +0 -0
  17. languages/booking-be_BY.mo +0 -0
  18. languages/booking-bg_BG.mo +0 -0
  19. languages/booking-ca.mo +0 -0
  20. languages/booking-cs_CZ.mo +0 -0
  21. languages/booking-da_DK.mo +0 -0
  22. languages/booking-de_DE.mo +0 -0
  23. languages/booking-el.mo +0 -0
  24. languages/booking-es_ES.mo +0 -0
  25. languages/booking-fi.mo +0 -0
  26. languages/booking-fr_FR.mo +0 -0
  27. languages/booking-gl_ES.mo +0 -0
  28. languages/booking-he_IL.mo +0 -0
  29. languages/booking-hr.mo +0 -0
  30. languages/booking-hu_HU.mo +0 -0
  31. languages/booking-it_IT.mo +0 -0
  32. languages/booking-nb_NO.mo +0 -0
  33. languages/booking-nl_NL.mo +0 -0
  34. languages/booking-pl_PL.mo +0 -0
  35. languages/booking-pt_BR.mo +0 -0
  36. languages/booking-pt_PT.mo +0 -0
  37. languages/booking-ru_RU.mo +0 -0
  38. languages/booking-sk_SK.mo +0 -0
  39. languages/booking-sl_SI.mo +0 -0
  40. languages/booking-sv_SE.mo +0 -0
  41. languages/booking-th_TH.mo +0 -0
  42. languages/booking-tr_TR.mo +0 -0
  43. languages/booking-uk_UK.mo +0 -0
  44. languages/booking-zh_CN.mo +0 -0
  45. languages/booking-zh_TW.mo +0 -0
  46. languages/booking.pot +2003 -1836
  47. readme.txt +58 -38
  48. wpdev-booking.php +1 -1
core/admin/wpbc-class-timeline.php CHANGED
@@ -2269,8 +2269,11 @@ class WPBC_Timeline {
2269
  $content_text .= '<div class=\'text-left field-labels booking-labels\'>';
2270
  if ( wpbc_is_payment_status_ok( trim( $bookings[$bk_id]->pay_status ) ) )
2271
  $content_text .= '<span class=\'label label-default label-payment-status payment-label-success\'><span class=\'label-payment-status-prefix\'>' . esc_js( __( 'Payment', 'booking' ) ). '</span> ' . esc_js( $pay_status ) . '</span>'; //FixIn: 7.1.1.3
2272
- else
2273
- $content_text .= '<span class=\'label label-default label-payment-status payment-label-unknown\'><span class=\'label-payment-status-prefix\'>' . esc_js( __( 'Payment', 'booking' ) ) . '</span> ' . esc_js( $pay_status ) . '</span>'; //FixIn: 7.1.1.3
 
 
 
2274
  $content_text .= '</div>';
2275
  }
2276
 
@@ -2279,15 +2282,18 @@ class WPBC_Timeline {
2279
  $content_text .= '</div>';
2280
 
2281
  if ( ( class_exists( 'wpdev_bk_biz_s' ) ) ) { //&& ( ! $this->is_frontend ) ){
2282
-
2283
- // Cost
2284
- $booking_cost = wpbc_get_cost_with_currency_for_user( $bookings[$bk_id]->cost, $bookings[$bk_id]->booking_type );
2285
-
2286
- $content_text .= '<div class=\'wpbc-popover-cost-bar\' >';
2287
- //$content_text .= '<div class=\'text-left field-labels booking-labels\'>';
2288
- $content_text .= '<div class=\'label0 label-default0 wpbc-popover-cost\'>' . $booking_cost . '</div>';
2289
- //$content_text .= '</div>';
2290
- $content_text .= '</div>';
 
 
 
2291
  }
2292
 
2293
  if ( ! $this->is_frontend ) {
2269
  $content_text .= '<div class=\'text-left field-labels booking-labels\'>';
2270
  if ( wpbc_is_payment_status_ok( trim( $bookings[$bk_id]->pay_status ) ) )
2271
  $content_text .= '<span class=\'label label-default label-payment-status payment-label-success\'><span class=\'label-payment-status-prefix\'>' . esc_js( __( 'Payment', 'booking' ) ). '</span> ' . esc_js( $pay_status ) . '</span>'; //FixIn: 7.1.1.3
2272
+ else {
2273
+ if ( floatval( $bookings[ $bk_id ]->cost ) > 0 ) { //FixIn: 8.3.3.9
2274
+ $content_text .= '<span class=\'label label-default label-payment-status payment-label-unknown\'><span class=\'label-payment-status-prefix\'>' . esc_js( __( 'Payment', 'booking' ) ) . '</span> ' . esc_js( $pay_status ) . '</span>'; //FixIn: 7.1.1.3
2275
+ }
2276
+ }
2277
  $content_text .= '</div>';
2278
  }
2279
 
2282
  $content_text .= '</div>';
2283
 
2284
  if ( ( class_exists( 'wpdev_bk_biz_s' ) ) ) { //&& ( ! $this->is_frontend ) ){
2285
+
2286
+ //FixIn: 8.3.3.9
2287
+ if ( floatval( $bookings[ $bk_id ]->cost ) > 0 ) {
2288
+ // Cost
2289
+ $booking_cost = wpbc_get_cost_with_currency_for_user( $bookings[ $bk_id ]->cost, $bookings[ $bk_id ]->booking_type );
2290
+
2291
+ $content_text .= '<div class=\'wpbc-popover-cost-bar\' >';
2292
+ //$content_text .= '<div class=\'text-left field-labels booking-labels\'>';
2293
+ $content_text .= '<div class=\'label0 label-default0 wpbc-popover-cost\'>' . $booking_cost . '</div>';
2294
+ //$content_text .= '</div>';
2295
+ $content_text .= '</div>';
2296
+ }
2297
  }
2298
 
2299
  if ( ! $this->is_frontend ) {
core/admin/wpbc-gutenberg.php CHANGED
@@ -12,18 +12,25 @@
12
  * @modified 2018-04-22
13
  */
14
 
 
 
15
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
16
 
17
  function wpbc_gutenberg_block_booking() {
18
 
19
  if ( function_exists( 'register_block_type' ) ) {
 
20
  wp_register_script( 'gutenberg-wpbc-booking', wpbc_plugin_url( '/js/wpbc-gutenberg.js' ), array(
21
  'wp-blocks',
22
  'wp-element'
23
  ) );
24
-
25
- register_block_type( 'gutenberg-wpbc/booking', array(
26
- 'editor_script' => 'gutenberg-wpbc-booking'
 
 
 
 
27
  ) );
28
  }
29
  }
12
  * @modified 2018-04-22
13
  */
14
 
15
+ //FixIn: 8.3.3.99
16
+
17
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
18
 
19
  function wpbc_gutenberg_block_booking() {
20
 
21
  if ( function_exists( 'register_block_type' ) ) {
22
+
23
  wp_register_script( 'gutenberg-wpbc-booking', wpbc_plugin_url( '/js/wpbc-gutenberg.js' ), array(
24
  'wp-blocks',
25
  'wp-element'
26
  ) );
27
+ wp_register_style( 'gutenberg-wpbc-editor', wpbc_plugin_url( '/css/wpbc-gutenberg.css' ),
28
+ array( 'wp-edit-blocks' ),
29
+ filemtime( plugin_dir_path( __FILE__ ) . '../../css/wpbc-gutenberg.css' )
30
+ );
31
+ register_block_type( 'booking/booking', array(
32
+ 'editor_script' => 'gutenberg-wpbc-booking'
33
+ , 'editor_style' => 'gutenberg-wpbc-editor'
34
  ) );
35
  }
36
  }
core/admin/wpbc-toolbar-tiny.php CHANGED
@@ -287,6 +287,8 @@ class WPBC_TinyMCE_Buttons {
287
  wpbc_clear_div();
288
  ?>
289
  <input name="wpbc_text_put_in_shortcode" id="wpbc_text_put_in_shortcode" class="put-in" readonly="readonly" onfocus="this.select()" type="text" />
 
 
290
  </div>
291
  <div class="modal-footer" style="text-align:center;">
292
 
@@ -2368,6 +2370,8 @@ Parameters for possible usage of shortcode:
2368
  , backdrop: true
2369
  , show: true
2370
  });
 
 
2371
  }
2372
 
2373
 
@@ -2380,6 +2384,15 @@ Parameters for possible usage of shortcode:
2380
 
2381
  /** Send text to editor */
2382
  function wpbc_send_text_to_editor( h ) {
 
 
 
 
 
 
 
 
 
2383
  var ed, mce = typeof(tinymce) != 'undefined', qt = typeof(QTags) != 'undefined';
2384
 
2385
  if ( !wpActiveEditor ) {
287
  wpbc_clear_div();
288
  ?>
289
  <input name="wpbc_text_put_in_shortcode" id="wpbc_text_put_in_shortcode" class="put-in" readonly="readonly" onfocus="this.select()" type="text" />
290
+ <?php //FixIn: 8.3.3.99 ?>
291
+ <input name="wpbc_text_gettenberg_section_id" id="wpbc_text_gettenberg_section_id" type="text" style="display: none;" />
292
  </div>
293
  <div class="modal-footer" style="text-align:center;">
294
 
2370
  , backdrop: true
2371
  , show: true
2372
  });
2373
+ //FixIn: 8.3.3.99
2374
+ jQuery( "#wpbc_text_gettenberg_section_id" ).val( '' );
2375
  }
2376
 
2377
 
2384
 
2385
  /** Send text to editor */
2386
  function wpbc_send_text_to_editor( h ) {
2387
+
2388
+ // FixIn: 8.3.3.99
2389
+ if ( typeof( wpbc_send_text_to_gutenberg ) == 'function' ){
2390
+ var is_send = wpbc_send_text_to_gutenberg( h );
2391
+ if ( true === is_send ){
2392
+ return;
2393
+ }
2394
+ }
2395
+
2396
  var ed, mce = typeof(tinymce) != 'undefined', qt = typeof(QTags) != 'undefined';
2397
 
2398
  if ( !wpActiveEditor ) {
core/class/wpbc-class-welcome.php CHANGED
@@ -393,21 +393,44 @@ class WPBC_Welcome {
393
  $this->maintence_section();
394
  //
395
  ////////////////////////////////////////////////////////////////////////////////////////////////////////////
396
- // 8.3
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.3</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/-pOTMiyp6Q8?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
  <div class="clear" style="margin-top:20px;"></div>
413
  <a id="wpbc_show_advanced_section_link_show" class="wpbc_expand_section_link" href="javascript:void(0)"
@@ -1912,7 +1935,7 @@ at the popup configuration dialog, during inserting booking shortcode into post
1912
  );
1913
 
1914
  $this->show_col_section( array(
1915
- array( 'h4' => 'Automatic cancelation of pending bookings',
1916
  'text' =>
1917
  // '<p>' . 'Set **pending days as available** in booking form to prevent from SPAM bookings.' . '</p>'
1918
  '<p>' . 'Activate **automatic cancelation** of **pending bookings** for specific date(s), if you **approved booking** on these date(s) at same booking resource.' . '</p>'
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
+ ////////////////////////////////////////////////////////////////////////////////////////////////////////////
414
+ ?>
415
+ <div class="clear" style="margin-top:20px;"></div>
416
+ <a id="wpbc_show_advanced_section_link_show" class="wpbc_expand_section_link" href="javascript:void(0)"
417
+ onclick="javascript:jQuery( '.version_update_8_3' ).toggle();"
418
+ >+ 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.3</span></a>
419
 
420
+ <div class="version_update_8_3" style="display:none;">
421
+
422
+ <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;"
423
+ >8.3</span></h2><?php
424
+ $this->show_separator();
425
+ // <!--iframe width="560" height="315" src="https://www.youtube.com/embed/kLrI7zqKeQQ?rel=0" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe-->
426
+ ?><div style="text-align: center;margin-top:2em;"><iframe width="560" height="315" src="https://www.youtube.com/embed/-pOTMiyp6Q8?rel=0&amp;start=0&amp;rel=0" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe></div><?php
427
+ ?><div style="width:100%;font-size:0.8em;margin:2em 1em;text-align: center;">
428
+ <?php
429
+ printf( 'For more information about current update, see %srelease notes%s',
430
+ '<a class="" href="https://wpbookingcalendar.com/changelog/" target="_blank">', '</a>.' );
431
+ ?>
432
+ </div><?php
433
+ ?></div><?php
434
  ?>
435
  <div class="clear" style="margin-top:20px;"></div>
436
  <a id="wpbc_show_advanced_section_link_show" class="wpbc_expand_section_link" href="javascript:void(0)"
1935
  );
1936
 
1937
  $this->show_col_section( array(
1938
+ array( 'h4' => 'Automatic cancellation of pending bookings',
1939
  'text' =>
1940
  // '<p>' . 'Set **pending days as available** in booking form to prevent from SPAM bookings.' . '</p>'
1941
  '<p>' . 'Activate **automatic cancelation** of **pending bookings** for specific date(s), if you **approved booking** on these date(s) at same booking resource.' . '</p>'
core/lib/wpbc-booking-new.php CHANGED
@@ -187,8 +187,11 @@ function wpdev_bk_insert_new_booking() {
187
  }
188
  }
189
 
 
 
 
190
  //if ( ( defined( 'WP_BK_AUTO_SEND_PAY_REQUEST_IF_ADD_IN_ADMIN_PANEL' ) ) && ( WP_BK_AUTO_SEND_PAY_REQUEST_IF_ADD_IN_ADMIN_PANEL ) ){
191
- if ( get_bk_option( 'booking_payment_request_auto_send_in_bap' ) == 'On' ) { //FixIn: 8.1.3.24
192
  if ( strpos($_SERVER['HTTP_REFERER'], $admin_uri ) !== false ) {
193
  if ( function_exists( 'wpbc_send_email_payment_request' ) ) {
194
  $formdata = escape_any_xss( $_POST[ "form" ] );
187
  }
188
  }
189
 
190
+ if ( isset( $_POST["is_send_emeils"] ) ) $is_send_emeils = $_POST["is_send_emeils"]; //FixIn: 8.3.3.12
191
+ else $is_send_emeils = 1;
192
+
193
  //if ( ( defined( 'WP_BK_AUTO_SEND_PAY_REQUEST_IF_ADD_IN_ADMIN_PANEL' ) ) && ( WP_BK_AUTO_SEND_PAY_REQUEST_IF_ADD_IN_ADMIN_PANEL ) ){
194
+ if ( ( get_bk_option( 'booking_payment_request_auto_send_in_bap' ) == 'On' ) && ( ! empty( $is_send_emeils ) ) ) { //FixIn: 8.1.3.24
195
  if ( strpos($_SERVER['HTTP_REFERER'], $admin_uri ) !== false ) {
196
  if ( function_exists( 'wpbc_send_email_payment_request' ) ) {
197
  $formdata = escape_any_xss( $_POST[ "form" ] );
core/lib/wpdev-booking-class.php CHANGED
@@ -199,7 +199,7 @@ class wpdev_booking {
199
  }
200
  }
201
  //FixIn: 6.1.1.18 End
202
-
203
  return array($dates_array,$time_array);
204
  }
205
 
@@ -1190,6 +1190,10 @@ class wpdev_booking {
1190
  $additional_bk_types = $attr['agregate'];
1191
  $my_boook_type .= ';'.$additional_bk_types;
1192
  }
 
 
 
 
1193
 
1194
  if ( isset( $attr['startmonth'] ) ) { // Set start month of calendar, fomrat: '2011-1'
1195
  $start_month_calendar = explode( '-', $attr['startmonth'] );
199
  }
200
  }
201
  //FixIn: 6.1.1.18 End
202
+
203
  return array($dates_array,$time_array);
204
  }
205
 
1190
  $additional_bk_types = $attr['agregate'];
1191
  $my_boook_type .= ';'.$additional_bk_types;
1192
  }
1193
+ if ( isset( $attr['aggregate'] ) && (! empty( $attr['aggregate'] )) ) { //FixIn: 8.3.3.8
1194
+ $additional_bk_types = $attr['aggregate'];
1195
+ $my_boook_type .= ';'.$additional_bk_types;
1196
+ }
1197
 
1198
  if ( isset( $attr['startmonth'] ) ) { // Set start month of calendar, fomrat: '2011-1'
1199
  $start_month_calendar = explode( '-', $attr['startmonth'] );
core/wpbc-activation.php CHANGED
@@ -899,6 +899,10 @@ function wpbc_get_default_options( $option_name = '', $is_get_multiuser_general_
899
  $mu_option4delete[]='booking_type_of_day_selections';
900
 
901
  $default_options['booking_timeslot_day_bg_as_available'] = ( ( class_exists( 'wpdev_bk_personal' ) ) ? 'Off' : 'On' ); //FixIn: 8.2.1.27
 
 
 
 
902
  $mu_option4delete[]='booking_timeslot_day_bg_as_available';
903
 
904
  $default_options['booking_form_is_using_bs_css'] = 'On';
899
  $mu_option4delete[]='booking_type_of_day_selections';
900
 
901
  $default_options['booking_timeslot_day_bg_as_available'] = ( ( class_exists( 'wpdev_bk_personal' ) ) ? 'Off' : 'On' ); //FixIn: 8.2.1.27
902
+ if ( ( $is_demo ) && ( class_exists( 'wpdev_bk_biz_s' ) ) && ( ! class_exists( 'wpdev_bk_biz_m' ) ) ) { //FixIn: 8.3.3.15
903
+ // Set background as available for timeslots only in Business Small demo
904
+ $default_options['booking_timeslot_day_bg_as_available'] = 'On';
905
+ }
906
  $mu_option4delete[]='booking_timeslot_day_bg_as_available';
907
 
908
  $default_options['booking_form_is_using_bs_css'] = 'On';
core/wpbc-constants.php CHANGED
@@ -26,8 +26,8 @@ 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.3.2' ); }
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
33
 
26
  ////////////////////////////////////////////////////////////
27
  // SYSTEM CONSTANTS //////////////
28
  ////////////////////////////////////////////////////////////
29
+ if ( ! defined( 'WP_BK_VERSION_NUM' ) ) { define( 'WP_BK_VERSION_NUM', '8.4' ); }
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
33
 
core/wpbc-include.php CHANGED
@@ -55,7 +55,7 @@ require_once( WPBC_PLUGIN_DIR . '/core/admin/page-new.php' );
55
  require_once( WPBC_PLUGIN_DIR . '/core/admin/page-settings.php' ); // Settings page
56
  require_once( WPBC_PLUGIN_DIR . '/core/admin/api-settings.php' ); // Settings API
57
 
58
- // require_once( WPBC_PLUGIN_DIR . '/core/admin/wpbc-gutenberg.php' ); // Settings page
59
 
60
  ////////////////////////////////////////////////////////////////////////////////
61
 
55
  require_once( WPBC_PLUGIN_DIR . '/core/admin/page-settings.php' ); // Settings page
56
  require_once( WPBC_PLUGIN_DIR . '/core/admin/api-settings.php' ); // Settings API
57
 
58
+ require_once( WPBC_PLUGIN_DIR . '/core/admin/wpbc-gutenberg.php' ); // Settings page
59
 
60
  ////////////////////////////////////////////////////////////////////////////////
61
 
core/wpbc-js.php CHANGED
@@ -295,14 +295,14 @@ function wpbc_get_calendar_localization_url() {
295
 
296
  $calendar_localization_url = wpbc_plugin_url( '/js/datepick/jquery.datepick-'. $locale_lang . '.js' );
297
 
298
- } else if ( ( ! in_array( $locale, array( 'en_US', 'en_CA', 'en_GB', 'en_AU' ) ) ) // English Exceptions
299
  && ( wpbc_is_file_exist( '/js/datepick/jquery.datepick-'. $locale_country . '.js' ) )
300
  ) {
301
 
302
  $calendar_localization_url = wpbc_plugin_url( '/js/datepick/jquery.datepick-'. $locale_country . '.js' );
303
  }
304
  }
305
-
306
  return $calendar_localization_url;
307
  }
308
 
295
 
296
  $calendar_localization_url = wpbc_plugin_url( '/js/datepick/jquery.datepick-'. $locale_lang . '.js' );
297
 
298
+ } else if ( ( ! in_array( $locale, array( 'en_US', 'en_CA', 'en_GB', 'en_AU' ) ) ) // English Exceptions
299
  && ( wpbc_is_file_exist( '/js/datepick/jquery.datepick-'. $locale_country . '.js' ) )
300
  ) {
301
 
302
  $calendar_localization_url = wpbc_plugin_url( '/js/datepick/jquery.datepick-'. $locale_country . '.js' );
303
  }
304
  }
305
+
306
  return $calendar_localization_url;
307
  }
308
 
css/wpbc-gutenberg.css ADDED
@@ -0,0 +1,176 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Main Wrapper */
2
+ .wpbc_gb_div_block {
3
+ font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
4
+ font-size: 1.2em;
5
+ padding-top: 15px; /* required for correct mouseover in top of button, otherwise appear some weird issue of not ability to click on top of button */
6
+ }
7
+
8
+ /** Width and Height of Blocks ***************************************************************************************/
9
+
10
+ /* Block Preview == TimeLine == */
11
+ .wpbc_gb_block_preview_bookingtimeline {
12
+ width: 100%;
13
+ }
14
+ .wpbc_gb_block_preview_bookingtimeline .wpbc_gb_block_shortcode_preview_content {
15
+ /* Minus height of footer */
16
+ height: 260px;
17
+ }
18
+
19
+ /* Block Preview == Booking Form, Availability Calendar == */
20
+ .wpbc_gb_block_preview_booking,
21
+ .wpbc_gb_block_preview_bookingcalendar {
22
+ width: 284px;
23
+ }
24
+ .wpbc_gb_block_preview_booking .wpbc_gb_block_shortcode_preview_content,
25
+ .wpbc_gb_block_preview_bookingcalendar .wpbc_gb_block_shortcode_preview_content {
26
+ /* Minus height of footer */
27
+ min-height: 260px;
28
+ }
29
+
30
+
31
+
32
+ /** Block Templates Structure *****************************************************************************************/
33
+ /*
34
+ DIV.wpbc_gb_block_shortcode_preview_wrapper.wpbc_gb_block_preview_bookingtimeline
35
+
36
+ DIV.wpbc_gb_block_shortcode_preview_content
37
+
38
+ DIV.wpbc_gb_block_preview_inner_header
39
+
40
+ H3.wpbc_gb_block_preview_inner_title_text
41
+ A.wpbc_gb_block_preview_inner_title_edit
42
+ DIV.wpbc_gb_block_preview_inner_title_desc
43
+
44
+ DIV.wpbc_gb_block_preview_inner_body
45
+
46
+ DIV.wpbc_gb_block_preview_inner_params_row
47
+ strong span em
48
+ ...
49
+
50
+ DIV.wpbc_gb_block_preview_inner_footer
51
+ DIV.wpbc_gb_block_preview_inner_shortcode
52
+
53
+
54
+ */
55
+
56
+ /* == Block Preview == */
57
+ .wpbc_gb_block_shortcode_preview_wrapper {
58
+ font-size: 12px;
59
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
60
+ }
61
+
62
+ /* == Block Preview - Content and Header == */
63
+ .wpbc_gb_block_shortcode_preview_content {
64
+ border: #e4951b solid 1px;
65
+ border-bottom: none;
66
+ padding: 0 10px 20px;
67
+ }
68
+
69
+ /* == Block Preview - Header == */
70
+ .wpbc_gb_block_preview_inner_header{
71
+ border-bottom: #e4951b solid 1px;
72
+ margin: 0.5em 0 1em;
73
+ font-weight: 600;
74
+ }
75
+
76
+ /* == Block Preview - Header Title == */
77
+ .wpbc_gb_block_preview_inner_title_text {
78
+ font-size: 1.3em;
79
+ vertical-align: middle;
80
+ line-height: 2.1em;
81
+ float: left;
82
+ margin: 0;
83
+ }
84
+
85
+ /* == Block Preview - Header link - Click to edit == */
86
+ .wpbc_gb_block_preview_inner_title_edit {
87
+ font-size: 0.85em;
88
+ vertical-align: middle;
89
+ cursor: pointer;
90
+ float: right;
91
+ padding: 1em 0 0;
92
+ }
93
+
94
+ /* == Block Preview - Header Description == */
95
+ .wpbc_gb_block_preview_inner_title_desc {
96
+ font-size: 0.9em;
97
+ font-style: italic;
98
+ text-align: left;
99
+ width: 100%;
100
+ margin: 10px 0 10px;
101
+ clear: both;
102
+ font-weight: 400;
103
+ color: #777;
104
+ line-height: 1.5em;
105
+ }
106
+
107
+ /* == Block Preview - Content == */
108
+ .wpbc_gb_block_preview_inner_body{
109
+
110
+ }
111
+
112
+ /* == Block Preview - Footer == */
113
+ .wpbc_gb_block_preview_inner_footer {
114
+ width: 100%;
115
+ background: #f0f0f0;
116
+ margin: 0;
117
+ padding: 10px;
118
+ color: #777;
119
+ border: #e4951b solid 1px;
120
+ border-top: none;
121
+ font-size: 0.9em;
122
+ font-weight: 600;
123
+ }
124
+
125
+
126
+ /** B U T T O N S and some other elements *************************************************************************/
127
+
128
+
129
+ /* Green Preview Button */
130
+ .editor-block-list__block.wpbc-gutenberg-update-view .wpbc-gutenberg-update-preview-btn.button {
131
+ background-color: rgb(135, 207, 59);
132
+ color: rgb(255, 255, 255);
133
+ border-color: rgb(135, 207, 59);
134
+ text-align: center;
135
+ font-family: Helvetica, Arial;
136
+ margin:15px 0 35px -30px;
137
+ width: 50%;
138
+ height: 3em;
139
+ vertical-align: middle;
140
+ line-height: 3em;
141
+ font-weight: 600;
142
+ }
143
+
144
+ /* Show Blue configuration shortcode button, if block selected or when no shortcode at all */
145
+ .editor-block-list__block .wpbc_gb_div_block.wpbc_gb_div_block_no_shortcode a.wpbc-gutenberg-open-btn,
146
+ .editor-block-list__block.is-selected .wpbc_gb_div_block a.wpbc-gutenberg-open-btn{
147
+ display: block;
148
+ }
149
+
150
+ /* PopUp Blue Button */
151
+ .wpbc_gb_div_block a.wpbc-gutenberg-open-btn,
152
+ .wpbc_gb_div_block a.wpbc-gutenberg-open-btn:hover,
153
+ .wpbc_gb_div_block a.wpbc-gutenberg-open-btn:focus {
154
+ display: none;
155
+ background-color: #3b9fcf;
156
+ color: #fff;
157
+ border-color: #3b9fcf;
158
+ text-align: center;
159
+ font-family: Helvetica, Arial;
160
+ margin-bottom: 20px;
161
+ }
162
+
163
+ /* Shortcode Input Text */
164
+ .wpbc_gb_div_block .wpbc_gb_text_shortcode {
165
+ opacity: 0.3;
166
+ display: none;
167
+ padding: 5px 10px;
168
+ clear: both;
169
+ margin: 20px 0 0;
170
+ height: 2.4em;
171
+ cursor: pointer;
172
+ font-weight: 600;
173
+ background: none repeat scroll 0 0 #E9E9E9;
174
+ border: 1px solid #BBBBBB;
175
+ width: 100%;
176
+ }
js/datepick/{jquery.datepick-zh-CN.js → jquery.datepick-cn.js} RENAMED
File without changes
js/datepick/{jquery.datepick-zh-TW.js → jquery.datepick-tw.js} RENAMED
File without changes
js/wpbc-gutenberg.js CHANGED
@@ -8,29 +8,1348 @@
8
  * @link https://wpbookingcalendar.com/
9
  * @email info@wpbookingcalendar.com
10
  *
11
- * @modified 2018-04-22
12
  */
13
 
 
14
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
 
16
 
17
- var el = wp.element.createElement,
18
- registerBlockType = wp.blocks.registerBlockType,
19
- blockStyle = { backgroundColor: '#900', color: '#fff', padding: '20px' };
20
 
21
- registerBlockType( 'gutenberg-wpbc/booking', {
22
- title: 'Booking Calendar',
 
 
 
 
23
 
24
- icon: 'calendar-alt',
25
 
26
- category: 'layout',
 
 
 
 
 
27
 
28
- edit: function() {
29
- return el( 'div', { style: blockStyle }, '"Booking Calendar"' );
30
- },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31
 
32
- save: function() {
33
- return el( 'div', { style: blockStyle }, '[booking]' );
34
- },
35
- } );
36
 
 
 
 
 
8
  * @link https://wpbookingcalendar.com/
9
  * @email info@wpbookingcalendar.com
10
  *
11
+ * @modified 2018-08-23Probably you updated your paid version of Booking Calendar
12
  */
13
 
14
+ //FixIn: 8.3.3.99
15
 
16
+ /*
17
+ window.wp.blocks,
18
+ window.wp.components,
19
+ window.wp.element
20
+
21
+ */
22
+ //( function( blocks, components, element ) {
23
+
24
+ ( function( wp ) {
25
+ /**
26
+ * Registers a new block provided a unique name and an object defining its behavior.
27
+ * @see https://github.com/WordPress/gutenberg/tree/master/blocks#api
28
+ */
29
+ var registerBlockType = wp.blocks.registerBlockType;
30
+
31
+ /**
32
+ * Returns a new element of given type. Element is an abstraction layer atop React.
33
+ * @see https://github.com/WordPress/gutenberg/tree/master/packages/element#element
34
+ */
35
+ var el = wp.element.createElement;
36
+
37
+ /**
38
+ * Retrieves the translation of text.
39
+ * @see https://github.com/WordPress/gutenberg/tree/master/i18n#api
40
+ */
41
+ var __ = wp.i18n.__;
42
+
43
+ var source = wp.blocks.source,
44
+ RichText = wp.editor.RichText,
45
+ BlockControls = wp.editor.BlockControls,
46
+ AlignmentToolbar = wp.editor.AlignmentToolbar;
47
+
48
+
49
+ registerBlockType( 'booking/booking', {
50
+
51
+ title: 'Booking Calendar',
52
+
53
+ description: __( 'Show a booking form, availability calendar or other elements from Booking Calendar plugin.' ),
54
+
55
+ icon: {
56
+ // Specifying a background color to appear with the icon e.g.: in the inserter.
57
+ background: 'rgb(129, 142, 160)',
58
+ // Specifying a color for the icon (optional: if not set, a readable color will be automatically defined)
59
+ foreground: '#fff',
60
+ // Specifying a dashicon for the block
61
+ src: 'calendar-alt'
62
+ },
63
+
64
+ category: 'common', // common | formatting | layout | widgets | embed
65
+
66
+ /*
67
+ // Use the block just once per post // its possible to use several Booking Calendar forms for different booking resources
68
+ multiple: false,
69
+ */
70
+
71
+ // // Add the support for block's alignment (left, center, right, wide, full).
72
+ // align: true,
73
+ //
74
+ // // Pick which alignment options to display.
75
+ // align: [ 'left', 'right', 'full' ],
76
+
77
+ keywords: [ 'wpbc' , 'oplugins', 'form' ],
78
+
79
+ // // Specifying my block attributes
80
+ attributes: {
81
+ /*content: {
82
+ type: 'string',
83
+ source: 'children',
84
+ selector: 'p',
85
+ },*/
86
+
87
+ wpbc_shortcode: {
88
+ type: 'string',
89
+ default: ''
90
+ }
91
+ },
92
+
93
+
94
+ edit: function( props ) {
95
+
96
+ console.log( 'WPBC-Gb :: Edit :', props );
97
+
98
+ jQuery( '.wpbc-gutenberg-update-view').remove();
99
+
100
+ var children = [],
101
+ cid = props.clientId; // its reference to unique 'data-block' attribute in section: <div class="editor-block-list__block-edit" data-block="8a1b713a-6981-43d3-a1f5-ce98b0e611d4"> ...
102
+
103
+ var btnClassName = 'button wpbc-gutenberg-open-btn';
104
+
105
+
106
+ ////////////////////////////////////////////////////////////////////////////////////////////////////
107
+ ////////////////////////////////////////////////////////////////////////////////////////////////////
108
+
109
+ // Old value from attribute
110
+ var _val = props.attributes.wpbc_shortcode;
111
+
112
+ // Possibly new value, set to the text field programmatically from popup
113
+ var _valNew = jQuery( 'div[data-block="' + cid + '"] .wpbc_gb_text_shortcode' ).val();
114
+
115
+ console.log( '%cWPBC-Gb :: E d i t >>> _valNew , _val , cid, obj', 'color: green; font-weight: bold;', _valNew , _val , cid , jQuery( 'div[data-block="' + cid + '"] .wpbc_gb_text_shortcode' ) );
116
+
117
+ // Default value here
118
+ if ( typeof _val == typeof undefined ) {
119
+ _val = '';
120
+ }
121
+ if ( ( typeof _valNew != typeof undefined ) && ( _val !== _valNew ) ) {
122
+ _val = _valNew;
123
+ props.setAttributes( { wpbc_shortcode: _val } );
124
+ }
125
+
126
+ ////////////////////////////////////////////////////////////////////////////////////////////////////
127
+ ////////////////////////////////////////////////////////////////////////////////////////////////////
128
+
129
+
130
+ children.push(
131
+ el( 'a',
132
+ {
133
+ className : btnClassName,
134
+ href : 'javascript:void(0)',
135
+ data_block_id: cid,
136
+ popup_tab_index: 0 // Will be index for active tab in popup dialog
137
+ },
138
+ __( 'Configure Booking Calendar Block' )
139
+ )
140
+ );
141
+
142
+ // Visual Preview of Block
143
+ children = wpbc_gt_parse_shortcode( props.attributes.wpbc_shortcode, children );
144
+
145
+ children.push(
146
+
147
+ el(
148
+ 'input',
149
+ {
150
+ value : _val, //props.attributes.wpbc_shortcode,
151
+ onChange : function ( event ) {
152
+
153
+ props.setAttributes( {wpbc_shortcode: event.target.value } );
154
+
155
+ console.log( '%cWPBC-Gb :: o n C h a n g e !!!! Y E S !!! event for onChangeWPBCinputShortcode', 'color: orange; font-weight: bold;', event );
156
+ },
157
+
158
+ className: 'wpbc_gb_text_shortcode',
159
+ type : 'text',
160
+ readOnly : 'readonly',
161
+ disabled : 'disabled',
162
+ onFocus : function ( event ){
163
+ event.target.select();
164
+ }
165
+ }
166
+ )
167
+
168
+ );
169
+
170
+
171
+ // Show Hided Block (after configuration) -- React update Block preview
172
+ jQuery( '.wpbc_gb_div_block' ).parent().removeClass( 'hidden' );
173
+
174
+
175
+ var wpbc_gb_div_block_css = 'wpbc_gb_div_block';
176
+ if ( '' == props.attributes.wpbc_shortcode ) {
177
+ // If no shortcode at all, then do not hide configure button
178
+ wpbc_gb_div_block_css += ' wpbc_gb_div_block_no_shortcode';
179
+ }
180
+
181
+ return el( 'div', { className: wpbc_gb_div_block_css }, children );
182
+ },
183
+
184
+
185
+ save: function( props ) {
186
+
187
+ console.log( 'WPBC-Gb :: Saving ', props );
188
+
189
+ return el( 'div', null, props.attributes.wpbc_shortcode );
190
+ }
191
+
192
+
193
+ } );
194
+
195
+
196
+ } )(
197
+ window.wp
198
+ );
199
+
200
+
201
+ ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
202
+ ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
203
+ ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
204
+
205
+
206
+ ( function( $ ) {
207
+
208
+ $( document ).on( 'click', '.wpbc_gb_block_preview_inner_title_edit', function( e ) {
209
+ //jQuery( '.wpbc-gutenberg-open-btn' ).hide();
210
+ $( this ).closest( '.wpbc_gb_div_block' ).find( '.wpbc-gutenberg-open-btn' ).click();
211
+
212
+ });
213
+
214
+ /**
215
+ * Open popup window for configuration Booking Calendar shortcode
216
+ */
217
+ $( document ).on( 'click', '.wpbc-gutenberg-open-btn', function( e ) {
218
+
219
+ e.preventDefault();
220
+
221
+ // Set ID of currently edited section in post (just in case if we will have several sections
222
+ var _id = $( this ).attr( 'data_block_id' );
223
+
224
+ // Get num. of popup active tab to set
225
+ var popup_tab_index = $( this ).attr( 'popup_tab_index' );
226
+
227
+ var wpbc_tag = '';
228
+
229
+ wpbc_tiny_btn_click( wpbc_tag );
230
+
231
+ jQuery( "#wpbc_text_gettenberg_section_id" ).val( _id );
232
+
233
+ // Select specific TAB in poup dialog
234
+ jQuery( "#wpbc_tiny_modal .wpdvlp-top-tabs a.nav-tab" ).eq( popup_tab_index ).click();
235
+
236
+
237
+ console.log( 'WPBC-Gb :: Popup window for configuration Booking Calendar shortcode. Section #', _id );
238
+
239
+ });
240
+
241
+
242
+ /**
243
+ * Remove Update view button after clicking on it.
244
+ */
245
+ $( document ).on( 'click', '.wpbc-gutenberg-update-preview-btn', function( e ) {
246
+
247
+ e.preventDefault();
248
+
249
+ jQuery( '.wpbc-gutenberg-update-view').remove();
250
+
251
+ console.log( 'WPBC-Gb :: Preview button clicked. Section #' );
252
+
253
+ });
254
+
255
+
256
+ } ) ( jQuery );
257
+
258
+
259
+ /**
260
+ * Send shortcode from popup dialog into the gutenberg sections.
261
+ *
262
+ * @param shortcode_text
263
+ * @returns {boolean}
264
+ */
265
+ function wpbc_send_text_to_gutenberg( shortcode_text ){
266
+
267
+ // Get ID of section, where to insert shortcode configuraiton
268
+ var block_section_id = jQuery( "#wpbc_text_gettenberg_section_id" ).val();
269
+
270
+ console.log( 'WPBC-Gb :: wpbc_send_text_to_gutenberg' , shortcode_text, block_section_id );
271
+
272
+ if ( '' == block_section_id ) {
273
+
274
+ return false; // if no such block then just return false, its means tha inserting in Classic block - TinyMCE
275
+ }
276
+
277
+
278
+ // Code to insert into Gutenberg section in our text field
279
+ jQuery( 'div[data-block="' + block_section_id + '"] .wpbc_gb_text_shortcode' ).val( shortcode_text );
280
+
281
+ //Its does not work for automatic generating "Edit" event :((( , so we make some workarround in Edit block event
282
+ jQuery( 'div[data-block="' + block_section_id + '"] .wpbc_gb_text_shortcode' ).focus().trigger( 'change' );
283
+
284
+ jQuery( 'div[data-block="' + block_section_id + '"]' ).parent().before(
285
+ '<div class="editor-block-list__block wpbc-gutenberg-update-view" style="cursor: pointer;">' +
286
+ '<a href="javascript:void" class="button wpbc-gutenberg-update-preview-btn" ' +
287
+ '>' + wp.i18n.__( 'Click to Preview Block' ) + '</a></div>'
288
+ );
289
+
290
+ // Hide entire Block -- until React does not update Block preview
291
+ jQuery( 'div[data-block="' + block_section_id + '"]' ).addClass( 'hidden' );
292
+
293
+ // Neet to return true, to prevent insertion into some other TinyMCE block, if exist, because we have inserted it into Gutenberg
294
+ return true;
295
+ }
296
+
297
+
298
+ ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
299
+ ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
300
+ ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
301
+
302
+
303
+
304
+ ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
305
+ ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
306
+ ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
307
+
308
+ /**
309
+ * Parse shortcode in text field and show Visual Preview of element
310
+ *
311
+ * @param shortcode_in_text - shortcode from text field
312
+ * @param children - array of el for gnerating preview
313
+ * @returns - array of el
314
+ */
315
+ function wpbc_gt_parse_shortcode( shortcode_in_text, children ){
316
+
317
+ var wpbc_shortcode_type
318
+ , shortcode_obj
319
+ , block_preview_el = ''
320
+ , el = wp.element.createElement;
321
+
322
+ var block_header_txt, block_text_txt;
323
+
324
+ var wpbc_shortcode_type_arr = [ 'booking'
325
+ , 'bookingcalendar'
326
+ , 'bookingtimeline'
327
+ , 'bookingselect'
328
+ , 'bookingform'
329
+ , 'bookingsearch'
330
+ , 'bookingsearchresults'
331
+ , 'bookingedit'
332
+ , 'bookingcustomerlisting'
333
+ , 'bookingresource'
334
+ ];
335
+ var wpbc_shortcode_type_arr_length = wpbc_shortcode_type_arr.length;
336
+
337
+ for ( var i = 0; i < wpbc_shortcode_type_arr_length ; i++ ){
338
+
339
+ wpbc_shortcode_type = wpbc_shortcode_type_arr[ i ];
340
+
341
+ shortcode_obj = wp.shortcode.next( wpbc_shortcode_type, shortcode_in_text, 0 ); // Parse shortcode
342
+
343
+ if ( undefined != shortcode_obj ){
344
+
345
+ block_preview_el = '';
346
+ console.log( 'wpbc_shortcode_type' , wpbc_shortcode_type);
347
+ // Get Preview
348
+ switch ( wpbc_shortcode_type ){
349
+
350
+ case 'booking':
351
+ block_preview_el = wpbc_gt_get_visual_block_for_booking( shortcode_obj.shortcode, {
352
+ 'shortcode_in_text': shortcode_in_text
353
+ } );
354
+ children[ (children.length - 1) ].props.popup_tab_index = 0; // Set index of Active tab in popup dialog
355
+ break;
356
+
357
+ case 'bookingcalendar':
358
+ block_preview_el = wpbc_gt_get_visual_block_for_bookingcalendar( shortcode_obj.shortcode, {
359
+ 'shortcode_in_text': shortcode_in_text
360
+ } );
361
+ children[ (children.length - 1) ].props.popup_tab_index = 2; // Set index of Active tab in popup dialog
362
+ break;
363
+
364
+ case 'bookingtimeline':
365
+ block_preview_el = wpbc_gt_get_visual_block_for_bookingtimeline( shortcode_obj.shortcode, {
366
+ 'shortcode_in_text': shortcode_in_text
367
+ } );
368
+ children[ (children.length - 1) ].props.popup_tab_index = 1; // Set index of Active tab in popup dialog
369
+ break;
370
+
371
+ case 'bookingselect':
372
+ block_preview_el = wpbc_gt_get_visual_block_for_bookingselect( shortcode_obj.shortcode, {
373
+ 'shortcode_in_text': shortcode_in_text
374
+ } );
375
+ children[ (children.length - 1) ].props.popup_tab_index = 3; // Set index of Active tab in popup dialog
376
+ break;
377
+
378
+ case 'bookingform':
379
+ block_preview_el = wpbc_gt_get_visual_block_for_bookingform( shortcode_obj.shortcode, {
380
+ 'shortcode_in_text': shortcode_in_text
381
+ } );
382
+ children[ (children.length - 1) ].props.popup_tab_index = 5; // Set index of Active tab in popup dialog
383
+ break;
384
+
385
+ case 'bookingsearch':
386
+ block_preview_el = wpbc_gt_get_visual_block_for_bookingsearch( shortcode_obj.shortcode, {
387
+ 'shortcode_in_text': shortcode_in_text
388
+ } );
389
+ children[ (children.length - 1) ].props.popup_tab_index = 4; // Set index of Active tab in popup dialog
390
+ break;
391
+
392
+ case 'bookingsearchresults':
393
+ block_preview_el = wpbc_gt_get_visual_block_for_bookingsearchresults( shortcode_obj.shortcode, {
394
+ 'shortcode_in_text': shortcode_in_text
395
+ } );
396
+ children[ (children.length - 1) ].props.popup_tab_index = 4; // Set index of Active tab in popup dialog
397
+ break;
398
+
399
+ case 'bookingedit':
400
+ block_preview_el = wpbc_gt_get_visual_block_for_bookingedit( shortcode_obj.shortcode, {
401
+ 'shortcode_in_text': shortcode_in_text
402
+ } );
403
+ children[ (children.length - 1) ].props.popup_tab_index = -1; // Set index of Active tab in popup dialog
404
+ break;
405
+
406
+ case 'bookingcustomerlisting':
407
+ block_preview_el = wpbc_gt_get_visual_block_for_bookingcustomerlisting( shortcode_obj.shortcode, {
408
+ 'shortcode_in_text': shortcode_in_text
409
+ } );
410
+ children[ (children.length - 1) ].props.popup_tab_index = -1; // Set index of Active tab in popup dialog
411
+ break;
412
+
413
+ case 'bookingresource':
414
+ block_preview_el = wpbc_gt_get_visual_block_for_bookingresource( shortcode_obj.shortcode, {
415
+ 'shortcode_in_text': shortcode_in_text
416
+ } );
417
+ children[ (children.length - 1) ].props.popup_tab_index = -1; // Set index of Active tab in popup dialog
418
+ break;
419
+
420
+ default:
421
+ block_preview_el = wpbc_gt_get_visual_block_for_default( shortcode_obj.shortcode
422
+ , {
423
+ 'shortcode_in_text': shortcode_in_text,
424
+ 'block_header' : block_header_txt,
425
+ 'block_text' : block_text_txt
426
+ }
427
+ );
428
+
429
+ }
430
+
431
+ if ( '' != block_preview_el ){
432
+ children.push( block_preview_el );
433
+ }
434
+ }
435
+
436
+ }
437
+
438
+ return children;
439
+ }
440
+
441
+
442
+ ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
443
+
444
+
445
+ /**
446
+ * Generate Visual Preview Block - just general Shortcode
447
+ *
448
+ * @param shortcode_obj - shortcode JavaScript obj.
449
+ * @returns
450
+ */
451
+ function wpbc_gt_get_visual_block_for_default( shortcode_obj, params ){
452
+
453
+ // Booking Form Parameters
454
+ var shortcode_defaults = {
455
+ type : 1,
456
+ nummonths : 1,
457
+ form_type : 'standard',
458
+ aggregate : null,
459
+ startmonth: null,
460
+ options : null
461
+ };
462
+
463
+ // // Calendar Parameters
464
+ // var shortcode_defaults = {
465
+ // type : 1,
466
+ // nummonths : 1,
467
+ // aggregate : null,
468
+ // startmonth: null,
469
+ // options : null
470
+ // };
471
+
472
+ var props = _.defaults( shortcode_obj.attrs.named, shortcode_defaults );
473
+
474
+ var el = wp.element.createElement;
475
+
476
+ var inner_header = el( 'div', {className: 'wpbc_gb_block_preview_inner_header'}
477
+ , wpbc_gb_tpl_header( { header: params[ 'block_header' ] } )
478
+ );
479
+ // JSON.stringify( props )
480
+ var inner_body = el( 'div', {className: 'wpbc_gb_block_preview_inner_body'}
481
+ , wpbc_gb_tpl_shortcode_parameters(
482
+ [
483
+ { block_text: params[ 'block_text' ] }
484
+ , { name: 'Booking form', value: 'super-booking-admin'}
485
+ , { name: 'Number of months to show', value: '2'}
486
+ ]
487
+ )
488
+ );
489
+ var inner_footer = el( 'div', {className: 'wpbc_gb_block_preview_inner_footer'}
490
+ , wpbc_gb_tpl_footer( { shortcode_in_text: params[ 'shortcode_in_text' ] } )
491
+ );
492
+
493
+
494
+ return el( 'div', { className: 'wpbc_gb_block_shortcode_preview_wrapper wpbc_gb_block_preview_default' }
495
+
496
+ , el( 'div', { className: 'wpbc_gb_block_shortcode_preview_content' }
497
+ , [ inner_header, inner_body ]
498
+ )
499
+ , inner_footer
500
+ );
501
+ }
502
+
503
+
504
+ /**
505
+ * Generate Visual Preview Block of Booking form
506
+ *
507
+ * @param shortcode_obj - shortcode JavaScript obj.
508
+ * @returns
509
+ */
510
+ function wpbc_gt_get_visual_block_for_booking( shortcode_obj, params ){
511
+
512
+ // Booking Form Parameters
513
+ var shortcode_defaults = {
514
+ type : 1,
515
+ nummonths : 1,
516
+ form_type : 'standard',
517
+ aggregate : null,
518
+ startmonth: null,
519
+ options : null
520
+ };
521
+
522
+
523
+ var props = _.defaults( shortcode_obj.attrs.named, shortcode_defaults );
524
+
525
+ var el = wp.element.createElement;
526
+
527
+
528
+ var inner_header = el( 'div', {className: 'wpbc_gb_block_preview_inner_header'}
529
+ , wpbc_gb_tpl_header( { header: wp.i18n.__( 'Booking Form' ) } )
530
+ );
531
+ var inner_body = el( 'div', {className: 'wpbc_gb_block_preview_inner_body'}
532
+ , wpbc_gb_tpl_shortcode_parameters( wpbc_parse_params_into_rows_arr_for_booking( props ) )
533
+ );
534
+ var inner_footer = el( 'div', {className: 'wpbc_gb_block_preview_inner_footer'}
535
+ , wpbc_gb_tpl_footer( { shortcode_in_text: params[ 'shortcode_in_text' ] } )
536
+ );
537
+
538
+
539
+ return el( 'div', { className: 'wpbc_gb_block_shortcode_preview_wrapper wpbc_gb_block_preview_booking' }
540
+
541
+ , el( 'div', { className: 'wpbc_gb_block_shortcode_preview_content' }
542
+ , [ inner_header, inner_body ]
543
+ )
544
+ , inner_footer
545
+ );
546
+ }
547
+
548
+
549
+ /**
550
+ * Parse parameters into array of rows objects for showing in conetnt of block
551
+ *
552
+ * @param props
553
+ */
554
+ function wpbc_parse_params_into_rows_arr_for_booking( props ){
555
+
556
+ // Parameters Description /////////////////////////////////
557
+ var rows_in_content = [];
558
+ if ( undefined != props[ 'type' ] ){
559
+ rows_in_content.push( {name: wp.i18n.__( 'Booking resource' ), value: 'ID = ' + props[ 'type' ]} );
560
+ }
561
+ if ( undefined != props[ 'nummonths' ] ){
562
+ rows_in_content.push( {name: wp.i18n.__( 'Visible months number' ), value: props[ 'nummonths' ]} );
563
+ }
564
+ if ( undefined != props[ 'startmonth' ] ) {
565
+ rows_in_content.push( { name: wp.i18n.__( 'Start month' ), value: props[ 'startmonth' ] } );
566
+ }
567
+ if ( ( undefined != props[ 'form_type' ] ) && ( 'standard' != props[ 'form_type' ] ) ){
568
+ rows_in_content.push( { name: wp.i18n.__( 'Custom booking form' ), value: props[ 'form_type' ] } );
569
+ }
570
+ if ( undefined != props[ 'aggregate' ] ) {
571
+ rows_in_content.push( { name: wp.i18n.__( 'Unavailable dates from other booking resources' ), value: 'ID = ' + props[ 'aggregate' ] } );
572
+ }
573
+ if ( undefined != props[ 'options' ] ) {
574
+ rows_in_content.push( { name: wp.i18n.__( 'Options' ), value: props[ 'options' ] } );
575
+ }
576
+
577
+ return rows_in_content;
578
+ }
579
+
580
+
581
+ /**
582
+ * Generate Visual Preview Block of Booking form
583
+ *
584
+ * @param shortcode_obj - shortcode JavaScript obj.
585
+ * @returns
586
+ */
587
+ function wpbc_gt_get_visual_block_for_bookingcalendar( shortcode_obj, params ){
588
+
589
+ // Booking Form Parameters
590
+ var shortcode_defaults = {
591
+ type : 1,
592
+ nummonths : 1,
593
+ aggregate : null,
594
+ startmonth: null,
595
+ options : null
596
+ };
597
+
598
+
599
+ var props = _.defaults( shortcode_obj.attrs.named, shortcode_defaults );
600
+
601
+ var el = wp.element.createElement;
602
+
603
+
604
+ var inner_header = el( 'div', {className: 'wpbc_gb_block_preview_inner_header'}
605
+ , wpbc_gb_tpl_header( { header: wp.i18n.__( 'Availability Calendar' ) } )
606
+ );
607
+ var inner_body = el( 'div', {className: 'wpbc_gb_block_preview_inner_body'}
608
+ , wpbc_gb_tpl_shortcode_parameters( wpbc_parse_params_into_rows_arr_for_bookingcalendar( props ) )
609
+ );
610
+ var inner_footer = el( 'div', {className: 'wpbc_gb_block_preview_inner_footer'}
611
+ , wpbc_gb_tpl_footer( { shortcode_in_text: params[ 'shortcode_in_text' ] } )
612
+ );
613
 
614
 
615
+ return el( 'div', { className: 'wpbc_gb_block_shortcode_preview_wrapper wpbc_gb_block_preview_bookingcalendar' }
 
 
616
 
617
+ , el( 'div', { className: 'wpbc_gb_block_shortcode_preview_content' }
618
+ , [ inner_header, inner_body ]
619
+ )
620
+ , inner_footer
621
+ );
622
+ }
623
 
 
624
 
625
+ /**
626
+ * Parse parameters into array of rows objects for showing in conetnt of block
627
+ *
628
+ * @param props
629
+ */
630
+ function wpbc_parse_params_into_rows_arr_for_bookingcalendar( props ){
631
 
632
+ // Parameters Description /////////////////////////////////
633
+ var rows_in_content = [];
634
+ if ( undefined != props[ 'type' ] ){
635
+ rows_in_content.push( {name: wp.i18n.__( 'Booking resource' ), value: 'ID = ' + props[ 'type' ]} );
636
+ }
637
+ if ( undefined != props[ 'nummonths' ] ){
638
+ rows_in_content.push( {name: wp.i18n.__( 'Visible months number' ), value: props[ 'nummonths' ]} );
639
+ }
640
+ if ( undefined != props[ 'startmonth' ] ) {
641
+ rows_in_content.push( { name: wp.i18n.__( 'Start month' ), value: props[ 'startmonth' ] } );
642
+ }
643
+ if ( undefined != props[ 'aggregate' ] ) {
644
+ rows_in_content.push( { name: wp.i18n.__( 'Unavailable dates from other booking resources' ), value: 'ID = ' + props[ 'aggregate' ] } );
645
+ }
646
+ if ( undefined != props[ 'options' ] ) {
647
+ rows_in_content.push( { name: wp.i18n.__( 'Options' ), value: props[ 'options' ] } );
648
+ }
649
+
650
+ return rows_in_content;
651
+ }
652
+
653
+
654
+ /**
655
+ * Generate Visual Preview Block of TimeLine
656
+ *
657
+ * @param shortcode_obj - shortcode JavaScript obj.
658
+ * @returns
659
+ */
660
+ function wpbc_gt_get_visual_block_for_bookingtimeline( shortcode_obj, params ){
661
+
662
+ // Booking Form Parameters
663
+ var shortcode_defaults = {
664
+ type : 'Default', // 1,
665
+ view_days_num : 30, // 30,
666
+
667
+ scroll_start_date : null, // '',
668
+ scroll_day : null, // 0,
669
+ scroll_month : null, // 0,
670
+ header_title : null, // '',
671
+ limit_hours : null, // '0,24'
672
+ };
673
+ var props = _.defaults( shortcode_obj.attrs.named, shortcode_defaults );
674
+
675
+ var el = wp.element.createElement;
676
+
677
+
678
+ var inner_header = el( 'div', {className: 'wpbc_gb_block_preview_inner_header'}
679
+ , wpbc_gb_tpl_header( { header: wp.i18n.__( 'Timeline' ) } )
680
+ );
681
+ var inner_body = el( 'div', {className: 'wpbc_gb_block_preview_inner_body'}
682
+ , wpbc_gb_tpl_shortcode_parameters( wpbc_parse_params_into_rows_arr_for_bookingtimeline( props ) )
683
+ );
684
+ var inner_footer = el( 'div', {className: 'wpbc_gb_block_preview_inner_footer'}
685
+ , wpbc_gb_tpl_footer( { shortcode_in_text: params[ 'shortcode_in_text' ] } )
686
+ );
687
+
688
+
689
+ return el( 'div', { className: 'wpbc_gb_block_shortcode_preview_wrapper wpbc_gb_block_preview_bookingtimeline' }
690
+
691
+ , el( 'div', { className: 'wpbc_gb_block_shortcode_preview_content' }
692
+ , [ inner_header, inner_body ]
693
+ )
694
+ , inner_footer
695
+ );
696
+ }
697
+
698
+
699
+ /**
700
+ * Parse parameters into array of rows objects for showing in conetnt of block
701
+ *
702
+ * @param props
703
+ */
704
+ function wpbc_parse_params_into_rows_arr_for_bookingtimeline( props ){
705
+
706
+ // Parameters Description /////////////////////////////////
707
+ var rows_in_content = [];
708
+ if ( undefined != props[ 'type' ] ){
709
+ rows_in_content.push( {name: wp.i18n.__( 'Booking resource(s)' ), value: 'ID = ' + props[ 'type' ]} );
710
+ }
711
+ if ( undefined != props[ 'view_days_num' ] ){
712
+
713
+ if ( '1' == props[ 'view_days_num' ] ) {
714
+ props[ 'view_days_num' ] = 'Day';
715
+ }
716
+ if ( '7' == props[ 'view_days_num' ] ) {
717
+ props[ 'view_days_num' ] = 'Week';
718
+ }
719
+ if ( '30' == props[ 'view_days_num' ] ) {
720
+ props[ 'view_days_num' ] = 'Month';
721
+ }
722
+ if ( '60' == props[ 'view_days_num' ] ) {
723
+ props[ 'view_days_num' ] = '2 Months';
724
+ }
725
+ if ( '90' == props[ 'view_days_num' ] ) {
726
+ props[ 'view_days_num' ] = '3 Months';
727
+ }
728
+ if ( '365' == props[ 'view_days_num' ] ){
729
+ props[ 'view_days_num' ] = 'Year';
730
+ }
731
+ rows_in_content.push( {name: wp.i18n.__( 'View mode' ), value: props[ 'view_days_num' ]} );
732
+ }
733
+ if ( undefined != props[ 'header_title' ] ) {
734
+ rows_in_content.push( { name: wp.i18n.__( 'Title' ), value: props[ 'header_title' ] } );
735
+ }
736
+ if ( undefined != props[ 'scroll_day' ] ) {
737
+ rows_in_content.push( { name: wp.i18n.__( 'Number of days to scroll' ), value: props[ 'scroll_day' ] } );
738
+ }
739
+ if ( undefined != props[ 'scroll_month' ] ) {
740
+ rows_in_content.push( { name: wp.i18n.__( 'Number of months to scroll' ), value: props[ 'scroll_month' ] } );
741
+ }
742
+ if ( undefined != props[ 'scroll_start_date' ] ) {
743
+ rows_in_content.push( { name: wp.i18n.__( 'Start Date' ), value: props[ 'scroll_start_date' ] } );
744
+ }
745
+ if ( undefined != props[ 'limit_hours' ] ) {
746
+ rows_in_content.push( { name: wp.i18n.__( 'Show from/to' ), value: props[ 'limit_hours' ] } );
747
+ }
748
+
749
+ return rows_in_content;
750
+ }
751
+
752
+
753
+ /**
754
+ * Generate Visual Preview Block of Booking form
755
+ *
756
+ * @param shortcode_obj - shortcode JavaScript obj.
757
+ * @returns
758
+ */
759
+ function wpbc_gt_get_visual_block_for_bookingselect( shortcode_obj, params ){
760
+
761
+ // Booking Form Parameters
762
+ var shortcode_defaults = {
763
+ type : wp.i18n.__( 'All booking resources' ),
764
+ nummonths : 1,
765
+ form_type : null, // : 'standard',
766
+ selected_type : null, // : '',
767
+ label : null, // : '',
768
+ first_option_title: wp.i18n.__( 'Please Select' ),
769
+ startmonth : null,
770
+ options : null
771
+ };
772
+
773
+
774
+ var props = _.defaults( shortcode_obj.attrs.named, shortcode_defaults );
775
+
776
+ var el = wp.element.createElement;
777
+
778
+
779
+ var inner_header = el( 'div', {className: 'wpbc_gb_block_preview_inner_header'}
780
+ , wpbc_gb_tpl_header( { header: wp.i18n.__( 'Selection of Resources' ) } )
781
+ );
782
+ var inner_body = el( 'div', {className: 'wpbc_gb_block_preview_inner_body'}
783
+ , wpbc_gb_tpl_shortcode_parameters( wpbc_parse_params_into_rows_arr_for_bookingselect( props ) )
784
+ );
785
+ var inner_footer = el( 'div', {className: 'wpbc_gb_block_preview_inner_footer'}
786
+ , wpbc_gb_tpl_footer( { shortcode_in_text: params[ 'shortcode_in_text' ] } )
787
+ );
788
+
789
+
790
+ return el( 'div', { className: 'wpbc_gb_block_shortcode_preview_wrapper wpbc_gb_block_preview_bookingselect' }
791
+
792
+ , el( 'div', { className: 'wpbc_gb_block_shortcode_preview_content' }
793
+ , [ inner_header, inner_body ]
794
+ )
795
+ , inner_footer
796
+ );
797
+ }
798
+
799
+
800
+ /**
801
+ * Parse parameters into array of rows objects for showing in conetnt of block
802
+ *
803
+ * @param props
804
+ */
805
+ function wpbc_parse_params_into_rows_arr_for_bookingselect( props ){
806
+
807
+ // Parameters Description /////////////////////////////////
808
+ var rows_in_content = [];
809
+ if ( undefined != props[ 'type' ] ){
810
+ rows_in_content.push( {name: wp.i18n.__( 'Booking resource(s)' ), value: props[ 'type' ]} );
811
+ }
812
+ if ( undefined != props[ 'label' ] ) {
813
+ rows_in_content.push( { name: wp.i18n.__( 'Label' ), value: props[ 'label' ] } );
814
+ }
815
+ if ( undefined != props[ 'selected_type' ] ) {
816
+ rows_in_content.push( { name: wp.i18n.__( 'Selected booking resource (by default)' ), value: 'ID = ' + props[ 'selected_type' ] } );
817
+ }
818
+ if ( undefined != props[ 'first_option_title' ] ) {
819
+ rows_in_content.push( { name: wp.i18n.__( 'Title of first option in list' ), value: props[ 'first_option_title' ] } );
820
+ }
821
+ if ( undefined != props[ 'nummonths' ] ){
822
+ rows_in_content.push( {name: wp.i18n.__( 'Visible months number' ), value: props[ 'nummonths' ]} );
823
+ }
824
+ if ( undefined != props[ 'startmonth' ] ) {
825
+ rows_in_content.push( { name: wp.i18n.__( 'Start month' ), value: props[ 'startmonth' ] } );
826
+ }
827
+ if ( ( undefined != props[ 'form_type' ] ) && ( 'standard' != props[ 'form_type' ] ) ){
828
+ rows_in_content.push( { name: wp.i18n.__( 'Custom booking form for all booking resources' ), value: props[ 'form_type' ] } );
829
+ }
830
+ if ( undefined != props[ 'aggregate' ] ) {
831
+ rows_in_content.push( { name: wp.i18n.__( 'Unavailable dates from other booking resources' ), value: 'ID = ' + props[ 'aggregate' ] } );
832
+ }
833
+ if ( undefined != props[ 'options' ] ) {
834
+ rows_in_content.push( { name: wp.i18n.__( 'Options' ), value: props[ 'options' ] } );
835
+ }
836
+
837
+ return rows_in_content;
838
+ }
839
+
840
+
841
+ /**
842
+ * Generate Visual Preview Block of Booking form
843
+ *
844
+ * @param shortcode_obj - shortcode JavaScript obj.
845
+ * @returns
846
+ */
847
+ function wpbc_gt_get_visual_block_for_bookingform( shortcode_obj, params ){
848
+
849
+ // Booking Form Parameters
850
+ var shortcode_defaults = {
851
+ type : 1,
852
+ selected_dates : null,
853
+ form_type : 'standard'
854
+ };
855
+
856
+
857
+ var props = _.defaults( shortcode_obj.attrs.named, shortcode_defaults );
858
+
859
+ var el = wp.element.createElement;
860
+
861
+
862
+ var inner_header = el( 'div', {className: 'wpbc_gb_block_preview_inner_header'}
863
+ , wpbc_gb_tpl_header( { header: wp.i18n.__( 'Booking Form (without calendar)' ) } )
864
+ );
865
+ var inner_body = el( 'div', {className: 'wpbc_gb_block_preview_inner_body'}
866
+ , wpbc_gb_tpl_shortcode_parameters( wpbc_parse_params_into_rows_arr_for_bookingform( props ) )
867
+ );
868
+ var inner_footer = el( 'div', {className: 'wpbc_gb_block_preview_inner_footer'}
869
+ , wpbc_gb_tpl_footer( { shortcode_in_text: params[ 'shortcode_in_text' ] } )
870
+ );
871
+
872
+
873
+ return el( 'div', { className: 'wpbc_gb_block_shortcode_preview_wrapper wpbc_gb_block_preview_bookingform' }
874
+
875
+ , el( 'div', { className: 'wpbc_gb_block_shortcode_preview_content' }
876
+ , [ inner_header, inner_body ]
877
+ )
878
+ , inner_footer
879
+ );
880
+ }
881
+
882
+
883
+ /**
884
+ * Parse parameters into array of rows objects for showing in conetnt of block
885
+ *
886
+ * @param props
887
+ */
888
+ function wpbc_parse_params_into_rows_arr_for_bookingform( props ){
889
+
890
+ // Parameters Description /////////////////////////////////
891
+ var rows_in_content = [];
892
+ if ( undefined != props[ 'type' ] ){
893
+ rows_in_content.push( {name: wp.i18n.__( 'Booking resource' ), value: 'ID = ' + props[ 'type' ]} );
894
+ }
895
+ if ( undefined != props[ 'selected_dates' ] ){
896
+ rows_in_content.push( {name: wp.i18n.__( 'Date for submit booking' ), value: props[ 'selected_dates' ]} );
897
+ }
898
+ if ( ( undefined != props[ 'form_type' ] ) && ( 'standard' != props[ 'form_type' ] ) ){
899
+ rows_in_content.push( { name: wp.i18n.__( 'Custom booking form' ), value: props[ 'form_type' ] } );
900
+ }
901
+
902
+ return rows_in_content;
903
+ }
904
+
905
+
906
+ /**
907
+ * Generate Visual Preview Block of Search Availability Form
908
+ *
909
+ * @param shortcode_obj - shortcode JavaScript obj.
910
+ * @returns
911
+ */
912
+ function wpbc_gt_get_visual_block_for_bookingsearch( shortcode_obj, params ){
913
+
914
+ // Booking Form Parameters
915
+ var shortcode_defaults = {
916
+ searchresultstitle : '', // searchresultstitle='{searchresults} Result(s) Found'
917
+ noresultstitle : '', // noresultstitle='Nothing Found'
918
+ users : null, // users='3,55'
919
+ searchresults : null // searchresults='http://test.com/search-results'
920
+ };
921
+
922
+ var props = _.defaults( shortcode_obj.attrs.named, shortcode_defaults );
923
+
924
+ var el = wp.element.createElement;
925
+
926
+
927
+ var inner_header = el( 'div', {className: 'wpbc_gb_block_preview_inner_header'}
928
+ , wpbc_gb_tpl_header( { header: wp.i18n.__( 'Search Availability form' ) } )
929
+ );
930
+ var inner_body = el( 'div', {className: 'wpbc_gb_block_preview_inner_body'}
931
+ , wpbc_gb_tpl_shortcode_parameters( wpbc_parse_params_into_rows_arr_for_bookingsearch( props ) )
932
+ );
933
+ var inner_footer = el( 'div', {className: 'wpbc_gb_block_preview_inner_footer'}
934
+ , wpbc_gb_tpl_footer( { shortcode_in_text: params[ 'shortcode_in_text' ] } )
935
+ );
936
+
937
+
938
+ return el( 'div', { className: 'wpbc_gb_block_shortcode_preview_wrapper wpbc_gb_block_preview_bookingsearch' }
939
+
940
+ , el( 'div', { className: 'wpbc_gb_block_shortcode_preview_content' }
941
+ , [ inner_header, inner_body ]
942
+ )
943
+ , inner_footer
944
+ );
945
+ }
946
+
947
+
948
+ /**
949
+ * Parse parameters into array of rows objects for showing in conetnt of block
950
+ *
951
+ * @param props
952
+ */
953
+ function wpbc_parse_params_into_rows_arr_for_bookingsearch( props ){
954
+
955
+ // Parameters Description /////////////////////////////////
956
+ var rows_in_content = [];
957
+ if ( undefined != props[ 'searchresults' ] ){
958
+ rows_in_content.push( { name: wp.i18n.__( 'Show search results on other page' )
959
+ , value: wp.element.createElement( 'a', { href: props[ 'searchresults' ] }, props[ 'searchresults' ] )
960
+ } );
961
+ rows_in_content.push( {name: wp.i18n.__( 'Note' ), value: wp.i18n.__( 'Search results page must have this shortcode' ) + ' [bookingsearchresults]' } );
962
+ rows_in_content.push( { block_text: '---' } );
963
+ } else {
964
+ rows_in_content.push( { block_text: wp.i18n.__( 'Show search results in the same page' ) } );
965
+ }
966
+ if ( undefined != props[ 'searchresultstitle' ] ){
967
+ rows_in_content.push( {name: wp.i18n.__( 'Search Results Title' ), value: props[ 'searchresultstitle' ]} );
968
+ }
969
+ if ( undefined != props[ 'noresultstitle' ] ){
970
+ rows_in_content.push( {name: wp.i18n.__( 'Title, if no search results' ), value: props[ 'noresultstitle' ]} );
971
+ }
972
+ if ( undefined != props[ 'users' ] ){
973
+ rows_in_content.push( {name: wp.i18n.__( 'Search in booking resources of WP users' ), value: 'ID = ' + props[ 'users' ]} );
974
+ }
975
+
976
+ return rows_in_content;
977
+ }
978
+
979
+
980
+ /**
981
+ * Generate Visual Preview Block of Search Results
982
+ *
983
+ * @param shortcode_obj - shortcode JavaScript obj.
984
+ * @returns
985
+ */
986
+ function wpbc_gt_get_visual_block_for_bookingsearchresults( shortcode_obj, params ){
987
+
988
+ // Booking Form Parameters
989
+ var shortcode_defaults = {
990
+ };
991
+
992
+ var props = _.defaults( shortcode_obj.attrs.named, shortcode_defaults );
993
+
994
+ var el = wp.element.createElement;
995
+
996
+
997
+ var inner_header = el( 'div', {className: 'wpbc_gb_block_preview_inner_header'}
998
+ , wpbc_gb_tpl_header( { header: wp.i18n.__( 'Search Results' ) } )
999
+ );
1000
+ var inner_body = el( 'div', {className: 'wpbc_gb_block_preview_inner_body'}
1001
+ , wpbc_gb_tpl_shortcode_parameters( wpbc_parse_params_into_rows_arr_for_bookingsearchresults( props ) )
1002
+ );
1003
+ var inner_footer = el( 'div', {className: 'wpbc_gb_block_preview_inner_footer'}
1004
+ , wpbc_gb_tpl_footer( { shortcode_in_text: params[ 'shortcode_in_text' ] } )
1005
+ );
1006
+
1007
+
1008
+ return el( 'div', { className: 'wpbc_gb_block_shortcode_preview_wrapper wpbc_gb_block_preview_bookingsearch' }
1009
+
1010
+ , el( 'div', { className: 'wpbc_gb_block_shortcode_preview_content' }
1011
+ , [ inner_header, inner_body ]
1012
+ )
1013
+ , inner_footer
1014
+ );
1015
+ }
1016
+
1017
+
1018
+ /**
1019
+ * Parse parameters into array of rows objects for showing in conetnt of block
1020
+ *
1021
+ * @param props
1022
+ */
1023
+ function wpbc_parse_params_into_rows_arr_for_bookingsearchresults( props ){
1024
+
1025
+ // Parameters Description /////////////////////////////////
1026
+ var rows_in_content = [];
1027
+ rows_in_content.push( { block_text: wp.i18n.__( 'Show search results on this page, after redirection from search form at other page.' ) } );
1028
+
1029
+ return rows_in_content;
1030
+ }
1031
+
1032
+
1033
+ /**
1034
+ * Generate Visual Preview Block of Booking Edit - system shortcode
1035
+ *
1036
+ * @param shortcode_obj - shortcode JavaScript obj.
1037
+ * @returns
1038
+ */
1039
+ function wpbc_gt_get_visual_block_for_bookingedit( shortcode_obj, params ){
1040
+
1041
+ // Booking Form Parameters
1042
+ var shortcode_defaults = {
1043
+ };
1044
+
1045
+ var props = _.defaults( shortcode_obj.attrs.named, shortcode_defaults );
1046
+
1047
+ var el = wp.element.createElement;
1048
+
1049
+
1050
+ var inner_header = el( 'div', {className: 'wpbc_gb_block_preview_inner_header'}
1051
+ , wpbc_gb_tpl_header( { header: wp.i18n.__( 'System Block' ) + ' (' + wp.i18n.__( 'Booking Calendar Editing' ) + ')' } )
1052
+ );
1053
+ var inner_body = el( 'div', {className: 'wpbc_gb_block_preview_inner_body'}
1054
+ , wpbc_gb_tpl_shortcode_parameters( wpbc_parse_params_into_rows_arr_for_bookingedit( props ) )
1055
+ );
1056
+ var inner_footer = el( 'div', {className: 'wpbc_gb_block_preview_inner_footer'}
1057
+ , wpbc_gb_tpl_footer( { shortcode_in_text: params[ 'shortcode_in_text' ] } )
1058
+ );
1059
+
1060
+
1061
+ return el( 'div', { className: 'wpbc_gb_block_shortcode_preview_wrapper wpbc_gb_block_preview_bookingsearch' }
1062
+
1063
+ , el( 'div', { className: 'wpbc_gb_block_shortcode_preview_content' }
1064
+ , [ inner_header, inner_body ]
1065
+ )
1066
+ , inner_footer
1067
+ );
1068
+ }
1069
+
1070
+
1071
+ /**
1072
+ * Parse parameters into array of rows objects for showing in conetnt of block
1073
+ *
1074
+ * @param props
1075
+ */
1076
+ function wpbc_parse_params_into_rows_arr_for_bookingedit( props ){
1077
+
1078
+ var el = wp.element.createElement;
1079
+
1080
+ // Parameters Description /////////////////////////////////
1081
+ var rows_in_content = [];
1082
+ rows_in_content.push( { block_text: wp.i18n.__( 'This block required for ability to edit, cancel the booking by visitor, who made the booking, or for ability to show payment form, after sending payment request.' ) } );
1083
+
1084
+ rows_in_content.push( { block_text:
1085
+
1086
+ el( 'div', null
1087
+ , el( 'span', null, wp.i18n.__( 'Link to this page must be defined' ) )
1088
+ , ' '
1089
+ , el( 'a', { href: 'admin.php?page=wpbc-settings#wpbc_general_settings_advanced_metabox' }, 'on this page' )
1090
+ , ', '
1091
+ , el( 'span', null, wp.i18n.__( 'at this option' ) )
1092
+ , ': "'
1093
+ , el( 'strong', null, wp.i18n.__( 'URL to edit bookings' ) )
1094
+ , '".'
1095
+ )
1096
+ } );
1097
+ rows_in_content.push( { block_text:
1098
+ el( 'div', { style: { marginTop: '20px' } }
1099
+ , el( 'strong', null, wp.i18n.__( 'Important!' ) )
1100
+ , ' '
1101
+ , el( 'span', null, wp.i18n.__( 'You can not open this page directly. Please, use links in ' ) )
1102
+ , ' '
1103
+ , el( 'a', { href: 'admin.php?page=wpbc-settings&tab=email' }, 'email' )
1104
+ , '.'
1105
+ )
1106
+ } );
1107
+ rows_in_content.push( { block_text:
1108
+ el( 'div', null
1109
+ , el( 'span', null, wp.i18n.__( 'If you open this page directly, then you will see this error' ) )
1110
+ , ': "'
1111
+ , el( 'strong', null, wp.i18n.__( 'You do not set any parameters for booking editing' ) )
1112
+ , '".'
1113
+ )
1114
+ } );
1115
+ return rows_in_content;
1116
+ }
1117
+
1118
+
1119
+ /**
1120
+ * Generate Visual Preview Block of Customer Bookings Listing - system shortcode
1121
+ *
1122
+ * @param shortcode_obj - shortcode JavaScript obj.
1123
+ * @returns
1124
+ */
1125
+ function wpbc_gt_get_visual_block_for_bookingcustomerlisting( shortcode_obj, params ){
1126
+
1127
+ // Booking Form Parameters
1128
+ var shortcode_defaults = {
1129
+ };
1130
+
1131
+ var props = _.defaults( shortcode_obj.attrs.named, shortcode_defaults );
1132
+
1133
+ var el = wp.element.createElement;
1134
+
1135
+
1136
+ var inner_header = el( 'div', {className: 'wpbc_gb_block_preview_inner_header'}
1137
+ , wpbc_gb_tpl_header( { header: wp.i18n.__( 'Customer Bookings Listing' ) } )
1138
+ );
1139
+ var inner_body = el( 'div', {className: 'wpbc_gb_block_preview_inner_body'}
1140
+ , wpbc_gb_tpl_shortcode_parameters( wpbc_parse_params_into_rows_arr_for_bookingcustomerlisting( props ) )
1141
+ );
1142
+ var inner_footer = el( 'div', {className: 'wpbc_gb_block_preview_inner_footer'}
1143
+ , wpbc_gb_tpl_footer( { shortcode_in_text: params[ 'shortcode_in_text' ] } )
1144
+ );
1145
+
1146
+
1147
+ return el( 'div', { className: 'wpbc_gb_block_shortcode_preview_wrapper wpbc_gb_block_preview_bookingsearch' }
1148
+
1149
+ , el( 'div', { className: 'wpbc_gb_block_shortcode_preview_content' }
1150
+ , [ inner_header, inner_body ]
1151
+ )
1152
+ , inner_footer
1153
+ );
1154
+ }
1155
+
1156
+
1157
+ /**
1158
+ * Parse parameters into array of rows objects for showing in conetnt of block
1159
+ *
1160
+ * @param props
1161
+ */
1162
+ function wpbc_parse_params_into_rows_arr_for_bookingcustomerlisting( props ){
1163
+
1164
+ var el = wp.element.createElement;
1165
+
1166
+ // Parameters Description /////////////////////////////////
1167
+ var rows_in_content = [];
1168
+ rows_in_content.push( { block_text: wp.i18n.__( 'Visitors of your website, can view previous (own) bookings, by clicking on secret link in email, which is sending after booking created.' ) } );
1169
+
1170
+ rows_in_content.push( { block_text:
1171
+
1172
+ el( 'div', null
1173
+ , el( 'span', null, wp.i18n.__( 'Link to this page must be defined' ) )
1174
+ , ' '
1175
+ , el( 'a', { href: 'admin.php?page=wpbc-settings#wpbc_general_settings_advanced_metabox' }, 'on this page' )
1176
+ , ', '
1177
+ , el( 'span', null, wp.i18n.__( 'at this option' ) )
1178
+ , ': "'
1179
+ , el( 'strong', null, wp.i18n.__( 'URL of page for customer bookings listing' ) )
1180
+ , '".'
1181
+ )
1182
+ } );
1183
+ rows_in_content.push( { block_text:
1184
+ el( 'div', { style: { marginTop: '20px' } }
1185
+ , el( 'strong', null, wp.i18n.__( 'Important!' ) )
1186
+ , ' '
1187
+ , el( 'span', null, wp.i18n.__( 'You can not open this page directly. Please, use links in ' ) )
1188
+ , ' '
1189
+ , el( 'a', { href: 'admin.php?page=wpbc-settings&tab=email' }, 'email' )
1190
+ , '.'
1191
+ )
1192
+ } );
1193
+ rows_in_content.push( { block_text:
1194
+ el( 'div', null
1195
+ , el( 'span', null, wp.i18n.__( 'If you open this page directly, then you will see this error' ) )
1196
+ , ': "'
1197
+ , el( 'strong', null, wp.i18n.__( 'You do not set any parameters for booking editing' ) )
1198
+ , '".'
1199
+ )
1200
+ } );
1201
+ return rows_in_content;
1202
+ }
1203
+
1204
+
1205
+
1206
+
1207
+ /**
1208
+ * Generate Visual Preview Block of Showing booking resource Info
1209
+ *
1210
+ * @param shortcode_obj - shortcode JavaScript obj.
1211
+ * @returns
1212
+ */
1213
+ function wpbc_gt_get_visual_block_for_bookingresource( shortcode_obj, params ){
1214
+
1215
+ // Booking Form Parameters
1216
+ var shortcode_defaults = {
1217
+ type : 1,
1218
+ show : 'title'
1219
+ };
1220
+
1221
+
1222
+ var props = _.defaults( shortcode_obj.attrs.named, shortcode_defaults );
1223
+
1224
+ var el = wp.element.createElement;
1225
+
1226
+
1227
+ var inner_header = el( 'div', {className: 'wpbc_gb_block_preview_inner_header'}
1228
+ , wpbc_gb_tpl_header( { header: wp.i18n.__( 'Show Info of Booking Resource' ) } )
1229
+ );
1230
+ var inner_body = el( 'div', {className: 'wpbc_gb_block_preview_inner_body'}
1231
+ , wpbc_gb_tpl_shortcode_parameters( wpbc_parse_params_into_rows_arr_for_bookingresource( props ) )
1232
+ );
1233
+ var inner_footer = el( 'div', {className: 'wpbc_gb_block_preview_inner_footer'}
1234
+ , wpbc_gb_tpl_footer( { shortcode_in_text: params[ 'shortcode_in_text' ] } )
1235
+ );
1236
+
1237
+
1238
+ return el( 'div', { className: 'wpbc_gb_block_shortcode_preview_wrapper wpbc_gb_block_preview_bookingselect' }
1239
+
1240
+ , el( 'div', { className: 'wpbc_gb_block_shortcode_preview_content' }
1241
+ , [ inner_header, inner_body ]
1242
+ )
1243
+ , inner_footer
1244
+ );
1245
+ }
1246
+
1247
+
1248
+ /**
1249
+ * Parse parameters into array of rows objects for showing in content of block
1250
+ *
1251
+ * @param props
1252
+ */
1253
+ function wpbc_parse_params_into_rows_arr_for_bookingresource( props ){
1254
+
1255
+ // Parameters Description /////////////////////////////////
1256
+ var rows_in_content = [];
1257
+ if ( undefined != props[ 'type' ] ){
1258
+ rows_in_content.push( { name: wp.i18n.__( 'Booking resource' ), value: ' ID = ' + props[ 'type' ] } );
1259
+ }
1260
+ if ( undefined != props[ 'show' ] ) {
1261
+ rows_in_content.push( { name: wp.i18n.__( 'Show' ), value: props[ 'show' ] } );
1262
+ /*
1263
+ if ( 'title' == props[ 'show' ] ) {
1264
+ rows_in_content.push( { name: wp.i18n.__( 'Show' ), value: props[ 'show' ] } );
1265
+ }
1266
+ if ( 'cost' == props[ 'show' ] ) {
1267
+ rows_in_content.push( { name: wp.i18n.__( 'Show' ), value: props[ 'show' ] } );
1268
+ }
1269
+ if ( 'capacity' == props[ 'show' ] ) {
1270
+ rows_in_content.push( { name: wp.i18n.__( 'Show' ), value: props[ 'show' ] } );
1271
+ }
1272
+ */
1273
+ }
1274
+ return rows_in_content;
1275
+ }
1276
+
1277
+
1278
+
1279
+ // Templates ///////////////////////////////////////////////////////////////////////////////////////////////////////////
1280
+
1281
+ /**
1282
+ * Header template for Block Preview
1283
+ *
1284
+ * @param props - object of parameters
1285
+ * @returns array of createElements - react elements
1286
+ */
1287
+ function wpbc_gb_tpl_header( props ){
1288
+
1289
+ var el = wp.element.createElement;
1290
+
1291
+ return [
1292
+ el( 'h3', {className: 'wpbc_gb_block_preview_inner_title_text'}, props.header ),
1293
+
1294
+ el( 'a', {className: 'wpbc_gb_block_preview_inner_title_edit'}, wp.i18n.__( 'Click to edit' ) ),
1295
+
1296
+ el( 'div', {className: 'wpbc_gb_block_preview_inner_title_desc'}, wp.i18n.__( 'This is not real preview. Its configuration block of "Booking Calendar".' ) )
1297
+ ];
1298
+ }
1299
+
1300
+
1301
+ /**
1302
+ * Parameters template for shortcode params in Body of Block Preview
1303
+ *
1304
+ * @param props - array of objects of parameters [ {name: 'title', value: 'data'}, ... ]
1305
+ * @returns array of createElements - react elements
1306
+ */
1307
+ function wpbc_gb_tpl_shortcode_parameters( props ){
1308
+
1309
+ var el = wp.element.createElement;
1310
+
1311
+ var shortcode_parameters_arr = [];
1312
+
1313
+ var propsLength = props.length;
1314
+ for ( var i = 0; i < propsLength; i++ ){
1315
+
1316
+ if ( undefined != props[i]['block_text'] ) {
1317
+
1318
+ shortcode_parameters_arr.push(
1319
+ el( 'div', {className: 'wpbc_gb_block_preview_inner_params_row'}
1320
+ , el( 'span', null, props[ i ]['block_text'] )
1321
+ )
1322
+ );
1323
+
1324
+ }
1325
+
1326
+ if ( ( undefined != props[i]['name'] ) && ( undefined != props[i]['value'] ) ) {
1327
+
1328
+ shortcode_parameters_arr.push(
1329
+ el( 'div', {className: 'wpbc_gb_block_preview_inner_params_row'}
1330
+ , el( 'strong', null, props[ i ].name )
1331
+ , el( 'span', null, ': ' )
1332
+ , el( 'em', null, props[ i ].value )
1333
+ )
1334
+ );
1335
+ }
1336
+ }
1337
+
1338
+ return shortcode_parameters_arr;
1339
+ }
1340
+
1341
+
1342
+ /**
1343
+ * Header template for Block Preview
1344
+ *
1345
+ * @param props - object of parameters
1346
+ * @returns array of createElements - react elements
1347
+ */
1348
+ function wpbc_gb_tpl_footer( props ){
1349
 
1350
+ var el = wp.element.createElement;
 
 
 
1351
 
1352
+ return [
1353
+ el( 'div', {className: 'wpbc_gb_block_preview_inner_shortcode'}, props.shortcode_in_text )
1354
+ ];
1355
+ }
js/wpbc_times.js CHANGED
@@ -208,7 +208,7 @@ function wpbc_prepare_tooltip_content( value, date_obj, resource_id ){
208
  if ( is_booking_used_check_in_out_time === true ) // Disable showing time tooltip, if we are using check in/out times
209
  tooltip_time = '';
210
  else
211
- tooltip_time = '<span class="wpbc_booked_times_word">' + bk_highlight_timeslot_word + '</span><br />' + tooltip_time;
212
  }
213
  }
214
  if ( typeof(getDayPrice4Show) == 'function' ){
@@ -578,7 +578,7 @@ function wpbc_is_time_field_in_booking_form( resource_id, form_elements ){
578
  // Get dates and time from pending dates
579
  if ( typeof(date2approve[ bk_type ]) !== 'undefined' ){
580
  if ( (typeof(date2approve[ bk_type ][ td_class ]) !== 'undefined') ){
581
- if ( !is_check_for_time ){
582
  return false;
583
  } // its mean that this date is booked inside of range selected dates
584
  if ( (date2approve[ bk_type ][ td_class ][ 0 ][ 3 ] != 0) || (date2approve[ bk_type ][ td_class ][ 0 ][ 4 ] != 0) ){
208
  if ( is_booking_used_check_in_out_time === true ) // Disable showing time tooltip, if we are using check in/out times
209
  tooltip_time = '';
210
  else
211
+ tooltip_time = '<span class="wpbc_booked_times_word">' + bk_highlight_timeslot_word + ' </span><br />' + tooltip_time;
212
  }
213
  }
214
  if ( typeof(getDayPrice4Show) == 'function' ){
578
  // Get dates and time from pending dates
579
  if ( typeof(date2approve[ bk_type ]) !== 'undefined' ){
580
  if ( (typeof(date2approve[ bk_type ][ td_class ]) !== 'undefined') ){
581
+ if ( ! is_check_for_time ){
582
  return false;
583
  } // its mean that this date is booked inside of range selected dates
584
  if ( (date2approve[ bk_type ][ td_class ][ 0 ][ 3 ] != 0) || (date2approve[ bk_type ][ td_class ][ 0 ][ 4 ] != 0) ){
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-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-07-16 10:38+0300\n"
7
  "PO-Revision-Date: \n"
8
  "Last-Translator: wpdevelop <info@wpdevelop.com>\n"
9
  "Language-Team: wpdevelop <info@wpbookingcalendar.com>\n"
@@ -121,183 +121,183 @@ msgstr ""
121
  msgid "Type of days selection in calendar"
122
  msgstr ""
123
 
124
- #: core/admin/api-settings.php:162
125
  msgid "Do not change background color for partially booked days"
126
  msgstr ""
127
 
128
- #: core/admin/api-settings.php:163
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:792
134
- #: core/admin/page-ics-export.php:467 core/admin/wpbc-class-timeline.php:2311
135
- #: core/lib/wpbc_all_translations.php:32 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
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:48
143
  msgid "Partially booked item - day, which is booked for the specific time-slot(s)."
144
  msgstr ""
145
 
146
- #: core/admin/api-settings.php:187 core/lib/wpbc_all_translations.php:19
147
  msgid "Unavailable week days"
148
  msgstr ""
149
 
150
- #: core/admin/api-settings.php:217 core/lib/wpbc_all_translations.php:20
151
  msgid "Check unavailable days in calendars. This option will overwrite all other settings."
152
  msgstr ""
153
 
154
- #: core/admin/api-settings.php:235 core/lib/wpbc_all_translations.php:21
155
  msgid "Unavailable days from today"
156
  msgstr ""
157
 
158
- #: core/admin/api-settings.php:236 core/lib/wpbc_all_translations.php:22
159
  msgid "Select number of unavailable days in calendar start from today."
160
  msgstr ""
161
 
162
- #: core/admin/api-settings.php:275 core/lib/wpbc_all_translations.php:23 inc/_ps/lib_p.php:264
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:695 core/admin/wpbc-toolbar-tiny.php:1196
168
- #: core/admin/wpbc-toolbar-tiny.php:1612 core/lib/wpbc_all_translations.php:24
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
171
  msgid "Booking Form"
172
  msgstr ""
173
 
174
- #: core/admin/api-settings.php:276 core/lib/wpbc_all_translations.php:25 inc/_ps/lib_p.php:260
175
  msgid ""
176
  "Check the box, if you want to use simple booking form customization from Free plugin version at "
177
  "Settings - Form page."
178
  msgstr ""
179
 
180
- #: core/admin/api-settings.php:283 core/lib/wpbc_all_translations.php:26
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:27
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:28
190
  msgid "Auto-fill fields"
191
  msgstr ""
192
 
193
- #: core/admin/api-settings.php:292 core/lib/wpbc_all_translations.php:29
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:30
198
  msgid "Use CSS BootStrap"
199
  msgstr ""
200
 
201
- #: core/admin/api-settings.php:300 core/lib/wpbc_all_translations.php:31
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:33
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:34
210
  msgid "Show legend below calendar"
211
  msgstr ""
212
 
213
- #: core/admin/api-settings.php:312 core/lib/wpbc_all_translations.php:35
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:36
218
  msgid "Available item"
219
  msgstr ""
220
 
221
- #: core/admin/api-settings.php:338 core/lib/wpbc_all_translations.php:37
222
- #: core/wpbc-activation.php:1017
223
  msgid "Available"
224
  msgstr ""
225
 
226
- #: core/admin/api-settings.php:347 core/lib/wpbc_all_translations.php:38
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:39
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:40 core/wpbc-activation.php:1021 inc/_bs/lib_s.php:322
239
- #: inc/_ps/personal.php:336 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:41
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:42
249
  msgid "Approved item"
250
  msgstr ""
251
 
252
- #: core/admin/api-settings.php:412 core/lib/wpbc_all_translations.php:43
253
- #: core/wpbc-activation.php:1025
254
  msgid "Booked"
255
  msgstr ""
256
 
257
- #: core/admin/api-settings.php:421 core/lib/wpbc_all_translations.php:44
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:45
263
  msgid "Partially booked item"
264
  msgstr ""
265
 
266
- #: core/admin/api-settings.php:450 core/lib/wpbc_all_translations.php:46
267
- #: core/wpbc-activation.php:1031
268
  msgid "Partially booked"
269
  msgstr ""
270
 
271
- #: core/admin/api-settings.php:459 core/lib/wpbc_all_translations.php:47
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:49
277
  msgid "Show date number in legend"
278
  msgstr ""
279
 
280
- #: core/admin/api-settings.php:485 core/lib/wpbc_all_translations.php:50
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:51
285
  msgid "Show \"Thank You\" message"
286
  msgstr ""
287
 
288
- #: core/admin/api-settings.php:494 core/lib/wpbc_all_translations.php:52
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:53
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:54
297
  msgid "Action after booking is done"
298
  msgstr ""
299
 
300
- #: core/admin/api-settings.php:510 core/lib/wpbc_all_translations.php:55
301
  #: core/wpbc-activation.php:867
302
  #, php-format
303
  msgid ""
@@ -305,122 +305,122 @@ msgid ""
305
  "possible."
306
  msgstr ""
307
 
308
- #: core/admin/api-settings.php:511 core/lib/wpbc_all_translations.php:56
309
  msgid "Message title"
310
  msgstr ""
311
 
312
- #: core/admin/api-settings.php:512 core/lib/wpbc_all_translations.php:57
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:58
318
  msgid "Time of message showing"
319
  msgstr ""
320
 
321
- #: core/admin/api-settings.php:524 core/lib/wpbc_all_translations.php:59
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:60
326
  msgid "URL of \"thank you\" page"
327
  msgstr ""
328
 
329
- #: core/admin/api-settings.php:567 core/lib/wpbc_all_translations.php:61
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:62 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:63 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:64
346
  msgid "Default booking admin page"
347
  msgstr ""
348
 
349
- #: core/admin/api-settings.php:586 core/lib/wpbc_all_translations.php:65
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:390
354
- #: core/admin/wpbc-toolbars.php:1191 core/lib/wpbc_all_translations.php:66
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:391
360
- #: core/admin/wpbc-toolbars.php:1205 core/lib/wpbc_all_translations.php:67
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:393 core/admin/wpbc-toolbars.php:1140
366
- #: core/admin/wpbc-toolbars.php:1219 core/lib/wpbc_all_translations.php:68
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:395
372
- #: core/admin/wpbc-toolbars.php:1233 core/lib/wpbc_all_translations.php:69
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:397 core/admin/wpbc-toolbars.php:1154
378
- #: core/lib/wpbc_all_translations.php:70
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:398 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:71 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:72
390
  msgid "Default calendar view mode"
391
  msgstr ""
392
 
393
- #: core/admin/api-settings.php:617 core/lib/wpbc_all_translations.php:73
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:74
398
  msgid "Filter tab"
399
  msgstr ""
400
 
401
- #: core/admin/api-settings.php:628 core/lib/wpbc_all_translations.php:75
402
  msgid "Actions tab"
403
  msgstr ""
404
 
405
- #: core/admin/api-settings.php:633 core/lib/wpbc_all_translations.php:76
406
  msgid "Default toolbar tab"
407
  msgstr ""
408
 
409
- #: core/admin/api-settings.php:634 core/lib/wpbc_all_translations.php:77
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:78
414
  msgid "Bookings number per page"
415
  msgstr ""
416
 
417
- #: core/admin/api-settings.php:647 core/lib/wpbc_all_translations.php:79
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:80
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
@@ -434,12 +434,12 @@ 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:81
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:82
443
  msgid "DESC"
444
  msgstr ""
445
 
@@ -447,7 +447,7 @@ msgstr ""
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:83 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
453
  #: inc/_ps/wpbc-form-templates.php:111 inc/_ps/wpbc-print.php:85
@@ -455,7 +455,7 @@ 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:84 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
@@ -463,69 +463,69 @@ 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:1800 core/lib/wpbc_all_translations.php:85
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:86
473
  msgid "Bookings default order"
474
  msgstr ""
475
 
476
- #: core/admin/api-settings.php:671 core/lib/wpbc_all_translations.php:87
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:88
481
  msgid "Date Format"
482
  msgstr ""
483
 
484
- #: core/admin/api-settings.php:693 core/lib/wpbc_all_translations.php:89
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:90 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:91
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:92
501
  msgid "Short days view"
502
  msgstr ""
503
 
504
- #: core/admin/api-settings.php:736 core/lib/wpbc_all_translations.php:93
505
  msgid "Wide days view"
506
  msgstr ""
507
 
508
- #: core/admin/api-settings.php:741 core/lib/wpbc_all_translations.php:94
509
  msgid "Dates view"
510
  msgstr ""
511
 
512
- #: core/admin/api-settings.php:742 core/lib/wpbc_all_translations.php:95
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:96
517
  msgid "Show / hide hints"
518
  msgstr ""
519
 
520
- #: core/admin/api-settings.php:759 core/lib/wpbc_all_translations.php:97
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:98
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:99
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,136 +533,146 @@ msgid ""
533
  "date(s)%s of other visitors."
534
  msgstr ""
535
 
536
- #: core/admin/api-settings.php:790 core/lib/wpbc_all_translations.php:100
 
 
 
 
 
 
 
 
 
 
537
  msgid "Checking to prevent double booking, during submitting booking"
538
  msgstr ""
539
 
540
- #: core/admin/api-settings.php:791 core/lib/wpbc_all_translations.php:101
541
  #, php-format
542
  msgid ""
543
  "Check this box, if you want to %sre-check if the selected dates available during submitting "
544
  "booking%s."
545
  msgstr ""
546
 
547
- #: core/admin/api-settings.php:793 core/lib/wpbc_all_translations.php:102
548
  msgid ""
549
  "This feature useful to prevent double booking of the same date(s) or time(s), if several "
550
  "visitors try to book the same date(s) in same calendar during the same time."
551
  msgstr ""
552
 
553
- #: core/admin/api-settings.php:794 core/lib/wpbc_all_translations.php:103
554
  msgid "This feature does not work for booking resources with capacity higher than one."
555
  msgstr ""
556
 
557
- #: core/admin/api-settings.php:811 core/lib/wpbc_all_translations.php:104
558
  msgid "Show advanced settings of JavaScript loading"
559
  msgstr ""
560
 
561
- #: core/admin/api-settings.php:812 core/lib/wpbc_all_translations.php:105
562
  msgid "Hide advanced settings of JavaScript loading"
563
  msgstr ""
564
 
565
- #: core/admin/api-settings.php:820 core/lib/wpbc_all_translations.php:106
566
  msgid "Disable Bootstrap loading on Front-End"
567
  msgstr ""
568
 
569
- #: core/admin/api-settings.php:821 core/admin/api-settings.php:830
570
- #: core/lib/wpbc_all_translations.php:107
571
  msgid ""
572
  " If your theme or some other plugin is load the BootStrap JavaScripts, you can disable loading "
573
  "of this script by this plugin."
574
  msgstr ""
575
 
576
- #: core/admin/api-settings.php:829 core/lib/wpbc_all_translations.php:108
577
  msgid "Disable Bootstrap loading on Back-End"
578
  msgstr ""
579
 
580
- #: core/admin/api-settings.php:839 core/lib/wpbc_all_translations.php:109
581
  msgid "Load JS and CSS files only on specific pages"
582
  msgstr ""
583
 
584
- #: core/admin/api-settings.php:840 core/lib/wpbc_all_translations.php:110
585
  msgid "Activate loading of CSS and JavaScript files of plugin only at specific pages."
586
  msgstr ""
587
 
588
- #: core/admin/api-settings.php:850 core/lib/wpbc_all_translations.php:111
589
  msgid "Relative URLs of pages, where to load plugin CSS and JS files"
590
  msgstr ""
591
 
592
- #: core/admin/api-settings.php:851 core/lib/wpbc_all_translations.php:112
593
  #, php-format
594
  msgid ""
595
  "Enter relative URLs of pages, where you have Booking Calendar elements (booking forms or "
596
  "availability calendars). Please enter one URL per line. Example: %s"
597
  msgstr ""
598
 
599
- #: core/admin/api-settings.php:865 core/lib/wpbc_all_translations.php:113
600
  msgid "Show system debugging log for beta features"
601
  msgstr ""
602
 
603
- #: core/admin/api-settings.php:866 core/lib/wpbc_all_translations.php:114
604
  msgid "Activate this option only for testing beta features"
605
  msgstr ""
606
 
607
- #: core/admin/api-settings.php:882 core/lib/wpbc_all_translations.php:115
608
  msgid "Show settings of powered by notice"
609
  msgstr ""
610
 
611
- #: core/admin/api-settings.php:883 core/lib/wpbc_all_translations.php:116
612
  msgid "Hide settings of powered by notice"
613
  msgstr ""
614
 
615
- #: core/admin/api-settings.php:890 core/lib/wpbc_all_translations.php:117
616
  msgid "Powered by notice"
617
  msgstr ""
618
 
619
- #: core/admin/api-settings.php:891 core/lib/wpbc_all_translations.php:118
620
  msgid " Turn On/Off powered by \"Booking Calendar\" notice under the calendar."
621
  msgstr ""
622
 
623
- #: core/admin/api-settings.php:899 core/lib/wpbc_all_translations.php:119
624
  msgid "Help and info notices"
625
  msgstr ""
626
 
627
- #: core/admin/api-settings.php:900 core/lib/wpbc_all_translations.php:120
628
  msgid " Turn On/Off version notice and help info links at booking admin panel."
629
  msgstr ""
630
 
631
- #: core/admin/api-settings.php:928 core/lib/wpbc_all_translations.php:121
632
  msgid "Plugin menu position"
633
  msgstr ""
634
 
635
- #: core/admin/api-settings.php:931 core/lib/wpbc_all_translations.php:122
636
  msgid "Top"
637
  msgstr ""
638
 
639
- #: core/admin/api-settings.php:932 core/lib/wpbc_all_translations.php:123
640
  msgid "Middle"
641
  msgstr ""
642
 
643
- #: core/admin/api-settings.php:933 core/lib/wpbc_all_translations.php:124
644
  msgid "Bottom"
645
  msgstr ""
646
 
647
- #: core/admin/api-settings.php:944 core/lib/wpbc_all_translations.php:125
648
  msgid "User permissions for plugin menu pages"
649
  msgstr ""
650
 
651
- #: core/admin/api-settings.php:959 core/admin/wpbc-class-timeline.php:70
652
  #: core/admin/wpbc-toolbars.php:548 core/admin/wpbc-toolbars.php:763
653
- #: core/lib/wpbc_all_translations.php:126 core/wpbc.php:136
654
  msgid "Bookings"
655
  msgstr ""
656
 
657
- #: core/admin/api-settings.php:968 core/admin/page-new.php:33 core/admin/page-new.php:34
658
  #: core/admin/page-new.php:35 core/admin/wpbc-toolbars.php:1794
659
- #: core/lib/wpbc_all_translations.php:127 core/wpbc-functions.php:1877 core/wpbc.php:165
660
  #: core/wpbc.php:166 core/wpbc.php:167
661
  msgid "Add booking"
662
  msgstr ""
663
 
664
- #: core/admin/api-settings.php:978 core/admin/page-import-gcal.php:491
665
- #: core/admin/wpbc-class-timeline.php:68 core/lib/wpbc_all_translations.php:128
666
  #: core/wpbc-functions.php:1887 core/wpbc.php:176 core/wpbc.php:178
667
  #: inc/_bl/admin/page-coupons.php:540 inc/_bl/admin/page-coupons.php:1355
668
  #: inc/_bm/admin/page-availability.php:875 inc/_bm/admin/page-cost-rate.php:105
@@ -672,46 +682,47 @@ msgstr ""
672
  msgid "Resources"
673
  msgstr ""
674
 
675
- #: core/admin/api-settings.php:987 core/lib/wpbc_all_translations.php:129
676
  #: core/wpbc-functions.php:1942 core/wpbc.php:187 core/wpbc.php:189 core/wpbc.php:396
677
  #: inc/_bl/admin/page-coupons.php:47 inc/_bm/admin/page-seasons.php:47
678
  msgid "Settings"
679
  msgstr ""
680
 
681
- #: core/admin/api-settings.php:988 core/lib/wpbc_all_translations.php:130
682
  msgid "Select user access level for the menu pages of plugin"
683
  msgstr ""
684
 
685
- #: core/admin/api-settings.php:999 core/lib/wpbc_all_translations.php:131 core/wpbc.php:204
686
  msgid "Premium"
687
  msgstr ""
688
 
689
- #: core/admin/api-settings.php:1000 core/lib/wpbc_all_translations.php:132
690
  msgid "Show / hide menu"
691
  msgstr ""
692
 
693
- #: core/admin/api-settings.php:1003 core/admin/wpbc-toolbar-tiny.php:588
694
- #: core/admin/wpbc-toolbar-tiny.php:1807 core/admin/wpbc-toolbars.php:782
695
- #: core/lib/wpbc_all_translations.php:133 core/lib/wpdev-booking-widget.php:104
 
696
  msgid "Show"
697
  msgstr ""
698
 
699
- #: core/admin/api-settings.php:1004 core/class/wpbc-class-notices.php:104
700
- #: core/lib/wpbc_all_translations.php:134 core/sync/wpbc-gcal-class.php:669
701
  #: core/wpbc-functions.php:2346
702
  msgid "Hide"
703
  msgstr ""
704
 
705
- #: core/admin/api-settings.php:1021 core/lib/wpbc_all_translations.php:135
706
  msgid "Delete booking data, when plugin deactivated"
707
  msgstr ""
708
 
709
- #: core/admin/api-settings.php:1022 core/lib/wpbc_all_translations.php:136
710
  msgid "Check this box to delete all booking data when you uninstal this plugin."
711
  msgstr ""
712
 
713
- #: core/admin/api-settings.php:1048 core/admin/page-form-free.php:968
714
- #: core/lib/wpbc_all_translations.php:137 core/sync/wpbc-gcal-class.php:439
715
  #: core/sync/wpbc-gcal-class.php:607 core/sync/wpbc-gcal-class.php:633
716
  #: inc/_bl/admin/api-settings-l.php:368 inc/_bm/admin/page-availability.php:990
717
  #: inc/_bm/admin/page-cost-rate.php:176 inc/_bm/admin/page-seasons.php:519
@@ -719,14 +730,14 @@ msgstr ""
719
  msgid "Info"
720
  msgstr ""
721
 
722
- #: core/admin/api-settings.php:1074 core/admin/page-settings.php:282
723
- #: core/lib/wpbc_all_translations.php:138
724
  msgid "Restore all dismissed windows"
725
  msgstr ""
726
 
727
- #: core/admin/api-settings.php:1198 core/admin/api-settings.php:1215
728
- #: core/admin/api-settings.php:1246 core/admin/api-settings.php:1259
729
- #: core/admin/api-settings.php:1292 core/lib/wpbc_all_translations.php:139
730
  #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:509
731
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:412 inc/gateways/page-gateways.php:889
732
  #: inc/gateways/paypal/wpbc-gw-paypal.php:640 inc/gateways/sage/wpbc-gw-sage.php:591
@@ -734,31 +745,31 @@ msgstr ""
734
  msgid "Warning"
735
  msgstr ""
736
 
737
- #: core/admin/api-settings.php:1199 core/lib/wpbc_all_translations.php:140
738
  msgid ""
739
  "You allow unlimited number of bookings per same dates, its can be a reason of double bookings on "
740
  "the same date. Do you really want to do this?"
741
  msgstr ""
742
 
743
- #: core/admin/api-settings.php:1216 core/lib/wpbc_all_translations.php:141
744
  msgid "This feature can impact to speed of submitting booking. Do you really want to do this?"
745
  msgstr ""
746
 
747
- #: core/admin/api-settings.php:1247 core/admin/api-settings.php:1260
748
- #: core/lib/wpbc_all_translations.php:142
749
  msgid ""
750
  "You are need to be sure what you are doing. You are disable of loading some JavaScripts Do you "
751
  "really want to do this?"
752
  msgstr ""
753
 
754
- #: core/admin/api-settings.php:1293 core/lib/wpbc_all_translations.php:143
755
  msgid ""
756
  "If you check this option, all booking data will be deleted when you uninstall this plugin. Do "
757
  "you really want to do this?"
758
  msgstr ""
759
 
760
  #: core/admin/page-bookings.php:45 core/admin/page-bookings.php:46 core/admin/page-bookings.php:47
761
- #: core/admin/wpbc-toolbars.php:459 core/lib/wpbc_all_translations.php:144
762
  #: core/wpbc-functions.php:1855
763
  msgid "Booking Listing"
764
  msgstr ""
@@ -766,11 +777,11 @@ msgstr ""
766
  #: core/admin/page-email-approved.php:177 core/admin/page-email-deleted.php:178
767
  #: core/admin/page-email-deny.php:178 core/admin/page-email-new-admin.php:176
768
  #: core/admin/page-email-new-visitor.php:176 core/admin/page-email-trash.php:178
769
- #: core/lib/wpbc_all_translations.php:145 inc/_bm/admin/page-cost-deposit.php:134
770
  #: inc/_bm/admin/page-cost-early-late-booking.php:138
771
  #: inc/_bm/admin/page-cost-early-late-booking.php:339 inc/_bs/admin/page-email-payment.php:179
772
  #: inc/_ps/admin/page-email-edit.php:178 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:274
773
- #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:217
774
  #: inc/gateways/ideal/wpbc-gw-ideal.php:377 inc/gateways/ipay88/wpbc-gw-ipay88.php:254
775
  #: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:146 inc/gateways/paypal/wpbc-gw-paypal.php:343
776
  #: inc/gateways/paypal/wpbc-gw-paypal.php:681 inc/gateways/paypal/wpbc-gw-paypal.php:704
@@ -782,7 +793,7 @@ msgstr ""
782
  #: core/admin/page-email-approved.php:178 core/admin/page-email-deleted.php:179
783
  #: core/admin/page-email-deny.php:179 core/admin/page-email-new-admin.php:177
784
  #: core/admin/page-email-new-visitor.php:177 core/admin/page-email-trash.php:179
785
- #: core/lib/wpbc_all_translations.php:146 inc/_bs/admin/page-email-payment.php:180
786
  #: inc/_ps/admin/page-email-edit.php:179
787
  msgid "Enable this email notification"
788
  msgstr ""
@@ -791,7 +802,7 @@ msgstr ""
791
  #: core/admin/page-email-deleted.php:190 core/admin/page-email-deleted.php:205
792
  #: core/admin/page-email-deny.php:190 core/admin/page-email-deny.php:207
793
  #: core/admin/page-email-trash.php:190 core/admin/page-email-trash.php:205
794
- #: core/lib/wpbc_all_translations.php:147 inc/_bs/admin/page-email-payment.php:191
795
  #: inc/_bs/admin/page-email-payment.php:206 inc/_ps/admin/page-email-edit.php:190
796
  #: inc/_ps/admin/page-email-edit.php:205
797
  msgid "Copy(ies)"
@@ -799,14 +810,14 @@ msgstr ""
799
 
800
  #: core/admin/page-email-approved.php:190 core/admin/page-email-deleted.php:191
801
  #: core/admin/page-email-deny.php:191 core/admin/page-email-trash.php:191
802
- #: core/lib/wpbc_all_translations.php:148 inc/_bs/admin/page-email-payment.php:192
803
  #: inc/_ps/admin/page-email-edit.php:191
804
  msgid "Enable / disable sending email(s) to additional addresses"
805
  msgstr ""
806
 
807
  #: core/admin/page-email-approved.php:205 core/admin/page-email-deleted.php:205
808
  #: core/admin/page-email-deny.php:207 core/admin/page-email-new-admin.php:192
809
- #: core/admin/page-email-trash.php:205 core/lib/wpbc_all_translations.php:149
810
  #: inc/_bm/admin/page-cost-valuation.php:275 inc/_bm/admin/page-cost-valuation.php:278
811
  #: inc/_bs/admin/page-email-payment.php:206 inc/_ps/admin/page-email-edit.php:205
812
  msgid "To"
@@ -817,7 +828,7 @@ msgstr ""
817
  #: core/admin/page-email-deny.php:217 core/admin/page-email-deny.php:272
818
  #: core/admin/page-email-new-admin.php:202 core/admin/page-email-new-admin.php:254
819
  #: core/admin/page-email-new-visitor.php:254 core/admin/page-email-trash.php:215
820
- #: core/admin/page-email-trash.php:277 core/lib/wpbc_all_translations.php:150
821
  #: inc/_bs/admin/page-email-payment.php:216 inc/_bs/admin/page-email-payment.php:273
822
  #: inc/_ps/admin/page-email-edit.php:215 inc/_ps/admin/page-email-edit.php:272
823
  #: inc/gateways/paypal/wpbc-gw-paypal.php:691 inc/gateways/paypal/wpbc-gw-paypal.php:714
@@ -834,7 +845,7 @@ msgstr ""
834
  #: core/admin/page-email-new-visitor.php:254 core/admin/page-email-new-visitor.php:295
835
  #: core/admin/page-email-trash.php:215 core/admin/page-email-trash.php:277
836
  #: core/admin/page-email-trash.php:319 core/admin/page-form-free.php:1129
837
- #: core/admin/page-form-free.php:2053 core/lib/wpbc_all_translations.php:151
838
  #: inc/_bs/admin/page-email-payment.php:216 inc/_bs/admin/page-email-payment.php:273
839
  #: inc/_bs/admin/page-email-payment.php:317 inc/_ps/admin/page-email-edit.php:215
840
  #: inc/_ps/admin/page-email-edit.php:272 inc/_ps/admin/page-email-edit.php:313
@@ -851,7 +862,7 @@ msgstr ""
851
 
852
  #: core/admin/page-email-approved.php:216 core/admin/page-email-deleted.php:216
853
  #: core/admin/page-email-deny.php:218 core/admin/page-email-trash.php:216
854
- #: core/lib/wpbc_all_translations.php:152 inc/_bs/admin/page-email-payment.php:217
855
  #: inc/_ps/admin/page-email-edit.php:216
856
  msgid "You can put multiple emails separated by"
857
  msgstr ""
@@ -862,13 +873,13 @@ msgstr ""
862
  #: core/admin/page-email-new-admin.php:220 core/admin/page-email-new-admin.php:272
863
  #: core/admin/page-email-new-visitor.php:272 core/admin/page-email-trash.php:234
864
  #: core/admin/page-email-trash.php:295 core/admin/page-form-timeslots.php:767
865
- #: core/admin/wpbc-toolbar-tiny.php:427 core/admin/wpbc-toolbar-tiny.php:1798
866
- #: core/lib/wpbc_all_translations.php:153 core/lib/wpdev-booking-widget.php:96
867
  #: core/sync/wpbc-gcal-class.php:606 core/sync/wpbc-gcal-class.php:629
868
  #: inc/_bm/admin/page-availability.php:985 inc/_bm/admin/page-seasons.php:514
869
  #: inc/_bs/admin/page-email-payment.php:235 inc/_bs/admin/page-email-payment.php:291
870
  #: inc/_ps/admin/page-email-edit.php:234 inc/_ps/admin/page-email-edit.php:290
871
- #: inc/_ps/wpbc-booking-select-widget.php:140
872
  msgid "Title"
873
  msgstr ""
874
 
@@ -878,7 +889,7 @@ msgstr ""
878
  #: core/admin/page-email-new-admin.php:220 core/admin/page-email-new-admin.php:272
879
  #: core/admin/page-email-new-visitor.php:272 core/admin/page-email-trash.php:234
880
  #: core/admin/page-email-trash.php:295 core/admin/page-form-timeslots.php:132
881
- #: core/admin/wpbc-toolbar-tiny.php:427 core/lib/wpbc_all_translations.php:154
882
  #: inc/_bs/admin/page-email-payment.php:235 inc/_bs/admin/page-email-payment.php:291
883
  #: inc/_ps/admin/page-email-edit.php:234 inc/_ps/admin/page-email-edit.php:290
884
  #: inc/_ps/form/class-wpbc-field-help-button.php:73
@@ -897,27 +908,27 @@ msgstr ""
897
  #: core/admin/page-email-approved.php:262 core/admin/page-email-deleted.php:262
898
  #: core/admin/page-email-deny.php:262 core/admin/page-email-new-admin.php:244
899
  #: core/admin/page-email-new-visitor.php:244 core/admin/page-email-trash.php:262
900
- #: core/admin/page-import-gcal.php:159 core/admin/wpbc-toolbar-tiny.php:591
901
- #: core/lib/wpbc_all_translations.php:155 core/sync/wpbc-gcal.php:171
902
  #: inc/_bm/admin/page-cost-valuation.php:275 inc/_bm/admin/page-cost-valuation.php:278
903
  #: inc/_bm/admin/page-cost-valuation.php:449 inc/_bm/admin/page-seasons.php:1564
904
  #: inc/_bs/admin/page-email-payment.php:263 inc/_ps/admin/page-email-edit.php:262
905
  msgid "From"
906
  msgstr ""
907
 
908
- #: core/admin/page-email-approved.php:272 core/lib/wpbc_all_translations.php:156
909
  msgid "Email Address will be used in the FROM field of response to Visitor."
910
  msgstr ""
911
 
912
- #: core/admin/page-email-approved.php:310 core/lib/wpbc_all_translations.php:157
913
- #: core/wpbc-activation.php:985
914
  msgid "Your booking has been approved"
915
  msgstr ""
916
 
917
  #: core/admin/page-email-approved.php:312 core/admin/page-email-deleted.php:313
918
  #: core/admin/page-email-deny.php:313 core/admin/page-email-new-admin.php:294
919
  #: core/admin/page-email-new-visitor.php:294 core/admin/page-email-trash.php:318
920
- #: core/lib/wpbc_all_translations.php:158 inc/_bs/admin/page-email-payment.php:316
921
  #: inc/_ps/admin/page-email-edit.php:312
922
  msgid "Subject"
923
  msgstr ""
@@ -925,22 +936,22 @@ msgstr ""
925
  #: core/admin/page-email-approved.php:313 core/admin/page-email-deleted.php:314
926
  #: core/admin/page-email-deny.php:314 core/admin/page-email-new-admin.php:295
927
  #: core/admin/page-email-new-visitor.php:295 core/admin/page-email-trash.php:319
928
- #: core/lib/wpbc_all_translations.php:159 inc/_bs/admin/page-email-payment.php:317
929
  #: inc/_ps/admin/page-email-edit.php:313
930
  #, php-format
931
  msgid "Type your email %ssubject%s for the booking confimation message."
932
  msgstr ""
933
 
934
- #: core/admin/page-email-approved.php:325 core/lib/wpbc_all_translations.php:160
935
- #: core/wpbc-activation.php:987
936
  #, php-format
937
  msgid ""
938
  "Your reservation %s for: %s has been approved.%sYou can edit the booking on this page: %s Thank "
939
  "you, %s"
940
  msgstr ""
941
 
942
- #: core/admin/page-email-approved.php:327 core/lib/wpbc_all_translations.php:161
943
- #: core/wpbc-activation.php:989
944
  #, php-format
945
  msgid "Your booking %s for: %s has been approved.%sThank you, %s"
946
  msgstr ""
@@ -948,7 +959,7 @@ msgstr ""
948
  #: core/admin/page-email-approved.php:334 core/admin/page-email-deleted.php:331
949
  #: core/admin/page-email-deny.php:331 core/admin/page-email-new-admin.php:310
950
  #: core/admin/page-email-new-visitor.php:316 core/admin/page-email-trash.php:336
951
- #: core/lib/wpbc_all_translations.php:162 inc/_bs/admin/page-email-payment.php:334
952
  #: inc/_ps/admin/page-email-edit.php:330
953
  msgid "Content"
954
  msgstr ""
@@ -956,7 +967,7 @@ msgstr ""
956
  #: core/admin/page-email-approved.php:335 core/admin/page-email-deleted.php:332
957
  #: core/admin/page-email-deny.php:332 core/admin/page-email-new-admin.php:311
958
  #: core/admin/page-email-new-visitor.php:317 core/admin/page-email-trash.php:337
959
- #: core/lib/wpbc_all_translations.php:163 inc/_bs/admin/page-email-payment.php:335
960
  #: inc/_ps/admin/page-email-edit.php:331
961
  msgid "Type your email message content. "
962
  msgstr ""
@@ -964,7 +975,7 @@ msgstr ""
964
  #: core/admin/page-email-approved.php:356 core/admin/page-email-deleted.php:353
965
  #: core/admin/page-email-deny.php:353 core/admin/page-email-new-admin.php:332
966
  #: core/admin/page-email-new-visitor.php:338 core/admin/page-email-trash.php:358
967
- #: core/lib/wpbc_all_translations.php:164 inc/_bs/admin/page-email-payment.php:356
968
  #: inc/_ps/admin/page-email-edit.php:352
969
  msgid "Email Heading"
970
  msgstr ""
@@ -972,7 +983,7 @@ msgstr ""
972
  #: core/admin/page-email-approved.php:357 core/admin/page-email-deleted.php:354
973
  #: core/admin/page-email-deny.php:354 core/admin/page-email-new-admin.php:333
974
  #: core/admin/page-email-new-visitor.php:339 core/admin/page-email-trash.php:359
975
- #: core/lib/wpbc_all_translations.php:165 inc/_bs/admin/page-email-payment.php:357
976
  #: inc/_ps/admin/page-email-edit.php:353
977
  msgid "Enter main heading contained within the email notification."
978
  msgstr ""
@@ -980,7 +991,7 @@ msgstr ""
980
  #: core/admin/page-email-approved.php:366 core/admin/page-email-deleted.php:363
981
  #: core/admin/page-email-deny.php:363 core/admin/page-email-new-admin.php:342
982
  #: core/admin/page-email-new-visitor.php:348 core/admin/page-email-trash.php:368
983
- #: core/lib/wpbc_all_translations.php:166 inc/_bs/admin/page-email-payment.php:366
984
  #: inc/_ps/admin/page-email-edit.php:362
985
  msgid "Email Footer Text"
986
  msgstr ""
@@ -988,7 +999,7 @@ msgstr ""
988
  #: core/admin/page-email-approved.php:367 core/admin/page-email-deleted.php:364
989
  #: core/admin/page-email-deny.php:364 core/admin/page-email-new-admin.php:343
990
  #: core/admin/page-email-new-visitor.php:349 core/admin/page-email-trash.php:369
991
- #: core/lib/wpbc_all_translations.php:167 inc/_bs/admin/page-email-payment.php:367
992
  #: inc/_ps/admin/page-email-edit.php:363
993
  msgid "Enter text contained within footer of the email notification"
994
  msgstr ""
@@ -996,7 +1007,7 @@ msgstr ""
996
  #: core/admin/page-email-approved.php:377 core/admin/page-email-deleted.php:374
997
  #: core/admin/page-email-deny.php:374 core/admin/page-email-new-admin.php:353
998
  #: core/admin/page-email-new-visitor.php:359 core/admin/page-email-trash.php:379
999
- #: core/lib/wpbc_all_translations.php:168 inc/_bs/admin/page-email-payment.php:377
1000
  #: inc/_ps/admin/page-email-edit.php:373
1001
  msgid "Email template"
1002
  msgstr ""
@@ -1004,7 +1015,7 @@ msgstr ""
1004
  #: core/admin/page-email-approved.php:378 core/admin/page-email-deleted.php:375
1005
  #: core/admin/page-email-deny.php:375 core/admin/page-email-new-admin.php:354
1006
  #: core/admin/page-email-new-visitor.php:360 core/admin/page-email-trash.php:380
1007
- #: core/lib/wpbc_all_translations.php:169 inc/_bs/admin/page-email-payment.php:378
1008
  #: inc/_ps/admin/page-email-edit.php:374
1009
  msgid "Choose email template."
1010
  msgstr ""
@@ -1012,7 +1023,7 @@ msgstr ""
1012
  #: core/admin/page-email-approved.php:382 core/admin/page-email-deleted.php:379
1013
  #: core/admin/page-email-deny.php:379 core/admin/page-email-new-admin.php:358
1014
  #: core/admin/page-email-new-visitor.php:364 core/admin/page-email-trash.php:384
1015
- #: core/lib/wpbc_all_translations.php:170 inc/_bs/admin/page-email-payment.php:382
1016
  #: inc/_ps/admin/page-email-edit.php:378
1017
  msgid "Plain (without styles)"
1018
  msgstr ""
@@ -1020,7 +1031,7 @@ msgstr ""
1020
  #: core/admin/page-email-approved.php:383 core/admin/page-email-deleted.php:380
1021
  #: core/admin/page-email-deny.php:380 core/admin/page-email-new-admin.php:359
1022
  #: core/admin/page-email-new-visitor.php:365 core/admin/page-email-trash.php:385
1023
- #: core/lib/wpbc_all_translations.php:171 inc/_bs/admin/page-email-payment.php:383
1024
  #: inc/_ps/admin/page-email-edit.php:379
1025
  msgid "Standard 1 column"
1026
  msgstr ""
@@ -1028,7 +1039,7 @@ msgstr ""
1028
  #: core/admin/page-email-approved.php:390 core/admin/page-email-deleted.php:387
1029
  #: core/admin/page-email-deny.php:387 core/admin/page-email-new-admin.php:366
1030
  #: core/admin/page-email-new-visitor.php:372 core/admin/page-email-trash.php:392
1031
- #: core/lib/wpbc_all_translations.php:172 inc/_bs/admin/page-email-payment.php:390
1032
  #: inc/_ps/admin/page-email-edit.php:386
1033
  #, php-format
1034
  msgid "You can override this email template in this folder %s"
@@ -1037,7 +1048,7 @@ msgstr ""
1037
  #: core/admin/page-email-approved.php:400 core/admin/page-email-deleted.php:397
1038
  #: core/admin/page-email-deny.php:397 core/admin/page-email-new-admin.php:376
1039
  #: core/admin/page-email-new-visitor.php:382 core/admin/page-email-trash.php:402
1040
- #: core/lib/wpbc_all_translations.php:173 inc/_bs/admin/page-email-payment.php:400
1041
  #: inc/_ps/admin/page-email-edit.php:396
1042
  msgid "Base Color"
1043
  msgstr ""
@@ -1045,7 +1056,7 @@ msgstr ""
1045
  #: core/admin/page-email-approved.php:401 core/admin/page-email-deleted.php:398
1046
  #: core/admin/page-email-deny.php:398 core/admin/page-email-new-admin.php:377
1047
  #: core/admin/page-email-new-visitor.php:383 core/admin/page-email-trash.php:403
1048
- #: core/lib/wpbc_all_translations.php:174 inc/_bs/admin/page-email-payment.php:401
1049
  #: inc/_ps/admin/page-email-edit.php:397
1050
  msgid "The base color for email templates."
1051
  msgstr ""
@@ -1062,7 +1073,7 @@ msgstr ""
1062
  #: core/admin/page-email-new-visitor.php:402 core/admin/page-email-new-visitor.php:411
1063
  #: core/admin/page-email-trash.php:404 core/admin/page-email-trash.php:413
1064
  #: core/admin/page-email-trash.php:422 core/admin/page-email-trash.php:431
1065
- #: core/lib/wpbc_all_translations.php:175 inc/_bs/admin/page-email-payment.php:402
1066
  #: inc/_bs/admin/page-email-payment.php:411 inc/_bs/admin/page-email-payment.php:420
1067
  #: inc/_bs/admin/page-email-payment.php:429 inc/_ps/admin/page-email-edit.php:398
1068
  #: inc/_ps/admin/page-email-edit.php:407 inc/_ps/admin/page-email-edit.php:416
@@ -1073,7 +1084,7 @@ msgstr ""
1073
  #: core/admin/page-email-approved.php:409 core/admin/page-email-deleted.php:406
1074
  #: core/admin/page-email-deny.php:406 core/admin/page-email-new-admin.php:385
1075
  #: core/admin/page-email-new-visitor.php:391 core/admin/page-email-trash.php:411
1076
- #: core/lib/wpbc_all_translations.php:176 inc/_bs/admin/page-email-payment.php:409
1077
  #: inc/_ps/admin/page-email-edit.php:405
1078
  msgid "Background Color"
1079
  msgstr ""
@@ -1081,7 +1092,7 @@ msgstr ""
1081
  #: core/admin/page-email-approved.php:410 core/admin/page-email-deleted.php:407
1082
  #: core/admin/page-email-deny.php:407 core/admin/page-email-new-admin.php:386
1083
  #: core/admin/page-email-new-visitor.php:392 core/admin/page-email-trash.php:412
1084
- #: core/lib/wpbc_all_translations.php:177 inc/_bs/admin/page-email-payment.php:410
1085
  #: inc/_ps/admin/page-email-edit.php:406
1086
  msgid "The background color for email templates."
1087
  msgstr ""
@@ -1089,7 +1100,7 @@ msgstr ""
1089
  #: core/admin/page-email-approved.php:418 core/admin/page-email-deleted.php:415
1090
  #: core/admin/page-email-deny.php:415 core/admin/page-email-new-admin.php:394
1091
  #: core/admin/page-email-new-visitor.php:400 core/admin/page-email-trash.php:420
1092
- #: core/lib/wpbc_all_translations.php:178 inc/_bs/admin/page-email-payment.php:418
1093
  #: inc/_ps/admin/page-email-edit.php:414
1094
  msgid "Email Body Background Color"
1095
  msgstr ""
@@ -1097,7 +1108,7 @@ msgstr ""
1097
  #: core/admin/page-email-approved.php:419 core/admin/page-email-deleted.php:416
1098
  #: core/admin/page-email-deny.php:416 core/admin/page-email-new-admin.php:395
1099
  #: core/admin/page-email-new-visitor.php:401 core/admin/page-email-trash.php:421
1100
- #: core/lib/wpbc_all_translations.php:179 inc/_bs/admin/page-email-payment.php:419
1101
  #: inc/_ps/admin/page-email-edit.php:415
1102
  msgid "The main body background color for email templates."
1103
  msgstr ""
@@ -1105,7 +1116,7 @@ msgstr ""
1105
  #: core/admin/page-email-approved.php:427 core/admin/page-email-deleted.php:424
1106
  #: core/admin/page-email-deny.php:424 core/admin/page-email-new-admin.php:403
1107
  #: core/admin/page-email-new-visitor.php:409 core/admin/page-email-trash.php:429
1108
- #: core/lib/wpbc_all_translations.php:180 inc/_bs/admin/page-email-payment.php:427
1109
  #: inc/_ps/admin/page-email-edit.php:423
1110
  msgid "Email Body Text Colour"
1111
  msgstr ""
@@ -1113,7 +1124,7 @@ msgstr ""
1113
  #: core/admin/page-email-approved.php:428 core/admin/page-email-deleted.php:425
1114
  #: core/admin/page-email-deny.php:425 core/admin/page-email-new-admin.php:404
1115
  #: core/admin/page-email-new-visitor.php:410 core/admin/page-email-trash.php:430
1116
- #: core/lib/wpbc_all_translations.php:181 inc/_bs/admin/page-email-payment.php:428
1117
  #: inc/_ps/admin/page-email-edit.php:424
1118
  msgid "The main body text color for email templates."
1119
  msgstr ""
@@ -1121,7 +1132,7 @@ msgstr ""
1121
  #: core/admin/page-email-approved.php:443 core/admin/page-email-deleted.php:440
1122
  #: core/admin/page-email-deny.php:440 core/admin/page-email-new-admin.php:419
1123
  #: core/admin/page-email-new-visitor.php:425 core/admin/page-email-trash.php:445
1124
- #: core/lib/wpbc_all_translations.php:182 inc/_bs/admin/page-email-payment.php:443
1125
  #: inc/_ps/admin/page-email-edit.php:439
1126
  msgid "Email format"
1127
  msgstr ""
@@ -1129,7 +1140,7 @@ msgstr ""
1129
  #: core/admin/page-email-approved.php:444 core/admin/page-email-deleted.php:441
1130
  #: core/admin/page-email-deny.php:441 core/admin/page-email-new-admin.php:420
1131
  #: core/admin/page-email-new-visitor.php:426 core/admin/page-email-trash.php:446
1132
- #: core/lib/wpbc_all_translations.php:183 inc/_bs/admin/page-email-payment.php:444
1133
  #: inc/_ps/admin/page-email-edit.php:440
1134
  msgid "Choose which format of email to send."
1135
  msgstr ""
@@ -1137,7 +1148,7 @@ msgstr ""
1137
  #: core/admin/page-email-approved.php:448 core/admin/page-email-deleted.php:445
1138
  #: core/admin/page-email-deny.php:445 core/admin/page-email-new-admin.php:424
1139
  #: core/admin/page-email-new-visitor.php:430 core/admin/page-email-trash.php:450
1140
- #: core/lib/wpbc_all_translations.php:184 inc/_bs/admin/page-email-payment.php:448
1141
  #: inc/_ps/admin/page-email-edit.php:444
1142
  msgid "Plain text"
1143
  msgstr ""
@@ -1145,7 +1156,7 @@ msgstr ""
1145
  #: core/admin/page-email-approved.php:455 core/admin/page-email-deleted.php:452
1146
  #: core/admin/page-email-deny.php:452 core/admin/page-email-new-admin.php:431
1147
  #: core/admin/page-email-new-visitor.php:437 core/admin/page-email-trash.php:457
1148
- #: core/lib/wpbc_all_translations.php:185 inc/_bs/admin/page-email-payment.php:455
1149
  #: inc/_ps/admin/page-email-edit.php:451 inc/_ps/admin/page-settings-form.php:606
1150
  #: inc/_ps/form/class-wpbc-form-help.php:92 inc/gateways/page-gateways.php:1095
1151
  msgid "HTML"
@@ -1154,7 +1165,7 @@ msgstr ""
1154
  #: core/admin/page-email-approved.php:456 core/admin/page-email-deleted.php:453
1155
  #: core/admin/page-email-deny.php:453 core/admin/page-email-new-admin.php:432
1156
  #: core/admin/page-email-new-visitor.php:438 core/admin/page-email-trash.php:458
1157
- #: core/lib/wpbc_all_translations.php:186 inc/_bs/admin/page-email-payment.php:456
1158
  #: inc/_ps/admin/page-email-edit.php:452
1159
  msgid "Multipart"
1160
  msgstr ""
@@ -1162,7 +1173,7 @@ msgstr ""
1162
  #: core/admin/page-email-approved.php:483 core/admin/page-email-deleted.php:480
1163
  #: core/admin/page-email-deny.php:480 core/admin/page-email-new-admin.php:458
1164
  #: core/admin/page-email-new-visitor.php:465 core/admin/page-email-trash.php:485
1165
- #: core/lib/wpbc_all_translations.php:187 inc/_bs/admin/page-email-payment.php:483
1166
  #: inc/_ps/admin/page-email-edit.php:479
1167
  #, php-format
1168
  msgid ""
@@ -1173,13 +1184,13 @@ 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:188 core/sync/wpbc-gcal.php:406
1177
  #: inc/_bs/admin/page-email-payment.php:483 inc/_ps/admin/page-email-edit.php:479
1178
  msgid "here"
1179
  msgstr ""
1180
 
1181
  #: core/admin/page-email-approved.php:560 core/admin/wpbc-class-listing.php:329
1182
- #: core/admin/wpbc-toolbars.php:542 core/lib/wpbc_all_translations.php:189 inc/_ps/personal.php:335
1183
  #: inc/_ps/wpbc-print.php:118
1184
  msgid "Approved"
1185
  msgstr ""
@@ -1188,23 +1199,23 @@ msgstr ""
1188
  #: core/admin/page-email-deny.php:559 core/admin/page-email-new-admin.php:506
1189
  #: core/admin/page-email-new-admin.php:507 core/admin/page-email-new-admin.php:531
1190
  #: core/admin/page-email-new-visitor.php:538 core/admin/page-email-trash.php:564
1191
- #: core/lib/wpbc_all_translations.php:190 inc/_bs/admin/page-email-payment.php:561
1192
  #: inc/_ps/admin/page-email-edit.php:557
1193
  msgid "Emails Settings"
1194
  msgstr ""
1195
 
1196
- #: core/admin/page-email-approved.php:562 core/lib/wpbc_all_translations.php:191
1197
  msgid "Customization of email template, which is sent to Visitor after approval of booking"
1198
  msgstr ""
1199
 
1200
- #: core/admin/page-email-approved.php:699 core/lib/wpbc_all_translations.php:192
1201
  msgid "Email is sent to Visitor after Approval of booking."
1202
  msgstr ""
1203
 
1204
  #: core/admin/page-email-approved.php:706 core/admin/page-email-deleted.php:703
1205
  #: core/admin/page-email-deny.php:703 core/admin/page-email-new-admin.php:679
1206
  #: core/admin/page-email-new-visitor.php:682 core/admin/page-email-trash.php:708
1207
- #: core/lib/wpbc_all_translations.php:193 inc/_bs/admin/page-email-payment.php:705
1208
  #: inc/_ps/admin/page-email-edit.php:701
1209
  msgid "Header / Footer"
1210
  msgstr ""
@@ -1212,7 +1223,7 @@ msgstr ""
1212
  #: core/admin/page-email-approved.php:713 core/admin/page-email-deleted.php:710
1213
  #: core/admin/page-email-deny.php:710 core/admin/page-email-new-admin.php:686
1214
  #: core/admin/page-email-new-visitor.php:689 core/admin/page-email-trash.php:715
1215
- #: core/lib/wpbc_all_translations.php:194 inc/_bs/admin/page-email-payment.php:712
1216
  #: inc/_ps/admin/page-email-edit.php:708
1217
  msgid "Email Styles"
1218
  msgstr ""
@@ -1223,7 +1234,7 @@ msgstr ""
1223
  #: core/admin/page-form-free.php:1131 core/admin/page-form-timeslots.php:768
1224
  #: core/admin/wpbc-class-listing.php:125 core/admin/wpbc-class-listing.php:145
1225
  #: core/admin/wpbc-toolbars.php:52 core/admin/wpbc-toolbars.php:174
1226
- #: core/lib/wpbc_all_translations.php:195 inc/_bl/admin/page-coupons.php:548
1227
  #: inc/_bm/admin/page-cost-valuation.php:203 inc/_bm/admin/page-seasons.php:527
1228
  #: inc/_bs/admin/page-email-payment.php:724 inc/_mu/admin/page-users.php:449
1229
  #: inc/_ps/admin/page-email-edit.php:720
@@ -1233,7 +1244,7 @@ msgstr ""
1233
  #: core/admin/page-email-approved.php:729 core/admin/page-email-deleted.php:726
1234
  #: core/admin/page-email-deny.php:726 core/admin/page-email-new-admin.php:702
1235
  #: core/admin/page-email-new-visitor.php:705 core/admin/page-email-trash.php:731
1236
- #: core/lib/wpbc_all_translations.php:196 inc/_bs/admin/page-email-payment.php:728
1237
  #: inc/_ps/admin/page-email-edit.php:724
1238
  msgid "Send Test Email"
1239
  msgstr ""
@@ -1249,7 +1260,7 @@ msgstr ""
1249
  #: core/admin/page-ics-general.php:386 core/admin/page-ics-import.php:203
1250
  #: core/admin/page-import-gcal.php:570 core/admin/page-settings.php:137
1251
  #: core/admin/page-settings.php:276 core/admin/wpbc-toolbars.php:1773
1252
- #: core/lib/wpbc_all_translations.php:197 inc/_bl/admin/page-coupons.php:220
1253
  #: inc/_bl/admin/page-coupons.php:1378 inc/_bl/admin/page-search.php:349
1254
  #: inc/_bl/admin/page-search.php:445 inc/_bm/admin/page-availability.php:1024
1255
  #: inc/_bm/admin/page-cost-advanced.php:102 inc/_bm/admin/page-cost-advanced.php:161
@@ -1262,7 +1273,7 @@ msgstr ""
1262
  #: inc/_ps/admin/page-email-edit.php:762 inc/_ps/admin/page-resources.php:193
1263
  #: inc/_ps/admin/page-settings-form.php:118 inc/_ps/admin/page-settings-form.php:180
1264
  #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:863
1265
- #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:488
1266
  #: inc/gateways/ideal/wpbc-gw-ideal.php:923 inc/gateways/ipay88/wpbc-gw-ipay88.php:783
1267
  #: inc/gateways/page-gateways.php:658 inc/gateways/pay_cash/wpbc-gw-pay_cash.php:402
1268
  #: inc/gateways/paypal/wpbc-gw-paypal.php:1085 inc/gateways/sage/wpbc-gw-sage.php:911
@@ -1274,7 +1285,7 @@ msgstr ""
1274
  #: core/admin/page-email-deny.php:746 core/admin/page-email-new-admin.php:722
1275
  #: core/admin/page-email-new-visitor.php:725 core/admin/page-email-trash.php:751
1276
  #: core/admin/page-form-free.php:1130 core/admin/wpbc-dashboard.php:471
1277
- #: core/lib/wpbc_all_translations.php:198 inc/_bs/admin/page-email-payment.php:748
1278
  #: inc/_ps/admin/page-email-edit.php:744
1279
  msgid "Type"
1280
  msgstr ""
@@ -1285,11 +1296,11 @@ msgstr ""
1285
  #: core/admin/page-ics-import.php:194 core/admin/page-import-gcal.php:552
1286
  #: core/admin/page-settings.php:131 core/admin/page-settings.php:268
1287
  #: core/admin/wpbc-toolbars.php:426 core/admin/wpbc-toolbars.php:432
1288
- #: core/lib/wpbc_all_translations.php:199 inc/_bl/admin/page-search.php:399
1289
  #: inc/_bl/admin/page-search.php:427 inc/_bm/admin/page-cost-advanced.php:155
1290
  #: inc/_bs/admin/page-email-payment.php:755 inc/_ps/admin/page-email-edit.php:751
1291
  #: inc/_ps/admin/page-settings-form.php:174
1292
- #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:451 inc/gateways/page-gateways.php:647
1293
  #: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:393 inc/gateways/paypal/wpbc-gw-paypal.php:1059
1294
  #: inc/gateways/paypal/wpbc-gw-paypal.php:1076
1295
  msgid "Help"
@@ -1298,7 +1309,7 @@ msgstr ""
1298
  #: core/admin/page-email-approved.php:839 core/admin/page-email-deleted.php:835
1299
  #: core/admin/page-email-deny.php:835 core/admin/page-email-new-admin.php:819
1300
  #: core/admin/page-email-new-visitor.php:814 core/admin/page-email-trash.php:840
1301
- #: core/lib/wpbc_all_translations.php:200 inc/_bs/admin/page-email-payment.php:837
1302
  #: inc/_ps/admin/page-email-edit.php:833
1303
  msgid "Email sent to "
1304
  msgstr ""
@@ -1306,7 +1317,7 @@ msgstr ""
1306
  #: core/admin/page-email-approved.php:841 core/admin/page-email-deleted.php:837
1307
  #: core/admin/page-email-deny.php:837 core/admin/page-email-new-admin.php:821
1308
  #: core/admin/page-email-new-visitor.php:816 core/admin/page-email-trash.php:842
1309
- #: core/lib/wpbc_all_translations.php:201 core/wpbc-emails.php:441
1310
  #: inc/_bs/admin/page-email-payment.php:839 inc/_ps/admin/page-email-edit.php:835
1311
  msgid "Email had not sent. Some error occuered."
1312
  msgstr ""
@@ -1314,9 +1325,9 @@ msgstr ""
1314
  #: core/admin/page-email-approved.php:856 core/admin/page-email-deleted.php:852
1315
  #: core/admin/page-email-deny.php:852 core/admin/page-email-new-admin.php:905
1316
  #: core/admin/page-email-new-visitor.php:831 core/admin/page-email-trash.php:857
1317
- #: core/lib/wpbc_all_translations.php:202 inc/_bs/admin/page-email-payment.php:854
1318
  #: inc/_ps/admin/page-email-edit.php:850 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:884
1319
- #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:561
1320
  #: inc/gateways/ideal/wpbc-gw-ideal.php:944 inc/gateways/ipay88/wpbc-gw-ipay88.php:804
1321
  #: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:423 inc/gateways/paypal/wpbc-gw-paypal.php:1106
1322
  #: inc/gateways/sage/wpbc-gw-sage.php:932 inc/gateways/stripe/wpbc-gw-stripe.php:945
@@ -1329,7 +1340,7 @@ msgstr ""
1329
  #: core/admin/page-email-new-admin.php:967 core/admin/page-email-new-admin.php:970
1330
  #: core/admin/page-email-new-visitor.php:892 core/admin/page-email-new-visitor.php:895
1331
  #: core/admin/page-email-trash.php:918 core/admin/page-email-trash.php:921
1332
- #: core/lib/wpbc_all_translations.php:203 inc/_bs/admin/page-email-payment.php:915
1333
  #: inc/_bs/admin/page-email-payment.php:918 inc/_ps/admin/page-email-edit.php:911
1334
  #: inc/_ps/admin/page-email-edit.php:914
1335
  msgid "If empty then title defined as WordPress"
@@ -1338,7 +1349,7 @@ msgstr ""
1338
  #: core/admin/page-email-approved.php:937 core/admin/page-email-deleted.php:933
1339
  #: core/admin/page-email-deny.php:933 core/admin/page-email-new-admin.php:987
1340
  #: core/admin/page-email-new-visitor.php:912 core/admin/page-email-trash.php:938
1341
- #: core/lib/wpbc_all_translations.php:204 inc/_bs/admin/page-email-payment.php:935
1342
  #: inc/_ps/admin/page-email-edit.php:931
1343
  msgid ""
1344
  "Email different from website DNS, its can be a reason of not delivery emails. Please use the "
@@ -1346,20 +1357,20 @@ msgid ""
1346
  msgstr ""
1347
 
1348
  #: core/admin/page-email-deleted.php:311 core/admin/page-email-deny.php:311
1349
- #: core/admin/page-email-trash.php:316 core/lib/wpbc_all_translations.php:205
1350
- #: core/wpbc-activation.php:996
1351
  msgid "Your booking has been declined"
1352
  msgstr ""
1353
 
1354
  #: core/admin/page-email-deleted.php:325 core/admin/page-email-deny.php:325
1355
- #: core/admin/page-email-trash.php:330 core/lib/wpbc_all_translations.php:206
1356
- #: core/wpbc-activation.php:997
1357
  #, php-format
1358
  msgid "Your booking %s for: %s has been canceled. %sThank you, %s"
1359
  msgstr ""
1360
 
1361
  #: core/admin/page-email-deleted.php:558 core/lib/wpbc-ajax.php:340
1362
- #: core/lib/wpbc_all_translations.php:207 inc/_bl/admin/page-coupons.php:378
1363
  #: inc/_bl/admin/page-coupons.php:1023 inc/_bm/admin/page-availability.php:364
1364
  #: inc/_bm/admin/page-cost.php:325 inc/_bm/admin/page-seasons.php:313
1365
  #: inc/_bm/admin/page-seasons.php:843 inc/_bm/m-toolbar.php:547
@@ -1368,142 +1379,142 @@ msgid "Deleted"
1368
  msgstr ""
1369
 
1370
  #: core/admin/page-email-deleted.php:560 core/admin/page-email-trash.php:565
1371
- #: core/lib/wpbc_all_translations.php:208
1372
  msgid "Customization of email template, which is sent to Visitor after Cancellation of booking"
1373
  msgstr ""
1374
 
1375
- #: core/admin/page-email-deleted.php:696 core/lib/wpbc_all_translations.php:209
1376
  msgid "Email is sent to Visitor after Deleting of booking."
1377
  msgstr ""
1378
 
1379
- #: core/admin/page-email-deny.php:560 core/lib/wpbc_all_translations.php:210
1380
  msgid ""
1381
  "Customization of email template, which is sent to Visitor, when booking status is set to Pending"
1382
  msgstr ""
1383
 
1384
- #: core/admin/page-email-deny.php:696 core/lib/wpbc_all_translations.php:211
1385
  msgid "Email is sent to Visitor after booking set as Pending."
1386
  msgstr ""
1387
 
1388
  #: core/admin/page-email-new-admin.php:292 core/admin/page-email-new-visitor.php:292
1389
- #: core/admin/wpbc-class-listing.php:301 core/lib/wpbc_all_translations.php:212
1390
- #: core/wpbc-activation.php:967 core/wpbc-activation.php:974
1391
  msgid "New booking"
1392
  msgstr ""
1393
 
1394
- #: core/admin/page-email-new-admin.php:308 core/lib/wpbc_all_translations.php:213
1395
- #: core/wpbc-activation.php:968
1396
  #, php-format
1397
  msgid ""
1398
  "You need to approve a new booking %s for: %s Person detail information:%s Currently a new "
1399
  "booking is waiting for approval. Please visit the moderation panel%sThank you, %s"
1400
  msgstr ""
1401
 
1402
- #: core/admin/page-email-new-admin.php:505 core/lib/wpbc_all_translations.php:214
1403
  #: core/wpbc-functions.php:1959
1404
  msgid "Emails"
1405
  msgstr ""
1406
 
1407
  #: core/admin/page-email-new-admin.php:530 core/admin/page-email-new-visitor.php:537
1408
- #: core/lib/wpbc_all_translations.php:215
1409
  msgid "New"
1410
  msgstr ""
1411
 
1412
- #: core/admin/page-email-new-admin.php:530 core/lib/wpbc_all_translations.php:216
1413
  msgid "admin"
1414
  msgstr ""
1415
 
1416
- #: core/admin/page-email-new-admin.php:532 core/lib/wpbc_all_translations.php:217
1417
  msgid "Customization of email template, which is sending to Admin after new booking"
1418
  msgstr ""
1419
 
1420
- #: core/admin/page-email-new-admin.php:672 core/lib/wpbc_all_translations.php:218
1421
  msgid "Email is sending to Admin after creation of booking."
1422
  msgstr ""
1423
 
1424
- #: core/admin/page-email-new-visitor.php:307 core/lib/wpbc_all_translations.php:219
1425
- #: core/wpbc-activation.php:976
1426
  #, php-format
1427
  msgid ""
1428
  "Your reservation %s for: %s is processing now! We will send confirmation by email. %sYou can "
1429
  "edit this booking at this page: %s Thank you, %s"
1430
  msgstr ""
1431
 
1432
- #: core/admin/page-email-new-visitor.php:309 core/lib/wpbc_all_translations.php:220
1433
- #: core/wpbc-activation.php:978
1434
  #, php-format
1435
  msgid ""
1436
  "Your reservation %s for: %s is processing now! We will send confirmation by email. %s Thank you, "
1437
  "%s"
1438
  msgstr ""
1439
 
1440
- #: core/admin/page-email-new-visitor.php:537 core/lib/wpbc_all_translations.php:221
1441
  msgid "visitor"
1442
  msgstr ""
1443
 
1444
- #: core/admin/page-email-new-visitor.php:539 core/lib/wpbc_all_translations.php:222
1445
  msgid "Customization of email template, which is sending to Visitor after new booking"
1446
  msgstr ""
1447
 
1448
- #: core/admin/page-email-new-visitor.php:675 core/lib/wpbc_all_translations.php:223
1449
  msgid "Email is sending to Visitor after creation of booking."
1450
  msgstr ""
1451
 
1452
  #: core/admin/page-email-trash.php:563 core/admin/wpbc-class-listing.php:331
1453
- #: core/admin/wpbc-class-timeline.php:2296 core/admin/wpbc-toolbars.php:986
1454
- #: core/lib/wpbc_all_translations.php:224
1455
  msgid "Trash"
1456
  msgstr ""
1457
 
1458
- #: core/admin/page-email-trash.php:701 core/lib/wpbc_all_translations.php:225
1459
  msgid "Email is sent to visitor after cancelling of booking (moved to trash)."
1460
  msgstr ""
1461
 
1462
  #: core/admin/page-form-free.php:61 core/admin/page-settings.php:98
1463
- #: core/admin/page-settings.php:212 core/lib/wpbc_all_translations.php:226
1464
  #: core/wpbc-functions.php:1951 inc/_ps/admin/page-settings-form.php:39
1465
  msgid "Form"
1466
  msgstr ""
1467
 
1468
- #: core/admin/page-form-free.php:62 core/lib/wpbc_all_translations.php:227
1469
  #: inc/_ps/admin/page-settings-form.php:40
1470
  msgid "Fields Settings"
1471
  msgstr ""
1472
 
1473
- #: core/admin/page-form-free.php:63 core/lib/wpbc_all_translations.php:228
1474
  #: inc/_ps/admin/page-settings-form.php:41
1475
  msgid "Customizaton of Form Fields"
1476
  msgstr ""
1477
 
1478
  #: core/admin/page-form-free.php:76 core/admin/wpbc-dashboard.php:503
1479
- #: core/lib/wpbc_all_translations.php:229
1480
  msgid "Check Premium Features"
1481
  msgstr ""
1482
 
1483
- #: core/admin/page-form-free.php:77 core/lib/wpbc_all_translations.php:230
1484
  msgid "Upgrade to higher versions"
1485
  msgstr ""
1486
 
1487
- #: core/admin/page-form-free.php:167 core/lib/wpbc_all_translations.php:231
1488
  msgid "Form Field Configuration"
1489
  msgstr ""
1490
 
1491
  #: core/admin/page-form-free.php:281 core/admin/page-form-free.php:404
1492
- #: core/admin/page-form-free.php:561 core/lib/wpbc_all_translations.php:232
1493
- #: inc/_ps/personal.php:2035 inc/_ps/wpbc-form-templates.php:42 inc/_ps/wpbc-form-templates.php:61
1494
  #: inc/_ps/wpbc-form-templates.php:81 inc/_ps/wpbc-form-templates.php:104
1495
  #: inc/_ps/wpbc-form-templates.php:127
1496
  msgid "Send"
1497
  msgstr ""
1498
 
1499
- #: core/admin/page-form-free.php:834 core/lib/wpbc_all_translations.php:233
1500
  msgid "Reset to default form"
1501
  msgstr ""
1502
 
1503
  #: core/admin/page-form-free.php:838 core/admin/page-form-free.php:1448
1504
  #: core/admin/wpbc-class-listing.php:391 core/admin/wpbc-class-listing.php:397
1505
  #: core/admin/wpbc-toolbars.php:989 core/admin/wpbc-toolbars.php:1006
1506
- #: core/lib/wpbc_all_translations.php:234 inc/_bl/admin/page-coupons.php:236
1507
  #: inc/_bl/admin/page-coupons.php:808 inc/_bm/admin/page-availability.php:274
1508
  #: inc/_bm/admin/page-cost-valuation.php:354 inc/_bm/admin/page-cost.php:513
1509
  #: inc/_bm/admin/page-seasons.php:221 inc/_bm/admin/page-seasons.php:602
@@ -1512,39 +1523,39 @@ msgid "Do you really want to do this ?"
1512
  msgstr ""
1513
 
1514
  #: core/admin/page-form-free.php:866 core/admin/page-form-free.php:2159
1515
- #: core/lib/wpbc_all_translations.php:235
1516
  msgid "Add New Field"
1517
  msgstr ""
1518
 
1519
  #: core/admin/page-form-free.php:883 core/admin/page-form-free.php:918
1520
- #: core/lib/wpbc_all_translations.php:236 inc/_ps/admin/page-settings-form.php:305
1521
  msgid "Select"
1522
  msgstr ""
1523
 
1524
- #: core/admin/page-form-free.php:883 core/lib/wpbc_all_translations.php:237
1525
  msgid "Form Field"
1526
  msgstr ""
1527
 
1528
- #: core/admin/page-form-free.php:905 core/lib/wpbc_all_translations.php:238
1529
  #: inc/_ps/form/class-wpbc-form-help.php:141
1530
  msgid "Standard Fields"
1531
  msgstr ""
1532
 
1533
- #: core/admin/page-form-free.php:908 core/lib/wpbc_all_translations.php:239
1534
  #: inc/_ps/form/class-wpbc-form-help.php:147
1535
  msgid "Text"
1536
  msgstr ""
1537
 
1538
- #: core/admin/page-form-free.php:928 core/lib/wpbc_all_translations.php:240
1539
  #: inc/_ps/form/class-wpbc-form-help.php:156
1540
  msgid "Textarea"
1541
  msgstr ""
1542
 
1543
- #: core/admin/page-form-free.php:938 core/lib/wpbc_all_translations.php:241
1544
  msgid "Checkbox"
1545
  msgstr ""
1546
 
1547
- #: core/admin/page-form-free.php:953 core/lib/wpbc_all_translations.php:242
1548
  #: inc/_ps/form/class-wpbc-form-help.php:486
1549
  msgid "Advanced Fields"
1550
  msgstr ""
@@ -1552,53 +1563,53 @@ msgstr ""
1552
  #: core/admin/page-form-free.php:957 core/admin/page-form-free.php:1973
1553
  #: core/admin/page-form-free.php:1974 core/admin/page-form-timeslots.php:106
1554
  #: core/admin/page-form-timeslots.php:201 core/admin/page-form-timeslots.php:766
1555
- #: core/admin/page-form-timeslots.php:816 core/lib/wpbc_all_translations.php:243
1556
  #: inc/_ps/admin/page-settings-form.php:366 inc/_ps/admin/page-settings-form.php:376
1557
  #: inc/_ps/admin/page-settings-form.php:386
1558
  msgid "Time Slots"
1559
  msgstr ""
1560
 
1561
- #: core/admin/page-form-free.php:1015 core/lib/wpbc_all_translations.php:244
1562
  msgid "View"
1563
  msgstr ""
1564
 
1565
- #: core/admin/page-form-free.php:1034 core/lib/wpbc_all_translations.php:245
1566
  msgid "Standard Forms"
1567
  msgstr ""
1568
 
1569
- #: core/admin/page-form-free.php:1037 core/lib/wpbc_all_translations.php:246
1570
  msgid "Form under calendar"
1571
  msgstr ""
1572
 
1573
- #: core/admin/page-form-free.php:1047 core/lib/wpbc_all_translations.php:247
1574
  msgid "Form at right side of calendar"
1575
  msgstr ""
1576
 
1577
- #: core/admin/page-form-free.php:1057 core/lib/wpbc_all_translations.php:248
1578
  msgid "Form and calendar are centered"
1579
  msgstr ""
1580
 
1581
- #: core/admin/page-form-free.php:1067 core/lib/wpbc_all_translations.php:249
1582
  msgid "Form for dark background"
1583
  msgstr ""
1584
 
1585
  #: core/admin/page-form-free.php:1127 core/admin/page-form-free.php:2032
1586
- #: core/lib/wpbc_all_translations.php:250
1587
  msgid "Active"
1588
  msgstr ""
1589
 
1590
- #: core/admin/page-form-free.php:1128 core/lib/wpbc_all_translations.php:251
1591
  msgid "Field Label"
1592
  msgstr ""
1593
 
1594
  #: core/admin/page-form-free.php:1130 core/admin/page-form-free.php:2098
1595
- #: core/lib/wpbc_all_translations.php:252 inc/_ps/form/class-wpbc-field-help-text.php:177
1596
  msgid "Name"
1597
  msgstr ""
1598
 
1599
  #: core/admin/page-form-free.php:1207 core/admin/page-form-free.php:1645
1600
  #: core/admin/page-form-free.php:1706 core/admin/wpbc-class-timeline.php:2216
1601
- #: core/lib/wpbc_all_translations.php:253 inc/_bl/admin/page-coupons.php:215
1602
  #: inc/_bl/admin/page-coupons.php:804 inc/_bl/admin/page-coupons.php:993
1603
  #: inc/_bm/admin/page-cost.php:218 inc/_bm/admin/page-seasons.php:200
1604
  #: inc/_bm/admin/page-seasons.php:598 inc/_bm/admin/page-seasons.php:815
@@ -1607,34 +1618,34 @@ msgid "Edit"
1607
  msgstr ""
1608
 
1609
  #: core/admin/page-form-free.php:1208 core/admin/page-form-free.php:1646
1610
- #: core/admin/page-form-timeslots.php:788 core/lib/wpbc_all_translations.php:254
1611
  msgid "Remove"
1612
  msgstr ""
1613
 
1614
- #: core/admin/page-form-free.php:1876 core/lib/wpbc_all_translations.php:255
1615
  #: inc/_ps/form/class-wpbc-form-help.php:88
1616
  msgid "Shortcodes"
1617
  msgstr ""
1618
 
1619
- #: core/admin/page-form-free.php:1877 core/lib/wpbc_all_translations.php:256
1620
  #: inc/_ps/form/class-wpbc-form-help.php:89
1621
  msgid ""
1622
  "You can generate the form fields for your form (at the left side) by selection specific field in "
1623
  "the above selectbox."
1624
  msgstr ""
1625
 
1626
- #: core/admin/page-form-free.php:1878 core/lib/wpbc_all_translations.php:257
1627
  #: inc/_ps/form/class-wpbc-form-help.php:90
1628
  #, php-format
1629
  msgid "Please read more about the booking form fields configuration %shere%s."
1630
  msgstr ""
1631
 
1632
- #: core/admin/page-form-free.php:1880 core/lib/wpbc_all_translations.php:258
1633
  #: inc/_ps/form/class-wpbc-form-help.php:99
1634
  msgid "Default Form Templates"
1635
  msgstr ""
1636
 
1637
- #: core/admin/page-form-free.php:1881 core/lib/wpbc_all_translations.php:259
1638
  #: inc/_ps/form/class-wpbc-form-help.php:100
1639
  #, php-format
1640
  msgid ""
@@ -1644,91 +1655,92 @@ msgid ""
1644
  "reset both forms: Booking Form and Content of Booking Fields form."
1645
  msgstr ""
1646
 
1647
- #: core/admin/page-form-free.php:2011 core/lib/wpbc_all_translations.php:260
1648
  #: inc/_ps/wpbc-form-templates.php:144 inc/_ps/wpbc-form-templates.php:156
1649
  #: inc/_ps/wpbc-form-templates.php:171 inc/_ps/wpbc-form-templates.php:186
1650
  msgid "First Name"
1651
  msgstr ""
1652
 
1653
- #: core/admin/page-form-free.php:2033 core/lib/wpbc_all_translations.php:261
1654
  msgid "Show / hide field in booking form"
1655
  msgstr ""
1656
 
1657
- #: core/admin/page-form-free.php:2054 core/lib/wpbc_all_translations.php:262
1658
  msgid "Set field as required"
1659
  msgstr ""
1660
 
1661
  #: core/admin/page-form-free.php:2074 core/admin/page-form-timeslots.php:784
1662
- #: core/admin/wpbc-toolbar-tiny.php:425 core/admin/wpbc-toolbar-tiny.php:1216
1663
- #: core/lib/wpbc_all_translations.php:263 inc/_ps/form/class-wpbc-field-help-button.php:73
 
1664
  msgid "Label"
1665
  msgstr ""
1666
 
1667
- #: core/admin/page-form-free.php:2103 core/lib/wpbc_all_translations.php:264
1668
  #, php-format
1669
  msgid "Type only %sunique field name%s, that is not using in form"
1670
  msgstr ""
1671
 
1672
- #: core/admin/page-form-free.php:2124 core/lib/wpbc_all_translations.php:265
1673
  msgid "Values"
1674
  msgstr ""
1675
 
1676
- #: core/admin/page-form-free.php:2129 core/lib/wpbc_all_translations.php:266
1677
  msgid "Enter dropdown options. One option per line."
1678
  msgstr ""
1679
 
1680
- #: core/admin/page-form-free.php:2164 core/admin/wpbc-toolbar-tiny.php:295
1681
  #: core/admin/wpbc-toolbars.php:702 core/admin/wpbc-toolbars.php:907
1682
- #: core/admin/wpbc-toolbars.php:1483 core/lib/wpbc_all_translations.php:267
1683
  #: core/sync/wpbc-gcal.php:445 inc/_bs/lib_s.php:104 inc/_bs/s-toolbar.php:209
1684
  #: inc/_ps/p-toolbar.php:477 inc/_ps/p-toolbar.php:522
1685
  msgid "Close"
1686
  msgstr ""
1687
 
1688
- #: core/admin/page-form-free.php:2178 core/lib/wpbc_all_translations.php:268
1689
  #: inc/_bm/m-toolbar.php:367 inc/_bm/m-toolbar.php:368 inc/_ps/p-toolbar.php:356
1690
  #: inc/_ps/p-toolbar.php:408 inc/_ps/p-toolbar.php:441
1691
  msgid "Cancel"
1692
  msgstr ""
1693
 
1694
- #: core/admin/page-form-timeslots.php:106 core/lib/wpbc_all_translations.php:269
1695
  msgid "in 24 hour format"
1696
  msgstr ""
1697
 
1698
- #: core/admin/page-form-timeslots.php:126 core/lib/wpbc_all_translations.php:270
1699
  #: inc/_ps/form/class-wpbc-field-help-checkbox.php:154
1700
  #: inc/_ps/form/class-wpbc-field-help-select.php:119
1701
  msgid "One option per line"
1702
  msgstr ""
1703
 
1704
- #: core/admin/page-form-timeslots.php:132 core/lib/wpbc_all_translations.php:271
1705
  msgid "Titles"
1706
  msgstr ""
1707
 
1708
- #: core/admin/page-form-timeslots.php:151 core/lib/wpbc_all_translations.php:272
1709
  #: inc/_ps/form/class-wpbc-field-help-checkbox.php:172
1710
  #: inc/_ps/form/class-wpbc-field-help-select.php:137
1711
  msgid "One title per line"
1712
  msgstr ""
1713
 
1714
- #: core/admin/page-form-timeslots.php:151 core/lib/wpbc_all_translations.php:273
1715
  msgid "Visible options in selectbox"
1716
  msgstr ""
1717
 
1718
- #: core/admin/page-form-timeslots.php:193 core/lib/wpbc_all_translations.php:274
1719
  msgid "Reset times by"
1720
  msgstr ""
1721
 
1722
  #: core/admin/page-form-timeslots.php:195 core/admin/page-import-gcal.php:69
1723
  #: core/admin/page-import-gcal.php:196 core/admin/page-import-gcal.php:278
1724
- #: core/admin/wpbc-toolbar-tiny.php:631 core/lib/wpbc_all_translations.php:275
1725
  #: core/sync/wpbc-gcal.php:207 core/sync/wpbc-gcal.php:271 inc/_bm/admin/api-settings-m.php:67
1726
  #: inc/_bm/admin/api-settings-m.php:104 inc/_bs/admin/api-settings-s.php:532
1727
  msgid "hours"
1728
  msgstr ""
1729
 
1730
  #: core/admin/page-form-timeslots.php:196 core/admin/page-import-gcal.php:67
1731
- #: core/lib/wpbc_all_translations.php:276 inc/_bm/admin/api-settings-m.php:98
1732
  #: inc/_bm/admin/api-settings-m.php:100 inc/_bs/admin/api-settings-s.php:528
1733
  #: inc/_bs/admin/api-settings-s.php:901
1734
  msgid "hour"
@@ -1736,7 +1748,7 @@ msgstr ""
1736
 
1737
  #: core/admin/page-form-timeslots.php:197 core/admin/page-form-timeslots.php:198
1738
  #: core/admin/page-form-timeslots.php:199 core/admin/page-import-gcal.php:195
1739
- #: core/admin/page-import-gcal.php:277 core/lib/wpbc_all_translations.php:277
1740
  #: core/sync/wpbc-gcal.php:206 core/sync/wpbc-gcal.php:270 inc/_bm/admin/api-settings-m.php:67
1741
  #: inc/_bm/admin/api-settings-m.php:96 inc/_bm/admin/api-settings-m.php:100
1742
  #: inc/_bs/admin/api-settings-s.php:525 inc/_bs/admin/api-settings-s.php:526
@@ -1749,12 +1761,12 @@ msgstr ""
1749
  #: core/admin/page-form-timeslots.php:435 core/admin/page-form-timeslots.php:444
1750
  #: core/admin/page-form-timeslots.php:446 core/admin/page-form-timeslots.php:455
1751
  #: core/admin/page-form-timeslots.php:457 core/admin/page-form-timeslots.php:466
1752
- #: core/admin/page-form-timeslots.php:468 core/lib/wpbc_all_translations.php:278
1753
  #: core/wpbc-js.php:131 inc/_ps/personal.php:249
1754
  msgid "Processing"
1755
  msgstr ""
1756
 
1757
- #: core/admin/page-form-timeslots.php:595 core/lib/wpbc_all_translations.php:279
1758
  msgid "+ Add Time Slot"
1759
  msgstr ""
1760
 
@@ -1763,7 +1775,7 @@ msgstr ""
1763
  #: core/admin/page-ics-general.php:253 core/admin/page-ics-general.php:254
1764
  #: core/admin/page-ics-import.php:40 core/admin/page-ics-import.php:41
1765
  #: core/admin/page-import-gcal.php:388 core/admin/page-import-gcal.php:389
1766
- #: core/lib/wpbc_all_translations.php:280 core/wpbc-functions.php:1976
1767
  msgid "Sync"
1768
  msgstr ""
1769
 
@@ -1772,7 +1784,7 @@ msgstr ""
1772
  #: core/admin/page-ics-import.php:42 core/admin/page-ics-import.php:59
1773
  #: core/admin/page-ics-import.php:60 core/admin/page-ics-import.php:62
1774
  #: core/admin/page-ics-import.php:186 core/admin/page-ics-import.php:464
1775
- #: core/admin/page-import-gcal.php:390 core/lib/wpbc_all_translations.php:281
1776
  #: core/sync/wpbc-gcal.php:465
1777
  msgid "Import"
1778
  msgstr ""
@@ -1781,28 +1793,28 @@ msgstr ""
1781
  #: core/admin/page-ics-export.php:62 core/admin/page-ics-export.php:64
1782
  #: core/admin/page-ics-export.php:228 core/admin/page-ics-general.php:235
1783
  #: core/admin/page-ics-import.php:42 core/admin/page-import-gcal.php:390
1784
- #: core/lib/wpbc_all_translations.php:282 inc/_ps/p-toolbar.php:142
1785
  msgid "Export"
1786
  msgstr ""
1787
 
1788
  #: core/admin/page-ics-export.php:64 core/admin/page-ics-export.php:228
1789
- #: core/lib/wpbc_all_translations.php:283
1790
  msgid "feed"
1791
  msgstr ""
1792
 
1793
  #: core/admin/page-ics-export.php:139 core/class/wpbc-class-notices.php:25
1794
- #: core/lib/wpbc_all_translations.php:284 core/sync/wpbc-gcal.php:398
1795
  #: inc/_bm/admin/page-cost-valuation.php:290 inc/_mu/multiuser.php:764
1796
  msgid "Warning!"
1797
  msgstr ""
1798
 
1799
- #: core/admin/page-ics-export.php:141 core/lib/wpbc_all_translations.php:285
1800
  #, php-format
1801
  msgid "This feature require %s"
1802
  msgstr ""
1803
 
1804
  #: core/admin/page-ics-export.php:163 core/admin/page-ics-import.php:162
1805
- #: core/lib/wpbc_all_translations.php:286 inc/_bl/admin/api-settings-l.php:162
1806
  #: inc/_bm/admin/api-settings-m.php:86 inc/_ps/form/class-wpbc-form-help.php:117
1807
  #: inc/_ps/form/class-wpbc-form-help.php:126 inc/_ps/form/class-wpbc-form-help.php:136
1808
  #: inc/_ps/form/class-wpbc-form-help.php:197 inc/_ps/form/class-wpbc-form-help.php:228
@@ -1815,164 +1827,164 @@ msgstr ""
1815
  #: inc/_ps/form/class-wpbc-form-help.php:659 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:407
1816
  #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:825
1817
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:750 inc/gateways/sage/wpbc-gw-sage.php:880
1818
- #: inc/gateways/stripe/wpbc-gw-stripe.php:895
1819
  msgid "Important!"
1820
  msgstr ""
1821
 
1822
  #: core/admin/page-ics-export.php:165 core/admin/page-ics-import.php:164
1823
- #: core/lib/wpbc_all_translations.php:287
1824
  #, php-format
1825
  msgid "This feature require %s plugin. You can install %s plugin from this %spage%s."
1826
  msgstr ""
1827
 
1828
  #: core/admin/page-ics-export.php:177 core/admin/page-ics-export.php:240
1829
- #: core/admin/page-ics-import.php:176 core/lib/wpbc_all_translations.php:288
1830
  msgid "How it works"
1831
  msgstr ""
1832
 
1833
  #: core/admin/page-ics-export.php:441 core/admin/page-ics-export.php:444
1834
- #: core/lib/wpbc_all_translations.php:289
1835
  msgid ".ics feed URL"
1836
  msgstr ""
1837
 
1838
- #: core/admin/page-ics-export.php:463 core/lib/wpbc_all_translations.php:290
1839
  #: inc/_ps/admin/br-table-export-feeds.php:69
1840
  msgid "Open in new window"
1841
  msgstr ""
1842
 
1843
- #: core/admin/page-ics-export.php:465 core/lib/wpbc_all_translations.php:291
1844
  msgid "Please enter URL for generating .ics feed"
1845
  msgstr ""
1846
 
1847
- #: core/admin/page-ics-export.php:468 core/lib/wpbc_all_translations.php:292
1848
  msgid "This .ics feed of bookings starting from today for 1 year"
1849
  msgstr ""
1850
 
1851
- #: core/admin/page-ics-general.php:68 core/admin/wpbc-toolbar-tiny.php:872
1852
- #: core/admin/wpbc-toolbar-tiny.php:1087 core/admin/wpbc-toolbar-tiny.php:1168
1853
- #: core/lib/wpbc_all_translations.php:293 inc/_bm/admin/api-settings-m.php:60
1854
  #: inc/_ps/wpbc-booking-select-widget.php:188
1855
  msgid "None"
1856
  msgstr ""
1857
 
1858
- #: core/admin/page-ics-general.php:101 core/lib/wpbc_all_translations.php:294
1859
  msgid "Event Title"
1860
  msgstr ""
1861
 
1862
  #: core/admin/page-ics-general.php:102 core/admin/page-ics-general.php:112
1863
- #: core/admin/page-ics-general.php:122 core/lib/wpbc_all_translations.php:295
1864
  #, php-format
1865
  msgid "Select field for assigning to %sevent property%s"
1866
  msgstr ""
1867
 
1868
- #: core/admin/page-ics-general.php:111 core/lib/wpbc_all_translations.php:296
1869
  msgid "Event Description (optional field)"
1870
  msgstr ""
1871
 
1872
- #: core/admin/page-ics-general.php:121 core/lib/wpbc_all_translations.php:297
1873
  msgid "Location"
1874
  msgstr ""
1875
 
1876
  #: core/admin/page-ics-general.php:132 core/admin/wpbc-class-listing.php:205
1877
- #: core/lib/wpbc_all_translations.php:298 core/sync/wpbc-gcal.php:314
1878
  #: inc/_bl/admin/activation-l.php:119 inc/_mu/multiuser.php:626 inc/_ps/admin/activation-p.php:45
1879
  msgid "Default"
1880
  msgstr ""
1881
 
1882
- #: core/admin/page-ics-general.php:158 core/lib/wpbc_all_translations.php:299
1883
  #: core/sync/wpbc-gcal.php:309
1884
  msgid "Timezone"
1885
  msgstr ""
1886
 
1887
- #: core/admin/page-ics-general.php:159 core/lib/wpbc_all_translations.php:300
1888
  #: core/sync/wpbc-gcal.php:343
1889
  msgid "Select a city in your required timezone, if you are having problems with dates and times."
1890
  msgstr ""
1891
 
1892
- #: core/admin/page-ics-general.php:171 core/lib/wpbc_all_translations.php:301
1893
  #: inc/_bs/admin/api-settings-s.php:314
1894
  msgid "Use check in/out time"
1895
  msgstr ""
1896
 
1897
- #: core/admin/page-ics-general.php:172 core/lib/wpbc_all_translations.php:302
1898
  msgid "Use check in/out time of plugin, during import .ics feeds"
1899
  msgstr ""
1900
 
1901
- #: core/admin/page-ics-general.php:179 core/lib/wpbc_all_translations.php:303
1902
  msgid "Append check out day"
1903
  msgstr ""
1904
 
1905
- #: core/admin/page-ics-general.php:180 core/lib/wpbc_all_translations.php:304
1906
  msgid "Append one check out day, during import .ics feeds, if activated using check in/out times"
1907
  msgstr ""
1908
 
1909
  #: core/admin/page-ics-general.php:252 core/admin/page-settings.php:74
1910
- #: core/lib/wpbc_all_translations.php:305 inc/gateways/page-gateways.php:510
1911
  msgid "General"
1912
  msgstr ""
1913
 
1914
  #: core/admin/page-ics-general.php:253 core/admin/page-ics-general.php:254
1915
  #: core/admin/page-ics-general.php:361 core/admin/page-import-gcal.php:485
1916
  #: core/admin/page-settings.php:75 core/admin/page-settings.php:76
1917
- #: core/lib/wpbc_all_translations.php:306 core/wpbc.php:188
1918
  msgid "General Settings"
1919
  msgstr ""
1920
 
1921
- #: core/admin/page-ics-general.php:368 core/lib/wpbc_all_translations.php:307
1922
  msgid "Assign events fields to specific booking form field"
1923
  msgstr ""
1924
 
1925
  #: core/admin/page-ics-general.php:376 core/admin/page-settings.php:116
1926
- #: core/admin/page-settings.php:238 core/lib/wpbc_all_translations.php:308
1927
  #: inc/_bl/admin/page-search.php:599 inc/_bl/admin/page-search.php:633
1928
- #: inc/_bl/wpbc-search-availability.php:167 inc/_bl/wpbc-search-availability.php:615
1929
  #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:854 inc/gateways/ideal/wpbc-gw-ideal.php:914
1930
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:774 inc/gateways/paypal/wpbc-gw-paypal.php:1052
1931
  #: inc/gateways/sage/wpbc-gw-sage.php:902 inc/gateways/stripe/wpbc-gw-stripe.php:917
1932
  msgid "Advanced"
1933
  msgstr ""
1934
 
1935
- #: core/admin/page-ics-import.php:62 core/lib/wpbc_all_translations.php:309
1936
  msgid "feeds"
1937
  msgstr ""
1938
 
1939
  #: core/admin/page-ics-import.php:433 core/admin/wpbc-sql.php:588
1940
- #: core/admin/wpbc-toolbar-tiny.php:328 core/lib/wpbc_all_translations.php:310
1941
  #: inc/_bl/admin/page-coupons.php:1409 inc/_ps/p-toolbar.php:925 inc/_ps/p-toolbar.php:956
1942
  msgid "parent resource"
1943
  msgstr ""
1944
 
1945
- #: core/admin/page-ics-import.php:455 core/lib/wpbc_all_translations.php:311
1946
  msgid "Enter URL to .ics feed"
1947
  msgstr ""
1948
 
1949
- #: core/admin/page-ics-import.php:460 core/lib/wpbc_all_translations.php:312
1950
  msgid "Choose file"
1951
  msgstr ""
1952
 
1953
- #: core/admin/page-ics-import.php:461 core/lib/wpbc_all_translations.php:313
1954
  msgid "Insert file URL"
1955
  msgstr ""
1956
 
1957
- #: core/admin/page-ics-import.php:462 core/lib/wpbc_all_translations.php:314
1958
  msgid "Upload / Select "
1959
  msgstr ""
1960
 
1961
- #: core/admin/page-ics-import.php:499 core/lib/wpbc_all_translations.php:315
1962
  msgid "What does .ics feeds import/export mean?"
1963
  msgstr ""
1964
 
1965
- #: core/admin/page-ics-import.php:507 core/lib/wpbc_all_translations.php:316
1966
  #, php-format
1967
  msgid "Its useful, if you need to import/export bookings from/to external websites, like %s"
1968
  msgstr ""
1969
 
1970
- #: core/admin/page-ics-import.php:515 core/lib/wpbc_all_translations.php:317
1971
  msgid "and any other calendar that uses .ics format"
1972
  msgstr ""
1973
 
1974
- #: core/admin/page-ics-import.php:529 core/class/wpbc-class-welcome.php:556
1975
- #: core/lib/wpbc_all_translations.php:318
1976
  #, php-format
1977
  msgid ""
1978
  ".ics - is a file format of iCalendar standard for exchanging calendar and scheduling information "
@@ -1980,24 +1992,24 @@ msgid ""
1980
  "calendars updated and synchronized."
1981
  msgstr ""
1982
 
1983
- #: core/admin/page-ics-import.php:550 core/lib/wpbc_all_translations.php:319
1984
  msgid "How to start import of .ics feeds (files)?"
1985
  msgstr ""
1986
 
1987
  #: core/admin/page-ics-import.php:557 core/admin/page-ics-import.php:604
1988
- #: core/lib/wpbc_all_translations.php:320
1989
  #, php-format
1990
  msgid "Install %s plugin."
1991
  msgstr ""
1992
 
1993
- #: core/admin/page-ics-import.php:561 core/lib/wpbc_all_translations.php:321
1994
  #, php-format
1995
  msgid ""
1996
  "Insert %s shortcode into some post(s) or page(s). Check more info about this %sshortcode "
1997
  "configuration%s"
1998
  msgstr ""
1999
 
2000
- #: core/admin/page-ics-import.php:570 core/lib/wpbc_all_translations.php:322
2001
  #, php-format
2002
  msgid ""
2003
  "Using such shortcodes in pages give a great flexibility to import from different .ics feeds "
@@ -2005,26 +2017,26 @@ msgid ""
2005
  "accessing such different pages with different time intervals."
2006
  msgstr ""
2007
 
2008
- #: core/admin/page-ics-import.php:579 core/lib/wpbc_all_translations.php:323
2009
  msgid "Or you can import .ics feed or file directly at current page."
2010
  msgstr ""
2011
 
2012
- #: core/admin/page-ics-import.php:586 core/lib/wpbc_all_translations.php:324
2013
  #, php-format
2014
  msgid ""
2015
  "If you have inserted import shortcodes from %s, then you can configure your CRON for "
2016
  "periodically access these pages and import .ics feeds."
2017
  msgstr ""
2018
 
2019
- #: core/admin/page-ics-import.php:597 core/lib/wpbc_all_translations.php:325
2020
  msgid "How to start export of .ics feeds (files)?"
2021
  msgstr ""
2022
 
2023
- #: core/admin/page-ics-import.php:608 core/lib/wpbc_all_translations.php:326
2024
  msgid "Configure ULR feed(s) at this settings page."
2025
  msgstr ""
2026
 
2027
- #: core/admin/page-ics-import.php:613 core/lib/wpbc_all_translations.php:327
2028
  #, php-format
2029
  msgid ""
2030
  "Using such URL(s) you can import .ics feeds, from interface of other websites. %sCheck more "
@@ -2032,26 +2044,26 @@ msgid ""
2032
  "website."
2033
  msgstr ""
2034
 
2035
- #: core/admin/page-ics-import.php:622 core/lib/wpbc_all_translations.php:328
2036
  msgid "Visit these (previously configured URL feeds) pages for downloading .ics files."
2037
  msgstr ""
2038
 
2039
- #: core/admin/page-ics-import.php:677 core/lib/wpbc_all_translations.php:329
2040
- #: core/sync/wpbc-gcal-class.php:457 core/sync/wpbc-gcal.php:102 inc/_ps/personal.php:408
2041
  msgid "Done"
2042
  msgstr ""
2043
 
2044
- #: core/admin/page-import-gcal.php:60 core/lib/wpbc_all_translations.php:330
2045
  msgid "Activate auto import"
2046
  msgstr ""
2047
 
2048
- #: core/admin/page-import-gcal.php:61 core/lib/wpbc_all_translations.php:331
2049
  #, php-format
2050
  msgid "Check this box to %sactivate%s auto import events and creation bookings from them"
2051
  msgstr ""
2052
 
2053
  #: core/admin/page-import-gcal.php:71 core/admin/wpbc-toolbars.php:559
2054
- #: core/admin/wpbc-toolbars.php:793 core/lib/wpbc_all_translations.php:332 core/wpbc-emails.php:206
2055
  #: inc/_bm/admin/page-cost-advanced.php:461 inc/_bm/admin/page-cost-deposit.php:223
2056
  #: inc/_bm/admin/page-cost-early-late-booking.php:230
2057
  #: inc/_bm/admin/page-cost-early-late-booking.php:428 inc/_bm/admin/page-cost-valuation.php:346
@@ -2066,7 +2078,7 @@ msgstr ""
2066
  #: core/admin/wpbc-toolbars.php:563 core/admin/wpbc-toolbars.php:564
2067
  #: core/admin/wpbc-toolbars.php:794 core/admin/wpbc-toolbars.php:795
2068
  #: core/admin/wpbc-toolbars.php:796 core/admin/wpbc-toolbars.php:797
2069
- #: core/admin/wpbc-toolbars.php:798 core/lib/wpbc_all_translations.php:333
2070
  #: core/sync/wpbc-gcal.php:208 core/sync/wpbc-gcal.php:272 inc/_bl/admin/page-search.php:82
2071
  #: inc/_bm/admin/page-cost-deposit.php:225 inc/_bm/admin/page-cost-early-late-booking.php:228
2072
  #: inc/_bm/admin/page-cost-early-late-booking.php:430 inc/_bm/admin/page-cost-valuation.php:190
@@ -2076,23 +2088,23 @@ msgstr ""
2076
  msgid "days"
2077
  msgstr ""
2078
 
2079
- #: core/admin/page-import-gcal.php:78 core/lib/wpbc_all_translations.php:334
2080
  msgid "Import events every"
2081
  msgstr ""
2082
 
2083
- #: core/admin/page-import-gcal.php:79 core/lib/wpbc_all_translations.php:335
2084
  msgid "Select time duration of import requests."
2085
  msgstr ""
2086
 
2087
- #: core/admin/page-import-gcal.php:95 core/lib/wpbc_all_translations.php:336
2088
  msgid "Google API Key"
2089
  msgstr ""
2090
 
2091
- #: core/admin/page-import-gcal.php:96 core/lib/wpbc_all_translations.php:337
2092
  msgid "Please enter your Google API key. This field required to import events."
2093
  msgstr ""
2094
 
2095
- #: core/admin/page-import-gcal.php:98 core/lib/wpbc_all_translations.php:338
2096
  #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:317
2097
  #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:354
2098
  #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:385 inc/gateways/ideal/wpbc-gw-ideal.php:422
@@ -2103,175 +2115,175 @@ msgstr ""
2103
  msgid "Note:"
2104
  msgstr ""
2105
 
2106
- #: core/admin/page-import-gcal.php:99 core/lib/wpbc_all_translations.php:339
2107
  #, php-format
2108
  msgid "You can check in this %sinstruction how to generate and use your Google API key%s."
2109
  msgstr ""
2110
 
2111
- #: core/admin/page-import-gcal.php:120 core/lib/wpbc_all_translations.php:340
2112
  #: inc/_ps/admin/br-table-import-gcal-p.php:148
2113
  msgid "Google Calendar ID"
2114
  msgstr ""
2115
 
2116
- #: core/admin/page-import-gcal.php:138 core/lib/wpbc_all_translations.php:341
2117
  #: core/sync/wpbc-gcal.php:295
2118
  msgid "Maximum number"
2119
  msgstr ""
2120
 
2121
- #: core/admin/page-import-gcal.php:139 core/lib/wpbc_all_translations.php:342
2122
  #: core/sync/wpbc-gcal.php:298
2123
  msgid "You can specify the maximum number of events to import during one session."
2124
  msgstr ""
2125
 
2126
  #: core/admin/page-import-gcal.php:148 core/admin/page-import-gcal.php:230
2127
- #: core/lib/wpbc_all_translations.php:343 core/sync/wpbc-gcal.php:184 core/sync/wpbc-gcal.php:248
2128
  msgid "Now"
2129
  msgstr ""
2130
 
2131
  #: core/admin/page-import-gcal.php:149 core/admin/page-import-gcal.php:231
2132
- #: core/lib/wpbc_all_translations.php:344 core/sync/wpbc-gcal.php:185 core/sync/wpbc-gcal.php:249
2133
  msgid "00:00 today"
2134
  msgstr ""
2135
 
2136
  #: core/admin/page-import-gcal.php:150 core/admin/page-import-gcal.php:232
2137
- #: core/lib/wpbc_all_translations.php:345 core/sync/wpbc-gcal.php:186 core/sync/wpbc-gcal.php:250
2138
  msgid "Start of current week"
2139
  msgstr ""
2140
 
2141
  #: core/admin/page-import-gcal.php:151 core/admin/page-import-gcal.php:233
2142
- #: core/lib/wpbc_all_translations.php:346 core/sync/wpbc-gcal.php:187 core/sync/wpbc-gcal.php:251
2143
  msgid "Start of current month"
2144
  msgstr ""
2145
 
2146
  #: core/admin/page-import-gcal.php:152 core/admin/page-import-gcal.php:234
2147
- #: core/lib/wpbc_all_translations.php:347 core/sync/wpbc-gcal.php:188 core/sync/wpbc-gcal.php:252
2148
  msgid "End of current month"
2149
  msgstr ""
2150
 
2151
- #: core/admin/page-import-gcal.php:153 core/lib/wpbc_all_translations.php:348
2152
  #: core/sync/wpbc-gcal.php:189
2153
  msgid "The start of time"
2154
  msgstr ""
2155
 
2156
  #: core/admin/page-import-gcal.php:154 core/admin/page-import-gcal.php:236
2157
- #: core/lib/wpbc_all_translations.php:349 core/sync/wpbc-gcal.php:190 core/sync/wpbc-gcal.php:254
2158
  msgid "Specific date / time"
2159
  msgstr ""
2160
 
2161
- #: core/admin/page-import-gcal.php:160 core/lib/wpbc_all_translations.php:350
2162
  #: core/sync/wpbc-gcal.php:197
2163
  msgid "Select option, when to start retrieving events."
2164
  msgstr ""
2165
 
2166
  #: core/admin/page-import-gcal.php:175 core/admin/page-import-gcal.php:257
2167
- #: core/lib/wpbc_all_translations.php:351 core/sync/wpbc-gcal.php:199 core/sync/wpbc-gcal.php:263
2168
  msgid "Offset"
2169
  msgstr ""
2170
 
2171
  #: core/admin/page-import-gcal.php:176 core/admin/page-import-gcal.php:258
2172
- #: core/lib/wpbc_all_translations.php:352 core/sync/wpbc-gcal.php:199 core/sync/wpbc-gcal.php:263
2173
  msgid "Enter date / time"
2174
  msgstr ""
2175
 
2176
  #: core/admin/page-import-gcal.php:194 core/admin/page-import-gcal.php:276
2177
- #: core/lib/wpbc_all_translations.php:353 core/sync/wpbc-gcal.php:205 core/sync/wpbc-gcal.php:269
2178
  msgid "seconds"
2179
  msgstr ""
2180
 
2181
  #: core/admin/page-import-gcal.php:216 core/admin/page-import-gcal.php:298
2182
- #: core/lib/wpbc_all_translations.php:354 core/sync/wpbc-gcal.php:215
2183
  msgid ""
2184
  "You can specify an additional offset from you chosen start point. The offset can be negative."
2185
  msgstr ""
2186
 
2187
  #: core/admin/page-import-gcal.php:219 core/admin/page-import-gcal.php:301
2188
- #: core/lib/wpbc_all_translations.php:355 core/sync/wpbc-gcal.php:218 core/sync/wpbc-gcal.php:282
2189
  #, php-format
2190
  msgid "Type your date in format %s. Example: %s"
2191
  msgstr ""
2192
 
2193
- #: core/admin/page-import-gcal.php:235 core/lib/wpbc_all_translations.php:356
2194
  #: core/sync/wpbc-gcal.php:253
2195
  msgid "The end of time"
2196
  msgstr ""
2197
 
2198
- #: core/admin/page-import-gcal.php:241 core/admin/wpbc-toolbar-tiny.php:611
2199
- #: core/lib/wpbc_all_translations.php:357 core/sync/wpbc-gcal.php:235
2200
  msgid "Until"
2201
  msgstr ""
2202
 
2203
- #: core/admin/page-import-gcal.php:242 core/lib/wpbc_all_translations.php:358
2204
  #: core/sync/wpbc-gcal.php:261
2205
  msgid "Select option, when to stop retrieving events."
2206
  msgstr ""
2207
 
2208
- #: core/admin/page-import-gcal.php:318 core/lib/wpbc_all_translations.php:359
2209
  msgid "To get Google Calendar API key please follow this instruction"
2210
  msgstr ""
2211
 
2212
- #: core/admin/page-import-gcal.php:320 core/lib/wpbc_all_translations.php:360
2213
  #, php-format
2214
  msgid "Go to Google Developer Console: %s."
2215
  msgstr ""
2216
 
2217
- #: core/admin/page-import-gcal.php:321 core/lib/wpbc_all_translations.php:361
2218
  msgid "Give your project a name and click \"Create\"."
2219
  msgstr ""
2220
 
2221
- #: core/admin/page-import-gcal.php:322 core/lib/wpbc_all_translations.php:362
2222
  msgid "In the sidebar click on \"APIs & auth\"."
2223
  msgstr ""
2224
 
2225
- #: core/admin/page-import-gcal.php:323 core/lib/wpbc_all_translations.php:363
2226
  msgid "Click APIs and make sure \"Calendar API\" is set to ON."
2227
  msgstr ""
2228
 
2229
- #: core/admin/page-import-gcal.php:324 core/lib/wpbc_all_translations.php:364
2230
  msgid "Now click on \"Credentials\" in the sidebar."
2231
  msgstr ""
2232
 
2233
- #: core/admin/page-import-gcal.php:325 core/lib/wpbc_all_translations.php:365
2234
  msgid "Under the section \"Public API access\" click the button \"Create new Key\"."
2235
  msgstr ""
2236
 
2237
- #: core/admin/page-import-gcal.php:326 core/lib/wpbc_all_translations.php:366
2238
  msgid "On the popup click the button \"Server Key\" and click \"Create\"."
2239
  msgstr ""
2240
 
2241
- #: core/admin/page-import-gcal.php:327 core/lib/wpbc_all_translations.php:367
2242
  #, php-format
2243
  msgid ""
2244
  "You will now see a table loaded with the top item being the API Key. Copy this and paste it into "
2245
  "%sGoogle API Key%s field at this page."
2246
  msgstr ""
2247
 
2248
- #: core/admin/page-import-gcal.php:330 core/lib/wpbc_all_translations.php:368
2249
  msgid "Set Your Calendar to Public"
2250
  msgstr ""
2251
 
2252
  #: core/admin/page-import-gcal.php:332 core/admin/page-import-gcal.php:340
2253
- #: core/lib/wpbc_all_translations.php:369
2254
  msgid "Navigate to your Google calendars."
2255
  msgstr ""
2256
 
2257
  #: core/admin/page-import-gcal.php:333 core/admin/page-import-gcal.php:341
2258
- #: core/lib/wpbc_all_translations.php:370
2259
  msgid "Open the settings for the calendar."
2260
  msgstr ""
2261
 
2262
- #: core/admin/page-import-gcal.php:334 core/lib/wpbc_all_translations.php:371
2263
  msgid "Click the \"Share this Calendar\" link."
2264
  msgstr ""
2265
 
2266
- #: core/admin/page-import-gcal.php:335 core/lib/wpbc_all_translations.php:372
2267
  msgid "Click the checkbox to make calendar public. Do not check the other option."
2268
  msgstr ""
2269
 
2270
- #: core/admin/page-import-gcal.php:338 core/lib/wpbc_all_translations.php:373
2271
  msgid "Find Your Calendar ID"
2272
  msgstr ""
2273
 
2274
- #: core/admin/page-import-gcal.php:342 core/lib/wpbc_all_translations.php:374
2275
  #, php-format
2276
  msgid ""
2277
  "Now copy the Calendar ID to use in the plugin settings in your WordPress admin. Make sure to "
@@ -2279,33 +2291,33 @@ msgid ""
2279
  msgstr ""
2280
 
2281
  #: core/admin/page-import-gcal.php:407 core/admin/page-import-gcal.php:408
2282
- #: core/admin/page-import-gcal.php:409 core/lib/wpbc_all_translations.php:375
2283
  #: core/sync/wpbc-gcal.php:443 core/sync/wpbc-gcal.php:466
2284
  msgid "Import Google Calendar Events"
2285
  msgstr ""
2286
 
2287
  #: core/admin/page-import-gcal.php:487 core/admin/page-import-gcal.php:534
2288
- #: core/lib/wpbc_all_translations.php:376
2289
  msgid "Auto import events"
2290
  msgstr ""
2291
 
2292
  #: core/admin/page-import-gcal.php:489 core/admin/page-import-gcal.php:542
2293
- #: core/lib/wpbc_all_translations.php:377
2294
  msgid "Default settings for retrieving events"
2295
  msgstr ""
2296
 
2297
- #: core/admin/page-import-gcal.php:525 core/lib/wpbc_all_translations.php:378
2298
  msgid "Google Calendar - General Settings"
2299
  msgstr ""
2300
 
2301
  #: core/admin/page-settings.php:88 core/admin/page-settings.php:198
2302
- #: core/admin/wpbc-toolbar-tiny.php:241 core/lib/wpbc_all_translations.php:379
2303
  #: inc/_ps/form/class-wpbc-form-help.php:115
2304
  msgid "Calendar"
2305
  msgstr ""
2306
 
2307
  #: core/admin/page-settings.php:93 core/admin/page-settings.php:205
2308
- #: core/lib/wpbc_all_translations.php:380 core/wpbc-functions.php:1923
2309
  #: inc/_bm/admin/page-availability.php:47 inc/_bm/admin/page-availability.php:504
2310
  #: inc/_bm/admin/page-availability.php:596 inc/_bm/admin/page-availability.php:597
2311
  #: inc/_ps/wpbc-form-templates.php:279 inc/_ps/wpbc-form-templates.php:296
@@ -2313,44 +2325,44 @@ msgid "Availability"
2313
  msgstr ""
2314
 
2315
  #: core/admin/page-settings.php:103 core/admin/page-settings.php:219
2316
- #: core/lib/wpbc_all_translations.php:381
2317
  msgid "Booking Admin Panel"
2318
  msgstr ""
2319
 
2320
- #: core/admin/page-settings.php:111 core/lib/wpbc_all_translations.php:382
2321
  msgid "Auto cancellation / approval"
2322
  msgstr ""
2323
 
2324
  #: core/admin/page-settings.php:121 core/admin/page-settings.php:254
2325
- #: core/lib/wpbc_all_translations.php:383
2326
  msgid "Plugin Menu"
2327
  msgstr ""
2328
 
2329
- #: core/admin/page-settings.php:126 core/lib/wpbc_all_translations.php:384
2330
  msgid "Uninstall"
2331
  msgstr ""
2332
 
2333
- #: core/admin/page-settings.php:229 core/lib/wpbc_all_translations.php:385
2334
  msgid "Auto cancellation / auto approval of bookings"
2335
  msgstr ""
2336
 
2337
- #: core/admin/page-settings.php:247 core/lib/wpbc_all_translations.php:386
2338
  msgid "Information"
2339
  msgstr ""
2340
 
2341
- #: core/admin/page-settings.php:261 core/lib/wpbc_all_translations.php:387
2342
  msgid "Uninstall / deactivation"
2343
  msgstr ""
2344
 
2345
  #: core/admin/page-up.php:38 core/admin/wpbc-dashboard.php:505
2346
- #: core/lib/wpbc_all_translations.php:388 inc/_ps/admin/page-settings-up.php:38
2347
  msgid "Upgrade"
2348
  msgstr ""
2349
 
2350
- #: core/admin/wpbc-class-listing.php:103 core/admin/wpbc-toolbar-tiny.php:1517
2351
- #: core/admin/wpbc-toolbar-tiny.php:1526 core/lib/wpbc_all_translations.php:389
2352
  #: inc/_bl/admin/page-coupons.php:1003 inc/_bl/admin/page-coupons.php:1005
2353
- #: inc/_bl/wpbc-search-availability.php:625 inc/_bl/wpdev-booking-search-widget.php:75
2354
  #: inc/_bm/admin/page-availability.php:814 inc/_bm/admin/page-cost-deposit.php:81
2355
  #: inc/_bm/admin/page-cost-early-late-booking.php:82 inc/_bm/admin/page-cost-rate.php:77
2356
  #: inc/_bm/admin/page-cost-valuation.php:103 inc/_bm/admin/page-seasons.php:826
@@ -2358,836 +2370,841 @@ msgstr ""
2358
  msgid "Nothing Found"
2359
  msgstr ""
2360
 
2361
- #: core/admin/wpbc-class-listing.php:125 core/lib/wpbc_all_translations.php:390
2362
  #: inc/_ps/wpbc-print.php:83
2363
  msgid "Labels"
2364
  msgstr ""
2365
 
2366
- #: core/admin/wpbc-class-listing.php:129 core/lib/wpbc_all_translations.php:391
2367
  msgid "Booking Data"
2368
  msgstr ""
2369
 
2370
- #: core/admin/wpbc-class-listing.php:130 core/lib/wpbc_all_translations.php:392
2371
  msgid "Booking Dates"
2372
  msgstr ""
2373
 
2374
- #: core/admin/wpbc-class-listing.php:133 core/lib/wpbc_all_translations.php:393
2375
  msgid "Show ALL dates of booking"
2376
  msgstr ""
2377
 
2378
- #: core/admin/wpbc-class-listing.php:139 core/lib/wpbc_all_translations.php:394
2379
  msgid "Show only check in/out dates"
2380
  msgstr ""
2381
 
2382
- #: core/admin/wpbc-class-listing.php:220 core/lib/wpbc_all_translations.php:395
2383
  msgid "Resource not exist"
2384
  msgstr ""
2385
 
2386
- #: core/admin/wpbc-class-listing.php:251 core/lib/wpbc_all_translations.php:397
2387
  #: inc/_bs/lib_s.php:290 inc/_bs/lib_s.php:305
2388
  msgid "Unknown"
2389
  msgstr ""
2390
 
2391
- #: core/admin/wpbc-class-listing.php:393 core/lib/wpbc_all_translations.php:398
2392
  msgid "Move to trash"
2393
  msgstr ""
2394
 
2395
  #: core/admin/wpbc-class-listing.php:399 core/admin/wpbc-toolbars.php:1003
2396
- #: core/lib/wpbc_all_translations.php:399
2397
  msgid "Restore"
2398
  msgstr ""
2399
 
2400
- #: core/admin/wpbc-class-listing.php:403 core/lib/wpbc_all_translations.php:400
2401
  msgid "Do you really want to delete this booking ?"
2402
  msgstr ""
2403
 
2404
- #: core/admin/wpbc-class-listing.php:405 core/lib/wpbc_all_translations.php:401
2405
  #: inc/_bl/admin/page-coupons.php:814 inc/_bm/admin/page-seasons.php:608
2406
  msgid "Completely Delete"
2407
  msgstr ""
2408
 
2409
  #: core/admin/wpbc-class-listing.php:414 core/admin/wpbc-toolbars.php:941
2410
- #: core/lib/wpbc_all_translations.php:402
2411
  msgid "Approve"
2412
  msgstr ""
2413
 
2414
  #: core/admin/wpbc-class-listing.php:419 core/admin/wpbc-toolbars.php:959
2415
- #: core/lib/wpbc_all_translations.php:403
2416
  msgid "Do you really want to set booking as pending ?"
2417
  msgstr ""
2418
 
2419
- #: core/admin/wpbc-class-listing.php:430 core/lib/wpbc_all_translations.php:404
2420
  #: inc/_bs/lib_s.php:333
2421
  msgid "Created"
2422
  msgstr ""
2423
 
2424
  #: core/admin/wpbc-class-timeline.php:85 core/admin/wpbc-class-timeline.php:94
2425
- #: core/lib/wpbc_all_translations.php:405
2426
  msgid "Mon"
2427
  msgstr ""
2428
 
2429
  #: core/admin/wpbc-class-timeline.php:86 core/admin/wpbc-class-timeline.php:95
2430
- #: core/lib/wpbc_all_translations.php:406
2431
  msgid "Tue"
2432
  msgstr ""
2433
 
2434
  #: core/admin/wpbc-class-timeline.php:87 core/admin/wpbc-class-timeline.php:96
2435
- #: core/lib/wpbc_all_translations.php:407
2436
  msgid "Wed"
2437
  msgstr ""
2438
 
2439
  #: core/admin/wpbc-class-timeline.php:88 core/admin/wpbc-class-timeline.php:97
2440
- #: core/lib/wpbc_all_translations.php:408
2441
  msgid "Thu"
2442
  msgstr ""
2443
 
2444
  #: core/admin/wpbc-class-timeline.php:89 core/admin/wpbc-class-timeline.php:98
2445
- #: core/lib/wpbc_all_translations.php:409
2446
  msgid "Fri"
2447
  msgstr ""
2448
 
2449
  #: core/admin/wpbc-class-timeline.php:90 core/admin/wpbc-class-timeline.php:99
2450
- #: core/lib/wpbc_all_translations.php:410
2451
  msgid "Sat"
2452
  msgstr ""
2453
 
2454
  #: core/admin/wpbc-class-timeline.php:91 core/admin/wpbc-class-timeline.php:100
2455
- #: core/lib/wpbc_all_translations.php:411
2456
  msgid "Sun"
2457
  msgstr ""
2458
 
2459
  #: core/admin/wpbc-class-timeline.php:1201 core/admin/wpbc-class-timeline.php:1446
2460
- #: core/lib/wpbc_all_translations.php:412 inc/_ps/wpbc-form-templates.php:155
2461
  msgid "Times"
2462
  msgstr ""
2463
 
2464
- #: core/admin/wpbc-class-timeline.php:2217 core/lib/wpbc_all_translations.php:413
2465
  msgid "Decline"
2466
  msgstr ""
2467
 
2468
- #: core/admin/wpbc-class-timeline.php:2218 core/lib/wpbc_all_translations.php:414
2469
  msgid "Pay"
2470
  msgstr ""
2471
 
2472
- #: core/admin/wpbc-class-timeline.php:2271 core/admin/wpbc-class-timeline.php:2273
2473
- #: core/lib/wpbc_all_translations.php:415 core/wpbc-functions.php:1968 inc/_bs/lib_s.php:42
2474
  #: inc/_bs/lib_s.php:267 inc/_bs/lib_s.php:269 inc/_ps/admin/page-settings-form.php:345
2475
  #: inc/_ps/admin/page-settings-form.php:356
2476
  msgid "Payment"
2477
  msgstr ""
2478
 
2479
  #: core/admin/wpbc-dashboard.php:35 core/admin/wpbc-toolbar-tiny.php:226
2480
- #: core/lib/wpbc_all_translations.php:416 core/lib/wpdev-booking-widget.php:14
2481
  #: core/wpbc-functions.php:1819 core/wpbc.php:138 core/wpbc.php:167 core/wpbc.php:178
2482
  #: core/wpbc.php:189
2483
  msgid "Booking Calendar"
2484
  msgstr ""
2485
 
2486
  #: core/admin/wpbc-dashboard.php:319 core/admin/wpbc-dashboard.php:333
2487
- #: core/lib/wpbc_all_translations.php:417
2488
  msgid "Video guide"
2489
  msgstr ""
2490
 
2491
- #: core/admin/wpbc-dashboard.php:344 core/lib/wpbc_all_translations.php:418
2492
  msgid "Support"
2493
  msgstr ""
2494
 
2495
- #: core/admin/wpbc-dashboard.php:355 core/lib/wpbc_all_translations.php:419
2496
  msgid "Getting Started"
2497
  msgstr ""
2498
 
2499
- #: core/admin/wpbc-dashboard.php:359 core/lib/wpbc_all_translations.php:420
2500
  msgid "Help Info"
2501
  msgstr ""
2502
 
2503
  #: core/admin/wpbc-dashboard.php:362 core/admin/wpbc-toolbars.php:433
2504
- #: core/lib/wpbc_all_translations.php:421
2505
  msgid "FAQ"
2506
  msgstr ""
2507
 
2508
- #: core/admin/wpbc-dashboard.php:365 core/lib/wpbc_all_translations.php:422
2509
  msgid "Contact email"
2510
  msgstr ""
2511
 
2512
- #: core/admin/wpbc-dashboard.php:368 core/lib/wpbc_all_translations.php:423
2513
  msgid "Rate plugin (thanks:)"
2514
  msgstr ""
2515
 
2516
- #: core/admin/wpbc-dashboard.php:446 core/lib/wpbc_all_translations.php:424
2517
  msgid "Current version"
2518
  msgstr ""
2519
 
2520
- #: core/admin/wpbc-dashboard.php:451 core/lib/wpbc_all_translations.php:425
2521
  msgid "Demo"
2522
  msgstr ""
2523
 
2524
- #: core/admin/wpbc-dashboard.php:455 core/lib/wpbc_all_translations.php:426
2525
  msgid "Version"
2526
  msgstr ""
2527
 
2528
- #: core/admin/wpbc-dashboard.php:475 core/lib/wpbc_all_translations.php:427
2529
  msgid "Used for"
2530
  msgstr ""
2531
 
2532
- #: core/admin/wpbc-dashboard.php:484 core/lib/wpbc_all_translations.php:428
2533
  msgid "websites"
2534
  msgstr ""
2535
 
2536
- #: core/admin/wpbc-dashboard.php:486 core/lib/wpbc_all_translations.php:429
2537
  msgid "website"
2538
  msgstr ""
2539
 
2540
- #: core/admin/wpbc-dashboard.php:492 core/lib/wpbc_all_translations.php:430
2541
  msgid "Release date"
2542
  msgstr ""
2543
 
2544
- #: core/admin/wpbc-dashboard.php:507 core/lib/wpbc_all_translations.php:431
2545
  msgid "Explore Premium Features"
2546
  msgstr ""
2547
 
2548
- #: core/admin/wpbc-dashboard.php:525 core/lib/wpbc_all_translations.php:432
2549
  msgid "Statistic"
2550
  msgstr ""
2551
 
2552
- #: core/admin/wpbc-dashboard.php:529 core/lib/wpbc_all_translations.php:433
2553
  msgid "New (unverified) booking(s)"
2554
  msgstr ""
2555
 
2556
- #: core/admin/wpbc-dashboard.php:533 core/lib/wpbc_all_translations.php:434
2557
  msgid "Pending booking(s)"
2558
  msgstr ""
2559
 
2560
- #: core/admin/wpbc-dashboard.php:538 core/lib/wpbc_all_translations.php:435
2561
  msgid "Agenda"
2562
  msgstr ""
2563
 
2564
- #: core/admin/wpbc-dashboard.php:542 core/lib/wpbc_all_translations.php:436
2565
  msgid "New booking(s) made today"
2566
  msgstr ""
2567
 
2568
- #: core/admin/wpbc-dashboard.php:546 core/lib/wpbc_all_translations.php:437
2569
  msgid "Bookings for today"
2570
  msgstr ""
2571
 
2572
- #: core/admin/wpbc-toolbar-tiny.php:35 core/admin/wpbc-toolbar-tiny.php:2449
2573
- #: core/lib/wpbc_all_translations.php:438
2574
  msgid "Insert booking calendar"
2575
  msgstr ""
2576
 
2577
- #: core/admin/wpbc-toolbar-tiny.php:36 core/admin/wpbc-toolbar-tiny.php:2450
2578
- #: core/lib/wpbc_all_translations.php:439
2579
  msgid "Booking calendar"
2580
  msgstr ""
2581
 
2582
- #: core/admin/wpbc-toolbar-tiny.php:224 core/lib/wpbc_all_translations.php:440
2583
  msgid "Insert Shortcode"
2584
  msgstr ""
2585
 
2586
- #: core/admin/wpbc-toolbar-tiny.php:240 core/lib/wpbc_all_translations.php:441
2587
  #: inc/_ps/admin/api-settings-p.php:192
2588
  msgid "TimeLine"
2589
  msgstr ""
2590
 
2591
- #: core/admin/wpbc-toolbar-tiny.php:243 core/lib/wpbc_all_translations.php:442
2592
  msgid "Resources Selection"
2593
  msgstr ""
2594
 
2595
- #: core/admin/wpbc-toolbar-tiny.php:245 core/lib/wpbc_all_translations.php:443
2596
- #: core/wpbc-functions.php:1986 inc/_bl/admin/page-search.php:257 inc/_bl/biz_l.php:794
2597
- #: inc/_bl/biz_l.php:807
2598
  msgid "Search"
2599
  msgstr ""
2600
 
2601
- #: core/admin/wpbc-toolbar-tiny.php:246 core/lib/wpbc_all_translations.php:444
2602
  msgid "Only Form"
2603
  msgstr ""
2604
 
2605
- #: core/admin/wpbc-toolbar-tiny.php:249 core/lib/wpbc_all_translations.php:445
2606
  #: inc/_ps/form/class-wpbc-form-help.php:754
2607
  msgid "Other"
2608
  msgstr ""
2609
 
2610
- #: core/admin/wpbc-toolbar-tiny.php:295 core/lib/wpbc_all_translations.php:446
2611
  msgid "Insert into page"
2612
  msgstr ""
2613
 
2614
- #: core/admin/wpbc-toolbar-tiny.php:368 core/admin/wpbc-toolbar-tiny.php:1148
2615
- #: core/lib/wpbc_all_translations.php:447 core/wpbc.php:177 inc/_ps/admin/page-resources.php:40
2616
  #: inc/_ps/p-toolbar.php:696
2617
  msgid "Booking resources"
2618
  msgstr ""
2619
 
2620
- #: core/admin/wpbc-toolbar-tiny.php:369 core/lib/wpbc_all_translations.php:448
2621
  msgid "Select booking resources. Please use CTRL to select multiple booking resources."
2622
  msgstr ""
2623
 
2624
- #: core/admin/wpbc-toolbar-tiny.php:403 core/lib/wpbc_all_translations.php:449
 
2625
  msgid "View mode"
2626
  msgstr ""
2627
 
2628
- #: core/admin/wpbc-toolbar-tiny.php:404 core/lib/wpbc_all_translations.php:450
2629
  msgid "Select type of view format"
2630
  msgstr ""
2631
 
2632
- #: core/admin/wpbc-toolbar-tiny.php:426 core/admin/wpbc-toolbar-tiny.php:435
2633
- #: core/admin/wpbc-toolbars.php:777 core/lib/wpbc_all_translations.php:451
2634
  msgid "All bookings"
2635
  msgstr ""
2636
 
2637
- #: core/admin/wpbc-toolbar-tiny.php:457 core/lib/wpbc_all_translations.php:452
 
2638
  msgid "Number of months to scroll"
2639
  msgstr ""
2640
 
2641
- #: core/admin/wpbc-toolbar-tiny.php:458 core/lib/wpbc_all_translations.php:453
2642
  msgid "Select number of months to scroll after loading"
2643
  msgstr ""
2644
 
2645
- #: core/admin/wpbc-toolbar-tiny.php:479 core/lib/wpbc_all_translations.php:454
 
2646
  msgid "Number of days to scroll"
2647
  msgstr ""
2648
 
2649
- #: core/admin/wpbc-toolbar-tiny.php:480 core/lib/wpbc_all_translations.php:455
2650
  msgid "Select number of days to scroll after loading"
2651
  msgstr ""
2652
 
2653
- #: core/admin/wpbc-toolbar-tiny.php:500 core/admin/wpbc-toolbars.php:1450
2654
- #: core/lib/wpbc_all_translations.php:456
2655
  msgid "Start Date"
2656
  msgstr ""
2657
 
2658
- #: core/admin/wpbc-toolbar-tiny.php:578 core/lib/wpbc_all_translations.php:457
2659
  msgid "Select start date"
2660
  msgstr ""
2661
 
2662
- #: core/admin/wpbc-toolbar-tiny.php:671 core/admin/wpbc-toolbar-tiny.php:914
2663
- #: core/admin/wpbc-toolbar-tiny.php:1588 core/admin/wpbc-toolbar-tiny.php:1780
2664
- #: core/lib/wpbc_all_translations.php:458 core/lib/wpdev-booking-widget.php:118
2665
  #: inc/_ps/admin/br-table-import-gcal-p.php:170 inc/_ps/p-toolbar.php:897
2666
- #: inc/_ps/wpbc-booking-select-widget.php:153
 
2667
  msgid "Booking resource"
2668
  msgstr ""
2669
 
2670
- #: core/admin/wpbc-toolbar-tiny.php:672 core/admin/wpbc-toolbar-tiny.php:915
2671
- #: core/admin/wpbc-toolbar-tiny.php:1589 core/admin/wpbc-toolbar-tiny.php:1781
2672
- #: core/lib/wpbc_all_translations.php:459 inc/_ps/admin/br-table-import-gcal-p.php:184
2673
  msgid "Select booking resource"
2674
  msgstr ""
2675
 
2676
- #: core/admin/wpbc-toolbar-tiny.php:696 core/admin/wpbc-toolbar-tiny.php:1197
2677
- #: core/admin/wpbc-toolbar-tiny.php:1613 core/lib/wpbc_all_translations.php:460
2678
  #: inc/_bm/m-toolbar.php:30 inc/_ps/wpbc-booking-select-widget.php:238
2679
  msgid "Select default custom booking form"
2680
  msgstr ""
2681
 
2682
- #: core/admin/wpbc-toolbar-tiny.php:707 core/admin/wpbc-toolbar-tiny.php:937
2683
- #: core/admin/wpbc-toolbar-tiny.php:1285 core/admin/wpbc-toolbars.php:1565
2684
- #: core/lib/wpbc_all_translations.php:461 core/lib/wpdev-booking-widget.php:135
2685
  #: inc/_ps/wpbc-booking-select-widget.php:201
2686
  msgid "Visible months"
2687
  msgstr ""
2688
 
2689
- #: core/admin/wpbc-toolbar-tiny.php:708 core/admin/wpbc-toolbar-tiny.php:938
2690
- #: core/admin/wpbc-toolbar-tiny.php:1286 core/lib/wpbc_all_translations.php:462
2691
  msgid "Select number of month to show for calendar."
2692
  msgstr ""
2693
 
2694
- #: core/admin/wpbc-toolbar-tiny.php:728 core/admin/wpbc-toolbar-tiny.php:958
2695
- #: core/admin/wpbc-toolbar-tiny.php:1304 core/lib/wpbc_all_translations.php:463
2696
  msgid "Start month:"
2697
  msgstr ""
2698
 
2699
- #: core/admin/wpbc-toolbar-tiny.php:786 core/admin/wpbc-toolbar-tiny.php:1016
2700
- #: core/admin/wpbc-toolbar-tiny.php:1362 core/lib/wpbc_all_translations.php:464
2701
  msgid "Select start month of calendar"
2702
  msgstr ""
2703
 
2704
- #: core/admin/wpbc-toolbar-tiny.php:793 core/admin/wpbc-toolbar-tiny.php:1023
2705
- #: core/admin/wpbc-toolbar-tiny.php:1255 core/lib/wpbc_all_translations.php:465
2706
  msgid "Show advanced settings"
2707
  msgstr ""
2708
 
2709
- #: core/admin/wpbc-toolbar-tiny.php:794 core/admin/wpbc-toolbar-tiny.php:1024
2710
- #: core/admin/wpbc-toolbar-tiny.php:1256 core/lib/wpbc_all_translations.php:466
2711
  msgid "Hide advanced settings"
2712
  msgstr ""
2713
 
2714
- #: core/admin/wpbc-toolbar-tiny.php:804 core/admin/wpbc-toolbar-tiny.php:1034
2715
- #: core/admin/wpbc-toolbar-tiny.php:1266 core/lib/wpbc_all_translations.php:467
2716
  #, php-format
2717
  msgid "Setting advanced parameters of the calendar. %sLike width, height and structure %s"
2718
  msgstr ""
2719
 
2720
- #: core/admin/wpbc-toolbar-tiny.php:805 core/admin/wpbc-toolbar-tiny.php:1035
2721
- #: core/lib/wpbc_all_translations.php:468
2722
  #, php-format
2723
  msgid "%s or minimum and fixed number of days selection for the specific day of week or season.%s"
2724
  msgstr ""
2725
 
2726
- #: core/admin/wpbc-toolbar-tiny.php:815 core/admin/wpbc-toolbar-tiny.php:1045
2727
- #: core/admin/wpbc-toolbar-tiny.php:1369 core/admin/wpbc-toolbars.php:238
2728
- #: core/lib/wpbc_all_translations.php:469 inc/_ps/form/class-wpbc-field-help-checkbox.php:146
2729
- #: inc/_ps/form/class-wpbc-field-help-select.php:111
 
2730
  msgid "Options"
2731
  msgstr ""
2732
 
2733
- #: core/admin/wpbc-toolbar-tiny.php:836 core/admin/wpbc-toolbar-tiny.php:1066
2734
- #: core/admin/wpbc-toolbar-tiny.php:1390 core/lib/wpbc_all_translations.php:470
2735
  #, php-format
2736
  msgid "Please read more about the possible customizations of these %soptions%s %shere%s"
2737
  msgstr ""
2738
 
2739
- #: core/admin/wpbc-toolbar-tiny.php:840 core/admin/wpbc-toolbar-tiny.php:1070
2740
- #: core/admin/wpbc-toolbar-tiny.php:1394 core/lib/wpbc_all_translations.php:471
2741
  msgid "Specify the full width of calendar, height of date cell and number of months in one row. "
2742
  msgstr ""
2743
 
2744
- #: core/admin/wpbc-toolbar-tiny.php:841 core/admin/wpbc-toolbar-tiny.php:849
2745
- #: core/admin/wpbc-toolbar-tiny.php:1071 core/admin/wpbc-toolbar-tiny.php:1395
2746
- #: core/lib/wpbc_all_translations.php:472 inc/_bm/admin/page-availability.php:510
2747
  #: inc/_ps/form/class-wpbc-form-help.php:418 inc/_ps/form/class-wpbc-form-help.php:565
2748
- #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:229
2749
  #: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:158
2750
  msgid "Description"
2751
  msgstr ""
2752
 
2753
- #: core/admin/wpbc-toolbar-tiny.php:842 core/admin/wpbc-toolbar-tiny.php:1072
2754
- #: core/admin/wpbc-toolbar-tiny.php:1396 core/lib/wpbc_all_translations.php:473
2755
  msgid ""
2756
  "Calendar have 2 months in a row, the cell height is 30px and calendar full width 568px (possible "
2757
  "to use percentage for width: 100%)"
2758
  msgstr ""
2759
 
2760
- #: core/admin/wpbc-toolbar-tiny.php:843 core/admin/wpbc-toolbar-tiny.php:851
2761
- #: core/admin/wpbc-toolbar-tiny.php:1073 core/admin/wpbc-toolbar-tiny.php:1397
2762
- #: core/lib/wpbc_all_translations.php:474
2763
  msgid "Code Example"
2764
  msgstr ""
2765
 
2766
- #: core/admin/wpbc-toolbar-tiny.php:848 core/lib/wpbc_all_translations.php:475
2767
  msgid ""
2768
  "Specify that during certain seasons (or days of week), the specific minimum number of days must "
2769
  "be booked. "
2770
  msgstr ""
2771
 
2772
- #: core/admin/wpbc-toolbar-tiny.php:850 core/lib/wpbc_all_translations.php:476
2773
  msgid ""
2774
  "Visitor can select only 4 days starting at Monday, 3 or 7 days – Friday, 2 days – Saturday, etc…"
2775
  msgstr ""
2776
 
2777
- #: core/admin/wpbc-toolbar-tiny.php:857 core/lib/wpbc_all_translations.php:477
2778
  #, php-format
2779
  msgid ""
2780
  "Please, read more about the shortcodes %shere%s or JavaScript customization of the specific "
2781
  "shortcodes %shere%s"
2782
  msgstr ""
2783
 
2784
- #: core/admin/wpbc-toolbar-tiny.php:880 core/admin/wpbc-toolbar-tiny.php:1095
2785
- #: core/lib/wpbc_all_translations.php:478
2786
  msgid "Aggregate booking dates from other resources"
2787
  msgstr ""
2788
 
2789
- #: core/admin/wpbc-toolbar-tiny.php:881 core/admin/wpbc-toolbar-tiny.php:1096
2790
- #: core/lib/wpbc_all_translations.php:479
2791
  msgid ""
2792
  "Select booking resources, for getting booking dates from them and set such dates as unavailable "
2793
  "in destination calendar."
2794
  msgstr ""
2795
 
2796
- #: core/admin/wpbc-toolbar-tiny.php:1127 core/lib/wpbc_all_translations.php:480
2797
  #: inc/_bl/admin/page-search.php:382 inc/_bl/admin/page-search.php:415
2798
  #: inc/_bm/admin/api-settings-m.php:298 inc/_bm/admin/page-availability.php:252
2799
  #: inc/_bm/admin/page-cost-advanced.php:124 inc/_bm/admin/page-cost-deposit.php:341
2800
  #: inc/_bm/admin/page-cost-rate.php:214 inc/_bm/admin/page-cost.php:237
2801
  #: inc/_ps/admin/page-resources.php:201 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:818
2802
  #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:833
2803
- #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:478
2804
- #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:813
2805
  #: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:361 inc/gateways/sage/wpbc-gw-sage.php:873
2806
  #: inc/gateways/stripe/wpbc-gw-stripe.php:888
2807
  msgid "Note!"
2808
  msgstr ""
2809
 
2810
- #: core/admin/wpbc-toolbar-tiny.php:1128 core/lib/wpbc_all_translations.php:481
2811
  #, php-format
2812
  msgid ""
2813
  "This shortcode %s is using for selection of the booking form of specific booking resources in "
2814
  "selectbox"
2815
  msgstr ""
2816
 
2817
- #: core/admin/wpbc-toolbar-tiny.php:1141 core/admin/wpbc-toolbars.php:1613
2818
- #: core/lib/wpbc_all_translations.php:482 inc/_ps/admin/br-table-import-gcal-p.php:173
2819
  #: inc/_ps/wpbc-booking-select-widget.php:163
2820
  msgid "All"
2821
  msgstr ""
2822
 
2823
- #: core/admin/wpbc-toolbar-tiny.php:1150 core/lib/wpbc_all_translations.php:483
2824
  #: inc/_ps/wpbc-booking-select-widget.php:175
2825
  msgid ""
2826
  "Select booking resources, for showing in selectbox. Please use CTRL to select multiple booking "
2827
  "resources."
2828
  msgstr ""
2829
 
2830
- #: core/admin/wpbc-toolbar-tiny.php:1175 core/lib/wpbc_all_translations.php:484
2831
  #: inc/_ps/wpbc-booking-select-widget.php:181
2832
  msgid "Preselected resource"
2833
  msgstr ""
2834
 
2835
- #: core/admin/wpbc-toolbar-tiny.php:1176 core/lib/wpbc_all_translations.php:485
2836
  msgid "Define preselected resource."
2837
  msgstr ""
2838
 
2839
- #: core/admin/wpbc-toolbar-tiny.php:1201 core/lib/wpbc_all_translations.php:486
2840
  #: inc/_bm/admin/api-settings-m.php:485 inc/_ps/p-toolbar.php:1182
2841
  msgid "Default Form"
2842
  msgstr ""
2843
 
2844
- #: core/admin/wpbc-toolbar-tiny.php:1217 core/admin/wpbc-toolbar-tiny.php:1226
2845
- #: core/lib/wpbc_all_translations.php:487
2846
  msgid "Please select the resource:"
2847
  msgstr ""
2848
 
2849
- #: core/admin/wpbc-toolbar-tiny.php:1218 core/lib/wpbc_all_translations.php:488
2850
  msgid "Title near your select box."
2851
  msgstr ""
2852
 
2853
- #: core/admin/wpbc-toolbar-tiny.php:1235 core/lib/wpbc_all_translations.php:489
2854
  #: inc/_ps/wpbc-booking-select-widget.php:247
2855
  msgid "First option title"
2856
  msgstr ""
2857
 
2858
- #: core/admin/wpbc-toolbar-tiny.php:1236 core/lib/wpbc_all_translations.php:490
2859
- #: inc/_ps/personal.php:510
2860
  msgid "Please Select"
2861
  msgstr ""
2862
 
2863
- #: core/admin/wpbc-toolbar-tiny.php:1237 core/lib/wpbc_all_translations.php:491
2864
  #: inc/_ps/wpbc-booking-select-widget.php:254
2865
  msgid "First option in dropdown list."
2866
  msgstr ""
2867
 
2868
- #: core/admin/wpbc-toolbar-tiny.php:1237 core/lib/wpbc_all_translations.php:492
2869
  #: inc/_ps/wpbc-booking-select-widget.php:256
2870
  msgid "Please leave it empty if you want to skip it."
2871
  msgstr ""
2872
 
2873
- #: core/admin/wpbc-toolbar-tiny.php:1427 core/admin/wpbc-toolbar-tiny.php:1707
2874
- #: core/lib/wpbc_all_translations.php:493
2875
  msgid "Select shortcode to insert"
2876
  msgstr ""
2877
 
2878
- #: core/admin/wpbc-toolbar-tiny.php:1439 core/lib/wpbc_all_translations.php:494
2879
  msgid "Search form"
2880
  msgstr ""
2881
 
2882
- #: core/admin/wpbc-toolbar-tiny.php:1442 core/lib/wpbc_all_translations.php:495
2883
- #: inc/_bl/wpbc-search-availability.php:167 inc/_bl/wpbc-search-availability.php:615
2884
- #: inc/_bl/wpbc-search-availability.php:630
2885
  msgid "Search results"
2886
  msgstr ""
2887
 
2888
- #: core/admin/wpbc-toolbar-tiny.php:1461 core/lib/wpbc_all_translations.php:496
2889
  msgid "Check this box to show search results on other page"
2890
  msgstr ""
2891
 
2892
- #: core/admin/wpbc-toolbar-tiny.php:1478 core/lib/wpbc_all_translations.php:497
2893
  msgid "URL of search results:"
2894
  msgstr ""
2895
 
2896
- #: core/admin/wpbc-toolbar-tiny.php:1480 core/lib/wpbc_all_translations.php:498
2897
  msgid "Type the URL of search results page."
2898
  msgstr ""
2899
 
2900
- #: core/admin/wpbc-toolbar-tiny.php:1497 core/lib/wpbc_all_translations.php:499
2901
  msgid "Title of Search results:"
2902
  msgstr ""
2903
 
2904
- #: core/admin/wpbc-toolbar-tiny.php:1498 core/admin/wpbc-toolbar-tiny.php:1507
2905
- #: core/lib/wpbc_all_translations.php:500 inc/_bl/wpdev-booking-search-widget.php:79
2906
  msgid "Result(s) Found"
2907
  msgstr ""
2908
 
2909
- #: core/admin/wpbc-toolbar-tiny.php:1499 core/lib/wpbc_all_translations.php:501
2910
  msgid "Type the title of Search results."
2911
  msgstr ""
2912
 
2913
- #: core/admin/wpbc-toolbar-tiny.php:1499 core/lib/wpbc_all_translations.php:502
2914
  msgid "show number of search results"
2915
  msgstr ""
2916
 
2917
- #: core/admin/wpbc-toolbar-tiny.php:1516 core/lib/wpbc_all_translations.php:503
2918
  msgid "Nothing Found Message:"
2919
  msgstr ""
2920
 
2921
- #: core/admin/wpbc-toolbar-tiny.php:1518 core/lib/wpbc_all_translations.php:504
2922
  msgid "Type the message, when nothing found."
2923
  msgstr ""
2924
 
2925
- #: core/admin/wpbc-toolbar-tiny.php:1538 core/lib/wpbc_all_translations.php:505
2926
  msgid "Search only for users:"
2927
  msgstr ""
2928
 
2929
- #: core/admin/wpbc-toolbar-tiny.php:1540 core/lib/wpbc_all_translations.php:506
2930
  msgid ""
2931
  "Type IDs of the users (separated by comma \",\") for searching availability only for these "
2932
  "users, or leave it blank for searching for all users."
2933
  msgstr ""
2934
 
2935
- #: core/admin/wpbc-toolbar-tiny.php:1560 core/lib/wpbc_all_translations.php:507
2936
  #, php-format
2937
  msgid ""
2938
  "This shortcode %s is using for showing the search results at specific page, if the search form "
2939
  "is submit showing the search results at different page"
2940
  msgstr ""
2941
 
2942
- #: core/admin/wpbc-toolbar-tiny.php:1622 core/lib/wpbc_all_translations.php:508
2943
  msgid "date"
2944
  msgstr ""
2945
 
2946
- #: core/admin/wpbc-toolbar-tiny.php:1682 core/lib/wpbc_all_translations.php:509
2947
  msgid "Define date for booking"
2948
  msgstr ""
2949
 
2950
- #: core/admin/wpbc-toolbar-tiny.php:1720 core/lib/wpbc_all_translations.php:510
2951
  #: inc/_ps/p-toolbar.php:206
2952
  msgid "Edit Booking"
2953
  msgstr ""
2954
 
2955
- #: core/admin/wpbc-toolbar-tiny.php:1723 core/lib/wpbc_all_translations.php:511
2956
  msgid "Show listing of customer bookings"
2957
  msgstr ""
2958
 
2959
- #: core/admin/wpbc-toolbar-tiny.php:1726 core/lib/wpbc_all_translations.php:512
2960
  msgid "Show info about Booking Resource"
2961
  msgstr ""
2962
 
2963
- #: core/admin/wpbc-toolbar-tiny.php:1742 core/lib/wpbc_all_translations.php:513
2964
  #, php-format
2965
  msgid ""
2966
  "This shortcode %s is used on a page, where visitors can %smodify%s their own booking(s), %scancel"
2967
  "%s or make %spayment%s after receiving an admin email payment request"
2968
  msgstr ""
2969
 
2970
- #: core/admin/wpbc-toolbar-tiny.php:1743 core/lib/wpbc_all_translations.php:514
2971
  #, php-format
2972
  msgid ""
2973
  "The content of field %sURL to edit bookings%s on the %sgeneral booking settings page%s must link "
2974
  "to this page"
2975
  msgstr ""
2976
 
2977
- #: core/admin/wpbc-toolbar-tiny.php:1744 core/admin/wpbc-toolbar-tiny.php:1760
2978
- #: core/lib/wpbc_all_translations.php:515
2979
  #, php-format
2980
  msgid "Email templates, which use shortcodes: %s, will be linked to this page"
2981
  msgstr ""
2982
 
2983
- #: core/admin/wpbc-toolbar-tiny.php:1758 core/lib/wpbc_all_translations.php:516
2984
  #, php-format
2985
  msgid ""
2986
  "This shortcode %s is used on a page, where visitors can %sview listing%s of their own booking(s)"
2987
  msgstr ""
2988
 
2989
- #: core/admin/wpbc-toolbar-tiny.php:1759 core/lib/wpbc_all_translations.php:517
2990
  #, php-format
2991
  msgid ""
2992
  "The content of field %sURL of page for customer bookings listing%s on the %sgeneral booking "
2993
  "settings page%s must link to this page"
2994
  msgstr ""
2995
 
2996
- #: core/admin/wpbc-toolbar-tiny.php:1761 core/lib/wpbc_all_translations.php:518
2997
  #, php-format
2998
  msgid "%s You can use in this shortcode the same parameters as for %s shortcode"
2999
  msgstr ""
3000
 
3001
- #: core/admin/wpbc-toolbar-tiny.php:1761 core/lib/wpbc_all_translations.php:519
3002
  msgid "Trick"
3003
  msgstr ""
3004
 
3005
- #: core/admin/wpbc-toolbar-tiny.php:1802 core/lib/wpbc_all_translations.php:520
3006
  #: inc/_bl/admin/api-settings-l.php:466 inc/_ps/admin/br-table-export-feeds.php:79
3007
  #: inc/_ps/admin/br-table-import-gcal-p.php:63
3008
  msgid "Capacity"
3009
  msgstr ""
3010
 
3011
- #: core/admin/wpbc-toolbar-tiny.php:1808 core/lib/wpbc_all_translations.php:521
3012
  msgid "Select type of info to show."
3013
  msgstr ""
3014
 
3015
- #: core/admin/wpbc-toolbar-tiny.php:2118 core/admin/wpbc-toolbar-tiny.php:2161
3016
- #: core/admin/wpbc-toolbar-tiny.php:2245 core/admin/wpbc-toolbar-tiny.php:2334
3017
- #: core/lib/wpbc_all_translations.php:522
3018
  msgid "No booking resources"
3019
  msgstr ""
3020
 
3021
- #: core/admin/wpbc-toolbars.php:41 core/lib/wpbc_all_translations.php:523
3022
  msgid "Filters"
3023
  msgstr ""
3024
 
3025
- #: core/admin/wpbc-toolbars.php:346 core/lib/wpbc_all_translations.php:524
3026
  msgid "Expand Advanced Toolbar"
3027
  msgstr ""
3028
 
3029
- #: core/admin/wpbc-toolbars.php:353 core/lib/wpbc_all_translations.php:525
3030
  msgid "Collapse Advanced Toolbar"
3031
  msgstr ""
3032
 
3033
- #: core/admin/wpbc-toolbars.php:371 core/lib/wpbc_all_translations.php:526
3034
  msgid "Send email notification to customer after approval, cancellation or deletion of bookings"
3035
  msgstr ""
3036
 
3037
- #: core/admin/wpbc-toolbars.php:372 core/lib/wpbc_all_translations.php:527
3038
  msgid "Emails sending"
3039
  msgstr ""
3040
 
3041
- #: core/admin/wpbc-toolbars.php:397 core/lib/wpbc_all_translations.php:528
3042
  msgid "Booking ID"
3043
  msgstr ""
3044
 
3045
  #: core/admin/wpbc-toolbars.php:400 core/admin/wpbc-toolbars.php:2177
3046
- #: core/lib/wpbc_all_translations.php:529
3047
  msgid "Go"
3048
  msgstr ""
3049
 
3050
- #: core/admin/wpbc-toolbars.php:434 core/lib/wpbc_all_translations.php:530
3051
  msgid "Technical Support"
3052
  msgstr ""
3053
 
3054
- #: core/admin/wpbc-toolbars.php:436 core/lib/wpbc_all_translations.php:531
3055
  msgid "About Booking Calendar"
3056
  msgstr ""
3057
 
3058
  #: core/admin/wpbc-toolbars.php:503 core/admin/wpbc-toolbars.php:683
3059
  #: core/admin/wpbc-toolbars.php:888 core/admin/wpbc-toolbars.php:1463
3060
- #: core/lib/wpbc_all_translations.php:532 inc/_bs/lib_s.php:84
3061
  msgid "Apply"
3062
  msgstr ""
3063
 
3064
- #: core/admin/wpbc-toolbars.php:504 core/lib/wpbc_all_translations.php:533
3065
  msgid "Refresh booking listing"
3066
  msgstr ""
3067
 
3068
- #: core/admin/wpbc-toolbars.php:518 core/lib/wpbc_all_translations.php:534
3069
  msgid "Reset filter to default values"
3070
  msgstr ""
3071
 
3072
  #: core/admin/wpbc-toolbars.php:544 core/admin/wpbc-toolbars.php:759
3073
- #: core/lib/wpbc_all_translations.php:535
3074
  msgid "Any"
3075
  msgstr ""
3076
 
3077
  #: core/admin/wpbc-toolbars.php:565 core/admin/wpbc-toolbars.php:799
3078
- #: core/lib/wpbc_all_translations.php:536
3079
  msgid "week"
3080
  msgstr ""
3081
 
3082
  #: core/admin/wpbc-toolbars.php:566 core/admin/wpbc-toolbars.php:800
3083
- #: core/lib/wpbc_all_translations.php:537
3084
  msgid "weeks"
3085
  msgstr ""
3086
 
3087
  #: core/admin/wpbc-toolbars.php:567 core/admin/wpbc-toolbars.php:801
3088
- #: core/lib/wpbc_all_translations.php:538
3089
  msgid "month"
3090
  msgstr ""
3091
 
3092
  #: core/admin/wpbc-toolbars.php:568 core/admin/wpbc-toolbars.php:569
3093
  #: core/admin/wpbc-toolbars.php:570 core/admin/wpbc-toolbars.php:802
3094
  #: core/admin/wpbc-toolbars.php:803 core/admin/wpbc-toolbars.php:804
3095
- #: core/lib/wpbc_all_translations.php:539
3096
  msgid "months"
3097
  msgstr ""
3098
 
3099
  #: core/admin/wpbc-toolbars.php:578 core/admin/wpbc-toolbars.php:813
3100
- #: core/lib/wpbc_all_translations.php:540
3101
  msgid "Filter bookings by booking dates"
3102
  msgstr ""
3103
 
3104
- #: core/admin/wpbc-toolbars.php:582 core/lib/wpbc_all_translations.php:541
3105
  msgid "Current dates"
3106
  msgstr ""
3107
 
3108
  #: core/admin/wpbc-toolbars.php:583 core/admin/wpbc-toolbars.php:817
3109
- #: core/lib/wpbc_all_translations.php:542
3110
  msgid "Today"
3111
  msgstr ""
3112
 
3113
- #: core/admin/wpbc-toolbars.php:584 core/lib/wpbc_all_translations.php:543
3114
  msgid "Previous dates"
3115
  msgstr ""
3116
 
3117
  #: core/admin/wpbc-toolbars.php:585 core/admin/wpbc-toolbars.php:818
3118
- #: core/lib/wpbc_all_translations.php:544
3119
  msgid "All dates"
3120
  msgstr ""
3121
 
3122
- #: core/admin/wpbc-toolbars.php:587 core/lib/wpbc_all_translations.php:545
3123
  msgid "Today check in/out"
3124
  msgstr ""
3125
 
3126
- #: core/admin/wpbc-toolbars.php:588 core/lib/wpbc_all_translations.php:546
3127
  msgid "Check In - Tomorrow"
3128
  msgstr ""
3129
 
3130
- #: core/admin/wpbc-toolbars.php:589 core/lib/wpbc_all_translations.php:547
3131
  msgid "Check Out - Tomorrow"
3132
  msgstr ""
3133
 
3134
- #: core/admin/wpbc-toolbars.php:594 core/lib/wpbc_all_translations.php:548
3135
  #: core/wpbc-functions.php:2496
3136
  msgid "Next"
3137
  msgstr ""
3138
 
3139
  #: core/admin/wpbc-toolbars.php:618 core/admin/wpbc-toolbars.php:823
3140
- #: core/lib/wpbc_all_translations.php:549
3141
  msgid "Prior"
3142
  msgstr ""
3143
 
3144
  #: core/admin/wpbc-toolbars.php:658 core/admin/wpbc-toolbars.php:863
3145
- #: core/lib/wpbc_all_translations.php:550
3146
  msgid "Check-in"
3147
  msgstr ""
3148
 
3149
  #: core/admin/wpbc-toolbars.php:670 core/admin/wpbc-toolbars.php:875
3150
- #: core/lib/wpbc_all_translations.php:551
3151
  msgid "Check-out"
3152
  msgstr ""
3153
 
3154
- #: core/admin/wpbc-toolbars.php:742 core/lib/wpbc_all_translations.php:552
3155
  msgid "Order by"
3156
  msgstr ""
3157
 
3158
- #: core/admin/wpbc-toolbars.php:756 core/lib/wpbc_all_translations.php:553
3159
  msgid "Exist"
3160
  msgstr ""
3161
 
3162
- #: core/admin/wpbc-toolbars.php:757 core/lib/wpbc_all_translations.php:554
3163
  msgid "In Trash"
3164
  msgstr ""
3165
 
3166
- #: core/admin/wpbc-toolbars.php:778 core/lib/wpbc_all_translations.php:555
3167
  msgid "New bookings"
3168
  msgstr ""
3169
 
3170
- #: core/admin/wpbc-toolbars.php:815 core/lib/wpbc_all_translations.php:556
3171
  msgid "Creation"
3172
  msgstr ""
3173
 
3174
- #: core/admin/wpbc-toolbars.php:942 core/lib/wpbc_all_translations.php:557
3175
  msgid "Approve selected bookings"
3176
  msgstr ""
3177
 
3178
- #: core/admin/wpbc-toolbars.php:957 core/lib/wpbc_all_translations.php:558
3179
  msgid "Set selected bookings as pending"
3180
  msgstr ""
3181
 
3182
- #: core/admin/wpbc-toolbars.php:987 core/lib/wpbc_all_translations.php:559
3183
  msgid "Move selected bookings to trash"
3184
  msgstr ""
3185
 
3186
- #: core/admin/wpbc-toolbars.php:1004 core/lib/wpbc_all_translations.php:560
3187
  msgid "Restore selected bookings"
3188
  msgstr ""
3189
 
3190
- #: core/admin/wpbc-toolbars.php:1020 core/lib/wpbc_all_translations.php:561
3191
  #: inc/_bl/admin/page-coupons.php:216 inc/_bl/admin/page-coupons.php:222
3192
  #: inc/_bm/admin/page-availability.php:240 inc/_bm/admin/page-availability.php:246
3193
  #: inc/_bm/admin/page-cost-valuation.php:567 inc/_bm/admin/page-cost.php:223
@@ -3197,343 +3214,343 @@ msgstr ""
3197
  msgid "Delete"
3198
  msgstr ""
3199
 
3200
- #: core/admin/wpbc-toolbars.php:1021 core/lib/wpbc_all_translations.php:562
3201
  msgid "Delete selected bookings"
3202
  msgstr ""
3203
 
3204
- #: core/admin/wpbc-toolbars.php:1023 core/lib/wpbc_all_translations.php:563
3205
  #: core/sync/wpbc-gcal-class.php:671
3206
  msgid "Do you really want to delete selected booking(s) ?"
3207
  msgstr ""
3208
 
3209
- #: core/admin/wpbc-toolbars.php:1039 core/lib/wpbc_all_translations.php:564
3210
  msgid "Reason of cancellation"
3211
  msgstr ""
3212
 
3213
- #: core/admin/wpbc-toolbars.php:1062 core/lib/wpbc_all_translations.php:565
3214
  msgid "Read All"
3215
  msgstr ""
3216
 
3217
- #: core/admin/wpbc-toolbars.php:1063 core/lib/wpbc_all_translations.php:566
3218
  msgid "Mark as read all bookings"
3219
  msgstr ""
3220
 
3221
- #: core/admin/wpbc-toolbars.php:1076 core/lib/wpbc_all_translations.php:567
3222
  msgid "Read"
3223
  msgstr ""
3224
 
3225
- #: core/admin/wpbc-toolbars.php:1077 core/lib/wpbc_all_translations.php:568
3226
  msgid "Mark as read selected bookings"
3227
  msgstr ""
3228
 
3229
- #: core/admin/wpbc-toolbars.php:1091 core/lib/wpbc_all_translations.php:569
3230
  msgid "Unread"
3231
  msgstr ""
3232
 
3233
- #: core/admin/wpbc-toolbars.php:1092 core/lib/wpbc_all_translations.php:570
3234
  msgid "Mark as Unread selected bookings"
3235
  msgstr ""
3236
 
3237
  #: core/admin/wpbc-toolbars.php:1141 core/admin/wpbc-toolbars.php:1220
3238
- #: core/lib/wpbc_all_translations.php:571
3239
  msgid "Show month"
3240
  msgstr ""
3241
 
3242
- #: core/admin/wpbc-toolbars.php:1155 core/lib/wpbc_all_translations.php:572
3243
  msgid "Show 3 months"
3244
  msgstr ""
3245
 
3246
- #: core/admin/wpbc-toolbars.php:1169 core/lib/wpbc_all_translations.php:573
3247
  msgid "Show year"
3248
  msgstr ""
3249
 
3250
- #: core/admin/wpbc-toolbars.php:1192 core/lib/wpbc_all_translations.php:574
3251
  msgid "Show day"
3252
  msgstr ""
3253
 
3254
- #: core/admin/wpbc-toolbars.php:1206 core/lib/wpbc_all_translations.php:575
3255
  msgid "Show week"
3256
  msgstr ""
3257
 
3258
- #: core/admin/wpbc-toolbars.php:1234 core/lib/wpbc_all_translations.php:576
3259
  msgid "Show 2 months"
3260
  msgstr ""
3261
 
3262
  #: core/admin/wpbc-toolbars.php:1291 core/admin/wpbc-toolbars.php:1305
3263
- #: core/admin/wpbc-toolbars.php:1352 core/lib/wpbc_all_translations.php:577
3264
  msgid "Previous 4 weeks"
3265
  msgstr ""
3266
 
3267
  #: core/admin/wpbc-toolbars.php:1292 core/admin/wpbc-toolbars.php:1306
3268
- #: core/admin/wpbc-toolbars.php:1353 core/lib/wpbc_all_translations.php:578
3269
  msgid "Previous week"
3270
  msgstr ""
3271
 
3272
  #: core/admin/wpbc-toolbars.php:1293 core/admin/wpbc-toolbars.php:1307
3273
- #: core/admin/wpbc-toolbars.php:1354 core/lib/wpbc_all_translations.php:579
3274
  msgid "Current week"
3275
  msgstr ""
3276
 
3277
  #: core/admin/wpbc-toolbars.php:1294 core/admin/wpbc-toolbars.php:1308
3278
- #: core/admin/wpbc-toolbars.php:1355 core/lib/wpbc_all_translations.php:580
3279
  msgid "Next week"
3280
  msgstr ""
3281
 
3282
  #: core/admin/wpbc-toolbars.php:1295 core/admin/wpbc-toolbars.php:1309
3283
- #: core/admin/wpbc-toolbars.php:1356 core/lib/wpbc_all_translations.php:581
3284
  msgid "Next 4 weeks"
3285
  msgstr ""
3286
 
3287
  #: core/admin/wpbc-toolbars.php:1319 core/admin/wpbc-toolbars.php:1369
3288
- #: core/admin/wpbc-toolbars.php:1384 core/lib/wpbc_all_translations.php:582
3289
  msgid "Previous 3 months"
3290
  msgstr ""
3291
 
3292
  #: core/admin/wpbc-toolbars.php:1320 core/admin/wpbc-toolbars.php:1370
3293
- #: core/admin/wpbc-toolbars.php:1385 core/lib/wpbc_all_translations.php:583
3294
  msgid "Previous month"
3295
  msgstr ""
3296
 
3297
  #: core/admin/wpbc-toolbars.php:1321 core/admin/wpbc-toolbars.php:1371
3298
- #: core/admin/wpbc-toolbars.php:1386 core/lib/wpbc_all_translations.php:584
3299
  msgid "Current month"
3300
  msgstr ""
3301
 
3302
  #: core/admin/wpbc-toolbars.php:1322 core/admin/wpbc-toolbars.php:1372
3303
- #: core/admin/wpbc-toolbars.php:1387 core/lib/wpbc_all_translations.php:585
3304
  msgid "Next month"
3305
  msgstr ""
3306
 
3307
  #: core/admin/wpbc-toolbars.php:1323 core/admin/wpbc-toolbars.php:1373
3308
- #: core/admin/wpbc-toolbars.php:1388 core/lib/wpbc_all_translations.php:586
3309
  msgid "Next 3 months"
3310
  msgstr ""
3311
 
3312
- #: core/admin/wpbc-toolbars.php:1337 core/lib/wpbc_all_translations.php:587
3313
  msgid "Previous 7 days"
3314
  msgstr ""
3315
 
3316
- #: core/admin/wpbc-toolbars.php:1338 core/lib/wpbc_all_translations.php:588
3317
  msgid "Previous day"
3318
  msgstr ""
3319
 
3320
- #: core/admin/wpbc-toolbars.php:1339 core/lib/wpbc_all_translations.php:589
3321
  msgid "Current day"
3322
  msgstr ""
3323
 
3324
- #: core/admin/wpbc-toolbars.php:1340 core/lib/wpbc_all_translations.php:590
3325
  msgid "Next day"
3326
  msgstr ""
3327
 
3328
- #: core/admin/wpbc-toolbars.php:1341 core/lib/wpbc_all_translations.php:591
3329
  msgid "Next 7 days"
3330
  msgstr ""
3331
 
3332
- #: core/admin/wpbc-toolbars.php:1612 core/lib/wpbc_all_translations.php:592
3333
  msgid "Number of months in one row"
3334
  msgstr ""
3335
 
3336
- #: core/admin/wpbc-toolbars.php:1657 core/lib/wpbc_all_translations.php:593
3337
  msgid "Calendar width"
3338
  msgstr ""
3339
 
3340
- #: core/admin/wpbc-toolbars.php:1705 core/lib/wpbc_all_translations.php:594
3341
  msgid "Calendar cell height"
3342
  msgstr ""
3343
 
3344
  #: core/admin/wpbc-toolbars.php:1812 core/admin/wpbc-toolbars.php:1813
3345
- #: core/lib/wpbc_all_translations.php:595
3346
  msgid "Send email notification to customer about this operation"
3347
  msgstr ""
3348
 
3349
  #: core/admin/wpbc-toolbars.php:1846 core/admin/wpbc-toolbars.php:1847
3350
- #: core/lib/wpbc_all_translations.php:596
3351
  msgid "Add to Google Calendar"
3352
  msgstr ""
3353
 
3354
- #: core/admin/wpbc-toolbars.php:2037 core/lib/wpbc_all_translations.php:597
3355
  #: inc/gateways/page-gateways.php:1389 inc/gateways/page-gateways.php:1407
3356
  msgid "Total"
3357
  msgstr ""
3358
 
3359
- #: core/admin/wpbc-toolbars.php:2173 core/lib/wpbc_all_translations.php:598
3360
  msgid "ID or Title"
3361
  msgstr ""
3362
 
3363
- #: core/any/api-emails.php:504 core/lib/wpbc_all_translations.php:599
3364
  msgid "Email copy to"
3365
  msgstr ""
3366
 
3367
  #: core/class/wpbc-class-dismiss.php:26 core/class/wpbc-class-dismiss.php:30
3368
- #: core/lib/wpbc_all_translations.php:600 core/wpbc-functions.php:2763 core/wpbc-functions.php:2786
3369
  msgid "Dismiss"
3370
  msgstr ""
3371
 
3372
- #: core/class/wpbc-class-notices.php:26 core/lib/wpbc_all_translations.php:601
3373
  #, php-format
3374
  msgid ""
3375
  "Probably you updated your paid version of Booking Calendar by free version or update process "
3376
  "failed. You can request the new update of your paid version at %1sthis page%2s."
3377
  msgstr ""
3378
 
3379
- #: core/class/wpbc-class-welcome.php:1496 core/class/wpbc-class-welcome.php:1982
3380
- #: core/lib/wpbc_all_translations.php:602 inc/_ps/admin/page-settings-up.php:144
3381
  msgid "Purchase"
3382
  msgstr ""
3383
 
3384
- #: core/class/wpbc-class-welcome.php:1496 core/class/wpbc-class-welcome.php:1982
3385
- #: core/lib/wpbc_all_translations.php:603 inc/_ps/admin/page-settings-up.php:144
3386
  msgid "Upgrade Now"
3387
  msgstr ""
3388
 
3389
  #: core/lib/wpbc-ajax.php:33 core/lib/wpbc-ajax.php:37 core/lib/wpbc-ajax.php:89
3390
- #: core/lib/wpbc_all_translations.php:604 inc/gateways/ideal/wpbc-gw-ideal.php:1113
3391
  #, php-format
3392
  msgid ""
3393
  "%sError!%s Request do not pass security check! Please refresh the page and try one more time."
3394
  msgstr ""
3395
 
3396
- #: core/lib/wpbc-ajax.php:138 core/lib/wpbc_all_translations.php:605
3397
  msgid "Set as Unread"
3398
  msgstr ""
3399
 
3400
- #: core/lib/wpbc-ajax.php:140 core/lib/wpbc_all_translations.php:606
3401
  msgid "Set as Read"
3402
  msgstr ""
3403
 
3404
- #: core/lib/wpbc-ajax.php:206 core/lib/wpbc_all_translations.php:607
3405
  msgid "Set as Approved"
3406
  msgstr ""
3407
 
3408
- #: core/lib/wpbc-ajax.php:208 core/lib/wpbc_all_translations.php:608
3409
  msgid "Set as Pending"
3410
  msgstr ""
3411
 
3412
- #: core/lib/wpbc-ajax.php:228 core/lib/wpbc-ajax.php:303 core/lib/wpbc_all_translations.php:609
3413
  msgid "Reason for cancellation here"
3414
  msgstr ""
3415
 
3416
- #: core/lib/wpbc-ajax.php:229 core/lib/wpbc-ajax.php:304 core/lib/wpbc_all_translations.php:610
3417
  msgid "Reason of cancellation here"
3418
  msgstr ""
3419
 
3420
- #: core/lib/wpbc-ajax.php:272 core/lib/wpbc_all_translations.php:611
3421
  msgid "Moved to trash"
3422
  msgstr ""
3423
 
3424
- #: core/lib/wpbc-ajax.php:280 core/lib/wpbc_all_translations.php:612
3425
  msgid "Restored"
3426
  msgstr ""
3427
 
3428
- #: core/lib/wpbc-ajax.php:453 core/lib/wpbc_all_translations.php:613 inc/_ps/personal.php:141
3429
  msgid "Saved"
3430
  msgstr ""
3431
 
3432
- #: core/lib/wpbc-booking-new.php:37 core/lib/wpbc_all_translations.php:614
3433
  msgid "The code you entered is incorrect"
3434
  msgstr ""
3435
 
3436
- #: core/lib/wpbc-booking-new.php:138 core/lib/wpbc_all_translations.php:615
3437
  msgid "Updating..."
3438
  msgstr ""
3439
 
3440
- #: core/lib/wpbc-booking-new.php:163 core/lib/wpbc_all_translations.php:616
3441
- #: inc/_ps/personal.php:2296 inc/_ps/personal.php:2487
3442
  msgid "Updated successfully"
3443
  msgstr ""
3444
 
3445
- #: core/lib/wpbc-booking-new.php:765 core/lib/wpbc_all_translations.php:617
3446
  msgid "Error!"
3447
  msgstr ""
3448
 
3449
- #: core/lib/wpbc-booking-new.php:766 core/lib/wpbc_all_translations.php:618
3450
  msgid ""
3451
  "Probably these date(s) just was booking by other visitor. Please reload this page and make "
3452
  "booking again."
3453
  msgstr ""
3454
 
3455
- #: core/lib/wpbc_all_translations.php:396 inc/_bs/lib_s.php:46 inc/_bs/lib_s.php:287
3456
  msgid "Paid OK"
3457
  msgstr ""
3458
 
3459
- #: core/lib/wpbc_all_translations.php:619
3460
  msgid "Email is sent to Visitor after Canceling of booking (moved to trash)."
3461
  msgstr ""
3462
 
3463
- #: core/lib/wpbc_all_translations.php:620
3464
  #, php-format
3465
  msgid ""
3466
  "Probabaly you updated your paid version of Booking Calendar by free version or update process "
3467
  "failed. You can request the new update of your paid version at %1sthis page%2s."
3468
  msgstr ""
3469
 
3470
- #: core/lib/wpbc_all_translations.php:621
3471
  msgid "Copy to admin"
3472
  msgstr ""
3473
 
3474
- #: core/lib/wpbc_all_translations.php:622
3475
  msgid "Enable / disable sending copy of this email notification to admin"
3476
  msgstr ""
3477
 
3478
- #: core/lib/wpbc_all_translations.php:623
3479
  msgid "Customization of email template, which is sending to Visitor after approval of booking"
3480
  msgstr ""
3481
 
3482
- #: core/lib/wpbc_all_translations.php:624
3483
  msgid "Email is sending to Visitor after Approval of booking."
3484
  msgstr ""
3485
 
3486
- #: core/lib/wpbc_all_translations.php:625
3487
  msgid "Customization of email template, which is sending to Visitor after Cancellation of booking"
3488
  msgstr ""
3489
 
3490
- #: core/lib/wpbc_all_translations.php:626
3491
  msgid "Email is sending to Visitor after Deleting of booking."
3492
  msgstr ""
3493
 
3494
- #: core/lib/wpbc_all_translations.php:627
3495
  msgid ""
3496
  "Customization of email template, which is sending to Visitor, when booking status is set to "
3497
  "Pending"
3498
  msgstr ""
3499
 
3500
- #: core/lib/wpbc_all_translations.php:628
3501
  msgid "Email is sending to Visitor after booking set as Pending."
3502
  msgstr ""
3503
 
3504
- #: core/lib/wpbc_all_translations.php:629
3505
  msgid "Email is sending to Visitor after Canceling of booking (moved to trash)."
3506
  msgstr ""
3507
 
3508
- #: core/lib/wpbc_all_translations.php:630
3509
  msgid "Confgure ULR feed(s) at this settings page."
3510
  msgstr ""
3511
 
3512
- #: core/lib/wpbc_all_translations.php:631
3513
  msgid "Reject"
3514
  msgstr ""
3515
 
3516
- #: core/lib/wpbc_all_translations.php:632
3517
  msgid "Visit these (previosly configured URL feeds) pages for downloading .ics files."
3518
  msgstr ""
3519
 
3520
- #: core/lib/wpbc_all_translations.php:633
3521
  msgid "Google Calendar"
3522
  msgstr ""
3523
 
3524
- #: core/lib/wpbc_all_translations.php:634
3525
  msgid "Events Import"
3526
  msgstr ""
3527
 
3528
- #: core/lib/wpbc_all_translations.php:635
3529
  msgid "Import Settings"
3530
  msgstr ""
3531
 
3532
- #: core/lib/wpbc_all_translations.php:636
3533
  msgid "Customization of synchronization with Google Calendar"
3534
  msgstr ""
3535
 
3536
- #: core/lib/wpbc_all_translations.php:637 core/wpbc-debug.php:123 core/wpbc-emails.php:441
3537
  #: core/wpbc.php:342 core/wpbc.php:383 inc/_bl/admin/page-coupons.php:1003
3538
  #: inc/_bl/admin/page-coupons.php:1005 inc/_bm/admin/page-availability.php:814
3539
  #: inc/_bm/admin/page-cost-deposit.php:81 inc/_bm/admin/page-cost-early-late-booking.php:82
@@ -3543,69 +3560,69 @@ msgstr ""
3543
  msgid "Error"
3544
  msgstr ""
3545
 
3546
- #: core/lib/wpbc_all_translations.php:638
3547
  msgid "does not exist"
3548
  msgstr ""
3549
 
3550
- #: core/lib/wpbc_all_translations.php:639 core/lib/wpdev-booking-class.php:498
3551
  msgid "Calendar is loading..."
3552
  msgstr ""
3553
 
3554
- #: core/lib/wpbc_all_translations.php:640 core/lib/wpdev-booking-class.php:682
3555
- #: core/lib/wpdev-booking-class.php:743 inc/_ps/personal.php:862 inc/_ps/personal.php:873
3556
  msgid "Wrong booking hash in URL (probably expired)"
3557
  msgstr ""
3558
 
3559
- #: core/lib/wpbc_all_translations.php:641
3560
  msgid "Booking resource type is not defined. Its can be, when at the URL is wrong booking hash."
3561
  msgstr ""
3562
 
3563
- #: core/lib/wpbc_all_translations.php:642 core/lib/wpdev-booking-class.php:863
3564
  #, php-format
3565
  msgid ""
3566
  "%sWarning! Booking calendar for this booking resource are already at the page, please check more "
3567
  "about this issue at %sthis page%s"
3568
  msgstr ""
3569
 
3570
- #: core/lib/wpbc_all_translations.php:643 core/lib/wpdev-booking-class.php:1130
3571
  #: core/lib/wpdev-booking-widget.php:40 inc/_ps/wpbc-booking-select-widget.php:55
3572
  msgid "You need to use special shortcode [bookingedit] for booking editing."
3573
  msgstr ""
3574
 
3575
- #: core/lib/wpbc_all_translations.php:644 core/lib/wpdev-booking-class.php:1012
3576
- #: core/lib/wpdev-booking-class.php:1259 core/lib/wpdev-booking-class.php:1261
3577
  msgid "Wrong booking hash in URL. Probably hash is expired."
3578
  msgstr ""
3579
 
3580
- #: core/lib/wpbc_all_translations.php:645 core/lib/wpdev-booking-class.php:1016
3581
- #: core/lib/wpdev-booking-class.php:1265
3582
  msgid "You do not set any parameters for booking editing"
3583
  msgstr ""
3584
 
3585
- #: core/lib/wpbc_all_translations.php:646 core/lib/wpdev-booking-class.php:1018
3586
- #: core/lib/wpdev-booking-class.php:1267
3587
  #, php-format
3588
  msgid "Please check more about configuration at %sthis page%s"
3589
  msgstr ""
3590
 
3591
- #: core/lib/wpbc_all_translations.php:647 core/lib/wpdev-booking-widget.php:108
3592
  msgid "Booking form with calendar"
3593
  msgstr ""
3594
 
3595
- #: core/lib/wpbc_all_translations.php:648 core/lib/wpdev-booking-widget.php:109
3596
  msgid "Only availability calendar"
3597
  msgstr ""
3598
 
3599
- #: core/lib/wpbc_all_translations.php:649 core/lib/wpdev-booking-widget.php:150
3600
  msgid "Footer"
3601
  msgstr ""
3602
 
3603
- #: core/lib/wpbc_all_translations.php:650 core/lib/wpdev-booking-widget.php:155
3604
  #, php-format
3605
  msgid "Example: %sMake booking here%s"
3606
  msgstr ""
3607
 
3608
- #: core/lib/wpbc_all_translations.php:651 core/lib/wpdev-booking-widget.php:159
3609
  #: inc/_ps/wpbc-booking-select-widget.php:263
3610
  #, php-format
3611
  msgid ""
@@ -3613,103 +3630,103 @@ msgid ""
3613
  "at the same page, then the last will not be visible."
3614
  msgstr ""
3615
 
3616
- #: core/lib/wpbc_all_translations.php:652 core/lib/wpdev-booking-widget.php:163
3617
  #, php-format
3618
  msgid "%sSeveral widgets are supported at %spaid versions%s."
3619
  msgstr ""
3620
 
3621
- #: core/lib/wpbc_all_translations.php:653 core/sync/wpbc-gcal-class.php:300
3622
  msgid "Importing Feed"
3623
  msgstr ""
3624
 
3625
- #: core/lib/wpbc_all_translations.php:654 core/sync/wpbc-gcal-class.php:316
3626
  msgid "Data Parsing"
3627
  msgstr ""
3628
 
3629
- #: core/lib/wpbc_all_translations.php:655 core/sync/wpbc-gcal-class.php:423
3630
  msgid ""
3631
  "Some data was retrieved, but could not be parsed successfully. Please ensure your feed URL is "
3632
  "correct."
3633
  msgstr ""
3634
 
3635
- #: core/lib/wpbc_all_translations.php:656 core/sync/wpbc-gcal-class.php:430
3636
  msgid "The feed could not be found (404). Please ensure your feed URL is correct."
3637
  msgstr ""
3638
 
3639
- #: core/lib/wpbc_all_translations.php:657 core/sync/wpbc-gcal-class.php:433
3640
  msgid ""
3641
  "Access to this feed was denied (403). Please ensure you have public sharing enabled for your "
3642
  "calendar."
3643
  msgstr ""
3644
 
3645
- #: core/lib/wpbc_all_translations.php:658 core/sync/wpbc-gcal-class.php:436
3646
  #, php-format
3647
  msgid ""
3648
  "The feed data could not be retrieved. Error code: %s. Please ensure your feed URL is correct."
3649
  msgstr ""
3650
 
3651
- #: core/lib/wpbc_all_translations.php:659 core/sync/wpbc-gcal-class.php:609
3652
  #: core/sync/wpbc-gcal-class.php:659
3653
  msgid "GID"
3654
  msgstr ""
3655
 
3656
- #: core/lib/wpbc_all_translations.php:660 core/sync/wpbc-gcal-class.php:623
3657
  msgid "Selection"
3658
  msgstr ""
3659
 
3660
- #: core/lib/wpbc_all_translations.php:661 core/sync/wpbc-gcal-class.php:637
3661
  msgid "Location:"
3662
  msgstr ""
3663
 
3664
- #: core/lib/wpbc_all_translations.php:662 core/sync/wpbc-gcal-class.php:667
3665
  msgid "Reload page"
3666
  msgstr ""
3667
 
3668
- #: core/lib/wpbc_all_translations.php:663 core/sync/wpbc-gcal-class.php:680
3669
  msgid "Delete selected booking(s)"
3670
  msgstr ""
3671
 
3672
- #: core/lib/wpbc_all_translations.php:664 core/sync/wpbc-gcal.php:279
3673
  msgid "You can specify an additional offset from you chosen end point. The offset can be negative."
3674
  msgstr ""
3675
 
3676
- #: core/lib/wpbc_all_translations.php:665 core/sync/wpbc-gcal.php:399
3677
  msgid "Retrieve Google Calendar Events "
3678
  msgstr ""
3679
 
3680
- #: core/lib/wpbc_all_translations.php:666 core/sync/wpbc-gcal.php:405
3681
  msgid "Please configure settings for import Google Calendar events"
3682
  msgstr ""
3683
 
3684
- #: core/lib/wpbc_all_translations.php:667 core/sync/wpbc-gcal.php:433
3685
  msgid "Configure"
3686
  msgstr ""
3687
 
3688
- #: core/lib/wpbc_all_translations.php:668 core/wpbc-activation.php:565
3689
  #, php-format
3690
  msgid "%s Found %s not indexed bookings %s"
3691
  msgstr ""
3692
 
3693
- #: core/lib/wpbc_all_translations.php:669 core/wpbc-activation.php:580
3694
  #, php-format
3695
  msgid "%s Finish getting sort dates. %s"
3696
  msgstr ""
3697
 
3698
- #: core/lib/wpbc_all_translations.php:670 core/wpbc-activation.php:589
3699
  #, php-format
3700
  msgid "Updated booking: %s"
3701
  msgstr ""
3702
 
3703
- #: core/lib/wpbc_all_translations.php:671 core/wpbc-activation.php:1001
3704
  msgid "Booking form"
3705
  msgstr ""
3706
 
3707
- #: core/lib/wpbc_all_translations.php:672 core/wpbc-activation.php:1093
3708
  #: inc/_ps/admin/page-email-edit.php:310
3709
  msgid "The reservation has been modified"
3710
  msgstr ""
3711
 
3712
- #: core/lib/wpbc_all_translations.php:673 core/wpbc-activation.php:1094
3713
  #: inc/_ps/admin/page-email-edit.php:324
3714
  #, php-format
3715
  msgid ""
@@ -3717,23 +3734,23 @@ msgid ""
3717
  "Thank you, %s"
3718
  msgstr ""
3719
 
3720
- #: core/lib/wpbc_all_translations.php:674 core/wpbc-activation.php:1134
3721
  #: inc/_bs/admin/api-settings-s.php:376
3722
  msgid "Booked Times:"
3723
  msgstr ""
3724
 
3725
- #: core/lib/wpbc_all_translations.php:675 core/wpbc-activation.php:1154
3726
  msgid ""
3727
  "This booking canceled because we did not receive payment and the administrator did not approve "
3728
  "it."
3729
  msgstr ""
3730
 
3731
- #: core/lib/wpbc_all_translations.php:676 core/wpbc-activation.php:1186
3732
  #: inc/_bs/admin/page-email-payment.php:314
3733
  msgid "You need to make payment for this reservation"
3734
  msgstr ""
3735
 
3736
- #: core/lib/wpbc_all_translations.php:677 core/wpbc-activation.php:1187
3737
  #: inc/_bs/admin/page-email-payment.php:328
3738
  #, php-format
3739
  msgid ""
@@ -3741,33 +3758,33 @@ msgid ""
3741
  "Thank you, %s"
3742
  msgstr ""
3743
 
3744
- #: core/lib/wpbc_all_translations.php:678 core/wpbc-activation.php:1224
3745
  #: inc/_bm/admin/api-settings-m.php:247
3746
  msgid "Cost: "
3747
  msgstr ""
3748
 
3749
- #: core/lib/wpbc_all_translations.php:679 core/wpbc-activation.php:1255
3750
  #: inc/_bl/admin/api-settings-l.php:75
3751
  msgid "Available: "
3752
  msgstr ""
3753
 
3754
- #: core/lib/wpbc_all_translations.php:680 core/wpbc-emails.php:78
3755
  msgid "Booking system"
3756
  msgstr ""
3757
 
3758
- #: core/lib/wpbc_all_translations.php:681 core/wpbc-emails.php:184
3759
  msgid ""
3760
  "You can use (in subject and content of email template) any shortcodes, which you used in the "
3761
  "booking form. Use the shortcodes in the same way as you used them in the content form at "
3762
  "Settings Fields page."
3763
  msgstr ""
3764
 
3765
- #: core/lib/wpbc_all_translations.php:682 core/wpbc-emails.php:187
3766
- #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:802
3767
  msgid "You can use following shortcodes in content of this template"
3768
  msgstr ""
3769
 
3770
- #: core/lib/wpbc_all_translations.php:683 core/wpbc-emails.php:191
3771
  #: inc/gateways/page-gateways.php:1040
3772
  #, php-format
3773
  msgid ""
@@ -3775,310 +3792,310 @@ msgid ""
3775
  "Fields page"
3776
  msgstr ""
3777
 
3778
- #: core/lib/wpbc_all_translations.php:684 core/wpbc-emails.php:193
3779
  #, php-format
3780
  msgid "%s - inserting data info about the booking"
3781
  msgstr ""
3782
 
3783
- #: core/lib/wpbc_all_translations.php:685 core/wpbc-emails.php:197
3784
  #, php-format
3785
  msgid "%s - inserting the dates of booking"
3786
  msgstr ""
3787
 
3788
- #: core/lib/wpbc_all_translations.php:686 core/wpbc-emails.php:201
3789
  #, php-format
3790
  msgid "%s - inserting check-in date (first day of reservation),"
3791
  msgstr ""
3792
 
3793
- #: core/lib/wpbc_all_translations.php:687 core/wpbc-emails.php:205 core/wpbc-emails.php:206
3794
  #, php-format
3795
  msgid "%s - inserting check-out date (last day of reservation),"
3796
  msgstr ""
3797
 
3798
- #: core/lib/wpbc_all_translations.php:688 core/wpbc-emails.php:211
3799
  #, php-format
3800
  msgid "%s - inserting the number of booking dates "
3801
  msgstr ""
3802
 
3803
- #: core/lib/wpbc_all_translations.php:689 core/wpbc-emails.php:217
3804
  #, php-format
3805
  msgid "%s - inserting ID of booking "
3806
  msgstr ""
3807
 
3808
- #: core/lib/wpbc_all_translations.php:690 core/wpbc-emails.php:222
3809
  #, php-format
3810
  msgid "%s or %s - inserting the title of the booking resource "
3811
  msgstr ""
3812
 
3813
- #: core/lib/wpbc_all_translations.php:691 core/wpbc-emails.php:228
3814
- #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:810
3815
  #, php-format
3816
  msgid "%s - inserting the cost of booking "
3817
  msgstr ""
3818
 
3819
- #: core/lib/wpbc_all_translations.php:692 core/wpbc-emails.php:234
3820
  #, php-format
3821
  msgid "%s - inserting your site URL "
3822
  msgstr ""
3823
 
3824
- #: core/lib/wpbc_all_translations.php:693 core/wpbc-emails.php:237
3825
  #, php-format
3826
  msgid "%s - inserting IP address of the user who made this action "
3827
  msgstr ""
3828
 
3829
- #: core/lib/wpbc_all_translations.php:694 core/wpbc-emails.php:238
3830
  #, php-format
3831
  msgid ""
3832
  "%s - inserting contents of the User-Agent: header from the current request, if there is one "
3833
  msgstr ""
3834
 
3835
- #: core/lib/wpbc_all_translations.php:695 core/wpbc-emails.php:239
3836
  #, php-format
3837
  msgid "%s - inserting address of the page (if any), where visitor make this action "
3838
  msgstr ""
3839
 
3840
- #: core/lib/wpbc_all_translations.php:696 core/wpbc-emails.php:243
3841
  #, php-format
3842
  msgid "%s - inserting date of this action "
3843
  msgstr ""
3844
 
3845
- #: core/lib/wpbc_all_translations.php:697 core/wpbc-emails.php:240
3846
  #, php-format
3847
  msgid "%s - inserting time of this action "
3848
  msgstr ""
3849
 
3850
- #: core/lib/wpbc_all_translations.php:698 core/wpbc-emails.php:257
3851
  #, php-format
3852
  msgid "%s - inserting moderate link of new booking "
3853
  msgstr ""
3854
 
3855
- #: core/lib/wpbc_all_translations.php:699 core/wpbc-emails.php:268
3856
  #, php-format
3857
  msgid ""
3858
  "%s - inserting link to the page where visitor can edit the reservation, (possible to use the %s "
3859
  "parameter for setting different %s of this page. Example: %s )"
3860
  msgstr ""
3861
 
3862
- #: core/lib/wpbc_all_translations.php:700 core/wpbc-emails.php:272
3863
  #, php-format
3864
  msgid ""
3865
  "%s - inserting link to the page where visitor can cancel the reservation, (possible to use the "
3866
  "%s parameter for setting different %s of this page. Example: %s )"
3867
  msgstr ""
3868
 
3869
- #: core/lib/wpbc_all_translations.php:701 core/wpbc-emails.php:277
3870
  #, php-format
3871
  msgid ""
3872
  "%s - inserting link to payment page where visitor can pay for the reservation (possible to use "
3873
  "the %s parameter for setting different %s of this page. Example: %s )"
3874
  msgstr ""
3875
 
3876
- #: core/lib/wpbc_all_translations.php:702 core/wpbc-emails.php:281
3877
  #, php-format
3878
  msgid "%s - add the reason for booking payment, you can enter it before sending email, "
3879
  msgstr ""
3880
 
3881
- #: core/lib/wpbc_all_translations.php:703 core/wpbc-emails.php:287
3882
  #, php-format
3883
  msgid "%s - add the reason booking was cancelled, you can enter it before sending email, "
3884
  msgstr ""
3885
 
3886
- #: core/lib/wpbc_all_translations.php:704 core/wpbc-emails.php:295 core/wpbc-translation.php:271
3887
  msgid "Configuration in several languages"
3888
  msgstr ""
3889
 
3890
- #: core/lib/wpbc_all_translations.php:705 core/wpbc-emails.php:296 core/wpbc-translation.php:272
3891
  #, php-format
3892
  msgid "%s - start new translation section, where %s - locale of translation"
3893
  msgstr ""
3894
 
3895
- #: core/lib/wpbc_all_translations.php:706 core/wpbc-emails.php:297 core/wpbc-translation.php:273
3896
  #, php-format
3897
  msgid "Example #1: %s - start French translation section"
3898
  msgstr ""
3899
 
3900
- #: core/lib/wpbc_all_translations.php:707 core/wpbc-emails.php:298 core/wpbc-translation.php:274
3901
  #, php-format
3902
  msgid "Example #2: \"%s\" - English and French translation of some message"
3903
  msgstr ""
3904
 
3905
- #: core/lib/wpbc_all_translations.php:708 core/wpbc-functions.php:1003 inc/_bm/biz_m.php:1998
3906
  msgid "yes"
3907
  msgstr ""
3908
 
3909
- #: core/lib/wpbc_all_translations.php:709 core/wpbc-functions.php:1007
3910
  msgid "no"
3911
  msgstr ""
3912
 
3913
- #: core/lib/wpbc_all_translations.php:710 core/wpbc-functions.php:1896
3914
  #: inc/_bm/admin/page-cost.php:48 inc/_bm/admin/page-cost.php:570
3915
  msgid "Costs and Rates"
3916
  msgstr ""
3917
 
3918
- #: core/lib/wpbc_all_translations.php:711 core/wpbc-functions.php:1905
3919
  #: inc/_bm/admin/page-cost-advanced.php:43 inc/_bm/admin/page-cost-advanced.php:148
3920
  #: inc/gateways/page-gateways.php:92
3921
  msgid "Advanced Cost"
3922
  msgstr ""
3923
 
3924
- #: core/lib/wpbc_all_translations.php:712 core/wpbc-functions.php:1914
3925
  #: inc/_bl/admin/page-coupons.php:45 inc/_bl/admin/page-coupons.php:47
3926
  msgid "Coupons"
3927
  msgstr ""
3928
 
3929
- #: core/lib/wpbc_all_translations.php:713 core/wpbc-functions.php:1932
3930
  #: inc/_bm/admin/page-seasons.php:45 inc/_bm/admin/page-seasons.php:47
3931
  msgid "Season Filters"
3932
  msgstr ""
3933
 
3934
- #: core/lib/wpbc_all_translations.php:714 core/wpbc-functions.php:2094
3935
  msgid "Warning! Some error occur, during sending registration request."
3936
  msgstr ""
3937
 
3938
- #: core/lib/wpbc_all_translations.php:715 core/wpbc-functions.php:2099
3939
  msgid ""
3940
  "Please refresh this page and if the same error appear again contact support by email (with info "
3941
  "about order number and website) for finishing the registrations"
3942
  msgstr ""
3943
 
3944
- #: core/lib/wpbc_all_translations.php:716 core/wpbc-functions.php:2127
3945
  #, php-format
3946
  msgid "If you like %s please leave us a %s rating. A huge thank you in advance!"
3947
  msgstr ""
3948
 
3949
- #: core/lib/wpbc_all_translations.php:717 core/wpbc-functions.php:2295
3950
  msgid "Changes saved."
3951
  msgstr ""
3952
 
3953
- #: core/lib/wpbc_all_translations.php:718 core/wpbc-functions.php:2401
3954
  msgid "Click to toggle"
3955
  msgstr ""
3956
 
3957
- #: core/lib/wpbc_all_translations.php:719 core/wpbc-functions.php:2463
3958
  msgid "Prev"
3959
  msgstr ""
3960
 
3961
- #: core/lib/wpbc_all_translations.php:720 core/wpbc-functions.php:2825
3962
  msgid "We&#8217;ve assembled some links to get you started:"
3963
  msgstr ""
3964
 
3965
- #: core/lib/wpbc_all_translations.php:721 core/wpbc-functions.php:2828
3966
  msgid "Get Started"
3967
  msgstr ""
3968
 
3969
- #: core/lib/wpbc_all_translations.php:722 core/wpbc-functions.php:2831
3970
  #, php-format
3971
  msgid "Insert booking form %sshortcode%s into your %sPost%s or %sPage%s"
3972
  msgstr ""
3973
 
3974
- #: core/lib/wpbc_all_translations.php:723 core/wpbc-functions.php:2840
3975
  #, php-format
3976
  msgid "or add booking calendar %sWidget%s to your sidebar."
3977
  msgstr ""
3978
 
3979
- #: core/lib/wpbc_all_translations.php:724 core/wpbc-functions.php:2846
3980
  #, php-format
3981
  msgid "Check %show todo%s that and what %sshortcodes%s are available."
3982
  msgstr ""
3983
 
3984
- #: core/lib/wpbc_all_translations.php:725 core/wpbc-functions.php:2853
3985
  #, php-format
3986
  msgid "Add new booking from your post/page or from %sAdmin Panel%s."
3987
  msgstr ""
3988
 
3989
- #: core/lib/wpbc_all_translations.php:726 core/wpbc-functions.php:2859
3990
  msgid "Next Steps"
3991
  msgstr ""
3992
 
3993
- #: core/lib/wpbc_all_translations.php:727 core/wpbc-functions.php:2862
3994
  #, php-format
3995
  msgid "Check %sBooking Listing%s page for new bookings."
3996
  msgstr ""
3997
 
3998
- #: core/lib/wpbc_all_translations.php:728 core/wpbc-functions.php:2867
3999
  #, php-format
4000
  msgid "Configure booking %sSettings%s."
4001
  msgstr ""
4002
 
4003
- #: core/lib/wpbc_all_translations.php:729 core/wpbc-functions.php:2871
4004
  #, php-format
4005
  msgid "Configure predefined set of your %sForm Fields%s."
4006
  msgstr ""
4007
 
4008
- #: core/lib/wpbc_all_translations.php:730 core/wpbc-functions.php:2875
4009
  #, php-format
4010
  msgid "Configure your predefined %sEmail Templates%s."
4011
  msgstr ""
4012
 
4013
- #: core/lib/wpbc_all_translations.php:731 core/wpbc-functions.php:2881
4014
  msgid "Have a questions?"
4015
  msgstr ""
4016
 
4017
- #: core/lib/wpbc_all_translations.php:732 core/wpbc-functions.php:2884
4018
  #, php-format
4019
  msgid "Check out our %sHelp%s"
4020
  msgstr ""
4021
 
4022
- #: core/lib/wpbc_all_translations.php:733 core/wpbc-functions.php:2889
4023
  #, php-format
4024
  msgid "See %sFAQ%s."
4025
  msgstr ""
4026
 
4027
- #: core/lib/wpbc_all_translations.php:734 core/wpbc-functions.php:2894
4028
  #, php-format
4029
  msgid "Still having questions? Contact %sSupport%s."
4030
  msgstr ""
4031
 
4032
- #: core/lib/wpbc_all_translations.php:735 core/wpbc-functions.php:2902 core/wpbc.php:205
4033
  #, php-format
4034
  msgid "Need even more functionality? Check %s higher versions %s"
4035
  msgstr ""
4036
 
4037
- #: core/lib/wpbc_all_translations.php:736 core/wpbc-js.php:112
4038
  msgid "This field is required"
4039
  msgstr ""
4040
 
4041
- #: core/lib/wpbc_all_translations.php:737 core/wpbc-js.php:113
4042
  msgid "This checkbox must be checked"
4043
  msgstr ""
4044
 
4045
- #: core/lib/wpbc_all_translations.php:738 core/wpbc-js.php:114
4046
  msgid "At least one option must be selected"
4047
  msgstr ""
4048
 
4049
- #: core/lib/wpbc_all_translations.php:739 core/wpbc-js.php:115
4050
  msgid "Incorrect email field"
4051
  msgstr ""
4052
 
4053
- #: core/lib/wpbc_all_translations.php:740 core/wpbc-js.php:116
4054
  msgid "Your emails do not match"
4055
  msgstr ""
4056
 
4057
- #: core/lib/wpbc_all_translations.php:741 core/wpbc-js.php:117
4058
  msgid "Please, select booking date(s) at Calendar."
4059
  msgstr ""
4060
 
4061
- #: core/lib/wpbc_all_translations.php:742 core/wpbc-js.php:132
4062
  msgid "Deleting"
4063
  msgstr ""
4064
 
4065
- #: core/lib/wpbc_all_translations.php:743 core/wpbc-js.php:133
4066
  msgid "Updating"
4067
  msgstr ""
4068
 
4069
- #: core/lib/wpbc_all_translations.php:744 core/wpbc-js.php:134
4070
  msgid "Saving"
4071
  msgstr ""
4072
 
4073
- #: core/lib/wpbc_all_translations.php:745 core/wpbc.php:97
4074
  msgid "Booking"
4075
  msgstr ""
4076
 
4077
- #: core/lib/wpbc_all_translations.php:746 core/wpbc.php:289 core/wpbc.php:296
4078
  msgid "Action is not allowed!"
4079
  msgstr ""
4080
 
4081
- #: core/lib/wpbc_all_translations.php:747 inc/_bl/admin/activation-l.php:119
4082
  #: inc/_bl/admin/activation-l.php:123 inc/_bl/admin/activation-l.php:174
4083
  #: inc/_bl/admin/page-search.php:623 inc/_bm/admin/api-settings-m.php:567 inc/_bm/m-toolbar.php:62
4084
  #: inc/_bm/m-toolbar.php:404 inc/_ps/admin/page-settings-form.php:321
@@ -4086,89 +4103,81 @@ msgstr ""
4086
  msgid "Standard"
4087
  msgstr ""
4088
 
4089
- #: core/lib/wpbc_all_translations.php:748 inc/_bl/admin/activation-l.php:120
4090
  #: inc/_bl/admin/activation-l.php:124 inc/_bl/admin/activation-l.php:157
4091
  #: inc/_bl/admin/activation-l.php:158 inc/_bl/admin/activation-l.php:175
4092
  msgid "Superior"
4093
  msgstr ""
4094
 
4095
- #: core/lib/wpbc_all_translations.php:749 inc/_bl/admin/activation-l.php:120
4096
  #: inc/_bs/admin/activation-s.php:93
4097
  msgid "Resource #1"
4098
  msgstr ""
4099
 
4100
- #: core/lib/wpbc_all_translations.php:750 inc/_bl/admin/activation-l.php:121
4101
  #: inc/_bl/admin/activation-l.php:125
4102
  msgid "Presidential Suite"
4103
  msgstr ""
4104
 
4105
- #: core/lib/wpbc_all_translations.php:751 inc/_bl/admin/activation-l.php:121
4106
  #: inc/_bs/admin/activation-s.php:94
4107
  msgid "Resource #2"
4108
  msgstr ""
4109
 
4110
- #: core/lib/wpbc_all_translations.php:752 inc/_bl/admin/activation-l.php:122
4111
  #: inc/_bl/admin/activation-l.php:126 inc/_mu/admin/activation-u.php:83
4112
  msgid "Royal Villa"
4113
  msgstr ""
4114
 
4115
- #: core/lib/wpbc_all_translations.php:753 inc/_bl/admin/activation-l.php:122
4116
  #: inc/_bs/admin/activation-s.php:95
4117
  msgid "Resource #3"
4118
  msgstr ""
4119
 
4120
- #: core/lib/wpbc_all_translations.php:754 inc/_bl/admin/api-settings-l.php:34
4121
  msgid ""
4122
  "Use \"Check In\" date as available in calendar for booking resources with capacity higher then 1 "
4123
  "for search results"
4124
  msgstr ""
4125
 
4126
- #: core/lib/wpbc_all_translations.php:755 inc/_bl/admin/api-settings-l.php:43
4127
  msgid ""
4128
  "Use \"Check Out\" date as available in calendar for booking resources with capacity higher then "
4129
  "1 search results"
4130
  msgstr ""
4131
 
4132
- #: core/lib/wpbc_all_translations.php:756 inc/_bl/admin/api-settings-l.php:66
4133
  msgid "Show availability in tooltip"
4134
  msgstr ""
4135
 
4136
- #: core/lib/wpbc_all_translations.php:757 inc/_bl/admin/api-settings-l.php:67
4137
  msgid ""
4138
  "Check this box to display the available number of booking resources with a tooltip, when mouse "
4139
  "hovers over each day on the calendar(s)."
4140
  msgstr ""
4141
 
4142
- #: core/lib/wpbc_all_translations.php:758 inc/_bl/admin/api-settings-l.php:76
4143
  msgid "Availability Title"
4144
  msgstr ""
4145
 
4146
- #: core/lib/wpbc_all_translations.php:759 inc/_bl/admin/api-settings-l.php:77
4147
  #, php-format
4148
  msgid "Type your %savailability%s description"
4149
  msgstr ""
4150
 
4151
- #: core/lib/wpbc_all_translations.php:760 inc/_bl/admin/api-settings-l.php:101
4152
- msgid "Use pending days as available"
4153
- msgstr ""
4154
-
4155
- #: core/lib/wpbc_all_translations.php:761 inc/_bl/admin/api-settings-l.php:102
4156
- msgid "Check this box if you want to show the pending days as available in calendars"
4157
- msgstr ""
4158
-
4159
- #: core/lib/wpbc_all_translations.php:762 inc/_bl/admin/api-settings-l.php:110
4160
  #: inc/_bs/admin/api-settings-s.php:516
4161
  msgid "Auto-cancel bookings"
4162
  msgstr ""
4163
 
4164
- #: core/lib/wpbc_all_translations.php:763 inc/_bl/admin/api-settings-l.php:111
4165
  #: inc/_bl/admin/api-settings-l.php:131
4166
  msgid ""
4167
  "Auto Cancel all pending bookings for the specific date(s), if some booking is approved for these "
4168
  "date(s)"
4169
  msgstr ""
4170
 
4171
- #: core/lib/wpbc_all_translations.php:764 inc/_bl/admin/api-settings-l.php:129
4172
  #: inc/_bl/admin/api-settings-l.php:289
4173
  msgid ""
4174
  "Warning!!! After you approved the specific booking(s), all your pending bookings of the same "
@@ -4176,128 +4185,128 @@ msgid ""
4176
  "approved booking, will be automatically canceled!"
4177
  msgstr ""
4178
 
4179
- #: core/lib/wpbc_all_translations.php:765 inc/_bl/admin/api-settings-l.php:160
4180
  msgid "Set capacity based on number of visitors"
4181
  msgstr ""
4182
 
4183
- #: core/lib/wpbc_all_translations.php:766 inc/_bl/admin/api-settings-l.php:161
4184
  msgid ""
4185
  "Check this box if you want total availability (daily capacity) to depend on the number of "
4186
  "selected visitors."
4187
  msgstr ""
4188
 
4189
- #: core/lib/wpbc_all_translations.php:767 inc/_bl/admin/api-settings-l.php:162
4190
  #: inc/_ps/admin/api-settings-p.php:285 inc/_ps/admin/api-settings-p.php:298
4191
  #, php-format
4192
  msgid "Please read more info about configuration of this parameter %shere%s"
4193
  msgstr ""
4194
 
4195
- #: core/lib/wpbc_all_translations.php:768 inc/_bl/admin/api-settings-l.php:177
4196
  msgid ""
4197
  "Add tooltip on calendar(s) to show availability based on the number of available booking "
4198
  "resource items remaining for each day."
4199
  msgstr ""
4200
 
4201
- #: core/lib/wpbc_all_translations.php:769 inc/_bl/admin/api-settings-l.php:180
4202
  #, php-format
4203
  msgid ""
4204
  "Be sure to match the maximum number of visitors for the %sone booking resource%s with the number "
4205
  "of visitors specified on the booking form."
4206
  msgstr ""
4207
 
4208
- #: core/lib/wpbc_all_translations.php:770 inc/_bl/admin/api-settings-l.php:183
4209
  msgid ""
4210
  "Display tooltip on calendar(s) to show availability based on total (fixed) number of visitors "
4211
  "for the resource, which can be at free booking resource items."
4212
  msgstr ""
4213
 
4214
- #: core/lib/wpbc_all_translations.php:771 inc/_bl/admin/api-settings-l.php:186
4215
  #, php-format
4216
  msgid ""
4217
  "Be sure to match the maximum number of visitors for %sall booking resources%s with the number of "
4218
  "visitors specified on the booking form."
4219
  msgstr ""
4220
 
4221
- #: core/lib/wpbc_all_translations.php:772 inc/_bl/admin/api-settings-l.php:214
4222
  msgid "Disable bookings in different booking resources"
4223
  msgstr ""
4224
 
4225
- #: core/lib/wpbc_all_translations.php:773 inc/_bl/admin/api-settings-l.php:215
4226
  msgid ""
4227
  "Check this box to dissable reservations, which can be stored in different booking resources."
4228
  msgstr ""
4229
 
4230
- #: core/lib/wpbc_all_translations.php:774 inc/_bl/admin/api-settings-l.php:216
4231
  msgid ""
4232
  "When checked, all reserved days must be at same booking resource otherwise error message will "
4233
  "show."
4234
  msgstr ""
4235
 
4236
- #: core/lib/wpbc_all_translations.php:775 inc/_bl/admin/api-settings-l.php:337
4237
  #: inc/_ps/p-toolbar.php:1173
4238
  msgid "Parent"
4239
  msgstr ""
4240
 
4241
- #: core/lib/wpbc_all_translations.php:776 inc/_bl/admin/api-settings-l.php:343
4242
  #: inc/_ps/p-toolbar.php:1191
4243
  msgid "Priority"
4244
  msgstr ""
4245
 
4246
- #: core/lib/wpbc_all_translations.php:777 inc/_bl/admin/api-settings-l.php:350
4247
  msgid "Max visitors"
4248
  msgstr ""
4249
 
4250
- #: core/lib/wpbc_all_translations.php:778 inc/_bl/admin/api-settings-l.php:470
4251
  msgid "Single"
4252
  msgstr ""
4253
 
4254
- #: core/lib/wpbc_all_translations.php:779 inc/_bl/admin/api-settings-l.php:472
4255
  msgid "Child"
4256
  msgstr ""
4257
 
4258
- #: core/lib/wpbc_all_translations.php:780 inc/_bl/admin/page-coupons.php:46
4259
  msgid "Setting coupons for discount"
4260
  msgstr ""
4261
 
4262
- #: core/lib/wpbc_all_translations.php:781 inc/_bl/admin/page-coupons.php:122
4263
  #: inc/_bm/m-toolbar.php:590 inc/_bm/m-toolbar.php:592
4264
  msgid "Create dates filter"
4265
  msgstr ""
4266
 
4267
- #: core/lib/wpbc_all_translations.php:782 inc/_bl/admin/page-coupons.php:124
4268
  #: inc/_bl/admin/page-coupons.php:871
4269
  msgid "Add New Discount Coupon"
4270
  msgstr ""
4271
 
4272
- #: core/lib/wpbc_all_translations.php:783 inc/_bl/admin/page-coupons.php:214
4273
  #: inc/_bm/admin/page-availability.php:238 inc/_bm/admin/page-cost.php:217
4274
  #: inc/_bm/admin/page-seasons.php:199 inc/_ps/admin/page-resources.php:187
4275
  msgid "Bulk Actions"
4276
  msgstr ""
4277
 
4278
- #: core/lib/wpbc_all_translations.php:784 inc/_bl/admin/page-coupons.php:505
4279
  #: inc/_bl/admin/page-coupons.php:1170
4280
  msgid "Coupon Code"
4281
  msgstr ""
4282
 
4283
- #: core/lib/wpbc_all_translations.php:785 inc/_bl/admin/page-coupons.php:511
4284
  #: inc/_bl/admin/page-coupons.php:1185 inc/_bl/admin/page-coupons.php:1192
4285
  msgid "Savings"
4286
  msgstr ""
4287
 
4288
- #: core/lib/wpbc_all_translations.php:786 inc/_bl/admin/page-coupons.php:517
4289
  msgid "Minimum Cost"
4290
  msgstr ""
4291
 
4292
- #: core/lib/wpbc_all_translations.php:787 inc/_bl/admin/page-coupons.php:524
4293
  msgid "Expiration"
4294
  msgstr ""
4295
 
4296
- #: core/lib/wpbc_all_translations.php:788 inc/_bl/admin/page-coupons.php:533
4297
  msgid "Number of usage"
4298
  msgstr ""
4299
 
4300
- #: core/lib/wpbc_all_translations.php:789 inc/_bl/admin/page-coupons.php:585
4301
  #: inc/_bm/admin/page-availability.php:571 inc/_bm/admin/page-availability.php:1056
4302
  #: inc/_bm/admin/page-cost-rate.php:256 inc/_bm/admin/page-cost-valuation.php:416
4303
  #: inc/_bm/admin/page-cost.php:632 inc/_bm/admin/page-seasons.php:565
@@ -4306,285 +4315,285 @@ msgstr ""
4306
  msgid "Select Booking Resource"
4307
  msgstr ""
4308
 
4309
- #: core/lib/wpbc_all_translations.php:790 inc/_bl/admin/page-coupons.php:776
4310
  #: inc/_bl/admin/page-coupons.php:1396 inc/_ps/admin/api-settings-p.php:29
4311
  #: inc/_ps/p-toolbar.php:682
4312
  msgid "All resources"
4313
  msgstr ""
4314
 
4315
- #: core/lib/wpbc_all_translations.php:791 inc/_bl/admin/page-coupons.php:993
4316
  #: inc/_ps/wpbc-form-templates.php:124 inc/_ps/wpbc-form-templates.php:196
4317
  msgid "Coupon"
4318
  msgstr ""
4319
 
4320
- #: core/lib/wpbc_all_translations.php:792 inc/_bl/admin/page-coupons.php:1171
4321
  msgid "Enter coupon code."
4322
  msgstr ""
4323
 
4324
- #: core/lib/wpbc_all_translations.php:793 inc/_bl/admin/page-coupons.php:1232
4325
  msgid "Enter number of fixed or percentage savings."
4326
  msgstr ""
4327
 
4328
- #: core/lib/wpbc_all_translations.php:794 inc/_bl/admin/page-coupons.php:1235
4329
  msgid "Expiration Date"
4330
  msgstr ""
4331
 
4332
- #: core/lib/wpbc_all_translations.php:795 inc/_bl/admin/page-coupons.php:1311
4333
  msgid "Select Expiration Date of the coupon."
4334
  msgstr ""
4335
 
4336
- #: core/lib/wpbc_all_translations.php:796 inc/_bl/admin/page-coupons.php:1318
4337
  msgid "Minimum Booking Cost"
4338
  msgstr ""
4339
 
4340
- #: core/lib/wpbc_all_translations.php:797 inc/_bl/admin/page-coupons.php:1319
4341
  msgid "Enter minimum booking cost, when coupon is applicable."
4342
  msgstr ""
4343
 
4344
- #: core/lib/wpbc_all_translations.php:798 inc/_bl/admin/page-coupons.php:1336
4345
  msgid "Maximum number of usage"
4346
  msgstr ""
4347
 
4348
- #: core/lib/wpbc_all_translations.php:799 inc/_bl/admin/page-coupons.php:1337
4349
  msgid "Enter maximum number of times, when coupon is applicable."
4350
  msgstr ""
4351
 
4352
- #: core/lib/wpbc_all_translations.php:800 inc/_bl/admin/page-coupons.php:1360
4353
  msgid "Select booking resources, where is possible to apply this coupon code."
4354
  msgstr ""
4355
 
4356
- #: core/lib/wpbc_all_translations.php:801 inc/_bl/admin/page-coupons.php:1378
4357
  #: inc/_bm/admin/page-seasons.php:1224 inc/_bm/admin/page-seasons.php:1442
4358
  #: inc/_ps/p-toolbar.php:1117
4359
  msgid "Add New"
4360
  msgstr ""
4361
 
4362
- #: core/lib/wpbc_all_translations.php:802 inc/_bl/admin/page-search.php:75
4363
  #: inc/_bl/admin/page-search.php:114 inc/_ps/admin/page-settings-form.php:601
4364
  #: inc/gateways/page-gateways.php:1039
4365
  msgid "Use these shortcodes for customization: "
4366
  msgstr ""
4367
 
4368
- #: core/lib/wpbc_all_translations.php:803 inc/_bl/admin/page-search.php:76
4369
  #, php-format
4370
  msgid "%s - search inside posts/pages which are part of this category, "
4371
  msgstr ""
4372
 
4373
- #: core/lib/wpbc_all_translations.php:804 inc/_bl/admin/page-search.php:77
4374
  #, php-format
4375
  msgid "%s - search inside posts/pages which have this tag, "
4376
  msgstr ""
4377
 
4378
- #: core/lib/wpbc_all_translations.php:805 inc/_bl/admin/page-search.php:78
4379
  #: inc/_bl/admin/page-search.php:130
4380
  #, php-format
4381
  msgid "%s - check-in date, "
4382
  msgstr ""
4383
 
4384
- #: core/lib/wpbc_all_translations.php:806 inc/_bl/admin/page-search.php:79
4385
  #: inc/_bl/admin/page-search.php:131
4386
  #, php-format
4387
  msgid "%s - check-out date, "
4388
  msgstr ""
4389
 
4390
- #: core/lib/wpbc_all_translations.php:807 inc/_bl/admin/page-search.php:80
4391
  #, php-format
4392
  msgid "%s - default selection number of visitors, "
4393
  msgstr ""
4394
 
4395
- #: core/lib/wpbc_all_translations.php:808 inc/_bl/admin/page-search.php:81
4396
  #, php-format
4397
  msgid "Example: %s - custom number of visitor selections\""
4398
  msgstr ""
4399
 
4400
- #: core/lib/wpbc_all_translations.php:809 inc/_bl/admin/page-search.php:83
4401
  #, php-format
4402
  msgid "%s - search button, "
4403
  msgstr ""
4404
 
4405
- #: core/lib/wpbc_all_translations.php:810 inc/_bl/admin/page-search.php:84
4406
  #: inc/_bl/admin/page-search.php:136
4407
  msgid "HTML tags is accepted."
4408
  msgstr ""
4409
 
4410
- #: core/lib/wpbc_all_translations.php:811 inc/_bl/admin/page-search.php:115
4411
  #, php-format
4412
  msgid "%s - resource title, "
4413
  msgstr ""
4414
 
4415
- #: core/lib/wpbc_all_translations.php:812 inc/_bl/admin/page-search.php:116
4416
  #: inc/_bl/admin/page-search.php:117
4417
  #, php-format
4418
  msgid "%s - link to the page with booking form, "
4419
  msgstr ""
4420
 
4421
- #: core/lib/wpbc_all_translations.php:813 inc/_bl/admin/page-search.php:118
4422
  #, php-format
4423
  msgid "%s - availability of booking resource, "
4424
  msgstr ""
4425
 
4426
- #: core/lib/wpbc_all_translations.php:814 inc/_bl/admin/page-search.php:119
4427
  #, php-format
4428
  msgid "%s - maximum number of visitors for the booking resource, "
4429
  msgstr ""
4430
 
4431
- #: core/lib/wpbc_all_translations.php:815 inc/_bl/admin/page-search.php:120
4432
  #, php-format
4433
  msgid "%s - cost of booking the resource, "
4434
  msgstr ""
4435
 
4436
- #: core/lib/wpbc_all_translations.php:816 inc/_bl/admin/page-search.php:121
4437
  #, php-format
4438
  msgid "%s - featured image, taken from the featured image associated with the post, "
4439
  msgstr ""
4440
 
4441
- #: core/lib/wpbc_all_translations.php:817 inc/_bl/admin/page-search.php:122
4442
  #, php-format
4443
  msgid "%s - booking info, taken from the excerpt associated with the post, "
4444
  msgstr ""
4445
 
4446
- #: core/lib/wpbc_all_translations.php:818 inc/_bl/admin/page-search.php:124
4447
  #: inc/_ps/form/class-wpbc-form-help.php:677
4448
  msgid "Full cost of the booking."
4449
  msgstr ""
4450
 
4451
- #: core/lib/wpbc_all_translations.php:819 inc/_bl/admin/page-search.php:125
4452
  #: inc/_ps/form/class-wpbc-form-help.php:679
4453
  msgid "Cost of the booking for the selected dates only."
4454
  msgstr ""
4455
 
4456
- #: core/lib/wpbc_all_translations.php:820 inc/_bl/admin/page-search.php:126
4457
  #: inc/_ps/form/class-wpbc-form-help.php:681
4458
  msgid "Additional cost, which depends on the fields selection in the form."
4459
  msgstr ""
4460
 
4461
- #: core/lib/wpbc_all_translations.php:821 inc/_bl/admin/page-search.php:127
4462
  #: inc/_ps/form/class-wpbc-form-help.php:683
4463
  msgid "The deposit cost of the booking."
4464
  msgstr ""
4465
 
4466
- #: core/lib/wpbc_all_translations.php:822 inc/_bl/admin/page-search.php:128
4467
  #: inc/_ps/form/class-wpbc-form-help.php:685
4468
  msgid "Balance cost of the booking - difference between deposit and full cost."
4469
  msgstr ""
4470
 
4471
- #: core/lib/wpbc_all_translations.php:823 inc/_bl/admin/page-search.php:143
4472
  msgid "hour(s)"
4473
  msgstr ""
4474
 
4475
- #: core/lib/wpbc_all_translations.php:824 inc/_bl/admin/page-search.php:146
4476
  #: inc/_bm/admin/api-settings-m.php:74 inc/_bm/admin/api-settings-m.php:129
4477
  msgid "day(s)"
4478
  msgstr ""
4479
 
4480
- #: core/lib/wpbc_all_translations.php:825 inc/_bl/admin/page-search.php:151
4481
  msgid "Cache expiration"
4482
  msgstr ""
4483
 
4484
- #: core/lib/wpbc_all_translations.php:826 inc/_bl/admin/page-search.php:152
4485
  msgid "Select time of cache expiration"
4486
  msgstr ""
4487
 
4488
- #: core/lib/wpbc_all_translations.php:827 inc/_bl/admin/page-search.php:258
4489
  #: inc/_bl/admin/page-search.php:259
4490
  msgid "Search Settings"
4491
  msgstr ""
4492
 
4493
- #: core/lib/wpbc_all_translations.php:828 inc/_bl/admin/page-search.php:320
4494
  msgid "Cache Updated"
4495
  msgstr ""
4496
 
4497
- #: core/lib/wpbc_all_translations.php:829 inc/_bl/admin/page-search.php:345
4498
  #: inc/_bl/admin/page-search.php:391
4499
  msgid "Search Availability Form"
4500
  msgstr ""
4501
 
4502
- #: core/lib/wpbc_all_translations.php:830 inc/_bl/admin/page-search.php:346
4503
- #: inc/_bl/admin/page-search.php:409
4504
  msgid "Search Results"
4505
  msgstr ""
4506
 
4507
- #: core/lib/wpbc_all_translations.php:831 inc/_bl/admin/page-search.php:347
4508
  #: inc/_bl/admin/page-search.php:436
4509
  msgid "Search Cache"
4510
  msgstr ""
4511
 
4512
- #: core/lib/wpbc_all_translations.php:832 inc/_bl/admin/page-search.php:383
4513
  #, php-format
4514
  msgid ""
4515
  "If you do not see search results at front-end side of your website, please check troubleshooting "
4516
  "instruction %shere%s"
4517
  msgstr ""
4518
 
4519
- #: core/lib/wpbc_all_translations.php:833 inc/_bl/admin/page-search.php:416
4520
  msgid "CSS customization of search form and search results you can make at this file"
4521
  msgstr ""
4522
 
4523
- #: core/lib/wpbc_all_translations.php:834 inc/_bl/admin/page-search.php:559
4524
  #: inc/_bl/admin/page-search.php:612
4525
  msgid "Select Template"
4526
  msgstr ""
4527
 
4528
- #: core/lib/wpbc_all_translations.php:835
4529
  msgid "Inlinee Search Form Template"
4530
  msgstr ""
4531
 
4532
- #: core/lib/wpbc_all_translations.php:836 inc/_bl/admin/page-search.php:579
4533
  msgid "Horizontal Search Form Template"
4534
  msgstr ""
4535
 
4536
- #: core/lib/wpbc_all_translations.php:837 inc/_bl/admin/page-search.php:589
4537
  msgid "Standard Search Form Template"
4538
  msgstr ""
4539
 
4540
- #: core/lib/wpbc_all_translations.php:838 inc/_bl/admin/page-search.php:690
4541
  #: inc/_bm/admin/page-seasons.php:1227 inc/_bm/admin/page-seasons.php:1445
4542
  #: inc/_ps/admin/page-settings-form.php:489
4543
  msgid "Reset"
4544
  msgstr ""
4545
 
4546
- #: core/lib/wpbc_all_translations.php:839 inc/_bl/admin/page-search.php:691
4547
  #: inc/_ps/admin/page-settings-form.php:490
4548
  msgid "Reset current Form"
4549
  msgstr ""
4550
 
4551
- #: core/lib/wpbc_all_translations.php:840 inc/_bl/admin/page-search.php:754
4552
  msgid "Cache will expire:"
4553
  msgstr ""
4554
 
4555
- #: core/lib/wpbc_all_translations.php:841 inc/_bl/admin/page-search.php:784
4556
  #, php-format
4557
  msgid "Found: %s booking forms inside of posts or pages "
4558
  msgstr ""
4559
 
4560
- #: core/lib/wpbc_all_translations.php:842 inc/_bl/admin/page-search.php:788
4561
  msgid "Page"
4562
  msgstr ""
4563
 
4564
- #: core/lib/wpbc_all_translations.php:843 inc/_bl/admin/page-search.php:811
4565
  msgid "Reset Search Cache"
4566
  msgstr ""
4567
 
4568
- #: core/lib/wpbc_all_translations.php:844 inc/_bl/biz_l.php:135
4569
  msgid ""
4570
  "Try selecting fewer visitors. The number of visitors may be more than the number of available "
4571
  "units on selected day(s)!"
4572
  msgstr ""
4573
 
4574
- #: core/lib/wpbc_all_translations.php:845 inc/_bl/biz_l.php:371
4575
  msgid "coupon"
4576
  msgstr ""
4577
 
4578
- #: core/lib/wpbc_all_translations.php:846 inc/_bl/biz_l.php:373
4579
  msgid "discount"
4580
  msgstr ""
4581
 
4582
- #: core/lib/wpbc_all_translations.php:847 inc/_bl/biz_l.php:538
4583
  msgid "Please select check-in and check-out days!"
4584
  msgstr ""
4585
 
4586
- #: core/lib/wpbc_all_translations.php:848 inc/_bl/biz_l.php:1752 inc/_bl/biz_l.php:1773
4587
- #: inc/_bl/biz_l.php:1778
4588
  #, php-format
4589
  msgid ""
4590
  "Sorry, the reservation was not made because these days are already booked!!! %s (Its not "
@@ -4592,173 +4601,173 @@ msgid ""
4592
  "page and try other days."
4593
  msgstr ""
4594
 
4595
- #: core/lib/wpbc_all_translations.php:849 inc/_bl/biz_l.php:2291
4596
  #, php-format
4597
  msgid "The folowing pending booking(s): %s deleted."
4598
  msgstr ""
4599
 
4600
- #: core/lib/wpbc_all_translations.php:850 inc/_bl/wpbc-search-availability.php:763
4601
  msgid "Book now"
4602
  msgstr ""
4603
 
4604
- #: core/lib/wpbc_all_translations.php:851 inc/_bl/wpdev-booking-search-widget.php:14
4605
  #: inc/_bl/wpdev-booking-search-widget.php:67
4606
  msgid "Search availability"
4607
  msgstr ""
4608
 
4609
- #: core/lib/wpbc_all_translations.php:852 inc/_bl/wpdev-booking-search-widget.php:15
4610
  msgid "Search results."
4611
  msgstr ""
4612
 
4613
- #: core/lib/wpbc_all_translations.php:853 inc/_bl/wpdev-booking-search-widget.php:16
4614
  msgid "Nothing found."
4615
  msgstr ""
4616
 
4617
- #: core/lib/wpbc_all_translations.php:854 inc/_bl/wpdev-booking-search-widget.php:85
4618
  msgid "Title of search widget"
4619
  msgstr ""
4620
 
4621
- #: core/lib/wpbc_all_translations.php:855 inc/_bl/wpdev-booking-search-widget.php:93
4622
  msgid "Title of search results"
4623
  msgstr ""
4624
 
4625
- #: core/lib/wpbc_all_translations.php:856 inc/_bl/wpdev-booking-search-widget.php:98
4626
  #, php-format
4627
  msgid "Please type the %sTitle of search results%s."
4628
  msgstr ""
4629
 
4630
- #: core/lib/wpbc_all_translations.php:857 inc/_bl/wpdev-booking-search-widget.php:102
4631
  msgid "Nothing found message"
4632
  msgstr ""
4633
 
4634
- #: core/lib/wpbc_all_translations.php:858 inc/_bl/wpdev-booking-search-widget.php:107
4635
  #, php-format
4636
  msgid "Please type the %smessage ,what is showing, when nothing found%s."
4637
  msgstr ""
4638
 
4639
- #: core/lib/wpbc_all_translations.php:859 inc/_bl/wpdev-booking-search-widget.php:111
4640
  msgid "URL of Search Results"
4641
  msgstr ""
4642
 
4643
- #: core/lib/wpbc_all_translations.php:860 inc/_bl/wpdev-booking-search-widget.php:116
4644
  #, php-format
4645
  msgid ""
4646
  "Please type the URL of the page %s(with %s shortcode in content)%s, where search results will "
4647
  "show."
4648
  msgstr ""
4649
 
4650
- #: core/lib/wpbc_all_translations.php:861 inc/_bm/admin/activation-m.php:48
4651
  #: inc/_mu/multiuser.php:632
4652
  msgid "Weekend"
4653
  msgstr ""
4654
 
4655
- #: core/lib/wpbc_all_translations.php:862 inc/_bm/admin/activation-m.php:92
4656
  #: inc/_mu/multiuser.php:634
4657
  msgid "High season"
4658
  msgstr ""
4659
 
4660
- #: core/lib/wpbc_all_translations.php:863 inc/_bm/admin/api-settings-m.php:35
4661
  msgid "Limit available days from today"
4662
  msgstr ""
4663
 
4664
- #: core/lib/wpbc_all_translations.php:864 inc/_bm/admin/api-settings-m.php:36
4665
  msgid "Select number of available days in calendar start from today."
4666
  msgstr ""
4667
 
4668
- #: core/lib/wpbc_all_translations.php:865 inc/_bm/admin/api-settings-m.php:85
4669
  msgid "Unavailable time before / after booking"
4670
  msgstr ""
4671
 
4672
- #: core/lib/wpbc_all_translations.php:866 inc/_bm/admin/api-settings-m.php:87
4673
  msgid ""
4674
  "This feature is applying only for bookings for specific timeslots, or if activated check in/out "
4675
  "time option."
4676
  msgstr ""
4677
 
4678
- #: core/lib/wpbc_all_translations.php:867 inc/_bm/admin/api-settings-m.php:110
4679
  #: inc/_bm/admin/api-settings-m.php:134
4680
  msgid "Before booking"
4681
  msgstr ""
4682
 
4683
- #: core/lib/wpbc_all_translations.php:868 inc/_bm/admin/api-settings-m.php:111
4684
  #: inc/_bm/admin/api-settings-m.php:120 inc/_bm/admin/api-settings-m.php:135
4685
  #: inc/_bm/admin/api-settings-m.php:144
4686
  msgid "Select unavailable time interval."
4687
  msgstr ""
4688
 
4689
- #: core/lib/wpbc_all_translations.php:869 inc/_bm/admin/api-settings-m.php:119
4690
  #: inc/_bm/admin/api-settings-m.php:143
4691
  msgid "After booking"
4692
  msgstr ""
4693
 
4694
- #: core/lib/wpbc_all_translations.php:870 inc/_bm/admin/api-settings-m.php:170
4695
  msgid "Showing cost in date cell"
4696
  msgstr ""
4697
 
4698
- #: core/lib/wpbc_all_translations.php:871 inc/_bm/admin/api-settings-m.php:171
4699
  #, php-format
4700
  msgid " Check this box to display the %sdaily cost at the date cells%s in the calendar(s)."
4701
  msgstr ""
4702
 
4703
- #: core/lib/wpbc_all_translations.php:872 inc/_bm/admin/api-settings-m.php:188
4704
  msgid "Currency symbol"
4705
  msgstr ""
4706
 
4707
- #: core/lib/wpbc_all_translations.php:873 inc/_bm/admin/api-settings-m.php:224
4708
  #, php-format
4709
  msgid ""
4710
  "Type your %scurrency symbol%s to display near daily cost in date cells. %sDocumentation on "
4711
  "currency symbols%s"
4712
  msgstr ""
4713
 
4714
- #: core/lib/wpbc_all_translations.php:874 inc/_bm/admin/api-settings-m.php:237
4715
  msgid "Showing cost in tooltip"
4716
  msgstr ""
4717
 
4718
- #: core/lib/wpbc_all_translations.php:875 inc/_bm/admin/api-settings-m.php:238
4719
  msgid ""
4720
  " Check this box to display the daily cost with a tooltip when mouse hovers over each day on the "
4721
  "calendar(s)."
4722
  msgstr ""
4723
 
4724
- #: core/lib/wpbc_all_translations.php:876 inc/_bm/admin/api-settings-m.php:246
4725
  msgid "Cost Title"
4726
  msgstr ""
4727
 
4728
- #: core/lib/wpbc_all_translations.php:877 inc/_bm/admin/api-settings-m.php:248
4729
  #, php-format
4730
  msgid "Type your %scost%s description"
4731
  msgstr ""
4732
 
4733
- #: core/lib/wpbc_all_translations.php:878 inc/_bm/admin/api-settings-m.php:569
4734
  #: inc/_bm/m-toolbar.php:67 inc/_bm/m-toolbar.php:414
4735
  msgid "Custom Forms"
4736
  msgstr ""
4737
 
4738
- #: core/lib/wpbc_all_translations.php:879 inc/_bm/admin/page-availability.php:48
4739
  msgid "Configuration of availability for booking resources"
4740
  msgstr ""
4741
 
4742
- #: core/lib/wpbc_all_translations.php:880 inc/_bm/admin/page-availability.php:49
4743
  msgid "Availability Settings"
4744
  msgstr ""
4745
 
4746
- #: core/lib/wpbc_all_translations.php:881 inc/_bm/admin/page-availability.php:143
4747
  #: inc/_bm/admin/page-cost.php:119 inc/_ps/p-toolbar.php:1146
4748
  msgid "Show Children Resources"
4749
  msgstr ""
4750
 
4751
- #: core/lib/wpbc_all_translations.php:882 inc/_bm/admin/page-availability.php:145
4752
  #: inc/_bm/admin/page-cost.php:121 inc/_ps/p-toolbar.php:1148
4753
  msgid "Hide Children Resources"
4754
  msgstr ""
4755
 
4756
- #: core/lib/wpbc_all_translations.php:883 inc/_bm/admin/page-availability.php:239
4757
  #: inc/_bm/admin/page-availability.php:244 inc/_bm/admin/page-availability.php:800
4758
  msgid "Set Availability"
4759
  msgstr ""
4760
 
4761
- #: core/lib/wpbc_all_translations.php:884 inc/_bm/admin/page-availability.php:253
4762
  #: inc/_bm/admin/page-cost.php:238 inc/_ps/admin/page-resources.php:202
4763
  #, php-format
4764
  msgid ""
@@ -4766,681 +4775,681 @@ msgid ""
4766
  "booking(s) from this resource(s). Otherwise you will have %slost bookings%s."
4767
  msgstr ""
4768
 
4769
- #: core/lib/wpbc_all_translations.php:885 inc/_bm/admin/page-availability.php:499
4770
  #: inc/_bm/admin/page-cost.php:565 inc/_ps/admin/page-resources.php:463
4771
  msgid "Resource Name"
4772
  msgstr ""
4773
 
4774
- #: core/lib/wpbc_all_translations.php:886 inc/_bm/admin/page-availability.php:608
4775
  #: inc/_bm/admin/page-availability.php:895
4776
  msgid "All days"
4777
  msgstr ""
4778
 
4779
- #: core/lib/wpbc_all_translations.php:887 inc/_bm/admin/page-availability.php:609
4780
  #: inc/_bm/admin/page-availability.php:637 inc/_bm/admin/page-availability.php:890
4781
  #: inc/_bm/admin/page-availability.php:904 inc/_bm/admin/page-availability.php:933
4782
  #: inc/_bm/admin/page-availability.php:1097 inc/_bm/admin/page-cost-rate.php:348
4783
  msgid "available"
4784
  msgstr ""
4785
 
4786
- #: core/lib/wpbc_all_translations.php:888 inc/_bm/admin/page-availability.php:610
4787
  #: inc/_bm/admin/page-availability.php:638 inc/_bm/admin/page-availability.php:891
4788
  #: inc/_bm/admin/page-availability.php:900 inc/_bm/admin/page-availability.php:929
4789
  #: inc/_bm/admin/page-availability.php:1093 inc/_bm/admin/page-cost-rate.php:344
4790
  msgid "unavailable"
4791
  msgstr ""
4792
 
4793
- #: core/lib/wpbc_all_translations.php:889 inc/_bm/admin/page-availability.php:635
4794
  #, php-format
4795
  msgid "and %s on seasons:"
4796
  msgstr ""
4797
 
4798
- #: core/lib/wpbc_all_translations.php:890 inc/_bm/admin/page-availability.php:925
4799
  #, php-format
4800
  msgid "Select %s days by activating specific season filter below or %sadd new season filter%s"
4801
  msgstr ""
4802
 
4803
- #: core/lib/wpbc_all_translations.php:891 inc/_bm/admin/page-availability.php:943
4804
  #: inc/_bm/admin/page-cost-deposit.php:309 inc/_bm/admin/page-cost-early-late-booking.php:314
4805
  #: inc/_bm/admin/page-cost-early-late-booking.php:514 inc/_bm/admin/page-cost-rate.php:119
4806
  #: inc/_bm/admin/page-cost-valuation.php:148
4807
  msgid "Hide season filters"
4808
  msgstr ""
4809
 
4810
- #: core/lib/wpbc_all_translations.php:892 inc/_bm/admin/page-availability.php:948
4811
  #: inc/_bm/admin/page-cost-deposit.php:314 inc/_bm/admin/page-cost-early-late-booking.php:319
4812
  #: inc/_bm/admin/page-cost-early-late-booking.php:519 inc/_bm/admin/page-cost-rate.php:124
4813
  #: inc/_bm/admin/page-cost-valuation.php:153
4814
  msgid "Show all exist season filters"
4815
  msgstr ""
4816
 
4817
- #: core/lib/wpbc_all_translations.php:893 inc/_bm/admin/page-availability.php:981
4818
  #: inc/_bm/admin/page-cost-rate.php:157 inc/gateways/page-gateways.php:842
4819
  msgid "Enabled"
4820
  msgstr ""
4821
 
4822
- #: core/lib/wpbc_all_translations.php:894 inc/_bm/admin/page-cost-advanced.php:44
4823
  msgid "Customization of additional cost, which depend from form fields"
4824
  msgstr ""
4825
 
4826
- #: core/lib/wpbc_all_translations.php:895 inc/_bm/admin/page-cost-advanced.php:45
4827
  msgid "Advanced Cost Settings"
4828
  msgstr ""
4829
 
4830
- #: core/lib/wpbc_all_translations.php:896 inc/_bm/admin/page-cost-advanced.php:125
4831
  msgid "Configure additional cost, which depend from selection of selectbox(es) and checkbox(es)."
4832
  msgstr ""
4833
 
4834
- #: core/lib/wpbc_all_translations.php:897 inc/_bm/admin/page-cost-advanced.php:127
4835
  #, php-format
4836
  msgid ""
4837
  "Fields %s(selectbox(es) and checkbox(es))%s are shown here automatically if they exist in the "
4838
  "%sbooking form%s."
4839
  msgstr ""
4840
 
4841
- #: core/lib/wpbc_all_translations.php:898 inc/_bm/admin/page-cost-advanced.php:441
4842
  #: inc/_bm/admin/page-cost-deposit.php:181
4843
  msgid "Deposit type"
4844
  msgstr ""
4845
 
4846
- #: core/lib/wpbc_all_translations.php:899 inc/_bm/admin/page-cost-advanced.php:460
4847
  msgid "of total cost"
4848
  msgstr ""
4849
 
4850
- #: core/lib/wpbc_all_translations.php:900 inc/_bm/admin/page-cost-advanced.php:462
4851
  #: inc/_bs/admin/api-settings-s.php:898
4852
  msgid "night"
4853
  msgstr ""
4854
 
4855
- #: core/lib/wpbc_all_translations.php:901 inc/_bm/admin/page-cost-advanced.php:463
4856
  msgid "as additional sum"
4857
  msgstr ""
4858
 
4859
- #: core/lib/wpbc_all_translations.php:902 inc/_bm/admin/page-cost-advanced.php:658
4860
  msgid "Enter additional cost in formats:"
4861
  msgstr ""
4862
 
4863
- #: core/lib/wpbc_all_translations.php:903 inc/_bm/admin/page-cost-advanced.php:659
4864
  #, php-format
4865
  msgid ""
4866
  "For example, if the original cost of the booking is %s, then after applying additional costs the "
4867
  "total cost will be folowing"
4868
  msgstr ""
4869
 
4870
- #: core/lib/wpbc_all_translations.php:904 inc/_bm/admin/page-cost-advanced.php:662
4871
  msgid "Enter fixed cost"
4872
  msgstr ""
4873
 
4874
- #: core/lib/wpbc_all_translations.php:905 inc/_bm/admin/page-cost-advanced.php:662
4875
  #: inc/_bm/admin/page-cost-advanced.php:665 inc/_bm/admin/page-cost-advanced.php:671
4876
  #: inc/_bm/admin/page-cost-advanced.php:681
4877
  #, php-format
4878
  msgid "%s, then total cost will be %s"
4879
  msgstr ""
4880
 
4881
- #: core/lib/wpbc_all_translations.php:906 inc/_bm/admin/page-cost-advanced.php:665
4882
  msgid "Enter percentage of the entire booking"
4883
  msgstr ""
4884
 
4885
- #: core/lib/wpbc_all_translations.php:907 inc/_bm/admin/page-cost-advanced.php:668
4886
  msgid "Enter fixed amount for each selected day"
4887
  msgstr ""
4888
 
4889
- #: core/lib/wpbc_all_translations.php:908 inc/_bm/admin/page-cost-advanced.php:668
4890
  #, php-format
4891
  msgid "%s, then total cost will be (if selected 3 days) %s"
4892
  msgstr ""
4893
 
4894
- #: core/lib/wpbc_all_translations.php:909 inc/_bm/admin/page-cost-advanced.php:668
4895
  #: inc/_ps/form/class-wpbc-form-help.php:279 inc/_ps/form/class-wpbc-form-help.php:292
4896
  #: inc/_ps/form/class-wpbc-form-help.php:306 inc/_ps/form/class-wpbc-form-help.php:344
4897
  msgid "or"
4898
  msgstr ""
4899
 
4900
- #: core/lib/wpbc_all_translations.php:910 inc/_bm/admin/page-cost-advanced.php:671
4901
  msgid "Enter percentage as additional sum, which is based only on original cost and not full sum"
4902
  msgstr ""
4903
 
4904
- #: core/lib/wpbc_all_translations.php:911 inc/_bm/admin/page-cost-advanced.php:674
4905
  #: inc/_bm/admin/page-cost-advanced.php:686
4906
  #, php-format
4907
  msgid "Please check more info about configuration of this cost settings on this %spage%s."
4908
  msgstr ""
4909
 
4910
- #: core/lib/wpbc_all_translations.php:912 inc/_bm/admin/page-cost-deposit.php:73
4911
  msgid "Set Deposit"
4912
  msgstr ""
4913
 
4914
- #: core/lib/wpbc_all_translations.php:913 inc/_bm/admin/page-cost-deposit.php:135
4915
  msgid "deposit payment for booking resource"
4916
  msgstr ""
4917
 
4918
- #: core/lib/wpbc_all_translations.php:914 inc/_bm/admin/page-cost-deposit.php:153
4919
  #: inc/_bm/admin/page-cost-deposit.php:162
4920
  msgid "Deposit amount"
4921
  msgstr ""
4922
 
4923
- #: core/lib/wpbc_all_translations.php:915 inc/_bm/admin/page-cost-deposit.php:199
4924
  #: inc/_bm/admin/page-cost-early-late-booking.php:203
4925
  #: inc/_bm/admin/page-cost-early-late-booking.php:404
4926
  msgid "fixed total in"
4927
  msgstr ""
4928
 
4929
- #: core/lib/wpbc_all_translations.php:916 inc/_bm/admin/page-cost-deposit.php:200
4930
  #: inc/_bm/admin/page-cost-early-late-booking.php:204
4931
  #: inc/_bm/admin/page-cost-early-late-booking.php:405
4932
  msgid "of payment"
4933
  msgstr ""
4934
 
4935
- #: core/lib/wpbc_all_translations.php:917 inc/_bm/admin/page-cost-deposit.php:209
4936
  #: inc/_bm/admin/page-cost-early-late-booking.php:213
4937
  #: inc/_bm/admin/page-cost-early-late-booking.php:414
4938
  msgid "Conditions"
4939
  msgstr ""
4940
 
4941
- #: core/lib/wpbc_all_translations.php:918 inc/_bm/admin/page-cost-deposit.php:219
4942
  #, php-format
4943
  msgid ""
4944
  "Show deposit payment form, only if difference between %sToday%s and %sCheck In%s days more than"
4945
  msgstr ""
4946
 
4947
- #: core/lib/wpbc_all_translations.php:919 inc/_bm/admin/page-cost-deposit.php:271
4948
  #, php-format
4949
  msgid "Show deposit payment form, only if %sCheck In%s day inside of this %sSeason Filter%s"
4950
  msgstr ""
4951
 
4952
- #: core/lib/wpbc_all_translations.php:920 inc/_bm/admin/page-cost-deposit.php:275
4953
  #: inc/_bm/admin/page-cost-early-late-booking.php:280
4954
  #: inc/_bm/admin/page-cost-early-late-booking.php:480 inc/_bm/admin/page-cost-valuation.php:542
4955
  msgid "Any days"
4956
  msgstr ""
4957
 
4958
- #: core/lib/wpbc_all_translations.php:921 inc/_bm/admin/page-cost-deposit.php:342
4959
  msgid "Deposit payment total"
4960
  msgstr ""
4961
 
4962
- #: core/lib/wpbc_all_translations.php:922 inc/_bm/admin/page-cost-rate.php:69
4963
  msgid "Set Rates"
4964
  msgstr ""
4965
 
4966
- #: core/lib/wpbc_all_translations.php:923 inc/_bm/admin/page-cost-rate.php:163
4967
  #: inc/_bm/admin/page-cost.php:660 inc/_bm/admin/page-cost.php:661
4968
  msgid "Rates"
4969
  msgstr ""
4970
 
4971
- #: core/lib/wpbc_all_translations.php:924 inc/_bm/admin/page-cost-rate.php:167
4972
  msgid "Seasonal price"
4973
  msgstr ""
4974
 
4975
- #: core/lib/wpbc_all_translations.php:925 inc/_bm/admin/page-cost-rate.php:171
4976
  #: inc/_bm/admin/page-cost-valuation.php:198
4977
  msgid "Season"
4978
  msgstr ""
4979
 
4980
- #: core/lib/wpbc_all_translations.php:926 inc/_bm/admin/page-cost-rate.php:215
4981
  #, php-format
4982
  msgid ""
4983
  "Enter seasonal rate(s) (cost diference in %s from standard cost %s or a fixed cost) of the "
4984
  "booking resource (%s) or %sAdd a new seasonal filter%s"
4985
  msgstr ""
4986
 
4987
- #: core/lib/wpbc_all_translations.php:927 inc/_bm/admin/page-cost-valuation.php:96
4988
  #: inc/_bm/admin/page-cost.php:220 inc/_bm/admin/page-cost.php:229
4989
  msgid "Set Valuation Days"
4990
  msgstr ""
4991
 
4992
- #: core/lib/wpbc_all_translations.php:928 inc/_bm/admin/page-cost-valuation.php:185
4993
  #: inc/_mu/admin/page-users.php:437
4994
  msgid "Status"
4995
  msgstr ""
4996
 
4997
- #: core/lib/wpbc_all_translations.php:929 inc/_bm/admin/page-cost-valuation.php:194
4998
  msgid "Costs"
4999
  msgstr ""
5000
 
5001
- #: core/lib/wpbc_all_translations.php:930 inc/_bm/admin/page-cost-valuation.php:249
5002
  msgid "Add new cost"
5003
  msgstr ""
5004
 
5005
- #: core/lib/wpbc_all_translations.php:931 inc/_bm/admin/page-cost-valuation.php:272
5006
  #, php-format
5007
  msgid ""
5008
  "Cost setings at %stop have higher priority%s than other costs of same type at the %sbottom%s of "
5009
  "the list."
5010
  msgstr ""
5011
 
5012
- #: core/lib/wpbc_all_translations.php:932 inc/_bm/admin/page-cost-valuation.php:275
5013
  #, php-format
5014
  msgid ""
5015
  "Please create all %s terms firstly %s(from higher priority to lower)%s, then terms %s and after "
5016
  "terms %s"
5017
  msgstr ""
5018
 
5019
- #: core/lib/wpbc_all_translations.php:933 inc/_bm/admin/page-cost-valuation.php:275
5020
  #: inc/_bm/admin/page-cost-valuation.php:278 inc/_bm/admin/page-cost-valuation.php:450
5021
  msgid "Together"
5022
  msgstr ""
5023
 
5024
- #: core/lib/wpbc_all_translations.php:934 inc/_bm/admin/page-cost-valuation.php:275
5025
  #: inc/_bm/admin/page-cost-valuation.php:278 inc/_bm/admin/page-cost-valuation.php:282
5026
  #: inc/_bm/admin/page-cost-valuation.php:284 inc/_bm/admin/page-cost-valuation.php:448
5027
  msgid "For"
5028
  msgstr ""
5029
 
5030
- #: core/lib/wpbc_all_translations.php:935 inc/_bm/admin/page-cost-valuation.php:278
5031
  #, php-format
5032
  msgid "%s and %s terms have higher priority than a range %s days."
5033
  msgstr ""
5034
 
5035
- #: core/lib/wpbc_all_translations.php:936 inc/_bm/admin/page-cost-valuation.php:282
5036
  #, php-format
5037
  msgid "%s - definition of check-out date."
5038
  msgstr ""
5039
 
5040
- #: core/lib/wpbc_all_translations.php:937 inc/_bm/admin/page-cost-valuation.php:284
5041
  #: inc/_bs/admin/api-settings-s.php:199 inc/_bs/admin/api-settings-s.php:325
5042
  #: inc/_bs/admin/api-settings-s.php:338 inc/_ps/form/class-wpbc-form-help.php:532
5043
  #: inc/_ps/form/class-wpbc-form-help.php:535
5044
  msgid "Example"
5045
  msgstr ""
5046
 
5047
- #: core/lib/wpbc_all_translations.php:938 inc/_bm/admin/page-cost-valuation.php:291
5048
  msgid ""
5049
  "Specific cost will take affect, only if it active (the box at the left side is checked) and if "
5050
  "\"Check In\" (start) date belong to selected season filter or if set \"Any days\"."
5051
  msgstr ""
5052
 
5053
- #: core/lib/wpbc_all_translations.php:939 inc/_bm/admin/page-cost-valuation.php:335
5054
  #: inc/_bm/admin/page-cost-valuation.php:336 inc/_bm/biz_m.php:219 inc/_bm/biz_m.php:251
5055
  #: inc/_bm/biz_m.php:252
5056
  msgid " for all days!"
5057
  msgstr ""
5058
 
5059
- #: core/lib/wpbc_all_translations.php:940 inc/_bm/admin/page-cost-valuation.php:341
5060
  #: inc/_bm/admin/page-cost-valuation.php:502 inc/_bm/biz_m.php:217 inc/_bm/biz_m.php:249
5061
  msgid "from the cost of 1 day "
5062
  msgstr ""
5063
 
5064
- #: core/lib/wpbc_all_translations.php:941 inc/_bm/admin/page-cost-valuation.php:342
5065
  #: inc/_bm/admin/page-cost-valuation.php:503 inc/_bm/biz_m.php:216 inc/_bm/biz_m.php:248
5066
  msgid "per 1 day"
5067
  msgstr ""
5068
 
5069
- #: core/lib/wpbc_all_translations.php:942 inc/_bm/admin/page-cost-valuation.php:470
5070
  #: inc/_bm/admin/page-seasons.php:1564
5071
  msgid "to"
5072
  msgstr ""
5073
 
5074
- #: core/lib/wpbc_all_translations.php:943 inc/_bm/admin/page-cost-valuation.php:504
5075
  #: inc/_bm/biz_m.php:218 inc/_bm/biz_m.php:250
5076
  #, php-format
5077
  msgid "Additional cost in %s per 1 day"
5078
  msgstr ""
5079
 
5080
- #: core/lib/wpbc_all_translations.php:944 inc/_bm/admin/page-cost.php:49
5081
  msgid "Customization of rates, valuation days cost and deposit amount "
5082
  msgstr ""
5083
 
5084
- #: core/lib/wpbc_all_translations.php:945 inc/_bm/admin/page-cost.php:50
5085
  msgid "Costs and Rates Settings"
5086
  msgstr ""
5087
 
5088
- #: core/lib/wpbc_all_translations.php:946 inc/_bm/admin/page-cost.php:219
5089
  #: inc/_bm/admin/page-cost.php:228
5090
  msgid "Set Rate"
5091
  msgstr ""
5092
 
5093
- #: core/lib/wpbc_all_translations.php:947 inc/_bm/admin/page-cost.php:221
5094
  #: inc/_bm/admin/page-cost.php:230
5095
  msgid "Set Deposit Amount"
5096
  msgstr ""
5097
 
5098
- #: core/lib/wpbc_all_translations.php:948 inc/_bm/admin/page-cost.php:667
5099
  #: inc/_bm/admin/page-cost.php:668
5100
  msgid "Valuation days"
5101
  msgstr ""
5102
 
5103
- #: core/lib/wpbc_all_translations.php:949 inc/_bm/admin/page-cost.php:674
5104
  #: inc/_bm/admin/page-cost.php:675 inc/gateways/page-gateways.php:1405
5105
  msgid "Deposit"
5106
  msgstr ""
5107
 
5108
- #: core/lib/wpbc_all_translations.php:950 inc/_bm/admin/page-seasons.php:46
5109
  msgid "Customizaton of Season Filters"
5110
  msgstr ""
5111
 
5112
- #: core/lib/wpbc_all_translations.php:951 inc/_bm/admin/page-seasons.php:680
5113
  #: inc/_bm/admin/page-seasons.php:815
5114
  msgid "Specific Dates Filter"
5115
  msgstr ""
5116
 
5117
- #: core/lib/wpbc_all_translations.php:952 inc/_bm/admin/page-seasons.php:743
5118
  #: inc/_bm/admin/page-seasons.php:821
5119
  msgid "Conditional Dates Filter"
5120
  msgstr ""
5121
 
5122
- #: core/lib/wpbc_all_translations.php:953 inc/_bm/admin/page-seasons.php:956
5123
  #: inc/_bm/admin/page-seasons.php:1257
5124
  msgid "Filter Name"
5125
  msgstr ""
5126
 
5127
- #: core/lib/wpbc_all_translations.php:954 inc/_bm/admin/page-seasons.php:957
5128
  #: inc/_bm/admin/page-seasons.php:1258
5129
  msgid "Type filter name"
5130
  msgstr ""
5131
 
5132
- #: core/lib/wpbc_all_translations.php:955 inc/_bm/admin/page-seasons.php:990
5133
  msgid "Weekdays"
5134
  msgstr ""
5135
 
5136
- #: core/lib/wpbc_all_translations.php:956 inc/_bm/admin/page-seasons.php:1106
5137
  msgid "Months"
5138
  msgstr ""
5139
 
5140
- #: core/lib/wpbc_all_translations.php:957 inc/_bm/admin/page-seasons.php:1108
5141
  #: inc/_bm/admin/page-seasons.php:1283
5142
  msgid "January"
5143
  msgstr ""
5144
 
5145
- #: core/lib/wpbc_all_translations.php:958 inc/_bm/admin/page-seasons.php:1109
5146
  #: inc/_bm/admin/page-seasons.php:1284
5147
  msgid "February"
5148
  msgstr ""
5149
 
5150
- #: core/lib/wpbc_all_translations.php:959 inc/_bm/admin/page-seasons.php:1110
5151
  #: inc/_bm/admin/page-seasons.php:1285
5152
  msgid "March"
5153
  msgstr ""
5154
 
5155
- #: core/lib/wpbc_all_translations.php:960 inc/_bm/admin/page-seasons.php:1111
5156
  #: inc/_bm/admin/page-seasons.php:1286
5157
  msgid "April"
5158
  msgstr ""
5159
 
5160
- #: core/lib/wpbc_all_translations.php:961 inc/_bm/admin/page-seasons.php:1112
5161
  #: inc/_bm/admin/page-seasons.php:1287 inc/_bm/admin/page-seasons.php:1490
5162
  msgid "May"
5163
  msgstr ""
5164
 
5165
- #: core/lib/wpbc_all_translations.php:962 inc/_bm/admin/page-seasons.php:1113
5166
  #: inc/_bm/admin/page-seasons.php:1288
5167
  msgid "June"
5168
  msgstr ""
5169
 
5170
- #: core/lib/wpbc_all_translations.php:963 inc/_bm/admin/page-seasons.php:1114
5171
  #: inc/_bm/admin/page-seasons.php:1289
5172
  msgid "July"
5173
  msgstr ""
5174
 
5175
- #: core/lib/wpbc_all_translations.php:964 inc/_bm/admin/page-seasons.php:1115
5176
  #: inc/_bm/admin/page-seasons.php:1290
5177
  msgid "August"
5178
  msgstr ""
5179
 
5180
- #: core/lib/wpbc_all_translations.php:965 inc/_bm/admin/page-seasons.php:1116
5181
  #: inc/_bm/admin/page-seasons.php:1291
5182
  msgid "September"
5183
  msgstr ""
5184
 
5185
- #: core/lib/wpbc_all_translations.php:966 inc/_bm/admin/page-seasons.php:1117
5186
  #: inc/_bm/admin/page-seasons.php:1292
5187
  msgid "October"
5188
  msgstr ""
5189
 
5190
- #: core/lib/wpbc_all_translations.php:967 inc/_bm/admin/page-seasons.php:1118
5191
  #: inc/_bm/admin/page-seasons.php:1293
5192
  msgid "November"
5193
  msgstr ""
5194
 
5195
- #: core/lib/wpbc_all_translations.php:968 inc/_bm/admin/page-seasons.php:1119
5196
  #: inc/_bm/admin/page-seasons.php:1294
5197
  msgid "December"
5198
  msgstr ""
5199
 
5200
- #: core/lib/wpbc_all_translations.php:969 inc/_bm/admin/page-seasons.php:1174
5201
  msgid "Years"
5202
  msgstr ""
5203
 
5204
- #: core/lib/wpbc_all_translations.php:970 inc/_bm/admin/page-seasons.php:1272
5205
  #: inc/_bm/admin/page-seasons.php:1487
5206
  msgid "Mo"
5207
  msgstr ""
5208
 
5209
- #: core/lib/wpbc_all_translations.php:971 inc/_bm/admin/page-seasons.php:1273
5210
  #: inc/_bm/admin/page-seasons.php:1487
5211
  msgid "Tu"
5212
  msgstr ""
5213
 
5214
- #: core/lib/wpbc_all_translations.php:972 inc/_bm/admin/page-seasons.php:1274
5215
  #: inc/_bm/admin/page-seasons.php:1487
5216
  msgid "We"
5217
  msgstr ""
5218
 
5219
- #: core/lib/wpbc_all_translations.php:973 inc/_bm/admin/page-seasons.php:1275
5220
  #: inc/_bm/admin/page-seasons.php:1487
5221
  msgid "Th"
5222
  msgstr ""
5223
 
5224
- #: core/lib/wpbc_all_translations.php:974 inc/_bm/admin/page-seasons.php:1276
5225
  #: inc/_bm/admin/page-seasons.php:1487
5226
  msgid "Fr"
5227
  msgstr ""
5228
 
5229
- #: core/lib/wpbc_all_translations.php:975 inc/_bm/admin/page-seasons.php:1277
5230
  #: inc/_bm/admin/page-seasons.php:1487
5231
  msgid "Sa"
5232
  msgstr ""
5233
 
5234
- #: core/lib/wpbc_all_translations.php:976 inc/_bm/admin/page-seasons.php:1278
5235
  #: inc/_bm/admin/page-seasons.php:1487
5236
  msgid "Su"
5237
  msgstr ""
5238
 
5239
- #: core/lib/wpbc_all_translations.php:977 inc/_bm/admin/page-seasons.php:1489
5240
  msgid "Jan"
5241
  msgstr ""
5242
 
5243
- #: core/lib/wpbc_all_translations.php:978 inc/_bm/admin/page-seasons.php:1489
5244
  msgid "Feb"
5245
  msgstr ""
5246
 
5247
- #: core/lib/wpbc_all_translations.php:979 inc/_bm/admin/page-seasons.php:1490
5248
  msgid "Mar"
5249
  msgstr ""
5250
 
5251
- #: core/lib/wpbc_all_translations.php:980 inc/_bm/admin/page-seasons.php:1490
5252
  msgid "Apr"
5253
  msgstr ""
5254
 
5255
- #: core/lib/wpbc_all_translations.php:981 inc/_bm/admin/page-seasons.php:1491
5256
  msgid "Jun"
5257
  msgstr ""
5258
 
5259
- #: core/lib/wpbc_all_translations.php:982 inc/_bm/admin/page-seasons.php:1491
5260
  msgid "Jul"
5261
  msgstr ""
5262
 
5263
- #: core/lib/wpbc_all_translations.php:983 inc/_bm/admin/page-seasons.php:1491
5264
  msgid "Aug"
5265
  msgstr ""
5266
 
5267
- #: core/lib/wpbc_all_translations.php:984 inc/_bm/admin/page-seasons.php:1492
5268
  msgid "Sep"
5269
  msgstr ""
5270
 
5271
- #: core/lib/wpbc_all_translations.php:985 inc/_bm/admin/page-seasons.php:1492
5272
  msgid "Oct"
5273
  msgstr ""
5274
 
5275
- #: core/lib/wpbc_all_translations.php:986 inc/_bm/admin/page-seasons.php:1492
5276
  msgid "Nov"
5277
  msgstr ""
5278
 
5279
- #: core/lib/wpbc_all_translations.php:987 inc/_bm/admin/page-seasons.php:1492
5280
  msgid "Dec"
5281
  msgstr ""
5282
 
5283
- #: core/lib/wpbc_all_translations.php:988 inc/_bm/admin/page-seasons.php:1562
5284
  #: inc/_bm/admin/page-seasons.php:1580 inc/_bm/admin/page-seasons.php:1602
5285
  #: inc/_bm/admin/page-seasons.php:1626 inc/_bm/admin/page-seasons.php:1644
5286
  msgid "No days"
5287
  msgstr ""
5288
 
5289
- #: core/lib/wpbc_all_translations.php:989 inc/_bm/admin/page-seasons.php:1564
5290
  msgid "time"
5291
  msgstr ""
5292
 
5293
- #: core/lib/wpbc_all_translations.php:990 inc/_bm/admin/page-seasons.php:1582
5294
  msgid "Every"
5295
  msgstr ""
5296
 
5297
- #: core/lib/wpbc_all_translations.php:991 inc/_bm/admin/page-seasons.php:1598
5298
  msgid "Each day "
5299
  msgstr ""
5300
 
5301
- #: core/lib/wpbc_all_translations.php:992 inc/_bm/admin/page-seasons.php:1600
5302
  msgid "on each day "
5303
  msgstr ""
5304
 
5305
- #: core/lib/wpbc_all_translations.php:993 inc/_bm/admin/page-seasons.php:1605
5306
  msgid "On each "
5307
  msgstr ""
5308
 
5309
- #: core/lib/wpbc_all_translations.php:994 inc/_bm/admin/page-seasons.php:1607
5310
  msgid "on each "
5311
  msgstr ""
5312
 
5313
- #: core/lib/wpbc_all_translations.php:995 inc/_bm/admin/page-seasons.php:1624
5314
  msgid "of every month "
5315
  msgstr ""
5316
 
5317
- #: core/lib/wpbc_all_translations.php:996 inc/_bm/admin/page-seasons.php:1628
5318
  msgid "of"
5319
  msgstr ""
5320
 
5321
- #: core/lib/wpbc_all_translations.php:997 inc/_bm/biz_m.php:220
5322
  msgid "for all days!"
5323
  msgstr ""
5324
 
5325
- #: core/lib/wpbc_all_translations.php:998 inc/_bm/biz_m.php:764
5326
  msgid "Standard booking resource cost"
5327
  msgstr ""
5328
 
5329
- #: core/lib/wpbc_all_translations.php:999 inc/_bm/biz_m.php:765
5330
  msgid "Total booking resource cost"
5331
  msgstr ""
5332
 
5333
- #: core/lib/wpbc_all_translations.php:1000 inc/_bm/m-toolbar.php:288
5334
  msgid "Delete selected booking form"
5335
  msgstr ""
5336
 
5337
- #: core/lib/wpbc_all_translations.php:1001 inc/_bm/m-toolbar.php:292
5338
  msgid "Do you really want to delete selected booking form ?"
5339
  msgstr ""
5340
 
5341
- #: core/lib/wpbc_all_translations.php:1002 inc/_bm/m-toolbar.php:317 inc/_bm/m-toolbar.php:318
5342
  msgid "Add New Custom Form"
5343
  msgstr ""
5344
 
5345
- #: core/lib/wpbc_all_translations.php:1003 inc/_bm/m-toolbar.php:351
5346
  msgid "Type the name of booking form"
5347
  msgstr ""
5348
 
5349
- #: core/lib/wpbc_all_translations.php:1004 inc/_bm/m-toolbar.php:358
5350
  msgid "Create"
5351
  msgstr ""
5352
 
5353
- #: core/lib/wpbc_all_translations.php:1005 inc/_bm/m-toolbar.php:359
5354
  msgid "Create new form"
5355
  msgstr ""
5356
 
5357
- #: core/lib/wpbc_all_translations.php:1006 inc/_bm/m-toolbar.php:554
5358
  msgid "There are no extended booking forms"
5359
  msgstr ""
5360
 
5361
- #: core/lib/wpbc_all_translations.php:1007 inc/_bm/m-toolbar.php:598 inc/_bm/m-toolbar.php:600
5362
  msgid "Create conditional days filter"
5363
  msgstr ""
5364
 
5365
- #: core/lib/wpbc_all_translations.php:1008 inc/_bs/admin/activation-s.php:93
5366
  #: inc/_mu/admin/activation-u.php:85 inc/_ps/admin/activation-p.php:46
5367
  msgid "Apartment#1"
5368
  msgstr ""
5369
 
5370
- #: core/lib/wpbc_all_translations.php:1009 inc/_bs/admin/activation-s.php:94
5371
  #: inc/_mu/admin/activation-u.php:86 inc/_ps/admin/activation-p.php:47
5372
  msgid "Apartment#2"
5373
  msgstr ""
5374
 
5375
- #: core/lib/wpbc_all_translations.php:1010 inc/_bs/admin/activation-s.php:95
5376
  #: inc/_ps/admin/activation-p.php:48
5377
  msgid "Apartment#3"
5378
  msgstr ""
5379
 
5380
- #: core/lib/wpbc_all_translations.php:1011 inc/_bs/admin/api-settings-s.php:31
5381
  msgid "Range days"
5382
  msgstr ""
5383
 
5384
- #: core/lib/wpbc_all_translations.php:1012 inc/_bs/admin/api-settings-s.php:46
5385
  #, php-format
5386
  msgid "Select a %sFIXED%s number of days with %s1 mouse click%s"
5387
  msgstr ""
5388
 
5389
- #: core/lib/wpbc_all_translations.php:1013 inc/_bs/admin/api-settings-s.php:48
5390
  #, php-format
5391
  msgid "Select a %sDYNAMIC%s range of days with %s2 mouse clicks%s"
5392
  msgstr ""
5393
 
5394
- #: core/lib/wpbc_all_translations.php:1014 inc/_bs/admin/api-settings-s.php:74
5395
  #: inc/_bs/admin/api-settings-s.php:138
5396
  msgid "Days selection number"
5397
  msgstr ""
5398
 
5399
- #: core/lib/wpbc_all_translations.php:1015 inc/_bs/admin/api-settings-s.php:75
5400
  #, php-format
5401
  msgid "Type your %snumber of days for range selection%s"
5402
  msgstr ""
5403
 
5404
- #: core/lib/wpbc_all_translations.php:1016 inc/_bs/admin/api-settings-s.php:83
5405
  #: inc/_bs/admin/api-settings-s.php:211
5406
  msgid "Specific day(s) of week"
5407
  msgstr ""
5408
 
5409
- #: core/lib/wpbc_all_translations.php:1017 inc/_bs/admin/api-settings-s.php:84
5410
  #: inc/_bs/admin/api-settings-s.php:215
5411
  msgid "Any day of week"
5412
  msgstr ""
5413
 
5414
- #: core/lib/wpbc_all_translations.php:1018 inc/_bs/admin/api-settings-s.php:90
5415
  #: inc/_bs/admin/api-settings-s.php:223
5416
  msgid "Start day of range"
5417
  msgstr ""
5418
 
5419
- #: core/lib/wpbc_all_translations.php:1019 inc/_bs/admin/api-settings-s.php:119
5420
  #: inc/_bs/admin/api-settings-s.php:252
5421
  msgid "Select your start day of range selection at week"
5422
  msgstr ""
5423
 
5424
- #: core/lib/wpbc_all_translations.php:1020 inc/_bs/admin/api-settings-s.php:152
5425
  #: inc/_bs/admin/api-settings-s.php:157
5426
  msgid "Min"
5427
  msgstr ""
5428
 
5429
- #: core/lib/wpbc_all_translations.php:1021 inc/_bs/admin/api-settings-s.php:170
5430
  #: inc/_bs/admin/api-settings-s.php:175
5431
  msgid "Max"
5432
  msgstr ""
5433
 
5434
- #: core/lib/wpbc_all_translations.php:1022 inc/_bs/admin/api-settings-s.php:187
5435
  #, php-format
5436
  msgid "Select your %sminimum and maximum number of days for range selection%s"
5437
  msgstr ""
5438
 
5439
- #: core/lib/wpbc_all_translations.php:1023 inc/_bs/admin/api-settings-s.php:198
5440
  msgid "Specific days selections"
5441
  msgstr ""
5442
 
5443
- #: core/lib/wpbc_all_translations.php:1024 inc/_bs/admin/api-settings-s.php:200
5444
  #, php-format
5445
  msgid ""
5446
  "Type your %sspecific%s days, which can be selected by visitors, or leave this value empty. It "
@@ -5448,630 +5457,631 @@ msgid ""
5448
  "this: %s) or combination (example:%s, its the same like this: %s)"
5449
  msgstr ""
5450
 
5451
- #: core/lib/wpbc_all_translations.php:1025 inc/_bs/admin/api-settings-s.php:281
5452
  msgid "Use time selections as recurrent time slots"
5453
  msgstr ""
5454
 
5455
- #: core/lib/wpbc_all_translations.php:1026 inc/_bs/admin/api-settings-s.php:282
5456
  msgid ""
5457
  "Check this box if you want to use recurrent time to reserve several days. This means that middle "
5458
  "days will be partially booked by actual times, otherwise the time in the booking form will be "
5459
  "used as check-in/check-out time for the first and last day of the reservation."
5460
  msgstr ""
5461
 
5462
- #: core/lib/wpbc_all_translations.php:1027 inc/_bs/admin/api-settings-s.php:315
5463
  msgid "Check this option, to use check in/out time during booking process. "
5464
  msgstr ""
5465
 
5466
- #: core/lib/wpbc_all_translations.php:1028 inc/_bs/admin/api-settings-s.php:316
5467
  #, php-format
5468
  msgid "%s Important!%s This will overwrite any times selection in your booking form."
5469
  msgstr ""
5470
 
5471
- #: core/lib/wpbc_all_translations.php:1029 inc/_bs/admin/api-settings-s.php:323
5472
  msgid "Check-in time"
5473
  msgstr ""
5474
 
5475
- #: core/lib/wpbc_all_translations.php:1030 inc/_bs/admin/api-settings-s.php:324
5476
  #, php-format
5477
  msgid "Type your %sCheck-in%s time of booking"
5478
  msgstr ""
5479
 
5480
- #: core/lib/wpbc_all_translations.php:1031 inc/_bs/admin/api-settings-s.php:336
5481
  msgid "Check-Out time"
5482
  msgstr ""
5483
 
5484
- #: core/lib/wpbc_all_translations.php:1032 inc/_bs/admin/api-settings-s.php:337
5485
  #, php-format
5486
  msgid "Type your %sCheck-Out%s time of booking"
5487
  msgstr ""
5488
 
5489
- #: core/lib/wpbc_all_translations.php:1033 inc/_bs/admin/api-settings-s.php:351
5490
  msgid "Change over days as triangles"
5491
  msgstr ""
5492
 
5493
- #: core/lib/wpbc_all_translations.php:1034 inc/_bs/admin/api-settings-s.php:352
5494
  msgid "Check this option, to show change over days as triangles. "
5495
  msgstr ""
5496
 
5497
- #: core/lib/wpbc_all_translations.php:1035 inc/_bs/admin/api-settings-s.php:377
5498
  msgid "Title of booked timeslot(s)"
5499
  msgstr ""
5500
 
5501
- #: core/lib/wpbc_all_translations.php:1036 inc/_bs/admin/api-settings-s.php:378
5502
  #, php-format
5503
  msgid "Type your %stitle%s, what will show in mouseover tooltip near booked timeslot(s)"
5504
  msgstr ""
5505
 
5506
- #: core/lib/wpbc_all_translations.php:1037 inc/_bs/admin/api-settings-s.php:418
5507
  msgid "Time Format"
5508
  msgstr ""
5509
 
5510
- #: core/lib/wpbc_all_translations.php:1038 inc/_bs/admin/api-settings-s.php:452
5511
  #, php-format
5512
  msgid ""
5513
  "Type your time format for emails and the booking table. %sDocumentation on time formatting%s"
5514
  msgstr ""
5515
 
5516
- #: core/lib/wpbc_all_translations.php:1039 inc/_bs/admin/api-settings-s.php:478
5517
  msgid "Auto approve all new bookings"
5518
  msgstr ""
5519
 
5520
- #: core/lib/wpbc_all_translations.php:1040 inc/_bs/admin/api-settings-s.php:479
5521
  #, php-format
5522
  msgid "Check this checkbox to %sactivate%s auto approve of all new pending bookings."
5523
  msgstr ""
5524
 
5525
- #: core/lib/wpbc_all_translations.php:1041 inc/_bs/admin/api-settings-s.php:517
5526
  #, php-format
5527
  msgid "Check this box to %sactivate%s auto-cancellation for pending, unpaid bookings."
5528
  msgstr ""
5529
 
5530
- #: core/lib/wpbc_all_translations.php:1042 inc/_bs/admin/api-settings-s.php:541
5531
  msgid "Cancel bookings older"
5532
  msgstr ""
5533
 
5534
- #: core/lib/wpbc_all_translations.php:1043 inc/_bs/admin/api-settings-s.php:542
5535
  msgid "Cancel only pending, unpaid bookings, which are older than this selection."
5536
  msgstr ""
5537
 
5538
- #: core/lib/wpbc_all_translations.php:1044 inc/_bs/admin/api-settings-s.php:550
5539
  msgid "Cancellation email sent"
5540
  msgstr ""
5541
 
5542
- #: core/lib/wpbc_all_translations.php:1045 inc/_bs/admin/api-settings-s.php:551
5543
  #, php-format
5544
  msgid "Check this box to %ssend%s cancellation email for this resource."
5545
  msgstr ""
5546
 
5547
- #: core/lib/wpbc_all_translations.php:1046 inc/_bs/admin/api-settings-s.php:559
5548
  #: inc/_bs/admin/api-settings-s.php:560
5549
  msgid "Reason for cancellation"
5550
  msgstr ""
5551
 
5552
- #: core/lib/wpbc_all_translations.php:1047 inc/_bs/admin/api-settings-s.php:561
5553
  #, php-format
5554
  msgid "Type the reason for %scancellation%s for the email template."
5555
  msgstr ""
5556
 
5557
- #: core/lib/wpbc_all_translations.php:1048 inc/_bs/admin/page-email-payment.php:560
5558
  msgid "Payment request"
5559
  msgstr ""
5560
 
5561
- #: core/lib/wpbc_all_translations.php:1049 inc/_bs/admin/page-email-payment.php:562
5562
  msgid "Customization of email template, which is sending to Visitor after payment request"
5563
  msgstr ""
5564
 
5565
- #: core/lib/wpbc_all_translations.php:1050
5566
  msgid "Email with Payment Request which is sending to Visitor."
5567
  msgstr ""
5568
 
5569
- #: core/lib/wpbc_all_translations.php:1051 core/wpbc-js.php:136
5570
  msgid "Error! Please reset your check-in/check-out dates above."
5571
  msgstr ""
5572
 
5573
- #: core/lib/wpbc_all_translations.php:1052 core/wpbc-js.php:137
5574
  msgid ""
5575
  "Start Time is invalid. The date or time may be booked, or already in the past! Please choose "
5576
  "another date or time."
5577
  msgstr ""
5578
 
5579
- #: core/lib/wpbc_all_translations.php:1053 core/wpbc-js.php:138
5580
  msgid ""
5581
  "End Time is invalid. The date or time may be booked, or already in the past. The End Time may "
5582
  "also be earlier that the start time, if only 1 day was selected! Please choose another date or "
5583
  "time."
5584
  msgstr ""
5585
 
5586
- #: core/lib/wpbc_all_translations.php:1054 core/wpbc-js.php:139 core/wpbc-js.php:140
5587
  msgid "The time(s) may be booked, or already in the past!"
5588
  msgstr ""
5589
 
5590
- #: core/lib/wpbc_all_translations.php:1055 inc/_bs/biz_s.php:408
5591
  msgid "Cost saved successfully"
5592
  msgstr ""
5593
 
5594
- #: core/lib/wpbc_all_translations.php:1056 inc/_bs/biz_s.php:415
5595
  msgid "Cost is not correct. It must be greater than 0"
5596
  msgstr ""
5597
 
5598
- #: core/lib/wpbc_all_translations.php:1057 inc/_bs/biz_s.php:596
5599
  msgid "Request has been sent"
5600
  msgstr ""
5601
 
5602
- #: core/lib/wpbc_all_translations.php:1058 inc/_bs/biz_s.php:603
5603
  msgid "Request has failed"
5604
  msgstr ""
5605
 
5606
- #: core/lib/wpbc_all_translations.php:1059 inc/_bs/biz_s.php:634
5607
  msgid "The payment status is changed successfully"
5608
  msgstr ""
5609
 
5610
- #: core/lib/wpbc_all_translations.php:1060 inc/_bs/biz_s.php:641
5611
  msgid "The changing of payment status is failed"
5612
  msgstr ""
5613
 
5614
- #: core/lib/wpbc_all_translations.php:1061 inc/_bs/biz_s.php:1017
5615
  msgid "deposit"
5616
  msgstr ""
5617
 
5618
- #: core/lib/wpbc_all_translations.php:1062 inc/_bs/biz_s.php:1018
5619
  msgid "Total cost"
5620
  msgstr ""
5621
 
5622
- #: core/lib/wpbc_all_translations.php:1063 inc/_bs/biz_s.php:1019
5623
  msgid "balance"
5624
  msgstr ""
5625
 
5626
- #: core/lib/wpbc_all_translations.php:1064 inc/_bs/lib_s.php:40 inc/_bs/lib_s.php:71
5627
  #: inc/_bs/s-toolbar.php:94
5628
  msgid "Payment status"
5629
  msgstr ""
5630
 
5631
- #: core/lib/wpbc_all_translations.php:1065 inc/_bs/lib_s.php:44
5632
  msgid "Any Status"
5633
  msgstr ""
5634
 
5635
- #: core/lib/wpbc_all_translations.php:1066 inc/_bs/lib_s.php:47
5636
  msgid "Unknown Status"
5637
  msgstr ""
5638
 
5639
- #: core/lib/wpbc_all_translations.php:1067 inc/_bs/lib_s.php:48 inc/_bs/lib_s.php:319
5640
  msgid "Not Completed"
5641
  msgstr ""
5642
 
5643
- #: core/lib/wpbc_all_translations.php:1068 inc/_bs/lib_s.php:49 inc/_bs/lib_s.php:308
5644
  #: inc/_bs/lib_s.php:328
5645
  msgid "Failed"
5646
  msgstr ""
5647
 
5648
- #: core/lib/wpbc_all_translations.php:1069 inc/_bs/lib_s.php:139
5649
  msgid "min"
5650
  msgstr ""
5651
 
5652
- #: core/lib/wpbc_all_translations.php:1070 inc/_bs/lib_s.php:139
5653
  msgid "max"
5654
  msgstr ""
5655
 
5656
- #: core/lib/wpbc_all_translations.php:1071 inc/_bs/lib_s.php:303 inc/_bs/lib_s.php:321
5657
  msgid "Completed"
5658
  msgstr ""
5659
 
5660
- #: core/lib/wpbc_all_translations.php:1072 inc/_bs/lib_s.php:304 inc/_bs/lib_s.php:324
5661
  msgid "In-Progress"
5662
  msgstr ""
5663
 
5664
- #: core/lib/wpbc_all_translations.php:1073 inc/_bs/lib_s.php:306 inc/_bs/lib_s.php:341
5665
  msgid "Partially paid"
5666
  msgstr ""
5667
 
5668
- #: core/lib/wpbc_all_translations.php:1074 inc/_bs/lib_s.php:307 inc/_bs/lib_s.php:342
5669
  msgid "Cancelled"
5670
  msgstr ""
5671
 
5672
- #: core/lib/wpbc_all_translations.php:1075 inc/_bs/lib_s.php:309 inc/_bs/lib_s.php:330
5673
  msgid "Refunded"
5674
  msgstr ""
5675
 
5676
- #: core/lib/wpbc_all_translations.php:1076 inc/_bs/lib_s.php:310 inc/_bs/lib_s.php:343
5677
  msgid "Fraud"
5678
  msgstr ""
5679
 
5680
- #: core/lib/wpbc_all_translations.php:1077 inc/_bs/lib_s.php:317
5681
  msgid "!Paid OK"
5682
  msgstr ""
5683
 
5684
- #: core/lib/wpbc_all_translations.php:1078 inc/_bs/lib_s.php:318
5685
  msgid "Unknown status"
5686
  msgstr ""
5687
 
5688
- #: core/lib/wpbc_all_translations.php:1079 inc/_bs/lib_s.php:323
5689
  msgid "Processed"
5690
  msgstr ""
5691
 
5692
- #: core/lib/wpbc_all_translations.php:1080 inc/_bs/lib_s.php:325
5693
  msgid "Canceled_Reversal"
5694
  msgstr ""
5695
 
5696
- #: core/lib/wpbc_all_translations.php:1081 inc/_bs/lib_s.php:326
5697
  msgid "Denied"
5698
  msgstr ""
5699
 
5700
- #: core/lib/wpbc_all_translations.php:1082 inc/_bs/lib_s.php:327
5701
  msgid "Expired"
5702
  msgstr ""
5703
 
5704
- #: core/lib/wpbc_all_translations.php:1083 inc/_bs/lib_s.php:329
5705
  msgid "Partially_Refunded"
5706
  msgstr ""
5707
 
5708
- #: core/lib/wpbc_all_translations.php:1084 inc/_bs/lib_s.php:331
5709
  msgid "Reversed"
5710
  msgstr ""
5711
 
5712
- #: core/lib/wpbc_all_translations.php:1085 inc/_bs/lib_s.php:332
5713
  msgid "Voided"
5714
  msgstr ""
5715
 
5716
- #: core/lib/wpbc_all_translations.php:1086 inc/_bs/lib_s.php:335
5717
  msgid "Not authed"
5718
  msgstr ""
5719
 
5720
- #: core/lib/wpbc_all_translations.php:1087 inc/_bs/lib_s.php:336
5721
  msgid "Malformed"
5722
  msgstr ""
5723
 
5724
- #: core/lib/wpbc_all_translations.php:1088 inc/_bs/lib_s.php:337
5725
  msgid "Invalid"
5726
  msgstr ""
5727
 
5728
- #: core/lib/wpbc_all_translations.php:1089 inc/_bs/lib_s.php:338
5729
  msgid "Abort"
5730
  msgstr ""
5731
 
5732
- #: core/lib/wpbc_all_translations.php:1090 inc/_bs/lib_s.php:339
5733
  msgid "Rejected"
5734
  msgstr ""
5735
 
5736
- #: core/lib/wpbc_all_translations.php:1091 inc/_bs/lib_s.php:344
5737
  msgid "Suspended"
5738
  msgstr ""
5739
 
5740
- #: core/lib/wpbc_all_translations.php:1092 inc/_bs/s-toolbar.php:68
5741
  msgid "Send payment request to visitor"
5742
  msgstr ""
5743
 
5744
- #: core/lib/wpbc_all_translations.php:1093 inc/_bs/s-toolbar.php:110 inc/_ps/p-toolbar.php:100
5745
  #: inc/_ps/p-toolbar.php:476
5746
  msgid "Print"
5747
  msgstr ""
5748
 
5749
- #: core/lib/wpbc_all_translations.php:1094 inc/_bs/s-toolbar.php:136
5750
  msgid "Save cost"
5751
  msgstr ""
5752
 
5753
- #: core/lib/wpbc_all_translations.php:1095 inc/_bs/s-toolbar.php:173
5754
  msgid "Change status"
5755
  msgstr ""
5756
 
5757
- #: core/lib/wpbc_all_translations.php:1096 inc/_bs/s-toolbar.php:196
5758
  msgid "Send payment request to customer"
5759
  msgstr ""
5760
 
5761
- #: core/lib/wpbc_all_translations.php:1097 inc/_bs/s-toolbar.php:200
5762
  #, php-format
5763
  msgid "Type your %sreason for payment%s request"
5764
  msgstr ""
5765
 
5766
- #: core/lib/wpbc_all_translations.php:1098 inc/_bs/s-toolbar.php:208
5767
  msgid "Send Request"
5768
  msgstr ""
5769
 
5770
- #: core/lib/wpbc_all_translations.php:1099 inc/_bs/s-toolbar.php:230
5771
  msgid "Auto-fill form"
5772
  msgstr ""
5773
 
5774
- #: core/lib/wpbc_all_translations.php:1100 inc/_mu/admin/activation-u.php:84
5775
  msgid "Suite"
5776
  msgstr ""
5777
 
5778
- #: core/lib/wpbc_all_translations.php:1101 inc/_mu/admin/api-settings-u.php:91
5779
  #: inc/_ps/admin/br-table-export-feeds.php:89 inc/_ps/admin/br-table-import-gcal-p.php:73
5780
  msgid "User"
5781
  msgstr ""
5782
 
5783
- #: core/lib/wpbc_all_translations.php:1102 inc/_mu/admin/api-settings-u.php:437
5784
  #: inc/_mu/admin/page-users.php:254 inc/_mu/admin/page-users.php:595
5785
  #: inc/_mu/admin/page-users.php:599
5786
  msgid "Super Admin"
5787
  msgstr ""
5788
 
5789
- #: core/lib/wpbc_all_translations.php:1103 inc/_mu/admin/api-settings-u.php:441
5790
  #: inc/_mu/admin/page-users.php:289 inc/_mu/admin/page-users.php:603
5791
  #: inc/_mu/admin/page-users.php:607
5792
  msgid "Regular User"
5793
  msgstr ""
5794
 
5795
- #: core/lib/wpbc_all_translations.php:1104 inc/_mu/admin/api-settings-u.php:446
5796
  msgid "Inactive User"
5797
  msgstr ""
5798
 
5799
- #: core/lib/wpbc_all_translations.php:1105 inc/_mu/admin/page-users.php:43
5800
  #: inc/_mu/admin/page-users.php:433
5801
  msgid "Users"
5802
  msgstr ""
5803
 
5804
- #: core/lib/wpbc_all_translations.php:1106 inc/_mu/admin/page-users.php:44
5805
  msgid "Manage Users"
5806
  msgstr ""
5807
 
5808
- #: core/lib/wpbc_all_translations.php:1107 inc/_mu/admin/page-users.php:45
5809
  msgid "Users Settings"
5810
  msgstr ""
5811
 
5812
- #: core/lib/wpbc_all_translations.php:1108 inc/_mu/admin/page-users.php:209
5813
  #: inc/_mu/multiuser.php:647
5814
  msgid "User is Activated"
5815
  msgstr ""
5816
 
5817
- #: core/lib/wpbc_all_translations.php:1109 inc/_mu/admin/page-users.php:237
5818
  #: inc/_mu/multiuser.php:697
5819
  msgid "User is Deactivated"
5820
  msgstr ""
5821
 
5822
- #: core/lib/wpbc_all_translations.php:1110 inc/_mu/admin/page-users.php:441
5823
  msgid "User Role"
5824
  msgstr ""
5825
 
5826
- #: core/lib/wpbc_all_translations.php:1111 inc/_mu/admin/page-users.php:452
5827
  #: inc/_mu/admin/page-users.php:595 inc/_mu/admin/page-users.php:603
5828
  msgid "Set user as"
5829
  msgstr ""
5830
 
5831
- #: core/lib/wpbc_all_translations.php:1112 inc/_mu/admin/page-users.php:548
5832
  msgid "Unlimited"
5833
  msgstr ""
5834
 
5835
- #: core/lib/wpbc_all_translations.php:1113 inc/_mu/admin/page-users.php:560
5836
  #: inc/_mu/admin/page-users.php:568 inc/_mu/admin/page-users.php:574
5837
  #: inc/_mu/admin/page-users.php:581 inc/_mu/admin/page-users.php:594
5838
  #: inc/_mu/admin/page-users.php:602
5839
  msgid "Do you really want"
5840
  msgstr ""
5841
 
5842
- #: core/lib/wpbc_all_translations.php:1114 inc/_mu/admin/page-users.php:561
5843
  msgid "make user active"
5844
  msgstr ""
5845
 
5846
- #: core/lib/wpbc_all_translations.php:1115 inc/_mu/admin/page-users.php:565
5847
  msgid "Activate"
5848
  msgstr ""
5849
 
5850
- #: core/lib/wpbc_all_translations.php:1116 inc/_mu/admin/page-users.php:569
5851
  msgid "make user inactive"
5852
  msgstr ""
5853
 
5854
- #: core/lib/wpbc_all_translations.php:1117 inc/_mu/admin/page-users.php:572
5855
  msgid "Deactivate"
5856
  msgstr ""
5857
 
5858
- #: core/lib/wpbc_all_translations.php:1118 inc/_mu/admin/page-users.php:575
5859
  msgid "delete configuration"
5860
  msgstr ""
5861
 
5862
- #: core/lib/wpbc_all_translations.php:1119 inc/_mu/admin/page-users.php:579
5863
  msgid "Delete settings"
5864
  msgstr ""
5865
 
5866
- #: core/lib/wpbc_all_translations.php:1120 inc/_mu/admin/page-users.php:582
5867
  msgid "delete all booking data"
5868
  msgstr ""
5869
 
5870
- #: core/lib/wpbc_all_translations.php:1121 inc/_mu/admin/page-users.php:586
5871
  msgid "Delete data"
5872
  msgstr ""
5873
 
5874
- #: core/lib/wpbc_all_translations.php:1122 inc/_mu/multiuser.php:633
5875
  msgid "Work days"
5876
  msgstr ""
5877
 
5878
- #: core/lib/wpbc_all_translations.php:1123 inc/_mu/multiuser.php:765
5879
  #, php-format
5880
  msgid ""
5881
  "%sYou do not have permissions for this page.%s Your account is not active, please contact "
5882
  "administrator.%s"
5883
  msgstr ""
5884
 
5885
- #: core/lib/wpbc_all_translations.php:1124 inc/_mu/multiuser.php:804
5886
  #, php-format
5887
  msgid "%sYou do not have permissions for this booking resources.%s"
5888
  msgstr ""
5889
 
5890
- #: core/lib/wpbc_all_translations.php:1125 inc/_mu/multiuser.php:810
5891
  #, php-format
5892
  msgid "%sNo this booking resources.%s"
5893
  msgstr ""
5894
 
5895
- #: core/lib/wpbc_all_translations.php:1126 inc/_ps/admin/activation-p.php:52
5896
  msgid "Please, reserve an apartment with fresh flowers."
5897
  msgstr ""
5898
 
5899
- #: core/lib/wpbc_all_translations.php:1127 inc/_ps/admin/api-settings-p.php:56
5900
  msgid "Default booking resource"
5901
  msgstr ""
5902
 
5903
- #: core/lib/wpbc_all_translations.php:1128 inc/_ps/admin/api-settings-p.php:57
5904
  msgid "Select your default booking resource."
5905
  msgstr ""
5906
 
5907
- #: core/lib/wpbc_all_translations.php:1129 inc/_ps/admin/api-settings-p.php:70
5908
  msgid "Resources number per page"
5909
  msgstr ""
5910
 
5911
- #: core/lib/wpbc_all_translations.php:1130 inc/_ps/admin/api-settings-p.php:71
5912
  msgid "Select number of booking resources (single or parent) per page at Resource menu page"
5913
  msgstr ""
5914
 
5915
- #: core/lib/wpbc_all_translations.php:1131 inc/_ps/admin/api-settings-p.php:92
5916
  #: inc/_ps/admin/api-settings-p.php:192
5917
  msgid "Booking title"
5918
  msgstr ""
5919
 
5920
- #: core/lib/wpbc_all_translations.php:1132 inc/_ps/admin/api-settings-p.php:92
5921
  msgid "admin panel"
5922
  msgstr ""
5923
 
5924
- #: core/lib/wpbc_all_translations.php:1133 inc/_ps/admin/api-settings-p.php:93
5925
  #, php-format
5926
  msgid ""
5927
  "Type %sdefault title of bookings%s in calendar view mode at Booking Listing page (You can use "
5928
  "the shortcodes from the bottom form of Settings Fields page)."
5929
  msgstr ""
5930
 
5931
- #: core/lib/wpbc_all_translations.php:1134
5932
  msgid "front panel"
5933
  msgstr ""
5934
 
5935
- #: core/lib/wpbc_all_translations.php:1135 inc/_ps/admin/api-settings-p.php:193
5936
  #, php-format
5937
  msgid ""
5938
  "Type %sdefault title of bookings%s in %stimeline at front-end side%s. You can use the shortcodes "
5939
  "from the bottom form of Settings Fields page."
5940
  msgstr ""
5941
 
5942
- #: core/lib/wpbc_all_translations.php:1136 inc/_ps/admin/api-settings-p.php:201
5943
  msgid "Booking details in popover"
5944
  msgstr ""
5945
 
5946
- #: core/lib/wpbc_all_translations.php:1137 inc/_ps/admin/api-settings-p.php:202
5947
  #, php-format
5948
  msgid ""
5949
  "Check this box if you want to %sshow popover with booking details%s in timeline at %sfront-end%s "
5950
  "side."
5951
  msgstr ""
5952
 
5953
- #: core/lib/wpbc_all_translations.php:1138 inc/_ps/admin/api-settings-p.php:225
5954
  msgid "semicolon"
5955
  msgstr ""
5956
 
5957
- #: core/lib/wpbc_all_translations.php:1139 inc/_ps/admin/api-settings-p.php:226
5958
  msgid "comma"
5959
  msgstr ""
5960
 
5961
- #: core/lib/wpbc_all_translations.php:1140 inc/_ps/admin/api-settings-p.php:231
5962
  msgid "CSV data separator"
5963
  msgstr ""
5964
 
5965
- #: core/lib/wpbc_all_translations.php:1141 inc/_ps/admin/api-settings-p.php:232
5966
  msgid "Select separator of data for export bookings to CSV."
5967
  msgstr ""
5968
 
5969
- #: core/lib/wpbc_all_translations.php:1142 inc/_ps/admin/api-settings-p.php:282
 
5970
  msgid "URL to edit bookings"
5971
  msgstr ""
5972
 
5973
- #: core/lib/wpbc_all_translations.php:1143 inc/_ps/admin/api-settings-p.php:283
5974
  #, php-format
5975
  msgid "Type URL for %svisitors%s to edit bookings. You must insert %s shortcode into this page."
5976
  msgstr ""
5977
 
5978
- #: core/lib/wpbc_all_translations.php:1144 inc/_ps/admin/api-settings-p.php:307
5979
  msgid "Change hash after the booking is approved"
5980
  msgstr ""
5981
 
5982
- #: core/lib/wpbc_all_translations.php:1145 inc/_ps/admin/api-settings-p.php:308
5983
  msgid ""
5984
  "Check this box if you want to change the booking hash after approval. When checked, visitor will "
5985
  "not be able to edit or cancel the booking."
5986
  msgstr ""
5987
 
5988
- #: core/lib/wpbc_all_translations.php:1146 inc/_ps/admin/page-email-edit.php:556
5989
  msgid "Modified"
5990
  msgstr ""
5991
 
5992
- #: core/lib/wpbc_all_translations.php:1147
5993
  msgid "Customization of email template, which is sending after modification of booking"
5994
  msgstr ""
5995
 
5996
- #: core/lib/wpbc_all_translations.php:1148
5997
  msgid "Email is sending to Visitor after Editing of booking."
5998
  msgstr ""
5999
 
6000
- #: core/lib/wpbc_all_translations.php:1149 inc/_ps/admin/page-resources.php:39
6001
  msgid "Customizaton of booking resources"
6002
  msgstr ""
6003
 
6004
- #: core/lib/wpbc_all_translations.php:1150 inc/_ps/admin/page-settings-form.php:130
6005
  #: inc/_ps/admin/page-settings-form.php:150
6006
  msgid "Form fields"
6007
  msgstr ""
6008
 
6009
- #: core/lib/wpbc_all_translations.php:1151 inc/_ps/admin/page-settings-form.php:131
6010
  msgid "Content of Booking Fields"
6011
  msgstr ""
6012
 
6013
- #: core/lib/wpbc_all_translations.php:1152 inc/_ps/admin/page-settings-form.php:157
6014
  msgid "Generate tag"
6015
  msgstr ""
6016
 
6017
- #: core/lib/wpbc_all_translations.php:1153 inc/_ps/admin/page-settings-form.php:166
6018
  #, php-format
6019
  msgid "Content of booking fields data for email templates (%s-shortcode) and booking listing page"
6020
  msgstr ""
6021
 
6022
- #: core/lib/wpbc_all_translations.php:1154 inc/_ps/admin/page-settings-form.php:305
6023
  msgid "Form Template"
6024
  msgstr ""
6025
 
6026
- #: core/lib/wpbc_all_translations.php:1155 inc/_ps/admin/page-settings-form.php:318
6027
  msgid "Standard Templates"
6028
  msgstr ""
6029
 
6030
- #: core/lib/wpbc_all_translations.php:1156 inc/_ps/admin/page-settings-form.php:331
6031
  #: inc/_ps/form/class-wpbc-field-help-textarea.php:111
6032
  msgid "Columns"
6033
  msgstr ""
6034
 
6035
- #: core/lib/wpbc_all_translations.php:1157 inc/_ps/admin/page-settings-form.php:403
6036
  msgid "Advanced Templates"
6037
  msgstr ""
6038
 
6039
- #: core/lib/wpbc_all_translations.php:1158 inc/_ps/admin/page-settings-form.php:406
6040
  msgid "Wizard (several steps)"
6041
  msgstr ""
6042
 
6043
- #: core/lib/wpbc_all_translations.php:1159 inc/_ps/admin/page-settings-form.php:419
6044
  msgid "Time slots for different weekdays"
6045
  msgstr ""
6046
 
6047
- #: core/lib/wpbc_all_translations.php:1160 inc/_ps/admin/page-settings-form.php:429
6048
  msgid "Hints"
6049
  msgstr ""
6050
 
6051
- #: core/lib/wpbc_all_translations.php:1161 inc/_ps/admin/page-settings-form.php:451
6052
  msgid "Reset Form"
6053
  msgstr ""
6054
 
6055
- #: core/lib/wpbc_all_translations.php:1162 inc/_ps/admin/page-settings-form.php:504
6056
  msgid "Both"
6057
  msgstr ""
6058
 
6059
- #: core/lib/wpbc_all_translations.php:1163 inc/_ps/admin/page-settings-form.php:505
6060
  msgid "Reset Booking Form and Content of Booking Fields Form"
6061
  msgstr ""
6062
 
6063
- #: core/lib/wpbc_all_translations.php:1164 inc/_ps/admin/page-settings-form.php:602
6064
  #: inc/gateways/page-gateways.php:1041
6065
  #, php-format
6066
  msgid "%s - inserting data from fields of booking form"
6067
  msgstr ""
6068
 
6069
- #: core/lib/wpbc_all_translations.php:1165 inc/_ps/admin/page-settings-form.php:603
6070
  #, php-format
6071
  msgid "%s - inserting new line"
6072
  msgstr ""
6073
 
6074
- #: core/lib/wpbc_all_translations.php:1166 inc/_ps/admin/page-settings-form.php:607
6075
  #: inc/_ps/form/class-wpbc-form-help.php:93 inc/gateways/page-gateways.php:1096
6076
  #, php-format
6077
  msgid ""
@@ -6079,138 +6089,138 @@ msgid ""
6079
  "that all \"open\" tags (like %s) are closed (like this %s)."
6080
  msgstr ""
6081
 
6082
- #: core/lib/wpbc_all_translations.php:1167 inc/_ps/admin/page-settings-up.php:39
6083
  msgid "Upgrade to higher version"
6084
  msgstr ""
6085
 
6086
- #: core/lib/wpbc_all_translations.php:1168 inc/_ps/class/wpbc-settings-table.php:260
6087
  msgid "No results found."
6088
  msgstr ""
6089
 
6090
- #: core/lib/wpbc_all_translations.php:1169 inc/_ps/form/class-wpbc-field-help-checkbox.php:90
6091
  #, php-format
6092
  msgid "Wrap each item with %s tag"
6093
  msgstr ""
6094
 
6095
- #: core/lib/wpbc_all_translations.php:1170 inc/_ps/form/class-wpbc-field-help-checkbox.php:104
6096
  msgid "Put a label before field"
6097
  msgstr ""
6098
 
6099
- #: core/lib/wpbc_all_translations.php:1171 inc/_ps/form/class-wpbc-field-help-checkbox.php:118
6100
  #, php-format
6101
  msgid "Make it %sexclusive%s"
6102
  msgstr ""
6103
 
6104
- #: core/lib/wpbc_all_translations.php:1172 inc/_ps/form/class-wpbc-field-help-checkbox.php:128
6105
  #: inc/_ps/form/class-wpbc-field-help-radio.php:85 inc/_ps/form/class-wpbc-field-help-select.php:78
6106
  #: inc/_ps/form/class-wpbc-field-help-text.php:194
6107
  msgid "Default value"
6108
  msgstr ""
6109
 
6110
- #: core/lib/wpbc_all_translations.php:1173 inc/_ps/form/class-wpbc-field-help-checkbox.php:136
6111
  #, php-format
6112
  msgid "One Value from %sOptions%s list or term %s for selection of all checkboxes"
6113
  msgstr ""
6114
 
6115
- #: core/lib/wpbc_all_translations.php:1174 inc/_ps/form/class-wpbc-field-help-checkbox.php:146
6116
  #: inc/_ps/form/class-wpbc-field-help-select.php:111
6117
  #: inc/_ps/form/class-wpbc-field-help-text.php:177
6118
  msgid "required"
6119
  msgstr ""
6120
 
6121
- #: core/lib/wpbc_all_translations.php:1175 inc/_ps/form/class-wpbc-field-help-checkbox.php:164
6122
  #: inc/_ps/form/class-wpbc-field-help-select.php:129
6123
  msgid "Titles of options"
6124
  msgstr ""
6125
 
6126
- #: core/lib/wpbc_all_translations.php:1176 inc/_ps/form/class-wpbc-field-help-radio.php:93
6127
  #: inc/_ps/form/class-wpbc-field-help-select.php:86
6128
  #, php-format
6129
  msgid "One Value from %sOptions%s list"
6130
  msgstr ""
6131
 
6132
- #: core/lib/wpbc_all_translations.php:1177 inc/_ps/form/class-wpbc-field-help-select.php:101
6133
  #, php-format
6134
  msgid "Allow %smultiple%s selections"
6135
  msgstr ""
6136
 
6137
- #: core/lib/wpbc_all_translations.php:1178 inc/_ps/form/class-wpbc-field-help-text.php:167
6138
  #, php-format
6139
  msgid "Set as %srequired%s"
6140
  msgstr ""
6141
 
6142
- #: core/lib/wpbc_all_translations.php:1179 inc/_ps/form/class-wpbc-field-help-text.php:228
6143
  msgid "Placeholder"
6144
  msgstr ""
6145
 
6146
- #: core/lib/wpbc_all_translations.php:1180 inc/_ps/form/class-wpbc-field-help-text.php:247
6147
  msgid "Class"
6148
  msgstr ""
6149
 
6150
- #: core/lib/wpbc_all_translations.php:1181 inc/_ps/form/class-wpbc-field-help-text.php:264
6151
  msgid "Size"
6152
  msgstr ""
6153
 
6154
- #: core/lib/wpbc_all_translations.php:1182 inc/_ps/form/class-wpbc-field-help-text.php:281
6155
  msgid "Maxlength"
6156
  msgstr ""
6157
 
6158
- #: core/lib/wpbc_all_translations.php:1183 inc/_ps/form/class-wpbc-field-help-text.php:298
6159
  msgid "Copy and paste this shortcode into the form at left side"
6160
  msgstr ""
6161
 
6162
- #: core/lib/wpbc_all_translations.php:1184 inc/_ps/form/class-wpbc-field-help-text.php:313
6163
  #, php-format
6164
  msgid "Put this code in %sContent of Booking Fields%s and in %sEmail Templates%s"
6165
  msgstr ""
6166
 
6167
- #: core/lib/wpbc_all_translations.php:1185 inc/_ps/form/class-wpbc-field-help-textarea.php:94
6168
  msgid "Rows"
6169
  msgstr ""
6170
 
6171
- #: core/lib/wpbc_all_translations.php:1186 inc/_ps/form/class-wpbc-form-help.php:86
6172
  msgid "General Information"
6173
  msgstr ""
6174
 
6175
- #: core/lib/wpbc_all_translations.php:1187 inc/_ps/form/class-wpbc-form-help.php:109
6176
  msgid "Required Fields in Booking Form"
6177
  msgstr ""
6178
 
6179
- #: core/lib/wpbc_all_translations.php:1188 inc/_ps/form/class-wpbc-form-help.php:117
6180
  #, php-format
6181
  msgid "You must to have this shortcode:%s in the form."
6182
  msgstr ""
6183
 
6184
- #: core/lib/wpbc_all_translations.php:1189 inc/_ps/form/class-wpbc-form-help.php:119
6185
  msgid ""
6186
  "You can insert several calendars of different resources into the form allowing you to book "
6187
  "several resources during one booking process."
6188
  msgstr ""
6189
 
6190
- #: core/lib/wpbc_all_translations.php:1190 inc/_ps/form/class-wpbc-form-help.php:120
6191
  #, php-format
6192
  msgid "Example: %s."
6193
  msgstr ""
6194
 
6195
- #: core/lib/wpbc_all_translations.php:1191 inc/_ps/form/class-wpbc-form-help.php:121
6196
  #, php-format
6197
  msgid ""
6198
  "where %s – default calendar %s (you can select desired resource of calendar by inserting "
6199
  "shortcode into page)%s"
6200
  msgstr ""
6201
 
6202
- #: core/lib/wpbc_all_translations.php:1192 inc/_ps/form/class-wpbc-form-help.php:122
6203
  #: inc/_ps/form/class-wpbc-form-help.php:123
6204
  #, php-format
6205
  msgid "%s – calendar of booking resource with %s"
6206
  msgstr ""
6207
 
6208
- #: core/lib/wpbc_all_translations.php:1193 inc/_ps/form/class-wpbc-form-help.php:124
6209
  #, php-format
6210
  msgid "Please check more about this feature %shere%s."
6211
  msgstr ""
6212
 
6213
- #: core/lib/wpbc_all_translations.php:1194 inc/_ps/form/class-wpbc-form-help.php:126
6214
  #: inc/_ps/form/class-wpbc-form-help.php:197 inc/_ps/form/class-wpbc-form-help.php:230
6215
  #: inc/_ps/form/class-wpbc-form-help.php:278 inc/_ps/form/class-wpbc-form-help.php:291
6216
  #: inc/_ps/form/class-wpbc-form-help.php:305 inc/_ps/form/class-wpbc-form-help.php:343
@@ -6220,82 +6230,82 @@ msgstr ""
6220
  msgid "You can %suse this shortcode only once%s in the form."
6221
  msgstr ""
6222
 
6223
- #: core/lib/wpbc_all_translations.php:1195 inc/_ps/form/class-wpbc-form-help.php:135
6224
  msgid "Email Field"
6225
  msgstr ""
6226
 
6227
- #: core/lib/wpbc_all_translations.php:1196 inc/_ps/form/class-wpbc-form-help.php:136
6228
  #, php-format
6229
  msgid "You must have this shortcode:%s in the booking form."
6230
  msgstr ""
6231
 
6232
- #: core/lib/wpbc_all_translations.php:1197 inc/_ps/form/class-wpbc-form-help.php:136
6233
  msgid "This is the primary email field, which is used for sending emails to visitors."
6234
  msgstr ""
6235
 
6236
- #: core/lib/wpbc_all_translations.php:1198 inc/_ps/form/class-wpbc-form-help.php:163
6237
  msgid "Drop Down"
6238
  msgstr ""
6239
 
6240
- #: core/lib/wpbc_all_translations.php:1199 inc/_ps/form/class-wpbc-form-help.php:175
6241
  msgid "Checkbox(es)"
6242
  msgstr ""
6243
 
6244
- #: core/lib/wpbc_all_translations.php:1200 inc/_ps/form/class-wpbc-form-help.php:182
6245
  msgid "Radio Button(s)"
6246
  msgstr ""
6247
 
6248
- #: core/lib/wpbc_all_translations.php:1201 inc/_ps/form/class-wpbc-form-help.php:196
6249
  #, php-format
6250
  msgid "Insert %s shortcode to prevent SPAM bookings."
6251
  msgstr ""
6252
 
6253
- #: core/lib/wpbc_all_translations.php:1202 inc/_ps/form/class-wpbc-form-help.php:206
6254
  msgid "Submit Button"
6255
  msgstr ""
6256
 
6257
- #: core/lib/wpbc_all_translations.php:1203 inc/_ps/form/class-wpbc-form-help.php:214
6258
  msgid "Times Fields"
6259
  msgstr ""
6260
 
6261
- #: core/lib/wpbc_all_translations.php:1204 inc/_ps/form/class-wpbc-form-help.php:220
6262
  msgid "Time Slot List"
6263
  msgstr ""
6264
 
6265
- #: core/lib/wpbc_all_translations.php:1205 inc/_ps/form/class-wpbc-form-help.php:222
6266
  #: inc/_ps/form/class-wpbc-form-help.php:302 inc/_ps/form/class-wpbc-form-help.php:340
6267
  #: inc/_ps/form/class-wpbc-form-help.php:379
6268
  #, php-format
6269
  msgid "Select the %s using the predefined %sTime List%s."
6270
  msgstr ""
6271
 
6272
- #: core/lib/wpbc_all_translations.php:1206 inc/_ps/form/class-wpbc-form-help.php:222
6273
  msgid "Time Slot"
6274
  msgstr ""
6275
 
6276
- #: core/lib/wpbc_all_translations.php:1207 inc/_ps/form/class-wpbc-form-help.php:223
6277
  #, php-format
6278
  msgid ""
6279
  "Please note, %sthe use of the time shortcode%s. If you select a date with some booked time "
6280
  "slots, this time field will %sdisable booked times slots%s (set them as grayed)."
6281
  msgstr ""
6282
 
6283
- #: core/lib/wpbc_all_translations.php:1208 inc/_ps/form/class-wpbc-form-help.php:224
6284
  #, php-format
6285
  msgid "It works only in %ssingle day selection%s mode."
6286
  msgstr ""
6287
 
6288
- #: core/lib/wpbc_all_translations.php:1209 inc/_ps/form/class-wpbc-form-help.php:225
6289
  msgid ""
6290
  "Also some early versions of the IE do not support disabling of the options in the selectboxes."
6291
  msgstr ""
6292
 
6293
- #: core/lib/wpbc_all_translations.php:1210 inc/_ps/form/class-wpbc-form-help.php:226
6294
  msgid ""
6295
  "Even if visitor selects the booked timeslot, system will not allow them to make the booking."
6296
  msgstr ""
6297
 
6298
- #: core/lib/wpbc_all_translations.php:1211 inc/_ps/form/class-wpbc-form-help.php:229
6299
  #: inc/_ps/form/class-wpbc-form-help.php:342 inc/_ps/form/class-wpbc-form-help.php:381
6300
  #, php-format
6301
  msgid ""
@@ -6303,117 +6313,117 @@ msgid ""
6303
  "Time)%s only."
6304
  msgstr ""
6305
 
6306
- #: core/lib/wpbc_all_translations.php:1212 inc/_ps/form/class-wpbc-form-help.php:231
6307
  #, php-format
6308
  msgid "If you use this shortcode, %syou can not use any other time shortcodes%s in the form."
6309
  msgstr ""
6310
 
6311
- #: core/lib/wpbc_all_translations.php:1213 inc/_ps/form/class-wpbc-form-help.php:273
6312
  msgid "Start Time - Text field"
6313
  msgstr ""
6314
 
6315
- #: core/lib/wpbc_all_translations.php:1214 inc/_ps/form/class-wpbc-form-help.php:275
6316
  #: inc/_ps/form/class-wpbc-form-help.php:288
6317
  #, php-format
6318
  msgid "Enter %s in text field."
6319
  msgstr ""
6320
 
6321
- #: core/lib/wpbc_all_translations.php:1215 inc/_ps/admin/api-settings-p.php:119
6322
  #: inc/_ps/admin/api-settings-p.php:125 inc/_ps/form/class-wpbc-form-help.php:275
6323
  #: inc/_ps/form/class-wpbc-form-help.php:292 inc/_ps/form/class-wpbc-form-help.php:302
6324
  #: inc/_ps/form/class-wpbc-form-help.php:344 inc/_ps/form/class-wpbc-form-help.php:383
6325
  msgid "Start Time"
6326
  msgstr ""
6327
 
6328
- #: core/lib/wpbc_all_translations.php:1216 inc/_ps/form/class-wpbc-form-help.php:277
6329
  #: inc/_ps/form/class-wpbc-form-help.php:290 inc/_ps/form/class-wpbc-form-help.php:496
6330
  #, php-format
6331
  msgid "Please note: this field only supports military time format %s(24 Hour Time)%s."
6332
  msgstr ""
6333
 
6334
- #: core/lib/wpbc_all_translations.php:1217 inc/_ps/form/class-wpbc-form-help.php:279
6335
  #: inc/_ps/form/class-wpbc-form-help.php:292 inc/_ps/form/class-wpbc-form-help.php:306
6336
  #: inc/_ps/form/class-wpbc-form-help.php:344 inc/_ps/form/class-wpbc-form-help.php:383
6337
  #, php-format
6338
  msgid "You can also use the %s in the form."
6339
  msgstr ""
6340
 
6341
- #: core/lib/wpbc_all_translations.php:1218 inc/_ps/admin/api-settings-p.php:138
6342
  #: inc/_ps/admin/api-settings-p.php:144 inc/_ps/form/class-wpbc-form-help.php:279
6343
  #: inc/_ps/form/class-wpbc-form-help.php:288 inc/_ps/form/class-wpbc-form-help.php:306
6344
  #: inc/_ps/form/class-wpbc-form-help.php:340
6345
  msgid "End Time"
6346
  msgstr ""
6347
 
6348
- #: core/lib/wpbc_all_translations.php:1219 inc/_ps/form/class-wpbc-form-help.php:279
6349
  #: inc/_ps/form/class-wpbc-form-help.php:292 inc/_ps/form/class-wpbc-form-help.php:306
6350
  #: inc/_ps/form/class-wpbc-form-help.php:344 inc/_ps/form/class-wpbc-form-help.php:379
6351
  msgid "Duration Time"
6352
  msgstr ""
6353
 
6354
- #: core/lib/wpbc_all_translations.php:1220 inc/_ps/form/class-wpbc-form-help.php:279
6355
  #: inc/_ps/form/class-wpbc-form-help.php:292 inc/_ps/form/class-wpbc-form-help.php:306
6356
  #: inc/_ps/form/class-wpbc-form-help.php:344
6357
  msgid "fields"
6358
  msgstr ""
6359
 
6360
- #: core/lib/wpbc_all_translations.php:1221 inc/_ps/form/class-wpbc-form-help.php:286
6361
  msgid "End Time - Text field"
6362
  msgstr ""
6363
 
6364
- #: core/lib/wpbc_all_translations.php:1222 inc/_ps/form/class-wpbc-form-help.php:300
6365
  msgid "Start Time - Drop Down list"
6366
  msgstr ""
6367
 
6368
- #: core/lib/wpbc_all_translations.php:1223 inc/_ps/form/class-wpbc-form-help.php:304
6369
  #, php-format
6370
  msgid ""
6371
  "Please note, in the %sOptions list%s you can use times in military time format %s(24 Hour "
6372
  "Time)%s only."
6373
  msgstr ""
6374
 
6375
- #: core/lib/wpbc_all_translations.php:1224 inc/_ps/form/class-wpbc-form-help.php:338
6376
  msgid "End Time - Drop Down list"
6377
  msgstr ""
6378
 
6379
- #: core/lib/wpbc_all_translations.php:1225 inc/_ps/form/class-wpbc-form-help.php:377
6380
  msgid "Duration Time - Drop Down list"
6381
  msgstr ""
6382
 
6383
- #: core/lib/wpbc_all_translations.php:1226 inc/_ps/form/class-wpbc-form-help.php:383
6384
  msgid "field"
6385
  msgstr ""
6386
 
6387
- #: core/lib/wpbc_all_translations.php:1227 inc/_ps/form/class-wpbc-form-help.php:416
6388
  msgid "Different time slots, for the different week days"
6389
  msgstr ""
6390
 
6391
- #: core/lib/wpbc_all_translations.php:1228 inc/_ps/form/class-wpbc-form-help.php:419
6392
  msgid ""
6393
  "This feature provides the possibility to use the different time slot selections in the booking "
6394
  "form for the different week days or different days - which are assigned to the specific season "
6395
  "filters. So each week day (day of specific season filter) can have a different time slots list."
6396
  msgstr ""
6397
 
6398
- #: core/lib/wpbc_all_translations.php:1229 inc/_ps/form/class-wpbc-form-help.php:421
6399
  #: inc/_ps/form/class-wpbc-form-help.php:568
6400
  msgid "Configuration"
6401
  msgstr ""
6402
 
6403
- #: core/lib/wpbc_all_translations.php:1230 inc/_ps/form/class-wpbc-form-help.php:422
6404
  #: inc/_ps/form/class-wpbc-form-help.php:569
6405
  #, php-format
6406
  msgid "The general structure of the configuration %scondition rule%s is as follows"
6407
  msgstr ""
6408
 
6409
- #: core/lib/wpbc_all_translations.php:1231 inc/_ps/form/class-wpbc-form-help.php:428
6410
  #: inc/_ps/form/class-wpbc-form-help.php:449 inc/_ps/form/class-wpbc-form-help.php:472
6411
  #: inc/_ps/form/class-wpbc-form-help.php:575 inc/_ps/form/class-wpbc-form-help.php:596
6412
  #: inc/_ps/form/class-wpbc-form-help.php:619
6413
  msgid "Parameters"
6414
  msgstr ""
6415
 
6416
- #: core/lib/wpbc_all_translations.php:1232 inc/_ps/form/class-wpbc-form-help.php:429
6417
  #: inc/_ps/form/class-wpbc-form-help.php:576
6418
  #, php-format
6419
  msgid ""
@@ -6423,7 +6433,7 @@ msgid ""
6423
  "conditions. Please check more about it, in the examples."
6424
  msgstr ""
6425
 
6426
- #: core/lib/wpbc_all_translations.php:1233 inc/_ps/form/class-wpbc-form-help.php:430
6427
  #: inc/_ps/form/class-wpbc-form-help.php:577
6428
  #, php-format
6429
  msgid ""
@@ -6434,7 +6444,7 @@ msgid ""
6434
  "filter in the Season Filters page."
6435
  msgstr ""
6436
 
6437
- #: core/lib/wpbc_all_translations.php:1234 inc/_ps/form/class-wpbc-form-help.php:431
6438
  #, php-format
6439
  msgid ""
6440
  "%svalue%s – value of the specific conditions. If the value is true, the content of the "
@@ -6443,47 +6453,47 @@ msgid ""
6443
  "at initial stage, when the date in calendar is not yet selected."
6444
  msgstr ""
6445
 
6446
- #: core/lib/wpbc_all_translations.php:1235 inc/_ps/form/class-wpbc-form-help.php:433
6447
  #: inc/_ps/form/class-wpbc-form-help.php:580
6448
  msgid "Examples"
6449
  msgstr ""
6450
 
6451
- #: core/lib/wpbc_all_translations.php:1236 inc/_ps/form/class-wpbc-form-help.php:434
6452
  #: inc/_ps/form/class-wpbc-form-help.php:581
6453
  msgid "Week days conditions."
6454
  msgstr ""
6455
 
6456
- #: core/lib/wpbc_all_translations.php:1237 inc/_ps/form/class-wpbc-form-help.php:450
6457
  #: inc/_ps/form/class-wpbc-form-help.php:597
6458
  msgid "default value, if no dates are selected, or none exist conditions are true."
6459
  msgstr ""
6460
 
6461
- #: core/lib/wpbc_all_translations.php:1238 inc/_ps/form/class-wpbc-form-help.php:458
6462
  #: inc/_ps/form/class-wpbc-form-help.php:475
6463
  msgid "You can use the several values, separated by comma."
6464
  msgstr ""
6465
 
6466
- #: core/lib/wpbc_all_translations.php:1239 inc/_ps/form/class-wpbc-form-help.php:460
6467
  #: inc/_ps/form/class-wpbc-form-help.php:607
6468
  msgid "Season filters conditions."
6469
  msgstr ""
6470
 
6471
- #: core/lib/wpbc_all_translations.php:1240 inc/_ps/form/class-wpbc-form-help.php:473
6472
  #: inc/_ps/form/class-wpbc-form-help.php:620
6473
  msgid "Season filter on the Season Filters page,"
6474
  msgstr ""
6475
 
6476
- #: core/lib/wpbc_all_translations.php:1241 inc/_ps/form/class-wpbc-form-help.php:474
6477
  #: inc/_ps/form/class-wpbc-form-help.php:621
6478
  msgid "Season filter on the Season Filters page"
6479
  msgstr ""
6480
 
6481
- #: core/lib/wpbc_all_translations.php:1242 inc/_ps/form/class-wpbc-form-help.php:477
6482
  #: inc/_ps/form/class-wpbc-form-help.php:624
6483
  msgid "Additional info"
6484
  msgstr ""
6485
 
6486
- #: core/lib/wpbc_all_translations.php:1243 inc/_ps/form/class-wpbc-form-help.php:478
6487
  #: inc/_ps/form/class-wpbc-form-help.php:625
6488
  #, php-format
6489
  msgid ""
@@ -6491,103 +6501,103 @@ msgid ""
6491
  "section."
6492
  msgstr ""
6493
 
6494
- #: core/lib/wpbc_all_translations.php:1244 inc/_ps/form/class-wpbc-form-help.php:479
6495
  #: inc/_ps/form/class-wpbc-form-help.php:626
6496
  #, php-format
6497
  msgid "Please check more about this feature at %sthis page%s"
6498
  msgstr ""
6499
 
6500
- #: core/lib/wpbc_all_translations.php:1245 inc/_ps/form/class-wpbc-form-help.php:493
6501
  msgid "Time Field"
6502
  msgstr ""
6503
 
6504
- #: core/lib/wpbc_all_translations.php:1246 inc/_ps/form/class-wpbc-form-help.php:495
6505
  #, php-format
6506
  msgid "Enter the %sTime%s using the text field."
6507
  msgstr ""
6508
 
6509
- #: core/lib/wpbc_all_translations.php:1247 inc/_ps/form/class-wpbc-form-help.php:498
6510
  msgid "This field does not impact to availability (booking for the specific time) ."
6511
  msgstr ""
6512
 
6513
- #: core/lib/wpbc_all_translations.php:1248 inc/_ps/form/class-wpbc-form-help.php:499
6514
  msgid "The value of this field is just saved into DB."
6515
  msgstr ""
6516
 
6517
- #: core/lib/wpbc_all_translations.php:1249 inc/_ps/form/class-wpbc-form-help.php:509
6518
  msgid "Country List"
6519
  msgstr ""
6520
 
6521
- #: core/lib/wpbc_all_translations.php:1250 inc/_ps/form/class-wpbc-form-help.php:511
6522
  msgid "Select the country from the predefined country list."
6523
  msgstr ""
6524
 
6525
- #: core/lib/wpbc_all_translations.php:1251 inc/_ps/form/class-wpbc-form-help.php:512
6526
  #, php-format
6527
  msgid "You can customize the country list at this file: %s"
6528
  msgstr ""
6529
 
6530
- #: core/lib/wpbc_all_translations.php:1252 inc/_ps/form/class-wpbc-form-help.php:513
6531
  msgid "You can insert this field with default selected value."
6532
  msgstr ""
6533
 
6534
- #: core/lib/wpbc_all_translations.php:1253 inc/_ps/form/class-wpbc-form-help.php:514
6535
  #, php-format
6536
  msgid "Example: %s - %s\"United States\"%s is selected by default."
6537
  msgstr ""
6538
 
6539
- #: core/lib/wpbc_all_translations.php:1254 inc/_ps/form/class-wpbc-form-help.php:523
6540
  msgid "Language Sections"
6541
  msgstr ""
6542
 
6543
- #: core/lib/wpbc_all_translations.php:1255 inc/_ps/form/class-wpbc-form-help.php:525
6544
  msgid "Plugin support configurations of the booking form are available in different languages."
6545
  msgstr ""
6546
 
6547
- #: core/lib/wpbc_all_translations.php:1256 inc/_ps/form/class-wpbc-form-help.php:526
6548
  msgid "The active language of the booking form depends on the active locale of the site."
6549
  msgstr ""
6550
 
6551
- #: core/lib/wpbc_all_translations.php:1257 inc/_ps/form/class-wpbc-form-help.php:527
6552
  msgid ""
6553
  "Booking Calendar supports WPML and qTranslate plugins for dynamic changing of website locale."
6554
  msgstr ""
6555
 
6556
- #: core/lib/wpbc_all_translations.php:1258 inc/_ps/form/class-wpbc-form-help.php:529
6557
  msgid "Usage"
6558
  msgstr ""
6559
 
6560
- #: core/lib/wpbc_all_translations.php:1259 inc/_ps/form/class-wpbc-form-help.php:530
6561
  #, php-format
6562
  msgid "start new translation section in specific language, where %s - locale of the translation."
6563
  msgstr ""
6564
 
6565
- #: core/lib/wpbc_all_translations.php:1260 inc/_ps/form/class-wpbc-form-help.php:533
6566
  msgid "English and French translation"
6567
  msgstr ""
6568
 
6569
- #: core/lib/wpbc_all_translations.php:1261 inc/_ps/form/class-wpbc-form-help.php:536
6570
  msgid "of configuration booking form in English and French languages"
6571
  msgstr ""
6572
 
6573
- #: core/lib/wpbc_all_translations.php:1262 inc/_ps/form/class-wpbc-form-help.php:555
6574
  msgid ""
6575
  "Register and Translate everything in WPML plugin. Translation can be done at the WPML > \"String "
6576
  "translation\" page. Required WPML 3.2 with String Translation plugin."
6577
  msgstr ""
6578
 
6579
- #: core/lib/wpbc_all_translations.php:1263 inc/_ps/form/class-wpbc-form-help.php:563
6580
  msgid "Different form fields, for the different week days"
6581
  msgstr ""
6582
 
6583
- #: core/lib/wpbc_all_translations.php:1264 inc/_ps/form/class-wpbc-form-help.php:566
6584
  msgid ""
6585
  "This feature provides the possibility to show the different form fields or any other HTML "
6586
  "content in the booking form, depending on the selection of specific week day in calendar or "
6587
  "different days, which are assigned to the specific season filters"
6588
  msgstr ""
6589
 
6590
- #: core/lib/wpbc_all_translations.php:1265 inc/_ps/form/class-wpbc-form-help.php:578
6591
  #, php-format
6592
  msgid ""
6593
  "%svalue%s – value of the specific conditions. If the value is true, so then the content of the "
@@ -6596,54 +6606,54 @@ msgid ""
6596
  "at initial stage, when the date in calendar is not yet selected."
6597
  msgstr ""
6598
 
6599
- #: core/lib/wpbc_all_translations.php:1266 inc/_ps/form/class-wpbc-form-help.php:605
6600
  msgid "You can use several values, separated by comma."
6601
  msgstr ""
6602
 
6603
- #: core/lib/wpbc_all_translations.php:1267 inc/_ps/form/class-wpbc-form-help.php:622
6604
  msgid "You can use several values, separated by a comma."
6605
  msgstr ""
6606
 
6607
- #: core/lib/wpbc_all_translations.php:1268 inc/_ps/form/class-wpbc-form-help.php:635
6608
  msgid "Cost Fields"
6609
  msgstr ""
6610
 
6611
- #: core/lib/wpbc_all_translations.php:1269 inc/_ps/form/class-wpbc-form-help.php:641
6612
  msgid "Cost Correction Field"
6613
  msgstr ""
6614
 
6615
- #: core/lib/wpbc_all_translations.php:1270 inc/_ps/form/class-wpbc-form-help.php:643
6616
  #, php-format
6617
  msgid "This field is visible only in Admin Panel at %sAdd booking page%s."
6618
  msgstr ""
6619
 
6620
- #: core/lib/wpbc_all_translations.php:1271 inc/_ps/form/class-wpbc-form-help.php:644
6621
  #, php-format
6622
  msgid "Use this field for %scorrecting the cost%s during adding new booking."
6623
  msgstr ""
6624
 
6625
- #: core/lib/wpbc_all_translations.php:1272 inc/_ps/form/class-wpbc-form-help.php:655
6626
  msgid "Discount Coupon field"
6627
  msgstr ""
6628
 
6629
- #: core/lib/wpbc_all_translations.php:1273 inc/_ps/form/class-wpbc-form-help.php:657
6630
  msgid "Please use this field for possibility to use coupon discounts by your visitors."
6631
  msgstr ""
6632
 
6633
- #: core/lib/wpbc_all_translations.php:1274 inc/_ps/form/class-wpbc-form-help.php:658
6634
  #, php-format
6635
  msgid "You can configure the discount coupon codes at this %spage%s."
6636
  msgstr ""
6637
 
6638
- #: core/lib/wpbc_all_translations.php:1275 inc/_ps/form/class-wpbc-form-help.php:667
6639
  msgid "Hints for your form"
6640
  msgstr ""
6641
 
6642
- #: core/lib/wpbc_all_translations.php:1276 inc/_ps/form/class-wpbc-form-help.php:673
6643
  msgid "Cost Hints"
6644
  msgstr ""
6645
 
6646
- #: core/lib/wpbc_all_translations.php:1277 inc/_ps/form/class-wpbc-form-help.php:675
6647
  #: inc/_ps/form/class-wpbc-form-help.php:697
6648
  #, php-format
6649
  msgid ""
@@ -6651,16 +6661,16 @@ msgid ""
6651
  "calendar or options in checkboxes or selectboxes)%s."
6652
  msgstr ""
6653
 
6654
- #: core/lib/wpbc_all_translations.php:1278 inc/_ps/form/class-wpbc-form-help.php:695
6655
  msgid "Dates and Times Hints"
6656
  msgstr ""
6657
 
6658
- #: core/lib/wpbc_all_translations.php:1279 inc/_ps/form/class-wpbc-form-help.php:699
6659
  #: inc/gateways/page-gateways.php:1066
6660
  msgid "Selected Check In date."
6661
  msgstr ""
6662
 
6663
- #: core/lib/wpbc_all_translations.php:1280 inc/_ps/form/class-wpbc-form-help.php:700
6664
  #: inc/_ps/form/class-wpbc-form-help.php:703 inc/_ps/form/class-wpbc-form-help.php:706
6665
  #: inc/_ps/form/class-wpbc-form-help.php:709 inc/_ps/form/class-wpbc-form-help.php:712
6666
  #: inc/_ps/form/class-wpbc-form-help.php:715 inc/_ps/form/class-wpbc-form-help.php:718
@@ -6674,91 +6684,91 @@ msgstr ""
6674
  msgid "Example:"
6675
  msgstr ""
6676
 
6677
- #: core/lib/wpbc_all_translations.php:1281 inc/_ps/form/class-wpbc-form-help.php:702
6678
  #: inc/_ps/form/class-wpbc-form-help.php:705 inc/gateways/page-gateways.php:1069
6679
  msgid "Selected Check Out date."
6680
  msgstr ""
6681
 
6682
- #: core/lib/wpbc_all_translations.php:1282 inc/_ps/form/class-wpbc-form-help.php:708
6683
  #: inc/gateways/page-gateways.php:1072
6684
  msgid "Selected Start Time."
6685
  msgstr ""
6686
 
6687
- #: core/lib/wpbc_all_translations.php:1283 inc/_ps/form/class-wpbc-form-help.php:711
6688
  #: inc/gateways/page-gateways.php:1075
6689
  msgid "Selected End Time."
6690
  msgstr ""
6691
 
6692
- #: core/lib/wpbc_all_translations.php:1284 inc/_ps/form/class-wpbc-form-help.php:714
6693
  #: inc/gateways/page-gateways.php:1078
6694
  msgid "All selected dates."
6695
  msgstr ""
6696
 
6697
- #: core/lib/wpbc_all_translations.php:1285 inc/_ps/form/class-wpbc-form-help.php:717
6698
  #: inc/gateways/page-gateways.php:1081
6699
  msgid "All selected dates with times."
6700
  msgstr ""
6701
 
6702
- #: core/lib/wpbc_all_translations.php:1286 inc/_ps/form/class-wpbc-form-help.php:720
6703
  #: inc/gateways/page-gateways.php:1084
6704
  msgid "All selected dates in \"short\" format."
6705
  msgstr ""
6706
 
6707
- #: core/lib/wpbc_all_translations.php:1287 inc/_ps/form/class-wpbc-form-help.php:723
6708
  #: inc/gateways/page-gateways.php:1087
6709
  msgid "All selected dates with times in \"short\" format.."
6710
  msgstr ""
6711
 
6712
- #: core/lib/wpbc_all_translations.php:1288 inc/_ps/form/class-wpbc-form-help.php:726
6713
  #: inc/gateways/page-gateways.php:1090
6714
  msgid "Number of selected days."
6715
  msgstr ""
6716
 
6717
- #: core/lib/wpbc_all_translations.php:1289 inc/_ps/form/class-wpbc-form-help.php:729
6718
  #: inc/gateways/page-gateways.php:1093
6719
  msgid "Number of selected nights."
6720
  msgstr ""
6721
 
6722
- #: core/lib/wpbc_all_translations.php:1290 inc/_ps/form/class-wpbc-form-help.php:739
6723
  msgid "Other Hints"
6724
  msgstr ""
6725
 
6726
- #: core/lib/wpbc_all_translations.php:1291 inc/_ps/form/class-wpbc-form-help.php:741
6727
  #: inc/_ps/form/class-wpbc-form-help.php:743 inc/gateways/page-gateways.php:1044
6728
  msgid "title of booking resource"
6729
  msgstr ""
6730
 
6731
- #: core/lib/wpbc_all_translations.php:1292 inc/_ps/form/class-wpbc-form-help.php:742
6732
  msgid "ID of booking resource."
6733
  msgstr ""
6734
 
6735
- #: core/lib/wpbc_all_translations.php:1293 inc/_ps/form/class-wpbc-form-help.php:744
6736
  msgid "cost of booking resource."
6737
  msgstr ""
6738
 
6739
- #: core/lib/wpbc_all_translations.php:1294 inc/_ps/form/class-wpbc-form-help.php:745
6740
  msgid "capacity of booking resource."
6741
  msgstr ""
6742
 
6743
- #: core/lib/wpbc_all_translations.php:1295 inc/_ps/form/class-wpbc-form-help.php:746
6744
  msgid "maximum number of visitors per booking resource."
6745
  msgstr ""
6746
 
6747
- #: core/lib/wpbc_all_translations.php:1296 inc/_ps/form/class-wpbc-form-help.php:760
6748
  msgid "Tips and Tricks"
6749
  msgstr ""
6750
 
6751
- #: core/lib/wpbc_all_translations.php:1297 inc/_ps/form/class-wpbc-form-help.php:762
6752
  #, php-format
6753
  msgid "%sEmail verification field%s."
6754
  msgstr ""
6755
 
6756
- #: core/lib/wpbc_all_translations.php:1298 inc/_ps/form/class-wpbc-form-help.php:764
6757
  #, php-format
6758
  msgid "%sDescription of usage%s."
6759
  msgstr ""
6760
 
6761
- #: core/lib/wpbc_all_translations.php:1299 inc/_ps/form/class-wpbc-form-help.php:765
6762
  #, php-format
6763
  msgid ""
6764
  "To create verification email, you need to use special CSS class in other email field. This CSS "
@@ -6766,256 +6776,256 @@ msgid ""
6766
  "field: %s"
6767
  msgstr ""
6768
 
6769
- #: core/lib/wpbc_all_translations.php:1300 inc/_ps/form/class-wpbc-form-help.php:766
6770
  #, php-format
6771
  msgid "%sExample%s."
6772
  msgstr ""
6773
 
6774
- #: core/lib/wpbc_all_translations.php:1301 inc/_ps/form/class-wpbc-form-help.php:767
6775
  msgid "confirmation email field of the primary email field"
6776
  msgstr ""
6777
 
6778
- #: core/lib/wpbc_all_translations.php:1302 inc/_ps/form/class-wpbc-form-help.php:791
6779
  msgid "Generate Tag"
6780
  msgstr ""
6781
 
6782
- #: core/lib/wpbc_all_translations.php:1303 inc/_ps/form/class-wpbc-form-help.php:807
6783
  msgid "Select option to configure or show help info about tags"
6784
  msgstr ""
6785
 
6786
- #: core/lib/wpbc_all_translations.php:1304 inc/_ps/p-toolbar.php:34
6787
  msgid "Keyword"
6788
  msgstr ""
6789
 
6790
- #: core/lib/wpbc_all_translations.php:1305 inc/_ps/p-toolbar.php:42
6791
  msgid "Enter Keyword here"
6792
  msgstr ""
6793
 
6794
- #: core/lib/wpbc_all_translations.php:1306 inc/_ps/p-toolbar.php:65
6795
  msgid ""
6796
  "Save filter settings as default template (Please, click Apply filter button, before saving!)"
6797
  msgstr ""
6798
 
6799
- #: core/lib/wpbc_all_translations.php:1307 inc/_ps/p-toolbar.php:69
6800
  msgid "Save as Default"
6801
  msgstr ""
6802
 
6803
- #: core/lib/wpbc_all_translations.php:1308 inc/_ps/p-toolbar.php:75
6804
  msgid "Delete your previously saved default filer template!"
6805
  msgstr ""
6806
 
6807
- #: core/lib/wpbc_all_translations.php:1309 inc/_ps/p-toolbar.php:79
6808
  msgid "Delete template"
6809
  msgstr ""
6810
 
6811
- #: core/lib/wpbc_all_translations.php:1310 inc/_ps/p-toolbar.php:101
6812
  msgid "Print bookings listing"
6813
  msgstr ""
6814
 
6815
- #: core/lib/wpbc_all_translations.php:1311 inc/_ps/p-toolbar.php:143
6816
  msgid "Export only current page of bookings to CSV format"
6817
  msgstr ""
6818
 
6819
- #: core/lib/wpbc_all_translations.php:1312 inc/_ps/p-toolbar.php:156
6820
  msgid "Export All"
6821
  msgstr ""
6822
 
6823
- #: core/lib/wpbc_all_translations.php:1313 inc/_ps/p-toolbar.php:157
6824
  msgid "Export All bookings to CSV format"
6825
  msgstr ""
6826
 
6827
- #: core/lib/wpbc_all_translations.php:1314 inc/_ps/p-toolbar.php:224
6828
  msgid "Edit Note"
6829
  msgstr ""
6830
 
6831
- #: core/lib/wpbc_all_translations.php:1315 inc/_ps/p-toolbar.php:247
6832
  msgid "Change Language"
6833
  msgstr ""
6834
 
6835
- #: core/lib/wpbc_all_translations.php:1316 inc/_ps/p-toolbar.php:259
6836
  msgid "Default Locale"
6837
  msgstr ""
6838
 
6839
- #: core/lib/wpbc_all_translations.php:1317 inc/_ps/p-toolbar.php:295
6840
  msgid "Change Resource"
6841
  msgstr ""
6842
 
6843
- #: core/lib/wpbc_all_translations.php:1318 inc/_ps/p-toolbar.php:320 inc/_ps/p-toolbar.php:433
6844
  msgid "Duplicate Booking"
6845
  msgstr ""
6846
 
6847
- #: core/lib/wpbc_all_translations.php:1319 inc/_ps/p-toolbar.php:351
6848
  msgid "Save"
6849
  msgstr ""
6850
 
6851
- #: core/lib/wpbc_all_translations.php:1320 inc/_ps/p-toolbar.php:400
6852
  msgid "Change"
6853
  msgstr ""
6854
 
6855
- #: core/lib/wpbc_all_translations.php:1321 inc/_ps/p-toolbar.php:470
6856
  msgid "Print bookings"
6857
  msgstr ""
6858
 
6859
- #: core/lib/wpbc_all_translations.php:1322 inc/_ps/p-toolbar.php:509
6860
  msgid "Export bookings"
6861
  msgstr ""
6862
 
6863
- #: core/lib/wpbc_all_translations.php:1323 inc/_ps/p-toolbar.php:512
6864
  msgid "Download the CSV file of exported booking data"
6865
  msgstr ""
6866
 
6867
- #: core/lib/wpbc_all_translations.php:1324 inc/_ps/p-toolbar.php:520
6868
  msgid "Download"
6869
  msgstr ""
6870
 
6871
- #: core/lib/wpbc_all_translations.php:1325 inc/_ps/p-toolbar.php:748
6872
  msgid "Clear booking resources selection"
6873
  msgstr ""
6874
 
6875
- #: core/lib/wpbc_all_translations.php:1326 inc/_ps/p-toolbar.php:752
6876
  msgid "Apply booking resources selection"
6877
  msgstr ""
6878
 
6879
- #: core/lib/wpbc_all_translations.php:1327 inc/_ps/p-toolbar.php:782
6880
  msgid ""
6881
  "Please note, its not possible to add new resources, if \"All resources\" option is selected. "
6882
  "Please clear the selection, then add new resources."
6883
  msgstr ""
6884
 
6885
- #: core/lib/wpbc_all_translations.php:1328 inc/_ps/p-toolbar.php:1070 inc/_ps/p-toolbar.php:1118
6886
  msgid "Add New Booking Resource(s)"
6887
  msgstr ""
6888
 
6889
- #: core/lib/wpbc_all_translations.php:1329 inc/_ps/p-toolbar.php:1110
6890
  msgid "Enter name of booking resource"
6891
  msgstr ""
6892
 
6893
- #: core/lib/wpbc_all_translations.php:1330 inc/_ps/p-toolbar.php:1134
6894
  msgid "Resources count"
6895
  msgstr ""
6896
 
6897
- #: core/lib/wpbc_all_translations.php:1331 inc/_ps/personal.php:230
6898
  msgid "This booking resources does not exist"
6899
  msgstr ""
6900
 
6901
- #: core/lib/wpbc_all_translations.php:1332 inc/_ps/personal.php:275
6902
  msgid "Generating columns"
6903
  msgstr ""
6904
 
6905
- #: core/lib/wpbc_all_translations.php:1333 inc/_ps/personal.php:316
6906
  msgid "Exporting booking data"
6907
  msgstr ""
6908
 
6909
- #: core/lib/wpbc_all_translations.php:1334 inc/_ps/personal.php:356
6910
  msgid "Generating content of file"
6911
  msgstr ""
6912
 
6913
- #: core/lib/wpbc_all_translations.php:1335 inc/_ps/personal.php:398
6914
  msgid "Saving to file"
6915
  msgstr ""
6916
 
6917
- #: core/lib/wpbc_all_translations.php:1336 inc/_ps/personal.php:846
6918
  msgid "The booking was canceled by the visitor."
6919
  msgstr ""
6920
 
6921
- #: core/lib/wpbc_all_translations.php:1337 inc/_ps/personal.php:907
6922
  msgid "The booking has been canceled successfully"
6923
  msgstr ""
6924
 
6925
- #: core/lib/wpbc_all_translations.php:1338 inc/_ps/personal.php:927
6926
  msgid "Incorrect date format"
6927
  msgstr ""
6928
 
6929
- #: core/lib/wpbc_all_translations.php:1339 inc/_ps/personal.php:2047
6930
  msgid "Change your Booking"
6931
  msgstr ""
6932
 
6933
- #: core/lib/wpbc_all_translations.php:1340 inc/_ps/personal.php:2049
6934
  msgid "Cancel Booking"
6935
  msgstr ""
6936
 
6937
- #: core/lib/wpbc_all_translations.php:1341 inc/_ps/personal.php:2303
6938
  msgid "Warning! The resource was not changed. Current dates are already booked there."
6939
  msgstr ""
6940
 
6941
- #: core/lib/wpbc_all_translations.php:1342 inc/_ps/personal.php:2440
6942
  msgid "The booking has been duplicated successfully"
6943
  msgstr ""
6944
 
6945
- #: core/lib/wpbc_all_translations.php:1343 inc/_ps/personal.php:2449
6946
  msgid "Warning! Operation failed. Current dates are already booked there."
6947
  msgstr ""
6948
 
6949
- #: core/lib/wpbc_all_translations.php:1344 inc/_ps/personal.php:2536
6950
  msgid "Sending request..."
6951
  msgstr ""
6952
 
6953
- #: core/lib/wpbc_all_translations.php:1345 inc/_ps/personal.php:2565
6954
  msgid "Order number"
6955
  msgstr ""
6956
 
6957
- #: core/lib/wpbc_all_translations.php:1346 inc/_ps/personal.php:2567
6958
  msgid "Register"
6959
  msgstr ""
6960
 
6961
- #: core/lib/wpbc_all_translations.php:1347 inc/_ps/personal.php:2569
6962
  msgid ""
6963
  "Please, enter order number of your purchased version, which you received to your billing email."
6964
  msgstr ""
6965
 
6966
- #: core/lib/wpbc_all_translations.php:1348 inc/_ps/personal.php:2571
6967
  #, php-format
6968
  msgid "If you will get any difficulties or have a questions, please contact by email %s"
6969
  msgstr ""
6970
 
6971
- #: core/lib/wpbc_all_translations.php:1349 inc/_ps/wpbc-booking-select-widget.php:226
6972
  msgid "Default form"
6973
  msgstr ""
6974
 
6975
- #: core/lib/wpbc_all_translations.php:1350 inc/_ps/wpbc-check-updates.php:178
6976
  #, php-format
6977
  msgid ""
6978
  "There is a new version of %1$s available. <a href=\"%2$s\" target=\"_blank\" title=\"%3$s\">View "
6979
  "version %4$s details</a>. <em>Automatic update is unavailable for this plugin.</em>"
6980
  msgstr ""
6981
 
6982
- #: core/lib/wpbc_all_translations.php:1351 inc/_ps/wpbc-check-updates.php:184
6983
  #, php-format
6984
  msgid "You can request the new update of plugin on %1$sthis page%2$s."
6985
  msgstr ""
6986
 
6987
- #: core/lib/wpbc_all_translations.php:1352 inc/_ps/wpbc-check-updates.php:191
6988
  msgid "Upgrade Notice"
6989
  msgstr ""
6990
 
6991
- #: core/lib/wpbc_all_translations.php:1353 inc/_ps/wpbc-check-updates.php:231
6992
  #, php-format
6993
  msgid "Version %s By %s"
6994
  msgstr ""
6995
 
6996
- #: core/lib/wpbc_all_translations.php:1354 inc/_ps/wpbc-check-updates.php:235
6997
  msgid "View details"
6998
  msgstr ""
6999
 
7000
- #: core/lib/wpbc_all_translations.php:1355 inc/_ps/wpbc-form-templates.php:34
7001
  #: inc/_ps/wpbc-form-templates.php:49 inc/_ps/wpbc-form-templates.php:69
7002
  #: inc/_ps/wpbc-form-templates.php:92 inc/_ps/wpbc-form-templates.php:114
7003
  msgid "First Name (required)"
7004
  msgstr ""
7005
 
7006
- #: core/lib/wpbc_all_translations.php:1356 inc/_ps/wpbc-form-templates.php:35
7007
  #: inc/_ps/wpbc-form-templates.php:50 inc/_ps/wpbc-form-templates.php:70
7008
  #: inc/_ps/wpbc-form-templates.php:93 inc/_ps/wpbc-form-templates.php:115
7009
  msgid "Last Name (required)"
7010
  msgstr ""
7011
 
7012
- #: core/lib/wpbc_all_translations.php:1357 inc/_ps/wpbc-form-templates.php:36
7013
  #: inc/_ps/wpbc-form-templates.php:51 inc/_ps/wpbc-form-templates.php:71
7014
  #: inc/_ps/wpbc-form-templates.php:94 inc/_ps/wpbc-form-templates.php:116
7015
  msgid "Email (required)"
7016
  msgstr ""
7017
 
7018
- #: core/lib/wpbc_all_translations.php:1358 inc/_ps/wpbc-form-templates.php:37
7019
  #: inc/_ps/wpbc-form-templates.php:52 inc/_ps/wpbc-form-templates.php:72
7020
  #: inc/_ps/wpbc-form-templates.php:95 inc/_ps/wpbc-form-templates.php:117
7021
  #: inc/_ps/wpbc-form-templates.php:147 inc/_ps/wpbc-form-templates.php:159
@@ -7024,21 +7034,21 @@ msgstr ""
7024
  msgid "Phone"
7025
  msgstr ""
7026
 
7027
- #: core/lib/wpbc_all_translations.php:1359 inc/_ps/wpbc-form-templates.php:38
7028
  #: inc/_ps/wpbc-form-templates.php:57 inc/_ps/wpbc-form-templates.php:77
7029
  #: inc/_ps/wpbc-form-templates.php:100 inc/_ps/wpbc-form-templates.php:148
7030
  #: inc/_ps/wpbc-form-templates.php:164 inc/_ps/wpbc-form-templates.php:179
7031
  msgid "Adults"
7032
  msgstr ""
7033
 
7034
- #: core/lib/wpbc_all_translations.php:1360 inc/_ps/wpbc-form-templates.php:38
7035
  #: inc/_ps/wpbc-form-templates.php:57 inc/_ps/wpbc-form-templates.php:77
7036
  #: inc/_ps/wpbc-form-templates.php:100 inc/_ps/wpbc-form-templates.php:149
7037
  #: inc/_ps/wpbc-form-templates.php:165 inc/_ps/wpbc-form-templates.php:180
7038
  msgid "Children"
7039
  msgstr ""
7040
 
7041
- #: core/lib/wpbc_all_translations.php:1361 inc/_ps/wpbc-form-templates.php:39
7042
  #: inc/_ps/wpbc-form-templates.php:58 inc/_ps/wpbc-form-templates.php:78
7043
  #: inc/_ps/wpbc-form-templates.php:101 inc/_ps/wpbc-form-templates.php:123
7044
  #: inc/_ps/wpbc-form-templates.php:150 inc/_ps/wpbc-form-templates.php:166
@@ -7046,234 +7056,234 @@ msgstr ""
7046
  msgid "Details"
7047
  msgstr ""
7048
 
7049
- #: core/lib/wpbc_all_translations.php:1362 inc/_ps/wpbc-form-templates.php:40
7050
  #: inc/_ps/wpbc-form-templates.php:59 inc/_ps/wpbc-form-templates.php:79
7051
  #: inc/_ps/wpbc-form-templates.php:102 inc/_ps/wpbc-form-templates.php:125
7052
  msgid "I Accept term and conditions"
7053
  msgstr ""
7054
 
7055
- #: core/lib/wpbc_all_translations.php:1363 inc/_ps/wpbc-form-templates.php:48
7056
  #: inc/_ps/wpbc-form-templates.php:68
7057
  msgid "Select Times"
7058
  msgstr ""
7059
 
7060
- #: core/lib/wpbc_all_translations.php:1364 inc/_ps/wpbc-form-templates.php:53
7061
  #: inc/_ps/wpbc-form-templates.php:73 inc/_ps/wpbc-form-templates.php:96
7062
  #: inc/_ps/wpbc-form-templates.php:118
7063
  msgid "Address (required)"
7064
  msgstr ""
7065
 
7066
- #: core/lib/wpbc_all_translations.php:1365 inc/_ps/wpbc-form-templates.php:54
7067
  #: inc/_ps/wpbc-form-templates.php:74 inc/_ps/wpbc-form-templates.php:97
7068
  #: inc/_ps/wpbc-form-templates.php:119
7069
  msgid "City (required)"
7070
  msgstr ""
7071
 
7072
- #: core/lib/wpbc_all_translations.php:1366 inc/_ps/wpbc-form-templates.php:55
7073
  #: inc/_ps/wpbc-form-templates.php:75 inc/_ps/wpbc-form-templates.php:98
7074
  #: inc/_ps/wpbc-form-templates.php:120
7075
  msgid "Post code (required)"
7076
  msgstr ""
7077
 
7078
- #: core/lib/wpbc_all_translations.php:1367 inc/_ps/wpbc-form-templates.php:56
7079
  #: inc/_ps/wpbc-form-templates.php:76 inc/_ps/wpbc-form-templates.php:99
7080
  #: inc/_ps/wpbc-form-templates.php:121
7081
  msgid "Country (required)"
7082
  msgstr ""
7083
 
7084
- #: core/lib/wpbc_all_translations.php:1368 inc/_ps/wpbc-form-templates.php:89
7085
  msgid "night(s)"
7086
  msgstr ""
7087
 
7088
- #: core/lib/wpbc_all_translations.php:1369 inc/_ps/wpbc-form-templates.php:90
7089
  #: inc/_ps/wpbc-form-templates.php:112
7090
  msgid "Full cost of the booking"
7091
  msgstr ""
7092
 
7093
- #: core/lib/wpbc_all_translations.php:1370 inc/_ps/wpbc-form-templates.php:122
7094
  #: inc/_ps/wpbc-form-templates.php:194
7095
  msgid "Visitors"
7096
  msgstr ""
7097
 
7098
- #: core/lib/wpbc_all_translations.php:1371 inc/_ps/wpbc-form-templates.php:145
7099
  #: inc/_ps/wpbc-form-templates.php:157 inc/_ps/wpbc-form-templates.php:172
7100
  #: inc/_ps/wpbc-form-templates.php:187
7101
  msgid "Last Name"
7102
  msgstr ""
7103
 
7104
- #: core/lib/wpbc_all_translations.php:1372 inc/_ps/wpbc-form-templates.php:146
7105
  #: inc/_ps/wpbc-form-templates.php:158 inc/_ps/wpbc-form-templates.php:173
7106
  #: inc/_ps/wpbc-form-templates.php:188
7107
  msgid "Email"
7108
  msgstr ""
7109
 
7110
- #: core/lib/wpbc_all_translations.php:1373 inc/_ps/wpbc-form-templates.php:160
7111
  #: inc/_ps/wpbc-form-templates.php:175 inc/_ps/wpbc-form-templates.php:190
7112
  msgid "Address"
7113
  msgstr ""
7114
 
7115
- #: core/lib/wpbc_all_translations.php:1374 inc/_ps/wpbc-form-templates.php:161
7116
  #: inc/_ps/wpbc-form-templates.php:176 inc/_ps/wpbc-form-templates.php:191
7117
  msgid "City"
7118
  msgstr ""
7119
 
7120
- #: core/lib/wpbc_all_translations.php:1375 inc/_ps/wpbc-form-templates.php:162
7121
  #: inc/_ps/wpbc-form-templates.php:177 inc/_ps/wpbc-form-templates.php:192
7122
  msgid "Post code"
7123
  msgstr ""
7124
 
7125
- #: core/lib/wpbc_all_translations.php:1376 inc/_ps/wpbc-form-templates.php:163
7126
  #: inc/_ps/wpbc-form-templates.php:178 inc/_ps/wpbc-form-templates.php:193
7127
  #: inc/gateways/page-gateways.php:340
7128
  msgid "Country"
7129
  msgstr ""
7130
 
7131
- #: core/lib/wpbc_all_translations.php:1377 inc/_ps/wpbc-form-templates.php:220
7132
  #: inc/_ps/wpbc-form-templates.php:230 inc/_ps/wpbc-form-templates.php:240
7133
  #: inc/_ps/wpbc-form-templates.php:250
7134
  msgid "Check in"
7135
  msgstr ""
7136
 
7137
- #: core/lib/wpbc_all_translations.php:1378 inc/_ps/wpbc-form-templates.php:221
7138
  #: inc/_ps/wpbc-form-templates.php:231 inc/_ps/wpbc-form-templates.php:241
7139
  #: inc/_ps/wpbc-form-templates.php:251
7140
  msgid "Check out"
7141
  msgstr ""
7142
 
7143
- #: core/lib/wpbc_all_translations.php:1379 inc/_ps/wpbc-form-templates.php:222
7144
  #: inc/_ps/wpbc-form-templates.php:232 inc/_ps/wpbc-form-templates.php:242
7145
  #: inc/_ps/wpbc-form-templates.php:252
7146
  msgid "Guests"
7147
  msgstr ""
7148
 
7149
- #: core/lib/wpbc_all_translations.php:1380 inc/_ps/wpbc-form-templates.php:280
7150
  #: inc/_ps/wpbc-form-templates.php:297
7151
  msgid "Max. persons"
7152
  msgstr ""
7153
 
7154
- #: core/lib/wpbc_all_translations.php:1381 inc/_ps/wpbc-print.php:84
7155
  msgid "Data"
7156
  msgstr ""
7157
 
7158
- #: core/lib/wpbc_all_translations.php:1382 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:275
7159
- #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:218
7160
  #: inc/gateways/ideal/wpbc-gw-ideal.php:378 inc/gateways/ipay88/wpbc-gw-ipay88.php:255
7161
  #: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:147 inc/gateways/paypal/wpbc-gw-paypal.php:344
7162
  #: inc/gateways/sage/wpbc-gw-sage.php:385 inc/gateways/stripe/wpbc-gw-stripe.php:290
7163
  msgid "Enable this payment gateway"
7164
  msgstr ""
7165
 
7166
- #: core/lib/wpbc_all_translations.php:1383 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:285
7167
  msgid "API Login ID"
7168
  msgstr ""
7169
 
7170
- #: core/lib/wpbc_all_translations.php:1384 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:287
7171
  #, php-format
7172
  msgid "The merchant API Login ID is provided in the Merchant Interface of %s"
7173
  msgstr ""
7174
 
7175
- #: core/lib/wpbc_all_translations.php:1385 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:300
7176
  msgid "Transaction Key"
7177
  msgstr ""
7178
 
7179
- #: core/lib/wpbc_all_translations.php:1386 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:302
7180
  #: inc/gateways/stripe/wpbc-gw-stripe.php:318 inc/gateways/stripe/wpbc-gw-stripe.php:333
7181
  #: inc/gateways/stripe/wpbc-gw-stripe.php:350 inc/gateways/stripe/wpbc-gw-stripe.php:365
7182
  #, php-format
7183
  msgid "This parameter have to assigned to you by %s"
7184
  msgstr ""
7185
 
7186
- #: core/lib/wpbc_all_translations.php:1387 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:314
7187
  #: inc/gateways/ideal/wpbc-gw-ideal.php:419 inc/gateways/paypal/wpbc-gw-paypal.php:423
7188
  #: inc/gateways/sage/wpbc-gw-sage.php:424
7189
  msgid "Chose payment mode"
7190
  msgstr ""
7191
 
7192
- #: core/lib/wpbc_all_translations.php:1388 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:315
7193
  msgid ""
7194
  "Select \"Live test\" or \"Live\" environment for using Merchant account or \"Developer Test\" "
7195
  "for using Developer account."
7196
  msgstr ""
7197
 
7198
- #: core/lib/wpbc_all_translations.php:1389 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:318
7199
  msgid ""
7200
  "Transactions posted against live merchant accounts using either of the above testing methods are "
7201
  "not submitted to financial institutions for authorization and are not stored in the Merchant "
7202
  "Interface."
7203
  msgstr ""
7204
 
7205
- #: core/lib/wpbc_all_translations.php:1390 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:322
7206
  msgid "Developer Test"
7207
  msgstr ""
7208
 
7209
- #: core/lib/wpbc_all_translations.php:1391 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:323
7210
  msgid "Live Test"
7211
  msgstr ""
7212
 
7213
- #: core/lib/wpbc_all_translations.php:1392 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:324
7214
  #: inc/gateways/paypal/wpbc-gw-paypal.php:429
7215
  msgid "Live"
7216
  msgstr ""
7217
 
7218
- #: core/lib/wpbc_all_translations.php:1393 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:332
7219
  #: inc/gateways/paypal/wpbc-gw-paypal.php:407 inc/gateways/sage/wpbc-gw-sage.php:438
7220
  msgid "Transaction type"
7221
  msgstr ""
7222
 
7223
- #: core/lib/wpbc_all_translations.php:1394 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:333
7224
  msgid "Select transaction type, which supported by the payment gateway."
7225
  msgstr ""
7226
 
7227
- #: core/lib/wpbc_all_translations.php:1395 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:336
7228
  msgid "Authorization and Capture"
7229
  msgstr ""
7230
 
7231
- #: core/lib/wpbc_all_translations.php:1396 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:337
7232
  msgid "Authorization Only"
7233
  msgstr ""
7234
 
7235
- #: core/lib/wpbc_all_translations.php:1397 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:343
7236
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:293 inc/gateways/paypal/wpbc-gw-paypal.php:438
7237
  #: inc/gateways/sage/wpbc-gw-sage.php:453 inc/gateways/stripe/wpbc-gw-stripe.php:386
7238
  msgid "U.S. Dollars"
7239
  msgstr ""
7240
 
7241
- #: core/lib/wpbc_all_translations.php:1398 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:344
7242
  #: inc/gateways/sage/wpbc-gw-sage.php:451 inc/gateways/stripe/wpbc-gw-stripe.php:387
7243
  msgid "Pounds Sterling"
7244
  msgstr ""
7245
 
7246
- #: core/lib/wpbc_all_translations.php:1399 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:345
7247
  #: inc/gateways/paypal/wpbc-gw-paypal.php:439 inc/gateways/sage/wpbc-gw-sage.php:452
7248
  #: inc/gateways/stripe/wpbc-gw-stripe.php:388
7249
  msgid "Euros"
7250
  msgstr ""
7251
 
7252
- #: core/lib/wpbc_all_translations.php:1400 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:346
7253
  #: inc/gateways/paypal/wpbc-gw-paypal.php:443 inc/gateways/sage/wpbc-gw-sage.php:456
7254
  #: inc/gateways/stripe/wpbc-gw-stripe.php:389
7255
  msgid "Canadian Dollars"
7256
  msgstr ""
7257
 
7258
- #: core/lib/wpbc_all_translations.php:1401 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:351
7259
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:299 inc/gateways/paypal/wpbc-gw-paypal.php:466
7260
  #: inc/gateways/sage/wpbc-gw-sage.php:478 inc/gateways/stripe/wpbc-gw-stripe.php:530
7261
  msgid "Accepted Currency"
7262
  msgstr ""
7263
 
7264
- #: core/lib/wpbc_all_translations.php:1402 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:352
7265
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:300 inc/gateways/paypal/wpbc-gw-paypal.php:467
7266
  #: inc/gateways/sage/wpbc-gw-sage.php:479 inc/gateways/stripe/wpbc-gw-stripe.php:531
7267
  msgid "The currency code that gateway will process the payment in."
7268
  msgstr ""
7269
 
7270
- #: core/lib/wpbc_all_translations.php:1403 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:355
7271
  #: inc/gateways/stripe/wpbc-gw-stripe.php:534
7272
  msgid ""
7273
  "Setting the currency that is not supported by the payment processor will result in an error."
7274
  msgstr ""
7275
 
7276
- #: core/lib/wpbc_all_translations.php:1404 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:365
7277
  #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:366
7278
  #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:983 inc/gateways/ideal/wpbc-gw-ideal.php:309
7279
  #: inc/gateways/ideal/wpbc-gw-ideal.php:457 inc/gateways/ideal/wpbc-gw-ideal.php:458
@@ -7287,21 +7297,21 @@ msgstr ""
7287
  msgid "Pay via"
7288
  msgstr ""
7289
 
7290
- #: core/lib/wpbc_all_translations.php:1405 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:367
7291
  #: inc/gateways/ideal/wpbc-gw-ideal.php:459 inc/gateways/ipay88/wpbc-gw-ipay88.php:311
7292
  #: inc/gateways/paypal/wpbc-gw-paypal.php:497 inc/gateways/sage/wpbc-gw-sage.php:490
7293
  #: inc/gateways/stripe/wpbc-gw-stripe.php:554
7294
  msgid "Payment button title"
7295
  msgstr ""
7296
 
7297
- #: core/lib/wpbc_all_translations.php:1406 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:368
7298
  #: inc/gateways/ideal/wpbc-gw-ideal.php:460 inc/gateways/ipay88/wpbc-gw-ipay88.php:312
7299
  #: inc/gateways/paypal/wpbc-gw-paypal.php:498 inc/gateways/sage/wpbc-gw-sage.php:491
7300
  #: inc/gateways/stripe/wpbc-gw-stripe.php:555
7301
  msgid "Enter the title of the payment button"
7302
  msgstr ""
7303
 
7304
- #: core/lib/wpbc_all_translations.php:1407 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:379
7305
  #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:380
7306
  #: inc/gateways/authorizenet/wpbc-gw-authorizenet.php:979 inc/gateways/ideal/wpbc-gw-ideal.php:471
7307
  #: inc/gateways/ideal/wpbc-gw-ideal.php:472 inc/gateways/ideal/wpbc-gw-ideal.php:1043
@@ -7315,104 +7325,104 @@ msgstr ""
7315
  msgid "Payment for booking %s on these day(s): %s"
7316
  msgstr ""
7317
 
7318
- #: core/lib/wpbc_all_translations.php:1408 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:381
7319
  #: inc/gateways/ideal/wpbc-gw-ideal.php:473 inc/gateways/ipay88/wpbc-gw-ipay88.php:325
7320
  #: inc/gateways/paypal/wpbc-gw-paypal.php:525 inc/gateways/sage/wpbc-gw-sage.php:504
7321
  #: inc/gateways/stripe/wpbc-gw-stripe.php:568
7322
  msgid "Payment description at gateway website"
7323
  msgstr ""
7324
 
7325
- #: core/lib/wpbc_all_translations.php:1409 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:382
7326
  #: inc/gateways/ideal/wpbc-gw-ideal.php:474 inc/gateways/ipay88/wpbc-gw-ipay88.php:326
7327
  #: inc/gateways/paypal/wpbc-gw-paypal.php:526 inc/gateways/sage/wpbc-gw-sage.php:505
7328
  #: inc/gateways/stripe/wpbc-gw-stripe.php:569
7329
  msgid "Enter the service name or the reason for the payment here."
7330
  msgstr ""
7331
 
7332
- #: core/lib/wpbc_all_translations.php:1410 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:383
7333
  #: inc/gateways/ideal/wpbc-gw-ideal.php:475 inc/gateways/ipay88/wpbc-gw-ipay88.php:327
7334
  #: inc/gateways/paypal/wpbc-gw-paypal.php:527 inc/gateways/sage/wpbc-gw-sage.php:506
7335
  #: inc/gateways/stripe/wpbc-gw-stripe.php:570
7336
  msgid "You can use any shortcodes, which you have used in content of booking fields data form."
7337
  msgstr ""
7338
 
7339
- #: core/lib/wpbc_all_translations.php:1411 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:386
7340
  #: inc/gateways/ideal/wpbc-gw-ideal.php:478 inc/gateways/ipay88/wpbc-gw-ipay88.php:330
7341
  #: inc/gateways/paypal/wpbc-gw-paypal.php:530 inc/gateways/sage/wpbc-gw-sage.php:509
7342
  #, php-format
7343
  msgid "This field support only up to %s characters by payment system."
7344
  msgstr ""
7345
 
7346
- #: core/lib/wpbc_all_translations.php:1412 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:404
7347
  msgid "Activate Relay Response"
7348
  msgstr ""
7349
 
7350
- #: core/lib/wpbc_all_translations.php:1413 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:405
7351
  msgid ""
7352
  "Indicate to the payment gateway that you would like to receive the transaction response to your "
7353
  "site."
7354
  msgstr ""
7355
 
7356
- #: core/lib/wpbc_all_translations.php:1414 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:408
7357
  msgid ""
7358
  "You should leave empty the Relay Response URL and Receipt Link URL/Text in the Merchant "
7359
  "Interface, if a Relay Response is activated here."
7360
  msgstr ""
7361
 
7362
- #: core/lib/wpbc_all_translations.php:1415 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:418
7363
  msgid "MD5 Hash value"
7364
  msgstr ""
7365
 
7366
- #: core/lib/wpbc_all_translations.php:1416 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:419
7367
  msgid ""
7368
  "Please enter the MD5 Hash value, which you configured in the settings of Merchant Interface."
7369
  msgstr ""
7370
 
7371
- #: core/lib/wpbc_all_translations.php:1417 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:421
7372
  msgid "To configure MD5 Hash value in Relay Response for your transactions"
7373
  msgstr ""
7374
 
7375
- #: core/lib/wpbc_all_translations.php:1418 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:422
7376
  msgid "Log on to the Merchant Interface"
7377
  msgstr ""
7378
 
7379
- #: core/lib/wpbc_all_translations.php:1419 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:423
7380
  msgid "Click Settings under Account in the main menu on the left"
7381
  msgstr ""
7382
 
7383
- #: core/lib/wpbc_all_translations.php:1420 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:424
7384
  msgid "Click MD5-Hash in the Security Settings section"
7385
  msgstr ""
7386
 
7387
- #: core/lib/wpbc_all_translations.php:1421 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:425
7388
  msgid "Enter this value"
7389
  msgstr ""
7390
 
7391
- #: core/lib/wpbc_all_translations.php:1422 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:426
7392
  msgid "Click Submit"
7393
  msgstr ""
7394
 
7395
- #: core/lib/wpbc_all_translations.php:1423 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:427
7396
  #, php-format
7397
  msgid ""
7398
  "For more information about configuring Relay Response in the Merchant Interface, please see the "
7399
  "%sMerchant Integration Guide%s"
7400
  msgstr ""
7401
 
7402
- #: core/lib/wpbc_all_translations.php:1424 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:442
7403
  #: inc/gateways/ideal/wpbc-gw-ideal.php:506 inc/gateways/ipay88/wpbc-gw-ipay88.php:351
7404
  #: inc/gateways/sage/wpbc-gw-sage.php:530 inc/gateways/stripe/wpbc-gw-stripe.php:594
7405
  msgid "Return URL after Successful order"
7406
  msgstr ""
7407
 
7408
- #: core/lib/wpbc_all_translations.php:1425 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:460
7409
  #: inc/gateways/ideal/wpbc-gw-ideal.php:522 inc/gateways/ipay88/wpbc-gw-ipay88.php:367
7410
  #: inc/gateways/paypal/wpbc-gw-paypal.php:591 inc/gateways/sage/wpbc-gw-sage.php:546
7411
  #: inc/gateways/stripe/wpbc-gw-stripe.php:612
7412
  msgid "The URL where visitor will be redirected after completing payment."
7413
  msgstr ""
7414
 
7415
- #: core/lib/wpbc_all_translations.php:1426 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:461
7416
  #: inc/gateways/ideal/wpbc-gw-ideal.php:523 inc/gateways/ipay88/wpbc-gw-ipay88.php:368
7417
  #: inc/gateways/paypal/wpbc-gw-paypal.php:592 inc/gateways/sage/wpbc-gw-sage.php:547
7418
  #: inc/gateways/stripe/wpbc-gw-stripe.php:613
@@ -7420,20 +7430,20 @@ msgstr ""
7420
  msgid "For example, a URL to your site that displays a %s\"Thank you for the payment\"%s."
7421
  msgstr ""
7422
 
7423
- #: core/lib/wpbc_all_translations.php:1427 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:476
7424
  #: inc/gateways/ideal/wpbc-gw-ideal.php:537 inc/gateways/ipay88/wpbc-gw-ipay88.php:382
7425
  #: inc/gateways/sage/wpbc-gw-sage.php:561 inc/gateways/stripe/wpbc-gw-stripe.php:628
7426
  msgid "Return URL after Failed order"
7427
  msgstr ""
7428
 
7429
- #: core/lib/wpbc_all_translations.php:1428 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:494
7430
  #: inc/gateways/ideal/wpbc-gw-ideal.php:553 inc/gateways/ipay88/wpbc-gw-ipay88.php:398
7431
  #: inc/gateways/paypal/wpbc-gw-paypal.php:622 inc/gateways/sage/wpbc-gw-sage.php:577
7432
  #: inc/gateways/stripe/wpbc-gw-stripe.php:646
7433
  msgid "The URL where the visitor will be redirected after completing payment."
7434
  msgstr ""
7435
 
7436
- #: core/lib/wpbc_all_translations.php:1429 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:495
7437
  #: inc/gateways/ideal/wpbc-gw-ideal.php:554 inc/gateways/ipay88/wpbc-gw-ipay88.php:399
7438
  #: inc/gateways/paypal/wpbc-gw-paypal.php:623 inc/gateways/sage/wpbc-gw-sage.php:578
7439
  #: inc/gateways/stripe/wpbc-gw-stripe.php:647
@@ -7441,24 +7451,24 @@ msgstr ""
7441
  msgid "For example, the URL to your website that displays a %s\"Payment Canceled\"%s page."
7442
  msgstr ""
7443
 
7444
- #: core/lib/wpbc_all_translations.php:1430 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:506
7445
  msgid "Automatically approve booking"
7446
  msgstr ""
7447
 
7448
- #: core/lib/wpbc_all_translations.php:1431 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:507
7449
  msgid "Check this box to automatically approve booking, when visitor makes a successful payment."
7450
  msgstr ""
7451
 
7452
- #: core/lib/wpbc_all_translations.php:1432 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:509
7453
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:412 inc/gateways/paypal/wpbc-gw-paypal.php:640
7454
  #: inc/gateways/sage/wpbc-gw-sage.php:591 inc/gateways/stripe/wpbc-gw-stripe.php:661
7455
  msgid "This will not work, if the visitor leaves the payment page."
7456
  msgstr ""
7457
 
7458
- #: core/lib/wpbc_all_translations.php:1433 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:726
7459
- #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:343
7460
- #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:424
7461
- #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:446
7462
  #: inc/gateways/ideal/wpbc-gw-ideal.php:801 inc/gateways/ideal/wpbc-gw-ideal.php:904
7463
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:659 inc/gateways/ipay88/wpbc-gw-ipay88.php:764
7464
  #: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:283 inc/gateways/pay_cash/wpbc-gw-pay_cash.php:388
@@ -7469,11 +7479,11 @@ msgstr ""
7469
  msgid "%s Settings"
7470
  msgstr ""
7471
 
7472
- #: core/lib/wpbc_all_translations.php:1434 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:727
7473
  msgid "Integration of authorizenet payment system"
7474
  msgstr ""
7475
 
7476
- #: core/lib/wpbc_all_translations.php:1435 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:819
7477
  #, php-format
7478
  msgid ""
7479
  "If you have no account on this system, please sign up for a %sdeveloper test account%s to obtain "
@@ -7481,233 +7491,233 @@ msgid ""
7481
  "gateway."
7482
  msgstr ""
7483
 
7484
- #: core/lib/wpbc_all_translations.php:1436
7485
  msgid ""
7486
  "Please configure all fields inside the Billing form fields tab at this page, when using a "
7487
  "European payment processor"
7488
  msgstr ""
7489
 
7490
- #: core/lib/wpbc_all_translations.php:1437 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:834
7491
  msgid "Be sure that the merchant server system clock is set to the proper time and time zone."
7492
  msgstr ""
7493
 
7494
- #: core/lib/wpbc_all_translations.php:1438 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:844
7495
  #, php-format
7496
  msgid "%s - Server Integration Method (SIM)"
7497
  msgstr ""
7498
 
7499
- #: core/lib/wpbc_all_translations.php:1439 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:230
7500
  #: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:159
7501
  msgid "Payment method description that the customer will see on your payment page."
7502
  msgstr ""
7503
 
7504
- #: core/lib/wpbc_all_translations.php:1440 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:263
7505
- #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:342
7506
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:343
7507
- #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:424
 
7508
  msgid "Bank Transfer"
7509
  msgstr ""
7510
 
7511
- #: core/lib/wpbc_all_translations.php:1441 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:344
7512
  msgid "Integration of Bank Transfer payment system"
7513
  msgstr ""
7514
 
7515
- #: core/lib/wpbc_all_translations.php:1442 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:425
7516
- #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:465
7517
  msgid "Account details"
7518
  msgstr ""
7519
 
7520
- #: core/lib/wpbc_all_translations.php:1443 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:479
7521
  #, php-format
7522
  msgid "Allow payments by %sdirect bank / wire transfer%s"
7523
  msgstr ""
7524
 
7525
- #: core/lib/wpbc_all_translations.php:1444 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:481
7526
  #: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:364
7527
  msgid "Its only show fixed payment details."
7528
  msgstr ""
7529
 
7530
- #: core/lib/wpbc_all_translations.php:1445 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:716
7531
  msgid "Sort Code"
7532
  msgstr ""
7533
 
7534
- #: core/lib/wpbc_all_translations.php:1446 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:724
7535
  #, php-format
7536
  msgid ""
7537
  "Dear %sMake your payment %s directly into our bank account. %sPlease use your Booking ID %s as "
7538
  "the payment reference! %s %s: %s %s: %s %s: %s %s: %s"
7539
  msgstr ""
7540
 
7541
- #: core/lib/wpbc_all_translations.php:1447 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:730
7542
- #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:737
7543
  msgid "Account Number"
7544
  msgstr ""
7545
 
7546
- #: core/lib/wpbc_all_translations.php:1448 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:732
7547
- #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:740
7548
  msgid "IBAN"
7549
  msgstr ""
7550
 
7551
- #: core/lib/wpbc_all_translations.php:1449 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:733
7552
- #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:741
7553
  msgid "BIC / Swift"
7554
  msgstr ""
7555
 
7556
- #: core/lib/wpbc_all_translations.php:1450 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:736
7557
  msgid "Account Name"
7558
  msgstr ""
7559
 
7560
- #: core/lib/wpbc_all_translations.php:1451 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:738
7561
  #: inc/gateways/ideal/wpbc-gw-ideal.php:324
7562
  msgid "Bank Name"
7563
  msgstr ""
7564
 
7565
- #: core/lib/wpbc_all_translations.php:1452 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:786
7566
  msgid "BSB"
7567
  msgstr ""
7568
 
7569
- #: core/lib/wpbc_all_translations.php:1453 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:787
7570
  msgid "Bank Transit Number"
7571
  msgstr ""
7572
 
7573
- #: core/lib/wpbc_all_translations.php:1454 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:788
7574
  msgid "IFSC"
7575
  msgstr ""
7576
 
7577
- #: core/lib/wpbc_all_translations.php:1455 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:789
7578
  msgid "Branch Sort"
7579
  msgstr ""
7580
 
7581
- #: core/lib/wpbc_all_translations.php:1456 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:790
7582
- #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:791
7583
  msgid "Bank Code"
7584
  msgstr ""
7585
 
7586
- #: core/lib/wpbc_all_translations.php:1457 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:792
7587
  msgid "Routing Number"
7588
  msgstr ""
7589
 
7590
- #: core/lib/wpbc_all_translations.php:1458 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:793
7591
  msgid "Branch Code"
7592
  msgstr ""
7593
 
7594
- #: core/lib/wpbc_all_translations.php:1459 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:803
7595
  #, php-format
7596
  msgid "%s - inserting all bank accounts details"
7597
  msgstr ""
7598
 
7599
- #: core/lib/wpbc_all_translations.php:1460 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:804
7600
  #, php-format
7601
  msgid "%s - inserting account name"
7602
  msgstr ""
7603
 
7604
- #: core/lib/wpbc_all_translations.php:1461 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:805
7605
  #, php-format
7606
  msgid "%s - inserting account number"
7607
  msgstr ""
7608
 
7609
- #: core/lib/wpbc_all_translations.php:1462 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:806
7610
  #, php-format
7611
  msgid "%s - inserting bank name "
7612
  msgstr ""
7613
 
7614
- #: core/lib/wpbc_all_translations.php:1463 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:807
7615
  #, php-format
7616
  msgid "%s - inserting sort code "
7617
  msgstr ""
7618
 
7619
- #: core/lib/wpbc_all_translations.php:1464 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:808
7620
  #, php-format
7621
  msgid "%s - inserting IBAN "
7622
  msgstr ""
7623
 
7624
- #: core/lib/wpbc_all_translations.php:1465 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:809
7625
  #, php-format
7626
  msgid "%s - inserting BIC "
7627
  msgstr ""
7628
 
7629
- #: core/lib/wpbc_all_translations.php:1466 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:814
7630
  msgid ""
7631
  "You can use any shortcodes, that you can use in payment description form at Settings Payment "
7632
  "General page"
7633
  msgstr ""
7634
 
7635
- #: core/lib/wpbc_all_translations.php:1467 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:887
7636
  msgid "+ Add Account"
7637
  msgstr ""
7638
 
7639
- #: core/lib/wpbc_all_translations.php:1468 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:887
7640
  msgid "Remove selected account(s)"
7641
  msgstr ""
7642
 
7643
- #: core/lib/wpbc_all_translations.php:1469 inc/gateways/ipay88/ipay88-backend.php:51
7644
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:500
7645
  msgid "Successful payment"
7646
  msgstr ""
7647
 
7648
- #: core/lib/wpbc_all_translations.php:1470 inc/gateways/ipay88/ipay88-backend.php:53
7649
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:503
7650
  msgid " Parameters are incorrect,"
7651
  msgstr ""
7652
 
7653
- #: core/lib/wpbc_all_translations.php:1471 inc/gateways/ipay88/ipay88-backend.php:54
7654
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:505
7655
  msgid "Cannot find the record"
7656
  msgstr ""
7657
 
7658
- #: core/lib/wpbc_all_translations.php:1472 inc/gateways/ipay88/ipay88-backend.php:55
7659
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:507
7660
  msgid "Amount different"
7661
  msgstr ""
7662
 
7663
- #: core/lib/wpbc_all_translations.php:1473 inc/gateways/ipay88/ipay88-backend.php:56
7664
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:509
7665
  msgid "Payment failed"
7666
  msgstr ""
7667
 
7668
- #: core/lib/wpbc_all_translations.php:1474 inc/gateways/ipay88/ipay88-backend.php:57
7669
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:511
7670
  msgid "Payment status updated by Mobile88 Admin(Fail)"
7671
  msgstr ""
7672
 
7673
- #: core/lib/wpbc_all_translations.php:1475 inc/gateways/ipay88/ipay88-backend.php:58
7674
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:513
7675
  msgid "Connection Error"
7676
  msgstr ""
7677
 
7678
- #: core/lib/wpbc_all_translations.php:1476 inc/gateways/ipay88/wpbc-gw-ipay88.php:265
7679
  msgid "Merchant Code"
7680
  msgstr ""
7681
 
7682
- #: core/lib/wpbc_all_translations.php:1477 inc/gateways/ipay88/wpbc-gw-ipay88.php:267
7683
  msgid "Enter your iPay88 Merchant Code."
7684
  msgstr ""
7685
 
7686
- #: core/lib/wpbc_all_translations.php:1478 inc/gateways/ideal/wpbc-gw-ideal.php:403
7687
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:280
7688
  msgid "Merchant Key"
7689
  msgstr ""
7690
 
7691
- #: core/lib/wpbc_all_translations.php:1479 inc/gateways/ipay88/wpbc-gw-ipay88.php:282
7692
  msgid "Enter your iPay88 Merchant Key."
7693
  msgstr ""
7694
 
7695
- #: core/lib/wpbc_all_translations.php:1480 inc/gateways/ipay88/wpbc-gw-ipay88.php:292
7696
  msgid "Malaysian Ringgit"
7697
  msgstr ""
7698
 
7699
- #: core/lib/wpbc_all_translations.php:1481 inc/gateways/ipay88/wpbc-gw-ipay88.php:294
7700
  #: inc/gateways/paypal/wpbc-gw-paypal.php:458 inc/gateways/sage/wpbc-gw-sage.php:471
7701
  msgid "Philippine Pesos"
7702
  msgstr ""
7703
 
7704
- #: core/lib/wpbc_all_translations.php:1482 inc/gateways/ideal/wpbc-gw-ideal.php:564
7705
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:409 inc/gateways/paypal/wpbc-gw-paypal.php:637
7706
  #: inc/gateways/sage/wpbc-gw-sage.php:588 inc/gateways/stripe/wpbc-gw-stripe.php:658
7707
  msgid "Automatically approve/cancel booking"
7708
  msgstr ""
7709
 
7710
- #: core/lib/wpbc_all_translations.php:1483 inc/gateways/ideal/wpbc-gw-ideal.php:565
7711
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:410 inc/gateways/paypal/wpbc-gw-paypal.php:638
7712
  #: inc/gateways/sage/wpbc-gw-sage.php:589 inc/gateways/stripe/wpbc-gw-stripe.php:659
7713
  msgid ""
@@ -7715,11 +7725,11 @@ msgid ""
7715
  "automatically cancel the booking, when visitor makes a payment cancellation."
7716
  msgstr ""
7717
 
7718
- #: core/lib/wpbc_all_translations.php:1484 inc/gateways/ipay88/wpbc-gw-ipay88.php:660
7719
  msgid "Integration of iPay88 payment system"
7720
  msgstr ""
7721
 
7722
- #: core/lib/wpbc_all_translations.php:1485 inc/gateways/authorizenet/wpbc-gw-authorizenet.php:826
7723
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:751 inc/gateways/sage/wpbc-gw-sage.php:881
7724
  #: inc/gateways/stripe/wpbc-gw-stripe.php:896
7725
  #, php-format
@@ -7728,733 +7738,733 @@ msgid ""
7728
  "tab."
7729
  msgstr ""
7730
 
7731
- #: core/lib/wpbc_all_translations.php:1486 inc/gateways/page-gateways.php:65
7732
  msgid "for 1 day"
7733
  msgstr ""
7734
 
7735
- #: core/lib/wpbc_all_translations.php:1487 inc/gateways/page-gateways.php:66
7736
  msgid "for 1 night"
7737
  msgstr ""
7738
 
7739
- #: core/lib/wpbc_all_translations.php:1488 inc/gateways/page-gateways.php:67
7740
  msgid "fixed sum"
7741
  msgstr ""
7742
 
7743
- #: core/lib/wpbc_all_translations.php:1489 inc/gateways/page-gateways.php:68
7744
  msgid "for 1 hour"
7745
  msgstr ""
7746
 
7747
- #: core/lib/wpbc_all_translations.php:1490 inc/gateways/page-gateways.php:73
7748
  msgid "Set the cost"
7749
  msgstr ""
7750
 
7751
- #: core/lib/wpbc_all_translations.php:1491 inc/gateways/page-gateways.php:74
7752
  msgid " Select your cost configuration."
7753
  msgstr ""
7754
 
7755
- #: core/lib/wpbc_all_translations.php:1492 inc/gateways/page-gateways.php:82
7756
  msgid "Time impact to cost"
7757
  msgstr ""
7758
 
7759
- #: core/lib/wpbc_all_translations.php:1493 inc/gateways/page-gateways.php:83
7760
  #, php-format
7761
  msgid ""
7762
  "Check this box if you want the %stime selection%s on the booking form %sapplied to the cost "
7763
  "calculation%s."
7764
  msgstr ""
7765
 
7766
- #: core/lib/wpbc_all_translations.php:1494 inc/gateways/page-gateways.php:93
7767
  msgid ""
7768
  "Check this box if you want that specific additional cost, which configured as percentage for "
7769
  "some option, apply to other additional fixed costs and not only to original booking cost."
7770
  msgstr ""
7771
 
7772
- #: core/lib/wpbc_all_translations.php:1495 inc/gateways/page-gateways.php:174
7773
  #: inc/gateways/page-gateways.php:841
7774
  msgid "Currency"
7775
  msgstr ""
7776
 
7777
- #: core/lib/wpbc_all_translations.php:1496 inc/gateways/page-gateways.php:177
7778
  msgid ""
7779
  "This is default currency that showing at your website. Specific payment gateway(s) can support "
7780
  "or does not suport it."
7781
  msgstr ""
7782
 
7783
- #: core/lib/wpbc_all_translations.php:1497 inc/gateways/page-gateways.php:142
7784
  #: inc/gateways/page-gateways.php:180 inc/gateways/page-gateways.php:893
7785
  msgid "Important"
7786
  msgstr ""
7787
 
7788
- #: core/lib/wpbc_all_translations.php:1498 inc/gateways/page-gateways.php:180
7789
  msgid "Check and configure currency at each activated payment gateway."
7790
  msgstr ""
7791
 
7792
- #: core/lib/wpbc_all_translations.php:1499 inc/gateways/page-gateways.php:190
7793
  msgid "Currency Position"
7794
  msgstr ""
7795
 
7796
- #: core/lib/wpbc_all_translations.php:1500 inc/gateways/page-gateways.php:191
7797
  msgid "Set position of the currency symbol."
7798
  msgstr ""
7799
 
7800
- #: core/lib/wpbc_all_translations.php:1501 inc/gateways/page-gateways.php:194
7801
  msgid "Left"
7802
  msgstr ""
7803
 
7804
- #: core/lib/wpbc_all_translations.php:1502 inc/gateways/page-gateways.php:198
7805
  msgid "Right"
7806
  msgstr ""
7807
 
7808
- #: core/lib/wpbc_all_translations.php:1503 inc/gateways/page-gateways.php:202
7809
  msgid "Left with space"
7810
  msgstr ""
7811
 
7812
- #: core/lib/wpbc_all_translations.php:1504 inc/gateways/page-gateways.php:206
7813
  msgid "Right with space"
7814
  msgstr ""
7815
 
7816
- #: core/lib/wpbc_all_translations.php:1505 inc/gateways/page-gateways.php:225
7817
  msgid "Currency format"
7818
  msgstr ""
7819
 
7820
- #: core/lib/wpbc_all_translations.php:1506 inc/gateways/page-gateways.php:226
7821
  msgid "Number of decimal points"
7822
  msgstr ""
7823
 
7824
- #: core/lib/wpbc_all_translations.php:1507 inc/gateways/page-gateways.php:233
7825
  #: inc/gateways/page-gateways.php:248
7826
  msgid "No separator"
7827
  msgstr ""
7828
 
7829
- #: core/lib/wpbc_all_translations.php:1508 inc/gateways/page-gateways.php:234
7830
  #: inc/gateways/page-gateways.php:249
7831
  msgid "Space"
7832
  msgstr ""
7833
 
7834
- #: core/lib/wpbc_all_translations.php:1509 inc/gateways/page-gateways.php:235
7835
  #: inc/gateways/page-gateways.php:250
7836
  msgid "Dot"
7837
  msgstr ""
7838
 
7839
- #: core/lib/wpbc_all_translations.php:1510 inc/gateways/page-gateways.php:236
7840
  #: inc/gateways/page-gateways.php:251
7841
  msgid "Comma"
7842
  msgstr ""
7843
 
7844
- #: core/lib/wpbc_all_translations.php:1511 inc/gateways/page-gateways.php:241
7845
  msgid "Separator for the decimal point"
7846
  msgstr ""
7847
 
7848
- #: core/lib/wpbc_all_translations.php:1512 inc/gateways/page-gateways.php:256
7849
  msgid "Thousands separator"
7850
  msgstr ""
7851
 
7852
- #: core/lib/wpbc_all_translations.php:1513 inc/gateways/page-gateways.php:269
7853
  msgid "Please select"
7854
  msgstr ""
7855
 
7856
- #: core/lib/wpbc_all_translations.php:1514 inc/gateways/page-gateways.php:280
7857
  msgid ""
7858
  "Please select a field from your booking form. This field will be automatically assigned to the "
7859
  "current field in the billing form."
7860
  msgstr ""
7861
 
7862
- #: core/lib/wpbc_all_translations.php:1515 inc/gateways/page-gateways.php:292
7863
  msgid "Customer Email"
7864
  msgstr ""
7865
 
7866
- #: core/lib/wpbc_all_translations.php:1516 inc/gateways/page-gateways.php:300
7867
  msgid "First Name(s)"
7868
  msgstr ""
7869
 
7870
- #: core/lib/wpbc_all_translations.php:1517 inc/gateways/page-gateways.php:308
7871
  msgid "Last name"
7872
  msgstr ""
7873
 
7874
- #: core/lib/wpbc_all_translations.php:1518 inc/gateways/page-gateways.php:324
7875
  msgid "Billing Address"
7876
  msgstr ""
7877
 
7878
- #: core/lib/wpbc_all_translations.php:1519 inc/gateways/page-gateways.php:332
7879
  msgid "Billing City"
7880
  msgstr ""
7881
 
7882
- #: core/lib/wpbc_all_translations.php:1520 inc/gateways/page-gateways.php:349
7883
  msgid "Post Code"
7884
  msgstr ""
7885
 
7886
- #: core/lib/wpbc_all_translations.php:1521 inc/gateways/page-gateways.php:357
7887
  msgid "State"
7888
  msgstr ""
7889
 
7890
- #: core/lib/wpbc_all_translations.php:1522 inc/gateways/page-gateways.php:369
7891
  msgid "Show booking details in payment form"
7892
  msgstr ""
7893
 
7894
- #: core/lib/wpbc_all_translations.php:1523 inc/gateways/page-gateways.php:370
7895
  #, php-format
7896
  msgid ""
7897
  " Check this checkbox if you want to show the %sbooking details summary%s above the payment form"
7898
  msgstr ""
7899
 
7900
- #: core/lib/wpbc_all_translations.php:1524 inc/gateways/page-gateways.php:381
7901
  msgid "Configure booking details summary above the payment form"
7902
  msgstr ""
7903
 
7904
- #: core/lib/wpbc_all_translations.php:1525 inc/gateways/page-gateways.php:493
7905
  msgid "Payments"
7906
  msgstr ""
7907
 
7908
- #: core/lib/wpbc_all_translations.php:1526 inc/gateways/page-gateways.php:494
7909
  msgid "Customizaton of Payment"
7910
  msgstr ""
7911
 
7912
- #: core/lib/wpbc_all_translations.php:1527 inc/gateways/page-gateways.php:495
7913
  msgid "Payment Gateways"
7914
  msgstr ""
7915
 
7916
- #: core/lib/wpbc_all_translations.php:1528 inc/gateways/page-gateways.php:511
7917
  #: inc/gateways/page-gateways.php:581 inc/gateways/page-gateways.php:608
7918
  msgid "Payment Settings"
7919
  msgstr ""
7920
 
7921
- #: core/lib/wpbc_all_translations.php:1529 inc/gateways/page-gateways.php:512
7922
  msgid "Payment Gateways - General Settings"
7923
  msgstr ""
7924
 
7925
- #: core/lib/wpbc_all_translations.php:1530 inc/gateways/page-gateways.php:579
7926
  #: inc/gateways/page-gateways.php:603
7927
  msgid "Active Payment Gateways"
7928
  msgstr ""
7929
 
7930
- #: core/lib/wpbc_all_translations.php:1531 inc/gateways/page-gateways.php:580
7931
  #: inc/gateways/page-gateways.php:624
7932
  msgid "Billing form fields"
7933
  msgstr ""
7934
 
7935
- #: core/lib/wpbc_all_translations.php:1532 inc/gateways/page-gateways.php:583
7936
  #: inc/gateways/page-gateways.php:638
7937
  msgid "Payment Description"
7938
  msgstr ""
7939
 
7940
- #: core/lib/wpbc_all_translations.php:1533 inc/gateways/page-gateways.php:839
7941
  msgid "Gateway"
7942
  msgstr ""
7943
 
7944
- #: core/lib/wpbc_all_translations.php:1534 inc/gateways/page-gateways.php:889
7945
  #, php-format
7946
  msgid "Some currencies at payment gateways are different from main currency %s"
7947
  msgstr ""
7948
 
7949
- #: core/lib/wpbc_all_translations.php:1535 inc/gateways/page-gateways.php:893
7950
  #, php-format
7951
  msgid ""
7952
  "Interface of plugin is using %s currency. Specific payment gateway will use own currency in "
7953
  "payment form without currency exchange! Its can be reason of wrong cost."
7954
  msgstr ""
7955
 
7956
- #: core/lib/wpbc_all_translations.php:1536 inc/gateways/page-gateways.php:1042
7957
  msgid "ID of booking"
7958
  msgstr ""
7959
 
7960
- #: core/lib/wpbc_all_translations.php:1537 inc/gateways/page-gateways.php:1043
7961
  msgid "ID of booking resources"
7962
  msgstr ""
7963
 
7964
- #: core/lib/wpbc_all_translations.php:1538 inc/gateways/page-gateways.php:1049
7965
  msgid "current date"
7966
  msgstr ""
7967
 
7968
- #: core/lib/wpbc_all_translations.php:1539 inc/gateways/page-gateways.php:1050
7969
  msgid "current time"
7970
  msgstr ""
7971
 
7972
- #: core/lib/wpbc_all_translations.php:1540 inc/gateways/page-gateways.php:1056
7973
  msgid "content data of this booking"
7974
  msgstr ""
7975
 
7976
- #: core/lib/wpbc_all_translations.php:1541 inc/gateways/page-gateways.php:1057
7977
  #: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:181
7978
  msgid "show amount to pay"
7979
  msgstr ""
7980
 
7981
- #: core/lib/wpbc_all_translations.php:1542 inc/gateways/page-gateways.php:1059
7982
  msgid "total booking cost"
7983
  msgstr ""
7984
 
7985
- #: core/lib/wpbc_all_translations.php:1543 inc/gateways/page-gateways.php:1060
7986
  msgid "deposit cost"
7987
  msgstr ""
7988
 
7989
- #: core/lib/wpbc_all_translations.php:1544 inc/gateways/page-gateways.php:1061
7990
  msgid "balance cost"
7991
  msgstr ""
7992
 
7993
- #: core/lib/wpbc_all_translations.php:1545 inc/gateways/page-gateways.php:1062
7994
  msgid "original booking cost"
7995
  msgstr ""
7996
 
7997
- #: core/lib/wpbc_all_translations.php:1546 inc/gateways/page-gateways.php:1063
7998
  msgid "additional booking cost"
7999
  msgstr ""
8000
 
8001
- #: core/lib/wpbc_all_translations.php:1547 inc/gateways/page-gateways.php:1410
8002
  msgid "Amount to pay"
8003
  msgstr ""
8004
 
8005
- #: core/lib/wpbc_all_translations.php:1548 inc/gateways/page-gateways.php:1444
8006
  #, php-format
8007
  msgid "Please make payment for your booking %s on %s For reference your booking ID: %s"
8008
  msgstr ""
8009
 
8010
- #: core/lib/wpbc_all_translations.php:1549 inc/gateways/pay_cash/wpbc-gw-pay_cash.php:204
8011
  #: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:282 inc/gateways/pay_cash/wpbc-gw-pay_cash.php:283
8012
  msgid "Pay in Cash"
8013
  msgstr ""
8014
 
8015
- #: core/lib/wpbc_all_translations.php:1550 inc/gateways/pay_cash/wpbc-gw-pay_cash.php:284
8016
  msgid "Integration of Pay in Cash payment system"
8017
  msgstr ""
8018
 
8019
- #: core/lib/wpbc_all_translations.php:1551 inc/gateways/pay_cash/wpbc-gw-pay_cash.php:362
8020
  #, php-format
8021
  msgid "If you accept %scash payment%s, you can write details about it here"
8022
  msgstr ""
8023
 
8024
- #: core/lib/wpbc_all_translations.php:1552 inc/gateways/pay_cash/wpbc-gw-pay_cash.php:523
8025
  #, php-format
8026
  msgid "Dear %sPay in cash %s for your booking %s on check in %sFor reference your booking ID: %s"
8027
  msgstr ""
8028
 
8029
- #: core/lib/wpbc_all_translations.php:1553 inc/gateways/paypal/ipn.php:120
8030
  msgid "Error IPN"
8031
  msgstr ""
8032
 
8033
- #: core/lib/wpbc_all_translations.php:1554 inc/gateways/paypal/ipn.php:234
8034
  msgid "Verified IPN"
8035
  msgstr ""
8036
 
8037
- #: core/lib/wpbc_all_translations.php:1555 inc/gateways/paypal/ipn.php:257
8038
  msgid "Invalid IPN"
8039
  msgstr ""
8040
 
8041
- #: core/lib/wpbc_all_translations.php:1556 inc/gateways/paypal/wpbc-gw-paypal.php:313
8042
  msgid "Make payments with payPal - its fast, free and secure!"
8043
  msgstr ""
8044
 
8045
- #: core/lib/wpbc_all_translations.php:1557 inc/gateways/paypal/wpbc-gw-paypal.php:352
8046
  #: inc/gateways/paypal/wpbc-gw-paypal.php:822
8047
  msgid "Paypal Standard"
8048
  msgstr ""
8049
 
8050
- #: core/lib/wpbc_all_translations.php:1558 inc/gateways/paypal/wpbc-gw-paypal.php:356
8051
  #: inc/gateways/paypal/wpbc-gw-paypal.php:822
8052
  msgid "Paypal Pro Hosted Solution"
8053
  msgstr ""
8054
 
8055
- #: core/lib/wpbc_all_translations.php:1559 inc/gateways/paypal/wpbc-gw-paypal.php:363
8056
  msgid "Account Type"
8057
  msgstr ""
8058
 
8059
- #: core/lib/wpbc_all_translations.php:1560 inc/gateways/paypal/wpbc-gw-paypal.php:375
8060
  msgid "Paypal Email address to receive payments"
8061
  msgstr ""
8062
 
8063
- #: core/lib/wpbc_all_translations.php:1561 inc/gateways/paypal/wpbc-gw-paypal.php:377
8064
  msgid "This is the Paypal Email address where payments will be sent"
8065
  msgstr ""
8066
 
8067
- #: core/lib/wpbc_all_translations.php:1562 inc/gateways/paypal/wpbc-gw-paypal.php:391
8068
  msgid "Secure Merchant ID"
8069
  msgstr ""
8070
 
8071
- #: core/lib/wpbc_all_translations.php:1563 inc/gateways/paypal/wpbc-gw-paypal.php:393
8072
  msgid "This is the Secure Merchant ID, which can be found on the profile page"
8073
  msgstr ""
8074
 
8075
- #: core/lib/wpbc_all_translations.php:1564 inc/gateways/paypal/wpbc-gw-paypal.php:408
8076
  msgid ""
8077
  " Indicates whether the transaction is payment on a final sale or an authorization for a final "
8078
  "sale, to be captured later. "
8079
  msgstr ""
8080
 
8081
- #: core/lib/wpbc_all_translations.php:1565 inc/gateways/paypal/wpbc-gw-paypal.php:412
8082
  msgid "Sale"
8083
  msgstr ""
8084
 
8085
- #: core/lib/wpbc_all_translations.php:1566 inc/gateways/paypal/wpbc-gw-paypal.php:413
8086
  msgid "Authorization"
8087
  msgstr ""
8088
 
8089
- #: core/lib/wpbc_all_translations.php:1567 inc/gateways/paypal/wpbc-gw-paypal.php:424
8090
  msgid " Select using test (Sandbox Test Environment) or live PayPal payment."
8091
  msgstr ""
8092
 
8093
- #: core/lib/wpbc_all_translations.php:1568 inc/gateways/paypal/wpbc-gw-paypal.php:430
8094
  msgid "Sandbox"
8095
  msgstr ""
8096
 
8097
- #: core/lib/wpbc_all_translations.php:1569 inc/gateways/paypal/wpbc-gw-paypal.php:440
8098
  msgid "British Pound"
8099
  msgstr ""
8100
 
8101
- #: core/lib/wpbc_all_translations.php:1570 inc/gateways/paypal/wpbc-gw-paypal.php:441
8102
  msgid "Japanese Yen"
8103
  msgstr ""
8104
 
8105
- #: core/lib/wpbc_all_translations.php:1571 inc/gateways/paypal/wpbc-gw-paypal.php:442
8106
  #: inc/gateways/sage/wpbc-gw-sage.php:455
8107
  msgid "Australian Dollars"
8108
  msgstr ""
8109
 
8110
- #: core/lib/wpbc_all_translations.php:1572 inc/gateways/paypal/wpbc-gw-paypal.php:444
8111
  #: inc/gateways/sage/wpbc-gw-sage.php:457
8112
  msgid "New Zealand Dollar"
8113
  msgstr ""
8114
 
8115
- #: core/lib/wpbc_all_translations.php:1573 inc/gateways/paypal/wpbc-gw-paypal.php:445
8116
  #: inc/gateways/sage/wpbc-gw-sage.php:458
8117
  msgid "Swiss Franc"
8118
  msgstr ""
8119
 
8120
- #: core/lib/wpbc_all_translations.php:1574 inc/gateways/paypal/wpbc-gw-paypal.php:446
8121
  #: inc/gateways/sage/wpbc-gw-sage.php:459
8122
  msgid "Hong Kong Dollar"
8123
  msgstr ""
8124
 
8125
- #: core/lib/wpbc_all_translations.php:1575 inc/gateways/paypal/wpbc-gw-paypal.php:447
8126
  #: inc/gateways/sage/wpbc-gw-sage.php:460
8127
  msgid "Singapore Dollar"
8128
  msgstr ""
8129
 
8130
- #: core/lib/wpbc_all_translations.php:1576 inc/gateways/paypal/wpbc-gw-paypal.php:448
8131
  #: inc/gateways/sage/wpbc-gw-sage.php:461
8132
  msgid "Swedish Krona"
8133
  msgstr ""
8134
 
8135
- #: core/lib/wpbc_all_translations.php:1577 inc/gateways/paypal/wpbc-gw-paypal.php:449
8136
  #: inc/gateways/sage/wpbc-gw-sage.php:462
8137
  msgid "Danish Krone"
8138
  msgstr ""
8139
 
8140
- #: core/lib/wpbc_all_translations.php:1578 inc/gateways/paypal/wpbc-gw-paypal.php:450
8141
  #: inc/gateways/sage/wpbc-gw-sage.php:463
8142
  msgid "Polish Zloty"
8143
  msgstr ""
8144
 
8145
- #: core/lib/wpbc_all_translations.php:1579 inc/gateways/paypal/wpbc-gw-paypal.php:451
8146
  #: inc/gateways/sage/wpbc-gw-sage.php:464
8147
  msgid "Norwegian Krone"
8148
  msgstr ""
8149
 
8150
- #: core/lib/wpbc_all_translations.php:1580 inc/gateways/paypal/wpbc-gw-paypal.php:452
8151
  #: inc/gateways/sage/wpbc-gw-sage.php:465
8152
  msgid "Hungarian Forint"
8153
  msgstr ""
8154
 
8155
- #: core/lib/wpbc_all_translations.php:1581 inc/gateways/paypal/wpbc-gw-paypal.php:453
8156
  #: inc/gateways/sage/wpbc-gw-sage.php:466
8157
  msgid "Czech Koruna"
8158
  msgstr ""
8159
 
8160
- #: core/lib/wpbc_all_translations.php:1582 inc/gateways/paypal/wpbc-gw-paypal.php:454
8161
  msgid "Israeli New Shekel"
8162
  msgstr ""
8163
 
8164
- #: core/lib/wpbc_all_translations.php:1583 inc/gateways/paypal/wpbc-gw-paypal.php:455
8165
  #: inc/gateways/sage/wpbc-gw-sage.php:468
8166
  msgid "Mexican Peso"
8167
  msgstr ""
8168
 
8169
- #: core/lib/wpbc_all_translations.php:1584 inc/gateways/paypal/wpbc-gw-paypal.php:456
8170
  #: inc/gateways/sage/wpbc-gw-sage.php:469
8171
  msgid "Brazilian Real (only for Brazilian users)"
8172
  msgstr ""
8173
 
8174
- #: core/lib/wpbc_all_translations.php:1585 inc/gateways/paypal/wpbc-gw-paypal.php:457
8175
  #: inc/gateways/sage/wpbc-gw-sage.php:470
8176
  msgid "Malaysian Ringgits (only for Malaysian users)"
8177
  msgstr ""
8178
 
8179
- #: core/lib/wpbc_all_translations.php:1586 inc/gateways/paypal/wpbc-gw-paypal.php:459
8180
  #: inc/gateways/sage/wpbc-gw-sage.php:472
8181
  msgid "Taiwan New Dollars"
8182
  msgstr ""
8183
 
8184
- #: core/lib/wpbc_all_translations.php:1587 inc/gateways/paypal/wpbc-gw-paypal.php:460
8185
  #: inc/gateways/sage/wpbc-gw-sage.php:473
8186
  msgid "Thai Baht"
8187
  msgstr ""
8188
 
8189
- #: core/lib/wpbc_all_translations.php:1588 inc/gateways/paypal/wpbc-gw-paypal.php:461
8190
  msgid "Turkish Lira (only for Turkish members)"
8191
  msgstr ""
8192
 
8193
- #: core/lib/wpbc_all_translations.php:1589 inc/gateways/paypal/wpbc-gw-paypal.php:480
8194
  msgid "Custom button title"
8195
  msgstr ""
8196
 
8197
- #: core/lib/wpbc_all_translations.php:1590 inc/gateways/paypal/wpbc-gw-paypal.php:487
8198
  msgid "Payment Button type"
8199
  msgstr ""
8200
 
8201
- #: core/lib/wpbc_all_translations.php:1591 inc/gateways/paypal/wpbc-gw-paypal.php:542
8202
  msgid "Show Reference Text Box"
8203
  msgstr ""
8204
 
8205
- #: core/lib/wpbc_all_translations.php:1592 inc/gateways/paypal/wpbc-gw-paypal.php:543
8206
  msgid "Check this box to show Reference Text Box"
8207
  msgstr ""
8208
 
8209
- #: core/lib/wpbc_all_translations.php:1593 inc/gateways/paypal/wpbc-gw-paypal.php:551
8210
  #: inc/gateways/paypal/wpbc-gw-paypal.php:552 inc/gateways/paypal/wpbc-gw-paypal.php:1331
8211
  msgid "Enter your phone number"
8212
  msgstr ""
8213
 
8214
- #: core/lib/wpbc_all_translations.php:1594 inc/gateways/paypal/wpbc-gw-paypal.php:553
8215
  msgid "Reference Text Box Title"
8216
  msgstr ""
8217
 
8218
- #: core/lib/wpbc_all_translations.php:1595 inc/gateways/paypal/wpbc-gw-paypal.php:554
8219
  msgid ""
8220
  "Enter a title for the Reference text box (i.e. Your email address). Visitors will see this text."
8221
  msgstr ""
8222
 
8223
- #: core/lib/wpbc_all_translations.php:1596 inc/gateways/paypal/wpbc-gw-paypal.php:575
8224
  msgid "Return URL from PayPal"
8225
  msgstr ""
8226
 
8227
- #: core/lib/wpbc_all_translations.php:1597 inc/gateways/paypal/wpbc-gw-paypal.php:606
8228
  msgid "Cancel Return URL from PayPal"
8229
  msgstr ""
8230
 
8231
- #: core/lib/wpbc_all_translations.php:1598 inc/gateways/paypal/wpbc-gw-paypal.php:657
8232
  #, php-format
8233
  msgid "To use this feature you %smust activate auto-return link%s at your Paypal account."
8234
  msgstr ""
8235
 
8236
- #: core/lib/wpbc_all_translations.php:1599 inc/gateways/paypal/wpbc-gw-paypal.php:658
8237
  msgid "Follow these steps to configure it:"
8238
  msgstr ""
8239
 
8240
- #: core/lib/wpbc_all_translations.php:1600 inc/gateways/paypal/wpbc-gw-paypal.php:660
8241
  msgid "Log in to your PayPal account."
8242
  msgstr ""
8243
 
8244
- #: core/lib/wpbc_all_translations.php:1601 inc/gateways/paypal/wpbc-gw-paypal.php:661
8245
  msgid "Click the Profile subtab."
8246
  msgstr ""
8247
 
8248
- #: core/lib/wpbc_all_translations.php:1602 inc/gateways/paypal/wpbc-gw-paypal.php:662
8249
  msgid "Click Website Payment Preferences in the Seller Preferences column."
8250
  msgstr ""
8251
 
8252
- #: core/lib/wpbc_all_translations.php:1603 inc/gateways/paypal/wpbc-gw-paypal.php:663
8253
  msgid "Under Auto Return for Website Payments, click the On radio button."
8254
  msgstr ""
8255
 
8256
- #: core/lib/wpbc_all_translations.php:1604 inc/gateways/paypal/wpbc-gw-paypal.php:664
8257
  msgid "For the Return URL, enter the Return URL from PayPal on your site for successfull payment."
8258
  msgstr ""
8259
 
8260
- #: core/lib/wpbc_all_translations.php:1605 inc/gateways/paypal/wpbc-gw-paypal.php:673
8261
  msgid ""
8262
  "Instant Payment Notification (IPN) is a message service that notifies you of events related to "
8263
  "PayPal transactions"
8264
  msgstr ""
8265
 
8266
- #: core/lib/wpbc_all_translations.php:1606 inc/gateways/paypal/wpbc-gw-paypal.php:682
8267
  msgid "Sending email for verified transaction"
8268
  msgstr ""
8269
 
8270
- #: core/lib/wpbc_all_translations.php:1607 inc/gateways/paypal/wpbc-gw-paypal.php:692
8271
  #, php-format
8272
  msgid "Email for getting report for %sverified%s transactions."
8273
  msgstr ""
8274
 
8275
- #: core/lib/wpbc_all_translations.php:1608 inc/gateways/paypal/wpbc-gw-paypal.php:705
8276
  msgid "Sending email for invalid transaction"
8277
  msgstr ""
8278
 
8279
- #: core/lib/wpbc_all_translations.php:1609 inc/gateways/paypal/wpbc-gw-paypal.php:715
8280
  #, php-format
8281
  msgid "Email for getting report for %sinvalid%s transactions."
8282
  msgstr ""
8283
 
8284
- #: core/lib/wpbc_all_translations.php:1610 inc/gateways/paypal/wpbc-gw-paypal.php:728
8285
  msgid "Sending email if error occur during verification"
8286
  msgstr ""
8287
 
8288
- #: core/lib/wpbc_all_translations.php:1611 inc/gateways/paypal/wpbc-gw-paypal.php:738
8289
  #, php-format
8290
  msgid "Email for getting report for %ssome errors in verification process%s."
8291
  msgstr ""
8292
 
8293
- #: core/lib/wpbc_all_translations.php:1612 inc/gateways/paypal/wpbc-gw-paypal.php:750
8294
  msgid "Use SSL connection"
8295
  msgstr ""
8296
 
8297
- #: core/lib/wpbc_all_translations.php:1613 inc/gateways/paypal/wpbc-gw-paypal.php:751
8298
  msgid "Use the SSL connection for posting data, instead of standard HTTP connection"
8299
  msgstr ""
8300
 
8301
- #: core/lib/wpbc_all_translations.php:1614 inc/gateways/paypal/wpbc-gw-paypal.php:758
8302
  msgid "Use cURL posting"
8303
  msgstr ""
8304
 
8305
- #: core/lib/wpbc_all_translations.php:1615 inc/gateways/paypal/wpbc-gw-paypal.php:759
8306
  msgid "Use the cURL for posting data, instead of fsockopen() function"
8307
  msgstr ""
8308
 
8309
- #: core/lib/wpbc_all_translations.php:1616 inc/gateways/paypal/wpbc-gw-paypal.php:775
8310
  msgid " Follow these instructions to set up your listener at your PayPal account:"
8311
  msgstr ""
8312
 
8313
- #: core/lib/wpbc_all_translations.php:1617 inc/gateways/paypal/wpbc-gw-paypal.php:777
8314
  msgid "Click Profile on the My Account tab."
8315
  msgstr ""
8316
 
8317
- #: core/lib/wpbc_all_translations.php:1618 inc/gateways/paypal/wpbc-gw-paypal.php:778
8318
  msgid "Click Instant Payment Notification Preferences in the Selling Preferences column."
8319
  msgstr ""
8320
 
8321
- #: core/lib/wpbc_all_translations.php:1619 inc/gateways/paypal/wpbc-gw-paypal.php:779
8322
  msgid "Click Choose IPN Settings to specify your listeners URL and activate the listener."
8323
  msgstr ""
8324
 
8325
- #: core/lib/wpbc_all_translations.php:1620 inc/gateways/paypal/wpbc-gw-paypal.php:780
8326
  msgid "Specify the URL for your listener in the Notification URL field as:"
8327
  msgstr ""
8328
 
8329
- #: core/lib/wpbc_all_translations.php:1621 inc/gateways/paypal/wpbc-gw-paypal.php:782
8330
  msgid "Click Receive IPN messages (Enabled) to enable your listener."
8331
  msgstr ""
8332
 
8333
- #: core/lib/wpbc_all_translations.php:1622 inc/gateways/paypal/wpbc-gw-paypal.php:783
8334
  msgid "Click Save."
8335
  msgstr ""
8336
 
8337
- #: core/lib/wpbc_all_translations.php:1623 inc/gateways/paypal/wpbc-gw-paypal.php:784
8338
  msgid "Click Back to Profile Summary to return to the Profile after activating your listener."
8339
  msgstr ""
8340
 
8341
- #: core/lib/wpbc_all_translations.php:1624 inc/gateways/paypal/wpbc-gw-paypal.php:946
8342
  msgid "PayPal"
8343
  msgstr ""
8344
 
8345
- #: core/lib/wpbc_all_translations.php:1625 inc/gateways/paypal/wpbc-gw-paypal.php:948
8346
  msgid "Integration of Paypal payment system"
8347
  msgstr ""
8348
 
8349
- #: core/lib/wpbc_all_translations.php:1626 inc/gateways/paypal/wpbc-gw-paypal.php:1069
8350
  msgid "PayPal IPN"
8351
  msgstr ""
8352
 
8353
- #: core/lib/wpbc_all_translations.php:1627 inc/gateways/sage/wpbc-gw-sage.php:355
8354
  #, php-format
8355
  msgid "Pay using %s payment service"
8356
  msgstr ""
8357
 
8358
- #: core/lib/wpbc_all_translations.php:1628 inc/gateways/sage/wpbc-gw-sage.php:395
8359
  msgid "Vendor Name"
8360
  msgstr ""
8361
 
8362
- #: core/lib/wpbc_all_translations.php:1629 inc/gateways/sage/wpbc-gw-sage.php:397
8363
  msgid "Set this value to the Vendor Name assigned to you by Sage Pay or chosen when you applied."
8364
  msgstr ""
8365
 
8366
- #: core/lib/wpbc_all_translations.php:1630 inc/gateways/sage/wpbc-gw-sage.php:410
8367
  msgid "XOR Encryption password"
8368
  msgstr ""
8369
 
8370
- #: core/lib/wpbc_all_translations.php:1631 inc/gateways/sage/wpbc-gw-sage.php:412
8371
  msgid "Set this value to the XOR Encryption password assigned to you by Sage Pay"
8372
  msgstr ""
8373
 
8374
- #: core/lib/wpbc_all_translations.php:1632 inc/gateways/ideal/wpbc-gw-ideal.php:420
8375
  #: inc/gateways/sage/wpbc-gw-sage.php:425
8376
  msgid "Select TEST for the Test Server and LIVE in the live environment"
8377
  msgstr ""
8378
 
8379
- #: core/lib/wpbc_all_translations.php:1633 inc/gateways/ideal/wpbc-gw-ideal.php:432
8380
  #: inc/gateways/sage/wpbc-gw-sage.php:429 inc/gateways/stripe/wpbc-gw-stripe.php:305
8381
  #: inc/gateways/stripe/wpbc-gw-stripe.php:348 inc/gateways/stripe/wpbc-gw-stripe.php:363
8382
  msgid "TEST"
8383
  msgstr ""
8384
 
8385
- #: core/lib/wpbc_all_translations.php:1634 inc/gateways/ideal/wpbc-gw-ideal.php:433
8386
  #: inc/gateways/sage/wpbc-gw-sage.php:430 inc/gateways/stripe/wpbc-gw-stripe.php:306
8387
  msgid "LIVE"
8388
  msgstr ""
8389
 
8390
- #: core/lib/wpbc_all_translations.php:1635 inc/gateways/sage/wpbc-gw-sage.php:439
8391
  msgid "This can be DEFERRED or AUTHENTICATED if your Sage Pay account supports those payment types"
8392
  msgstr ""
8393
 
8394
- #: core/lib/wpbc_all_translations.php:1636 inc/gateways/sage/wpbc-gw-sage.php:443
8395
  msgid "PAYMENT"
8396
  msgstr ""
8397
 
8398
- #: core/lib/wpbc_all_translations.php:1637 inc/gateways/sage/wpbc-gw-sage.php:444
8399
  msgid "DEFERRED"
8400
  msgstr ""
8401
 
8402
- #: core/lib/wpbc_all_translations.php:1638 inc/gateways/sage/wpbc-gw-sage.php:445
8403
  msgid "AUTHENTICATE"
8404
  msgstr ""
8405
 
8406
- #: core/lib/wpbc_all_translations.php:1639 inc/gateways/sage/wpbc-gw-sage.php:454
8407
  msgid "Yen"
8408
  msgstr ""
8409
 
8410
- #: core/lib/wpbc_all_translations.php:1640 inc/gateways/sage/wpbc-gw-sage.php:467
8411
  msgid "Israeli Shekel"
8412
  msgstr ""
8413
 
8414
- #: core/lib/wpbc_all_translations.php:1641 inc/gateways/sage/wpbc-gw-sage.php:780
8415
  msgid "Sage"
8416
  msgstr ""
8417
 
8418
- #: core/lib/wpbc_all_translations.php:1642 inc/gateways/sage/wpbc-gw-sage.php:782
8419
  msgid "Integration of Sage payment system"
8420
  msgstr ""
8421
 
8422
- #: core/lib/wpbc_all_translations.php:1643 inc/gateways/sage/wpbc-gw-sage.php:874
8423
  #: inc/gateways/stripe/wpbc-gw-stripe.php:889
8424
  #, php-format
8425
  msgid "If you have no account on this system, please visit %s to create one."
8426
  msgstr ""
8427
 
8428
- #: core/lib/wpbc_all_translations.php:1644 inc/gateways/wpbc-response.php:133
8429
  msgid "Payment rejected"
8430
  msgstr ""
8431
 
8432
- #: core/lib/wpbc_all_translations.php:1645 inc/gateways/ideal/wpbc-gw-ideal.php:388
8433
  msgid "Merchant ID"
8434
  msgstr ""
8435
 
8436
- #: core/lib/wpbc_all_translations.php:1646 inc/gateways/ideal/wpbc-gw-ideal.php:390
8437
  msgid "Enter your iDEAL Merchant ID"
8438
  msgstr ""
8439
 
8440
- #: core/lib/wpbc_all_translations.php:1647 inc/gateways/ideal/wpbc-gw-ideal.php:405
8441
  msgid "Enter your iDEAL Merchant Key."
8442
  msgstr ""
8443
 
8444
- #: core/lib/wpbc_all_translations.php:1648 inc/gateways/ideal/wpbc-gw-ideal.php:423
8445
  #, php-format
8446
  msgid "Test mode requires the option %s to be selected in the %s account configuration section %s"
8447
  msgstr ""
8448
 
8449
- #: core/lib/wpbc_all_translations.php:1649 inc/gateways/ideal/wpbc-gw-ideal.php:424
8450
  msgid "Test with Simulator"
8451
  msgstr ""
8452
 
8453
- #: core/lib/wpbc_all_translations.php:1650 inc/gateways/ideal/wpbc-gw-ideal.php:426
8454
  msgid "My Profile – Connection"
8455
  msgstr ""
8456
 
8457
- #: core/lib/wpbc_all_translations.php:1651 inc/gateways/ideal/wpbc-gw-ideal.php:482
8458
  #, php-format
8459
  msgid ""
8460
  "If not supplied then the description as configured in the administration/management portal "
@@ -8462,284 +8472,285 @@ msgid ""
8462
  "be applied."
8463
  msgstr ""
8464
 
8465
- #: core/lib/wpbc_all_translations.php:1652 inc/gateways/ideal/wpbc-gw-ideal.php:483
8466
  msgid "Always use Description"
8467
  msgstr ""
8468
 
8469
- #: core/lib/wpbc_all_translations.php:1653 inc/gateways/ideal/wpbc-gw-ideal.php:802
8470
  #: inc/gateways/stripe/wpbc-gw-stripe.php:771
8471
  #, php-format
8472
  msgid "Integration of %s payment system"
8473
  msgstr ""
8474
 
8475
- #: core/lib/wpbc_all_translations.php:1654 inc/gateways/ideal/wpbc-gw-ideal.php:893
8476
  #, php-format
8477
  msgid "Processing your %s payments through %s"
8478
  msgstr ""
8479
 
8480
- #: core/lib/wpbc_all_translations.php:1655 core/wpbc-emails.php:258
8481
  #, php-format
8482
  msgid "%s - inserting link for export booking to"
8483
  msgstr ""
8484
 
8485
- #: core/lib/wpbc_all_translations.php:1656 inc/_ps/admin/br-table-export-feeds.php:176
8486
  msgid ".ics Feed URL"
8487
  msgstr ""
8488
 
8489
- #: core/lib/wpbc_all_translations.php:1657 core/wpbc-emails.php:245 core/wpbc-emails.php:246
8490
  #: core/wpbc-emails.php:247 core/wpbc-emails.php:248 core/wpbc-emails.php:249
8491
  #: core/wpbc-emails.php:250 core/wpbc-emails.php:251
8492
  #, php-format
8493
  msgid "%s - inserting modification date of booking "
8494
  msgstr ""
8495
 
8496
- #: core/lib/wpbc_all_translations.php:1658 inc/_ps/form/class-wpbc-form-help.php:687
8497
  msgid "Coupon discount value of the booking."
8498
  msgstr ""
8499
 
8500
- #: core/lib/wpbc_all_translations.php:1659 inc/gateways/stripe/stripe-charge.php:381
8501
  msgid "Stripe. Ouch, something went wrong!"
8502
  msgstr ""
8503
 
8504
- #: core/lib/wpbc_all_translations.php:1660 inc/gateways/stripe/wpbc-gw-stripe.php:261
8505
  #, php-format
8506
  msgid "Please pay %s"
8507
  msgstr ""
8508
 
8509
- #: core/lib/wpbc_all_translations.php:1661 inc/gateways/stripe/wpbc-gw-stripe.php:300
8510
  msgid "Chose payment account"
8511
  msgstr ""
8512
 
8513
- #: core/lib/wpbc_all_translations.php:1662 inc/gateways/stripe/wpbc-gw-stripe.php:316
8514
  #: inc/gateways/stripe/wpbc-gw-stripe.php:348
8515
  msgid "Publishable key"
8516
  msgstr ""
8517
 
8518
- #: core/lib/wpbc_all_translations.php:1663 inc/gateways/stripe/wpbc-gw-stripe.php:331
8519
  #: inc/gateways/stripe/wpbc-gw-stripe.php:363
8520
  msgid "Secret key"
8521
  msgstr ""
8522
 
8523
- #: core/lib/wpbc_all_translations.php:1664 inc/gateways/stripe/wpbc-gw-stripe.php:535
8524
  msgid "For more information:"
8525
  msgstr ""
8526
 
8527
- #: core/lib/wpbc_all_translations.php:1665 inc/gateways/stripe/wpbc-gw-stripe.php:869
8528
  #, php-format
8529
  msgid "require PHP version %s or newer!"
8530
  msgstr ""
8531
 
8532
- #: core/lib/wpbc_all_translations.php:1666 inc/_bl/admin/page-search.php:133
8533
  #, php-format
8534
  msgid "%s - ID of booking resource, "
8535
  msgstr ""
8536
 
8537
- #: core/lib/wpbc_all_translations.php:1667 inc/_bl/admin/page-search.php:134
8538
  #, php-format
8539
  msgid "%s - ID of page with booking form, "
8540
  msgstr ""
8541
 
8542
- #: core/lib/wpbc_all_translations.php:1668 inc/_bs/admin/page-email-payment.php:698
8543
  msgid "Email with Payment Request which is sent to Visitor."
8544
  msgstr ""
8545
 
8546
- #: core/lib/wpbc_all_translations.php:1669 inc/_ps/admin/page-email-edit.php:558
8547
  msgid "Customization of email template, which is sent after modification of booking"
8548
  msgstr ""
8549
 
8550
- #: core/lib/wpbc_all_translations.php:1670 inc/_ps/admin/page-email-edit.php:694
8551
  msgid "Email is sent to Visitor after Editing of booking."
8552
  msgstr ""
8553
 
8554
- #: core/lib/wpbc_all_translations.php:1671 core/lib/wpdev-booking-class.php:690
8555
  msgid "Booking resource type is not defined. This can be, when at the URL is wrong booking hash."
8556
  msgstr ""
8557
 
8558
- #: core/lib/wpbc_all_translations.php:1672 core/lib/wpdev-booking-class.php:1004
8559
  msgid "My bookings"
8560
  msgstr ""
8561
 
8562
- #: core/lib/wpbc_all_translations.php:1673 core/wpbc-emails.php:265
8563
  #, php-format
8564
  msgid ""
8565
  "%s - inserting link to the page where visitor can see listing of own bookings, (possible to use "
8566
  "the %s parameter for setting different %s of this page. Example: %s )"
8567
  msgstr ""
8568
 
8569
- #: core/lib/wpbc_all_translations.php:1674 inc/_bl/admin/page-search.php:569
8570
  msgid "Inline Search Form Template"
8571
  msgstr ""
8572
 
8573
- #: core/lib/wpbc_all_translations.php:1675 inc/_bm/admin/api-settings-m.php:275
8574
  msgid "Show booking details in tooltip"
8575
  msgstr ""
8576
 
8577
- #: core/lib/wpbc_all_translations.php:1676 inc/_bm/admin/api-settings-m.php:276
8578
  #, php-format
8579
  msgid ""
8580
  "Check this box to display booking details with a tooltip, when mouse hovers over each day on the "
8581
  "calendar(s). %sIts works only for bookings for specific timeslot(s)!%s"
8582
  msgstr ""
8583
 
8584
- #: core/lib/wpbc_all_translations.php:1677 inc/_bm/admin/api-settings-m.php:284
8585
  msgid "Booking details"
8586
  msgstr ""
8587
 
8588
- #: core/lib/wpbc_all_translations.php:1678 inc/_bm/admin/api-settings-m.php:285
8589
  msgid "You can use the shortcodes from the bottom form of Settings Fields page."
8590
  msgstr ""
8591
 
8592
- #: core/lib/wpbc_all_translations.php:1679 inc/_bm/admin/api-settings-m.php:299
8593
  msgid "This option can impact to speed of page loading."
8594
  msgstr ""
8595
 
8596
- #: core/lib/wpbc_all_translations.php:1680 inc/_bm/admin/page-cost-advanced.php:680
8597
  msgid ""
8598
  "Use arithmetic expressions in cost configurations, including fields shortcodes and simple "
8599
  "mathematics operations"
8600
  msgstr ""
8601
 
8602
- #: core/lib/wpbc_all_translations.php:1681 inc/_bm/admin/page-cost-advanced.php:682
8603
  #, php-format
8604
  msgid "if selected %s"
8605
  msgstr ""
8606
 
8607
- #: core/lib/wpbc_all_translations.php:1682 inc/_bs/admin/api-settings-s.php:304
8608
  msgid "Set check out date as available"
8609
  msgstr ""
8610
 
8611
- #: core/lib/wpbc_all_translations.php:1683 inc/_bs/admin/api-settings-s.php:305
8612
  msgid "Check this option, to remove last selected day of saving to booking."
8613
  msgstr ""
8614
 
8615
- #: core/lib/wpbc_all_translations.php:1684 inc/_bs/admin/api-settings-s.php:489
8616
  msgid "Auto approve bookings during import"
8617
  msgstr ""
8618
 
8619
- #: core/lib/wpbc_all_translations.php:1685 inc/_bs/admin/api-settings-s.php:490
8620
  #, php-format
8621
  msgid ""
8622
  "Check this checkbox to activate auto approve of all bookings %sduring import from external "
8623
  "source(s)%s."
8624
  msgstr ""
8625
 
8626
- #: core/lib/wpbc_all_translations.php:1686 inc/_bs/admin/api-settings-s.php:497
8627
  msgid "Auto approve booking, if booking cost is zero"
8628
  msgstr ""
8629
 
8630
- #: core/lib/wpbc_all_translations.php:1687 inc/_bs/admin/api-settings-s.php:498
8631
  #, php-format
8632
  msgid "Check this checkbox to activate auto approve of booking, %swhen cost of booking is zero%s."
8633
  msgstr ""
8634
 
8635
- #: core/lib/wpbc_all_translations.php:1688 inc/_bs/admin/api-settings-s.php:505
8636
  msgid "Auto approve bookings after creation booking in admin panel"
8637
  msgstr ""
8638
 
8639
- #: core/lib/wpbc_all_translations.php:1689 inc/_bs/admin/api-settings-s.php:506
8640
  #, php-format
8641
  msgid ""
8642
  "Check this checkbox to activate auto approve of booking, %sif booking was made in admin panel%s."
8643
  msgstr ""
8644
 
8645
- #: core/lib/wpbc_all_translations.php:1690 inc/_mu/admin/api-settings-u.php:62
8646
  msgid "Activate custom booking forms for regular users"
8647
  msgstr ""
8648
 
8649
- #: core/lib/wpbc_all_translations.php:1691 inc/_mu/admin/api-settings-u.php:63
8650
  msgid "Check this box if you want to use multiple custom booking forms for activated regular users"
8651
  msgstr ""
8652
 
8653
- #: core/lib/wpbc_all_translations.php:1692 inc/_ps/admin/api-settings-p.php:108
8654
  msgid "Start / End time for Calendar Overview"
8655
  msgstr ""
8656
 
8657
- #: core/lib/wpbc_all_translations.php:1693 inc/_ps/admin/api-settings-p.php:156
8658
  #, php-format
8659
  msgid "Select start and end time showing for Calendar Overview in %sDay%s view mode"
8660
  msgstr ""
8661
 
8662
- #: core/lib/wpbc_all_translations.php:1694 inc/_ps/admin/api-settings-p.php:257
8663
  msgid "Show / hide notes"
8664
  msgstr ""
8665
 
8666
- #: core/lib/wpbc_all_translations.php:1695 inc/_ps/admin/api-settings-p.php:258
8667
  msgid "Check this box if you want to open notes section by default in Booking Listing page."
8668
  msgstr ""
8669
 
8670
- #: core/lib/wpbc_all_translations.php:1696 inc/_ps/admin/api-settings-p.php:295
 
8671
  msgid "URL of page for customer bookings listing"
8672
  msgstr ""
8673
 
8674
- #: core/lib/wpbc_all_translations.php:1697 inc/_ps/admin/api-settings-p.php:296
8675
  #, php-format
8676
  msgid ""
8677
  "Type URL for %svisitors%s to view own bookings. You must insert %s shortcode into this page."
8678
  msgstr ""
8679
 
8680
- #: core/lib/wpbc_all_translations.php:1698 inc/gateways/page-gateways.php:105
8681
  msgid "Do not show payment form, after submit booking form"
8682
  msgstr ""
8683
 
8684
- #: core/lib/wpbc_all_translations.php:1699 inc/gateways/page-gateways.php:106
8685
  msgid "Check this box if you want to show payment form only after sending payment request by email"
8686
  msgstr ""
8687
 
8688
- #: core/lib/wpbc_all_translations.php:1700 inc/gateways/page-gateways.php:115
8689
  msgid "Auto send payment request after creation booking in admin panel"
8690
  msgstr ""
8691
 
8692
- #: core/lib/wpbc_all_translations.php:1701 inc/gateways/page-gateways.php:116
8693
  msgid ""
8694
  "Check this box if you want automatically send payment request to visitor, if booking was made in "
8695
  "admin panel"
8696
  msgstr ""
8697
 
8698
- #: core/lib/wpbc_all_translations.php:1702 inc/gateways/page-gateways.php:129
8699
  msgid "Show deposit and total booking cost together"
8700
  msgstr ""
8701
 
8702
- #: core/lib/wpbc_all_translations.php:1703 inc/gateways/page-gateways.php:130
8703
  msgid ""
8704
  "Check this box if you want to show deposit amount and total booking cost, after submit of "
8705
  "booking."
8706
  msgstr ""
8707
 
8708
- #: core/lib/wpbc_all_translations.php:1704 inc/gateways/page-gateways.php:142
8709
  msgid ""
8710
  "Please note, at admin panel for booking will be saved deposit cost and notes about deposit, do "
8711
  "not depend from the visitor choice of this payment. You need to check each such payment manually!"
8712
  msgstr ""
8713
 
8714
- #: core/lib/wpbc_all_translations.php:1705 inc/gateways/page-gateways.php:153
8715
  msgid "Send email on cost changes"
8716
  msgstr ""
8717
 
8718
- #: core/lib/wpbc_all_translations.php:1706 inc/gateways/page-gateways.php:154
8719
  msgid ""
8720
  "Check this box if you want to send booking modification email, if cost of booking was edited in "
8721
  "booking listing page."
8722
  msgstr ""
8723
 
8724
- #: core/lib/wpbc_all_translations.php:1707 inc/gateways/page-gateways.php:582
8725
  #: inc/gateways/page-gateways.php:628
8726
  msgid "Payment Options"
8727
  msgstr ""
8728
 
8729
- #: core/lib/wpbc_all_translations.php:1708 core/wpbc-js.php:141
8730
  msgid "Times:"
8731
  msgstr ""
8732
 
8733
- #: core/lib/wpbc_all_translations.php:1709 inc/_bm/admin/page-cost-early-late-booking.php:74
8734
  msgid "Set Early / Late Booking"
8735
  msgstr ""
8736
 
8737
- #: core/lib/wpbc_all_translations.php:1710 inc/_bm/admin/page-cost-early-late-booking.php:139
8738
  #, php-format
8739
  msgid "%sEarly booking discount%s for booking resource"
8740
  msgstr ""
8741
 
8742
- #: core/lib/wpbc_all_translations.php:1711 inc/_bm/admin/page-cost-early-late-booking.php:157
8743
  #: inc/_bm/admin/page-cost-early-late-booking.php:166
8744
  #: inc/_bm/admin/page-cost-early-late-booking.php:185
8745
  #: inc/_bm/admin/page-cost-early-late-booking.php:358
@@ -8748,39 +8759,195 @@ msgstr ""
8748
  msgid "Discount"
8749
  msgstr ""
8750
 
8751
- #: core/lib/wpbc_all_translations.php:1712 inc/_bm/admin/page-cost-early-late-booking.php:223
8752
  #, php-format
8753
  msgid "Apply discount, only if difference between %stoday%s and %scheck in%s day %smore%s than"
8754
  msgstr ""
8755
 
8756
- #: core/lib/wpbc_all_translations.php:1713 inc/_bm/admin/page-cost-early-late-booking.php:276
8757
  #: inc/_bm/admin/page-cost-early-late-booking.php:476
8758
  #, php-format
8759
  msgid "Apply discount, only if %scheck in%s day inside of this %sseason filter%s"
8760
  msgstr ""
8761
 
8762
- #: core/lib/wpbc_all_translations.php:1714 inc/_bm/admin/page-cost-early-late-booking.php:340
8763
  #, php-format
8764
  msgid "%sLast minute booking discount%s for booking resource"
8765
  msgstr ""
8766
 
8767
- #: core/lib/wpbc_all_translations.php:1715 inc/_bm/admin/page-cost-early-late-booking.php:424
8768
  #, php-format
8769
  msgid "Apply discount, only if difference between %stoday%s and %scheck in%s day %sless%s than"
8770
  msgstr ""
8771
 
8772
- #: core/lib/wpbc_all_translations.php:1716 inc/_bm/admin/page-cost.php:222
8773
  msgid "Early / Late Booking"
8774
  msgstr ""
8775
 
8776
- #: core/lib/wpbc_all_translations.php:1717 inc/_bm/admin/page-cost.php:231
8777
  msgid "Set Early / Late Booking Amount"
8778
  msgstr ""
8779
 
8780
- #: core/lib/wpbc_all_translations.php:1718 inc/_bm/admin/page-cost.php:681
8781
  msgid "Set Early / Late booking discount"
8782
  msgstr ""
8783
 
8784
- #: core/lib/wpbc_all_translations.php:1719 inc/_bm/admin/page-cost.php:682
8785
  msgid "Early / Late"
8786
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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"
121
  msgid "Type of days selection in calendar"
122
  msgstr ""
123
 
124
+ #: core/admin/api-settings.php:162 core/lib/wpbc_all_translations.php:19
125
  msgid "Do not change background color for partially booked days"
126
  msgstr ""
127
 
128
+ #: core/admin/api-settings.php:163 core/lib/wpbc_all_translations.php:20
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 ""
145
 
146
+ #: core/admin/api-settings.php:187 core/lib/wpbc_all_translations.php:23
147
  msgid "Unavailable week days"
148
  msgstr ""
149
 
150
+ #: core/admin/api-settings.php:217 core/lib/wpbc_all_translations.php:24
151
  msgid "Check unavailable days in calendars. This option will overwrite all other settings."
152
  msgstr ""
153
 
154
+ #: core/admin/api-settings.php:235 core/lib/wpbc_all_translations.php:25
155
  msgid "Unavailable days from today"
156
  msgstr ""
157
 
158
+ #: core/admin/api-settings.php:236 core/lib/wpbc_all_translations.php:26
159
  msgid "Select number of unavailable days in calendar start from today."
160
  msgstr ""
161
 
162
+ #: core/admin/api-settings.php:275 core/lib/wpbc_all_translations.php:27 inc/_ps/lib_p.php:264
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
 
174
+ #: core/admin/api-settings.php:276 core/lib/wpbc_all_translations.php:29 inc/_ps/lib_p.php:260
175
  msgid ""
176
  "Check the box, if you want to use simple booking form customization from Free plugin version at "
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
  "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
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
 
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
453
  #: inc/_ps/wpbc-form-templates.php:111 inc/_ps/wpbc-print.php:85
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
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
  "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
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
  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
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 ""
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
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
  #: 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
 
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
  #: 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
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
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
  #: 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
  #: 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
  #: 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 ""
927
 
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
  #: 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 ""
949
  "Your reservation %s for: %s has been approved.%sYou can edit the booking on this page: %s Thank "
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"
957
  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
  #: 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
  #: 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
  #: 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
  #: 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
  #: 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
  #: 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
  #: 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
  #: 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
  #: 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
  #: 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
  #: 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
  #: 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
  #: 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
  #: 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
  #: 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
  #: 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
  #: 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
  #: 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
  #: 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
  #: 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
  #: 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
  #: 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
  #: 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"
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
  #: 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
  #: 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 ""
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 ""
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 ""
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
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 ""
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
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
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 ""
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"
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 ""
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 ""
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
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"
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
  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
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 ""
1409
  "You need to approve a new booking %s for: %s Person detail information:%s Currently a new "
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 ""
1439
  "Your reservation %s for: %s is processing now! We will send confirmation by email. %sYou can "
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 ""
1447
  "Your reservation %s for: %s is processing now! We will send confirmation by email. %s Thank you, "
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
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 ""
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
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
  "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
 
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
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
 
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
 
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 ""
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
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
  "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
  "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
  "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
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
  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
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
  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
  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
2367
  #: inc/_bm/admin/page-cost-early-late-booking.php:82 inc/_bm/admin/page-cost-rate.php:77
2368
  #: inc/_bm/admin/page-cost-valuation.php:103 inc/_bm/admin/page-seasons.php:826
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
  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 "
3393
  "failed. You can request the new update of your paid version at %1sthis page%2s."
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
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
  "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
  "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
  "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 ""
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
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 ""
4167
 
4168
+ #: core/lib/wpbc_all_translations.php:764 inc/_bl/admin/api-settings-l.php:110
 
 
 
 
 
 
 
 
4169
  #: inc/_bs/admin/api-settings-s.php:516
4170
  msgid "Auto-cancel bookings"
4171
  msgstr ""
4172
 
4173
+ #: core/lib/wpbc_all_translations.php:765 inc/_bl/admin/api-settings-l.php:111
4174
  #: inc/_bl/admin/api-settings-l.php:131
4175
  msgid ""
4176
  "Auto Cancel all pending bookings for the specific date(s), if some booking is approved for these "
4177
  "date(s)"
4178
  msgstr ""
4179
 
4180
+ #: core/lib/wpbc_all_translations.php:766 inc/_bl/admin/api-settings-l.php:129
4181
  #: inc/_bl/admin/api-settings-l.php:289
4182
  msgid ""
4183
  "Warning!!! After you approved the specific booking(s), all your pending bookings of the same "
4185
  "approved booking, will be automatically canceled!"
4186
  msgstr ""
4187
 
4188
+ #: core/lib/wpbc_all_translations.php:767 inc/_bl/admin/api-settings-l.php:160
4189
  msgid "Set capacity based on number of visitors"
4190
  msgstr ""
4191
 
4192
+ #: core/lib/wpbc_all_translations.php:768 inc/_bl/admin/api-settings-l.php:161
4193
  msgid ""
4194
  "Check this box if you want total availability (daily capacity) to depend on the number of "
4195
  "selected visitors."
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 ""
4203
 
4204
+ #: core/lib/wpbc_all_translations.php:770 inc/_bl/admin/api-settings-l.php:177
4205
  msgid ""
4206
  "Add tooltip on calendar(s) to show availability based on the number of available booking "
4207
  "resource items remaining for each day."
4208
  msgstr ""
4209
 
4210
+ #: core/lib/wpbc_all_translations.php:771 inc/_bl/admin/api-settings-l.php:180
4211
  #, php-format
4212
  msgid ""
4213
  "Be sure to match the maximum number of visitors for the %sone booking resource%s with the number "
4214
  "of visitors specified on the booking form."
4215
  msgstr ""
4216
 
4217
+ #: core/lib/wpbc_all_translations.php:772 inc/_bl/admin/api-settings-l.php:183
4218
  msgid ""
4219
  "Display tooltip on calendar(s) to show availability based on total (fixed) number of visitors "
4220
  "for the resource, which can be at free booking resource items."
4221
  msgstr ""
4222
 
4223
+ #: core/lib/wpbc_all_translations.php:773 inc/_bl/admin/api-settings-l.php:186
4224
  #, php-format
4225
  msgid ""
4226
  "Be sure to match the maximum number of visitors for %sall booking resources%s with the number of "
4227
  "visitors specified on the booking form."
4228
  msgstr ""
4229
 
4230
+ #: core/lib/wpbc_all_translations.php:774 inc/_bl/admin/api-settings-l.php:214
4231
  msgid "Disable bookings in different booking resources"
4232
  msgstr ""
4233
 
4234
+ #: core/lib/wpbc_all_translations.php:775 inc/_bl/admin/api-settings-l.php:215
4235
  msgid ""
4236
  "Check this box to dissable reservations, which can be stored in different booking resources."
4237
  msgstr ""
4238
 
4239
+ #: core/lib/wpbc_all_translations.php:776 inc/_bl/admin/api-settings-l.php:216
4240
  msgid ""
4241
  "When checked, all reserved days must be at same booking resource otherwise error message will "
4242
  "show."
4243
  msgstr ""
4244
 
4245
+ #: core/lib/wpbc_all_translations.php:777 inc/_bl/admin/api-settings-l.php:337
4246
  #: inc/_ps/p-toolbar.php:1173
4247
  msgid "Parent"
4248
  msgstr ""
4249
 
4250
+ #: core/lib/wpbc_all_translations.php:778 inc/_bl/admin/api-settings-l.php:343
4251
  #: inc/_ps/p-toolbar.php:1191
4252
  msgid "Priority"
4253
  msgstr ""
4254
 
4255
+ #: core/lib/wpbc_all_translations.php:779 inc/_bl/admin/api-settings-l.php:350
4256
  msgid "Max visitors"
4257
  msgstr ""
4258
 
4259
+ #: core/lib/wpbc_all_translations.php:780 inc/_bl/admin/api-settings-l.php:470
4260
  msgid "Single"
4261
  msgstr ""
4262
 
4263
+ #: core/lib/wpbc_all_translations.php:781 inc/_bl/admin/api-settings-l.php:472
4264
  msgid "Child"
4265
  msgstr ""
4266
 
4267
+ #: core/lib/wpbc_all_translations.php:782 inc/_bl/admin/page-coupons.php:46
4268
  msgid "Setting coupons for discount"
4269
  msgstr ""
4270
 
4271
+ #: core/lib/wpbc_all_translations.php:783 inc/_bl/admin/page-coupons.php:122
4272
  #: inc/_bm/m-toolbar.php:590 inc/_bm/m-toolbar.php:592
4273
  msgid "Create dates filter"
4274
  msgstr ""
4275
 
4276
+ #: core/lib/wpbc_all_translations.php:784 inc/_bl/admin/page-coupons.php:124
4277
  #: inc/_bl/admin/page-coupons.php:871
4278
  msgid "Add New Discount Coupon"
4279
  msgstr ""
4280
 
4281
+ #: core/lib/wpbc_all_translations.php:785 inc/_bl/admin/page-coupons.php:214
4282
  #: inc/_bm/admin/page-availability.php:238 inc/_bm/admin/page-cost.php:217
4283
  #: inc/_bm/admin/page-seasons.php:199 inc/_ps/admin/page-resources.php:187
4284
  msgid "Bulk Actions"
4285
  msgstr ""
4286
 
4287
+ #: core/lib/wpbc_all_translations.php:786 inc/_bl/admin/page-coupons.php:505
4288
  #: inc/_bl/admin/page-coupons.php:1170
4289
  msgid "Coupon Code"
4290
  msgstr ""
4291
 
4292
+ #: core/lib/wpbc_all_translations.php:787 inc/_bl/admin/page-coupons.php:511
4293
  #: inc/_bl/admin/page-coupons.php:1185 inc/_bl/admin/page-coupons.php:1192
4294
  msgid "Savings"
4295
  msgstr ""
4296
 
4297
+ #: core/lib/wpbc_all_translations.php:788 inc/_bl/admin/page-coupons.php:517
4298
  msgid "Minimum Cost"
4299
  msgstr ""
4300
 
4301
+ #: core/lib/wpbc_all_translations.php:789 inc/_bl/admin/page-coupons.php:524
4302
  msgid "Expiration"
4303
  msgstr ""
4304
 
4305
+ #: core/lib/wpbc_all_translations.php:790 inc/_bl/admin/page-coupons.php:533
4306
  msgid "Number of usage"
4307
  msgstr ""
4308
 
4309
+ #: core/lib/wpbc_all_translations.php:791 inc/_bl/admin/page-coupons.php:585
4310
  #: inc/_bm/admin/page-availability.php:571 inc/_bm/admin/page-availability.php:1056
4311
  #: inc/_bm/admin/page-cost-rate.php:256 inc/_bm/admin/page-cost-valuation.php:416
4312
  #: inc/_bm/admin/page-cost.php:632 inc/_bm/admin/page-seasons.php:565
4315
  msgid "Select Booking Resource"
4316
  msgstr ""
4317
 
4318
+ #: core/lib/wpbc_all_translations.php:792 inc/_bl/admin/page-coupons.php:776
4319
  #: inc/_bl/admin/page-coupons.php:1396 inc/_ps/admin/api-settings-p.php:29
4320
  #: inc/_ps/p-toolbar.php:682
4321
  msgid "All resources"
4322
  msgstr ""
4323
 
4324
+ #: core/lib/wpbc_all_translations.php:793 inc/_bl/admin/page-coupons.php:993
4325
  #: inc/_ps/wpbc-form-templates.php:124 inc/_ps/wpbc-form-templates.php:196
4326
  msgid "Coupon"
4327
  msgstr ""
4328
 
4329
+ #: core/lib/wpbc_all_translations.php:794 inc/_bl/admin/page-coupons.php:1171
4330
  msgid "Enter coupon code."
4331
  msgstr ""
4332
 
4333
+ #: core/lib/wpbc_all_translations.php:795 inc/_bl/admin/page-coupons.php:1232
4334
  msgid "Enter number of fixed or percentage savings."
4335
  msgstr ""
4336
 
4337
+ #: core/lib/wpbc_all_translations.php:796 inc/_bl/admin/page-coupons.php:1235
4338
  msgid "Expiration Date"
4339
  msgstr ""
4340
 
4341
+ #: core/lib/wpbc_all_translations.php:797 inc/_bl/admin/page-coupons.php:1311
4342
  msgid "Select Expiration Date of the coupon."
4343
  msgstr ""
4344
 
4345
+ #: core/lib/wpbc_all_translations.php:798 inc/_bl/admin/page-coupons.php:1318
4346
  msgid "Minimum Booking Cost"
4347
  msgstr ""
4348
 
4349
+ #: core/lib/wpbc_all_translations.php:799 inc/_bl/admin/page-coupons.php:1319
4350
  msgid "Enter minimum booking cost, when coupon is applicable."
4351
  msgstr ""
4352
 
4353
+ #: core/lib/wpbc_all_translations.php:800 inc/_bl/admin/page-coupons.php:1336
4354
  msgid "Maximum number of usage"
4355
  msgstr ""
4356
 
4357
+ #: core/lib/wpbc_all_translations.php:801 inc/_bl/admin/page-coupons.php:1337
4358
  msgid "Enter maximum number of times, when coupon is applicable."
4359
  msgstr ""
4360
 
4361
+ #: core/lib/wpbc_all_translations.php:802 inc/_bl/admin/page-coupons.php:1360
4362
  msgid "Select booking resources, where is possible to apply this coupon code."
4363
  msgstr ""
4364
 
4365
+ #: core/lib/wpbc_all_translations.php:803 inc/_bl/admin/page-coupons.php:1378
4366
  #: inc/_bm/admin/page-seasons.php:1224 inc/_bm/admin/page-seasons.php:1442
4367
  #: inc/_ps/p-toolbar.php:1117
4368
  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
 
4377
+ #: core/lib/wpbc_all_translations.php:805 inc/_bl/admin/page-search.php:76
4378
  #, php-format
4379
  msgid "%s - search inside posts/pages which are part of this category, "
4380
  msgstr ""
4381
 
4382
+ #: core/lib/wpbc_all_translations.php:806 inc/_bl/admin/page-search.php:77
4383
  #, php-format
4384
  msgid "%s - search inside posts/pages which have this tag, "
4385
  msgstr ""
4386
 
4387
+ #: core/lib/wpbc_all_translations.php:807 inc/_bl/admin/page-search.php:78
4388
  #: inc/_bl/admin/page-search.php:130
4389
  #, php-format
4390
  msgid "%s - check-in date, "
4391
  msgstr ""
4392
 
4393
+ #: core/lib/wpbc_all_translations.php:808 inc/_bl/admin/page-search.php:79
4394
  #: inc/_bl/admin/page-search.php:131
4395
  #, php-format
4396
  msgid "%s - check-out date, "
4397
  msgstr ""
4398
 
4399
+ #: core/lib/wpbc_all_translations.php:809 inc/_bl/admin/page-search.php:80
4400
  #, php-format
4401
  msgid "%s - default selection number of visitors, "
4402
  msgstr ""
4403
 
4404
+ #: core/lib/wpbc_all_translations.php:810 inc/_bl/admin/page-search.php:81
4405
  #, php-format
4406
  msgid "Example: %s - custom number of visitor selections\""
4407
  msgstr ""
4408
 
4409
+ #: core/lib/wpbc_all_translations.php:811 inc/_bl/admin/page-search.php:83
4410
  #, php-format
4411
  msgid "%s - search button, "
4412
  msgstr ""
4413
 
4414
+ #: core/lib/wpbc_all_translations.php:812 inc/_bl/admin/page-search.php:84
4415
  #: inc/_bl/admin/page-search.php:136
4416
  msgid "HTML tags is accepted."
4417
  msgstr ""
4418
 
4419
+ #: core/lib/wpbc_all_translations.php:813 inc/_bl/admin/page-search.php:115
4420
  #, php-format
4421
  msgid "%s - resource title, "
4422
  msgstr ""
4423
 
4424
+ #: core/lib/wpbc_all_translations.php:814 inc/_bl/admin/page-search.php:116
4425
  #: inc/_bl/admin/page-search.php:117
4426
  #, php-format
4427
  msgid "%s - link to the page with booking form, "
4428
  msgstr ""
4429
 
4430
+ #: core/lib/wpbc_all_translations.php:815 inc/_bl/admin/page-search.php:118
4431
  #, php-format
4432
  msgid "%s - availability of booking resource, "
4433
  msgstr ""
4434
 
4435
+ #: core/lib/wpbc_all_translations.php:816 inc/_bl/admin/page-search.php:119
4436
  #, php-format
4437
  msgid "%s - maximum number of visitors for the booking resource, "
4438
  msgstr ""
4439
 
4440
+ #: core/lib/wpbc_all_translations.php:817 inc/_bl/admin/page-search.php:120
4441
  #, php-format
4442
  msgid "%s - cost of booking the resource, "
4443
  msgstr ""
4444
 
4445
+ #: core/lib/wpbc_all_translations.php:818 inc/_bl/admin/page-search.php:121
4446
  #, php-format
4447
  msgid "%s - featured image, taken from the featured image associated with the post, "
4448
  msgstr ""
4449
 
4450
+ #: core/lib/wpbc_all_translations.php:819 inc/_bl/admin/page-search.php:122
4451
  #, php-format
4452
  msgid "%s - booking info, taken from the excerpt associated with the post, "
4453
  msgstr ""
4454
 
4455
+ #: core/lib/wpbc_all_translations.php:820 inc/_bl/admin/page-search.php:124
4456
  #: inc/_ps/form/class-wpbc-form-help.php:677
4457
  msgid "Full cost of the booking."
4458
  msgstr ""
4459
 
4460
+ #: core/lib/wpbc_all_translations.php:821 inc/_bl/admin/page-search.php:125
4461
  #: inc/_ps/form/class-wpbc-form-help.php:679
4462
  msgid "Cost of the booking for the selected dates only."
4463
  msgstr ""
4464
 
4465
+ #: core/lib/wpbc_all_translations.php:822 inc/_bl/admin/page-search.php:126
4466
  #: inc/_ps/form/class-wpbc-form-help.php:681
4467
  msgid "Additional cost, which depends on the fields selection in the form."
4468
  msgstr ""
4469
 
4470
+ #: core/lib/wpbc_all_translations.php:823 inc/_bl/admin/page-search.php:127
4471
  #: inc/_ps/form/class-wpbc-form-help.php:683
4472
  msgid "The deposit cost of the booking."
4473
  msgstr ""
4474
 
4475
+ #: core/lib/wpbc_all_translations.php:824 inc/_bl/admin/page-search.php:128
4476
  #: inc/_ps/form/class-wpbc-form-help.php:685
4477
  msgid "Balance cost of the booking - difference between deposit and full cost."
4478
  msgstr ""
4479
 
4480
+ #: core/lib/wpbc_all_translations.php:825 inc/_bl/admin/page-search.php:143
4481
  msgid "hour(s)"
4482
  msgstr ""
4483
 
4484
+ #: core/lib/wpbc_all_translations.php:826 inc/_bl/admin/page-search.php:146
4485
  #: inc/_bm/admin/api-settings-m.php:74 inc/_bm/admin/api-settings-m.php:129
4486
  msgid "day(s)"
4487
  msgstr ""
4488
 
4489
+ #: core/lib/wpbc_all_translations.php:827 inc/_bl/admin/page-search.php:151
4490
  msgid "Cache expiration"
4491
  msgstr ""
4492
 
4493
+ #: core/lib/wpbc_all_translations.php:828 inc/_bl/admin/page-search.php:152
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
 
4537
+ #: core/lib/wpbc_all_translations.php:837
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
  "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
 
4613
+ #: core/lib/wpbc_all_translations.php:853 inc/_bl/wpdev-booking-search-widget.php:14
4614
  #: inc/_bl/wpdev-booking-search-widget.php:67
4615
  msgid "Search availability"
4616
  msgstr ""
4617
 
4618
+ #: core/lib/wpbc_all_translations.php:854 inc/_bl/wpdev-booking-search-widget.php:15
4619
  msgid "Search results."
4620
  msgstr ""
4621
 
4622
+ #: core/lib/wpbc_all_translations.php:855 inc/_bl/wpdev-booking-search-widget.php:16
4623
  msgid "Nothing found."
4624
  msgstr ""
4625
 
4626
+ #: core/lib/wpbc_all_translations.php:856 inc/_bl/wpdev-booking-search-widget.php:85
4627
  msgid "Title of search widget"
4628
  msgstr ""
4629
 
4630
+ #: core/lib/wpbc_all_translations.php:857 inc/_bl/wpdev-booking-search-widget.php:93
4631
  msgid "Title of search results"
4632
  msgstr ""
4633
 
4634
+ #: core/lib/wpbc_all_translations.php:858 inc/_bl/wpdev-booking-search-widget.php:98
4635
  #, php-format
4636
  msgid "Please type the %sTitle of search results%s."
4637
  msgstr ""
4638
 
4639
+ #: core/lib/wpbc_all_translations.php:859 inc/_bl/wpdev-booking-search-widget.php:102
4640
  msgid "Nothing found message"
4641
  msgstr ""
4642
 
4643
+ #: core/lib/wpbc_all_translations.php:860 inc/_bl/wpdev-booking-search-widget.php:107
4644
  #, php-format
4645
  msgid "Please type the %smessage ,what is showing, when nothing found%s."
4646
  msgstr ""
4647
 
4648
+ #: core/lib/wpbc_all_translations.php:861 inc/_bl/wpdev-booking-search-widget.php:111
4649
  msgid "URL of Search Results"
4650
  msgstr ""
4651
 
4652
+ #: core/lib/wpbc_all_translations.php:862 inc/_bl/wpdev-booking-search-widget.php:116
4653
  #, php-format
4654
  msgid ""
4655
  "Please type the URL of the page %s(with %s shortcode in content)%s, where search results will "
4656
  "show."
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
 
4669
+ #: core/lib/wpbc_all_translations.php:865 inc/_bm/admin/api-settings-m.php:35
4670
  msgid "Limit available days from today"
4671
  msgstr ""
4672
 
4673
+ #: core/lib/wpbc_all_translations.php:866 inc/_bm/admin/api-settings-m.php:36
4674
  msgid "Select number of available days in calendar start from today."
4675
  msgstr ""
4676
 
4677
+ #: core/lib/wpbc_all_translations.php:867 inc/_bm/admin/api-settings-m.php:85
4678
  msgid "Unavailable time before / after booking"
4679
  msgstr ""
4680
 
4681
+ #: core/lib/wpbc_all_translations.php:868 inc/_bm/admin/api-settings-m.php:87
4682
  msgid ""
4683
  "This feature is applying only for bookings for specific timeslots, or if activated check in/out "
4684
  "time option."
4685
  msgstr ""
4686
 
4687
+ #: core/lib/wpbc_all_translations.php:869 inc/_bm/admin/api-settings-m.php:110
4688
  #: inc/_bm/admin/api-settings-m.php:134
4689
  msgid "Before booking"
4690
  msgstr ""
4691
 
4692
+ #: core/lib/wpbc_all_translations.php:870 inc/_bm/admin/api-settings-m.php:111
4693
  #: inc/_bm/admin/api-settings-m.php:120 inc/_bm/admin/api-settings-m.php:135
4694
  #: inc/_bm/admin/api-settings-m.php:144
4695
  msgid "Select unavailable time interval."
4696
  msgstr ""
4697
 
4698
+ #: core/lib/wpbc_all_translations.php:871 inc/_bm/admin/api-settings-m.php:119
4699
  #: inc/_bm/admin/api-settings-m.php:143
4700
  msgid "After booking"
4701
  msgstr ""
4702
 
4703
+ #: core/lib/wpbc_all_translations.php:872 inc/_bm/admin/api-settings-m.php:170
4704
  msgid "Showing cost in date cell"
4705
  msgstr ""
4706
 
4707
+ #: core/lib/wpbc_all_translations.php:873 inc/_bm/admin/api-settings-m.php:171
4708
  #, php-format
4709
  msgid " Check this box to display the %sdaily cost at the date cells%s in the calendar(s)."
4710
  msgstr ""
4711
 
4712
+ #: core/lib/wpbc_all_translations.php:874 inc/_bm/admin/api-settings-m.php:188
4713
  msgid "Currency symbol"
4714
  msgstr ""
4715
 
4716
+ #: core/lib/wpbc_all_translations.php:875 inc/_bm/admin/api-settings-m.php:224
4717
  #, php-format
4718
  msgid ""
4719
  "Type your %scurrency symbol%s to display near daily cost in date cells. %sDocumentation on "
4720
  "currency symbols%s"
4721
  msgstr ""
4722
 
4723
+ #: core/lib/wpbc_all_translations.php:876 inc/_bm/admin/api-settings-m.php:237
4724
  msgid "Showing cost in tooltip"
4725
  msgstr ""
4726
 
4727
+ #: core/lib/wpbc_all_translations.php:877 inc/_bm/admin/api-settings-m.php:238
4728
  msgid ""
4729
  " Check this box to display the daily cost with a tooltip when mouse hovers over each day on the "
4730
  "calendar(s)."
4731
  msgstr ""
4732
 
4733
+ #: core/lib/wpbc_all_translations.php:878 inc/_bm/admin/api-settings-m.php:246
4734
  msgid "Cost Title"
4735
  msgstr ""
4736
 
4737
+ #: core/lib/wpbc_all_translations.php:879 inc/_bm/admin/api-settings-m.php:248
4738
  #, php-format
4739
  msgid "Type your %scost%s description"
4740
  msgstr ""
4741
 
4742
+ #: core/lib/wpbc_all_translations.php:880 inc/_bm/admin/api-settings-m.php:569
4743
  #: inc/_bm/m-toolbar.php:67 inc/_bm/m-toolbar.php:414
4744
  msgid "Custom Forms"
4745
  msgstr ""
4746
 
4747
+ #: core/lib/wpbc_all_translations.php:881 inc/_bm/admin/page-availability.php:48
4748
  msgid "Configuration of availability for booking resources"
4749
  msgstr ""
4750
 
4751
+ #: core/lib/wpbc_all_translations.php:882 inc/_bm/admin/page-availability.php:49
4752
  msgid "Availability Settings"
4753
  msgstr ""
4754
 
4755
+ #: core/lib/wpbc_all_translations.php:883 inc/_bm/admin/page-availability.php:143
4756
  #: inc/_bm/admin/page-cost.php:119 inc/_ps/p-toolbar.php:1146
4757
  msgid "Show Children Resources"
4758
  msgstr ""
4759
 
4760
+ #: core/lib/wpbc_all_translations.php:884 inc/_bm/admin/page-availability.php:145
4761
  #: inc/_bm/admin/page-cost.php:121 inc/_ps/p-toolbar.php:1148
4762
  msgid "Hide Children Resources"
4763
  msgstr ""
4764
 
4765
+ #: core/lib/wpbc_all_translations.php:885 inc/_bm/admin/page-availability.php:239
4766
  #: inc/_bm/admin/page-availability.php:244 inc/_bm/admin/page-availability.php:800
4767
  msgid "Set Availability"
4768
  msgstr ""
4769
 
4770
+ #: core/lib/wpbc_all_translations.php:886 inc/_bm/admin/page-availability.php:253
4771
  #: inc/_bm/admin/page-cost.php:238 inc/_ps/admin/page-resources.php:202
4772
  #, php-format
4773
  msgid ""
4775
  "booking(s) from this resource(s). Otherwise you will have %slost bookings%s."
4776
  msgstr ""
4777
 
4778
+ #: core/lib/wpbc_all_translations.php:887 inc/_bm/admin/page-availability.php:499
4779
  #: inc/_bm/admin/page-cost.php:565 inc/_ps/admin/page-resources.php:463
4780
  msgid "Resource Name"
4781
  msgstr ""
4782
 
4783
+ #: core/lib/wpbc_all_translations.php:888 inc/_bm/admin/page-availability.php:608
4784
  #: inc/_bm/admin/page-availability.php:895
4785
  msgid "All days"
4786
  msgstr ""
4787
 
4788
+ #: core/lib/wpbc_all_translations.php:889 inc/_bm/admin/page-availability.php:609
4789
  #: inc/_bm/admin/page-availability.php:637 inc/_bm/admin/page-availability.php:890
4790
  #: inc/_bm/admin/page-availability.php:904 inc/_bm/admin/page-availability.php:933
4791
  #: inc/_bm/admin/page-availability.php:1097 inc/_bm/admin/page-cost-rate.php:348
4792
  msgid "available"
4793
  msgstr ""
4794
 
4795
+ #: core/lib/wpbc_all_translations.php:890 inc/_bm/admin/page-availability.php:610
4796
  #: inc/_bm/admin/page-availability.php:638 inc/_bm/admin/page-availability.php:891
4797
  #: inc/_bm/admin/page-availability.php:900 inc/_bm/admin/page-availability.php:929
4798
  #: inc/_bm/admin/page-availability.php:1093 inc/_bm/admin/page-cost-rate.php:344
4799
  msgid "unavailable"
4800
  msgstr ""
4801
 
4802
+ #: core/lib/wpbc_all_translations.php:891 inc/_bm/admin/page-availability.php:635
4803
  #, php-format
4804
  msgid "and %s on seasons:"
4805
  msgstr ""
4806
 
4807
+ #: core/lib/wpbc_all_translations.php:892 inc/_bm/admin/page-availability.php:925
4808
  #, php-format
4809
  msgid "Select %s days by activating specific season filter below or %sadd new season filter%s"
4810
  msgstr ""
4811
 
4812
+ #: core/lib/wpbc_all_translations.php:893 inc/_bm/admin/page-availability.php:943
4813
  #: inc/_bm/admin/page-cost-deposit.php:309 inc/_bm/admin/page-cost-early-late-booking.php:314
4814
  #: inc/_bm/admin/page-cost-early-late-booking.php:514 inc/_bm/admin/page-cost-rate.php:119
4815
  #: inc/_bm/admin/page-cost-valuation.php:148
4816
  msgid "Hide season filters"
4817
  msgstr ""
4818
 
4819
+ #: core/lib/wpbc_all_translations.php:894 inc/_bm/admin/page-availability.php:948
4820
  #: inc/_bm/admin/page-cost-deposit.php:314 inc/_bm/admin/page-cost-early-late-booking.php:319
4821
  #: inc/_bm/admin/page-cost-early-late-booking.php:519 inc/_bm/admin/page-cost-rate.php:124
4822
  #: inc/_bm/admin/page-cost-valuation.php:153
4823
  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
 
4831
+ #: core/lib/wpbc_all_translations.php:896 inc/_bm/admin/page-cost-advanced.php:44
4832
  msgid "Customization of additional cost, which depend from form fields"
4833
  msgstr ""
4834
 
4835
+ #: core/lib/wpbc_all_translations.php:897 inc/_bm/admin/page-cost-advanced.php:45
4836
  msgid "Advanced Cost Settings"
4837
  msgstr ""
4838
 
4839
+ #: core/lib/wpbc_all_translations.php:898 inc/_bm/admin/page-cost-advanced.php:125
4840
  msgid "Configure additional cost, which depend from selection of selectbox(es) and checkbox(es)."
4841
  msgstr ""
4842
 
4843
+ #: core/lib/wpbc_all_translations.php:899 inc/_bm/admin/page-cost-advanced.php:127
4844
  #, php-format
4845
  msgid ""
4846
  "Fields %s(selectbox(es) and checkbox(es))%s are shown here automatically if they exist in the "
4847
  "%sbooking form%s."
4848
  msgstr ""
4849
 
4850
+ #: core/lib/wpbc_all_translations.php:900 inc/_bm/admin/page-cost-advanced.php:441
4851
  #: inc/_bm/admin/page-cost-deposit.php:181
4852
  msgid "Deposit type"
4853
  msgstr ""
4854
 
4855
+ #: core/lib/wpbc_all_translations.php:901 inc/_bm/admin/page-cost-advanced.php:460
4856
  msgid "of total cost"
4857
  msgstr ""
4858
 
4859
+ #: core/lib/wpbc_all_translations.php:902 inc/_bm/admin/page-cost-advanced.php:462
4860
  #: inc/_bs/admin/api-settings-s.php:898
4861
  msgid "night"
4862
  msgstr ""
4863
 
4864
+ #: core/lib/wpbc_all_translations.php:903 inc/_bm/admin/page-cost-advanced.php:463
4865
  msgid "as additional sum"
4866
  msgstr ""
4867
 
4868
+ #: core/lib/wpbc_all_translations.php:904 inc/_bm/admin/page-cost-advanced.php:658
4869
  msgid "Enter additional cost in formats:"
4870
  msgstr ""
4871
 
4872
+ #: core/lib/wpbc_all_translations.php:905 inc/_bm/admin/page-cost-advanced.php:659
4873
  #, php-format
4874
  msgid ""
4875
  "For example, if the original cost of the booking is %s, then after applying additional costs the "
4876
  "total cost will be folowing"
4877
  msgstr ""
4878
 
4879
+ #: core/lib/wpbc_all_translations.php:906 inc/_bm/admin/page-cost-advanced.php:662
4880
  msgid "Enter fixed cost"
4881
  msgstr ""
4882
 
4883
+ #: core/lib/wpbc_all_translations.php:907 inc/_bm/admin/page-cost-advanced.php:662
4884
  #: inc/_bm/admin/page-cost-advanced.php:665 inc/_bm/admin/page-cost-advanced.php:671
4885
  #: inc/_bm/admin/page-cost-advanced.php:681
4886
  #, php-format
4887
  msgid "%s, then total cost will be %s"
4888
  msgstr ""
4889
 
4890
+ #: core/lib/wpbc_all_translations.php:908 inc/_bm/admin/page-cost-advanced.php:665
4891
  msgid "Enter percentage of the entire booking"
4892
  msgstr ""
4893
 
4894
+ #: core/lib/wpbc_all_translations.php:909 inc/_bm/admin/page-cost-advanced.php:668
4895
  msgid "Enter fixed amount for each selected day"
4896
  msgstr ""
4897
 
4898
+ #: core/lib/wpbc_all_translations.php:910 inc/_bm/admin/page-cost-advanced.php:668
4899
  #, php-format
4900
  msgid "%s, then total cost will be (if selected 3 days) %s"
4901
  msgstr ""
4902
 
4903
+ #: core/lib/wpbc_all_translations.php:911 inc/_bm/admin/page-cost-advanced.php:668
4904
  #: inc/_ps/form/class-wpbc-form-help.php:279 inc/_ps/form/class-wpbc-form-help.php:292
4905
  #: inc/_ps/form/class-wpbc-form-help.php:306 inc/_ps/form/class-wpbc-form-help.php:344
4906
  msgid "or"
4907
  msgstr ""
4908
 
4909
+ #: core/lib/wpbc_all_translations.php:912 inc/_bm/admin/page-cost-advanced.php:671
4910
  msgid "Enter percentage as additional sum, which is based only on original cost and not full sum"
4911
  msgstr ""
4912
 
4913
+ #: core/lib/wpbc_all_translations.php:913 inc/_bm/admin/page-cost-advanced.php:674
4914
  #: inc/_bm/admin/page-cost-advanced.php:686
4915
  #, php-format
4916
  msgid "Please check more info about configuration of this cost settings on this %spage%s."
4917
  msgstr ""
4918
 
4919
+ #: core/lib/wpbc_all_translations.php:914 inc/_bm/admin/page-cost-deposit.php:73
4920
  msgid "Set Deposit"
4921
  msgstr ""
4922
 
4923
+ #: core/lib/wpbc_all_translations.php:915 inc/_bm/admin/page-cost-deposit.php:135
4924
  msgid "deposit payment for booking resource"
4925
  msgstr ""
4926
 
4927
+ #: core/lib/wpbc_all_translations.php:916 inc/_bm/admin/page-cost-deposit.php:153
4928
  #: inc/_bm/admin/page-cost-deposit.php:162
4929
  msgid "Deposit amount"
4930
  msgstr ""
4931
 
4932
+ #: core/lib/wpbc_all_translations.php:917 inc/_bm/admin/page-cost-deposit.php:199
4933
  #: inc/_bm/admin/page-cost-early-late-booking.php:203
4934
  #: inc/_bm/admin/page-cost-early-late-booking.php:404
4935
  msgid "fixed total in"
4936
  msgstr ""
4937
 
4938
+ #: core/lib/wpbc_all_translations.php:918 inc/_bm/admin/page-cost-deposit.php:200
4939
  #: inc/_bm/admin/page-cost-early-late-booking.php:204
4940
  #: inc/_bm/admin/page-cost-early-late-booking.php:405
4941
  msgid "of payment"
4942
  msgstr ""
4943
 
4944
+ #: core/lib/wpbc_all_translations.php:919 inc/_bm/admin/page-cost-deposit.php:209
4945
  #: inc/_bm/admin/page-cost-early-late-booking.php:213
4946
  #: inc/_bm/admin/page-cost-early-late-booking.php:414
4947
  msgid "Conditions"
4948
  msgstr ""
4949
 
4950
+ #: core/lib/wpbc_all_translations.php:920 inc/_bm/admin/page-cost-deposit.php:219
4951
  #, php-format
4952
  msgid ""
4953
  "Show deposit payment form, only if difference between %sToday%s and %sCheck In%s days more than"
4954
  msgstr ""
4955
 
4956
+ #: core/lib/wpbc_all_translations.php:921 inc/_bm/admin/page-cost-deposit.php:271
4957
  #, php-format
4958
  msgid "Show deposit payment form, only if %sCheck In%s day inside of this %sSeason Filter%s"
4959
  msgstr ""
4960
 
4961
+ #: core/lib/wpbc_all_translations.php:922 inc/_bm/admin/page-cost-deposit.php:275
4962
  #: inc/_bm/admin/page-cost-early-late-booking.php:280
4963
  #: inc/_bm/admin/page-cost-early-late-booking.php:480 inc/_bm/admin/page-cost-valuation.php:542
4964
  msgid "Any days"
4965
  msgstr ""
4966
 
4967
+ #: core/lib/wpbc_all_translations.php:923 inc/_bm/admin/page-cost-deposit.php:342
4968
  msgid "Deposit payment total"
4969
  msgstr ""
4970
 
4971
+ #: core/lib/wpbc_all_translations.php:924 inc/_bm/admin/page-cost-rate.php:69
4972
  msgid "Set Rates"
4973
  msgstr ""
4974
 
4975
+ #: core/lib/wpbc_all_translations.php:925 inc/_bm/admin/page-cost-rate.php:163
4976
  #: inc/_bm/admin/page-cost.php:660 inc/_bm/admin/page-cost.php:661
4977
  msgid "Rates"
4978
  msgstr ""
4979
 
4980
+ #: core/lib/wpbc_all_translations.php:926 inc/_bm/admin/page-cost-rate.php:167
4981
  msgid "Seasonal price"
4982
  msgstr ""
4983
 
4984
+ #: core/lib/wpbc_all_translations.php:927 inc/_bm/admin/page-cost-rate.php:171
4985
  #: inc/_bm/admin/page-cost-valuation.php:198
4986
  msgid "Season"
4987
  msgstr ""
4988
 
4989
+ #: core/lib/wpbc_all_translations.php:928 inc/_bm/admin/page-cost-rate.php:215
4990
  #, php-format
4991
  msgid ""
4992
  "Enter seasonal rate(s) (cost diference in %s from standard cost %s or a fixed cost) of the "
4993
  "booking resource (%s) or %sAdd a new seasonal filter%s"
4994
  msgstr ""
4995
 
4996
+ #: core/lib/wpbc_all_translations.php:929 inc/_bm/admin/page-cost-valuation.php:96
4997
  #: inc/_bm/admin/page-cost.php:220 inc/_bm/admin/page-cost.php:229
4998
  msgid "Set Valuation Days"
4999
  msgstr ""
5000
 
5001
+ #: core/lib/wpbc_all_translations.php:930 inc/_bm/admin/page-cost-valuation.php:185
5002
  #: inc/_mu/admin/page-users.php:437
5003
  msgid "Status"
5004
  msgstr ""
5005
 
5006
+ #: core/lib/wpbc_all_translations.php:931 inc/_bm/admin/page-cost-valuation.php:194
5007
  msgid "Costs"
5008
  msgstr ""
5009
 
5010
+ #: core/lib/wpbc_all_translations.php:932 inc/_bm/admin/page-cost-valuation.php:249
5011
  msgid "Add new cost"
5012
  msgstr ""
5013
 
5014
+ #: core/lib/wpbc_all_translations.php:933 inc/_bm/admin/page-cost-valuation.php:272
5015
  #, php-format
5016
  msgid ""
5017
  "Cost setings at %stop have higher priority%s than other costs of same type at the %sbottom%s of "
5018
  "the list."
5019
  msgstr ""
5020
 
5021
+ #: core/lib/wpbc_all_translations.php:934 inc/_bm/admin/page-cost-valuation.php:275
5022
  #, php-format
5023
  msgid ""
5024
  "Please create all %s terms firstly %s(from higher priority to lower)%s, then terms %s and after "
5025
  "terms %s"
5026
  msgstr ""
5027
 
5028
+ #: core/lib/wpbc_all_translations.php:935 inc/_bm/admin/page-cost-valuation.php:275
5029
  #: inc/_bm/admin/page-cost-valuation.php:278 inc/_bm/admin/page-cost-valuation.php:450
5030
  msgid "Together"
5031
  msgstr ""
5032
 
5033
+ #: core/lib/wpbc_all_translations.php:936 inc/_bm/admin/page-cost-valuation.php:275
5034
  #: inc/_bm/admin/page-cost-valuation.php:278 inc/_bm/admin/page-cost-valuation.php:282
5035
  #: inc/_bm/admin/page-cost-valuation.php:284 inc/_bm/admin/page-cost-valuation.php:448
5036
  msgid "For"
5037
  msgstr ""
5038
 
5039
+ #: core/lib/wpbc_all_translations.php:937 inc/_bm/admin/page-cost-valuation.php:278
5040
  #, php-format
5041
  msgid "%s and %s terms have higher priority than a range %s days."
5042
  msgstr ""
5043
 
5044
+ #: core/lib/wpbc_all_translations.php:938 inc/_bm/admin/page-cost-valuation.php:282
5045
  #, php-format
5046
  msgid "%s - definition of check-out date."
5047
  msgstr ""
5048
 
5049
+ #: core/lib/wpbc_all_translations.php:939 inc/_bm/admin/page-cost-valuation.php:284
5050
  #: inc/_bs/admin/api-settings-s.php:199 inc/_bs/admin/api-settings-s.php:325
5051
  #: inc/_bs/admin/api-settings-s.php:338 inc/_ps/form/class-wpbc-form-help.php:532
5052
  #: inc/_ps/form/class-wpbc-form-help.php:535
5053
  msgid "Example"
5054
  msgstr ""
5055
 
5056
+ #: core/lib/wpbc_all_translations.php:940 inc/_bm/admin/page-cost-valuation.php:291
5057
  msgid ""
5058
  "Specific cost will take affect, only if it active (the box at the left side is checked) and if "
5059
  "\"Check In\" (start) date belong to selected season filter or if set \"Any days\"."
5060
  msgstr ""
5061
 
5062
+ #: core/lib/wpbc_all_translations.php:941 inc/_bm/admin/page-cost-valuation.php:335
5063
  #: inc/_bm/admin/page-cost-valuation.php:336 inc/_bm/biz_m.php:219 inc/_bm/biz_m.php:251
5064
  #: inc/_bm/biz_m.php:252
5065
  msgid " for all days!"
5066
  msgstr ""
5067
 
5068
+ #: core/lib/wpbc_all_translations.php:942 inc/_bm/admin/page-cost-valuation.php:341
5069
  #: inc/_bm/admin/page-cost-valuation.php:502 inc/_bm/biz_m.php:217 inc/_bm/biz_m.php:249
5070
  msgid "from the cost of 1 day "
5071
  msgstr ""
5072
 
5073
+ #: core/lib/wpbc_all_translations.php:943 inc/_bm/admin/page-cost-valuation.php:342
5074
  #: inc/_bm/admin/page-cost-valuation.php:503 inc/_bm/biz_m.php:216 inc/_bm/biz_m.php:248
5075
  msgid "per 1 day"
5076
  msgstr ""
5077
 
5078
+ #: core/lib/wpbc_all_translations.php:944 inc/_bm/admin/page-cost-valuation.php:470
5079
  #: inc/_bm/admin/page-seasons.php:1564
5080
  msgid "to"
5081
  msgstr ""
5082
 
5083
+ #: core/lib/wpbc_all_translations.php:945 inc/_bm/admin/page-cost-valuation.php:504
5084
  #: inc/_bm/biz_m.php:218 inc/_bm/biz_m.php:250
5085
  #, php-format
5086
  msgid "Additional cost in %s per 1 day"
5087
  msgstr ""
5088
 
5089
+ #: core/lib/wpbc_all_translations.php:946 inc/_bm/admin/page-cost.php:49
5090
  msgid "Customization of rates, valuation days cost and deposit amount "
5091
  msgstr ""
5092
 
5093
+ #: core/lib/wpbc_all_translations.php:947 inc/_bm/admin/page-cost.php:50
5094
  msgid "Costs and Rates Settings"
5095
  msgstr ""
5096
 
5097
+ #: core/lib/wpbc_all_translations.php:948 inc/_bm/admin/page-cost.php:219
5098
  #: inc/_bm/admin/page-cost.php:228
5099
  msgid "Set Rate"
5100
  msgstr ""
5101
 
5102
+ #: core/lib/wpbc_all_translations.php:949 inc/_bm/admin/page-cost.php:221
5103
  #: inc/_bm/admin/page-cost.php:230
5104
  msgid "Set Deposit Amount"
5105
  msgstr ""
5106
 
5107
+ #: core/lib/wpbc_all_translations.php:950 inc/_bm/admin/page-cost.php:667
5108
  #: inc/_bm/admin/page-cost.php:668
5109
  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
 
5117
+ #: core/lib/wpbc_all_translations.php:952 inc/_bm/admin/page-seasons.php:46
5118
  msgid "Customizaton of Season Filters"
5119
  msgstr ""
5120
 
5121
+ #: core/lib/wpbc_all_translations.php:953 inc/_bm/admin/page-seasons.php:680
5122
  #: inc/_bm/admin/page-seasons.php:815
5123
  msgid "Specific Dates Filter"
5124
  msgstr ""
5125
 
5126
+ #: core/lib/wpbc_all_translations.php:954 inc/_bm/admin/page-seasons.php:743
5127
  #: inc/_bm/admin/page-seasons.php:821
5128
  msgid "Conditional Dates Filter"
5129
  msgstr ""
5130
 
5131
+ #: core/lib/wpbc_all_translations.php:955 inc/_bm/admin/page-seasons.php:956
5132
  #: inc/_bm/admin/page-seasons.php:1257
5133
  msgid "Filter Name"
5134
  msgstr ""
5135
 
5136
+ #: core/lib/wpbc_all_translations.php:956 inc/_bm/admin/page-seasons.php:957
5137
  #: inc/_bm/admin/page-seasons.php:1258
5138
  msgid "Type filter name"
5139
  msgstr ""
5140
 
5141
+ #: core/lib/wpbc_all_translations.php:957 inc/_bm/admin/page-seasons.php:990
5142
  msgid "Weekdays"
5143
  msgstr ""
5144
 
5145
+ #: core/lib/wpbc_all_translations.php:958 inc/_bm/admin/page-seasons.php:1106
5146
  msgid "Months"
5147
  msgstr ""
5148
 
5149
+ #: core/lib/wpbc_all_translations.php:959 inc/_bm/admin/page-seasons.php:1108
5150
  #: inc/_bm/admin/page-seasons.php:1283
5151
  msgid "January"
5152
  msgstr ""
5153
 
5154
+ #: core/lib/wpbc_all_translations.php:960 inc/_bm/admin/page-seasons.php:1109
5155
  #: inc/_bm/admin/page-seasons.php:1284
5156
  msgid "February"
5157
  msgstr ""
5158
 
5159
+ #: core/lib/wpbc_all_translations.php:961 inc/_bm/admin/page-seasons.php:1110
5160
  #: inc/_bm/admin/page-seasons.php:1285
5161
  msgid "March"
5162
  msgstr ""
5163
 
5164
+ #: core/lib/wpbc_all_translations.php:962 inc/_bm/admin/page-seasons.php:1111
5165
  #: inc/_bm/admin/page-seasons.php:1286
5166
  msgid "April"
5167
  msgstr ""
5168
 
5169
+ #: core/lib/wpbc_all_translations.php:963 inc/_bm/admin/page-seasons.php:1112
5170
  #: inc/_bm/admin/page-seasons.php:1287 inc/_bm/admin/page-seasons.php:1490
5171
  msgid "May"
5172
  msgstr ""
5173
 
5174
+ #: core/lib/wpbc_all_translations.php:964 inc/_bm/admin/page-seasons.php:1113
5175
  #: inc/_bm/admin/page-seasons.php:1288
5176
  msgid "June"
5177
  msgstr ""
5178
 
5179
+ #: core/lib/wpbc_all_translations.php:965 inc/_bm/admin/page-seasons.php:1114
5180
  #: inc/_bm/admin/page-seasons.php:1289
5181
  msgid "July"
5182
  msgstr ""
5183
 
5184
+ #: core/lib/wpbc_all_translations.php:966 inc/_bm/admin/page-seasons.php:1115
5185
  #: inc/_bm/admin/page-seasons.php:1290
5186
  msgid "August"
5187
  msgstr ""
5188
 
5189
+ #: core/lib/wpbc_all_translations.php:967 inc/_bm/admin/page-seasons.php:1116
5190
  #: inc/_bm/admin/page-seasons.php:1291
5191
  msgid "September"
5192
  msgstr ""
5193
 
5194
+ #: core/lib/wpbc_all_translations.php:968 inc/_bm/admin/page-seasons.php:1117
5195
  #: inc/_bm/admin/page-seasons.php:1292
5196
  msgid "October"
5197
  msgstr ""
5198
 
5199
+ #: core/lib/wpbc_all_translations.php:969 inc/_bm/admin/page-seasons.php:1118
5200
  #: inc/_bm/admin/page-seasons.php:1293
5201
  msgid "November"
5202
  msgstr ""
5203
 
5204
+ #: core/lib/wpbc_all_translations.php:970 inc/_bm/admin/page-seasons.php:1119
5205
  #: inc/_bm/admin/page-seasons.php:1294
5206
  msgid "December"
5207
  msgstr ""
5208
 
5209
+ #: core/lib/wpbc_all_translations.php:971 inc/_bm/admin/page-seasons.php:1174
5210
  msgid "Years"
5211
  msgstr ""
5212
 
5213
+ #: core/lib/wpbc_all_translations.php:972 inc/_bm/admin/page-seasons.php:1272
5214
  #: inc/_bm/admin/page-seasons.php:1487
5215
  msgid "Mo"
5216
  msgstr ""
5217
 
5218
+ #: core/lib/wpbc_all_translations.php:973 inc/_bm/admin/page-seasons.php:1273
5219
  #: inc/_bm/admin/page-seasons.php:1487
5220
  msgid "Tu"
5221
  msgstr ""
5222
 
5223
+ #: core/lib/wpbc_all_translations.php:974 inc/_bm/admin/page-seasons.php:1274
5224
  #: inc/_bm/admin/page-seasons.php:1487
5225
  msgid "We"
5226
  msgstr ""
5227
 
5228
+ #: core/lib/wpbc_all_translations.php:975 inc/_bm/admin/page-seasons.php:1275
5229
  #: inc/_bm/admin/page-seasons.php:1487
5230
  msgid "Th"
5231
  msgstr ""
5232
 
5233
+ #: core/lib/wpbc_all_translations.php:976 inc/_bm/admin/page-seasons.php:1276
5234
  #: inc/_bm/admin/page-seasons.php:1487
5235
  msgid "Fr"
5236
  msgstr ""
5237
 
5238
+ #: core/lib/wpbc_all_translations.php:977 inc/_bm/admin/page-seasons.php:1277
5239
  #: inc/_bm/admin/page-seasons.php:1487
5240
  msgid "Sa"
5241
  msgstr ""
5242
 
5243
+ #: core/lib/wpbc_all_translations.php:978 inc/_bm/admin/page-seasons.php:1278
5244
  #: inc/_bm/admin/page-seasons.php:1487
5245
  msgid "Su"
5246
  msgstr ""
5247
 
5248
+ #: core/lib/wpbc_all_translations.php:979 inc/_bm/admin/page-seasons.php:1489
5249
  msgid "Jan"
5250
  msgstr ""
5251
 
5252
+ #: core/lib/wpbc_all_translations.php:980 inc/_bm/admin/page-seasons.php:1489
5253
  msgid "Feb"
5254
  msgstr ""
5255
 
5256
+ #: core/lib/wpbc_all_translations.php:981 inc/_bm/admin/page-seasons.php:1490
5257
  msgid "Mar"
5258
  msgstr ""
5259
 
5260
+ #: core/lib/wpbc_all_translations.php:982 inc/_bm/admin/page-seasons.php:1490
5261
  msgid "Apr"
5262
  msgstr ""
5263
 
5264
+ #: core/lib/wpbc_all_translations.php:983 inc/_bm/admin/page-seasons.php:1491
5265
  msgid "Jun"
5266
  msgstr ""
5267
 
5268
+ #: core/lib/wpbc_all_translations.php:984 inc/_bm/admin/page-seasons.php:1491
5269
  msgid "Jul"
5270
  msgstr ""
5271
 
5272
+ #: core/lib/wpbc_all_translations.php:985 inc/_bm/admin/page-seasons.php:1491
5273
  msgid "Aug"
5274
  msgstr ""
5275
 
5276
+ #: core/lib/wpbc_all_translations.php:986 inc/_bm/admin/page-seasons.php:1492
5277
  msgid "Sep"
5278
  msgstr ""
5279
 
5280
+ #: core/lib/wpbc_all_translations.php:987 inc/_bm/admin/page-seasons.php:1492
5281
  msgid "Oct"
5282
  msgstr ""
5283
 
5284
+ #: core/lib/wpbc_all_translations.php:988 inc/_bm/admin/page-seasons.php:1492
5285
  msgid "Nov"
5286
  msgstr ""
5287
 
5288
+ #: core/lib/wpbc_all_translations.php:989 inc/_bm/admin/page-seasons.php:1492
5289
  msgid "Dec"
5290
  msgstr ""
5291
 
5292
+ #: core/lib/wpbc_all_translations.php:990 inc/_bm/admin/page-seasons.php:1562
5293
  #: inc/_bm/admin/page-seasons.php:1580 inc/_bm/admin/page-seasons.php:1602
5294
  #: inc/_bm/admin/page-seasons.php:1626 inc/_bm/admin/page-seasons.php:1644
5295
  msgid "No days"
5296
  msgstr ""
5297
 
5298
+ #: core/lib/wpbc_all_translations.php:991 inc/_bm/admin/page-seasons.php:1564
5299
  msgid "time"
5300
  msgstr ""
5301
 
5302
+ #: core/lib/wpbc_all_translations.php:992 inc/_bm/admin/page-seasons.php:1582
5303
  msgid "Every"
5304
  msgstr ""
5305
 
5306
+ #: core/lib/wpbc_all_translations.php:993 inc/_bm/admin/page-seasons.php:1598
5307
  msgid "Each day "
5308
  msgstr ""
5309
 
5310
+ #: core/lib/wpbc_all_translations.php:994 inc/_bm/admin/page-seasons.php:1600
5311
  msgid "on each day "
5312
  msgstr ""
5313
 
5314
+ #: core/lib/wpbc_all_translations.php:995 inc/_bm/admin/page-seasons.php:1605
5315
  msgid "On each "
5316
  msgstr ""
5317
 
5318
+ #: core/lib/wpbc_all_translations.php:996 inc/_bm/admin/page-seasons.php:1607
5319
  msgid "on each "
5320
  msgstr ""
5321
 
5322
+ #: core/lib/wpbc_all_translations.php:997 inc/_bm/admin/page-seasons.php:1624
5323
  msgid "of every month "
5324
  msgstr ""
5325
 
5326
+ #: core/lib/wpbc_all_translations.php:998 inc/_bm/admin/page-seasons.php:1628
5327
  msgid "of"
5328
  msgstr ""
5329
 
5330
+ #: core/lib/wpbc_all_translations.php:999 inc/_bm/biz_m.php:220
5331
  msgid "for all days!"
5332
  msgstr ""
5333
 
5334
+ #: core/lib/wpbc_all_translations.php:1000 inc/_bm/biz_m.php:764
5335
  msgid "Standard booking resource cost"
5336
  msgstr ""
5337
 
5338
+ #: core/lib/wpbc_all_translations.php:1001 inc/_bm/biz_m.php:765
5339
  msgid "Total booking resource cost"
5340
  msgstr ""
5341
 
5342
+ #: core/lib/wpbc_all_translations.php:1002 inc/_bm/m-toolbar.php:288
5343
  msgid "Delete selected booking form"
5344
  msgstr ""
5345
 
5346
+ #: core/lib/wpbc_all_translations.php:1003 inc/_bm/m-toolbar.php:292
5347
  msgid "Do you really want to delete selected booking form ?"
5348
  msgstr ""
5349
 
5350
+ #: core/lib/wpbc_all_translations.php:1004 inc/_bm/m-toolbar.php:317 inc/_bm/m-toolbar.php:318
5351
  msgid "Add New Custom Form"
5352
  msgstr ""
5353
 
5354
+ #: core/lib/wpbc_all_translations.php:1005 inc/_bm/m-toolbar.php:351
5355
  msgid "Type the name of booking form"
5356
  msgstr ""
5357
 
5358
+ #: core/lib/wpbc_all_translations.php:1006 inc/_bm/m-toolbar.php:358
5359
  msgid "Create"
5360
  msgstr ""
5361
 
5362
+ #: core/lib/wpbc_all_translations.php:1007 inc/_bm/m-toolbar.php:359
5363
  msgid "Create new form"
5364
  msgstr ""
5365
 
5366
+ #: core/lib/wpbc_all_translations.php:1008 inc/_bm/m-toolbar.php:554
5367
  msgid "There are no extended booking forms"
5368
  msgstr ""
5369
 
5370
+ #: core/lib/wpbc_all_translations.php:1009 inc/_bm/m-toolbar.php:598 inc/_bm/m-toolbar.php:600
5371
  msgid "Create conditional days filter"
5372
  msgstr ""
5373
 
5374
+ #: core/lib/wpbc_all_translations.php:1010 inc/_bs/admin/activation-s.php:93
5375
  #: inc/_mu/admin/activation-u.php:85 inc/_ps/admin/activation-p.php:46
5376
  msgid "Apartment#1"
5377
  msgstr ""
5378
 
5379
+ #: core/lib/wpbc_all_translations.php:1011 inc/_bs/admin/activation-s.php:94
5380
  #: inc/_mu/admin/activation-u.php:86 inc/_ps/admin/activation-p.php:47
5381
  msgid "Apartment#2"
5382
  msgstr ""
5383
 
5384
+ #: core/lib/wpbc_all_translations.php:1012 inc/_bs/admin/activation-s.php:95
5385
  #: inc/_ps/admin/activation-p.php:48
5386
  msgid "Apartment#3"
5387
  msgstr ""
5388
 
5389
+ #: core/lib/wpbc_all_translations.php:1013 inc/_bs/admin/api-settings-s.php:31
5390
  msgid "Range days"
5391
  msgstr ""
5392
 
5393
+ #: core/lib/wpbc_all_translations.php:1014 inc/_bs/admin/api-settings-s.php:46
5394
  #, php-format
5395
  msgid "Select a %sFIXED%s number of days with %s1 mouse click%s"
5396
  msgstr ""
5397
 
5398
+ #: core/lib/wpbc_all_translations.php:1015 inc/_bs/admin/api-settings-s.php:48
5399
  #, php-format
5400
  msgid "Select a %sDYNAMIC%s range of days with %s2 mouse clicks%s"
5401
  msgstr ""
5402
 
5403
+ #: core/lib/wpbc_all_translations.php:1016 inc/_bs/admin/api-settings-s.php:74
5404
  #: inc/_bs/admin/api-settings-s.php:138
5405
  msgid "Days selection number"
5406
  msgstr ""
5407
 
5408
+ #: core/lib/wpbc_all_translations.php:1017 inc/_bs/admin/api-settings-s.php:75
5409
  #, php-format
5410
  msgid "Type your %snumber of days for range selection%s"
5411
  msgstr ""
5412
 
5413
+ #: core/lib/wpbc_all_translations.php:1018 inc/_bs/admin/api-settings-s.php:83
5414
  #: inc/_bs/admin/api-settings-s.php:211
5415
  msgid "Specific day(s) of week"
5416
  msgstr ""
5417
 
5418
+ #: core/lib/wpbc_all_translations.php:1019 inc/_bs/admin/api-settings-s.php:84
5419
  #: inc/_bs/admin/api-settings-s.php:215
5420
  msgid "Any day of week"
5421
  msgstr ""
5422
 
5423
+ #: core/lib/wpbc_all_translations.php:1020 inc/_bs/admin/api-settings-s.php:90
5424
  #: inc/_bs/admin/api-settings-s.php:223
5425
  msgid "Start day of range"
5426
  msgstr ""
5427
 
5428
+ #: core/lib/wpbc_all_translations.php:1021 inc/_bs/admin/api-settings-s.php:119
5429
  #: inc/_bs/admin/api-settings-s.php:252
5430
  msgid "Select your start day of range selection at week"
5431
  msgstr ""
5432
 
5433
+ #: core/lib/wpbc_all_translations.php:1022 inc/_bs/admin/api-settings-s.php:152
5434
  #: inc/_bs/admin/api-settings-s.php:157
5435
  msgid "Min"
5436
  msgstr ""
5437
 
5438
+ #: core/lib/wpbc_all_translations.php:1023 inc/_bs/admin/api-settings-s.php:170
5439
  #: inc/_bs/admin/api-settings-s.php:175
5440
  msgid "Max"
5441
  msgstr ""
5442
 
5443
+ #: core/lib/wpbc_all_translations.php:1024 inc/_bs/admin/api-settings-s.php:187
5444
  #, php-format
5445
  msgid "Select your %sminimum and maximum number of days for range selection%s"
5446
  msgstr ""
5447
 
5448
+ #: core/lib/wpbc_all_translations.php:1025 inc/_bs/admin/api-settings-s.php:198
5449
  msgid "Specific days selections"
5450
  msgstr ""
5451
 
5452
+ #: core/lib/wpbc_all_translations.php:1026 inc/_bs/admin/api-settings-s.php:200
5453
  #, php-format
5454
  msgid ""
5455
  "Type your %sspecific%s days, which can be selected by visitors, or leave this value empty. It "
5457
  "this: %s) or combination (example:%s, its the same like this: %s)"
5458
  msgstr ""
5459
 
5460
+ #: core/lib/wpbc_all_translations.php:1027 inc/_bs/admin/api-settings-s.php:281
5461
  msgid "Use time selections as recurrent time slots"
5462
  msgstr ""
5463
 
5464
+ #: core/lib/wpbc_all_translations.php:1028 inc/_bs/admin/api-settings-s.php:282
5465
  msgid ""
5466
  "Check this box if you want to use recurrent time to reserve several days. This means that middle "
5467
  "days will be partially booked by actual times, otherwise the time in the booking form will be "
5468
  "used as check-in/check-out time for the first and last day of the reservation."
5469
  msgstr ""
5470
 
5471
+ #: core/lib/wpbc_all_translations.php:1029 inc/_bs/admin/api-settings-s.php:315
5472
  msgid "Check this option, to use check in/out time during booking process. "
5473
  msgstr ""
5474
 
5475
+ #: core/lib/wpbc_all_translations.php:1030 inc/_bs/admin/api-settings-s.php:316
5476
  #, php-format
5477
  msgid "%s Important!%s This will overwrite any times selection in your booking form."
5478
  msgstr ""
5479
 
5480
+ #: core/lib/wpbc_all_translations.php:1031 inc/_bs/admin/api-settings-s.php:323
5481
  msgid "Check-in time"
5482
  msgstr ""
5483
 
5484
+ #: core/lib/wpbc_all_translations.php:1032 inc/_bs/admin/api-settings-s.php:324
5485
  #, php-format
5486
  msgid "Type your %sCheck-in%s time of booking"
5487
  msgstr ""
5488
 
5489
+ #: core/lib/wpbc_all_translations.php:1033 inc/_bs/admin/api-settings-s.php:336
5490
  msgid "Check-Out time"
5491
  msgstr ""
5492
 
5493
+ #: core/lib/wpbc_all_translations.php:1034 inc/_bs/admin/api-settings-s.php:337
5494
  #, php-format
5495
  msgid "Type your %sCheck-Out%s time of booking"
5496
  msgstr ""
5497
 
5498
+ #: core/lib/wpbc_all_translations.php:1035 inc/_bs/admin/api-settings-s.php:351
5499
  msgid "Change over days as triangles"
5500
  msgstr ""
5501
 
5502
+ #: core/lib/wpbc_all_translations.php:1036 inc/_bs/admin/api-settings-s.php:352
5503
  msgid "Check this option, to show change over days as triangles. "
5504
  msgstr ""
5505
 
5506
+ #: core/lib/wpbc_all_translations.php:1037 inc/_bs/admin/api-settings-s.php:377
5507
  msgid "Title of booked timeslot(s)"
5508
  msgstr ""
5509
 
5510
+ #: core/lib/wpbc_all_translations.php:1038 inc/_bs/admin/api-settings-s.php:378
5511
  #, php-format
5512
  msgid "Type your %stitle%s, what will show in mouseover tooltip near booked timeslot(s)"
5513
  msgstr ""
5514
 
5515
+ #: core/lib/wpbc_all_translations.php:1039 inc/_bs/admin/api-settings-s.php:418
5516
  msgid "Time Format"
5517
  msgstr ""
5518
 
5519
+ #: core/lib/wpbc_all_translations.php:1040 inc/_bs/admin/api-settings-s.php:452
5520
  #, php-format
5521
  msgid ""
5522
  "Type your time format for emails and the booking table. %sDocumentation on time formatting%s"
5523
  msgstr ""
5524
 
5525
+ #: core/lib/wpbc_all_translations.php:1041 inc/_bs/admin/api-settings-s.php:478
5526
  msgid "Auto approve all new bookings"
5527
  msgstr ""
5528
 
5529
+ #: core/lib/wpbc_all_translations.php:1042 inc/_bs/admin/api-settings-s.php:479
5530
  #, php-format
5531
  msgid "Check this checkbox to %sactivate%s auto approve of all new pending bookings."
5532
  msgstr ""
5533
 
5534
+ #: core/lib/wpbc_all_translations.php:1043 inc/_bs/admin/api-settings-s.php:517
5535
  #, php-format
5536
  msgid "Check this box to %sactivate%s auto-cancellation for pending, unpaid bookings."
5537
  msgstr ""
5538
 
5539
+ #: core/lib/wpbc_all_translations.php:1044 inc/_bs/admin/api-settings-s.php:541
5540
  msgid "Cancel bookings older"
5541
  msgstr ""
5542
 
5543
+ #: core/lib/wpbc_all_translations.php:1045 inc/_bs/admin/api-settings-s.php:542
5544
  msgid "Cancel only pending, unpaid bookings, which are older than this selection."
5545
  msgstr ""
5546
 
5547
+ #: core/lib/wpbc_all_translations.php:1046 inc/_bs/admin/api-settings-s.php:550
5548
  msgid "Cancellation email sent"
5549
  msgstr ""
5550
 
5551
+ #: core/lib/wpbc_all_translations.php:1047 inc/_bs/admin/api-settings-s.php:551
5552
  #, php-format
5553
  msgid "Check this box to %ssend%s cancellation email for this resource."
5554
  msgstr ""
5555
 
5556
+ #: core/lib/wpbc_all_translations.php:1048 inc/_bs/admin/api-settings-s.php:559
5557
  #: inc/_bs/admin/api-settings-s.php:560
5558
  msgid "Reason for cancellation"
5559
  msgstr ""
5560
 
5561
+ #: core/lib/wpbc_all_translations.php:1049 inc/_bs/admin/api-settings-s.php:561
5562
  #, php-format
5563
  msgid "Type the reason for %scancellation%s for the email template."
5564
  msgstr ""
5565
 
5566
+ #: core/lib/wpbc_all_translations.php:1050 inc/_bs/admin/page-email-payment.php:560
5567
  msgid "Payment request"
5568
  msgstr ""
5569
 
5570
+ #: core/lib/wpbc_all_translations.php:1051 inc/_bs/admin/page-email-payment.php:562
5571
  msgid "Customization of email template, which is sending to Visitor after payment request"
5572
  msgstr ""
5573
 
5574
+ #: core/lib/wpbc_all_translations.php:1052
5575
  msgid "Email with Payment Request which is sending to Visitor."
5576
  msgstr ""
5577
 
5578
+ #: core/lib/wpbc_all_translations.php:1053 core/wpbc-js.php:136
5579
  msgid "Error! Please reset your check-in/check-out dates above."
5580
  msgstr ""
5581
 
5582
+ #: core/lib/wpbc_all_translations.php:1054 core/wpbc-js.php:137
5583
  msgid ""
5584
  "Start Time is invalid. The date or time may be booked, or already in the past! Please choose "
5585
  "another date or time."
5586
  msgstr ""
5587
 
5588
+ #: core/lib/wpbc_all_translations.php:1055 core/wpbc-js.php:138
5589
  msgid ""
5590
  "End Time is invalid. The date or time may be booked, or already in the past. The End Time may "
5591
  "also be earlier that the start time, if only 1 day was selected! Please choose another date or "
5592
  "time."
5593
  msgstr ""
5594
 
5595
+ #: core/lib/wpbc_all_translations.php:1056 core/wpbc-js.php:139 core/wpbc-js.php:140
5596
  msgid "The time(s) may be booked, or already in the past!"
5597
  msgstr ""
5598
 
5599
+ #: core/lib/wpbc_all_translations.php:1057 inc/_bs/biz_s.php:408
5600
  msgid "Cost saved successfully"
5601
  msgstr ""
5602
 
5603
+ #: core/lib/wpbc_all_translations.php:1058 inc/_bs/biz_s.php:415
5604
  msgid "Cost is not correct. It must be greater than 0"
5605
  msgstr ""
5606
 
5607
+ #: core/lib/wpbc_all_translations.php:1059 inc/_bs/biz_s.php:597
5608
  msgid "Request has been sent"
5609
  msgstr ""
5610
 
5611
+ #: core/lib/wpbc_all_translations.php:1060 inc/_bs/biz_s.php:604
5612
  msgid "Request has failed"
5613
  msgstr ""
5614
 
5615
+ #: core/lib/wpbc_all_translations.php:1061 inc/_bs/biz_s.php:635
5616
  msgid "The payment status is changed successfully"
5617
  msgstr ""
5618
 
5619
+ #: core/lib/wpbc_all_translations.php:1062 inc/_bs/biz_s.php:642
5620
  msgid "The changing of payment status is failed"
5621
  msgstr ""
5622
 
5623
+ #: core/lib/wpbc_all_translations.php:1063 inc/_bs/biz_s.php:1019
5624
  msgid "deposit"
5625
  msgstr ""
5626
 
5627
+ #: core/lib/wpbc_all_translations.php:1064 inc/_bs/biz_s.php:1020
5628
  msgid "Total cost"
5629
  msgstr ""
5630
 
5631
+ #: core/lib/wpbc_all_translations.php:1065 inc/_bs/biz_s.php:1021
5632
  msgid "balance"
5633
  msgstr ""
5634
 
5635
+ #: core/lib/wpbc_all_translations.php:1066 inc/_bs/lib_s.php:40 inc/_bs/lib_s.php:71
5636
  #: inc/_bs/s-toolbar.php:94
5637
  msgid "Payment status"
5638
  msgstr ""
5639
 
5640
+ #: core/lib/wpbc_all_translations.php:1067 inc/_bs/lib_s.php:44
5641
  msgid "Any Status"
5642
  msgstr ""
5643
 
5644
+ #: core/lib/wpbc_all_translations.php:1068 inc/_bs/lib_s.php:47
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
 
5657
+ #: core/lib/wpbc_all_translations.php:1071 inc/_bs/lib_s.php:139
5658
  msgid "min"
5659
  msgstr ""
5660
 
5661
+ #: core/lib/wpbc_all_translations.php:1072 inc/_bs/lib_s.php:139
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
 
5749
+ #: core/lib/wpbc_all_translations.php:1094 inc/_bs/s-toolbar.php:68
5750
  msgid "Send payment request to visitor"
5751
  msgstr ""
5752
 
5753
+ #: core/lib/wpbc_all_translations.php:1095 inc/_bs/s-toolbar.php:110 inc/_ps/p-toolbar.php:100
5754
  #: inc/_ps/p-toolbar.php:476
5755
  msgid "Print"
5756
  msgstr ""
5757
 
5758
+ #: core/lib/wpbc_all_translations.php:1096 inc/_bs/s-toolbar.php:136
5759
  msgid "Save cost"
5760
  msgstr ""
5761
 
5762
+ #: core/lib/wpbc_all_translations.php:1097 inc/_bs/s-toolbar.php:173
5763
  msgid "Change status"
5764
  msgstr ""
5765
 
5766
+ #: core/lib/wpbc_all_translations.php:1098 inc/_bs/s-toolbar.php:196
5767
  msgid "Send payment request to customer"
5768
  msgstr ""
5769
 
5770
+ #: core/lib/wpbc_all_translations.php:1099 inc/_bs/s-toolbar.php:200
5771
  #, php-format
5772
  msgid "Type your %sreason for payment%s request"
5773
  msgstr ""
5774
 
5775
+ #: core/lib/wpbc_all_translations.php:1100 inc/_bs/s-toolbar.php:208
5776
  msgid "Send Request"
5777
  msgstr ""
5778
 
5779
+ #: core/lib/wpbc_all_translations.php:1101 inc/_bs/s-toolbar.php:230
5780
  msgid "Auto-fill form"
5781
  msgstr ""
5782
 
5783
+ #: core/lib/wpbc_all_translations.php:1102 inc/_mu/admin/activation-u.php:84
5784
  msgid "Suite"
5785
  msgstr ""
5786
 
5787
+ #: core/lib/wpbc_all_translations.php:1103 inc/_mu/admin/api-settings-u.php:91
5788
  #: inc/_ps/admin/br-table-export-feeds.php:89 inc/_ps/admin/br-table-import-gcal-p.php:73
5789
  msgid "User"
5790
  msgstr ""
5791
 
5792
+ #: core/lib/wpbc_all_translations.php:1104 inc/_mu/admin/api-settings-u.php:437
5793
  #: inc/_mu/admin/page-users.php:254 inc/_mu/admin/page-users.php:595
5794
  #: inc/_mu/admin/page-users.php:599
5795
  msgid "Super Admin"
5796
  msgstr ""
5797
 
5798
+ #: core/lib/wpbc_all_translations.php:1105 inc/_mu/admin/api-settings-u.php:441
5799
  #: inc/_mu/admin/page-users.php:289 inc/_mu/admin/page-users.php:603
5800
  #: inc/_mu/admin/page-users.php:607
5801
  msgid "Regular User"
5802
  msgstr ""
5803
 
5804
+ #: core/lib/wpbc_all_translations.php:1106 inc/_mu/admin/api-settings-u.php:446
5805
  msgid "Inactive User"
5806
  msgstr ""
5807
 
5808
+ #: core/lib/wpbc_all_translations.php:1107 inc/_mu/admin/page-users.php:43
5809
  #: inc/_mu/admin/page-users.php:433
5810
  msgid "Users"
5811
  msgstr ""
5812
 
5813
+ #: core/lib/wpbc_all_translations.php:1108 inc/_mu/admin/page-users.php:44
5814
  msgid "Manage Users"
5815
  msgstr ""
5816
 
5817
+ #: core/lib/wpbc_all_translations.php:1109 inc/_mu/admin/page-users.php:45
5818
  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
 
5831
+ #: core/lib/wpbc_all_translations.php:1112 inc/_mu/admin/page-users.php:441
5832
  msgid "User Role"
5833
  msgstr ""
5834
 
5835
+ #: core/lib/wpbc_all_translations.php:1113 inc/_mu/admin/page-users.php:452
5836
  #: inc/_mu/admin/page-users.php:595 inc/_mu/admin/page-users.php:603
5837
  msgid "Set user as"
5838
  msgstr ""
5839
 
5840
+ #: core/lib/wpbc_all_translations.php:1114 inc/_mu/admin/page-users.php:548
5841
  msgid "Unlimited"
5842
  msgstr ""
5843
 
5844
+ #: core/lib/wpbc_all_translations.php:1115 inc/_mu/admin/page-users.php:560
5845
  #: inc/_mu/admin/page-users.php:568 inc/_mu/admin/page-users.php:574
5846
  #: inc/_mu/admin/page-users.php:581 inc/_mu/admin/page-users.php:594
5847
  #: inc/_mu/admin/page-users.php:602
5848
  msgid "Do you really want"
5849
  msgstr ""
5850
 
5851
+ #: core/lib/wpbc_all_translations.php:1116 inc/_mu/admin/page-users.php:561
5852
  msgid "make user active"
5853
  msgstr ""
5854
 
5855
+ #: core/lib/wpbc_all_translations.php:1117 inc/_mu/admin/page-users.php:565
5856
  msgid "Activate"
5857
  msgstr ""
5858
 
5859
+ #: core/lib/wpbc_all_translations.php:1118 inc/_mu/admin/page-users.php:569
5860
  msgid "make user inactive"
5861
  msgstr ""
5862
 
5863
+ #: core/lib/wpbc_all_translations.php:1119 inc/_mu/admin/page-users.php:572
5864
  msgid "Deactivate"
5865
  msgstr ""
5866
 
5867
+ #: core/lib/wpbc_all_translations.php:1120 inc/_mu/admin/page-users.php:575
5868
  msgid "delete configuration"
5869
  msgstr ""
5870
 
5871
+ #: core/lib/wpbc_all_translations.php:1121 inc/_mu/admin/page-users.php:579
5872
  msgid "Delete settings"
5873
  msgstr ""
5874
 
5875
+ #: core/lib/wpbc_all_translations.php:1122 inc/_mu/admin/page-users.php:582
5876
  msgid "delete all booking data"
5877
  msgstr ""
5878
 
5879
+ #: core/lib/wpbc_all_translations.php:1123 inc/_mu/admin/page-users.php:586
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 ""
5903
 
5904
+ #: core/lib/wpbc_all_translations.php:1128 inc/_ps/admin/activation-p.php:52
5905
  msgid "Please, reserve an apartment with fresh flowers."
5906
  msgstr ""
5907
 
5908
+ #: core/lib/wpbc_all_translations.php:1129 inc/_ps/admin/api-settings-p.php:56
5909
  msgid "Default booking resource"
5910
  msgstr ""
5911
 
5912
+ #: core/lib/wpbc_all_translations.php:1130 inc/_ps/admin/api-settings-p.php:57
5913
  msgid "Select your default booking resource."
5914
  msgstr ""
5915
 
5916
+ #: core/lib/wpbc_all_translations.php:1131 inc/_ps/admin/api-settings-p.php:70
5917
  msgid "Resources number per page"
5918
  msgstr ""
5919
 
5920
+ #: core/lib/wpbc_all_translations.php:1132 inc/_ps/admin/api-settings-p.php:71
5921
  msgid "Select number of booking resources (single or parent) per page at Resource menu page"
5922
  msgstr ""
5923
 
5924
+ #: core/lib/wpbc_all_translations.php:1133 inc/_ps/admin/api-settings-p.php:92
5925
  #: inc/_ps/admin/api-settings-p.php:192
5926
  msgid "Booking title"
5927
  msgstr ""
5928
 
5929
+ #: core/lib/wpbc_all_translations.php:1134 inc/_ps/admin/api-settings-p.php:92
5930
  msgid "admin panel"
5931
  msgstr ""
5932
 
5933
+ #: core/lib/wpbc_all_translations.php:1135 inc/_ps/admin/api-settings-p.php:93
5934
  #, php-format
5935
  msgid ""
5936
  "Type %sdefault title of bookings%s in calendar view mode at Booking Listing page (You can use "
5937
  "the shortcodes from the bottom form of Settings Fields page)."
5938
  msgstr ""
5939
 
5940
+ #: core/lib/wpbc_all_translations.php:1136
5941
  msgid "front panel"
5942
  msgstr ""
5943
 
5944
+ #: core/lib/wpbc_all_translations.php:1137 inc/_ps/admin/api-settings-p.php:193
5945
  #, php-format
5946
  msgid ""
5947
  "Type %sdefault title of bookings%s in %stimeline at front-end side%s. You can use the shortcodes "
5948
  "from the bottom form of Settings Fields page."
5949
  msgstr ""
5950
 
5951
+ #: core/lib/wpbc_all_translations.php:1138 inc/_ps/admin/api-settings-p.php:201
5952
  msgid "Booking details in popover"
5953
  msgstr ""
5954
 
5955
+ #: core/lib/wpbc_all_translations.php:1139 inc/_ps/admin/api-settings-p.php:202
5956
  #, php-format
5957
  msgid ""
5958
  "Check this box if you want to %sshow popover with booking details%s in timeline at %sfront-end%s "
5959
  "side."
5960
  msgstr ""
5961
 
5962
+ #: core/lib/wpbc_all_translations.php:1140 inc/_ps/admin/api-settings-p.php:225
5963
  msgid "semicolon"
5964
  msgstr ""
5965
 
5966
+ #: core/lib/wpbc_all_translations.php:1141 inc/_ps/admin/api-settings-p.php:226
5967
  msgid "comma"
5968
  msgstr ""
5969
 
5970
+ #: core/lib/wpbc_all_translations.php:1142 inc/_ps/admin/api-settings-p.php:231
5971
  msgid "CSV data separator"
5972
  msgstr ""
5973
 
5974
+ #: core/lib/wpbc_all_translations.php:1143 inc/_ps/admin/api-settings-p.php:232
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."
5996
  msgstr ""
5997
 
5998
+ #: core/lib/wpbc_all_translations.php:1148 inc/_ps/admin/page-email-edit.php:556
5999
  msgid "Modified"
6000
  msgstr ""
6001
 
6002
+ #: core/lib/wpbc_all_translations.php:1149
6003
  msgid "Customization of email template, which is sending after modification of booking"
6004
  msgstr ""
6005
 
6006
+ #: core/lib/wpbc_all_translations.php:1150
6007
  msgid "Email is sending to Visitor after Editing of booking."
6008
  msgstr ""
6009
 
6010
+ #: core/lib/wpbc_all_translations.php:1151 inc/_ps/admin/page-resources.php:39
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 ""
6089
  "that all \"open\" tags (like %s) are closed (like this %s)."
6090
  msgstr ""
6091
 
6092
+ #: core/lib/wpbc_all_translations.php:1169 inc/_ps/admin/page-settings-up.php:39
6093
  msgid "Upgrade to higher version"
6094
  msgstr ""
6095
 
6096
+ #: core/lib/wpbc_all_translations.php:1170 inc/_ps/class/wpbc-settings-table.php:260
6097
  msgid "No results found."
6098
  msgstr ""
6099
 
6100
+ #: core/lib/wpbc_all_translations.php:1171 inc/_ps/form/class-wpbc-field-help-checkbox.php:90
6101
  #, php-format
6102
  msgid "Wrap each item with %s tag"
6103
  msgstr ""
6104
 
6105
+ #: core/lib/wpbc_all_translations.php:1172 inc/_ps/form/class-wpbc-field-help-checkbox.php:104
6106
  msgid "Put a label before field"
6107
  msgstr ""
6108
 
6109
+ #: core/lib/wpbc_all_translations.php:1173 inc/_ps/form/class-wpbc-field-help-checkbox.php:118
6110
  #, php-format
6111
  msgid "Make it %sexclusive%s"
6112
  msgstr ""
6113
 
6114
+ #: core/lib/wpbc_all_translations.php:1174 inc/_ps/form/class-wpbc-field-help-checkbox.php:128
6115
  #: inc/_ps/form/class-wpbc-field-help-radio.php:85 inc/_ps/form/class-wpbc-field-help-select.php:78
6116
  #: inc/_ps/form/class-wpbc-field-help-text.php:194
6117
  msgid "Default value"
6118
  msgstr ""
6119
 
6120
+ #: core/lib/wpbc_all_translations.php:1175 inc/_ps/form/class-wpbc-field-help-checkbox.php:136
6121
  #, php-format
6122
  msgid "One Value from %sOptions%s list or term %s for selection of all checkboxes"
6123
  msgstr ""
6124
 
6125
+ #: core/lib/wpbc_all_translations.php:1176 inc/_ps/form/class-wpbc-field-help-checkbox.php:146
6126
  #: inc/_ps/form/class-wpbc-field-help-select.php:111
6127
  #: inc/_ps/form/class-wpbc-field-help-text.php:177
6128
  msgid "required"
6129
  msgstr ""
6130
 
6131
+ #: core/lib/wpbc_all_translations.php:1177 inc/_ps/form/class-wpbc-field-help-checkbox.php:164
6132
  #: inc/_ps/form/class-wpbc-field-help-select.php:129
6133
  msgid "Titles of options"
6134
  msgstr ""
6135
 
6136
+ #: core/lib/wpbc_all_translations.php:1178 inc/_ps/form/class-wpbc-field-help-radio.php:93
6137
  #: inc/_ps/form/class-wpbc-field-help-select.php:86
6138
  #, php-format
6139
  msgid "One Value from %sOptions%s list"
6140
  msgstr ""
6141
 
6142
+ #: core/lib/wpbc_all_translations.php:1179 inc/_ps/form/class-wpbc-field-help-select.php:101
6143
  #, php-format
6144
  msgid "Allow %smultiple%s selections"
6145
  msgstr ""
6146
 
6147
+ #: core/lib/wpbc_all_translations.php:1180 inc/_ps/form/class-wpbc-field-help-text.php:167
6148
  #, php-format
6149
  msgid "Set as %srequired%s"
6150
  msgstr ""
6151
 
6152
+ #: core/lib/wpbc_all_translations.php:1181 inc/_ps/form/class-wpbc-field-help-text.php:228
6153
  msgid "Placeholder"
6154
  msgstr ""
6155
 
6156
+ #: core/lib/wpbc_all_translations.php:1182 inc/_ps/form/class-wpbc-field-help-text.php:247
6157
  msgid "Class"
6158
  msgstr ""
6159
 
6160
+ #: core/lib/wpbc_all_translations.php:1183 inc/_ps/form/class-wpbc-field-help-text.php:264
6161
  msgid "Size"
6162
  msgstr ""
6163
 
6164
+ #: core/lib/wpbc_all_translations.php:1184 inc/_ps/form/class-wpbc-field-help-text.php:281
6165
  msgid "Maxlength"
6166
  msgstr ""
6167
 
6168
+ #: core/lib/wpbc_all_translations.php:1185 inc/_ps/form/class-wpbc-field-help-text.php:298
6169
  msgid "Copy and paste this shortcode into the form at left side"
6170
  msgstr ""
6171
 
6172
+ #: core/lib/wpbc_all_translations.php:1186 inc/_ps/form/class-wpbc-field-help-text.php:313
6173
  #, php-format
6174
  msgid "Put this code in %sContent of Booking Fields%s and in %sEmail Templates%s"
6175
  msgstr ""
6176
 
6177
+ #: core/lib/wpbc_all_translations.php:1187 inc/_ps/form/class-wpbc-field-help-textarea.php:94
6178
  msgid "Rows"
6179
  msgstr ""
6180
 
6181
+ #: core/lib/wpbc_all_translations.php:1188 inc/_ps/form/class-wpbc-form-help.php:86
6182
  msgid "General Information"
6183
  msgstr ""
6184
 
6185
+ #: core/lib/wpbc_all_translations.php:1189 inc/_ps/form/class-wpbc-form-help.php:109
6186
  msgid "Required Fields in Booking Form"
6187
  msgstr ""
6188
 
6189
+ #: core/lib/wpbc_all_translations.php:1190 inc/_ps/form/class-wpbc-form-help.php:117
6190
  #, php-format
6191
  msgid "You must to have this shortcode:%s in the form."
6192
  msgstr ""
6193
 
6194
+ #: core/lib/wpbc_all_translations.php:1191 inc/_ps/form/class-wpbc-form-help.php:119
6195
  msgid ""
6196
  "You can insert several calendars of different resources into the form allowing you to book "
6197
  "several resources during one booking process."
6198
  msgstr ""
6199
 
6200
+ #: core/lib/wpbc_all_translations.php:1192 inc/_ps/form/class-wpbc-form-help.php:120
6201
  #, php-format
6202
  msgid "Example: %s."
6203
  msgstr ""
6204
 
6205
+ #: core/lib/wpbc_all_translations.php:1193 inc/_ps/form/class-wpbc-form-help.php:121
6206
  #, php-format
6207
  msgid ""
6208
  "where %s – default calendar %s (you can select desired resource of calendar by inserting "
6209
  "shortcode into page)%s"
6210
  msgstr ""
6211
 
6212
+ #: core/lib/wpbc_all_translations.php:1194 inc/_ps/form/class-wpbc-form-help.php:122
6213
  #: inc/_ps/form/class-wpbc-form-help.php:123
6214
  #, php-format
6215
  msgid "%s – calendar of booking resource with %s"
6216
  msgstr ""
6217
 
6218
+ #: core/lib/wpbc_all_translations.php:1195 inc/_ps/form/class-wpbc-form-help.php:124
6219
  #, php-format
6220
  msgid "Please check more about this feature %shere%s."
6221
  msgstr ""
6222
 
6223
+ #: core/lib/wpbc_all_translations.php:1196 inc/_ps/form/class-wpbc-form-help.php:126
6224
  #: inc/_ps/form/class-wpbc-form-help.php:197 inc/_ps/form/class-wpbc-form-help.php:230
6225
  #: inc/_ps/form/class-wpbc-form-help.php:278 inc/_ps/form/class-wpbc-form-help.php:291
6226
  #: inc/_ps/form/class-wpbc-form-help.php:305 inc/_ps/form/class-wpbc-form-help.php:343
6230
  msgid "You can %suse this shortcode only once%s in the form."
6231
  msgstr ""
6232
 
6233
+ #: core/lib/wpbc_all_translations.php:1197 inc/_ps/form/class-wpbc-form-help.php:135
6234
  msgid "Email Field"
6235
  msgstr ""
6236
 
6237
+ #: core/lib/wpbc_all_translations.php:1198 inc/_ps/form/class-wpbc-form-help.php:136
6238
  #, php-format
6239
  msgid "You must have this shortcode:%s in the booking form."
6240
  msgstr ""
6241
 
6242
+ #: core/lib/wpbc_all_translations.php:1199 inc/_ps/form/class-wpbc-form-help.php:136
6243
  msgid "This is the primary email field, which is used for sending emails to visitors."
6244
  msgstr ""
6245
 
6246
+ #: core/lib/wpbc_all_translations.php:1200 inc/_ps/form/class-wpbc-form-help.php:163
6247
  msgid "Drop Down"
6248
  msgstr ""
6249
 
6250
+ #: core/lib/wpbc_all_translations.php:1201 inc/_ps/form/class-wpbc-form-help.php:175
6251
  msgid "Checkbox(es)"
6252
  msgstr ""
6253
 
6254
+ #: core/lib/wpbc_all_translations.php:1202 inc/_ps/form/class-wpbc-form-help.php:182
6255
  msgid "Radio Button(s)"
6256
  msgstr ""
6257
 
6258
+ #: core/lib/wpbc_all_translations.php:1203 inc/_ps/form/class-wpbc-form-help.php:196
6259
  #, php-format
6260
  msgid "Insert %s shortcode to prevent SPAM bookings."
6261
  msgstr ""
6262
 
6263
+ #: core/lib/wpbc_all_translations.php:1204 inc/_ps/form/class-wpbc-form-help.php:206
6264
  msgid "Submit Button"
6265
  msgstr ""
6266
 
6267
+ #: core/lib/wpbc_all_translations.php:1205 inc/_ps/form/class-wpbc-form-help.php:214
6268
  msgid "Times Fields"
6269
  msgstr ""
6270
 
6271
+ #: core/lib/wpbc_all_translations.php:1206 inc/_ps/form/class-wpbc-form-help.php:220
6272
  msgid "Time Slot List"
6273
  msgstr ""
6274
 
6275
+ #: core/lib/wpbc_all_translations.php:1207 inc/_ps/form/class-wpbc-form-help.php:222
6276
  #: inc/_ps/form/class-wpbc-form-help.php:302 inc/_ps/form/class-wpbc-form-help.php:340
6277
  #: inc/_ps/form/class-wpbc-form-help.php:379
6278
  #, php-format
6279
  msgid "Select the %s using the predefined %sTime List%s."
6280
  msgstr ""
6281
 
6282
+ #: core/lib/wpbc_all_translations.php:1208 inc/_ps/form/class-wpbc-form-help.php:222
6283
  msgid "Time Slot"
6284
  msgstr ""
6285
 
6286
+ #: core/lib/wpbc_all_translations.php:1209 inc/_ps/form/class-wpbc-form-help.php:223
6287
  #, php-format
6288
  msgid ""
6289
  "Please note, %sthe use of the time shortcode%s. If you select a date with some booked time "
6290
  "slots, this time field will %sdisable booked times slots%s (set them as grayed)."
6291
  msgstr ""
6292
 
6293
+ #: core/lib/wpbc_all_translations.php:1210 inc/_ps/form/class-wpbc-form-help.php:224
6294
  #, php-format
6295
  msgid "It works only in %ssingle day selection%s mode."
6296
  msgstr ""
6297
 
6298
+ #: core/lib/wpbc_all_translations.php:1211 inc/_ps/form/class-wpbc-form-help.php:225
6299
  msgid ""
6300
  "Also some early versions of the IE do not support disabling of the options in the selectboxes."
6301
  msgstr ""
6302
 
6303
+ #: core/lib/wpbc_all_translations.php:1212 inc/_ps/form/class-wpbc-form-help.php:226
6304
  msgid ""
6305
  "Even if visitor selects the booked timeslot, system will not allow them to make the booking."
6306
  msgstr ""
6307
 
6308
+ #: core/lib/wpbc_all_translations.php:1213 inc/_ps/form/class-wpbc-form-help.php:229
6309
  #: inc/_ps/form/class-wpbc-form-help.php:342 inc/_ps/form/class-wpbc-form-help.php:381
6310
  #, php-format
6311
  msgid ""
6313
  "Time)%s only."
6314
  msgstr ""
6315
 
6316
+ #: core/lib/wpbc_all_translations.php:1214 inc/_ps/form/class-wpbc-form-help.php:231
6317
  #, php-format
6318
  msgid "If you use this shortcode, %syou can not use any other time shortcodes%s in the form."
6319
  msgstr ""
6320
 
6321
+ #: core/lib/wpbc_all_translations.php:1215 inc/_ps/form/class-wpbc-form-help.php:273
6322
  msgid "Start Time - Text field"
6323
  msgstr ""
6324
 
6325
+ #: core/lib/wpbc_all_translations.php:1216 inc/_ps/form/class-wpbc-form-help.php:275
6326
  #: inc/_ps/form/class-wpbc-form-help.php:288
6327
  #, php-format
6328
  msgid "Enter %s in text field."
6329
  msgstr ""
6330
 
6331
+ #: core/lib/wpbc_all_translations.php:1217 inc/_ps/admin/api-settings-p.php:119
6332
  #: inc/_ps/admin/api-settings-p.php:125 inc/_ps/form/class-wpbc-form-help.php:275
6333
  #: inc/_ps/form/class-wpbc-form-help.php:292 inc/_ps/form/class-wpbc-form-help.php:302
6334
  #: inc/_ps/form/class-wpbc-form-help.php:344 inc/_ps/form/class-wpbc-form-help.php:383
6335
  msgid "Start Time"
6336
  msgstr ""
6337
 
6338
+ #: core/lib/wpbc_all_translations.php:1218 inc/_ps/form/class-wpbc-form-help.php:277
6339
  #: inc/_ps/form/class-wpbc-form-help.php:290 inc/_ps/form/class-wpbc-form-help.php:496
6340
  #, php-format
6341
  msgid "Please note: this field only supports military time format %s(24 Hour Time)%s."
6342
  msgstr ""
6343
 
6344
+ #: core/lib/wpbc_all_translations.php:1219 inc/_ps/form/class-wpbc-form-help.php:279
6345
  #: inc/_ps/form/class-wpbc-form-help.php:292 inc/_ps/form/class-wpbc-form-help.php:306
6346
  #: inc/_ps/form/class-wpbc-form-help.php:344 inc/_ps/form/class-wpbc-form-help.php:383
6347
  #, php-format
6348
  msgid "You can also use the %s in the form."
6349
  msgstr ""
6350
 
6351
+ #: core/lib/wpbc_all_translations.php:1220 inc/_ps/admin/api-settings-p.php:138
6352
  #: inc/_ps/admin/api-settings-p.php:144 inc/_ps/form/class-wpbc-form-help.php:279
6353
  #: inc/_ps/form/class-wpbc-form-help.php:288 inc/_ps/form/class-wpbc-form-help.php:306
6354
  #: inc/_ps/form/class-wpbc-form-help.php:340
6355
  msgid "End Time"
6356
  msgstr ""
6357
 
6358
+ #: core/lib/wpbc_all_translations.php:1221 inc/_ps/form/class-wpbc-form-help.php:279
6359
  #: inc/_ps/form/class-wpbc-form-help.php:292 inc/_ps/form/class-wpbc-form-help.php:306
6360
  #: inc/_ps/form/class-wpbc-form-help.php:344 inc/_ps/form/class-wpbc-form-help.php:379
6361
  msgid "Duration Time"
6362
  msgstr ""
6363
 
6364
+ #: core/lib/wpbc_all_translations.php:1222 inc/_ps/form/class-wpbc-form-help.php:279
6365
  #: inc/_ps/form/class-wpbc-form-help.php:292 inc/_ps/form/class-wpbc-form-help.php:306
6366
  #: inc/_ps/form/class-wpbc-form-help.php:344
6367
  msgid "fields"
6368
  msgstr ""
6369
 
6370
+ #: core/lib/wpbc_all_translations.php:1223 inc/_ps/form/class-wpbc-form-help.php:286
6371
  msgid "End Time - Text field"
6372
  msgstr ""
6373
 
6374
+ #: core/lib/wpbc_all_translations.php:1224 inc/_ps/form/class-wpbc-form-help.php:300
6375
  msgid "Start Time - Drop Down list"
6376
  msgstr ""
6377
 
6378
+ #: core/lib/wpbc_all_translations.php:1225 inc/_ps/form/class-wpbc-form-help.php:304
6379
  #, php-format
6380
  msgid ""
6381
  "Please note, in the %sOptions list%s you can use times in military time format %s(24 Hour "
6382
  "Time)%s only."
6383
  msgstr ""
6384
 
6385
+ #: core/lib/wpbc_all_translations.php:1226 inc/_ps/form/class-wpbc-form-help.php:338
6386
  msgid "End Time - Drop Down list"
6387
  msgstr ""
6388
 
6389
+ #: core/lib/wpbc_all_translations.php:1227 inc/_ps/form/class-wpbc-form-help.php:377
6390
  msgid "Duration Time - Drop Down list"
6391
  msgstr ""
6392
 
6393
+ #: core/lib/wpbc_all_translations.php:1228 inc/_ps/form/class-wpbc-form-help.php:383
6394
  msgid "field"
6395
  msgstr ""
6396
 
6397
+ #: core/lib/wpbc_all_translations.php:1229 inc/_ps/form/class-wpbc-form-help.php:416
6398
  msgid "Different time slots, for the different week days"
6399
  msgstr ""
6400
 
6401
+ #: core/lib/wpbc_all_translations.php:1230 inc/_ps/form/class-wpbc-form-help.php:419
6402
  msgid ""
6403
  "This feature provides the possibility to use the different time slot selections in the booking "
6404
  "form for the different week days or different days - which are assigned to the specific season "
6405
  "filters. So each week day (day of specific season filter) can have a different time slots list."
6406
  msgstr ""
6407
 
6408
+ #: core/lib/wpbc_all_translations.php:1231 inc/_ps/form/class-wpbc-form-help.php:421
6409
  #: inc/_ps/form/class-wpbc-form-help.php:568
6410
  msgid "Configuration"
6411
  msgstr ""
6412
 
6413
+ #: core/lib/wpbc_all_translations.php:1232 inc/_ps/form/class-wpbc-form-help.php:422
6414
  #: inc/_ps/form/class-wpbc-form-help.php:569
6415
  #, php-format
6416
  msgid "The general structure of the configuration %scondition rule%s is as follows"
6417
  msgstr ""
6418
 
6419
+ #: core/lib/wpbc_all_translations.php:1233 inc/_ps/form/class-wpbc-form-help.php:428
6420
  #: inc/_ps/form/class-wpbc-form-help.php:449 inc/_ps/form/class-wpbc-form-help.php:472
6421
  #: inc/_ps/form/class-wpbc-form-help.php:575 inc/_ps/form/class-wpbc-form-help.php:596
6422
  #: inc/_ps/form/class-wpbc-form-help.php:619
6423
  msgid "Parameters"
6424
  msgstr ""
6425
 
6426
+ #: core/lib/wpbc_all_translations.php:1234 inc/_ps/form/class-wpbc-form-help.php:429
6427
  #: inc/_ps/form/class-wpbc-form-help.php:576
6428
  #, php-format
6429
  msgid ""
6433
  "conditions. Please check more about it, in the examples."
6434
  msgstr ""
6435
 
6436
+ #: core/lib/wpbc_all_translations.php:1235 inc/_ps/form/class-wpbc-form-help.php:430
6437
  #: inc/_ps/form/class-wpbc-form-help.php:577
6438
  #, php-format
6439
  msgid ""
6444
  "filter in the Season Filters page."
6445
  msgstr ""
6446
 
6447
+ #: core/lib/wpbc_all_translations.php:1236 inc/_ps/form/class-wpbc-form-help.php:431
6448
  #, php-format
6449
  msgid ""
6450
  "%svalue%s – value of the specific conditions. If the value is true, the content of the "
6453
  "at initial stage, when the date in calendar is not yet selected."
6454
  msgstr ""
6455
 
6456
+ #: core/lib/wpbc_all_translations.php:1237 inc/_ps/form/class-wpbc-form-help.php:433
6457
  #: inc/_ps/form/class-wpbc-form-help.php:580
6458
  msgid "Examples"
6459
  msgstr ""
6460
 
6461
+ #: core/lib/wpbc_all_translations.php:1238 inc/_ps/form/class-wpbc-form-help.php:434
6462
  #: inc/_ps/form/class-wpbc-form-help.php:581
6463
  msgid "Week days conditions."
6464
  msgstr ""
6465
 
6466
+ #: core/lib/wpbc_all_translations.php:1239 inc/_ps/form/class-wpbc-form-help.php:450
6467
  #: inc/_ps/form/class-wpbc-form-help.php:597
6468
  msgid "default value, if no dates are selected, or none exist conditions are true."
6469
  msgstr ""
6470
 
6471
+ #: core/lib/wpbc_all_translations.php:1240 inc/_ps/form/class-wpbc-form-help.php:458
6472
  #: inc/_ps/form/class-wpbc-form-help.php:475
6473
  msgid "You can use the several values, separated by comma."
6474
  msgstr ""
6475
 
6476
+ #: core/lib/wpbc_all_translations.php:1241 inc/_ps/form/class-wpbc-form-help.php:460
6477
  #: inc/_ps/form/class-wpbc-form-help.php:607
6478
  msgid "Season filters conditions."
6479
  msgstr ""
6480
 
6481
+ #: core/lib/wpbc_all_translations.php:1242 inc/_ps/form/class-wpbc-form-help.php:473
6482
  #: inc/_ps/form/class-wpbc-form-help.php:620
6483
  msgid "Season filter on the Season Filters page,"
6484
  msgstr ""
6485
 
6486
+ #: core/lib/wpbc_all_translations.php:1243 inc/_ps/form/class-wpbc-form-help.php:474
6487
  #: inc/_ps/form/class-wpbc-form-help.php:621
6488
  msgid "Season filter on the Season Filters page"
6489
  msgstr ""
6490
 
6491
+ #: core/lib/wpbc_all_translations.php:1244 inc/_ps/form/class-wpbc-form-help.php:477
6492
  #: inc/_ps/form/class-wpbc-form-help.php:624
6493
  msgid "Additional info"
6494
  msgstr ""
6495
 
6496
+ #: core/lib/wpbc_all_translations.php:1245 inc/_ps/form/class-wpbc-form-help.php:478
6497
  #: inc/_ps/form/class-wpbc-form-help.php:625
6498
  #, php-format
6499
  msgid ""
6501
  "section."
6502
  msgstr ""
6503
 
6504
+ #: core/lib/wpbc_all_translations.php:1246 inc/_ps/form/class-wpbc-form-help.php:479
6505
  #: inc/_ps/form/class-wpbc-form-help.php:626
6506
  #, php-format
6507
  msgid "Please check more about this feature at %sthis page%s"
6508
  msgstr ""
6509
 
6510
+ #: core/lib/wpbc_all_translations.php:1247 inc/_ps/form/class-wpbc-form-help.php:493
6511
  msgid "Time Field"
6512
  msgstr ""
6513
 
6514
+ #: core/lib/wpbc_all_translations.php:1248 inc/_ps/form/class-wpbc-form-help.php:495
6515
  #, php-format
6516
  msgid "Enter the %sTime%s using the text field."
6517
  msgstr ""
6518
 
6519
+ #: core/lib/wpbc_all_translations.php:1249 inc/_ps/form/class-wpbc-form-help.php:498
6520
  msgid "This field does not impact to availability (booking for the specific time) ."
6521
  msgstr ""
6522
 
6523
+ #: core/lib/wpbc_all_translations.php:1250 inc/_ps/form/class-wpbc-form-help.php:499
6524
  msgid "The value of this field is just saved into DB."
6525
  msgstr ""
6526
 
6527
+ #: core/lib/wpbc_all_translations.php:1251 inc/_ps/form/class-wpbc-form-help.php:509
6528
  msgid "Country List"
6529
  msgstr ""
6530
 
6531
+ #: core/lib/wpbc_all_translations.php:1252 inc/_ps/form/class-wpbc-form-help.php:511
6532
  msgid "Select the country from the predefined country list."
6533
  msgstr ""
6534
 
6535
+ #: core/lib/wpbc_all_translations.php:1253 inc/_ps/form/class-wpbc-form-help.php:512
6536
  #, php-format
6537
  msgid "You can customize the country list at this file: %s"
6538
  msgstr ""
6539
 
6540
+ #: core/lib/wpbc_all_translations.php:1254 inc/_ps/form/class-wpbc-form-help.php:513
6541
  msgid "You can insert this field with default selected value."
6542
  msgstr ""
6543
 
6544
+ #: core/lib/wpbc_all_translations.php:1255 inc/_ps/form/class-wpbc-form-help.php:514
6545
  #, php-format
6546
  msgid "Example: %s - %s\"United States\"%s is selected by default."
6547
  msgstr ""
6548
 
6549
+ #: core/lib/wpbc_all_translations.php:1256 inc/_ps/form/class-wpbc-form-help.php:523
6550
  msgid "Language Sections"
6551
  msgstr ""
6552
 
6553
+ #: core/lib/wpbc_all_translations.php:1257 inc/_ps/form/class-wpbc-form-help.php:525
6554
  msgid "Plugin support configurations of the booking form are available in different languages."
6555
  msgstr ""
6556
 
6557
+ #: core/lib/wpbc_all_translations.php:1258 inc/_ps/form/class-wpbc-form-help.php:526
6558
  msgid "The active language of the booking form depends on the active locale of the site."
6559
  msgstr ""
6560
 
6561
+ #: core/lib/wpbc_all_translations.php:1259 inc/_ps/form/class-wpbc-form-help.php:527
6562
  msgid ""
6563
  "Booking Calendar supports WPML and qTranslate plugins for dynamic changing of website locale."
6564
  msgstr ""
6565
 
6566
+ #: core/lib/wpbc_all_translations.php:1260 inc/_ps/form/class-wpbc-form-help.php:529
6567
  msgid "Usage"
6568
  msgstr ""
6569
 
6570
+ #: core/lib/wpbc_all_translations.php:1261 inc/_ps/form/class-wpbc-form-help.php:530
6571
  #, php-format
6572
  msgid "start new translation section in specific language, where %s - locale of the translation."
6573
  msgstr ""
6574
 
6575
+ #: core/lib/wpbc_all_translations.php:1262 inc/_ps/form/class-wpbc-form-help.php:533
6576
  msgid "English and French translation"
6577
  msgstr ""
6578
 
6579
+ #: core/lib/wpbc_all_translations.php:1263 inc/_ps/form/class-wpbc-form-help.php:536
6580
  msgid "of configuration booking form in English and French languages"
6581
  msgstr ""
6582
 
6583
+ #: core/lib/wpbc_all_translations.php:1264 inc/_ps/form/class-wpbc-form-help.php:555
6584
  msgid ""
6585
  "Register and Translate everything in WPML plugin. Translation can be done at the WPML > \"String "
6586
  "translation\" page. Required WPML 3.2 with String Translation plugin."
6587
  msgstr ""
6588
 
6589
+ #: core/lib/wpbc_all_translations.php:1265 inc/_ps/form/class-wpbc-form-help.php:563
6590
  msgid "Different form fields, for the different week days"
6591
  msgstr ""
6592
 
6593
+ #: core/lib/wpbc_all_translations.php:1266 inc/_ps/form/class-wpbc-form-help.php:566
6594
  msgid ""
6595
  "This feature provides the possibility to show the different form fields or any other HTML "
6596
  "content in the booking form, depending on the selection of specific week day in calendar or "
6597
  "different days, which are assigned to the specific season filters"
6598
  msgstr ""
6599
 
6600
+ #: core/lib/wpbc_all_translations.php:1267 inc/_ps/form/class-wpbc-form-help.php:578
6601
  #, php-format
6602
  msgid ""
6603
  "%svalue%s – value of the specific conditions. If the value is true, so then the content of the "
6606
  "at initial stage, when the date in calendar is not yet selected."
6607
  msgstr ""
6608
 
6609
+ #: core/lib/wpbc_all_translations.php:1268 inc/_ps/form/class-wpbc-form-help.php:605
6610
  msgid "You can use several values, separated by comma."
6611
  msgstr ""
6612
 
6613
+ #: core/lib/wpbc_all_translations.php:1269 inc/_ps/form/class-wpbc-form-help.php:622
6614
  msgid "You can use several values, separated by a comma."
6615
  msgstr ""
6616
 
6617
+ #: core/lib/wpbc_all_translations.php:1270 inc/_ps/form/class-wpbc-form-help.php:635
6618
  msgid "Cost Fields"
6619
  msgstr ""
6620
 
6621
+ #: core/lib/wpbc_all_translations.php:1271 inc/_ps/form/class-wpbc-form-help.php:641
6622
  msgid "Cost Correction Field"
6623
  msgstr ""
6624
 
6625
+ #: core/lib/wpbc_all_translations.php:1272 inc/_ps/form/class-wpbc-form-help.php:643
6626
  #, php-format
6627
  msgid "This field is visible only in Admin Panel at %sAdd booking page%s."
6628
  msgstr ""
6629
 
6630
+ #: core/lib/wpbc_all_translations.php:1273 inc/_ps/form/class-wpbc-form-help.php:644
6631
  #, php-format
6632
  msgid "Use this field for %scorrecting the cost%s during adding new booking."
6633
  msgstr ""
6634
 
6635
+ #: core/lib/wpbc_all_translations.php:1274 inc/_ps/form/class-wpbc-form-help.php:655
6636
  msgid "Discount Coupon field"
6637
  msgstr ""
6638
 
6639
+ #: core/lib/wpbc_all_translations.php:1275 inc/_ps/form/class-wpbc-form-help.php:657
6640
  msgid "Please use this field for possibility to use coupon discounts by your visitors."
6641
  msgstr ""
6642
 
6643
+ #: core/lib/wpbc_all_translations.php:1276 inc/_ps/form/class-wpbc-form-help.php:658
6644
  #, php-format
6645
  msgid "You can configure the discount coupon codes at this %spage%s."
6646
  msgstr ""
6647
 
6648
+ #: core/lib/wpbc_all_translations.php:1277 inc/_ps/form/class-wpbc-form-help.php:667
6649
  msgid "Hints for your form"
6650
  msgstr ""
6651
 
6652
+ #: core/lib/wpbc_all_translations.php:1278 inc/_ps/form/class-wpbc-form-help.php:673
6653
  msgid "Cost Hints"
6654
  msgstr ""
6655
 
6656
+ #: core/lib/wpbc_all_translations.php:1279 inc/_ps/form/class-wpbc-form-help.php:675
6657
  #: inc/_ps/form/class-wpbc-form-help.php:697
6658
  #, php-format
6659
  msgid ""
6661
  "calendar or options in checkboxes or selectboxes)%s."
6662
  msgstr ""
6663
 
6664
+ #: core/lib/wpbc_all_translations.php:1280 inc/_ps/form/class-wpbc-form-help.php:695
6665
  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
 
6673
+ #: core/lib/wpbc_all_translations.php:1282 inc/_ps/form/class-wpbc-form-help.php:700
6674
  #: inc/_ps/form/class-wpbc-form-help.php:703 inc/_ps/form/class-wpbc-form-help.php:706
6675
  #: inc/_ps/form/class-wpbc-form-help.php:709 inc/_ps/form/class-wpbc-form-help.php:712
6676
  #: inc/_ps/form/class-wpbc-form-help.php:715 inc/_ps/form/class-wpbc-form-help.php:718
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
 
6732
+ #: core/lib/wpbc_all_translations.php:1292 inc/_ps/form/class-wpbc-form-help.php:739
6733
  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
 
6741
+ #: core/lib/wpbc_all_translations.php:1294 inc/_ps/form/class-wpbc-form-help.php:742
6742
  msgid "ID of booking resource."
6743
  msgstr ""
6744
 
6745
+ #: core/lib/wpbc_all_translations.php:1295 inc/_ps/form/class-wpbc-form-help.php:744
6746
  msgid "cost of booking resource."
6747
  msgstr ""
6748
 
6749
+ #: core/lib/wpbc_all_translations.php:1296 inc/_ps/form/class-wpbc-form-help.php:745
6750
  msgid "capacity of booking resource."
6751
  msgstr ""
6752
 
6753
+ #: core/lib/wpbc_all_translations.php:1297 inc/_ps/form/class-wpbc-form-help.php:746
6754
  msgid "maximum number of visitors per booking resource."
6755
  msgstr ""
6756
 
6757
+ #: core/lib/wpbc_all_translations.php:1298 inc/_ps/form/class-wpbc-form-help.php:760
6758
  msgid "Tips and Tricks"
6759
  msgstr ""
6760
 
6761
+ #: core/lib/wpbc_all_translations.php:1299 inc/_ps/form/class-wpbc-form-help.php:762
6762
  #, php-format
6763
  msgid "%sEmail verification field%s."
6764
  msgstr ""
6765
 
6766
+ #: core/lib/wpbc_all_translations.php:1300 inc/_ps/form/class-wpbc-form-help.php:764
6767
  #, php-format
6768
  msgid "%sDescription of usage%s."
6769
  msgstr ""
6770
 
6771
+ #: core/lib/wpbc_all_translations.php:1301 inc/_ps/form/class-wpbc-form-help.php:765
6772
  #, php-format
6773
  msgid ""
6774
  "To create verification email, you need to use special CSS class in other email field. This CSS "
6776
  "field: %s"
6777
  msgstr ""
6778
 
6779
+ #: core/lib/wpbc_all_translations.php:1302 inc/_ps/form/class-wpbc-form-help.php:766
6780
  #, php-format
6781
  msgid "%sExample%s."
6782
  msgstr ""
6783
 
6784
+ #: core/lib/wpbc_all_translations.php:1303 inc/_ps/form/class-wpbc-form-help.php:767
6785
  msgid "confirmation email field of the primary email field"
6786
  msgstr ""
6787
 
6788
+ #: core/lib/wpbc_all_translations.php:1304 inc/_ps/form/class-wpbc-form-help.php:791
6789
  msgid "Generate Tag"
6790
  msgstr ""
6791
 
6792
+ #: core/lib/wpbc_all_translations.php:1305 inc/_ps/form/class-wpbc-form-help.php:807
6793
  msgid "Select option to configure or show help info about tags"
6794
  msgstr ""
6795
 
6796
+ #: core/lib/wpbc_all_translations.php:1306 inc/_ps/p-toolbar.php:34
6797
  msgid "Keyword"
6798
  msgstr ""
6799
 
6800
+ #: core/lib/wpbc_all_translations.php:1307 inc/_ps/p-toolbar.php:42
6801
  msgid "Enter Keyword here"
6802
  msgstr ""
6803
 
6804
+ #: core/lib/wpbc_all_translations.php:1308 inc/_ps/p-toolbar.php:65
6805
  msgid ""
6806
  "Save filter settings as default template (Please, click Apply filter button, before saving!)"
6807
  msgstr ""
6808
 
6809
+ #: core/lib/wpbc_all_translations.php:1309 inc/_ps/p-toolbar.php:69
6810
  msgid "Save as Default"
6811
  msgstr ""
6812
 
6813
+ #: core/lib/wpbc_all_translations.php:1310 inc/_ps/p-toolbar.php:75
6814
  msgid "Delete your previously saved default filer template!"
6815
  msgstr ""
6816
 
6817
+ #: core/lib/wpbc_all_translations.php:1311 inc/_ps/p-toolbar.php:79
6818
  msgid "Delete template"
6819
  msgstr ""
6820
 
6821
+ #: core/lib/wpbc_all_translations.php:1312 inc/_ps/p-toolbar.php:101
6822
  msgid "Print bookings listing"
6823
  msgstr ""
6824
 
6825
+ #: core/lib/wpbc_all_translations.php:1313 inc/_ps/p-toolbar.php:143
6826
  msgid "Export only current page of bookings to CSV format"
6827
  msgstr ""
6828
 
6829
+ #: core/lib/wpbc_all_translations.php:1314 inc/_ps/p-toolbar.php:156
6830
  msgid "Export All"
6831
  msgstr ""
6832
 
6833
+ #: core/lib/wpbc_all_translations.php:1315 inc/_ps/p-toolbar.php:157
6834
  msgid "Export All bookings to CSV format"
6835
  msgstr ""
6836
 
6837
+ #: core/lib/wpbc_all_translations.php:1316 inc/_ps/p-toolbar.php:224
6838
  msgid "Edit Note"
6839
  msgstr ""
6840
 
6841
+ #: core/lib/wpbc_all_translations.php:1317 inc/_ps/p-toolbar.php:247
6842
  msgid "Change Language"
6843
  msgstr ""
6844
 
6845
+ #: core/lib/wpbc_all_translations.php:1318 inc/_ps/p-toolbar.php:259
6846
  msgid "Default Locale"
6847
  msgstr ""
6848
 
6849
+ #: core/lib/wpbc_all_translations.php:1319 inc/_ps/p-toolbar.php:295
6850
  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
 
6857
+ #: core/lib/wpbc_all_translations.php:1321 inc/_ps/p-toolbar.php:351
6858
  msgid "Save"
6859
  msgstr ""
6860
 
6861
+ #: core/lib/wpbc_all_translations.php:1322 inc/_ps/p-toolbar.php:400
6862
  msgid "Change"
6863
  msgstr ""
6864
 
6865
+ #: core/lib/wpbc_all_translations.php:1323 inc/_ps/p-toolbar.php:470
6866
  msgid "Print bookings"
6867
  msgstr ""
6868
 
6869
+ #: core/lib/wpbc_all_translations.php:1324 inc/_ps/p-toolbar.php:509
6870
  msgid "Export bookings"
6871
  msgstr ""
6872
 
6873
+ #: core/lib/wpbc_all_translations.php:1325 inc/_ps/p-toolbar.php:512
6874
  msgid "Download the CSV file of exported booking data"
6875
  msgstr ""
6876
 
6877
+ #: core/lib/wpbc_all_translations.php:1326 inc/_ps/p-toolbar.php:520
6878
  msgid "Download"
6879
  msgstr ""
6880
 
6881
+ #: core/lib/wpbc_all_translations.php:1327 inc/_ps/p-toolbar.php:748
6882
  msgid "Clear booking resources selection"
6883
  msgstr ""
6884
 
6885
+ #: core/lib/wpbc_all_translations.php:1328 inc/_ps/p-toolbar.php:752
6886
  msgid "Apply booking resources selection"
6887
  msgstr ""
6888
 
6889
+ #: core/lib/wpbc_all_translations.php:1329 inc/_ps/p-toolbar.php:782
6890
  msgid ""
6891
  "Please note, its not possible to add new resources, if \"All resources\" option is selected. "
6892
  "Please clear the selection, then add new resources."
6893
  msgstr ""
6894
 
6895
+ #: core/lib/wpbc_all_translations.php:1330 inc/_ps/p-toolbar.php:1070 inc/_ps/p-toolbar.php:1118
6896
  msgid "Add New Booking Resource(s)"
6897
  msgstr ""
6898
 
6899
+ #: core/lib/wpbc_all_translations.php:1331 inc/_ps/p-toolbar.php:1110
6900
  msgid "Enter name of booking resource"
6901
  msgstr ""
6902
 
6903
+ #: core/lib/wpbc_all_translations.php:1332 inc/_ps/p-toolbar.php:1134
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 ""
6980
 
6981
+ #: core/lib/wpbc_all_translations.php:1351 inc/_ps/wpbc-booking-select-widget.php:226
6982
  msgid "Default form"
6983
  msgstr ""
6984
 
6985
+ #: core/lib/wpbc_all_translations.php:1352 inc/_ps/wpbc-check-updates.php:178
6986
  #, php-format
6987
  msgid ""
6988
  "There is a new version of %1$s available. <a href=\"%2$s\" target=\"_blank\" title=\"%3$s\">View "
6989
  "version %4$s details</a>. <em>Automatic update is unavailable for this plugin.</em>"
6990
  msgstr ""
6991
 
6992
+ #: core/lib/wpbc_all_translations.php:1353 inc/_ps/wpbc-check-updates.php:184
6993
  #, php-format
6994
  msgid "You can request the new update of plugin on %1$sthis page%2$s."
6995
  msgstr ""
6996
 
6997
+ #: core/lib/wpbc_all_translations.php:1354 inc/_ps/wpbc-check-updates.php:191
6998
  msgid "Upgrade Notice"
6999
  msgstr ""
7000
 
7001
+ #: core/lib/wpbc_all_translations.php:1355 inc/_ps/wpbc-check-updates.php:231
7002
  #, php-format
7003
  msgid "Version %s By %s"
7004
  msgstr ""
7005
 
7006
+ #: core/lib/wpbc_all_translations.php:1356 inc/_ps/wpbc-check-updates.php:235
7007
  msgid "View details"
7008
  msgstr ""
7009
 
7010
+ #: core/lib/wpbc_all_translations.php:1357 inc/_ps/wpbc-form-templates.php:34
7011
  #: inc/_ps/wpbc-form-templates.php:49 inc/_ps/wpbc-form-templates.php:69
7012
  #: inc/_ps/wpbc-form-templates.php:92 inc/_ps/wpbc-form-templates.php:114
7013
  msgid "First Name (required)"
7014
  msgstr ""
7015
 
7016
+ #: core/lib/wpbc_all_translations.php:1358 inc/_ps/wpbc-form-templates.php:35
7017
  #: inc/_ps/wpbc-form-templates.php:50 inc/_ps/wpbc-form-templates.php:70
7018
  #: inc/_ps/wpbc-form-templates.php:93 inc/_ps/wpbc-form-templates.php:115
7019
  msgid "Last Name (required)"
7020
  msgstr ""
7021
 
7022
+ #: core/lib/wpbc_all_translations.php:1359 inc/_ps/wpbc-form-templates.php:36
7023
  #: inc/_ps/wpbc-form-templates.php:51 inc/_ps/wpbc-form-templates.php:71
7024
  #: inc/_ps/wpbc-form-templates.php:94 inc/_ps/wpbc-form-templates.php:116
7025
  msgid "Email (required)"
7026
  msgstr ""
7027
 
7028
+ #: core/lib/wpbc_all_translations.php:1360 inc/_ps/wpbc-form-templates.php:37
7029
  #: inc/_ps/wpbc-form-templates.php:52 inc/_ps/wpbc-form-templates.php:72
7030
  #: inc/_ps/wpbc-form-templates.php:95 inc/_ps/wpbc-form-templates.php:117
7031
  #: inc/_ps/wpbc-form-templates.php:147 inc/_ps/wpbc-form-templates.php:159
7034
  msgid "Phone"
7035
  msgstr ""
7036
 
7037
+ #: core/lib/wpbc_all_translations.php:1361 inc/_ps/wpbc-form-templates.php:38
7038
  #: inc/_ps/wpbc-form-templates.php:57 inc/_ps/wpbc-form-templates.php:77
7039
  #: inc/_ps/wpbc-form-templates.php:100 inc/_ps/wpbc-form-templates.php:148
7040
  #: inc/_ps/wpbc-form-templates.php:164 inc/_ps/wpbc-form-templates.php:179
7041
  msgid "Adults"
7042
  msgstr ""
7043
 
7044
+ #: core/lib/wpbc_all_translations.php:1362 inc/_ps/wpbc-form-templates.php:38
7045
  #: inc/_ps/wpbc-form-templates.php:57 inc/_ps/wpbc-form-templates.php:77
7046
  #: inc/_ps/wpbc-form-templates.php:100 inc/_ps/wpbc-form-templates.php:149
7047
  #: inc/_ps/wpbc-form-templates.php:165 inc/_ps/wpbc-form-templates.php:180
7048
  msgid "Children"
7049
  msgstr ""
7050
 
7051
+ #: core/lib/wpbc_all_translations.php:1363 inc/_ps/wpbc-form-templates.php:39
7052
  #: inc/_ps/wpbc-form-templates.php:58 inc/_ps/wpbc-form-templates.php:78
7053
  #: inc/_ps/wpbc-form-templates.php:101 inc/_ps/wpbc-form-templates.php:123
7054
  #: inc/_ps/wpbc-form-templates.php:150 inc/_ps/wpbc-form-templates.php:166
7056
  msgid "Details"
7057
  msgstr ""
7058
 
7059
+ #: core/lib/wpbc_all_translations.php:1364 inc/_ps/wpbc-form-templates.php:40
7060
  #: inc/_ps/wpbc-form-templates.php:59 inc/_ps/wpbc-form-templates.php:79
7061
  #: inc/_ps/wpbc-form-templates.php:102 inc/_ps/wpbc-form-templates.php:125
7062
  msgid "I Accept term and conditions"
7063
  msgstr ""
7064
 
7065
+ #: core/lib/wpbc_all_translations.php:1365 inc/_ps/wpbc-form-templates.php:48
7066
  #: inc/_ps/wpbc-form-templates.php:68
7067
  msgid "Select Times"
7068
  msgstr ""
7069
 
7070
+ #: core/lib/wpbc_all_translations.php:1366 inc/_ps/wpbc-form-templates.php:53
7071
  #: inc/_ps/wpbc-form-templates.php:73 inc/_ps/wpbc-form-templates.php:96
7072
  #: inc/_ps/wpbc-form-templates.php:118
7073
  msgid "Address (required)"
7074
  msgstr ""
7075
 
7076
+ #: core/lib/wpbc_all_translations.php:1367 inc/_ps/wpbc-form-templates.php:54
7077
  #: inc/_ps/wpbc-form-templates.php:74 inc/_ps/wpbc-form-templates.php:97
7078
  #: inc/_ps/wpbc-form-templates.php:119
7079
  msgid "City (required)"
7080
  msgstr ""
7081
 
7082
+ #: core/lib/wpbc_all_translations.php:1368 inc/_ps/wpbc-form-templates.php:55
7083
  #: inc/_ps/wpbc-form-templates.php:75 inc/_ps/wpbc-form-templates.php:98
7084
  #: inc/_ps/wpbc-form-templates.php:120
7085
  msgid "Post code (required)"
7086
  msgstr ""
7087
 
7088
+ #: core/lib/wpbc_all_translations.php:1369 inc/_ps/wpbc-form-templates.php:56
7089
  #: inc/_ps/wpbc-form-templates.php:76 inc/_ps/wpbc-form-templates.php:99
7090
  #: inc/_ps/wpbc-form-templates.php:121
7091
  msgid "Country (required)"
7092
  msgstr ""
7093
 
7094
+ #: core/lib/wpbc_all_translations.php:1370 inc/_ps/wpbc-form-templates.php:89
7095
  msgid "night(s)"
7096
  msgstr ""
7097
 
7098
+ #: core/lib/wpbc_all_translations.php:1371 inc/_ps/wpbc-form-templates.php:90
7099
  #: inc/_ps/wpbc-form-templates.php:112
7100
  msgid "Full cost of the booking"
7101
  msgstr ""
7102
 
7103
+ #: core/lib/wpbc_all_translations.php:1372 inc/_ps/wpbc-form-templates.php:122
7104
  #: inc/_ps/wpbc-form-templates.php:194
7105
  msgid "Visitors"
7106
  msgstr ""
7107
 
7108
+ #: core/lib/wpbc_all_translations.php:1373 inc/_ps/wpbc-form-templates.php:145
7109
  #: inc/_ps/wpbc-form-templates.php:157 inc/_ps/wpbc-form-templates.php:172
7110
  #: inc/_ps/wpbc-form-templates.php:187
7111
  msgid "Last Name"
7112
  msgstr ""
7113
 
7114
+ #: core/lib/wpbc_all_translations.php:1374 inc/_ps/wpbc-form-templates.php:146
7115
  #: inc/_ps/wpbc-form-templates.php:158 inc/_ps/wpbc-form-templates.php:173
7116
  #: inc/_ps/wpbc-form-templates.php:188
7117
  msgid "Email"
7118
  msgstr ""
7119
 
7120
+ #: core/lib/wpbc_all_translations.php:1375 inc/_ps/wpbc-form-templates.php:160
7121
  #: inc/_ps/wpbc-form-templates.php:175 inc/_ps/wpbc-form-templates.php:190
7122
  msgid "Address"
7123
  msgstr ""
7124
 
7125
+ #: core/lib/wpbc_all_translations.php:1376 inc/_ps/wpbc-form-templates.php:161
7126
  #: inc/_ps/wpbc-form-templates.php:176 inc/_ps/wpbc-form-templates.php:191
7127
  msgid "City"
7128
  msgstr ""
7129
 
7130
+ #: core/lib/wpbc_all_translations.php:1377 inc/_ps/wpbc-form-templates.php:162
7131
  #: inc/_ps/wpbc-form-templates.php:177 inc/_ps/wpbc-form-templates.php:192
7132
  msgid "Post code"
7133
  msgstr ""
7134
 
7135
+ #: core/lib/wpbc_all_translations.php:1378 inc/_ps/wpbc-form-templates.php:163
7136
  #: inc/_ps/wpbc-form-templates.php:178 inc/_ps/wpbc-form-templates.php:193
7137
  #: inc/gateways/page-gateways.php:340
7138
  msgid "Country"
7139
  msgstr ""
7140
 
7141
+ #: core/lib/wpbc_all_translations.php:1379 inc/_ps/wpbc-form-templates.php:220
7142
  #: inc/_ps/wpbc-form-templates.php:230 inc/_ps/wpbc-form-templates.php:240
7143
  #: inc/_ps/wpbc-form-templates.php:250
7144
  msgid "Check in"
7145
  msgstr ""
7146
 
7147
+ #: core/lib/wpbc_all_translations.php:1380 inc/_ps/wpbc-form-templates.php:221
7148
  #: inc/_ps/wpbc-form-templates.php:231 inc/_ps/wpbc-form-templates.php:241
7149
  #: inc/_ps/wpbc-form-templates.php:251
7150
  msgid "Check out"
7151
  msgstr ""
7152
 
7153
+ #: core/lib/wpbc_all_translations.php:1381 inc/_ps/wpbc-form-templates.php:222
7154
  #: inc/_ps/wpbc-form-templates.php:232 inc/_ps/wpbc-form-templates.php:242
7155
  #: inc/_ps/wpbc-form-templates.php:252
7156
  msgid "Guests"
7157
  msgstr ""
7158
 
7159
+ #: core/lib/wpbc_all_translations.php:1382 inc/_ps/wpbc-form-templates.php:280
7160
  #: inc/_ps/wpbc-form-templates.php:297
7161
  msgid "Max. persons"
7162
  msgstr ""
7163
 
7164
+ #: core/lib/wpbc_all_translations.php:1383 inc/_ps/wpbc-print.php:84
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
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
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
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
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
7472
  #: inc/gateways/ideal/wpbc-gw-ideal.php:801 inc/gateways/ideal/wpbc-gw-ideal.php:904
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
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 "
7491
  "gateway."
7492
  msgstr ""
7493
 
7494
+ #: core/lib/wpbc_all_translations.php:1438
7495
  msgid ""
7496
  "Please configure all fields inside the Billing form fields tab at this page, when using a "
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 ""
7508
 
7509
+ #: core/lib/wpbc_all_translations.php:1441 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:231
7510
  #: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:159
7511
  msgid "Payment method description that the customer will see on your payment page."
7512
  msgstr ""
7513
 
7514
+ #: core/lib/wpbc_all_translations.php:1442 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:264
 
7515
  #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:343
7516
+ #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:344
7517
+ #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:425
7518
  msgid "Bank Transfer"
7519
  msgstr ""
7520
 
7521
+ #: core/lib/wpbc_all_translations.php:1443 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:345
7522
  msgid "Integration of Bank Transfer payment system"
7523
  msgstr ""
7524
 
7525
+ #: core/lib/wpbc_all_translations.php:1444 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:426
7526
+ #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:466
7527
  msgid "Account details"
7528
  msgstr ""
7529
 
7530
+ #: core/lib/wpbc_all_translations.php:1445 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:480
7531
  #, php-format
7532
  msgid "Allow payments by %sdirect bank / wire transfer%s"
7533
  msgstr ""
7534
 
7535
+ #: core/lib/wpbc_all_translations.php:1446 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:482
7536
  #: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:364
7537
  msgid "Its only show fixed payment details."
7538
  msgstr ""
7539
 
7540
+ #: core/lib/wpbc_all_translations.php:1447 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:717
7541
  msgid "Sort Code"
7542
  msgstr ""
7543
 
7544
+ #: core/lib/wpbc_all_translations.php:1448 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:725
7545
  #, php-format
7546
  msgid ""
7547
  "Dear %sMake your payment %s directly into our bank account. %sPlease use your Booking ID %s as "
7548
  "the payment reference! %s %s: %s %s: %s %s: %s %s: %s"
7549
  msgstr ""
7550
 
7551
+ #: core/lib/wpbc_all_translations.php:1449 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:731
7552
+ #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:738
7553
  msgid "Account Number"
7554
  msgstr ""
7555
 
7556
+ #: core/lib/wpbc_all_translations.php:1450 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:733
7557
+ #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:741
7558
  msgid "IBAN"
7559
  msgstr ""
7560
 
7561
+ #: core/lib/wpbc_all_translations.php:1451 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:734
7562
+ #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:742
7563
  msgid "BIC / Swift"
7564
  msgstr ""
7565
 
7566
+ #: core/lib/wpbc_all_translations.php:1452 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:737
7567
  msgid "Account Name"
7568
  msgstr ""
7569
 
7570
+ #: core/lib/wpbc_all_translations.php:1453 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:739
7571
  #: inc/gateways/ideal/wpbc-gw-ideal.php:324
7572
  msgid "Bank Name"
7573
  msgstr ""
7574
 
7575
+ #: core/lib/wpbc_all_translations.php:1454 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:787
7576
  msgid "BSB"
7577
  msgstr ""
7578
 
7579
+ #: core/lib/wpbc_all_translations.php:1455 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:788
7580
  msgid "Bank Transit Number"
7581
  msgstr ""
7582
 
7583
+ #: core/lib/wpbc_all_translations.php:1456 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:789
7584
  msgid "IFSC"
7585
  msgstr ""
7586
 
7587
+ #: core/lib/wpbc_all_translations.php:1457 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:790
7588
  msgid "Branch Sort"
7589
  msgstr ""
7590
 
7591
+ #: core/lib/wpbc_all_translations.php:1458 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:791
7592
+ #: inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:792
7593
  msgid "Bank Code"
7594
  msgstr ""
7595
 
7596
+ #: core/lib/wpbc_all_translations.php:1459 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:793
7597
  msgid "Routing Number"
7598
  msgstr ""
7599
 
7600
+ #: core/lib/wpbc_all_translations.php:1460 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:794
7601
  msgid "Branch Code"
7602
  msgstr ""
7603
 
7604
+ #: core/lib/wpbc_all_translations.php:1461 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:804
7605
  #, php-format
7606
  msgid "%s - inserting all bank accounts details"
7607
  msgstr ""
7608
 
7609
+ #: core/lib/wpbc_all_translations.php:1462 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:805
7610
  #, php-format
7611
  msgid "%s - inserting account name"
7612
  msgstr ""
7613
 
7614
+ #: core/lib/wpbc_all_translations.php:1463 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:806
7615
  #, php-format
7616
  msgid "%s - inserting account number"
7617
  msgstr ""
7618
 
7619
+ #: core/lib/wpbc_all_translations.php:1464 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:807
7620
  #, php-format
7621
  msgid "%s - inserting bank name "
7622
  msgstr ""
7623
 
7624
+ #: core/lib/wpbc_all_translations.php:1465 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:808
7625
  #, php-format
7626
  msgid "%s - inserting sort code "
7627
  msgstr ""
7628
 
7629
+ #: core/lib/wpbc_all_translations.php:1466 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:809
7630
  #, php-format
7631
  msgid "%s - inserting IBAN "
7632
  msgstr ""
7633
 
7634
+ #: core/lib/wpbc_all_translations.php:1467 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:810
7635
  #, php-format
7636
  msgid "%s - inserting BIC "
7637
  msgstr ""
7638
 
7639
+ #: core/lib/wpbc_all_translations.php:1468 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:815
7640
  msgid ""
7641
  "You can use any shortcodes, that you can use in payment description form at Settings Payment "
7642
  "General page"
7643
  msgstr ""
7644
 
7645
+ #: core/lib/wpbc_all_translations.php:1469 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:888
7646
  msgid "+ Add Account"
7647
  msgstr ""
7648
 
7649
+ #: core/lib/wpbc_all_translations.php:1470 inc/gateways/bank_transfer/wpbc-gw-bank_transfer.php:888
7650
  msgid "Remove selected account(s)"
7651
  msgstr ""
7652
 
7653
+ #: core/lib/wpbc_all_translations.php:1471 inc/gateways/ipay88/ipay88-backend.php:51
7654
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:500
7655
  msgid "Successful payment"
7656
  msgstr ""
7657
 
7658
+ #: core/lib/wpbc_all_translations.php:1472 inc/gateways/ipay88/ipay88-backend.php:53
7659
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:503
7660
  msgid " Parameters are incorrect,"
7661
  msgstr ""
7662
 
7663
+ #: core/lib/wpbc_all_translations.php:1473 inc/gateways/ipay88/ipay88-backend.php:54
7664
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:505
7665
  msgid "Cannot find the record"
7666
  msgstr ""
7667
 
7668
+ #: core/lib/wpbc_all_translations.php:1474 inc/gateways/ipay88/ipay88-backend.php:55
7669
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:507
7670
  msgid "Amount different"
7671
  msgstr ""
7672
 
7673
+ #: core/lib/wpbc_all_translations.php:1475 inc/gateways/ipay88/ipay88-backend.php:56
7674
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:509
7675
  msgid "Payment failed"
7676
  msgstr ""
7677
 
7678
+ #: core/lib/wpbc_all_translations.php:1476 inc/gateways/ipay88/ipay88-backend.php:57
7679
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:511
7680
  msgid "Payment status updated by Mobile88 Admin(Fail)"
7681
  msgstr ""
7682
 
7683
+ #: core/lib/wpbc_all_translations.php:1477 inc/gateways/ipay88/ipay88-backend.php:58
7684
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:513
7685
  msgid "Connection Error"
7686
  msgstr ""
7687
 
7688
+ #: core/lib/wpbc_all_translations.php:1478 inc/gateways/ipay88/wpbc-gw-ipay88.php:265
7689
  msgid "Merchant Code"
7690
  msgstr ""
7691
 
7692
+ #: core/lib/wpbc_all_translations.php:1479 inc/gateways/ipay88/wpbc-gw-ipay88.php:267
7693
  msgid "Enter your iPay88 Merchant Code."
7694
  msgstr ""
7695
 
7696
+ #: core/lib/wpbc_all_translations.php:1480 inc/gateways/ideal/wpbc-gw-ideal.php:403
7697
  #: inc/gateways/ipay88/wpbc-gw-ipay88.php:280
7698
  msgid "Merchant Key"
7699
  msgstr ""
7700
 
7701
+ #: core/lib/wpbc_all_translations.php:1481 inc/gateways/ipay88/wpbc-gw-ipay88.php:282
7702
  msgid "Enter your iPay88 Merchant Key."
7703
  msgstr ""
7704
 
7705
+ #: core/lib/wpbc_all_translations.php:1482 inc/gateways/ipay88/wpbc-gw-ipay88.php:292
7706
  msgid "Malaysian Ringgit"
7707
  msgstr ""
7708
 
7709
+ #: core/lib/wpbc_all_translations.php:1483 inc/gateways/ipay88/wpbc-gw-ipay88.php:294
7710
  #: inc/gateways/paypal/wpbc-gw-paypal.php:458 inc/gateways/sage/wpbc-gw-sage.php:471
7711
  msgid "Philippine Pesos"
7712
  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 ""
7725
  "automatically cancel the booking, when visitor makes a payment cancellation."
7726
  msgstr ""
7727
 
7728
+ #: core/lib/wpbc_all_translations.php:1486 inc/gateways/ipay88/wpbc-gw-ipay88.php:660
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
7738
  "tab."
7739
  msgstr ""
7740
 
7741
+ #: core/lib/wpbc_all_translations.php:1488 inc/gateways/page-gateways.php:65
7742
  msgid "for 1 day"
7743
  msgstr ""
7744
 
7745
+ #: core/lib/wpbc_all_translations.php:1489 inc/gateways/page-gateways.php:66
7746
  msgid "for 1 night"
7747
  msgstr ""
7748
 
7749
+ #: core/lib/wpbc_all_translations.php:1490 inc/gateways/page-gateways.php:67
7750
  msgid "fixed sum"
7751
  msgstr ""
7752
 
7753
+ #: core/lib/wpbc_all_translations.php:1491 inc/gateways/page-gateways.php:68
7754
  msgid "for 1 hour"
7755
  msgstr ""
7756
 
7757
+ #: core/lib/wpbc_all_translations.php:1492 inc/gateways/page-gateways.php:73
7758
  msgid "Set the cost"
7759
  msgstr ""
7760
 
7761
+ #: core/lib/wpbc_all_translations.php:1493 inc/gateways/page-gateways.php:74
7762
  msgid " Select your cost configuration."
7763
  msgstr ""
7764
 
7765
+ #: core/lib/wpbc_all_translations.php:1494 inc/gateways/page-gateways.php:82
7766
  msgid "Time impact to cost"
7767
  msgstr ""
7768
 
7769
+ #: core/lib/wpbc_all_translations.php:1495 inc/gateways/page-gateways.php:83
7770
  #, php-format
7771
  msgid ""
7772
  "Check this box if you want the %stime selection%s on the booking form %sapplied to the cost "
7773
  "calculation%s."
7774
  msgstr ""
7775
 
7776
+ #: core/lib/wpbc_all_translations.php:1496 inc/gateways/page-gateways.php:93
7777
  msgid ""
7778
  "Check this box if you want that specific additional cost, which configured as percentage for "
7779
  "some option, apply to other additional fixed costs and not only to original booking cost."
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
 
7787
+ #: core/lib/wpbc_all_translations.php:1498 inc/gateways/page-gateways.php:177
7788
  msgid ""
7789
  "This is default currency that showing at your website. Specific payment gateway(s) can support "
7790
  "or does not suport it."
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
 
7798
+ #: core/lib/wpbc_all_translations.php:1500 inc/gateways/page-gateways.php:180
7799
  msgid "Check and configure currency at each activated payment gateway."
7800
  msgstr ""
7801
 
7802
+ #: core/lib/wpbc_all_translations.php:1501 inc/gateways/page-gateways.php:190
7803
  msgid "Currency Position"
7804
  msgstr ""
7805
 
7806
+ #: core/lib/wpbc_all_translations.php:1502 inc/gateways/page-gateways.php:191
7807
  msgid "Set position of the currency symbol."
7808
  msgstr ""
7809
 
7810
+ #: core/lib/wpbc_all_translations.php:1503 inc/gateways/page-gateways.php:194
7811
  msgid "Left"
7812
  msgstr ""
7813
 
7814
+ #: core/lib/wpbc_all_translations.php:1504 inc/gateways/page-gateways.php:198
7815
  msgid "Right"
7816
  msgstr ""
7817
 
7818
+ #: core/lib/wpbc_all_translations.php:1505 inc/gateways/page-gateways.php:202
7819
  msgid "Left with space"
7820
  msgstr ""
7821
 
7822
+ #: core/lib/wpbc_all_translations.php:1506 inc/gateways/page-gateways.php:206
7823
  msgid "Right with space"
7824
  msgstr ""
7825
 
7826
+ #: core/lib/wpbc_all_translations.php:1507 inc/gateways/page-gateways.php:225
7827
  msgid "Currency format"
7828
  msgstr ""
7829
 
7830
+ #: core/lib/wpbc_all_translations.php:1508 inc/gateways/page-gateways.php:226
7831
  msgid "Number of decimal points"
7832
  msgstr ""
7833
 
7834
+ #: core/lib/wpbc_all_translations.php:1509 inc/gateways/page-gateways.php:233
7835
  #: inc/gateways/page-gateways.php:248
7836
  msgid "No separator"
7837
  msgstr ""
7838
 
7839
+ #: core/lib/wpbc_all_translations.php:1510 inc/gateways/page-gateways.php:234
7840
  #: inc/gateways/page-gateways.php:249
7841
  msgid "Space"
7842
  msgstr ""
7843
 
7844
+ #: core/lib/wpbc_all_translations.php:1511 inc/gateways/page-gateways.php:235
7845
  #: inc/gateways/page-gateways.php:250
7846
  msgid "Dot"
7847
  msgstr ""
7848
 
7849
+ #: core/lib/wpbc_all_translations.php:1512 inc/gateways/page-gateways.php:236
7850
  #: inc/gateways/page-gateways.php:251
7851
  msgid "Comma"
7852
  msgstr ""
7853
 
7854
+ #: core/lib/wpbc_all_translations.php:1513 inc/gateways/page-gateways.php:241
7855
  msgid "Separator for the decimal point"
7856
  msgstr ""
7857
 
7858
+ #: core/lib/wpbc_all_translations.php:1514 inc/gateways/page-gateways.php:256
7859
  msgid "Thousands separator"
7860
  msgstr ""
7861
 
7862
+ #: core/lib/wpbc_all_translations.php:1515 inc/gateways/page-gateways.php:269
7863
  msgid "Please select"
7864
  msgstr ""
7865
 
7866
+ #: core/lib/wpbc_all_translations.php:1516 inc/gateways/page-gateways.php:280
7867
  msgid ""
7868
  "Please select a field from your booking form. This field will be automatically assigned to the "
7869
  "current field in the billing form."
7870
  msgstr ""
7871
 
7872
+ #: core/lib/wpbc_all_translations.php:1517 inc/gateways/page-gateways.php:292
7873
  msgid "Customer Email"
7874
  msgstr ""
7875
 
7876
+ #: core/lib/wpbc_all_translations.php:1518 inc/gateways/page-gateways.php:300
7877
  msgid "First Name(s)"
7878
  msgstr ""
7879
 
7880
+ #: core/lib/wpbc_all_translations.php:1519 inc/gateways/page-gateways.php:308
7881
  msgid "Last name"
7882
  msgstr ""
7883
 
7884
+ #: core/lib/wpbc_all_translations.php:1520 inc/gateways/page-gateways.php:324
7885
  msgid "Billing Address"
7886
  msgstr ""
7887
 
7888
+ #: core/lib/wpbc_all_translations.php:1521 inc/gateways/page-gateways.php:332
7889
  msgid "Billing City"
7890
  msgstr ""
7891
 
7892
+ #: core/lib/wpbc_all_translations.php:1522 inc/gateways/page-gateways.php:349
7893
  msgid "Post Code"
7894
  msgstr ""
7895
 
7896
+ #: core/lib/wpbc_all_translations.php:1523 inc/gateways/page-gateways.php:357
7897
  msgid "State"
7898
  msgstr ""
7899
 
7900
+ #: core/lib/wpbc_all_translations.php:1524 inc/gateways/page-gateways.php:369
7901
  msgid "Show booking details in payment form"
7902
  msgstr ""
7903
 
7904
+ #: core/lib/wpbc_all_translations.php:1525 inc/gateways/page-gateways.php:370
7905
  #, php-format
7906
  msgid ""
7907
  " Check this checkbox if you want to show the %sbooking details summary%s above the payment form"
7908
  msgstr ""
7909
 
7910
+ #: core/lib/wpbc_all_translations.php:1526 inc/gateways/page-gateways.php:381
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 ""
8019
 
8020
+ #: core/lib/wpbc_all_translations.php:1551 inc/gateways/pay_cash/wpbc-gw-pay_cash.php:204
8021
  #: inc/gateways/pay_cash/wpbc-gw-pay_cash.php:282 inc/gateways/pay_cash/wpbc-gw-pay_cash.php:283
8022
  msgid "Pay in Cash"
8023
  msgstr ""
8024
 
8025
+ #: core/lib/wpbc_all_translations.php:1552 inc/gateways/pay_cash/wpbc-gw-pay_cash.php:284
8026
  msgid "Integration of Pay in Cash payment system"
8027
  msgstr ""
8028
 
8029
+ #: core/lib/wpbc_all_translations.php:1553 inc/gateways/pay_cash/wpbc-gw-pay_cash.php:362
8030
  #, php-format
8031
  msgid "If you accept %scash payment%s, you can write details about it here"
8032
  msgstr ""
8033
 
8034
+ #: core/lib/wpbc_all_translations.php:1554 inc/gateways/pay_cash/wpbc-gw-pay_cash.php:523
8035
  #, php-format
8036
  msgid "Dear %sPay in cash %s for your booking %s on check in %sFor reference your booking ID: %s"
8037
  msgstr ""
8038
 
8039
+ #: core/lib/wpbc_all_translations.php:1555 inc/gateways/paypal/ipn.php:120
8040
  msgid "Error IPN"
8041
  msgstr ""
8042
 
8043
+ #: core/lib/wpbc_all_translations.php:1556 inc/gateways/paypal/ipn.php:241
8044
  msgid "Verified IPN"
8045
  msgstr ""
8046
 
8047
+ #: core/lib/wpbc_all_translations.php:1557 inc/gateways/paypal/ipn.php:264
8048
  msgid "Invalid IPN"
8049
  msgstr ""
8050
 
8051
+ #: core/lib/wpbc_all_translations.php:1558 inc/gateways/paypal/wpbc-gw-paypal.php:313
8052
  msgid "Make payments with payPal - its fast, free and secure!"
8053
  msgstr ""
8054
 
8055
+ #: core/lib/wpbc_all_translations.php:1559 inc/gateways/paypal/wpbc-gw-paypal.php:352
8056
  #: inc/gateways/paypal/wpbc-gw-paypal.php:822
8057
  msgid "Paypal Standard"
8058
  msgstr ""
8059
 
8060
+ #: core/lib/wpbc_all_translations.php:1560 inc/gateways/paypal/wpbc-gw-paypal.php:356
8061
  #: inc/gateways/paypal/wpbc-gw-paypal.php:822
8062
  msgid "Paypal Pro Hosted Solution"
8063
  msgstr ""
8064
 
8065
+ #: core/lib/wpbc_all_translations.php:1561 inc/gateways/paypal/wpbc-gw-paypal.php:363
8066
  msgid "Account Type"
8067
  msgstr ""
8068
 
8069
+ #: core/lib/wpbc_all_translations.php:1562 inc/gateways/paypal/wpbc-gw-paypal.php:375
8070
  msgid "Paypal Email address to receive payments"
8071
  msgstr ""
8072
 
8073
+ #: core/lib/wpbc_all_translations.php:1563 inc/gateways/paypal/wpbc-gw-paypal.php:377
8074
  msgid "This is the Paypal Email address where payments will be sent"
8075
  msgstr ""
8076
 
8077
+ #: core/lib/wpbc_all_translations.php:1564 inc/gateways/paypal/wpbc-gw-paypal.php:391
8078
  msgid "Secure Merchant ID"
8079
  msgstr ""
8080
 
8081
+ #: core/lib/wpbc_all_translations.php:1565 inc/gateways/paypal/wpbc-gw-paypal.php:393
8082
  msgid "This is the Secure Merchant ID, which can be found on the profile page"
8083
  msgstr ""
8084
 
8085
+ #: core/lib/wpbc_all_translations.php:1566 inc/gateways/paypal/wpbc-gw-paypal.php:408
8086
  msgid ""
8087
  " Indicates whether the transaction is payment on a final sale or an authorization for a final "
8088
  "sale, to be captured later. "
8089
  msgstr ""
8090
 
8091
+ #: core/lib/wpbc_all_translations.php:1567 inc/gateways/paypal/wpbc-gw-paypal.php:412
8092
  msgid "Sale"
8093
  msgstr ""
8094
 
8095
+ #: core/lib/wpbc_all_translations.php:1568 inc/gateways/paypal/wpbc-gw-paypal.php:413
8096
  msgid "Authorization"
8097
  msgstr ""
8098
 
8099
+ #: core/lib/wpbc_all_translations.php:1569 inc/gateways/paypal/wpbc-gw-paypal.php:424
8100
  msgid " Select using test (Sandbox Test Environment) or live PayPal payment."
8101
  msgstr ""
8102
 
8103
+ #: core/lib/wpbc_all_translations.php:1570 inc/gateways/paypal/wpbc-gw-paypal.php:430
8104
  msgid "Sandbox"
8105
  msgstr ""
8106
 
8107
+ #: core/lib/wpbc_all_translations.php:1571 inc/gateways/paypal/wpbc-gw-paypal.php:440
8108
  msgid "British Pound"
8109
  msgstr ""
8110
 
8111
+ #: core/lib/wpbc_all_translations.php:1572 inc/gateways/paypal/wpbc-gw-paypal.php:441
8112
  msgid "Japanese Yen"
8113
  msgstr ""
8114
 
8115
+ #: core/lib/wpbc_all_translations.php:1573 inc/gateways/paypal/wpbc-gw-paypal.php:442
8116
  #: inc/gateways/sage/wpbc-gw-sage.php:455
8117
  msgid "Australian Dollars"
8118
  msgstr ""
8119
 
8120
+ #: core/lib/wpbc_all_translations.php:1574 inc/gateways/paypal/wpbc-gw-paypal.php:444
8121
  #: inc/gateways/sage/wpbc-gw-sage.php:457
8122
  msgid "New Zealand Dollar"
8123
  msgstr ""
8124
 
8125
+ #: core/lib/wpbc_all_translations.php:1575 inc/gateways/paypal/wpbc-gw-paypal.php:445
8126
  #: inc/gateways/sage/wpbc-gw-sage.php:458
8127
  msgid "Swiss Franc"
8128
  msgstr ""
8129
 
8130
+ #: core/lib/wpbc_all_translations.php:1576 inc/gateways/paypal/wpbc-gw-paypal.php:446
8131
  #: inc/gateways/sage/wpbc-gw-sage.php:459
8132
  msgid "Hong Kong Dollar"
8133
  msgstr ""
8134
 
8135
+ #: core/lib/wpbc_all_translations.php:1577 inc/gateways/paypal/wpbc-gw-paypal.php:447
8136
  #: inc/gateways/sage/wpbc-gw-sage.php:460
8137
  msgid "Singapore Dollar"
8138
  msgstr ""
8139
 
8140
+ #: core/lib/wpbc_all_translations.php:1578 inc/gateways/paypal/wpbc-gw-paypal.php:448
8141
  #: inc/gateways/sage/wpbc-gw-sage.php:461
8142
  msgid "Swedish Krona"
8143
  msgstr ""
8144
 
8145
+ #: core/lib/wpbc_all_translations.php:1579 inc/gateways/paypal/wpbc-gw-paypal.php:449
8146
  #: inc/gateways/sage/wpbc-gw-sage.php:462
8147
  msgid "Danish Krone"
8148
  msgstr ""
8149
 
8150
+ #: core/lib/wpbc_all_translations.php:1580 inc/gateways/paypal/wpbc-gw-paypal.php:450
8151
  #: inc/gateways/sage/wpbc-gw-sage.php:463
8152
  msgid "Polish Zloty"
8153
  msgstr ""
8154
 
8155
+ #: core/lib/wpbc_all_translations.php:1581 inc/gateways/paypal/wpbc-gw-paypal.php:451
8156
  #: inc/gateways/sage/wpbc-gw-sage.php:464
8157
  msgid "Norwegian Krone"
8158
  msgstr ""
8159
 
8160
+ #: core/lib/wpbc_all_translations.php:1582 inc/gateways/paypal/wpbc-gw-paypal.php:452
8161
  #: inc/gateways/sage/wpbc-gw-sage.php:465
8162
  msgid "Hungarian Forint"
8163
  msgstr ""
8164
 
8165
+ #: core/lib/wpbc_all_translations.php:1583 inc/gateways/paypal/wpbc-gw-paypal.php:453
8166
  #: inc/gateways/sage/wpbc-gw-sage.php:466
8167
  msgid "Czech Koruna"
8168
  msgstr ""
8169
 
8170
+ #: core/lib/wpbc_all_translations.php:1584 inc/gateways/paypal/wpbc-gw-paypal.php:454
8171
  msgid "Israeli New Shekel"
8172
  msgstr ""
8173
 
8174
+ #: core/lib/wpbc_all_translations.php:1585 inc/gateways/paypal/wpbc-gw-paypal.php:455
8175
  #: inc/gateways/sage/wpbc-gw-sage.php:468
8176
  msgid "Mexican Peso"
8177
  msgstr ""
8178
 
8179
+ #: core/lib/wpbc_all_translations.php:1586 inc/gateways/paypal/wpbc-gw-paypal.php:456
8180
  #: inc/gateways/sage/wpbc-gw-sage.php:469
8181
  msgid "Brazilian Real (only for Brazilian users)"
8182
  msgstr ""
8183
 
8184
+ #: core/lib/wpbc_all_translations.php:1587 inc/gateways/paypal/wpbc-gw-paypal.php:457
8185
  #: inc/gateways/sage/wpbc-gw-sage.php:470
8186
  msgid "Malaysian Ringgits (only for Malaysian users)"
8187
  msgstr ""
8188
 
8189
+ #: core/lib/wpbc_all_translations.php:1588 inc/gateways/paypal/wpbc-gw-paypal.php:459
8190
  #: inc/gateways/sage/wpbc-gw-sage.php:472
8191
  msgid "Taiwan New Dollars"
8192
  msgstr ""
8193
 
8194
+ #: core/lib/wpbc_all_translations.php:1589 inc/gateways/paypal/wpbc-gw-paypal.php:460
8195
  #: inc/gateways/sage/wpbc-gw-sage.php:473
8196
  msgid "Thai Baht"
8197
  msgstr ""
8198
 
8199
+ #: core/lib/wpbc_all_translations.php:1590 inc/gateways/paypal/wpbc-gw-paypal.php:461
8200
  msgid "Turkish Lira (only for Turkish members)"
8201
  msgstr ""
8202
 
8203
+ #: core/lib/wpbc_all_translations.php:1591 inc/gateways/paypal/wpbc-gw-paypal.php:480
8204
  msgid "Custom button title"
8205
  msgstr ""
8206
 
8207
+ #: core/lib/wpbc_all_translations.php:1592 inc/gateways/paypal/wpbc-gw-paypal.php:487
8208
  msgid "Payment Button type"
8209
  msgstr ""
8210
 
8211
+ #: core/lib/wpbc_all_translations.php:1593 inc/gateways/paypal/wpbc-gw-paypal.php:542
8212
  msgid "Show Reference Text Box"
8213
  msgstr ""
8214
 
8215
+ #: core/lib/wpbc_all_translations.php:1594 inc/gateways/paypal/wpbc-gw-paypal.php:543
8216
  msgid "Check this box to show Reference Text Box"
8217
  msgstr ""
8218
 
8219
+ #: core/lib/wpbc_all_translations.php:1595 inc/gateways/paypal/wpbc-gw-paypal.php:551
8220
  #: inc/gateways/paypal/wpbc-gw-paypal.php:552 inc/gateways/paypal/wpbc-gw-paypal.php:1331
8221
  msgid "Enter your phone number"
8222
  msgstr ""
8223
 
8224
+ #: core/lib/wpbc_all_translations.php:1596 inc/gateways/paypal/wpbc-gw-paypal.php:553
8225
  msgid "Reference Text Box Title"
8226
  msgstr ""
8227
 
8228
+ #: core/lib/wpbc_all_translations.php:1597 inc/gateways/paypal/wpbc-gw-paypal.php:554
8229
  msgid ""
8230
  "Enter a title for the Reference text box (i.e. Your email address). Visitors will see this text."
8231
  msgstr ""
8232
 
8233
+ #: core/lib/wpbc_all_translations.php:1598 inc/gateways/paypal/wpbc-gw-paypal.php:575
8234
  msgid "Return URL from PayPal"
8235
  msgstr ""
8236
 
8237
+ #: core/lib/wpbc_all_translations.php:1599 inc/gateways/paypal/wpbc-gw-paypal.php:606
8238
  msgid "Cancel Return URL from PayPal"
8239
  msgstr ""
8240
 
8241
+ #: core/lib/wpbc_all_translations.php:1600 inc/gateways/paypal/wpbc-gw-paypal.php:657
8242
  #, php-format
8243
  msgid "To use this feature you %smust activate auto-return link%s at your Paypal account."
8244
  msgstr ""
8245
 
8246
+ #: core/lib/wpbc_all_translations.php:1601 inc/gateways/paypal/wpbc-gw-paypal.php:658
8247
  msgid "Follow these steps to configure it:"
8248
  msgstr ""
8249
 
8250
+ #: core/lib/wpbc_all_translations.php:1602 inc/gateways/paypal/wpbc-gw-paypal.php:660
8251
  msgid "Log in to your PayPal account."
8252
  msgstr ""
8253
 
8254
+ #: core/lib/wpbc_all_translations.php:1603 inc/gateways/paypal/wpbc-gw-paypal.php:661
8255
  msgid "Click the Profile subtab."
8256
  msgstr ""
8257
 
8258
+ #: core/lib/wpbc_all_translations.php:1604 inc/gateways/paypal/wpbc-gw-paypal.php:662
8259
  msgid "Click Website Payment Preferences in the Seller Preferences column."
8260
  msgstr ""
8261
 
8262
+ #: core/lib/wpbc_all_translations.php:1605 inc/gateways/paypal/wpbc-gw-paypal.php:663
8263
  msgid "Under Auto Return for Website Payments, click the On radio button."
8264
  msgstr ""
8265
 
8266
+ #: core/lib/wpbc_all_translations.php:1606 inc/gateways/paypal/wpbc-gw-paypal.php:664
8267
  msgid "For the Return URL, enter the Return URL from PayPal on your site for successfull payment."
8268
  msgstr ""
8269
 
8270
+ #: core/lib/wpbc_all_translations.php:1607 inc/gateways/paypal/wpbc-gw-paypal.php:673
8271
  msgid ""
8272
  "Instant Payment Notification (IPN) is a message service that notifies you of events related to "
8273
  "PayPal transactions"
8274
  msgstr ""
8275
 
8276
+ #: core/lib/wpbc_all_translations.php:1608 inc/gateways/paypal/wpbc-gw-paypal.php:682
8277
  msgid "Sending email for verified transaction"
8278
  msgstr ""
8279
 
8280
+ #: core/lib/wpbc_all_translations.php:1609 inc/gateways/paypal/wpbc-gw-paypal.php:692
8281
  #, php-format
8282
  msgid "Email for getting report for %sverified%s transactions."
8283
  msgstr ""
8284
 
8285
+ #: core/lib/wpbc_all_translations.php:1610 inc/gateways/paypal/wpbc-gw-paypal.php:705
8286
  msgid "Sending email for invalid transaction"
8287
  msgstr ""
8288
 
8289
+ #: core/lib/wpbc_all_translations.php:1611 inc/gateways/paypal/wpbc-gw-paypal.php:715
8290
  #, php-format
8291
  msgid "Email for getting report for %sinvalid%s transactions."
8292
  msgstr ""
8293
 
8294
+ #: core/lib/wpbc_all_translations.php:1612 inc/gateways/paypal/wpbc-gw-paypal.php:728
8295
  msgid "Sending email if error occur during verification"
8296
  msgstr ""
8297
 
8298
+ #: core/lib/wpbc_all_translations.php:1613 inc/gateways/paypal/wpbc-gw-paypal.php:738
8299
  #, php-format
8300
  msgid "Email for getting report for %ssome errors in verification process%s."
8301
  msgstr ""
8302
 
8303
+ #: core/lib/wpbc_all_translations.php:1614 inc/gateways/paypal/wpbc-gw-paypal.php:750
8304
  msgid "Use SSL connection"
8305
  msgstr ""
8306
 
8307
+ #: core/lib/wpbc_all_translations.php:1615 inc/gateways/paypal/wpbc-gw-paypal.php:751
8308
  msgid "Use the SSL connection for posting data, instead of standard HTTP connection"
8309
  msgstr ""
8310
 
8311
+ #: core/lib/wpbc_all_translations.php:1616 inc/gateways/paypal/wpbc-gw-paypal.php:758
8312
  msgid "Use cURL posting"
8313
  msgstr ""
8314
 
8315
+ #: core/lib/wpbc_all_translations.php:1617 inc/gateways/paypal/wpbc-gw-paypal.php:759
8316
  msgid "Use the cURL for posting data, instead of fsockopen() function"
8317
  msgstr ""
8318
 
8319
+ #: core/lib/wpbc_all_translations.php:1618 inc/gateways/paypal/wpbc-gw-paypal.php:775
8320
  msgid " Follow these instructions to set up your listener at your PayPal account:"
8321
  msgstr ""
8322
 
8323
+ #: core/lib/wpbc_all_translations.php:1619 inc/gateways/paypal/wpbc-gw-paypal.php:777
8324
  msgid "Click Profile on the My Account tab."
8325
  msgstr ""
8326
 
8327
+ #: core/lib/wpbc_all_translations.php:1620 inc/gateways/paypal/wpbc-gw-paypal.php:778
8328
  msgid "Click Instant Payment Notification Preferences in the Selling Preferences column."
8329
  msgstr ""
8330
 
8331
+ #: core/lib/wpbc_all_translations.php:1621 inc/gateways/paypal/wpbc-gw-paypal.php:779
8332
  msgid "Click Choose IPN Settings to specify your listeners URL and activate the listener."
8333
  msgstr ""
8334
 
8335
+ #: core/lib/wpbc_all_translations.php:1622 inc/gateways/paypal/wpbc-gw-paypal.php:780
8336
  msgid "Specify the URL for your listener in the Notification URL field as:"
8337
  msgstr ""
8338
 
8339
+ #: core/lib/wpbc_all_translations.php:1623 inc/gateways/paypal/wpbc-gw-paypal.php:782
8340
  msgid "Click Receive IPN messages (Enabled) to enable your listener."
8341
  msgstr ""
8342
 
8343
+ #: core/lib/wpbc_all_translations.php:1624 inc/gateways/paypal/wpbc-gw-paypal.php:783
8344
  msgid "Click Save."
8345
  msgstr ""
8346
 
8347
+ #: core/lib/wpbc_all_translations.php:1625 inc/gateways/paypal/wpbc-gw-paypal.php:784
8348
  msgid "Click Back to Profile Summary to return to the Profile after activating your listener."
8349
  msgstr ""
8350
 
8351
+ #: core/lib/wpbc_all_translations.php:1626 inc/gateways/paypal/wpbc-gw-paypal.php:946
8352
  msgid "PayPal"
8353
  msgstr ""
8354
 
8355
+ #: core/lib/wpbc_all_translations.php:1627 inc/gateways/paypal/wpbc-gw-paypal.php:948
8356
  msgid "Integration of Paypal payment system"
8357
  msgstr ""
8358
 
8359
+ #: core/lib/wpbc_all_translations.php:1628 inc/gateways/paypal/wpbc-gw-paypal.php:1069
8360
  msgid "PayPal IPN"
8361
  msgstr ""
8362
 
8363
+ #: core/lib/wpbc_all_translations.php:1629 inc/gateways/sage/wpbc-gw-sage.php:355
8364
  #, php-format
8365
  msgid "Pay using %s payment service"
8366
  msgstr ""
8367
 
8368
+ #: core/lib/wpbc_all_translations.php:1630 inc/gateways/sage/wpbc-gw-sage.php:395
8369
  msgid "Vendor Name"
8370
  msgstr ""
8371
 
8372
+ #: core/lib/wpbc_all_translations.php:1631 inc/gateways/sage/wpbc-gw-sage.php:397
8373
  msgid "Set this value to the Vendor Name assigned to you by Sage Pay or chosen when you applied."
8374
  msgstr ""
8375
 
8376
+ #: core/lib/wpbc_all_translations.php:1632 inc/gateways/sage/wpbc-gw-sage.php:410
8377
  msgid "XOR Encryption password"
8378
  msgstr ""
8379
 
8380
+ #: core/lib/wpbc_all_translations.php:1633 inc/gateways/sage/wpbc-gw-sage.php:412
8381
  msgid "Set this value to the XOR Encryption password assigned to you by Sage Pay"
8382
  msgstr ""
8383
 
8384
+ #: core/lib/wpbc_all_translations.php:1634 inc/gateways/ideal/wpbc-gw-ideal.php:420
8385
  #: inc/gateways/sage/wpbc-gw-sage.php:425
8386
  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
 
8400
+ #: core/lib/wpbc_all_translations.php:1637 inc/gateways/sage/wpbc-gw-sage.php:439
8401
  msgid "This can be DEFERRED or AUTHENTICATED if your Sage Pay account supports those payment types"
8402
  msgstr ""
8403
 
8404
+ #: core/lib/wpbc_all_translations.php:1638 inc/gateways/sage/wpbc-gw-sage.php:443
8405
  msgid "PAYMENT"
8406
  msgstr ""
8407
 
8408
+ #: core/lib/wpbc_all_translations.php:1639 inc/gateways/sage/wpbc-gw-sage.php:444
8409
  msgid "DEFERRED"
8410
  msgstr ""
8411
 
8412
+ #: core/lib/wpbc_all_translations.php:1640 inc/gateways/sage/wpbc-gw-sage.php:445
8413
  msgid "AUTHENTICATE"
8414
  msgstr ""
8415
 
8416
+ #: core/lib/wpbc_all_translations.php:1641 inc/gateways/sage/wpbc-gw-sage.php:454
8417
  msgid "Yen"
8418
  msgstr ""
8419
 
8420
+ #: core/lib/wpbc_all_translations.php:1642 inc/gateways/sage/wpbc-gw-sage.php:467
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
 
8442
+ #: core/lib/wpbc_all_translations.php:1647 inc/gateways/ideal/wpbc-gw-ideal.php:388
8443
  msgid "Merchant ID"
8444
  msgstr ""
8445
 
8446
+ #: core/lib/wpbc_all_translations.php:1648 inc/gateways/ideal/wpbc-gw-ideal.php:390
8447
  msgid "Enter your iDEAL Merchant ID"
8448
  msgstr ""
8449
 
8450
+ #: core/lib/wpbc_all_translations.php:1649 inc/gateways/ideal/wpbc-gw-ideal.php:405
8451
  msgid "Enter your iDEAL Merchant Key."
8452
  msgstr ""
8453
 
8454
+ #: core/lib/wpbc_all_translations.php:1650 inc/gateways/ideal/wpbc-gw-ideal.php:423
8455
  #, php-format
8456
  msgid "Test mode requires the option %s to be selected in the %s account configuration section %s"
8457
  msgstr ""
8458
 
8459
+ #: core/lib/wpbc_all_translations.php:1651 inc/gateways/ideal/wpbc-gw-ideal.php:424
8460
  msgid "Test with Simulator"
8461
  msgstr ""
8462
 
8463
+ #: core/lib/wpbc_all_translations.php:1652 inc/gateways/ideal/wpbc-gw-ideal.php:426
8464
  msgid "My Profile – Connection"
8465
  msgstr ""
8466
 
8467
+ #: core/lib/wpbc_all_translations.php:1653 inc/gateways/ideal/wpbc-gw-ideal.php:482
8468
  #, php-format
8469
  msgid ""
8470
  "If not supplied then the description as configured in the administration/management portal "
8472
  "be applied."
8473
  msgstr ""
8474
 
8475
+ #: core/lib/wpbc_all_translations.php:1654 inc/gateways/ideal/wpbc-gw-ideal.php:483
8476
  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 ""
8484
 
8485
+ #: core/lib/wpbc_all_translations.php:1656 inc/gateways/ideal/wpbc-gw-ideal.php:893
8486
  #, php-format
8487
  msgid "Processing your %s payments through %s"
8488
  msgstr ""
8489
 
8490
+ #: core/lib/wpbc_all_translations.php:1657 core/wpbc-emails.php:258
8491
  #, php-format
8492
  msgid "%s - inserting link for export booking to"
8493
  msgstr ""
8494
 
8495
+ #: core/lib/wpbc_all_translations.php:1658 inc/_ps/admin/br-table-export-feeds.php:176
8496
  msgid ".ics Feed URL"
8497
  msgstr ""
8498
 
8499
+ #: core/lib/wpbc_all_translations.php:1659 core/wpbc-emails.php:245 core/wpbc-emails.php:246
8500
  #: core/wpbc-emails.php:247 core/wpbc-emails.php:248 core/wpbc-emails.php:249
8501
  #: core/wpbc-emails.php:250 core/wpbc-emails.php:251
8502
  #, php-format
8503
  msgid "%s - inserting modification date of booking "
8504
  msgstr ""
8505
 
8506
+ #: core/lib/wpbc_all_translations.php:1660 inc/_ps/form/class-wpbc-form-help.php:687
8507
  msgid "Coupon discount value of the booking."
8508
  msgstr ""
8509
 
8510
+ #: core/lib/wpbc_all_translations.php:1661 inc/gateways/stripe/stripe-charge.php:381
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 ""
8541
 
8542
+ #: core/lib/wpbc_all_translations.php:1668 inc/_bl/admin/page-search.php:133
8543
  #, php-format
8544
  msgid "%s - ID of booking resource, "
8545
  msgstr ""
8546
 
8547
+ #: core/lib/wpbc_all_translations.php:1669 inc/_bl/admin/page-search.php:134
8548
  #, php-format
8549
  msgid "%s - ID of page with booking form, "
8550
  msgstr ""
8551
 
8552
+ #: core/lib/wpbc_all_translations.php:1670 inc/_bs/admin/page-email-payment.php:698
8553
  msgid "Email with Payment Request which is sent to Visitor."
8554
  msgstr ""
8555
 
8556
+ #: core/lib/wpbc_all_translations.php:1671 inc/_ps/admin/page-email-edit.php:558
8557
  msgid "Customization of email template, which is sent after modification of booking"
8558
  msgstr ""
8559
 
8560
+ #: core/lib/wpbc_all_translations.php:1672 inc/_ps/admin/page-email-edit.php:694
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
 
8572
+ #: core/lib/wpbc_all_translations.php:1675 core/wpbc-emails.php:265
8573
  #, php-format
8574
  msgid ""
8575
  "%s - inserting link to the page where visitor can see listing of own bookings, (possible to use "
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
 
8583
+ #: core/lib/wpbc_all_translations.php:1677 inc/_bm/admin/api-settings-m.php:275
8584
  msgid "Show booking details in tooltip"
8585
  msgstr ""
8586
 
8587
+ #: core/lib/wpbc_all_translations.php:1678 inc/_bm/admin/api-settings-m.php:276
8588
  #, php-format
8589
  msgid ""
8590
  "Check this box to display booking details with a tooltip, when mouse hovers over each day on the "
8591
  "calendar(s). %sIts works only for bookings for specific timeslot(s)!%s"
8592
  msgstr ""
8593
 
8594
+ #: core/lib/wpbc_all_translations.php:1679 inc/_bm/admin/api-settings-m.php:284
8595
  msgid "Booking details"
8596
  msgstr ""
8597
 
8598
+ #: core/lib/wpbc_all_translations.php:1680 inc/_bm/admin/api-settings-m.php:285
8599
  msgid "You can use the shortcodes from the bottom form of Settings Fields page."
8600
  msgstr ""
8601
 
8602
+ #: core/lib/wpbc_all_translations.php:1681 inc/_bm/admin/api-settings-m.php:299
8603
  msgid "This option can impact to speed of page loading."
8604
  msgstr ""
8605
 
8606
+ #: core/lib/wpbc_all_translations.php:1682 inc/_bm/admin/page-cost-advanced.php:680
8607
  msgid ""
8608
  "Use arithmetic expressions in cost configurations, including fields shortcodes and simple "
8609
  "mathematics operations"
8610
  msgstr ""
8611
 
8612
+ #: core/lib/wpbc_all_translations.php:1683 inc/_bm/admin/page-cost-advanced.php:682
8613
  #, php-format
8614
  msgid "if selected %s"
8615
  msgstr ""
8616
 
8617
+ #: core/lib/wpbc_all_translations.php:1684 inc/_bs/admin/api-settings-s.php:304
8618
  msgid "Set check out date as available"
8619
  msgstr ""
8620
 
8621
+ #: core/lib/wpbc_all_translations.php:1685 inc/_bs/admin/api-settings-s.php:305
8622
  msgid "Check this option, to remove last selected day of saving to booking."
8623
  msgstr ""
8624
 
8625
+ #: core/lib/wpbc_all_translations.php:1686 inc/_bs/admin/api-settings-s.php:489
8626
  msgid "Auto approve bookings during import"
8627
  msgstr ""
8628
 
8629
+ #: core/lib/wpbc_all_translations.php:1687 inc/_bs/admin/api-settings-s.php:490
8630
  #, php-format
8631
  msgid ""
8632
  "Check this checkbox to activate auto approve of all bookings %sduring import from external "
8633
  "source(s)%s."
8634
  msgstr ""
8635
 
8636
+ #: core/lib/wpbc_all_translations.php:1688 inc/_bs/admin/api-settings-s.php:497
8637
  msgid "Auto approve booking, if booking cost is zero"
8638
  msgstr ""
8639
 
8640
+ #: core/lib/wpbc_all_translations.php:1689 inc/_bs/admin/api-settings-s.php:498
8641
  #, php-format
8642
  msgid "Check this checkbox to activate auto approve of booking, %swhen cost of booking is zero%s."
8643
  msgstr ""
8644
 
8645
+ #: core/lib/wpbc_all_translations.php:1690 inc/_bs/admin/api-settings-s.php:505
8646
  msgid "Auto approve bookings after creation booking in admin panel"
8647
  msgstr ""
8648
 
8649
+ #: core/lib/wpbc_all_translations.php:1691 inc/_bs/admin/api-settings-s.php:506
8650
  #, php-format
8651
  msgid ""
8652
  "Check this checkbox to activate auto approve of booking, %sif booking was made in admin panel%s."
8653
  msgstr ""
8654
 
8655
+ #: core/lib/wpbc_all_translations.php:1692 inc/_mu/admin/api-settings-u.php:62
8656
  msgid "Activate custom booking forms for regular users"
8657
  msgstr ""
8658
 
8659
+ #: core/lib/wpbc_all_translations.php:1693 inc/_mu/admin/api-settings-u.php:63
8660
  msgid "Check this box if you want to use multiple custom booking forms for activated regular users"
8661
  msgstr ""
8662
 
8663
+ #: core/lib/wpbc_all_translations.php:1694 inc/_ps/admin/api-settings-p.php:108
8664
  msgid "Start / End time for Calendar Overview"
8665
  msgstr ""
8666
 
8667
+ #: core/lib/wpbc_all_translations.php:1695 inc/_ps/admin/api-settings-p.php:156
8668
  #, php-format
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."
8689
  msgstr ""
8690
 
8691
+ #: core/lib/wpbc_all_translations.php:1700 inc/gateways/page-gateways.php:105
8692
  msgid "Do not show payment form, after submit booking form"
8693
  msgstr ""
8694
 
8695
+ #: core/lib/wpbc_all_translations.php:1701 inc/gateways/page-gateways.php:106
8696
  msgid "Check this box if you want to show payment form only after sending payment request by email"
8697
  msgstr ""
8698
 
8699
+ #: core/lib/wpbc_all_translations.php:1702 inc/gateways/page-gateways.php:115
8700
  msgid "Auto send payment request after creation booking in admin panel"
8701
  msgstr ""
8702
 
8703
+ #: core/lib/wpbc_all_translations.php:1703 inc/gateways/page-gateways.php:116
8704
  msgid ""
8705
  "Check this box if you want automatically send payment request to visitor, if booking was made in "
8706
  "admin panel"
8707
  msgstr ""
8708
 
8709
+ #: core/lib/wpbc_all_translations.php:1704 inc/gateways/page-gateways.php:129
8710
  msgid "Show deposit and total booking cost together"
8711
  msgstr ""
8712
 
8713
+ #: core/lib/wpbc_all_translations.php:1705 inc/gateways/page-gateways.php:130
8714
  msgid ""
8715
  "Check this box if you want to show deposit amount and total booking cost, after submit of "
8716
  "booking."
8717
  msgstr ""
8718
 
8719
+ #: core/lib/wpbc_all_translations.php:1706 inc/gateways/page-gateways.php:142
8720
  msgid ""
8721
  "Please note, at admin panel for booking will be saved deposit cost and notes about deposit, do "
8722
  "not depend from the visitor choice of this payment. You need to check each such payment manually!"
8723
  msgstr ""
8724
 
8725
+ #: core/lib/wpbc_all_translations.php:1707 inc/gateways/page-gateways.php:153
8726
  msgid "Send email on cost changes"
8727
  msgstr ""
8728
 
8729
+ #: core/lib/wpbc_all_translations.php:1708 inc/gateways/page-gateways.php:154
8730
  msgid ""
8731
  "Check this box if you want to send booking modification email, if cost of booking was edited in "
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
 
8740
+ #: core/lib/wpbc_all_translations.php:1710 core/wpbc-js.php:141
8741
  msgid "Times:"
8742
  msgstr ""
8743
 
8744
+ #: core/lib/wpbc_all_translations.php:1711 inc/_bm/admin/page-cost-early-late-booking.php:74
8745
  msgid "Set Early / Late Booking"
8746
  msgstr ""
8747
 
8748
+ #: core/lib/wpbc_all_translations.php:1712 inc/_bm/admin/page-cost-early-late-booking.php:139
8749
  #, php-format
8750
  msgid "%sEarly booking discount%s for booking resource"
8751
  msgstr ""
8752
 
8753
+ #: core/lib/wpbc_all_translations.php:1713 inc/_bm/admin/page-cost-early-late-booking.php:157
8754
  #: inc/_bm/admin/page-cost-early-late-booking.php:166
8755
  #: inc/_bm/admin/page-cost-early-late-booking.php:185
8756
  #: inc/_bm/admin/page-cost-early-late-booking.php:358
8759
  msgid "Discount"
8760
  msgstr ""
8761
 
8762
+ #: core/lib/wpbc_all_translations.php:1714 inc/_bm/admin/page-cost-early-late-booking.php:223
8763
  #, php-format
8764
  msgid "Apply discount, only if difference between %stoday%s and %scheck in%s day %smore%s than"
8765
  msgstr ""
8766
 
8767
+ #: core/lib/wpbc_all_translations.php:1715 inc/_bm/admin/page-cost-early-late-booking.php:276
8768
  #: inc/_bm/admin/page-cost-early-late-booking.php:476
8769
  #, php-format
8770
  msgid "Apply discount, only if %scheck in%s day inside of this %sseason filter%s"
8771
  msgstr ""
8772
 
8773
+ #: core/lib/wpbc_all_translations.php:1716 inc/_bm/admin/page-cost-early-late-booking.php:340
8774
  #, php-format
8775
  msgid "%sLast minute booking discount%s for booking resource"
8776
  msgstr ""
8777
 
8778
+ #: core/lib/wpbc_all_translations.php:1717 inc/_bm/admin/page-cost-early-late-booking.php:424
8779
  #, php-format
8780
  msgid "Apply discount, only if difference between %stoday%s and %scheck in%s day %sless%s than"
8781
  msgstr ""
8782
 
8783
+ #: core/lib/wpbc_all_translations.php:1718 inc/_bm/admin/page-cost.php:222
8784
  msgid "Early / Late Booking"
8785
  msgstr ""
8786
 
8787
+ #: core/lib/wpbc_all_translations.php:1719 inc/_bm/admin/page-cost.php:231
8788
  msgid "Set Early / Late Booking Amount"
8789
  msgstr ""
8790
 
8791
+ #: core/lib/wpbc_all_translations.php:1720 inc/_bm/admin/page-cost.php:681
8792
  msgid "Set Early / Late booking discount"
8793
  msgstr ""
8794
 
8795
+ #: core/lib/wpbc_all_translations.php:1721 inc/_bm/admin/page-cost.php:682
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 ""
readme.txt CHANGED
@@ -4,8 +4,8 @@ Donate link: https://wpbookingcalendar.com/buy/
4
  Tags: booking calendar, booking system, availability calendar, events calendar, appointments , booking form, reservation, availability, oplugins, calendar, Booking Calendar, ical
5
  Requires at least: 4.0
6
  Requires PHP: 5.2.4
7
- Tested up to: 4.9
8
- Stable tag: 8.3.2
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -41,6 +41,7 @@ Administrator *(and also your visitors)* will **receive notification email(s)**
41
  - **Responsive** front end and back end design.
42
  - An easy to use **Booking Admin Panel** that displays bookings in **Calendar Overview** or **Listing Table** and lets you manages bookings.
43
  - **Easy to install and integrate** into your site. *For example, using booking button in edit toolbar for configuration and inserting booking shortcode into post or page.*
 
44
 
45
  = PLUG-N-PLAY =
46
  Booking Calendar is built to work out of the box. Just activate it and insert booking shortcode into the post or page and you are ready to receive new bookings. Most of the settings have the predefined values and small descriptions.
@@ -166,35 +167,35 @@ Please see [FAQ](https://wpbookingcalendar.com/faq/).
166
  = Support Languages =
167
 
168
  - English
169
- - German [100% Completed]
170
- - Dutch [100% Completed]
171
- - Danish [100% Completed]
172
- - Greek [100% Completed]
173
- - Bulgarian [100% Completed]
174
- - Hungarian [100% Completed]
175
- - Turkish [100% Completed]
176
- - Italian [98% Completed]
177
- - Swedish [98% Completed]
178
- - Spanish [96% Completed]
179
- - Russian [95% Completed]
180
- - Portugal [94% Completed]
181
- - Galician (Spanish) [94% Completed]
182
- - Finnish [94% Completed]
183
- - Slovenian [94% Completed]
184
- - Thai [94% Completed]
185
- - Norwegian [91% Completed]
186
- - Brazilian Portuguese [91% Completed]
187
- - Hebrew [91% Completed]
188
- - Ukrainian [91% Completed]
189
- - Chinese [91% Completed]
190
- - Chinese (Taiwan) [91% Completed]
191
- - French [91% Completed]
192
- - Polish [89% Completed]
193
- - Czech [77% Completed]
194
- - Slovak [77% Completed]
195
- - Croatian [77% Completed]
196
- - Catalan [77% Completed]
197
- - Arabic [77% Completed]
198
  - Belarussian [9% Completed]
199
 
200
  Please recheck the status of each translation, before using plugin.
@@ -224,20 +225,39 @@ Please see [Video Guides](https://wpbookingcalendar.com/help/).
224
  13. **Time Slots**. Simple configuration of **time slots** selection in booking form.
225
 
226
  == Changelog ==
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
227
  = 8.3.2 =
228
  - Changes in **all** versions:
229
- * **New** Set pending days as available in booking form. You can receive as many bookings as you need to and stop receiving bookings on specific date(s), when you approve some booking on specific date(s). ( 8.3.2.2 )
230
  - Changes in **Personal / Business Small / Business Medium / Business Large / MultiUser** versions:
231
- * **Fix** Show pending days as available in search results during searching availability, if activated "Set pending days as available" option. (8.3.2.2) *(Business Large, MultiUser)*
232
- * **Fix** correct showing booking costs, if the cost was higher than 1000. Especially this issue was in search results during search availability, if in search form was used [cost_hint] shortcode. (8.3.2.1) *(Business Small/Medium/Large, MultiUser)*
233
 
234
  = 8.3.1 =
235
  - Changes in **all** versions:
236
- * **Translation** Polish translation [100% completed] by R.
237
- * **Fix** comment loading "wpbc-migrate.js" script which can make issues in some systems ( depend from jQuery library) (8.3.1.3)
238
  - Changes in **Personal / Business Small / Business Medium / Business Large / MultiUser** versions:
239
- * **Fix** Add ability to use 24:00 time in the time-slots, for ability to book entire day (00:00 - 24:00), and correct cost calculation. Such fix will prevent of showing warning message about not ability to submit the booking, because time booked or already in the past. (8.3.1.1)
240
- * **Fix** issue of correctly checking if the booking approved or not during payment process. (8.3.1.2) *(Business Small/Medium/Large, MultiUser)*
241
 
242
  = 8.3 =
243
  - Changes in **all** versions:
4
  Tags: booking calendar, booking system, availability calendar, events calendar, appointments , booking form, reservation, availability, oplugins, calendar, Booking Calendar, ical
5
  Requires at least: 4.0
6
  Requires PHP: 5.2.4
7
+ Tested up to: 5.0
8
+ Stable tag: 8.4
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
41
  - **Responsive** front end and back end design.
42
  - An easy to use **Booking Admin Panel** that displays bookings in **Calendar Overview** or **Listing Table** and lets you manages bookings.
43
  - **Easy to install and integrate** into your site. *For example, using booking button in edit toolbar for configuration and inserting booking shortcode into post or page.*
44
+ - **Booking Calendar Blocks** for new **Gutenberg Editor** to add booking forms into pages.
45
 
46
  = PLUG-N-PLAY =
47
  Booking Calendar is built to work out of the box. Just activate it and insert booking shortcode into the post or page and you are ready to receive new bookings. Most of the settings have the predefined values and small descriptions.
167
  = Support Languages =
168
 
169
  - English
170
+ - German [97% Completed]
171
+ - Dutch [97% Completed]
172
+ - Danish [97% Completed]
173
+ - Greek [97% Completed]
174
+ - Bulgarian [97% Completed]
175
+ - Hungarian [97% Completed]
176
+ - Polish [97% Completed]
177
+ - Turkish [97% Completed]
178
+ - Finnish [97% Completed]
179
+ - Italian [96% Completed]
180
+ - Swedish [96% Completed]
181
+ - Spanish [94% Completed]
182
+ - Russian [93% Completed]
183
+ - Portugal [92% Completed]
184
+ - Galician (Spanish) [92% Completed]
185
+ - Slovenian [92% Completed]
186
+ - Thai [92% Completed]
187
+ - Norwegian [89% Completed]
188
+ - Brazilian Portuguese [89% Completed]
189
+ - Hebrew [89% Completed]
190
+ - Ukrainian [89% Completed]
191
+ - Chinese [88% Completed]
192
+ - Chinese (Taiwan) [89% Completed]
193
+ - French [89% Completed]
194
+ - Czech [76% Completed]
195
+ - Slovak [76% 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.
225
  13. **Time Slots**. Simple configuration of **time slots** selection in booking form.
226
 
227
  == Changelog ==
228
+ = 8.4 =
229
+ - Changes in **all** versions:
230
+ * **New**. Support Gutenberg editor. New Booking Calendar blocks for integration with new Gutenberg editor in posts and pages. ( 8.3.3.99 )
231
+ * **New**. New Booking Calendar Blocks of Gutenberg editor, which support integration of 'Booking Form', 'Availability Calendar', 'Timeline', 'Selection of booking resources', 'Customer listing of previous bookings', 'Search form', 'Search results', 'Booking form only', 'Booking edit shortcode', 'Showing title of booking resource' ( 8.3.3.99 )
232
+ * **Translation**. Finish translation [99% completed] by by Tero Janhunen
233
+ - Changes in **Personal / Business Small / Business Medium / Business Large / MultiUser** versions:
234
+ * **Improvement** Showing booking detaes selection in dates hints ([selected_short_dates_hint] and [selected_short_timedates_hint]) for additional calendars, if was used 2 or more calendars in one form (8.3.3.3) *(Business Medium/Large, MultiUser)*
235
+ * **Improvement** During CSV Export show trash status of booking in exported file (8.3.3.7) *(Personal Business Small/Medium/Large, MultiUser)*
236
+ * **Improvement** Do not show cost and payment status in mouse over tooltip in Calendar Overview page and in Timelines, if the cost of booking = 0. (8.3.3.9) *(Business Small/Medium/Large, MultiUser)*
237
+ * **Improvement** Redirect visitor to the home page, when visitor cancel own booking after showing message "The booking has been canceled successfully" (8.3.3.13) *(Personal Business Small/Medium/Large, MultiUser)*
238
+ * **Fix**. Save expoted .csv file to new 'wpbc_csv' (safer) folder. (8.3.3.10) *(Personal Business Small/Medium/Large, MultiUser)*
239
+ * **Fix**. Issue of incorrectly showing Stripe payment form for additional calendars, if in the booking form was used 2 or more calendars of different booking resources. (8.3.3.4) *(Business Medium/Large, MultiUser)*
240
+ * **Fix**. Send email about cancellation of booking if was activated this option "Disable bookings in different booking resources", which is means that all reserved days must be at same booking resource otherwise error message will show and decline email will send. (8.3.3.1) *(Business Large, MultiUser)*
241
+ * **Fix**. Showing warning message in non English language, if was activated option "Disable bookings in different booking resources", which is means that all reserved days must be at same booking resource otherwise error message will show. (8.3.3.1) *(Business Large, MultiUser)*
242
+ * **Fix**. Issue of correctly showing total and deposit cost in "Bank transfer" payment system, if was activated option "Show deposit and total booking cost together" (8.3.3.6) *(Business Medium/Large, MultiUser)*
243
+ * **Fix**. Issue of not ability to submit booking form ONLY (without calendar), if was defined range days selection mode, and booking form have some hints shortcodes. (8.3.3.11) *(Business Large, MultiUser)*
244
+ * **Fix**. Showing "Warning: number_format() expects parameter 1 to be double, string given in .../wpbc-m-costs.php on line 166" (8.3.3.14) *(Business Medium/Large, MultiUser)*
245
+ * **Fix**. Showing warning in situation, if amount to pay lower than supporting by Stripe, instead of getting "Invalid parameters were supplied to Stripe API" on response page from Stripe payment system (8.4.0.1) *(Business Small/Medium/Large, MultiUser)*
246
+
247
  = 8.3.2 =
248
  - Changes in **all** versions:
249
+ * **New**. Set pending days as available in booking form. You can receive as many bookings as you need to and stop receiving bookings on specific date(s), when you approve some booking on specific date(s). ( 8.3.2.2 )
250
  - Changes in **Personal / Business Small / Business Medium / Business Large / MultiUser** versions:
251
+ * **Fix**. Show pending days as available in search results during searching availability, if activated "Set pending days as available" option. (8.3.2.2) *(Business Large, MultiUser)*
252
+ * **Fix**. Correct showing booking costs, if the cost was higher than 1000. Especially this issue was in search results during search availability, if in search form was used [cost_hint] shortcode. (8.3.2.1) *(Business Small/Medium/Large, MultiUser)*
253
 
254
  = 8.3.1 =
255
  - Changes in **all** versions:
256
+ * **Translation**. Polish translation [100% completed] by R.
257
+ * **Fix**. Comment loading "wpbc-migrate.js" script which can make issues in some systems ( depend from jQuery library) (8.3.1.3)
258
  - Changes in **Personal / Business Small / Business Medium / Business Large / MultiUser** versions:
259
+ * **Fix**. Add ability to use 24:00 time in the time-slots, for ability to book entire day (00:00 - 24:00), and correct cost calculation. Such fix will prevent of showing warning message about not ability to submit the booking, because time booked or already in the past. (8.3.1.1)
260
+ * **Fix**. Issue of correctly checking if the booking approved or not during payment process. (8.3.1.2) *(Business Small/Medium/Large, MultiUser)*
261
 
262
  = 8.3 =
263
  - Changes in **all** versions:
wpdev-booking.php CHANGED
@@ -7,7 +7,7 @@ Author: wpdevelop, oplugins
7
  Author URI: https://wpbookingcalendar.com/
8
  Text Domain: booking
9
  Domain Path: /languages/
10
- Version: 8.3.2
11
  */
12
 
13
  /* Copyright 2009 - 2018 www.wpbookingcalendar.com (email: info@wpbookingcalendar.com),
7
  Author URI: https://wpbookingcalendar.com/
8
  Text Domain: booking
9
  Domain Path: /languages/
10
+ Version: 8.4
11
  */
12
 
13
  /* Copyright 2009 - 2018 www.wpbookingcalendar.com (email: info@wpbookingcalendar.com),