Version Description
- Features and issue fixings in All versions:
- New Moving bookings to trash instead of complete deleting.
- New Ability to restore bookings from Trash.
- Translation Updated Croatian translation [99% Completed] by Danijel Prebeg
- Fix showing warning during managing Booking Calendar widget in "Customizer". Issue was relative to WordPress 4.5 update (fix:6.1.1.11)
- Personal / Business Small / Business Medium / Business Large / MultiUser versions features:
- New Extend booking dates/times interval to extra hours or days. Useful for adding cleaning time, or any other service time. (Business Medium/Large, MultiUser)
- Improvement ability to use [booking_id], [resource_title] shortcodes in the Content of booking fields data form at Booking > Settings > Fields page, for ability to show booking ID and booking resources in payment summary. (Business Small/Medium/Large, MultiUser)
- Improvement ability to book dates in additional calendar(s), without selection date(s) in main calendar, if used several calendars of different booking resources and only 1 booking form. Restriction in this case the "payment summary" after booking is not showing. (Business Medium/Large, MultiUser)
- Improvement resolve issue of not showing available day(s), if all start time (example of shortcode in booking form: [select starttime "11:00" "13:00" "15:00"]) have booked for this specific day(s) (fix:6.1.1.6). (Business Small/Medium/Large, MultiUser)
- Improvement Added search users form at the Settings Users page. (fix:6.1.1.6). (MultiUser)
- Fix Ability to edit bookings, that belong to the "child booking resources", when activated option "visitors apply to capacity". If you will edit of booking, this booking editing is belonging to calendar of parent booking resources with specific capacity. (Business Large, MultiUser)
- Fix issue of not ability to add "Valuation days" cost settings in some servers, because of conflict. (Business Medium/Large, MultiUser)
- Fix issue of not ability to submit booking form, when using [bookingform ...] shortcode. (fix:6.1.1.16) (Business Large, MultiUser)
Download this release
Release Info
Developer | wpdevelop |
Plugin | Booking Calendar |
Version | 6.2 |
Comparing to | |
See all releases |
Code changes from version 6.1 to 6.2
- css/admin.css +12 -1
- js/admin.js +85 -0
- js/client.js +68 -22
- js/wpbc_vars.js +1 -0
- languages/booking-be_BY.mo +0 -0
- languages/booking-bg_BG.mo +0 -0
- languages/booking-ca.mo +0 -0
- languages/booking-cs_CZ.mo +0 -0
- languages/booking-da_DK.mo +0 -0
- languages/booking-de_DE.mo +0 -0
- languages/booking-el_GR.mo +0 -0
- languages/booking-es_ES.mo +0 -0
- languages/booking-fi.mo +0 -0
- languages/booking-fr_FR.mo +0 -0
- languages/booking-he_IL.mo +0 -0
- languages/booking-hr.mo +0 -0
- languages/booking-hu_HU.mo +0 -0
- languages/booking-it_IT.mo +0 -0
- languages/booking-nb_NO.mo +0 -0
- languages/booking-nl_NL.mo +0 -0
- languages/booking-pl_PL.mo +0 -0
- languages/booking-pt_BR.mo +0 -0
- languages/booking-pt_PT.mo +0 -0
- languages/booking-ru_RU.mo +0 -0
- languages/booking-sk_SK.mo +0 -0
- languages/booking-sv_SE.mo +0 -0
- languages/booking-tr_TR.mo +0 -0
- languages/booking-uk_UK.mo +0 -0
- languages/booking.pot +1318 -1251
- lib/wpbc-ajax.php +64 -2
- lib/wpbc-booking-new.php +27 -6
- lib/wpbc-constants.php +1 -1
- lib/wpbc-gcal-class.php +2 -1
- lib/wpbc-scripts.php +1 -1
- lib/wpbc-welcome.php +46 -16
- lib/wpdev-bk-lib.php +77 -12
- lib/wpdev-bk-timeline.php +23 -3
- lib/wpdev-booking-class.php +65 -97
- lib/wpdev-booking-functions.php +32 -14
- lib/wpdev-booking-widget.php +1 -0
- lib/wpdev-settings-general.php +90 -55
- readme.txt +41 -25
- wpdev-booking.php +1 -1
css/admin.css
CHANGED
@@ -2709,4 +2709,15 @@ td.bk_resource_selector {
|
|
2709 |
}
|
2710 |
.matrix_resources .timeslots_in_this_day24 a.first_day_in_bookin {
|
2711 |
margin: 5px 0 0 5px;
|
2712 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2709 |
}
|
2710 |
.matrix_resources .timeslots_in_this_day24 a.first_day_in_bookin {
|
2711 |
margin: 5px 0 0 5px;
|
2712 |
+
}
|
2713 |
+
|
2714 |
+
/* FixIn:6.1.1.10 */
|
2715 |
+
/* Past bookins */
|
2716 |
+
.calendar_overview_cell .time_booked_in_day.booking_trash,
|
2717 |
+
.calendar_overview_cell.today_date .time_booked_in_day.booking_trash{
|
2718 |
+
background-color: #c55;
|
2719 |
+
}
|
2720 |
+
.calendar_overview_cell.past_date .time_booked_in_day.booking_trash,
|
2721 |
+
.calendar_overview_cell.today_date .time_booked_in_day.past_time.booking_trash{
|
2722 |
+
background-color: #a44;
|
2723 |
+
}
|
js/admin.js
CHANGED
@@ -291,6 +291,91 @@ function approve_unapprove_booking(booking_id, is_approve_or_pending, user_id, w
|
|
291 |
return true;
|
292 |
}
|
293 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
294 |
|
295 |
// Delete booking
|
296 |
function delete_booking(booking_id, user_id, wpdev_active_locale, is_send_emeils ) {
|
291 |
return true;
|
292 |
}
|
293 |
|
294 |
+
//FixIn: 6.1.1.10
|
295 |
+
// Set Booking listing R O W Trash
|
296 |
+
function set_booking_row_trash( booking_id ){
|
297 |
+
jQuery('#booking_row_'+booking_id + ' .booking-labels .label-trash').removeClass('hidden_items');
|
298 |
+
|
299 |
+
jQuery('#booking_row_'+booking_id + ' .booking-actions .trash_bk_link').addClass('hidden_items');
|
300 |
+
jQuery('#booking_row_'+booking_id + ' .booking-actions .restore_bk_link').removeClass('hidden_items');
|
301 |
+
jQuery('#booking_row_'+booking_id + ' .booking-actions .delete_bk_link').removeClass('hidden_items');
|
302 |
+
|
303 |
+
//Timeline
|
304 |
+
jQuery('.cell_bk_id_'+booking_id).addClass('booking_trash');
|
305 |
+
}
|
306 |
+
|
307 |
+
//FixIn: 6.1.1.10
|
308 |
+
// Set Booking listing R O W Restore
|
309 |
+
function set_booking_row_restore( booking_id ){
|
310 |
+
jQuery('#booking_row_'+booking_id + ' .booking-labels .label-trash').addClass('hidden_items');
|
311 |
+
|
312 |
+
|
313 |
+
jQuery('#booking_row_'+booking_id + ' .booking-actions .trash_bk_link').removeClass('hidden_items');
|
314 |
+
jQuery('#booking_row_'+booking_id + ' .booking-actions .restore_bk_link').addClass('hidden_items');
|
315 |
+
jQuery('#booking_row_'+booking_id + ' .booking-actions .delete_bk_link').addClass('hidden_items');
|
316 |
+
|
317 |
+
//Timeline
|
318 |
+
jQuery('.cell_bk_id_'+booking_id).removeClass('booking_trash');
|
319 |
+
}
|
320 |
+
|
321 |
+
//FixIn: 6.1.1.10
|
322 |
+
// Trash or restore booking
|
323 |
+
function trash__restore_booking( is_trash, booking_id, user_id, wpdev_active_locale, is_send_emeils ) {
|
324 |
+
|
325 |
+
// FixIn: 5.4.5
|
326 |
+
wpdev_active_locale = wpbc_get_selected_locale(booking_id, wpdev_active_locale );
|
327 |
+
|
328 |
+
if ( booking_id !='' ) {
|
329 |
+
|
330 |
+
var wpdev_ajax_path = wpdev_bk_plugin_url+'/' + wpdev_bk_plugin_filename;
|
331 |
+
var ajax_type_action = 'TRASH_RESTORE';
|
332 |
+
var ajax_bk_message = 'Updating...';
|
333 |
+
//var is_send_emeils = 1;
|
334 |
+
var denyreason = '';
|
335 |
+
if (is_send_emeils == 1) {
|
336 |
+
if ( jQuery('#is_send_email_for_pending').length ) {
|
337 |
+
is_send_emeils = jQuery('#is_send_email_for_pending').attr('checked');
|
338 |
+
if (is_send_emeils == undefined) {is_send_emeils = 0 ;}
|
339 |
+
else {is_send_emeils = 1 ;}
|
340 |
+
}
|
341 |
+
if ( jQuery('#denyreason').length )
|
342 |
+
denyreason = jQuery('#denyreason').val();
|
343 |
+
} else {
|
344 |
+
is_send_emeils = 0;
|
345 |
+
}
|
346 |
+
|
347 |
+
document.getElementById('ajax_working').innerHTML =
|
348 |
+
'<div class="updated ajax_message" id="ajax_message">\n\
|
349 |
+
<div style="float:left;">'+ajax_bk_message+'</div> \n\
|
350 |
+
<div class="wpbc_spin_loader">\n\
|
351 |
+
<img src="'+wpdev_bk_plugin_url+'/img/ajax-loader.gif">\n\
|
352 |
+
</div>\n\
|
353 |
+
</div>';
|
354 |
+
|
355 |
+
jQuery.ajax({ // Start Ajax Sending
|
356 |
+
// url: wpdev_ajax_path,
|
357 |
+
url: wpbc_ajaxurl,
|
358 |
+
type:'POST',
|
359 |
+
success: function (data, textStatus){if( textStatus == 'success') jQuery('#ajax_respond').html( data );},
|
360 |
+
error:function (XMLHttpRequest, textStatus, errorThrown){window.status = 'Ajax sending Error status:'+ textStatus;alert(XMLHttpRequest.status + ' ' + XMLHttpRequest.statusText);if (XMLHttpRequest.status == 500) {alert('Please check at this page according this error:' + ' http://wpbookingcalendar.com/faq/#ajax-sending-error');}},
|
361 |
+
// beforeSend: someFunction,
|
362 |
+
data:{
|
363 |
+
//ajax_action : ajax_type_action, // Action
|
364 |
+
action : ajax_type_action, // Action
|
365 |
+
booking_id : booking_id, // ID of Booking - separator |
|
366 |
+
is_send_emeils : is_send_emeils,
|
367 |
+
denyreason: denyreason,
|
368 |
+
user_id: user_id,
|
369 |
+
wpdev_active_locale:wpdev_active_locale,
|
370 |
+
is_trash:is_trash,
|
371 |
+
wpbc_nonce: document.getElementById('wpbc_admin_panel_nonce').value
|
372 |
+
}
|
373 |
+
});
|
374 |
+
return false;
|
375 |
+
}
|
376 |
+
|
377 |
+
return true;
|
378 |
+
}
|
379 |
|
380 |
// Delete booking
|
381 |
function delete_booking(booking_id, user_id, wpdev_active_locale, is_send_emeils ) {
|
js/client.js
CHANGED
@@ -75,7 +75,7 @@ function init_datepick_cal(bk_type, date_approved_par, my_num_month, start_day_
|
|
75 |
if(typeof( prices_per_day ) !== 'undefined')
|
76 |
if(typeof( prices_per_day[bk_type] ) !== 'undefined')
|
77 |
if(typeof( prices_per_day[bk_type][class_day] ) !== 'undefined') {
|
78 |
-
additional_class += ' rate_'+prices_per_day[bk_type][class_day];
|
79 |
}
|
80 |
|
81 |
// define season filter names as classes
|
@@ -582,7 +582,7 @@ function mybooking_submit( submit_form , bk_type, wpdev_active_locale){
|
|
582 |
}
|
583 |
|
584 |
|
585 |
-
// Recheck for max num. available visitors selection
|
586 |
if ( element.name == ('visitors'+bk_type) )
|
587 |
if( typeof( is_max_visitors_selection_more_than_available ) == 'function' )
|
588 |
if ( is_max_visitors_selection_more_than_available( bk_type, inp_value, element ) )
|
@@ -668,30 +668,71 @@ function mybooking_submit( submit_form , bk_type, wpdev_active_locale){
|
|
668 |
} // End Fields Loop
|
669 |
|
670 |
|
671 |
-
//
|
672 |
-
if( typeof( is_this_time_selections_not_available ) == 'function' )
|
673 |
-
|
674 |
-
|
675 |
|
|
|
676 |
|
677 |
-
|
678 |
-
|
679 |
-
|
680 |
-
|
681 |
-
|
682 |
-
|
683 |
-
|
684 |
-
|
685 |
-
|
686 |
-
|
687 |
-
}
|
688 |
-
if (inst.dates.length < bk_2clicks_mode_days_min ) {
|
689 |
-
alert(message_verif_selectdts);
|
690 |
-
return;
|
691 |
}
|
|
|
692 |
}
|
|
|
|
|
|
|
|
|
693 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
694 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
695 |
// Cpatch verify
|
696 |
var captcha = document.getElementById('wpdev_captcha_challenge_' + bk_type);
|
697 |
|
@@ -724,8 +765,13 @@ function form_submit_send( bk_type, formdata, captcha_chalange, user_captcha ,wp
|
|
724 |
if (is_send_emeils) is_send_emeils = 1;
|
725 |
else is_send_emeils = 0;
|
726 |
}
|
727 |
-
|
728 |
-
|
|
|
|
|
|
|
|
|
|
|
729 |
var formdata_additional_arr;
|
730 |
var formdata_additional;
|
731 |
var my_form_field;
|
75 |
if(typeof( prices_per_day ) !== 'undefined')
|
76 |
if(typeof( prices_per_day[bk_type] ) !== 'undefined')
|
77 |
if(typeof( prices_per_day[bk_type][class_day] ) !== 'undefined') {
|
78 |
+
additional_class += (' rate_'+prices_per_day[bk_type][class_day]).replace('.','_');
|
79 |
}
|
80 |
|
81 |
// define season filter names as classes
|
582 |
}
|
583 |
|
584 |
|
585 |
+
// Recheck for max num. available visitors selection
|
586 |
if ( element.name == ('visitors'+bk_type) )
|
587 |
if( typeof( is_max_visitors_selection_more_than_available ) == 'function' )
|
588 |
if ( is_max_visitors_selection_more_than_available( bk_type, inp_value, element ) )
|
668 |
} // End Fields Loop
|
669 |
|
670 |
|
671 |
+
//FixIn:6.1.1.3
|
672 |
+
if( typeof( is_this_time_selections_not_available ) == 'function' ) {
|
673 |
+
|
674 |
+
if ( document.getElementById('date_booking' + bk_type).value == '' ) { // Primary calendar not selected.
|
675 |
|
676 |
+
if ( document.getElementById('additional_calendars' + bk_type ) != null ) { // Checking additional calendars.
|
677 |
|
678 |
+
var id_additional_str = document.getElementById('additional_calendars' + bk_type).value; //Loop have to be here based on , sign
|
679 |
+
var id_additional_arr = id_additional_str.split(',');
|
680 |
+
var is_times_dates_ok = false;
|
681 |
+
for ( var ia=0;ia<id_additional_arr.length;ia++ ) {
|
682 |
+
if (
|
683 |
+
( document.getElementById('date_booking' + id_additional_arr[ia] ).value != '' )
|
684 |
+
&& ( ! is_this_time_selections_not_available( id_additional_arr[ia], submit_form.elements ) )
|
685 |
+
){
|
686 |
+
is_times_dates_ok = true;
|
687 |
+
}
|
|
|
|
|
|
|
|
|
688 |
}
|
689 |
+
if ( ! is_times_dates_ok ) return;
|
690 |
}
|
691 |
+
} else { //Primary calendar selected.
|
692 |
+
if ( is_this_time_selections_not_available( bk_type, submit_form.elements ) )
|
693 |
+
return;
|
694 |
+
}
|
695 |
}
|
696 |
+
if (bk_days_selection_mode == 'dynamic') {
|
697 |
+
// Get ID of calendars, where selected dates. //FixIn:6.1.1.5
|
698 |
+
var selected_dates_cal_id = [];
|
699 |
+
if ( document.getElementById('date_booking' + bk_type).value != '' )
|
700 |
+
selected_dates_cal_id[selected_dates_cal_id.length] = bk_type;
|
701 |
+
if ( document.getElementById('additional_calendars' + bk_type) != null ) { // Checking according additional calendars.
|
702 |
|
703 |
+
var id_additional_str = document.getElementById('additional_calendars' + bk_type).value; //Loop have to be here based on , sign
|
704 |
+
var id_additional_arr = id_additional_str.split(',');
|
705 |
+
var is_all_additional_days_unselected = true;
|
706 |
+
for (var ia=0;ia<id_additional_arr.length;ia++) {
|
707 |
+
if (document.getElementById('date_booking' + id_additional_arr[ia] ).value != '' ) {
|
708 |
+
selected_dates_cal_id[selected_dates_cal_id.length] = id_additional_arr[ia];
|
709 |
+
}
|
710 |
+
}
|
711 |
+
}
|
712 |
+
for( var ci = 0; ci < selected_dates_cal_id.length; ci++) {
|
713 |
+
var abk_type = selected_dates_cal_id[selected_dates_cal_id.length]
|
714 |
+
if (document.getElementById('calendar_booking'+abk_type) != null ) {
|
715 |
+
var inst = jQuery.datepick._getInst(document.getElementById('calendar_booking'+abk_type));
|
716 |
+
|
717 |
+
if (bk_2clicks_mode_days_min != undefined) {
|
718 |
+
if(typeof( check_conditions_for_range_days_selection_for_check_in ) == 'function') {
|
719 |
+
var first_date = get_first_day_of_selection(document.getElementById('date_booking' + abk_type).value);
|
720 |
+
var date_sections = first_date.split(".");
|
721 |
+
var selceted_first_day = new Date;
|
722 |
+
selceted_first_day.setFullYear( parseInt(date_sections[2]-0) ,parseInt(date_sections[1]-1), parseInt(date_sections[0]-0) );
|
723 |
+
check_conditions_for_range_days_selection_for_check_in(selceted_first_day, abk_type);
|
724 |
+
}
|
725 |
+
if (inst.dates.length < bk_2clicks_mode_days_min ) {
|
726 |
+
|
727 |
+
showMessageUnderElement( '#date_booking' + abk_type, message_verif_selectdts, '');
|
728 |
+
makeScroll('#calendar_booking' + abk_type); // Scroll to the calendar
|
729 |
+
return;
|
730 |
+
}
|
731 |
+
}
|
732 |
+
}
|
733 |
+
}
|
734 |
+
}
|
735 |
+
|
736 |
// Cpatch verify
|
737 |
var captcha = document.getElementById('wpdev_captcha_challenge_' + bk_type);
|
738 |
|
765 |
if (is_send_emeils) is_send_emeils = 1;
|
766 |
else is_send_emeils = 0;
|
767 |
}
|
768 |
+
if ( document.getElementById('date_booking' + bk_type).value != '' ) //FixIn:6.1.1.3
|
769 |
+
send_ajax_submit(bk_type,formdata,captcha_chalange,user_captcha,is_send_emeils,my_booking_hash,my_booking_form,wpdev_active_locale ); // Ajax sending request
|
770 |
+
else {
|
771 |
+
jQuery('#booking_form_div' + bk_type ).hide();
|
772 |
+
jQuery('#submiting' + bk_type ).hide();
|
773 |
+
}
|
774 |
+
|
775 |
var formdata_additional_arr;
|
776 |
var formdata_additional;
|
777 |
var my_form_field;
|
js/wpbc_vars.js
CHANGED
@@ -60,6 +60,7 @@ if (typeof wpbc_global3 !== 'undefined') {
|
|
60 |
var bk_2clicks_mode_days_max = parseInt( wpbc_global3.bk_2clicks_mode_days_max );
|
61 |
var bk_2clicks_mode_days_specific = wpbc_define_var( wpbc_global3.bk_2clicks_mode_days_specific );
|
62 |
var bk_2clicks_mode_days_start = wpbc_define_var( wpbc_global3.bk_2clicks_mode_days_start );
|
|
|
63 |
var message_starttime_error = wpbc_global3.message_starttime_error;
|
64 |
var message_endtime_error = wpbc_global3.message_endtime_error;
|
65 |
var message_rangetime_error = wpbc_global3.message_rangetime_error;
|
60 |
var bk_2clicks_mode_days_max = parseInt( wpbc_global3.bk_2clicks_mode_days_max );
|
61 |
var bk_2clicks_mode_days_specific = wpbc_define_var( wpbc_global3.bk_2clicks_mode_days_specific );
|
62 |
var bk_2clicks_mode_days_start = wpbc_define_var( wpbc_global3.bk_2clicks_mode_days_start );
|
63 |
+
var message_checkinouttime_error = wpbc_global3.message_checkinouttime_error; //FixIn:6.1.1.1
|
64 |
var message_starttime_error = wpbc_global3.message_starttime_error;
|
65 |
var message_endtime_error = wpbc_global3.message_endtime_error;
|
66 |
var message_rangetime_error = wpbc_global3.message_rangetime_error;
|
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_GR.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-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-sv_SE.mo
CHANGED
Binary file
|
languages/booking-tr_TR.mo
CHANGED
Binary file
|
languages/booking-uk_UK.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: 2016-
|
7 |
"PO-Revision-Date: \n"
|
8 |
"Last-Translator: wpdevelop <info@wpdevelop.com>\n"
|
9 |
"Language-Team: wpdevelop <info@wpbookingcalendar.com>\n"
|
@@ -14,107 +14,107 @@ msgstr ""
|
|
14 |
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
"X-Poedit-KeywordsList: __;_e\n"
|
16 |
"X-Poedit-Basepath: ..\n"
|
17 |
-
"X-Generator: Poedit 1.8.
|
18 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
-
#: inc/biz_l.php:
|
22 |
#: inc/lib_s.php:302 inc/lib_s.php:307 lib/wpbc-gcal-class.php:580 lib/wpbc-gcal-class.php:611
|
23 |
-
#: lib/wpdev-bk-lib.php:
|
24 |
-
#: lib/wpdev-bk-timeline.php:
|
25 |
-
#: lib/wpdev-settings-general.php:
|
26 |
msgid "Dates"
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: inc/biz_l.php:
|
30 |
msgid "Full cost of the booking"
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: inc/biz_l.php:
|
34 |
-
#: inc/personal.php:
|
35 |
msgid "First Name (required)"
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: inc/biz_l.php:
|
39 |
-
#: inc/personal.php:
|
40 |
msgid "Last Name (required)"
|
41 |
msgstr ""
|
42 |
|
43 |
-
#: inc/biz_l.php:
|
44 |
-
#: inc/personal.php:
|
45 |
msgid "Email (required)"
|
46 |
msgstr ""
|
47 |
|
48 |
-
#: inc/biz_l.php:
|
49 |
-
#: inc/payments/ipay88.php:316 inc/personal.php:
|
50 |
-
#: inc/personal.php:
|
51 |
msgid "Phone"
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: inc/biz_l.php:
|
55 |
msgid "Address (required)"
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: inc/biz_l.php:
|
59 |
msgid "City (required)"
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: inc/biz_l.php:
|
63 |
msgid "Post code (required)"
|
64 |
msgstr ""
|
65 |
|
66 |
-
#: inc/biz_l.php:
|
67 |
msgid "Country (required)"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: inc/biz_l.php:
|
71 |
msgid "Visitors"
|
72 |
msgstr ""
|
73 |
|
74 |
-
#: inc/biz_l.php:
|
75 |
-
#: inc/personal.php:
|
76 |
-
#: inc/personal.php:
|
77 |
msgid "Details"
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: inc/biz_l.php:
|
81 |
msgid "Coupon"
|
82 |
msgstr ""
|
83 |
|
84 |
-
#: inc/biz_l.php:
|
85 |
-
#: inc/personal.php:
|
86 |
msgid "I Accept term and conditions"
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: inc/biz_l.php:
|
90 |
-
#: inc/personal.php:
|
91 |
-
#: lib/wpdev-booking-class.php:
|
92 |
msgid "Send"
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: inc/biz_l.php:
|
96 |
msgid ""
|
97 |
"Try selecting fewer visitors. The number of visitors may be more than the number of available "
|
98 |
"units on selected day(s)!"
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: inc/biz_l.php:
|
102 |
msgid "coupon"
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: inc/biz_l.php:
|
106 |
msgid "discount"
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: inc/biz_l.php:793 inc/lib_l.php:
|
110 |
msgid "Nothing found"
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: inc/biz_l.php:794 inc/lib_l.php:238 inc/lib_l.php:
|
114 |
msgid "Search results"
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: inc/biz_l.php:928 inc/lib_l.php:
|
118 |
msgid "Book now"
|
119 |
msgstr ""
|
120 |
|
@@ -122,11 +122,11 @@ msgstr ""
|
|
122 |
msgid "Please select check-in and check-out days!"
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: inc/biz_l.php:
|
126 |
msgid "Search"
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: inc/biz_l.php:
|
130 |
#, php-format
|
131 |
msgid ""
|
132 |
"Sorry, the reservation was not made because these days are already booked!!! %s (Its not "
|
@@ -134,143 +134,144 @@ msgid ""
|
|
134 |
"page and try other days."
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: inc/biz_l.php:
|
138 |
#, php-format
|
139 |
msgid "The folowing pending booking(s): %s deleted."
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: inc/biz_l.php:
|
143 |
msgid "Maximum available booking resource items"
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: inc/biz_l.php:
|
147 |
-
#: inc/biz_m.php:
|
148 |
-
#: inc/biz_s.php:
|
149 |
#: inc/payments/bank-transfer.php:341 inc/payments/ipay88.php:320 inc/payments/pay-cash.php:126
|
150 |
#: inc/payments/paypal.php:596 inc/payments/sage.php:337 inc/payments/sermepa.php:299
|
151 |
-
#: inc/personal.php:
|
152 |
-
#: inc/personal.php:
|
153 |
-
#: lib/wpdev-settings-general.php:75 lib/wpdev-settings-general.php:
|
154 |
-
#: lib/wpdev-settings-general.php:
|
155 |
-
#: lib/wpdev-settings-general.php:
|
156 |
msgid "Save Changes"
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: inc/biz_l.php:
|
160 |
-
#: inc/biz_l.php:
|
161 |
-
#: inc/biz_s.php:
|
162 |
#: inc/payments/bank-transfer.php:111 inc/payments/ipay88.php:104 inc/payments/pay-cash.php:56
|
163 |
#: inc/payments/paypal.php:140 inc/payments/sage.php:96 inc/payments/sermepa.php:85
|
164 |
-
#: inc/personal.php:
|
165 |
-
#: inc/personal.php:
|
166 |
#: inc/sync/wpbc-sync-gcal-api.php:74 lib/wpbc-gcal.php:311 lib/wpbc-gcal.php:331
|
167 |
-
#: lib/wpbc-gcal.php:349 lib/wpbc-gcal.php:420 lib/wpdev-booking-class.php:
|
168 |
-
#: lib/wpdev-settings-general.php:387 lib/wpdev-settings-general.php:
|
169 |
-
#: lib/wpdev-settings-general.php:
|
170 |
-
#: lib/wpdev-settings-general.php:
|
171 |
-
#: lib/wpdev-settings-general.php:
|
172 |
-
#: lib/wpdev-settings-general.php:
|
173 |
-
#: lib/wpdev-settings-general.php:
|
|
|
174 |
msgid "Click to toggle"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: inc/biz_l.php:
|
178 |
msgid "Booking resources management"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: inc/biz_l.php:
|
182 |
-
#: inc/biz_m.php:
|
183 |
#: inc/lib_p.php:253 inc/lib_p.php:257 inc/lib_p.php:372 inc/lib_s.php:301 inc/lib_s.php:306
|
184 |
-
#: inc/multiuser.php:
|
185 |
#: inc/wpbc-br-table-for-settings.php:76 inc/wpbc-br-table-for-settings.php:93
|
186 |
-
#: lib/wpbc-gcal-class.php:577 lib/wpbc-gcal-class.php:595 lib/wpdev-bk-lib.php:
|
187 |
-
#: lib/wpdev-bk-lib.php:
|
188 |
-
#: lib/wpdev-settings-general.php:
|
189 |
msgid "ID"
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: inc/biz_l.php:
|
193 |
-
#: inc/personal.php:
|
194 |
msgid "Resource name"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: inc/biz_l.php:
|
198 |
msgid "Number of resource items inside of parent resource"
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: inc/biz_l.php:
|
202 |
msgid "Capacity"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: inc/biz_l.php:
|
206 |
msgid "Parent"
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: inc/biz_l.php:
|
210 |
msgid "Priority"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: inc/biz_l.php:
|
214 |
msgid "Maximum number of visitors for resource"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: inc/biz_l.php:
|
218 |
msgid "Max"
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: inc/biz_l.php:
|
222 |
msgid "visitors"
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: inc/biz_l.php:
|
226 |
-
#: inc/multiuser.php:
|
227 |
-
#: lib/wpdev-bk-lib.php:
|
228 |
msgid "Actions"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: inc/biz_l.php:
|
232 |
msgid "Add"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: inc/biz_l.php:
|
236 |
-
#: inc/biz_m.php:
|
237 |
msgid "Delete"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: inc/biz_l.php:
|
241 |
-
#: lib/wpbc-gcal-class.php:597 lib/wpdev-booking-widget.php:
|
242 |
msgid "Title"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: inc/biz_l.php:
|
246 |
msgid "Add new resource"
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: inc/biz_l.php:
|
250 |
msgid "Save"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: inc/biz_l.php:
|
254 |
msgid "Advanced Settings"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: inc/biz_l.php:
|
258 |
msgid "Set capacity based on number of visitors"
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: inc/biz_l.php:
|
262 |
#, php-format
|
263 |
msgid ""
|
264 |
"Check this box if you want total availability (daily capacity) to depend on the number of "
|
265 |
"selected visitors %s."
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: inc/biz_l.php:
|
269 |
#, php-format
|
270 |
msgid "Please read more info about configuration of this parameter %shere%s"
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: inc/biz_l.php:
|
274 |
#, php-format
|
275 |
msgid ""
|
276 |
"Add tooltip on calendar(s) to show availability based on the number of available booking "
|
@@ -278,7 +279,7 @@ msgid ""
|
|
278 |
"%sone booking resource%s with the number of visitors specified on the booking form."
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: inc/biz_l.php:
|
282 |
#, php-format
|
283 |
msgid ""
|
284 |
"Display tooltip on calendar(s) to show availability based on total (fixed) number of visitors "
|
@@ -287,1840 +288,1892 @@ msgid ""
|
|
287 |
"booking form."
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: inc/biz_l.php:
|
291 |
msgid "Show availability"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: inc/biz_l.php:
|
295 |
msgid ""
|
296 |
"Check this box to display the available number of booking resources with a tooltip, when mouse "
|
297 |
"hovers over each day on the calendar(s)."
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: inc/biz_l.php:
|
301 |
msgid "Availability description"
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: inc/biz_l.php:
|
305 |
#, php-format
|
306 |
msgid "Type your %savailability%s description"
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: inc/biz_l.php:
|
310 |
msgid "Disable bookings in different booking resources"
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: inc/biz_l.php:
|
314 |
msgid ""
|
315 |
"Check this box to dissable reservations, which can be stored in different booking resources. "
|
316 |
"When checked, all reserved days must be at same booking resource otherwise error message will "
|
317 |
"show."
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: inc/biz_l.php:
|
321 |
msgid ""
|
322 |
"Check this box if you want total availability (daily capacity) to depend on the number of "
|
323 |
"selected visitors."
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: inc/biz_l.php:
|
327 |
-
#: inc/form/class-wpbc-form-help.php:
|
328 |
-
#: inc/form/class-wpbc-form-help.php:
|
329 |
-
#: inc/form/class-wpbc-form-help.php:
|
330 |
-
#: inc/form/class-wpbc-form-help.php:
|
331 |
-
#: inc/form/class-wpbc-form-help.php:
|
332 |
-
#: inc/form/class-wpbc-form-help.php:
|
333 |
-
#: inc/form/class-wpbc-form-help.php:
|
334 |
-
#: inc/form/class-wpbc-form-help.php:
|
335 |
-
#: inc/
|
|
|
336 |
msgid "Important!"
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: inc/biz_l.php:
|
340 |
msgid ""
|
341 |
"Add tooltip on calendar(s) to show availability based on the number of available booking "
|
342 |
"resource items remaining for each day."
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: inc/biz_l.php:
|
346 |
-
#: lib/wpdev-settings-general.php:
|
347 |
-
#: lib/wpdev-settings-general.php:
|
348 |
msgid "Note"
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: inc/biz_l.php:
|
352 |
#, php-format
|
353 |
msgid ""
|
354 |
"Be sure to match the maximum number of visitors for the %sone booking resource%s with the number "
|
355 |
"of visitors specified on the booking form."
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: inc/biz_l.php:
|
359 |
msgid ""
|
360 |
"Display tooltip on calendar(s) to show availability based on total (fixed) number of visitors "
|
361 |
"for the resource, which can be at free booking resource items."
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: inc/biz_l.php:
|
365 |
#, php-format
|
366 |
msgid ""
|
367 |
"Be sure to match the maximum number of visitors for %sall booking resources%s with the number of "
|
368 |
"visitors specified on the booking form."
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: inc/biz_l.php:
|
372 |
msgid ""
|
373 |
"Check this box to dissable reservations, which can be stored in different booking resources."
|
374 |
msgstr ""
|
375 |
|
376 |
-
#: inc/biz_l.php:
|
377 |
msgid ""
|
378 |
"When checked, all reserved days must be at same booking resource otherwise error message will "
|
379 |
"show."
|
380 |
msgstr ""
|
381 |
|
382 |
-
#: inc/biz_l.php:
|
383 |
msgid "Use pending days as available"
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: inc/biz_l.php:
|
387 |
msgid "Check this box if you want to show the pending days as available in calendars"
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: inc/biz_l.php:
|
391 |
msgid ""
|
392 |
"Warning!!! After you approved the specific booking(s), all your pending bookings of the same "
|
393 |
"booking resource as an approved booking for the dates, which are intersect with dates of "
|
394 |
"approved booking, will be automatically canceled!"
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: inc/biz_l.php:
|
398 |
msgid ""
|
399 |
"Auto Cancel all pending bookings for the specific date(s), if some booking is approved for these "
|
400 |
"date(s)"
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: inc/biz_l.php:
|
404 |
msgid "Show availability in tooltip"
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: inc/biz_l.php:
|
408 |
msgid "Availability Title"
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: inc/biz_l.php:
|
412 |
msgid ""
|
413 |
"Use \"Check In\" date as available in calendar for booking resources with capacity higher then 1 "
|
414 |
"for search results"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: inc/biz_l.php:
|
418 |
msgid ""
|
419 |
"Use \"Check Out\" date as available in calendar for booking resources with capacity higher then "
|
420 |
"1 search results"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: inc/biz_l.php:
|
424 |
msgid "Coupon Deleted"
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: inc/biz_l.php:
|
428 |
msgid "Coupon does not exist"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: inc/biz_l.php:
|
432 |
msgid "Coupon created"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: inc/biz_l.php:
|
436 |
msgid "Saved"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: inc/biz_l.php:
|
440 |
msgid "Add New Discount Coupon"
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: inc/biz_l.php:
|
444 |
-
#: inc/personal.php:
|
445 |
msgid "Edit"
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: inc/biz_l.php:
|
449 |
msgid "Coupon Code"
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: inc/biz_l.php:
|
453 |
msgid "Enter coupon code."
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: inc/biz_l.php:
|
457 |
msgid "Savings"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: inc/biz_l.php:
|
461 |
msgid "Fixed Amount"
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: inc/biz_l.php:
|
465 |
msgid "Percentage Off"
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: inc/biz_l.php:
|
469 |
msgid "Enter number of fixed or percentage savings."
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: inc/biz_l.php:
|
473 |
msgid "Expiration Date"
|
474 |
msgstr ""
|
475 |
|
476 |
-
#: inc/biz_l.php:
|
477 |
msgid "Select Expiration Date of the coupon."
|
478 |
msgstr ""
|
479 |
|
480 |
-
#: inc/biz_l.php:
|
481 |
msgid "Minimum Booking Cost"
|
482 |
msgstr ""
|
483 |
|
484 |
-
#: inc/biz_l.php:
|
485 |
msgid "Enter minimum booking cost, when coupon is applicable."
|
486 |
msgstr ""
|
487 |
|
488 |
-
#: inc/biz_l.php:
|
489 |
msgid "Maximum number of usage"
|
490 |
msgstr ""
|
491 |
|
492 |
-
#: inc/biz_l.php:
|
493 |
msgid "Enter maximum number of times, when coupon is applicable."
|
494 |
msgstr ""
|
495 |
|
496 |
-
#: inc/biz_l.php:
|
497 |
-
#: inc/multiuser.php:
|
498 |
-
#: lib/wpdev-settings-general.php:
|
499 |
msgid "Resources"
|
500 |
msgstr ""
|
501 |
|
502 |
-
#: inc/biz_l.php:
|
503 |
-
#: inc/wpbc-booking-select-widget.php:
|
504 |
msgid "All"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: inc/biz_l.php:
|
508 |
msgid "Select booking resources, where is possible to apply this coupon code."
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: inc/biz_l.php:
|
512 |
msgid "Add New Coupon"
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: inc/biz_l.php:
|
516 |
msgid "The coupon code your customers will be using to receive the discount."
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: inc/biz_l.php:
|
520 |
msgid "The amount which will be saved. Enter only digits."
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: inc/biz_l.php:
|
524 |
msgid "The minimum total cost required to use the coupon"
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: inc/biz_l.php:
|
528 |
msgid "Minimum Purchase"
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: inc/biz_l.php:
|
532 |
msgid "The date your coupon will expire"
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: inc/biz_l.php:
|
536 |
msgid "Number of usage"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: inc/biz_l.php:
|
540 |
msgid "Resource list, which supports this coupon"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: inc/biz_l.php:
|
544 |
#: inc/payments/paypal.php:585 inc/payments/sage.php:294 inc/payments/sermepa.php:256
|
545 |
-
#: lib/wpdev-settings-general.php:
|
546 |
-
#: lib/wpdev-settings-general.php:
|
547 |
-
#: lib/wpdev-settings-general.php:
|
548 |
msgid "Warning"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: inc/biz_l.php:
|
552 |
msgid "Do you really want to delete this item?"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: inc/biz_l.php:
|
556 |
#, php-format
|
557 |
msgid "%s - coupon field, "
|
558 |
msgstr ""
|
559 |
|
560 |
-
#: inc/biz_l.php:
|
561 |
#, php-format
|
562 |
msgid "Example: %s "
|
563 |
msgstr ""
|
564 |
|
565 |
-
#: inc/biz_l.php:
|
566 |
msgid "Search Availability Form"
|
567 |
msgstr ""
|
568 |
|
569 |
-
#: inc/biz_l.php:
|
570 |
msgid "Inlinee Search Form Template"
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: inc/biz_l.php:
|
574 |
msgid "Horizontal Search Form Template"
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: inc/biz_l.php:
|
578 |
msgid "Standard Search Form Template"
|
579 |
msgstr ""
|
580 |
|
581 |
-
#: inc/biz_l.php:
|
|
|
|
|
|
|
|
|
|
|
582 |
msgid "Reset current Form"
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: inc/biz_l.php:
|
|
|
586 |
msgid "Reset"
|
587 |
msgstr ""
|
588 |
|
589 |
-
#: inc/biz_l.php:
|
590 |
#: inc/payments/ipay88.php:252 inc/payments/sage.php:245 inc/payments/sermepa.php:207
|
591 |
-
#: inc/personal.php:
|
592 |
msgid "Use these shortcodes for customization: "
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: inc/biz_l.php:
|
596 |
#, php-format
|
597 |
msgid "%s - search inside posts/pages which are part of this category, "
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: inc/biz_l.php:
|
601 |
#, php-format
|
602 |
msgid "%s - search inside posts/pages which have this tag, "
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: inc/biz_l.php:
|
606 |
#, php-format
|
607 |
msgid "%s - check-in date, "
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: inc/biz_l.php:
|
611 |
#, php-format
|
612 |
msgid "%s - check-out date, "
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: inc/biz_l.php:
|
616 |
#, php-format
|
617 |
msgid "%s - default selection number of visitors, "
|
618 |
msgstr ""
|
619 |
|
620 |
-
#: inc/biz_l.php:
|
621 |
#, php-format
|
622 |
msgid "Example: %s - custom number of visitor selections\""
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: inc/biz_l.php:
|
626 |
#, php-format
|
627 |
msgid "%s - search button, "
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: inc/biz_l.php:
|
631 |
-
#: lib/wpdev-settings-general.php:
|
632 |
msgid "HTML tags is accepted."
|
633 |
msgstr ""
|
634 |
|
635 |
-
#: inc/biz_l.php:
|
636 |
msgid "Search Results"
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: inc/biz_l.php:
|
640 |
-
|
|
|
|
|
641 |
msgstr ""
|
642 |
|
643 |
-
#: inc/biz_l.php:
|
644 |
#, php-format
|
645 |
msgid "%s - resource title, "
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: inc/biz_l.php:
|
649 |
#, php-format
|
650 |
msgid "%s - link to the page with booking form, "
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: inc/biz_l.php:
|
654 |
#, php-format
|
655 |
msgid "%s - availability of booking resource, "
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: inc/biz_l.php:
|
659 |
#, php-format
|
660 |
msgid "%s - maximum number of visitors for the booking resource, "
|
661 |
msgstr ""
|
662 |
|
663 |
-
#: inc/biz_l.php:
|
664 |
#, php-format
|
665 |
msgid "%s - cost of booking the resource, "
|
666 |
msgstr ""
|
667 |
|
668 |
-
#: inc/biz_l.php:
|
669 |
#, php-format
|
670 |
msgid "%s - featured image, taken from the featured image associated with the post, "
|
671 |
msgstr ""
|
672 |
|
673 |
-
#: inc/biz_l.php:
|
674 |
#, php-format
|
675 |
msgid "%s - booking info, taken from the excerpt associated with the post, "
|
676 |
msgstr ""
|
677 |
|
678 |
-
#: inc/biz_l.php:
|
679 |
msgid "Full cost of the booking."
|
680 |
msgstr ""
|
681 |
|
682 |
-
#: inc/biz_l.php:
|
683 |
msgid "Cost of the booking for the selected dates only."
|
684 |
msgstr ""
|
685 |
|
686 |
-
#: inc/biz_l.php:
|
687 |
msgid "Additional cost, which depends on the fields selection in the form."
|
688 |
msgstr ""
|
689 |
|
690 |
-
#: inc/biz_l.php:
|
691 |
msgid "The deposit cost of the booking."
|
692 |
msgstr ""
|
693 |
|
694 |
-
#: inc/biz_l.php:
|
695 |
msgid "Balance cost of the booking - difference between deposit and full cost."
|
696 |
msgstr ""
|
697 |
|
698 |
-
#: inc/biz_l.php:
|
699 |
msgid "Help Info"
|
700 |
msgstr ""
|
701 |
|
702 |
-
#: inc/biz_l.php:
|
703 |
msgid "CSS customization of search form and search results you can make at this file"
|
704 |
msgstr ""
|
705 |
|
706 |
-
#: inc/biz_l.php:
|
707 |
#, php-format
|
708 |
msgid ""
|
709 |
"If you do not see search results at front-end side of your website, please check troubleshooting "
|
710 |
"instruction %shere%s"
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: inc/biz_l.php:
|
714 |
msgid "Check in"
|
715 |
msgstr ""
|
716 |
|
717 |
-
#: inc/biz_l.php:
|
718 |
msgid "Check out"
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: inc/biz_l.php:
|
722 |
msgid "Guests"
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: inc/biz_l.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
726 |
msgid "Availability"
|
727 |
msgstr ""
|
728 |
|
729 |
-
#: inc/biz_l.php:
|
730 |
msgid "Max. persons"
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: inc/biz_l.php:
|
734 |
msgid "Search Cache"
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: inc/biz_l.php:
|
738 |
msgid "Reset Search Cache"
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: inc/biz_l.php:
|
742 |
msgid "Cache expiration"
|
743 |
msgstr ""
|
744 |
|
745 |
-
#: inc/biz_l.php:
|
746 |
msgid "hour(s)"
|
747 |
msgstr ""
|
748 |
|
749 |
-
#: inc/biz_l.php:
|
|
|
750 |
msgid "day(s)"
|
751 |
msgstr ""
|
752 |
|
753 |
-
#: inc/biz_l.php:
|
754 |
msgid "Select time of cache expiration"
|
755 |
msgstr ""
|
756 |
|
757 |
-
#: inc/biz_l.php:
|
758 |
msgid "Cache will expire:"
|
759 |
msgstr ""
|
760 |
|
761 |
-
#: inc/biz_l.php:
|
762 |
#, php-format
|
763 |
msgid "Found: %s booking forms inside of posts or pages "
|
764 |
msgstr ""
|
765 |
|
766 |
-
#: inc/biz_l.php:
|
|
|
|
|
|
|
|
|
|
|
767 |
msgid "Search Form"
|
768 |
msgstr ""
|
769 |
|
770 |
-
#: inc/biz_l.php:
|
771 |
msgid "Parent Resource"
|
772 |
msgstr ""
|
773 |
|
774 |
-
#: inc/biz_l.php:
|
775 |
msgid "Max visitors"
|
776 |
msgstr ""
|
777 |
|
778 |
-
#: inc/biz_l.php:
|
779 |
msgid "Capacity: "
|
780 |
msgstr ""
|
781 |
|
782 |
-
#: inc/biz_l.php:
|
783 |
msgid "Select parent resource, if you want that parent resource to increase capacity."
|
784 |
msgstr ""
|
785 |
|
786 |
-
#: inc/biz_l.php:
|
787 |
msgid "Set priority of resource - resource with higher priority will be reserved firstly."
|
788 |
msgstr ""
|
789 |
|
790 |
-
#: inc/biz_l.php:
|
791 |
msgid "Resources count"
|
792 |
msgstr ""
|
793 |
|
794 |
-
#: inc/biz_l.php:
|
795 |
msgid "Create several booking resources for one time"
|
796 |
msgstr ""
|
797 |
|
798 |
-
#: inc/biz_l.php:
|
799 |
msgid "Default form"
|
800 |
msgstr ""
|
801 |
|
802 |
-
#: inc/biz_l.php:
|
803 |
-
#: inc/biz_m.php:1088 inc/biz_m.php:1132 inc/biz_m.php:2516 inc/biz_m.php:4720
|
804 |
-
#: inc/wpbc-booking-select-widget.php:212
|
805 |
-
msgid "Standard"
|
806 |
-
msgstr ""
|
807 |
-
|
808 |
-
#: inc/biz_l.php:4552 inc/wpbc-booking-select-widget.php:220
|
809 |
msgid "Select default custom booking form"
|
810 |
msgstr ""
|
811 |
|
812 |
-
#: inc/biz_l.php:
|
813 |
msgid "Available: "
|
814 |
msgstr ""
|
815 |
|
816 |
-
#: inc/biz_l.php:
|
817 |
-
#: lib/wpdev-bk-lib.php:
|
818 |
msgid "Default"
|
819 |
msgstr ""
|
820 |
|
821 |
-
#: inc/biz_l.php:
|
822 |
msgid "Superior"
|
823 |
msgstr ""
|
824 |
|
825 |
-
#: inc/biz_l.php:
|
826 |
msgid "Resource #1"
|
827 |
msgstr ""
|
828 |
|
829 |
-
#: inc/biz_l.php:
|
830 |
msgid "Presidential Suite"
|
831 |
msgstr ""
|
832 |
|
833 |
-
#: inc/biz_l.php:
|
834 |
msgid "Resource #2"
|
835 |
msgstr ""
|
836 |
|
837 |
-
#: inc/biz_l.php:
|
838 |
msgid "Royal Villa"
|
839 |
msgstr ""
|
840 |
|
841 |
-
#: inc/biz_l.php:
|
842 |
msgid "Resource #3"
|
843 |
msgstr ""
|
844 |
|
845 |
-
#: inc/biz_m.php:
|
846 |
msgid "night(s)"
|
847 |
msgstr ""
|
848 |
|
849 |
-
#: inc/biz_m.php:
|
850 |
-
#: inc/personal.php:
|
851 |
msgid "Adults"
|
852 |
msgstr ""
|
853 |
|
854 |
-
#: inc/biz_m.php:
|
855 |
-
#: inc/personal.php:
|
856 |
msgid "Children"
|
857 |
msgstr ""
|
858 |
|
859 |
-
#: inc/biz_m.php:
|
860 |
msgid "per 1 day"
|
861 |
msgstr ""
|
862 |
|
863 |
-
#: inc/biz_m.php:
|
864 |
msgid "from the cost of 1 day "
|
865 |
msgstr ""
|
866 |
|
867 |
-
#: inc/biz_m.php:
|
868 |
#, php-format
|
869 |
msgid "Additional cost in %s per 1 day"
|
870 |
msgstr ""
|
871 |
|
872 |
-
#: inc/biz_m.php:
|
873 |
-
#: inc/biz_m.php:
|
874 |
msgid " for all days!"
|
875 |
msgstr ""
|
876 |
|
877 |
-
#: inc/biz_m.php:
|
878 |
msgid "for all days!"
|
879 |
msgstr ""
|
880 |
|
881 |
-
#: inc/biz_m.php:
|
882 |
msgid "Custom Form"
|
883 |
msgstr ""
|
884 |
|
885 |
-
#: inc/biz_m.php:
|
886 |
msgid "Load selected booking form"
|
887 |
msgstr ""
|
888 |
|
889 |
-
#: inc/biz_m.php:
|
890 |
msgid "Load"
|
891 |
msgstr ""
|
892 |
|
893 |
-
#: inc/biz_m.php:
|
894 |
msgid "Delete selected booking form"
|
895 |
msgstr ""
|
896 |
|
897 |
-
#: inc/biz_m.php:
|
898 |
msgid "Do you really want to delete selected booking form ?"
|
899 |
msgstr ""
|
900 |
|
901 |
-
#: inc/biz_m.php:
|
902 |
msgid "Add new custom form"
|
903 |
msgstr ""
|
904 |
|
905 |
-
#: inc/biz_m.php:
|
906 |
msgid "Add New Custom Form"
|
907 |
msgstr ""
|
908 |
|
909 |
-
#: inc/biz_m.php:
|
910 |
msgid "Type the name of booking form"
|
911 |
msgstr ""
|
912 |
|
913 |
-
#: inc/biz_m.php:
|
914 |
msgid "Create new form"
|
915 |
msgstr ""
|
916 |
|
917 |
-
#: inc/biz_m.php:
|
918 |
msgid "Create"
|
919 |
msgstr ""
|
920 |
|
921 |
-
#: inc/biz_m.php:
|
922 |
msgid "Delete form"
|
923 |
msgstr ""
|
924 |
|
925 |
-
#: inc/biz_m.php:
|
926 |
#: lib/wpdev-bk-edit-toolbar-buttons.php:144
|
927 |
msgid "Cancel"
|
928 |
msgstr ""
|
929 |
|
930 |
-
#: inc/biz_m.php:
|
931 |
msgid "Deleted"
|
932 |
msgstr ""
|
933 |
|
934 |
-
#: inc/biz_m.php:
|
935 |
msgid "There are no extended booking forms"
|
936 |
msgstr ""
|
937 |
|
938 |
-
#: inc/biz_m.php:
|
939 |
msgid "Booking form type:"
|
940 |
msgstr ""
|
941 |
|
942 |
-
#: inc/biz_m.php:
|
943 |
msgid "Select type of booking form"
|
944 |
msgstr ""
|
945 |
|
946 |
-
#: inc/biz_m.php:
|
947 |
msgid "Booking Form"
|
948 |
msgstr ""
|
949 |
|
950 |
-
#: inc/biz_m.php:
|
951 |
msgid "Standard booking resource cost"
|
952 |
msgstr ""
|
953 |
|
954 |
-
#: inc/biz_m.php:
|
955 |
msgid "Total booking resource cost"
|
956 |
msgstr ""
|
957 |
|
958 |
-
#: inc/biz_m.php:
|
959 |
#, php-format
|
960 |
msgid ""
|
961 |
"%s - show cost hint for full booking in real time, depending on number of days selected and form "
|
962 |
"elements."
|
963 |
msgstr ""
|
964 |
|
965 |
-
#: inc/biz_m.php:
|
966 |
#, php-format
|
967 |
msgid "Example: %sThe full cost of payment: %s"
|
968 |
msgstr ""
|
969 |
|
970 |
-
#: inc/biz_m.php:
|
971 |
#, php-format
|
972 |
msgid ""
|
973 |
"%s - show hint of original booking cost without additional costs for full booking in real time, "
|
974 |
"depends only from days selection."
|
975 |
msgstr ""
|
976 |
|
977 |
-
#: inc/biz_m.php:
|
978 |
#, php-format
|
979 |
msgid "Example: %sThe original cost for payment: %s "
|
980 |
msgstr ""
|
981 |
|
982 |
-
#: inc/biz_m.php:
|
983 |
#, php-format
|
984 |
msgid ""
|
985 |
"%s - show cost hint of additional booking cost, which depends from selection of form elements."
|
986 |
msgstr ""
|
987 |
|
988 |
-
#: inc/biz_m.php:
|
989 |
#, php-format
|
990 |
msgid "Example: %sThe additional cost for payment: %s "
|
991 |
msgstr ""
|
992 |
|
993 |
-
#: inc/biz_m.php:
|
994 |
#, php-format
|
995 |
msgid "%s - enter direct cost at admin panel at page: "
|
996 |
msgstr ""
|
997 |
|
998 |
-
#: inc/biz_m.php:
|
999 |
-
#: lib/wpdev-settings-general.php:
|
1000 |
msgid "Add booking"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
-
#: inc/biz_m.php:
|
1004 |
#, php-format
|
1005 |
msgid "Example: %s"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
-
#: inc/biz_m.php:
|
1009 |
msgid "yes"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
-
#: inc/biz_m.php:
|
1013 |
msgid "Setting rate or cost, which is depend from number of selected days for the resource"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
-
#: inc/biz_m.php:
|
1017 |
msgid "Rates"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
-
#: inc/biz_m.php:
|
1021 |
msgid "Valuation days"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
-
#: inc/biz_m.php:
|
1025 |
#: inc/payments/paypal.php:766 inc/payments/sage.php:551
|
1026 |
msgid "Deposit"
|
1027 |
msgstr ""
|
1028 |
|
1029 |
-
#: inc/biz_m.php:
|
1030 |
msgid "Setting the default form for the specific resource"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
-
#: inc/biz_m.php:
|
1034 |
msgid "Default Form"
|
1035 |
msgstr ""
|
1036 |
|
1037 |
-
#: inc/biz_m.php:
|
1038 |
msgid "Set the cost based on the number of days selected for the reservation"
|
1039 |
msgstr ""
|
1040 |
|
1041 |
-
#: inc/biz_m.php:
|
1042 |
msgid "Activation of this feature is require setting cost per day or cost per night"
|
1043 |
msgstr ""
|
1044 |
|
1045 |
-
#: inc/biz_m.php:
|
1046 |
msgid "Deposit amount"
|
1047 |
msgstr ""
|
1048 |
|
1049 |
-
#: inc/biz_m.php:
|
1050 |
msgid "unavailable"
|
1051 |
msgstr ""
|
1052 |
|
1053 |
-
#: inc/biz_m.php:
|
1054 |
msgid "available"
|
1055 |
msgstr ""
|
1056 |
|
1057 |
-
#: inc/biz_m.php:
|
1058 |
msgid "Availability booking type"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#: inc/biz_m.php:
|
1062 |
#, php-format
|
1063 |
msgid "All days for %s"
|
1064 |
msgstr ""
|
1065 |
|
1066 |
-
#: inc/biz_m.php:
|
1067 |
#, php-format
|
1068 |
msgid "Select %s days by activating specific season filter below or %sadd new season filter%s"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
-
#: inc/biz_m.php:
|
1072 |
msgid "Season Filter Name"
|
1073 |
msgstr ""
|
1074 |
|
1075 |
-
#: inc/biz_m.php:
|
1076 |
#: inc/form/class-wpbc-form-help.php:418 inc/form/class-wpbc-form-help.php:564
|
1077 |
#: inc/payments/bank-transfer.php:302 inc/payments/pay-cash.php:90
|
1078 |
#: lib/wpdev-bk-edit-toolbar-buttons.php:485 lib/wpdev-bk-edit-toolbar-buttons.php:493
|
1079 |
msgid "Description"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
-
#: inc/biz_m.php:
|
1083 |
-
#: inc/biz_m.php:
|
1084 |
#: inc/payments/paypal.php:191 inc/payments/paypal.php:211 inc/payments/paypal.php:232
|
1085 |
-
#: inc/personal.php:
|
1086 |
-
#: inc/personal.php:
|
1087 |
-
#: lib/wpdev-settings-general.php:
|
1088 |
-
#: lib/wpdev-settings-general.php:
|
1089 |
-
#: lib/wpdev-settings-general.php:
|
1090 |
-
#: lib/wpdev-settings-general.php:
|
1091 |
-
#: lib/wpdev-settings-general.php:
|
1092 |
msgid "Active"
|
1093 |
msgstr ""
|
1094 |
|
1095 |
-
#: inc/biz_m.php:
|
1096 |
msgid "Edit season filter"
|
1097 |
msgstr ""
|
1098 |
|
1099 |
-
#: inc/biz_m.php:
|
1100 |
msgid "Seasonal rates of booking resource"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
-
#: inc/biz_m.php:
|
1104 |
#, php-format
|
1105 |
msgid ""
|
1106 |
"Enter seasonal rate(s) (cost diference in %s from standard cost %s or a fixed cost) of the "
|
1107 |
"booking resource (%s) or %sAdd a new seasonal filter%s"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
-
#: inc/biz_m.php:
|
1111 |
msgid "Final cost"
|
1112 |
msgstr ""
|
1113 |
|
1114 |
-
#: inc/biz_m.php:
|
1115 |
msgid "Season Filter"
|
1116 |
msgstr ""
|
1117 |
|
1118 |
-
#: inc/biz_m.php:
|
1119 |
msgid "Rate"
|
1120 |
msgstr ""
|
1121 |
|
1122 |
-
#: inc/biz_m.php:
|
1123 |
msgid "for 1 day"
|
1124 |
msgstr ""
|
1125 |
|
1126 |
-
#: inc/biz_m.php:
|
1127 |
msgid "for 1 night"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
-
#: inc/biz_m.php:
|
1131 |
msgid "fixed deposit"
|
1132 |
msgstr ""
|
1133 |
|
1134 |
-
#: inc/biz_m.php:
|
1135 |
msgid "for 1 hour"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
-
#: inc/biz_m.php:
|
1139 |
msgid "Filter Name"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
-
#: inc/biz_m.php:
|
1143 |
msgid "Note!"
|
1144 |
msgstr ""
|
1145 |
|
1146 |
-
#: inc/biz_m.php:
|
1147 |
msgid "Check boxe(s) at left side if you want to activate specific cost."
|
1148 |
msgstr ""
|
1149 |
|
1150 |
-
#: inc/biz_m.php:
|
1151 |
msgid "Update Rates"
|
1152 |
msgstr ""
|
1153 |
|
1154 |
-
#: inc/biz_m.php:
|
1155 |
msgid "Set cost of booking resource based on the number of days selected"
|
1156 |
msgstr ""
|
1157 |
|
1158 |
-
#: inc/biz_m.php:
|
1159 |
#, php-format
|
1160 |
msgid "If you add costs here, %srates%s for this booking resource will not take effect !!!"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
-
#: inc/biz_m.php:
|
1164 |
#, php-format
|
1165 |
msgid ""
|
1166 |
"Cost setings at %stop have higher priority%s than other costs of same type at the %sbottom%s of "
|
1167 |
"the list."
|
1168 |
msgstr ""
|
1169 |
|
1170 |
-
#: inc/biz_m.php:
|
1171 |
#, php-format
|
1172 |
msgid ""
|
1173 |
"Please create all %s terms firstly %s(from higher priority to lower)%s, then terms %s and after "
|
1174 |
"terms %s"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
-
#: inc/biz_m.php:
|
1178 |
msgid "Together"
|
1179 |
msgstr ""
|
1180 |
|
1181 |
-
#: inc/biz_m.php:
|
1182 |
msgid "For"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
-
#: inc/biz_m.php:
|
1186 |
-
#: inc/biz_s.php:
|
1187 |
-
#: inc/personal.php:
|
1188 |
-
#: lib/wpdev-settings-general.php:
|
1189 |
-
#: lib/wpdev-settings-general.php:
|
1190 |
msgid "From"
|
1191 |
msgstr ""
|
1192 |
|
1193 |
-
#: inc/biz_m.php:
|
1194 |
msgid "To"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
-
#: inc/biz_m.php:
|
1198 |
#, php-format
|
1199 |
msgid "%s and %s terms have higher priority than a range %s days."
|
1200 |
msgstr ""
|
1201 |
|
1202 |
-
#: inc/biz_m.php:
|
1203 |
msgid "Warning!"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
-
#: inc/biz_m.php:
|
1207 |
msgid ""
|
1208 |
"Specific cost will take affect, only if it active (the box at the left side is checked) and if "
|
1209 |
"\"Check In\" (start) date belong to selected season filter or if set \"Any days\"."
|
1210 |
msgstr ""
|
1211 |
|
1212 |
-
#: inc/biz_m.php:
|
1213 |
msgid "Number of Days"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
-
#: inc/biz_m.php:
|
1217 |
msgid "Cost Settings"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
-
#: inc/biz_m.php:
|
1221 |
msgid "Season Filter of Check In date"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
-
#: inc/biz_m.php:
|
1225 |
msgid "Day Number(s)"
|
1226 |
msgstr ""
|
1227 |
|
1228 |
-
#: inc/biz_m.php:
|
1229 |
msgid "to"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
-
#: inc/biz_m.php:
|
1233 |
-
#: lib/wpdev-bk-lib.php:
|
1234 |
msgid "day"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
-
#: inc/biz_m.php:
|
1238 |
#: inc/lib_p.php:376 inc/lib_s.php:282 inc/lib_s.php:304 inc/lib_s.php:309
|
1239 |
#: inc/payments/authorizenet.php:445 inc/payments/ipay88.php:455 inc/payments/paypal.php:767
|
1240 |
-
#: inc/payments/sage.php:552 lib/wpdev-settings-general.php:
|
1241 |
msgid "Cost"
|
1242 |
msgstr ""
|
1243 |
|
1244 |
-
#: inc/biz_m.php:
|
1245 |
msgid "Any days"
|
1246 |
msgstr ""
|
1247 |
|
1248 |
-
#: inc/biz_m.php:
|
1249 |
-
#: lib/wpbc-gcal.php:808 lib/wpdev-bk-lib.php:293 lib/wpdev-bk-lib.php:294 lib/wpdev-bk-lib.php:295
|
1250 |
-
#: lib/wpdev-bk-lib.php:296 lib/wpdev-bk-lib.php:297
|
1251 |
-
msgid "days"
|
1252 |
-
msgstr ""
|
1253 |
-
|
1254 |
-
#: inc/biz_m.php:3285 inc/biz_m.php:3379
|
1255 |
msgid "Remove"
|
1256 |
msgstr ""
|
1257 |
|
1258 |
-
#: inc/biz_m.php:
|
1259 |
msgid "Add new cost"
|
1260 |
msgstr ""
|
1261 |
|
1262 |
-
#: inc/biz_m.php:
|
1263 |
-
msgid "for all days"
|
1264 |
-
msgstr ""
|
1265 |
-
|
1266 |
-
#: inc/biz_m.php:3478
|
1267 |
msgid "Set amount of deposit payment"
|
1268 |
msgstr ""
|
1269 |
|
1270 |
-
#: inc/biz_m.php:
|
1271 |
msgid "Deposit payment total"
|
1272 |
msgstr ""
|
1273 |
|
1274 |
-
#: inc/biz_m.php:
|
1275 |
msgid "Deposit payment is not active for booking resource"
|
1276 |
msgstr ""
|
1277 |
|
1278 |
-
#: inc/biz_m.php:
|
1279 |
-
#: inc/personal.php:
|
1280 |
-
#: inc/sync/wpbc-sync-gcal-api.php:82 lib/wpdev-bk-lib.php:
|
1281 |
-
#: lib/wpdev-settings-general.php:
|
1282 |
-
#: lib/wpdev-settings-general.php:
|
1283 |
msgid "Status"
|
1284 |
msgstr ""
|
1285 |
|
1286 |
-
#: inc/biz_m.php:
|
1287 |
msgid "deposit payment for booking resource"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
-
#: inc/biz_m.php:
|
1291 |
msgid "fixed total in"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
-
#: inc/biz_m.php:
|
1295 |
msgid "of payment"
|
1296 |
msgstr ""
|
1297 |
|
1298 |
-
#: inc/biz_m.php:
|
1299 |
msgid "Conditions"
|
1300 |
msgstr ""
|
1301 |
|
1302 |
-
#: inc/biz_m.php:
|
1303 |
#, php-format
|
1304 |
msgid ""
|
1305 |
"Show deposit payment form, only if difference between %sToday%s and %sCheck In%s days more than"
|
1306 |
msgstr ""
|
1307 |
|
1308 |
-
#: inc/biz_m.php:
|
1309 |
#, php-format
|
1310 |
msgid "Show deposit payment form, only if %sCheck In%s day inside of this %sSeason Filter%s"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
-
#: inc/biz_m.php:
|
1314 |
msgid "Update Deposit"
|
1315 |
msgstr ""
|
1316 |
|
1317 |
-
#: inc/biz_m.php:
|
1318 |
msgid "Deposit payment"
|
1319 |
msgstr ""
|
1320 |
|
1321 |
-
#: inc/biz_m.php:
|
1322 |
#, php-format
|
1323 |
msgid ""
|
1324 |
"Check this box if you want to use the %sdeposit%s total %spayment%s on the payment form, instead "
|
1325 |
"of the full total of the booking."
|
1326 |
msgstr ""
|
1327 |
|
1328 |
-
#: inc/biz_m.php:
|
1329 |
#, php-format
|
1330 |
msgid " You can configure the deposit payment for your booking resources %shere%s."
|
1331 |
msgstr ""
|
1332 |
|
1333 |
-
#: inc/biz_m.php:
|
1334 |
#: lib/wpdev-bk-timeline.php:153
|
1335 |
msgid "Su"
|
1336 |
msgstr ""
|
1337 |
|
1338 |
-
#: inc/biz_m.php:
|
1339 |
msgid "Mo"
|
1340 |
msgstr ""
|
1341 |
|
1342 |
-
#: inc/biz_m.php:
|
1343 |
#: lib/wpdev-bk-timeline.php:153
|
1344 |
msgid "Tu"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
-
#: inc/biz_m.php:
|
1348 |
msgid "We"
|
1349 |
msgstr ""
|
1350 |
|
1351 |
-
#: inc/biz_m.php:
|
1352 |
#: lib/wpdev-bk-timeline.php:153
|
1353 |
msgid "Th"
|
1354 |
msgstr ""
|
1355 |
|
1356 |
-
#: inc/biz_m.php:
|
1357 |
msgid "Fr"
|
1358 |
msgstr ""
|
1359 |
|
1360 |
-
#: inc/biz_m.php:
|
1361 |
#: lib/wpdev-bk-timeline.php:153
|
1362 |
msgid "Sa"
|
1363 |
msgstr ""
|
1364 |
|
1365 |
-
#: inc/biz_m.php:
|
1366 |
msgid "Jan"
|
1367 |
msgstr ""
|
1368 |
|
1369 |
-
#: inc/biz_m.php:
|
1370 |
msgid "Feb"
|
1371 |
msgstr ""
|
1372 |
|
1373 |
-
#: inc/biz_m.php:
|
1374 |
msgid "Mar"
|
1375 |
msgstr ""
|
1376 |
|
1377 |
-
#: inc/biz_m.php:
|
1378 |
msgid "Apr"
|
1379 |
msgstr ""
|
1380 |
|
1381 |
-
#: inc/biz_m.php:
|
1382 |
msgid "May"
|
1383 |
msgstr ""
|
1384 |
|
1385 |
-
#: inc/biz_m.php:
|
1386 |
msgid "Jun"
|
1387 |
msgstr ""
|
1388 |
|
1389 |
-
#: inc/biz_m.php:
|
1390 |
msgid "Jul"
|
1391 |
msgstr ""
|
1392 |
|
1393 |
-
#: inc/biz_m.php:
|
1394 |
msgid "Aug"
|
1395 |
msgstr ""
|
1396 |
|
1397 |
-
#: inc/biz_m.php:
|
1398 |
msgid "Sep"
|
1399 |
msgstr ""
|
1400 |
|
1401 |
-
#: inc/biz_m.php:
|
1402 |
msgid "Oct"
|
1403 |
msgstr ""
|
1404 |
|
1405 |
-
#: inc/biz_m.php:
|
1406 |
msgid "Nov"
|
1407 |
msgstr ""
|
1408 |
|
1409 |
-
#: inc/biz_m.php:
|
1410 |
msgid "Dec"
|
1411 |
msgstr ""
|
1412 |
|
1413 |
-
#: inc/biz_m.php:
|
1414 |
msgid "No days"
|
1415 |
msgstr ""
|
1416 |
|
1417 |
-
#: inc/biz_m.php:
|
1418 |
msgid "time"
|
1419 |
msgstr ""
|
1420 |
|
1421 |
-
#: inc/biz_m.php:
|
1422 |
msgid "Every"
|
1423 |
msgstr ""
|
1424 |
|
1425 |
-
#: inc/biz_m.php:
|
1426 |
msgid "Each day "
|
1427 |
msgstr ""
|
1428 |
|
1429 |
-
#: inc/biz_m.php:
|
1430 |
msgid "on each day "
|
1431 |
msgstr ""
|
1432 |
|
1433 |
-
#: inc/biz_m.php:
|
1434 |
msgid "On each "
|
1435 |
msgstr ""
|
1436 |
|
1437 |
-
#: inc/biz_m.php:
|
1438 |
msgid "on each "
|
1439 |
msgstr ""
|
1440 |
|
1441 |
-
#: inc/biz_m.php:
|
1442 |
msgid "of every month "
|
1443 |
msgstr ""
|
1444 |
|
1445 |
-
#: inc/biz_m.php:
|
1446 |
msgid "of"
|
1447 |
msgstr ""
|
1448 |
|
1449 |
-
#: inc/biz_m.php:
|
1450 |
msgid "Filter saved"
|
1451 |
msgstr ""
|
1452 |
|
1453 |
-
#: inc/biz_m.php:
|
1454 |
msgid "Specific Dates Filter"
|
1455 |
msgstr ""
|
1456 |
|
1457 |
-
#: inc/biz_m.php:
|
1458 |
msgid "Type filter name"
|
1459 |
msgstr ""
|
1460 |
|
1461 |
-
#: inc/biz_m.php:
|
1462 |
msgid "Create new season filter"
|
1463 |
msgstr ""
|
1464 |
|
1465 |
-
#: inc/biz_m.php:
|
1466 |
msgid "Create New Season Filter"
|
1467 |
msgstr ""
|
1468 |
|
1469 |
-
#: inc/biz_m.php:
|
1470 |
msgid "Save changes"
|
1471 |
msgstr ""
|
1472 |
|
1473 |
-
#: inc/biz_m.php:
|
1474 |
msgid "Conditional Dates Filter"
|
1475 |
msgstr ""
|
1476 |
|
1477 |
-
#: inc/biz_m.php:
|
1478 |
msgid "Days of week"
|
1479 |
msgstr ""
|
1480 |
|
1481 |
-
#: inc/biz_m.php:
|
1482 |
#: inc/form/class-wpbc-form-help.php:597 lib/wpdev-bk-timeline.php:110
|
1483 |
#: lib/wpdev-bk-timeline.php:134 lib/wpdev-bk-timeline.php:135 lib/wpdev-bk-timeline.php:140
|
1484 |
-
#: lib/wpdev-bk-timeline.php:
|
1485 |
-
#: lib/wpdev-settings-general.php:
|
1486 |
msgid "Sunday"
|
1487 |
msgstr ""
|
1488 |
|
1489 |
-
#: inc/biz_m.php:
|
1490 |
#: inc/form/class-wpbc-form-help.php:598 lib/wpdev-bk-timeline.php:110
|
1491 |
#: lib/wpdev-bk-timeline.php:134 lib/wpdev-bk-timeline.php:135 lib/wpdev-bk-timeline.php:140
|
1492 |
-
#: lib/wpdev-bk-timeline.php:
|
1493 |
-
#: lib/wpdev-settings-general.php:
|
1494 |
msgid "Monday"
|
1495 |
msgstr ""
|
1496 |
|
1497 |
-
#: inc/biz_m.php:
|
1498 |
#: inc/form/class-wpbc-form-help.php:599 lib/wpdev-bk-timeline.php:110
|
1499 |
#: lib/wpdev-bk-timeline.php:134 lib/wpdev-bk-timeline.php:135 lib/wpdev-bk-timeline.php:140
|
1500 |
-
#: lib/wpdev-bk-timeline.php:
|
1501 |
-
#: lib/wpdev-settings-general.php:
|
1502 |
msgid "Tuesday"
|
1503 |
msgstr ""
|
1504 |
|
1505 |
-
#: inc/biz_m.php:
|
1506 |
#: inc/form/class-wpbc-form-help.php:600 lib/wpdev-bk-timeline.php:110
|
1507 |
#: lib/wpdev-bk-timeline.php:134 lib/wpdev-bk-timeline.php:135 lib/wpdev-bk-timeline.php:140
|
1508 |
-
#: lib/wpdev-bk-timeline.php:
|
1509 |
-
#: lib/wpdev-settings-general.php:
|
1510 |
msgid "Wednesday"
|
1511 |
msgstr ""
|
1512 |
|
1513 |
-
#: inc/biz_m.php:
|
1514 |
#: inc/form/class-wpbc-form-help.php:601 lib/wpdev-bk-timeline.php:110
|
1515 |
#: lib/wpdev-bk-timeline.php:134 lib/wpdev-bk-timeline.php:135 lib/wpdev-bk-timeline.php:140
|
1516 |
-
#: lib/wpdev-bk-timeline.php:
|
1517 |
-
#: lib/wpdev-settings-general.php:
|
1518 |
msgid "Thursday"
|
1519 |
msgstr ""
|
1520 |
|
1521 |
-
#: inc/biz_m.php:
|
1522 |
#: inc/form/class-wpbc-form-help.php:602 lib/wpdev-bk-timeline.php:110
|
1523 |
#: lib/wpdev-bk-timeline.php:134 lib/wpdev-bk-timeline.php:135 lib/wpdev-bk-timeline.php:140
|
1524 |
-
#: lib/wpdev-bk-timeline.php:
|
1525 |
-
#: lib/wpdev-settings-general.php:
|
1526 |
msgid "Friday"
|
1527 |
msgstr ""
|
1528 |
|
1529 |
-
#: inc/biz_m.php:
|
1530 |
#: inc/form/class-wpbc-form-help.php:603 lib/wpdev-bk-timeline.php:110
|
1531 |
#: lib/wpdev-bk-timeline.php:134 lib/wpdev-bk-timeline.php:135 lib/wpdev-bk-timeline.php:140
|
1532 |
-
#: lib/wpdev-bk-timeline.php:
|
1533 |
-
#: lib/wpdev-settings-general.php:
|
1534 |
msgid "Saturday"
|
1535 |
msgstr ""
|
1536 |
|
1537 |
-
#: inc/biz_m.php:
|
1538 |
msgid "Days of month"
|
1539 |
msgstr ""
|
1540 |
|
1541 |
-
#: inc/biz_m.php:
|
1542 |
msgid "Months"
|
1543 |
msgstr ""
|
1544 |
|
1545 |
-
#: inc/biz_m.php:
|
1546 |
msgid "January"
|
1547 |
msgstr ""
|
1548 |
|
1549 |
-
#: inc/biz_m.php:
|
1550 |
msgid "February"
|
1551 |
msgstr ""
|
1552 |
|
1553 |
-
#: inc/biz_m.php:
|
1554 |
msgid "March"
|
1555 |
msgstr ""
|
1556 |
|
1557 |
-
#: inc/biz_m.php:
|
1558 |
msgid "April"
|
1559 |
msgstr ""
|
1560 |
|
1561 |
-
#: inc/biz_m.php:
|
1562 |
msgid "June"
|
1563 |
msgstr ""
|
1564 |
|
1565 |
-
#: inc/biz_m.php:
|
1566 |
msgid "July"
|
1567 |
msgstr ""
|
1568 |
|
1569 |
-
#: inc/biz_m.php:
|
1570 |
msgid "August"
|
1571 |
msgstr ""
|
1572 |
|
1573 |
-
#: inc/biz_m.php:
|
1574 |
msgid "September"
|
1575 |
msgstr ""
|
1576 |
|
1577 |
-
#: inc/biz_m.php:
|
1578 |
msgid "October"
|
1579 |
msgstr ""
|
1580 |
|
1581 |
-
#: inc/biz_m.php:
|
1582 |
msgid "November"
|
1583 |
msgstr ""
|
1584 |
|
1585 |
-
#: inc/biz_m.php:
|
1586 |
msgid "December"
|
1587 |
msgstr ""
|
1588 |
|
1589 |
-
#: inc/biz_m.php:
|
1590 |
msgid "Years"
|
1591 |
msgstr ""
|
1592 |
|
1593 |
-
#: inc/biz_m.php:
|
1594 |
msgid "Filter deleted successfully"
|
1595 |
msgstr ""
|
1596 |
|
1597 |
-
#: inc/biz_m.php:
|
1598 |
msgid "Create dates filter"
|
1599 |
msgstr ""
|
1600 |
|
1601 |
-
#: inc/biz_m.php:
|
1602 |
msgid "Create conditional days filter"
|
1603 |
msgstr ""
|
1604 |
|
1605 |
-
#: inc/biz_m.php:
|
1606 |
msgid "Listing of season filters"
|
1607 |
msgstr ""
|
1608 |
|
1609 |
-
#: inc/biz_m.php:
|
1610 |
msgid "Filters"
|
1611 |
msgstr ""
|
1612 |
|
1613 |
-
#: inc/biz_m.php:
|
1614 |
msgid "Do you really want to delete?"
|
1615 |
msgstr ""
|
1616 |
|
1617 |
-
#: inc/biz_m.php:
|
1618 |
msgid "Limit available days from today"
|
1619 |
msgstr ""
|
1620 |
|
1621 |
-
#: inc/biz_m.php:
|
1622 |
msgid "Select number of available days in calendar start from today."
|
1623 |
msgstr ""
|
1624 |
|
1625 |
-
#: inc/biz_m.php:
|
1626 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1627 |
msgid "Hide"
|
1628 |
msgstr ""
|
1629 |
|
1630 |
-
#: inc/biz_m.php:
|
1631 |
msgid "Showing cost in date cell"
|
1632 |
msgstr ""
|
1633 |
|
1634 |
-
#: inc/biz_m.php:
|
1635 |
#, php-format
|
1636 |
msgid " Check this box to display the %sdaily cost at the date cells%s in the calendar(s)."
|
1637 |
msgstr ""
|
1638 |
|
1639 |
-
#: inc/biz_m.php:
|
1640 |
msgid "Currency symbol"
|
1641 |
msgstr ""
|
1642 |
|
1643 |
-
#: inc/biz_m.php:
|
1644 |
-
#: lib/wpdev-settings-general.php:
|
1645 |
msgid "Custom"
|
1646 |
msgstr ""
|
1647 |
|
1648 |
-
#: inc/biz_m.php:
|
1649 |
#, php-format
|
1650 |
msgid ""
|
1651 |
"Type your %scurrency symbol%s to display near daily cost in date cells. %sDocumentation on "
|
1652 |
"currency symbols%s"
|
1653 |
msgstr ""
|
1654 |
|
1655 |
-
#: inc/biz_m.php:
|
1656 |
msgid "Showing cost in tooltip"
|
1657 |
msgstr ""
|
1658 |
|
1659 |
-
#: inc/biz_m.php:
|
1660 |
msgid ""
|
1661 |
" Check this box to display the daily cost with a tooltip when mouse hovers over each day on the "
|
1662 |
"calendar(s)."
|
1663 |
msgstr ""
|
1664 |
|
1665 |
-
#: inc/biz_m.php:
|
1666 |
msgid "Cost Title"
|
1667 |
msgstr ""
|
1668 |
|
1669 |
-
#: inc/biz_m.php:
|
1670 |
#, php-format
|
1671 |
msgid "Type your %scost%s description"
|
1672 |
msgstr ""
|
1673 |
|
1674 |
-
#: inc/biz_m.php:
|
1675 |
msgid "Advanced cost management"
|
1676 |
msgstr ""
|
1677 |
|
1678 |
-
#: inc/biz_m.php:
|
1679 |
msgid "Configure Additional cost for the form"
|
1680 |
msgstr ""
|
1681 |
|
1682 |
-
#: inc/biz_m.php:
|
1683 |
msgid "Additional cost for"
|
1684 |
msgstr ""
|
1685 |
|
1686 |
-
#: inc/biz_m.php:
|
1687 |
msgid ""
|
1688 |
"Check this box if you want that specific additional cost, which configured as percentage for "
|
1689 |
"some option, apply to other additional fixed costs and not only to original booking cost."
|
1690 |
msgstr ""
|
1691 |
|
1692 |
-
#: inc/biz_m.php:
|
1693 |
msgid "Configure additional cost, which depend from selection of selectbox(es) and checkbox(es)."
|
1694 |
msgstr ""
|
1695 |
|
1696 |
-
#: inc/biz_m.php:
|
1697 |
#, php-format
|
1698 |
msgid ""
|
1699 |
"Fields %s(selectbox(es) and checkbox(es))%s are shown here automatically if they exist in the "
|
1700 |
"%sbooking form%s."
|
1701 |
msgstr ""
|
1702 |
|
1703 |
-
#: inc/biz_m.php:
|
1704 |
msgid "Enter additional cost in formats:"
|
1705 |
msgstr ""
|
1706 |
|
1707 |
-
#: inc/biz_m.php:
|
1708 |
#, php-format
|
1709 |
msgid ""
|
1710 |
"For example, if the original cost of the booking is %s, then after applying additional costs the "
|
1711 |
"total cost will be folowing"
|
1712 |
msgstr ""
|
1713 |
|
1714 |
-
#: inc/biz_m.php:
|
1715 |
msgid "Enter fixed cost"
|
1716 |
msgstr ""
|
1717 |
|
1718 |
-
#: inc/biz_m.php:
|
1719 |
#, php-format
|
1720 |
msgid "%s, then total cost will be %s"
|
1721 |
msgstr ""
|
1722 |
|
1723 |
-
#: inc/biz_m.php:
|
1724 |
msgid "Enter percentage of the entire booking"
|
1725 |
msgstr ""
|
1726 |
|
1727 |
-
#: inc/biz_m.php:
|
1728 |
msgid "Enter fixed amount for each selected day"
|
1729 |
msgstr ""
|
1730 |
|
1731 |
-
#: inc/biz_m.php:
|
1732 |
#, php-format
|
1733 |
msgid "%s, then total cost will be (if selected 3 days) %s"
|
1734 |
msgstr ""
|
1735 |
|
1736 |
-
#: inc/biz_m.php:
|
1737 |
#: inc/form/class-wpbc-form-help.php:306 inc/form/class-wpbc-form-help.php:344
|
1738 |
msgid "or"
|
1739 |
msgstr ""
|
1740 |
|
1741 |
-
#: inc/biz_m.php:
|
1742 |
msgid "Enter percentage as additional sum, which is based only on original cost and not full sum"
|
1743 |
msgstr ""
|
1744 |
|
1745 |
-
#: inc/biz_m.php:
|
1746 |
#, php-format
|
1747 |
msgid "Please check more info about configuration of this cost settings on this %spage%s."
|
1748 |
msgstr ""
|
1749 |
|
1750 |
-
#: inc/biz_m.php:
|
1751 |
msgid "Resource ID or Title"
|
1752 |
msgstr ""
|
1753 |
|
1754 |
-
#: inc/biz_m.php:
|
1755 |
-
#: lib/wpdev-bk-lib.php:
|
1756 |
msgid "Go"
|
1757 |
msgstr ""
|
1758 |
|
1759 |
-
#: inc/biz_m.php:
|
1760 |
msgid "Bulk Actions"
|
1761 |
msgstr ""
|
1762 |
|
1763 |
-
#: inc/biz_m.php:
|
1764 |
#: inc/wpbc-br-table-for-settings.php:79 inc/wpbc-br-table-for-settings.php:105
|
1765 |
#: lib/wpbc-gcal-class.php:579 lib/wpbc-gcal-class.php:601
|
1766 |
msgid "Info"
|
1767 |
msgstr ""
|
1768 |
|
1769 |
-
#: inc/biz_m.php:
|
1770 |
#: lib/wpbc-gcal-class.php:594
|
1771 |
msgid "Selection"
|
1772 |
msgstr ""
|
1773 |
|
1774 |
-
#: inc/biz_m.php:
|
1775 |
msgid "Resource Name"
|
1776 |
msgstr ""
|
1777 |
|
1778 |
-
#: inc/biz_m.php:
|
1779 |
msgid "Resources Settings"
|
1780 |
msgstr ""
|
1781 |
|
1782 |
-
#: inc/biz_m.php:
|
1783 |
msgid "Resources management"
|
1784 |
msgstr ""
|
1785 |
|
1786 |
-
#: inc/biz_m.php:
|
1787 |
msgid "Costs and Rates"
|
1788 |
msgstr ""
|
1789 |
|
1790 |
-
#: inc/biz_m.php:
|
1791 |
msgid "Costs and Rates Settings"
|
1792 |
msgstr ""
|
1793 |
|
1794 |
-
#: inc/biz_m.php:
|
1795 |
msgid "Customization of rates, valuation days cost and deposit amount "
|
1796 |
msgstr ""
|
1797 |
|
1798 |
-
#: inc/biz_m.php:
|
1799 |
msgid "Advanced Cost"
|
1800 |
msgstr ""
|
1801 |
|
1802 |
-
#: inc/biz_m.php:
|
1803 |
msgid "Advanced Cost Settings"
|
1804 |
msgstr ""
|
1805 |
|
1806 |
-
#: inc/biz_m.php:
|
1807 |
msgid "Customization of additional cost, which depend from form fields"
|
1808 |
msgstr ""
|
1809 |
|
1810 |
-
#: inc/biz_m.php:
|
1811 |
msgid "Coupons"
|
1812 |
msgstr ""
|
1813 |
|
1814 |
-
#: inc/biz_m.php:
|
1815 |
msgid "Coupons Settings"
|
1816 |
msgstr ""
|
1817 |
|
1818 |
-
#: inc/biz_m.php:
|
1819 |
msgid "Setting coupons for discount"
|
1820 |
msgstr ""
|
1821 |
|
1822 |
-
#: inc/biz_m.php:
|
1823 |
msgid "Availability Settings"
|
1824 |
msgstr ""
|
1825 |
|
1826 |
-
#: inc/biz_m.php:
|
1827 |
msgid "Customization of availability settings"
|
1828 |
msgstr ""
|
1829 |
|
1830 |
-
#: inc/biz_m.php:
|
1831 |
msgid "Season Filters"
|
1832 |
msgstr ""
|
1833 |
|
1834 |
-
#: inc/biz_m.php:
|
1835 |
msgid "Season Filters Settings"
|
1836 |
msgstr ""
|
1837 |
|
1838 |
-
#: inc/biz_m.php:
|
1839 |
msgid "Customization of season filters settings"
|
1840 |
msgstr ""
|
1841 |
|
1842 |
-
#: inc/biz_m.php:
|
1843 |
msgid "Cost: "
|
1844 |
msgstr ""
|
1845 |
|
1846 |
-
#: inc/biz_m.php:
|
1847 |
msgid "Weekend"
|
1848 |
msgstr ""
|
1849 |
|
1850 |
-
#: inc/biz_m.php:
|
1851 |
msgid "High season"
|
1852 |
msgstr ""
|
1853 |
|
1854 |
-
#: inc/biz_s.php:108 inc/personal.php:
|
1855 |
msgid "Select Times"
|
1856 |
msgstr ""
|
1857 |
|
1858 |
-
#: inc/biz_s.php:
|
1859 |
msgid "Setting cost for the resource"
|
1860 |
msgstr ""
|
1861 |
|
1862 |
-
#: inc/biz_s.php:
|
1863 |
msgid "/ day"
|
1864 |
msgstr ""
|
1865 |
|
1866 |
-
#: inc/biz_s.php:
|
1867 |
msgid "/ night"
|
1868 |
msgstr ""
|
1869 |
|
1870 |
-
#: inc/biz_s.php:
|
1871 |
msgid "fixed"
|
1872 |
msgstr ""
|
1873 |
|
1874 |
-
#: inc/biz_s.php:
|
1875 |
msgid "/ hour"
|
1876 |
msgstr ""
|
1877 |
|
1878 |
-
#: inc/biz_s.php:
|
|
|
|
|
|
|
|
|
1879 |
msgid ""
|
1880 |
"Start Time is invalid. The date or time may be booked, or already in the past! Please choose "
|
1881 |
"another date or time."
|
1882 |
msgstr ""
|
1883 |
|
1884 |
-
#: inc/biz_s.php:
|
1885 |
msgid ""
|
1886 |
"End Time is invalid. The date or time may be booked, or already in the past. The End Time may "
|
1887 |
"also be earlier that the start time, if only 1 day was selected! Please choose another date or "
|
1888 |
"time."
|
1889 |
msgstr ""
|
1890 |
|
1891 |
-
#: inc/biz_s.php:
|
1892 |
msgid "The time(s) may be booked, or already in the past!"
|
1893 |
msgstr ""
|
1894 |
|
1895 |
-
#: inc/biz_s.php:
|
1896 |
msgid "Cost saved successfully"
|
1897 |
msgstr ""
|
1898 |
|
1899 |
-
#: inc/biz_s.php:
|
1900 |
msgid "Cost is not correct. It must be greater than 0"
|
1901 |
msgstr ""
|
1902 |
|
1903 |
-
#: inc/biz_s.php:
|
1904 |
msgid "Send payment request to customer"
|
1905 |
msgstr ""
|
1906 |
|
1907 |
-
#: inc/biz_s.php:
|
1908 |
#, php-format
|
1909 |
msgid "Type your %sreason for payment%s request"
|
1910 |
msgstr ""
|
1911 |
|
1912 |
-
#: inc/biz_s.php:
|
1913 |
msgid "Send Request"
|
1914 |
msgstr ""
|
1915 |
|
1916 |
-
#: inc/biz_s.php:
|
1917 |
-
#: lib/wpdev-bk-lib.php:
|
1918 |
msgid "Close"
|
1919 |
msgstr ""
|
1920 |
|
1921 |
-
#: inc/biz_s.php:
|
1922 |
msgid "Request has been sent"
|
1923 |
msgstr ""
|
1924 |
|
1925 |
-
#: inc/biz_s.php:
|
1926 |
msgid "Request has failed"
|
1927 |
msgstr ""
|
1928 |
|
1929 |
-
#: inc/biz_s.php:
|
1930 |
msgid "The payment status is changed successfully"
|
1931 |
msgstr ""
|
1932 |
|
1933 |
-
#: inc/biz_s.php:
|
1934 |
msgid "The changing of payment status is failed"
|
1935 |
msgstr ""
|
1936 |
|
1937 |
-
#: inc/biz_s.php:
|
1938 |
msgid "Email to \"Person\" with payment request"
|
1939 |
msgstr ""
|
1940 |
|
1941 |
-
#: inc/biz_s.php:
|
1942 |
-
#: lib/wpdev-settings-general.php:
|
1943 |
msgid "Send to Admin"
|
1944 |
msgstr ""
|
1945 |
|
1946 |
-
#: inc/biz_s.php:
|
1947 |
-
#: lib/wpdev-settings-general.php:
|
1948 |
msgid "Check this box to send copy of this email to Admin"
|
1949 |
msgstr ""
|
1950 |
|
1951 |
-
#: inc/biz_s.php:
|
1952 |
-
#: inc/personal.php:
|
1953 |
-
#: lib/wpdev-settings-general.php:
|
1954 |
#, php-format
|
1955 |
msgid "Type the default %sadmin email%s sending the booking confimation"
|
1956 |
msgstr ""
|
1957 |
|
1958 |
-
#: inc/biz_s.php:
|
1959 |
-
#: inc/personal.php:
|
1960 |
-
#: lib/wpdev-settings-general.php:
|
1961 |
-
#: lib/wpdev-settings-general.php:
|
1962 |
msgid "Subject"
|
1963 |
msgstr ""
|
1964 |
|
1965 |
-
#: inc/biz_s.php:
|
1966 |
#, php-format
|
1967 |
msgid "Type email subject for %spayment request%s."
|
1968 |
msgstr ""
|
1969 |
|
1970 |
-
#: inc/biz_s.php:
|
1971 |
-
#: inc/personal.php:
|
1972 |
-
#: lib/wpdev-settings-general.php:
|
1973 |
-
#: lib/wpdev-settings-general.php:
|
1974 |
msgid "Content"
|
1975 |
msgstr ""
|
1976 |
|
1977 |
-
#: inc/biz_s.php:
|
1978 |
#, php-format
|
1979 |
msgid "Type your %semail message for payment request%s"
|
1980 |
msgstr ""
|
1981 |
|
1982 |
-
#: inc/biz_s.php:
|
1983 |
#, php-format
|
1984 |
msgid ""
|
1985 |
"You need to make payment %s for booking %s at %s. %s You can make payment at this %s Thank you, "
|
1986 |
"booking service."
|
1987 |
msgstr ""
|
1988 |
|
1989 |
-
#: inc/biz_s.php:
|
1990 |
msgid "page"
|
1991 |
msgstr ""
|
1992 |
|
1993 |
-
#: inc/biz_s.php:
|
1994 |
msgid "deposit"
|
1995 |
msgstr ""
|
1996 |
|
1997 |
-
#: inc/biz_s.php:
|
1998 |
msgid "Total cost"
|
1999 |
msgstr ""
|
2000 |
|
2001 |
-
#: inc/biz_s.php:
|
2002 |
msgid "balance"
|
2003 |
msgstr ""
|
2004 |
|
2005 |
-
#: inc/biz_s.php:
|
2006 |
msgid "Auto-fill form"
|
2007 |
msgstr ""
|
2008 |
|
2009 |
-
#: inc/biz_s.php:
|
2010 |
msgid "Billing form fields customization"
|
2011 |
msgstr ""
|
2012 |
|
2013 |
-
#: inc/biz_s.php:
|
2014 |
msgid ""
|
2015 |
"Please select a field from your booking form. This field will be automatically assigned to the "
|
2016 |
"current field in the billing form."
|
2017 |
msgstr ""
|
2018 |
|
2019 |
-
#: inc/biz_s.php:
|
2020 |
msgid "Customer Email"
|
2021 |
msgstr ""
|
2022 |
|
2023 |
-
#: inc/biz_s.php:
|
2024 |
msgid "First Name(s)"
|
2025 |
msgstr ""
|
2026 |
|
2027 |
-
#: inc/biz_s.php:
|
2028 |
msgid "Last name"
|
2029 |
msgstr ""
|
2030 |
|
2031 |
-
#: inc/biz_s.php:
|
2032 |
msgid "Billing Address"
|
2033 |
msgstr ""
|
2034 |
|
2035 |
-
#: inc/biz_s.php:
|
2036 |
msgid "Billing City"
|
2037 |
msgstr ""
|
2038 |
|
2039 |
-
#: inc/biz_s.php:
|
2040 |
msgid "Post Code"
|
2041 |
msgstr ""
|
2042 |
|
2043 |
-
#: inc/biz_s.php:
|
2044 |
msgid "Country"
|
2045 |
msgstr ""
|
2046 |
|
2047 |
-
#: inc/biz_s.php:
|
2048 |
msgid "State"
|
2049 |
msgstr ""
|
2050 |
|
2051 |
-
#: inc/biz_s.php:
|
2052 |
#, php-format
|
2053 |
msgid "Configuring these %sfields is required for the some payment%s systems!"
|
2054 |
msgstr ""
|
2055 |
|
2056 |
-
#: inc/biz_s.php:
|
2057 |
msgid "Title of booked timeslot(s)"
|
2058 |
msgstr ""
|
2059 |
|
2060 |
-
#: inc/biz_s.php:
|
2061 |
#, php-format
|
2062 |
msgid "Type your %stitle%s, what will show in mouseover tooltip near booked timeslot(s)"
|
2063 |
msgstr ""
|
2064 |
|
2065 |
-
#: inc/biz_s.php:
|
2066 |
msgid "Time Format"
|
2067 |
msgstr ""
|
2068 |
|
2069 |
-
#: inc/biz_s.php:
|
2070 |
#, php-format
|
2071 |
msgid ""
|
2072 |
"Type your time format for emails and the booking table. %sDocumentation on time formatting%s"
|
2073 |
msgstr ""
|
2074 |
|
2075 |
-
#: inc/biz_s.php:
|
2076 |
#, php-format
|
2077 |
msgid "Select a %sFIXED%s number of days with %s1 mouse click%s"
|
2078 |
msgstr ""
|
2079 |
|
2080 |
-
#: inc/biz_s.php:
|
2081 |
#, php-format
|
2082 |
msgid "Select a %sDYNAMIC%s range of days with %s2 mouse clicks%s"
|
2083 |
msgstr ""
|
2084 |
|
2085 |
-
#: inc/biz_s.php:
|
2086 |
msgid "Days selection number"
|
2087 |
msgstr ""
|
2088 |
|
2089 |
-
#: inc/biz_s.php:
|
2090 |
#, php-format
|
2091 |
msgid "Type your %snumber of days for range selection%s"
|
2092 |
msgstr ""
|
2093 |
|
2094 |
-
#: inc/biz_s.php:
|
2095 |
msgid "Start day of range"
|
2096 |
msgstr ""
|
2097 |
|
2098 |
-
#: inc/biz_s.php:
|
2099 |
msgid "Any day of week"
|
2100 |
msgstr ""
|
2101 |
|
2102 |
-
#: inc/biz_s.php:
|
2103 |
msgid "Specific day(s) of week"
|
2104 |
msgstr ""
|
2105 |
|
2106 |
-
#: inc/biz_s.php:
|
2107 |
msgid "Select your start day of range selection at week"
|
2108 |
msgstr ""
|
2109 |
|
2110 |
-
#: inc/biz_s.php:
|
2111 |
msgid "Min"
|
2112 |
msgstr ""
|
2113 |
|
2114 |
-
#: inc/biz_s.php:
|
2115 |
#, php-format
|
2116 |
msgid "Select your %sminimum and maximum number of days for range selection%s"
|
2117 |
msgstr ""
|
2118 |
|
2119 |
-
#: inc/biz_s.php:
|
2120 |
msgid "Specific days selections"
|
2121 |
msgstr ""
|
2122 |
|
2123 |
-
#: inc/biz_s.php:
|
2124 |
#, php-format
|
2125 |
msgid ""
|
2126 |
"Type your %sspecific%s days, which can be selected by visitors, or leave this value empty. It "
|
@@ -2128,226 +2181,218 @@ msgid ""
|
|
2128 |
"this: %s) or combination (example:%s, its the same like this: %s)"
|
2129 |
msgstr ""
|
2130 |
|
2131 |
-
#: inc/biz_s.php:
|
2132 |
msgid "Use time selections as recurrent time slots"
|
2133 |
msgstr ""
|
2134 |
|
2135 |
-
#: inc/biz_s.php:
|
2136 |
msgid ""
|
2137 |
"Check this box if you want to use recurrent time to reserve several days. This means that middle "
|
2138 |
"days will be partially booked by actual times, otherwise the time in the booking form will be "
|
2139 |
"used as check-in/check-out time for the first and last day of the reservation."
|
2140 |
msgstr ""
|
2141 |
|
2142 |
-
#: inc/biz_s.php:
|
2143 |
msgid "Use check in/out time"
|
2144 |
msgstr ""
|
2145 |
|
2146 |
-
#: inc/biz_s.php:
|
2147 |
msgid "This option will overwrite any times selection in your booking form."
|
2148 |
msgstr ""
|
2149 |
|
2150 |
-
#: inc/biz_s.php:
|
2151 |
msgid "Check this option, to use check in/out time during booking process. "
|
2152 |
msgstr ""
|
2153 |
|
2154 |
-
#: inc/biz_s.php:
|
2155 |
#, php-format
|
2156 |
msgid "%s Important!%s This will overwrite any times selection in your booking form."
|
2157 |
msgstr ""
|
2158 |
|
2159 |
-
#: inc/biz_s.php:
|
2160 |
msgid "Check-in time"
|
2161 |
msgstr ""
|
2162 |
|
2163 |
-
#: inc/biz_s.php:
|
2164 |
#, php-format
|
2165 |
msgid "%sstart booking time%s"
|
2166 |
msgstr ""
|
2167 |
|
2168 |
-
#: inc/biz_s.php:
|
2169 |
#, php-format
|
2170 |
msgid "Type your %sCheck-in%s time of booking"
|
2171 |
msgstr ""
|
2172 |
|
2173 |
-
#: inc/biz_s.php:
|
2174 |
msgid "Check-Out time"
|
2175 |
msgstr ""
|
2176 |
|
2177 |
-
#: inc/biz_s.php:
|
2178 |
#, php-format
|
2179 |
msgid "%send booking time%s"
|
2180 |
msgstr ""
|
2181 |
|
2182 |
-
#: inc/biz_s.php:
|
2183 |
#, php-format
|
2184 |
msgid "Type your %sCheck-Out%s time of booking"
|
2185 |
msgstr ""
|
2186 |
|
2187 |
-
#: inc/biz_s.php:
|
2188 |
msgid "Costs"
|
2189 |
msgstr ""
|
2190 |
|
2191 |
-
#: inc/biz_s.php:
|
2192 |
msgid "Set the cost"
|
2193 |
msgstr ""
|
2194 |
|
2195 |
-
#: inc/biz_s.php:
|
2196 |
msgid "fixed sum"
|
2197 |
msgstr ""
|
2198 |
|
2199 |
-
#: inc/biz_s.php:
|
2200 |
msgid " Select your cost configuration."
|
2201 |
msgstr ""
|
2202 |
|
2203 |
-
#: inc/biz_s.php:
|
2204 |
msgid "Currency format"
|
2205 |
msgstr ""
|
2206 |
|
2207 |
-
#: inc/biz_s.php:
|
2208 |
msgid "Number of decimal points"
|
2209 |
msgstr ""
|
2210 |
|
2211 |
-
#: inc/biz_s.php:
|
2212 |
msgid "Separator for the decimal point"
|
2213 |
msgstr ""
|
2214 |
|
2215 |
-
#: inc/biz_s.php:
|
2216 |
msgid "No separator"
|
2217 |
msgstr ""
|
2218 |
|
2219 |
-
#: inc/biz_s.php:
|
2220 |
msgid "Space"
|
2221 |
msgstr ""
|
2222 |
|
2223 |
-
#: inc/biz_s.php:
|
2224 |
msgid "Dot"
|
2225 |
msgstr ""
|
2226 |
|
2227 |
-
#: inc/biz_s.php:
|
2228 |
msgid "Comma"
|
2229 |
msgstr ""
|
2230 |
|
2231 |
-
#: inc/biz_s.php:
|
2232 |
msgid "Thousands separator"
|
2233 |
msgstr ""
|
2234 |
|
2235 |
-
#: inc/biz_s.php:
|
2236 |
msgid "Time impact to cost"
|
2237 |
msgstr ""
|
2238 |
|
2239 |
-
#: inc/biz_s.php:
|
2240 |
#, php-format
|
2241 |
msgid ""
|
2242 |
"Check this box if you want the %stime selection%s on the booking form %sapplied to the cost "
|
2243 |
"calculation%s."
|
2244 |
msgstr ""
|
2245 |
|
2246 |
-
#: inc/biz_s.php:
|
2247 |
msgid "Show booking details in payment form"
|
2248 |
msgstr ""
|
2249 |
|
2250 |
-
#: inc/biz_s.php:
|
2251 |
#, php-format
|
2252 |
msgid ""
|
2253 |
" Check this checkbox if you want to show the %sbooking details summary%s above the payment form"
|
2254 |
msgstr ""
|
2255 |
|
2256 |
-
#: inc/biz_s.php:
|
2257 |
msgid "Auto cancellation / auto approval of bookings"
|
2258 |
msgstr ""
|
2259 |
|
2260 |
-
#: inc/biz_s.php:
|
2261 |
msgid "Auto approve all new bookings"
|
2262 |
msgstr ""
|
2263 |
|
2264 |
-
#: inc/biz_s.php:
|
2265 |
#, php-format
|
2266 |
msgid "Check this checkbox to %sactivate%s auto approve of all new pending bookings."
|
2267 |
msgstr ""
|
2268 |
|
2269 |
-
#: inc/biz_s.php:
|
2270 |
msgid "Auto-cancel bookings"
|
2271 |
msgstr ""
|
2272 |
|
2273 |
-
#: inc/biz_s.php:
|
2274 |
#, php-format
|
2275 |
msgid "Check this box to %sactivate%s auto-cancellation for pending, unpaid bookings."
|
2276 |
msgstr ""
|
2277 |
|
2278 |
-
#: inc/biz_s.php:
|
2279 |
msgid "Cancel bookings older"
|
2280 |
msgstr ""
|
2281 |
|
2282 |
-
#: inc/biz_s.php:
|
2283 |
-
msgid "hour"
|
2284 |
-
msgstr ""
|
2285 |
-
|
2286 |
-
#: inc/biz_s.php:2181 lib/wpbc-gcal.php:617 lib/wpbc-gcal.php:681 lib/wpbc-gcal.php:802
|
2287 |
-
msgid "hours"
|
2288 |
-
msgstr ""
|
2289 |
-
|
2290 |
-
#: inc/biz_s.php:2191
|
2291 |
msgid "Cancel only pending, unpaid bookings, which are older than this selection."
|
2292 |
msgstr ""
|
2293 |
|
2294 |
-
#: inc/biz_s.php:
|
2295 |
msgid "Cancellation email sent"
|
2296 |
msgstr ""
|
2297 |
|
2298 |
-
#: inc/biz_s.php:
|
2299 |
#, php-format
|
2300 |
msgid "Check this box to %ssend%s cancellation email for this resource."
|
2301 |
msgstr ""
|
2302 |
|
2303 |
-
#: inc/biz_s.php:
|
2304 |
msgid "Reason for cancellation"
|
2305 |
msgstr ""
|
2306 |
|
2307 |
-
#: inc/biz_s.php:
|
2308 |
#, php-format
|
2309 |
msgid "Type the reason for %scancellation%s for the email template."
|
2310 |
msgstr ""
|
2311 |
|
2312 |
-
#: inc/biz_s.php:
|
2313 |
msgid ""
|
2314 |
"Customization of billing fields, which automatically assign from booking form to billing form"
|
2315 |
msgstr ""
|
2316 |
|
2317 |
-
#: inc/biz_s.php:
|
2318 |
msgid "Billing form fields"
|
2319 |
msgstr ""
|
2320 |
|
2321 |
-
#: inc/biz_s.php:
|
2322 |
msgid "Booked Times:"
|
2323 |
msgstr ""
|
2324 |
|
2325 |
-
#: inc/biz_s.php:
|
2326 |
msgid ""
|
2327 |
"This booking canceled because we did not receive payment and the administrator did not approve "
|
2328 |
"it."
|
2329 |
msgstr ""
|
2330 |
|
2331 |
-
#: inc/biz_s.php:
|
2332 |
msgid "You need to make payment for this reservation"
|
2333 |
msgstr ""
|
2334 |
|
2335 |
-
#: inc/biz_s.php:
|
2336 |
#, php-format
|
2337 |
msgid ""
|
2338 |
"You need to make payment %s for reservation %s at %s. %s Please make payment on this page: %s "
|
2339 |
"Thank you, %s"
|
2340 |
msgstr ""
|
2341 |
|
2342 |
-
#: inc/biz_s.php:
|
2343 |
msgid "Apartment#1"
|
2344 |
msgstr ""
|
2345 |
|
2346 |
-
#: inc/biz_s.php:
|
2347 |
msgid "Apartment#2"
|
2348 |
msgstr ""
|
2349 |
|
2350 |
-
#: inc/biz_s.php:
|
2351 |
msgid "Apartment#3"
|
2352 |
msgstr ""
|
2353 |
|
@@ -2594,7 +2639,7 @@ msgstr ""
|
|
2594 |
msgid "Radio Button(s)"
|
2595 |
msgstr ""
|
2596 |
|
2597 |
-
#: inc/form/class-wpbc-form-help.php:194 lib/wpdev-settings-general.php:
|
2598 |
msgid "CAPTCHA"
|
2599 |
msgstr ""
|
2600 |
|
@@ -3079,11 +3124,6 @@ msgstr ""
|
|
3079 |
msgid "Select option to configure or show help info about tags"
|
3080 |
msgstr ""
|
3081 |
|
3082 |
-
#: inc/lib_l.php:238 inc/lib_l.php:645 lib/wpdev-settings-general.php:63
|
3083 |
-
#: lib/wpdev-settings-general.php:924
|
3084 |
-
msgid "Advanced"
|
3085 |
-
msgstr ""
|
3086 |
-
|
3087 |
#: inc/lib_p.php:244
|
3088 |
msgid "Enter Keyword here"
|
3089 |
msgstr ""
|
@@ -3092,16 +3132,11 @@ msgstr ""
|
|
3092 |
msgid "Keyword"
|
3093 |
msgstr ""
|
3094 |
|
3095 |
-
#: inc/lib_p.php:255 inc/lib_p.php:259 inc/lib_s.php:303 inc/lib_s.php:308
|
3096 |
-
#: lib/wpdev-settings-general.php:828 lib/wpdev-settings-general.php:829
|
3097 |
-
msgid "Resource"
|
3098 |
-
msgstr ""
|
3099 |
-
|
3100 |
#: inc/lib_p.php:274
|
3101 |
msgid "Print bookings listing"
|
3102 |
msgstr ""
|
3103 |
|
3104 |
-
#: inc/lib_p.php:276 inc/lib_s.php:446 inc/personal.php:
|
3105 |
msgid "Print"
|
3106 |
msgstr ""
|
3107 |
|
@@ -3121,7 +3156,7 @@ msgstr ""
|
|
3121 |
msgid "Export All"
|
3122 |
msgstr ""
|
3123 |
|
3124 |
-
#: inc/lib_p.php:373 inc/multiuser.php:
|
3125 |
msgid "Labels"
|
3126 |
msgstr ""
|
3127 |
|
@@ -3129,13 +3164,13 @@ msgstr ""
|
|
3129 |
msgid "Data"
|
3130 |
msgstr ""
|
3131 |
|
3132 |
-
#: inc/lib_p.php:391 inc/personal.php:
|
3133 |
-
#: lib/wpdev-bk-lib.php:
|
3134 |
msgid "Approved"
|
3135 |
msgstr ""
|
3136 |
|
3137 |
-
#: inc/lib_p.php:392 inc/lib_s.php:147 inc/personal.php:
|
3138 |
-
#: lib/wpdev-bk-lib.php:
|
3139 |
msgid "Pending"
|
3140 |
msgstr ""
|
3141 |
|
@@ -3173,7 +3208,7 @@ msgid ""
|
|
3173 |
"Please clear the selection, then add new resources."
|
3174 |
msgstr ""
|
3175 |
|
3176 |
-
#: inc/lib_p.php:770 inc/personal.php:
|
3177 |
msgid "All resources"
|
3178 |
msgstr ""
|
3179 |
|
@@ -3189,7 +3224,7 @@ msgstr ""
|
|
3189 |
msgid "In-Progress"
|
3190 |
msgstr ""
|
3191 |
|
3192 |
-
#: inc/lib_s.php:126 inc/lib_s.php:523 lib/wpdev-bk-lib.php:
|
3193 |
msgid "Unknown"
|
3194 |
msgstr ""
|
3195 |
|
@@ -3253,7 +3288,7 @@ msgstr ""
|
|
3253 |
msgid "Voided"
|
3254 |
msgstr ""
|
3255 |
|
3256 |
-
#: inc/lib_s.php:161 lib/wpdev-bk-lib.php:
|
3257 |
msgid "Created"
|
3258 |
msgstr ""
|
3259 |
|
@@ -3289,7 +3324,7 @@ msgstr ""
|
|
3289 |
msgid "Any Status"
|
3290 |
msgstr ""
|
3291 |
|
3292 |
-
#: inc/lib_s.php:228 inc/lib_s.php:520 lib/wpdev-bk-lib.php:
|
3293 |
msgid "Paid OK"
|
3294 |
msgstr ""
|
3295 |
|
@@ -3297,7 +3332,7 @@ msgstr ""
|
|
3297 |
msgid "Unknown Status"
|
3298 |
msgstr ""
|
3299 |
|
3300 |
-
#: inc/lib_s.php:271 inc/lib_s.php:499 inc/lib_s.php:501 lib/wpdev-bk-timeline.php:
|
3301 |
msgid "Payment"
|
3302 |
msgstr ""
|
3303 |
|
@@ -3333,143 +3368,147 @@ msgstr ""
|
|
3333 |
msgid "Change status"
|
3334 |
msgstr ""
|
3335 |
|
3336 |
-
#: inc/multiuser.php:
|
3337 |
msgid "Work days"
|
3338 |
msgstr ""
|
3339 |
|
3340 |
-
#: inc/multiuser.php:
|
3341 |
msgid "Updating..."
|
3342 |
msgstr ""
|
3343 |
|
3344 |
-
#: inc/multiuser.php:
|
3345 |
msgid "User is Activated"
|
3346 |
msgstr ""
|
3347 |
|
3348 |
-
#: inc/multiuser.php:
|
3349 |
msgid "User is Deactivated"
|
3350 |
msgstr ""
|
3351 |
|
3352 |
-
#: inc/multiuser.php:
|
3353 |
#, php-format
|
3354 |
msgid ""
|
3355 |
"%sYou do not have permissions for this page.%s Your account is not active, please contact "
|
3356 |
"administrator.%s"
|
3357 |
msgstr ""
|
3358 |
|
3359 |
-
#: inc/multiuser.php:
|
3360 |
#, php-format
|
3361 |
msgid "%sYou do not have permissions for this booking resources.%s"
|
3362 |
msgstr ""
|
3363 |
|
3364 |
-
#: inc/multiuser.php:
|
3365 |
#, php-format
|
3366 |
msgid "%sNo this booking resources.%s"
|
3367 |
msgstr ""
|
3368 |
|
3369 |
-
#: inc/multiuser.php:
|
3370 |
msgid "Show resources of user:"
|
3371 |
msgstr ""
|
3372 |
|
3373 |
-
#: inc/multiuser.php:
|
3374 |
msgid "My"
|
3375 |
msgstr ""
|
3376 |
|
3377 |
-
#: inc/multiuser.php:
|
3378 |
msgid "Booking resource:"
|
3379 |
msgstr ""
|
3380 |
|
3381 |
-
#: inc/multiuser.php:
|
3382 |
msgid "Users"
|
3383 |
msgstr ""
|
3384 |
|
3385 |
-
#: inc/multiuser.php:
|
3386 |
msgid "User"
|
3387 |
msgstr ""
|
3388 |
|
3389 |
-
#: inc/multiuser.php:
|
3390 |
msgid "Management of"
|
3391 |
msgstr ""
|
3392 |
|
3393 |
-
#: inc/multiuser.php:
|
|
|
|
|
|
|
|
|
3394 |
msgid "Set user as"
|
3395 |
msgstr ""
|
3396 |
|
3397 |
-
#: inc/multiuser.php:
|
3398 |
#, php-format
|
3399 |
msgid "Active %sSuper Admin%s"
|
3400 |
msgstr ""
|
3401 |
|
3402 |
-
#: inc/multiuser.php:
|
3403 |
#, php-format
|
3404 |
msgid "Active %sRegular User%s"
|
3405 |
msgstr ""
|
3406 |
|
3407 |
-
#: inc/multiuser.php:
|
3408 |
msgid "Inactive User"
|
3409 |
msgstr ""
|
3410 |
|
3411 |
-
#: inc/multiuser.php:
|
3412 |
msgid "Unlimited"
|
3413 |
msgstr ""
|
3414 |
|
3415 |
-
#: inc/multiuser.php:
|
3416 |
msgid "Activate"
|
3417 |
msgstr ""
|
3418 |
|
3419 |
-
#: inc/multiuser.php:
|
3420 |
-
#: inc/multiuser.php:
|
3421 |
msgid "Do you really want"
|
3422 |
msgstr ""
|
3423 |
|
3424 |
-
#: inc/multiuser.php:
|
3425 |
msgid "make user active"
|
3426 |
msgstr ""
|
3427 |
|
3428 |
-
#: inc/multiuser.php:
|
3429 |
msgid "Deactivate"
|
3430 |
msgstr ""
|
3431 |
|
3432 |
-
#: inc/multiuser.php:
|
3433 |
msgid "Set as inactive"
|
3434 |
msgstr ""
|
3435 |
|
3436 |
-
#: inc/multiuser.php:
|
3437 |
msgid "make user inactive"
|
3438 |
msgstr ""
|
3439 |
|
3440 |
-
#: inc/multiuser.php:
|
3441 |
msgid "Delete settings"
|
3442 |
msgstr ""
|
3443 |
|
3444 |
-
#: inc/multiuser.php:
|
3445 |
msgid "delete configuration"
|
3446 |
msgstr ""
|
3447 |
|
3448 |
-
#: inc/multiuser.php:
|
3449 |
msgid "Delete data"
|
3450 |
msgstr ""
|
3451 |
|
3452 |
-
#: inc/multiuser.php:
|
3453 |
msgid "delete all booking data"
|
3454 |
msgstr ""
|
3455 |
|
3456 |
-
#: inc/multiuser.php:
|
3457 |
msgid "Super Admin"
|
3458 |
msgstr ""
|
3459 |
|
3460 |
-
#: inc/multiuser.php:
|
3461 |
msgid "set user as"
|
3462 |
msgstr ""
|
3463 |
|
3464 |
-
#: inc/multiuser.php:
|
3465 |
msgid "Regular User"
|
3466 |
msgstr ""
|
3467 |
|
3468 |
-
#: inc/multiuser.php:
|
3469 |
msgid "Regular user"
|
3470 |
msgstr ""
|
3471 |
|
3472 |
-
#: inc/multiuser.php:
|
3473 |
msgid "Suite"
|
3474 |
msgstr ""
|
3475 |
|
@@ -3870,8 +3909,8 @@ msgstr ""
|
|
3870 |
msgid "Booking Details:"
|
3871 |
msgstr ""
|
3872 |
|
3873 |
-
#: inc/payments/index.php:219 lib/wpdev-settings-general.php:
|
3874 |
-
#: lib/wpdev-settings-general.php:
|
3875 |
msgid "You can use following shortcodes in content of this template"
|
3876 |
msgstr ""
|
3877 |
|
@@ -3910,45 +3949,45 @@ msgstr ""
|
|
3910 |
msgid "%s - inserting BIC "
|
3911 |
msgstr ""
|
3912 |
|
3913 |
-
#: inc/payments/index.php:245 lib/wpdev-settings-general.php:
|
3914 |
#, php-format
|
3915 |
msgid ""
|
3916 |
"%s - inserting data info about the booking, which you configured in the content form at Settings "
|
3917 |
"Fields page"
|
3918 |
msgstr ""
|
3919 |
|
3920 |
-
#: inc/payments/index.php:247 lib/wpdev-settings-general.php:
|
3921 |
#, php-format
|
3922 |
msgid "%s - inserting ID of booking "
|
3923 |
msgstr ""
|
3924 |
|
3925 |
-
#: inc/payments/index.php:249 lib/wpdev-settings-general.php:
|
3926 |
#, php-format
|
3927 |
msgid "%s or %s - inserting the title of the booking resource "
|
3928 |
msgstr ""
|
3929 |
|
3930 |
-
#: inc/payments/index.php:251 lib/wpdev-settings-general.php:
|
3931 |
#, php-format
|
3932 |
msgid "%s - inserting the cost of booking "
|
3933 |
msgstr ""
|
3934 |
|
3935 |
-
#: inc/payments/index.php:255 lib/wpdev-settings-general.php:
|
3936 |
#, php-format
|
3937 |
msgid "%s - inserting the dates of booking"
|
3938 |
msgstr ""
|
3939 |
|
3940 |
-
#: inc/payments/index.php:257 lib/wpdev-settings-general.php:
|
3941 |
#, php-format
|
3942 |
msgid "%s - inserting check-in date (first day of reservation),"
|
3943 |
msgstr ""
|
3944 |
|
3945 |
-
#: inc/payments/index.php:259 lib/wpdev-settings-general.php:
|
3946 |
-
#: lib/wpdev-settings-general.php:
|
3947 |
#, php-format
|
3948 |
msgid "%s - inserting check-out date (last day of reservation),"
|
3949 |
msgstr ""
|
3950 |
|
3951 |
-
#: inc/payments/index.php:261 lib/wpdev-settings-general.php:
|
3952 |
#, php-format
|
3953 |
msgid "%s - inserting the number of booking dates "
|
3954 |
msgstr ""
|
@@ -4698,21 +4737,16 @@ msgid ""
|
|
4698 |
"users, or leave it blank for searching for all users."
|
4699 |
msgstr ""
|
4700 |
|
4701 |
-
#: inc/personal.php:350 inc/wpbc-booking-select-widget.php:
|
4702 |
msgid ""
|
4703 |
"Select booking resources, for showing in selectbox. Please use CTRL to select multiple booking "
|
4704 |
"resources."
|
4705 |
msgstr ""
|
4706 |
|
4707 |
-
#: inc/personal.php:356 inc/wpbc-booking-select-widget.php:
|
4708 |
msgid "Preselected resource"
|
4709 |
msgstr ""
|
4710 |
|
4711 |
-
#: inc/personal.php:358 inc/wpbc-booking-select-widget.php:170 lib/wpbc-gcal.php:516
|
4712 |
-
#: lib/wpbc-gcal.php:929
|
4713 |
-
msgid "None"
|
4714 |
-
msgstr ""
|
4715 |
-
|
4716 |
#: inc/personal.php:365
|
4717 |
msgid "Define preselected resource."
|
4718 |
msgstr ""
|
@@ -4733,19 +4767,19 @@ msgstr ""
|
|
4733 |
msgid "Title near your select box."
|
4734 |
msgstr ""
|
4735 |
|
4736 |
-
#: inc/personal.php:404 inc/wpbc-booking-select-widget.php:
|
4737 |
msgid "First option title"
|
4738 |
msgstr ""
|
4739 |
|
4740 |
-
#: inc/personal.php:405 inc/personal.php:
|
4741 |
msgid "Please Select"
|
4742 |
msgstr ""
|
4743 |
|
4744 |
-
#: inc/personal.php:406 inc/wpbc-booking-select-widget.php:
|
4745 |
msgid "First option in dropdown list."
|
4746 |
msgstr ""
|
4747 |
|
4748 |
-
#: inc/personal.php:407 inc/wpbc-booking-select-widget.php:
|
4749 |
msgid "Please leave it empty if you want to skip it."
|
4750 |
msgstr ""
|
4751 |
|
@@ -4756,370 +4790,371 @@ msgid ""
|
|
4756 |
"selectbox"
|
4757 |
msgstr ""
|
4758 |
|
4759 |
-
#: inc/personal.php:
|
4760 |
msgid "This booking resources does not exist"
|
4761 |
msgstr ""
|
4762 |
|
4763 |
-
#: inc/personal.php:
|
4764 |
msgid "Processing"
|
4765 |
msgstr ""
|
4766 |
|
4767 |
-
#: inc/personal.php:
|
4768 |
msgid "Generating columns"
|
4769 |
msgstr ""
|
4770 |
|
4771 |
-
#: inc/personal.php:
|
4772 |
msgid "Exporting booking data"
|
4773 |
msgstr ""
|
4774 |
|
4775 |
-
#: inc/personal.php:
|
4776 |
msgid "Generating content of file"
|
4777 |
msgstr ""
|
4778 |
|
4779 |
-
#: inc/personal.php:
|
4780 |
msgid "Saving to file"
|
4781 |
msgstr ""
|
4782 |
|
4783 |
-
#: inc/personal.php:
|
4784 |
msgid "Export bookings"
|
4785 |
msgstr ""
|
4786 |
|
4787 |
-
#: inc/personal.php:
|
4788 |
msgid "Download the CSV file of exported booking data"
|
4789 |
msgstr ""
|
4790 |
|
4791 |
-
#: inc/personal.php:
|
4792 |
msgid "Download"
|
4793 |
msgstr ""
|
4794 |
|
4795 |
-
#: inc/personal.php:
|
|
|
4796 |
msgid "Done"
|
4797 |
msgstr ""
|
4798 |
|
4799 |
-
#: inc/personal.php:
|
4800 |
msgid "link"
|
4801 |
msgstr ""
|
4802 |
|
4803 |
-
#: inc/personal.php:
|
4804 |
msgid "Print bookings"
|
4805 |
msgstr ""
|
4806 |
|
4807 |
-
#: inc/personal.php:
|
4808 |
msgid "The booking was canceled by the visitor."
|
4809 |
msgstr ""
|
4810 |
|
4811 |
-
#: inc/personal.php:
|
4812 |
-
#: lib/wpdev-booking-class.php:
|
4813 |
msgid "Wrong booking hash in URL (probably expired)"
|
4814 |
msgstr ""
|
4815 |
|
4816 |
-
#: inc/personal.php:
|
4817 |
msgid "The booking has been canceled successfully"
|
4818 |
msgstr ""
|
4819 |
|
4820 |
-
#: inc/personal.php:
|
4821 |
msgid "Add New Booking Resource(s)"
|
4822 |
msgstr ""
|
4823 |
|
4824 |
-
#: inc/personal.php:
|
4825 |
msgid "New Resource"
|
4826 |
msgstr ""
|
4827 |
|
4828 |
-
#: inc/personal.php:
|
4829 |
msgid "Enter title here"
|
4830 |
msgstr ""
|
4831 |
|
4832 |
-
#: inc/personal.php:
|
4833 |
msgid "Enter name of booking resource"
|
4834 |
msgstr ""
|
4835 |
|
4836 |
-
#: inc/personal.php:
|
4837 |
msgid "Advanced Options"
|
4838 |
msgstr ""
|
4839 |
|
4840 |
-
#: inc/personal.php:
|
4841 |
msgid "Add new resource(s)"
|
4842 |
msgstr ""
|
4843 |
|
4844 |
-
#: inc/personal.php:
|
4845 |
msgid "Default booking resource"
|
4846 |
msgstr ""
|
4847 |
|
4848 |
-
#: inc/personal.php:
|
4849 |
msgid "Select your default booking resource."
|
4850 |
msgstr ""
|
4851 |
|
4852 |
-
#: inc/personal.php:
|
4853 |
msgid "Resources number per page"
|
4854 |
msgstr ""
|
4855 |
|
4856 |
-
#: inc/personal.php:
|
4857 |
msgid "Select number of booking resources (single or parent) per page at Resource menu page"
|
4858 |
msgstr ""
|
4859 |
|
4860 |
-
#: inc/personal.php:
|
4861 |
msgid "URL to edit bookings"
|
4862 |
msgstr ""
|
4863 |
|
4864 |
-
#: inc/personal.php:
|
4865 |
#, php-format
|
4866 |
msgid "Type URL for %svisitors%s to edit bookings. You must insert %s shortcode into this page."
|
4867 |
msgstr ""
|
4868 |
|
4869 |
-
#: inc/personal.php:
|
4870 |
msgid "Change hash after the booking is approved"
|
4871 |
msgstr ""
|
4872 |
|
4873 |
-
#: inc/personal.php:
|
4874 |
msgid ""
|
4875 |
"Check this box if you want to change the booking hash after approval. When checked, visitor will "
|
4876 |
"not be able to edit or cancel the booking."
|
4877 |
msgstr ""
|
4878 |
|
4879 |
-
#: inc/personal.php:
|
4880 |
msgid "Configuration in several languages"
|
4881 |
msgstr ""
|
4882 |
|
4883 |
-
#: inc/personal.php:
|
4884 |
#, php-format
|
4885 |
msgid "%s - start new translation section, where %s - locale of translation"
|
4886 |
msgstr ""
|
4887 |
|
4888 |
-
#: inc/personal.php:
|
4889 |
#, php-format
|
4890 |
msgid "Example #1: %s - start French translation section"
|
4891 |
msgstr ""
|
4892 |
|
4893 |
-
#: inc/personal.php:
|
4894 |
#, php-format
|
4895 |
msgid "Example #2: \"%s\" - English and French translation of some message"
|
4896 |
msgstr ""
|
4897 |
|
4898 |
-
#: inc/personal.php:
|
4899 |
msgid "Customization of email template, which is sending to Admin after new booking"
|
4900 |
msgstr ""
|
4901 |
|
4902 |
-
#: inc/personal.php:
|
4903 |
msgid "New for Admin"
|
4904 |
msgstr ""
|
4905 |
|
4906 |
-
#: inc/personal.php:
|
4907 |
msgid "Customization of email template, which is sending to Visitor after new booking"
|
4908 |
msgstr ""
|
4909 |
|
4910 |
-
#: inc/personal.php:
|
4911 |
msgid "New for Visitor"
|
4912 |
msgstr ""
|
4913 |
|
4914 |
-
#: inc/personal.php:
|
4915 |
msgid "Customization of email template, which is sending to Visitor after approval of booking"
|
4916 |
msgstr ""
|
4917 |
|
4918 |
-
#: inc/personal.php:
|
4919 |
msgid "Customization of email template, which is sending to Visitor after Cancellation of booking"
|
4920 |
msgstr ""
|
4921 |
|
4922 |
-
#: inc/personal.php:
|
4923 |
msgid "Declined"
|
4924 |
msgstr ""
|
4925 |
|
4926 |
-
#: inc/personal.php:
|
4927 |
msgid "Customization of email template, which is sending after modification of booking"
|
4928 |
msgstr ""
|
4929 |
|
4930 |
-
#: inc/personal.php:
|
4931 |
msgid "Modified"
|
4932 |
msgstr ""
|
4933 |
|
4934 |
-
#: inc/personal.php:
|
4935 |
msgid "Customization of email template, which is sending to Visitor after payment request"
|
4936 |
msgstr ""
|
4937 |
|
4938 |
-
#: inc/personal.php:
|
4939 |
msgid "Payment request"
|
4940 |
msgstr ""
|
4941 |
|
4942 |
-
#: inc/personal.php:
|
4943 |
msgid "Standard Form Template"
|
4944 |
msgstr ""
|
4945 |
|
4946 |
-
#: inc/personal.php:
|
4947 |
msgid "2 Columns Form Template"
|
4948 |
msgstr ""
|
4949 |
|
4950 |
-
#: inc/personal.php:
|
4951 |
msgid "Wizard Form Template(several steps)"
|
4952 |
msgstr ""
|
4953 |
|
4954 |
-
#: inc/personal.php:
|
4955 |
msgid "Payment Form Template"
|
4956 |
msgstr ""
|
4957 |
|
4958 |
-
#: inc/personal.php:
|
4959 |
msgid "Time Slots Form Template"
|
4960 |
msgstr ""
|
4961 |
|
4962 |
-
#: inc/personal.php:
|
4963 |
msgid "Time slots for different weekends Form Template"
|
4964 |
msgstr ""
|
4965 |
|
4966 |
-
#: inc/personal.php:
|
4967 |
msgid "Hints Form Template"
|
4968 |
msgstr ""
|
4969 |
|
4970 |
-
#: inc/personal.php:
|
4971 |
msgid "Reset Booking Form and Content of Booking Fields Form"
|
4972 |
msgstr ""
|
4973 |
|
4974 |
-
#: inc/personal.php:
|
4975 |
msgid "Both"
|
4976 |
msgstr ""
|
4977 |
|
4978 |
-
#: inc/personal.php:
|
4979 |
msgid "Please configure the form for content of booking fields data!"
|
4980 |
msgstr ""
|
4981 |
|
4982 |
-
#: inc/personal.php:
|
4983 |
msgid "Please configure the form fields!"
|
4984 |
msgstr ""
|
4985 |
|
4986 |
-
#: inc/personal.php:
|
4987 |
msgid "Default title of bookings"
|
4988 |
msgstr ""
|
4989 |
|
4990 |
-
#: inc/personal.php:
|
4991 |
#, php-format
|
4992 |
msgid ""
|
4993 |
"Type %sdefault title of bookings%s in calendar view mode at Booking Listing page (You can use "
|
4994 |
"the shortcodes from the bottom form of Settings Fields page)."
|
4995 |
msgstr ""
|
4996 |
|
4997 |
-
#: inc/personal.php:
|
4998 |
msgid "CSV data separator"
|
4999 |
msgstr ""
|
5000 |
|
5001 |
-
#: inc/personal.php:
|
5002 |
msgid "semicolon"
|
5003 |
msgstr ""
|
5004 |
|
5005 |
-
#: inc/personal.php:
|
5006 |
msgid "comma"
|
5007 |
msgstr ""
|
5008 |
|
5009 |
-
#: inc/personal.php:
|
5010 |
msgid "Select separator of data for export bookings to CSV."
|
5011 |
msgstr ""
|
5012 |
|
5013 |
-
#: inc/personal.php:
|
5014 |
msgid "Incorrect date format"
|
5015 |
msgstr ""
|
5016 |
|
5017 |
-
#: inc/personal.php:
|
5018 |
msgid "Booking Resource"
|
5019 |
msgstr ""
|
5020 |
|
5021 |
-
#: inc/personal.php:
|
5022 |
msgid "All bookings"
|
5023 |
msgstr ""
|
5024 |
|
5025 |
-
#: inc/personal.php:
|
5026 |
msgid "All incoming bookings"
|
5027 |
msgstr ""
|
5028 |
|
5029 |
-
#: inc/personal.php:
|
5030 |
msgid "New reservations made today"
|
5031 |
msgstr ""
|
5032 |
|
5033 |
-
#: inc/personal.php:
|
5034 |
msgid "Reservations for today"
|
5035 |
msgstr ""
|
5036 |
|
5037 |
-
#: inc/personal.php:
|
5038 |
msgid "Add new booking resource"
|
5039 |
msgstr ""
|
5040 |
|
5041 |
-
#: inc/personal.php:
|
5042 |
msgid "Change your Booking"
|
5043 |
msgstr ""
|
5044 |
|
5045 |
-
#: inc/personal.php:
|
5046 |
msgid "Cancel Booking"
|
5047 |
msgstr ""
|
5048 |
|
5049 |
-
#: inc/personal.php:
|
5050 |
-
#: lib/wpbc-booking-new.php:
|
5051 |
msgid "Updated successfully"
|
5052 |
msgstr ""
|
5053 |
|
5054 |
-
#: inc/personal.php:
|
5055 |
msgid "Warning! The resource was not changed. Current dates are already booked there."
|
5056 |
msgstr ""
|
5057 |
|
5058 |
-
#: inc/personal.php:
|
5059 |
msgid "The booking has been duplicated successfully"
|
5060 |
msgstr ""
|
5061 |
|
5062 |
-
#: inc/personal.php:
|
5063 |
msgid "Warning! Operation failed. Current dates are already booked there."
|
5064 |
msgstr ""
|
5065 |
|
5066 |
-
#: inc/personal.php:
|
5067 |
msgid "Email to \"Admin\" after a new booking"
|
5068 |
msgstr ""
|
5069 |
|
5070 |
-
#: inc/personal.php:
|
5071 |
#, php-format
|
5072 |
msgid "Type default %sadmin email%s for booking confirmation"
|
5073 |
msgstr ""
|
5074 |
|
5075 |
-
#: inc/personal.php:
|
5076 |
#, php-format
|
5077 |
msgid ""
|
5078 |
"Type the default %sadmin email%s sending the booking confimation. You can use this %s shortcode."
|
5079 |
msgstr ""
|
5080 |
|
5081 |
-
#: inc/personal.php:
|
5082 |
#, php-format
|
5083 |
msgid "Type your email %ssubject%s for the booking confimation message."
|
5084 |
msgstr ""
|
5085 |
|
5086 |
-
#: inc/personal.php:
|
5087 |
#, php-format
|
5088 |
msgid "Type your %semail message content for checking booking%s in. "
|
5089 |
msgstr ""
|
5090 |
|
5091 |
-
#: inc/personal.php:
|
5092 |
#, php-format
|
5093 |
msgid ""
|
5094 |
"For example: \"You have a new reservation %s on the following date(s): %s Contact information: "
|
5095 |
"%s You can approve or edit this booking at: %s Thank you, Reservation service.\""
|
5096 |
msgstr ""
|
5097 |
|
5098 |
-
#: inc/personal.php:
|
5099 |
-
#: lib/wpbc-gcal.php:862 lib/wpdev-booking-functions.php:
|
5100 |
msgid "here"
|
5101 |
msgstr ""
|
5102 |
|
5103 |
-
#: inc/personal.php:
|
5104 |
msgid "Email to \"Person\" after they make a new reservation"
|
5105 |
msgstr ""
|
5106 |
|
5107 |
-
#: inc/personal.php:
|
5108 |
#, php-format
|
5109 |
msgid "Type email subject for %svisitor after creating a new reservation%s."
|
5110 |
msgstr ""
|
5111 |
|
5112 |
-
#: inc/personal.php:
|
5113 |
#, php-format
|
5114 |
msgid "Use these %s shortcodes."
|
5115 |
msgstr ""
|
5116 |
|
5117 |
-
#: inc/personal.php:
|
5118 |
#, php-format
|
5119 |
msgid "Type your %semail message for visitor after creating a new reservation%s"
|
5120 |
msgstr ""
|
5121 |
|
5122 |
-
#: inc/personal.php:
|
5123 |
#, php-format
|
5124 |
msgid ""
|
5125 |
"For example: \"Your reservation %s on these date(s): %s is processing now! We will send "
|
@@ -5127,154 +5162,154 @@ msgid ""
|
|
5127 |
"service.\""
|
5128 |
msgstr ""
|
5129 |
|
5130 |
-
#: inc/personal.php:
|
5131 |
msgid "Email to \"Person\" after booking is approved"
|
5132 |
msgstr ""
|
5133 |
|
5134 |
-
#: inc/personal.php:
|
5135 |
#, php-format
|
5136 |
msgid "Type your email subject for the %sapproved booking%s."
|
5137 |
msgstr ""
|
5138 |
|
5139 |
-
#: inc/personal.php:
|
5140 |
#, php-format
|
5141 |
msgid "Type your %semail message for the approved booking%s from the website"
|
5142 |
msgstr ""
|
5143 |
|
5144 |
-
#: inc/personal.php:
|
5145 |
#, php-format
|
5146 |
msgid ""
|
5147 |
"For example: \"Your reservation %s on these date(s): %s has been approved.%s You can edit this "
|
5148 |
"booking on this page: %s . Thank you, Reservation service.\""
|
5149 |
msgstr ""
|
5150 |
|
5151 |
-
#: inc/personal.php:
|
5152 |
msgid "Email to \"Person\" after their booking has been denied"
|
5153 |
msgstr ""
|
5154 |
|
5155 |
-
#: inc/personal.php:
|
5156 |
#, php-format
|
5157 |
msgid "Type your email subject for the %sdenied booking%s."
|
5158 |
msgstr ""
|
5159 |
|
5160 |
-
#: inc/personal.php:
|
5161 |
#, php-format
|
5162 |
msgid "Type your %semail message for the denied booking%s from the website"
|
5163 |
msgstr ""
|
5164 |
|
5165 |
-
#: inc/personal.php:
|
5166 |
#, php-format
|
5167 |
msgid ""
|
5168 |
"For example: \"Your reservation %s on these date(s): %s has been canceled. Please contact us for "
|
5169 |
"more information. %s Thank you, Reservation service.\""
|
5170 |
msgstr ""
|
5171 |
|
5172 |
-
#: inc/personal.php:
|
5173 |
msgid "Email to \"Person\" after booking is modified"
|
5174 |
msgstr ""
|
5175 |
|
5176 |
-
#: inc/personal.php:
|
5177 |
#, php-format
|
5178 |
msgid "Type your email subject for the %smodified booking%s. "
|
5179 |
msgstr ""
|
5180 |
|
5181 |
-
#: inc/personal.php:
|
5182 |
#, php-format
|
5183 |
msgid "Type your %semail message for the modified booking%s from the website"
|
5184 |
msgstr ""
|
5185 |
|
5186 |
-
#: inc/personal.php:
|
5187 |
#, php-format
|
5188 |
msgid ""
|
5189 |
"For example: \"The reservation %s on these date(s): %s has been modified. %s You can edit this "
|
5190 |
"booking on this page: %s . Thank you, Reservation service.\""
|
5191 |
msgstr ""
|
5192 |
|
5193 |
-
#: inc/personal.php:
|
5194 |
msgid "Form fields"
|
5195 |
msgstr ""
|
5196 |
|
5197 |
-
#: inc/personal.php:
|
5198 |
#, php-format
|
5199 |
msgid "Content of booking fields data for email templates (%s-shortcode) and booking listing page"
|
5200 |
msgstr ""
|
5201 |
|
5202 |
-
#: inc/personal.php:
|
5203 |
#, php-format
|
5204 |
msgid "%s - inserting data from fields of booking form"
|
5205 |
msgstr ""
|
5206 |
|
5207 |
-
#: inc/personal.php:
|
5208 |
#, php-format
|
5209 |
msgid "%s - inserting new line"
|
5210 |
msgstr ""
|
5211 |
|
5212 |
-
#: inc/personal.php:
|
5213 |
msgid "Use any other HTML tags (carefully)."
|
5214 |
msgstr ""
|
5215 |
|
5216 |
-
#: inc/personal.php:
|
5217 |
msgid "First Name"
|
5218 |
msgstr ""
|
5219 |
|
5220 |
-
#: inc/personal.php:
|
5221 |
msgid "Last Name"
|
5222 |
msgstr ""
|
5223 |
|
5224 |
-
#: inc/personal.php:
|
5225 |
msgid "Email"
|
5226 |
msgstr ""
|
5227 |
|
5228 |
-
#: inc/personal.php:
|
5229 |
-
#: lib/wpdev-bk-timeline.php:
|
5230 |
msgid "Times"
|
5231 |
msgstr ""
|
5232 |
|
5233 |
-
#: inc/personal.php:
|
5234 |
msgid "Address"
|
5235 |
msgstr ""
|
5236 |
|
5237 |
-
#: inc/personal.php:
|
5238 |
msgid "City"
|
5239 |
msgstr ""
|
5240 |
|
5241 |
-
#: inc/personal.php:
|
5242 |
msgid "Post code"
|
5243 |
msgstr ""
|
5244 |
|
5245 |
-
#: inc/personal.php:
|
5246 |
msgid "Please, reserve an apartment with fresh flowers."
|
5247 |
msgstr ""
|
5248 |
|
5249 |
-
#: inc/personal.php:
|
5250 |
msgid "The reservation has been modified"
|
5251 |
msgstr ""
|
5252 |
|
5253 |
-
#: inc/personal.php:
|
5254 |
#, php-format
|
5255 |
msgid ""
|
5256 |
"The reservation %s for: %s has been modified. %sYou can edit this booking on this page: %s "
|
5257 |
"Thank you, %s"
|
5258 |
msgstr ""
|
5259 |
|
5260 |
-
#: inc/personal.php:
|
5261 |
msgid "Sending request..."
|
5262 |
msgstr ""
|
5263 |
|
5264 |
-
#: inc/personal.php:
|
5265 |
msgid "Order number"
|
5266 |
msgstr ""
|
5267 |
|
5268 |
-
#: inc/personal.php:
|
5269 |
msgid "Register"
|
5270 |
msgstr ""
|
5271 |
|
5272 |
-
#: inc/personal.php:
|
5273 |
msgid ""
|
5274 |
"Please, enter order number of your purchased version, which you received to your billing email."
|
5275 |
msgstr ""
|
5276 |
|
5277 |
-
#: inc/personal.php:
|
5278 |
#, php-format
|
5279 |
msgid "If you will get any difficulties or have a questions, please contact by email %s"
|
5280 |
msgstr ""
|
@@ -5291,8 +5326,8 @@ msgstr ""
|
|
5291 |
msgid "Customization of synchronization with Google Calendar"
|
5292 |
msgstr ""
|
5293 |
|
5294 |
-
#: inc/sync/wpbc-sync-gcal-api.php:75 lib/wpdev-booking-class.php:
|
5295 |
-
#: lib/wpdev-booking-class.php:
|
5296 |
msgid "General Settings"
|
5297 |
msgstr ""
|
5298 |
|
@@ -5300,8 +5335,8 @@ msgstr ""
|
|
5300 |
msgid "Google Calendar ID"
|
5301 |
msgstr ""
|
5302 |
|
5303 |
-
#: inc/sync/wpbc-sync-gcal-feed.php:97 inc/wpbc-booking-select-widget.php:
|
5304 |
-
#: lib/wpdev-booking-widget.php:
|
5305 |
msgid "Booking resource"
|
5306 |
msgstr ""
|
5307 |
|
@@ -5309,16 +5344,16 @@ msgstr ""
|
|
5309 |
msgid "Select booking resource"
|
5310 |
msgstr ""
|
5311 |
|
5312 |
-
#: inc/wpbc-booking-select-widget.php:
|
5313 |
-
#: lib/wpdev-booking-widget.php:
|
5314 |
msgid "You need to use special shortcode [bookingedit] for booking editing."
|
5315 |
msgstr ""
|
5316 |
|
5317 |
-
#: inc/wpbc-booking-select-widget.php:
|
5318 |
msgid "Visible months"
|
5319 |
msgstr ""
|
5320 |
|
5321 |
-
#: inc/wpbc-booking-select-widget.php:
|
5322 |
#, php-format
|
5323 |
msgid ""
|
5324 |
"%sImportant!!!%s Please note, if you show booking calendar (inserted into post/page) with widget "
|
@@ -5350,78 +5385,78 @@ msgstr ""
|
|
5350 |
msgid "View details"
|
5351 |
msgstr ""
|
5352 |
|
5353 |
-
#: inc/wpdev-booking-search-widget.php:
|
5354 |
msgid "Search availability"
|
5355 |
msgstr ""
|
5356 |
|
5357 |
-
#: inc/wpdev-booking-search-widget.php:
|
5358 |
-
msgid "
|
5359 |
msgstr ""
|
5360 |
|
5361 |
-
#: inc/wpdev-booking-search-widget.php:
|
5362 |
-
msgid "
|
5363 |
msgstr ""
|
5364 |
|
5365 |
-
#: inc/wpdev-booking-search-widget.php:
|
5366 |
msgid "Title of search widget"
|
5367 |
msgstr ""
|
5368 |
|
5369 |
-
#: inc/wpdev-booking-search-widget.php:
|
5370 |
msgid "Title of search results"
|
5371 |
msgstr ""
|
5372 |
|
5373 |
-
#: inc/wpdev-booking-search-widget.php:
|
5374 |
#, php-format
|
5375 |
msgid "Please type the %sTitle of search results%s."
|
5376 |
msgstr ""
|
5377 |
|
5378 |
-
#: inc/wpdev-booking-search-widget.php:
|
5379 |
msgid "Nothing found message"
|
5380 |
msgstr ""
|
5381 |
|
5382 |
-
#: inc/wpdev-booking-search-widget.php:
|
5383 |
#, php-format
|
5384 |
msgid "Please type the %smessage ,what is showing, when nothing found%s."
|
5385 |
msgstr ""
|
5386 |
|
5387 |
-
#: inc/wpdev-booking-search-widget.php:
|
5388 |
msgid "URL of Search Results"
|
5389 |
msgstr ""
|
5390 |
|
5391 |
-
#: inc/wpdev-booking-search-widget.php:
|
5392 |
#, php-format
|
5393 |
msgid ""
|
5394 |
"Please type the URL of the page %s(with %s shortcode in content)%s, where search results will "
|
5395 |
"show."
|
5396 |
msgstr ""
|
5397 |
|
5398 |
-
#: lib/wpbc-ajax.php:
|
5399 |
#, php-format
|
5400 |
msgid ""
|
5401 |
"%sError!%s Request do not pass security check! Please refresh the page and try one more time."
|
5402 |
msgstr ""
|
5403 |
|
5404 |
-
#: lib/wpbc-ajax.php:
|
5405 |
msgid "Set as Read"
|
5406 |
msgstr ""
|
5407 |
|
5408 |
-
#: lib/wpbc-ajax.php:
|
5409 |
msgid "Set as Unread"
|
5410 |
msgstr ""
|
5411 |
|
5412 |
-
#: lib/wpbc-ajax.php:
|
5413 |
msgid "Set as Approved"
|
5414 |
msgstr ""
|
5415 |
|
5416 |
-
#: lib/wpbc-ajax.php:
|
5417 |
msgid "Set as Pending"
|
5418 |
msgstr ""
|
5419 |
|
5420 |
-
#: lib/wpbc-ajax.php:
|
5421 |
msgid "Reason for cancellation here"
|
5422 |
msgstr ""
|
5423 |
|
5424 |
-
#: lib/wpbc-ajax.php:
|
5425 |
msgid "Reason of cancellation here"
|
5426 |
msgstr ""
|
5427 |
|
@@ -5429,17 +5464,17 @@ msgstr ""
|
|
5429 |
msgid "The code you entered is incorrect"
|
5430 |
msgstr ""
|
5431 |
|
5432 |
-
#: lib/wpbc-booking-new.php:
|
5433 |
msgid "Error!"
|
5434 |
msgstr ""
|
5435 |
|
5436 |
-
#: lib/wpbc-booking-new.php:
|
5437 |
msgid ""
|
5438 |
"Probably these date(s) just was booking by other visitor. Please reload this page and make "
|
5439 |
"booking again."
|
5440 |
msgstr ""
|
5441 |
|
5442 |
-
#: lib/wpbc-class-dismiss.php:80 lib/wpbc-welcome.php:
|
5443 |
msgid "Dismiss"
|
5444 |
msgstr ""
|
5445 |
|
@@ -5485,11 +5520,11 @@ msgstr ""
|
|
5485 |
msgid "Reload page"
|
5486 |
msgstr ""
|
5487 |
|
5488 |
-
#: lib/wpbc-gcal-class.php:637 lib/wpdev-bk-lib.php:
|
5489 |
msgid "Do you really want to delete selected booking(s) ?"
|
5490 |
msgstr ""
|
5491 |
|
5492 |
-
#: lib/wpbc-gcal-class.php:
|
5493 |
msgid "Delete selected booking(s)"
|
5494 |
msgstr ""
|
5495 |
|
@@ -5661,10 +5696,6 @@ msgstr ""
|
|
5661 |
msgid "seconds"
|
5662 |
msgstr ""
|
5663 |
|
5664 |
-
#: lib/wpbc-gcal.php:616 lib/wpbc-gcal.php:680
|
5665 |
-
msgid "minutes"
|
5666 |
-
msgstr ""
|
5667 |
-
|
5668 |
#: lib/wpbc-gcal.php:625
|
5669 |
msgid ""
|
5670 |
"You can specify an additional offset from you chosen start point. The offset can be negative."
|
@@ -5760,112 +5791,112 @@ msgid ""
|
|
5760 |
"failed. You can request the new update of your paid version at %1sthis page%2s."
|
5761 |
msgstr ""
|
5762 |
|
5763 |
-
#: lib/wpbc-scripts.php:
|
5764 |
msgid "This field is required"
|
5765 |
msgstr ""
|
5766 |
|
5767 |
-
#: lib/wpbc-scripts.php:
|
5768 |
msgid "This checkbox must be checked"
|
5769 |
msgstr ""
|
5770 |
|
5771 |
-
#: lib/wpbc-scripts.php:
|
5772 |
msgid "At least one option must be selected"
|
5773 |
msgstr ""
|
5774 |
|
5775 |
-
#: lib/wpbc-scripts.php:
|
5776 |
msgid "Incorrect email field"
|
5777 |
msgstr ""
|
5778 |
|
5779 |
-
#: lib/wpbc-scripts.php:
|
5780 |
msgid "Your emails do not the same"
|
5781 |
msgstr ""
|
5782 |
|
5783 |
-
#: lib/wpbc-scripts.php:
|
5784 |
msgid "Please, select booking date(s) at Calendar."
|
5785 |
msgstr ""
|
5786 |
|
5787 |
-
#: lib/wpbc-welcome.php:
|
5788 |
-
#: lib/wpdev-settings-general.php:
|
5789 |
msgid "Purchase"
|
5790 |
msgstr ""
|
5791 |
|
5792 |
-
#: lib/wpbc-welcome.php:
|
5793 |
-
#: lib/wpdev-booking-class.php:
|
5794 |
msgid "Upgrade Now"
|
5795 |
msgstr ""
|
5796 |
|
5797 |
-
#: lib/wpbc-welcome.php:
|
5798 |
msgid "We’ve assembled some links to get you started:"
|
5799 |
msgstr ""
|
5800 |
|
5801 |
-
#: lib/wpbc-welcome.php:
|
5802 |
msgid "Get Started"
|
5803 |
msgstr ""
|
5804 |
|
5805 |
-
#: lib/wpbc-welcome.php:
|
5806 |
#, php-format
|
5807 |
msgid "Insert booking form %sshortcode%s into your %sPost%s or %sPage%s"
|
5808 |
msgstr ""
|
5809 |
|
5810 |
-
#: lib/wpbc-welcome.php:
|
5811 |
#, php-format
|
5812 |
msgid "or add booking calendar %sWidget%s to your sidebar."
|
5813 |
msgstr ""
|
5814 |
|
5815 |
-
#: lib/wpbc-welcome.php:
|
5816 |
#, php-format
|
5817 |
msgid "Check %show todo%s that and what %sshortcodes%s are available."
|
5818 |
msgstr ""
|
5819 |
|
5820 |
-
#: lib/wpbc-welcome.php:
|
5821 |
#, php-format
|
5822 |
msgid "Add new booking from your post/page or from %sAdmin Panel%s."
|
5823 |
msgstr ""
|
5824 |
|
5825 |
-
#: lib/wpbc-welcome.php:
|
5826 |
msgid "Next Steps"
|
5827 |
msgstr ""
|
5828 |
|
5829 |
-
#: lib/wpbc-welcome.php:
|
5830 |
#, php-format
|
5831 |
msgid "Check %sBooking Listing%s page for new bookings."
|
5832 |
msgstr ""
|
5833 |
|
5834 |
-
#: lib/wpbc-welcome.php:
|
5835 |
#, php-format
|
5836 |
msgid "Configure booking %sSettings%s."
|
5837 |
msgstr ""
|
5838 |
|
5839 |
-
#: lib/wpbc-welcome.php:
|
5840 |
#, php-format
|
5841 |
msgid "Configure predefined set of your %sForm Fields%s."
|
5842 |
msgstr ""
|
5843 |
|
5844 |
-
#: lib/wpbc-welcome.php:
|
5845 |
#, php-format
|
5846 |
msgid "Configure your predefined %sEmail Templates%s."
|
5847 |
msgstr ""
|
5848 |
|
5849 |
-
#: lib/wpbc-welcome.php:
|
5850 |
msgid "Have a questions?"
|
5851 |
msgstr ""
|
5852 |
|
5853 |
-
#: lib/wpbc-welcome.php:
|
5854 |
#, php-format
|
5855 |
msgid "Check out our %sHelp%s"
|
5856 |
msgstr ""
|
5857 |
|
5858 |
-
#: lib/wpbc-welcome.php:
|
5859 |
#, php-format
|
5860 |
msgid "See %sFAQ%s."
|
5861 |
msgstr ""
|
5862 |
|
5863 |
-
#: lib/wpbc-welcome.php:
|
5864 |
#, php-format
|
5865 |
msgid "Still having questions? Contact %sSupport%s."
|
5866 |
msgstr ""
|
5867 |
|
5868 |
-
#: lib/wpbc-welcome.php:
|
5869 |
#, php-format
|
5870 |
msgid "Need even more functionality? Check %s higher versions %s"
|
5871 |
msgstr ""
|
@@ -5874,7 +5905,7 @@ msgstr ""
|
|
5874 |
msgid "Insert booking calendar"
|
5875 |
msgstr ""
|
5876 |
|
5877 |
-
#: lib/wpdev-bk-edit-toolbar-buttons.php:31 lib/wpdev-booking-class.php:
|
5878 |
msgid "Booking calendar"
|
5879 |
msgstr ""
|
5880 |
|
@@ -5894,11 +5925,11 @@ msgstr ""
|
|
5894 |
msgid "Show in the page:"
|
5895 |
msgstr ""
|
5896 |
|
5897 |
-
#: lib/wpdev-bk-edit-toolbar-buttons.php:437 lib/wpdev-booking-widget.php:
|
5898 |
msgid "Booking form with calendar"
|
5899 |
msgstr ""
|
5900 |
|
5901 |
-
#: lib/wpdev-bk-edit-toolbar-buttons.php:438 lib/wpdev-booking-widget.php:
|
5902 |
msgid "Only availability calendar"
|
5903 |
msgstr ""
|
5904 |
|
@@ -5970,380 +6001,421 @@ msgid ""
|
|
5970 |
"Visitor can select only 4 days starting at Monday, 3 or 7 days – Friday, 2 days – Saturday, etc…"
|
5971 |
msgstr ""
|
5972 |
|
5973 |
-
#: lib/wpdev-bk-lib.php:
|
5974 |
msgid "week"
|
5975 |
msgstr ""
|
5976 |
|
5977 |
-
#: lib/wpdev-bk-lib.php:
|
5978 |
msgid "weeks"
|
5979 |
msgstr ""
|
5980 |
|
5981 |
-
#: lib/wpdev-bk-lib.php:
|
5982 |
msgid "month"
|
5983 |
msgstr ""
|
5984 |
|
5985 |
-
#: lib/wpdev-bk-lib.php:
|
5986 |
msgid "months"
|
5987 |
msgstr ""
|
5988 |
|
5989 |
-
#: lib/wpdev-bk-lib.php:
|
5990 |
-
#: lib/wpdev-settings-general.php:
|
5991 |
msgid "Year"
|
5992 |
msgstr ""
|
5993 |
|
5994 |
-
#: lib/wpdev-bk-lib.php:
|
5995 |
msgid "Current dates"
|
5996 |
msgstr ""
|
5997 |
|
5998 |
-
#: lib/wpdev-bk-lib.php:
|
5999 |
msgid "Today"
|
6000 |
msgstr ""
|
6001 |
|
6002 |
-
#: lib/wpdev-bk-lib.php:
|
6003 |
msgid "Previous dates"
|
6004 |
msgstr ""
|
6005 |
|
6006 |
-
#: lib/wpdev-bk-lib.php:
|
6007 |
msgid "All dates"
|
6008 |
msgstr ""
|
6009 |
|
6010 |
-
#: lib/wpdev-bk-lib.php:
|
6011 |
msgid "Next"
|
6012 |
msgstr ""
|
6013 |
|
6014 |
-
#: lib/wpdev-bk-lib.php:
|
6015 |
msgid "Prior"
|
6016 |
msgstr ""
|
6017 |
|
6018 |
-
#: lib/wpdev-bk-lib.php:
|
6019 |
msgid "Check In - Tomorrow"
|
6020 |
msgstr ""
|
6021 |
|
6022 |
-
#: lib/wpdev-bk-lib.php:
|
6023 |
msgid "Check Out - Tomorrow"
|
6024 |
msgstr ""
|
6025 |
|
6026 |
-
#: lib/wpdev-bk-lib.php:
|
6027 |
msgid "Today check in/out"
|
6028 |
msgstr ""
|
6029 |
|
6030 |
-
#: lib/wpdev-bk-lib.php:
|
6031 |
msgid "Check-in"
|
6032 |
msgstr ""
|
6033 |
|
6034 |
-
#: lib/wpdev-bk-lib.php:
|
6035 |
msgid "Check-out"
|
6036 |
msgstr ""
|
6037 |
|
6038 |
-
#: lib/wpdev-bk-lib.php:
|
6039 |
-
#: lib/wpdev-bk-lib.php:
|
6040 |
msgid "Apply"
|
6041 |
msgstr ""
|
6042 |
|
6043 |
-
#: lib/wpdev-bk-lib.php:
|
6044 |
msgid "Start Date"
|
6045 |
msgstr ""
|
6046 |
|
6047 |
-
#: lib/wpdev-bk-lib.php:
|
6048 |
msgid "Booking Listing"
|
6049 |
msgstr ""
|
6050 |
|
6051 |
-
#: lib/wpdev-bk-lib.php:
|
6052 |
msgid "Calendar Overview"
|
6053 |
msgstr ""
|
6054 |
|
6055 |
-
#: lib/wpdev-bk-lib.php:
|
6056 |
msgid "Booking Calendar - Overview"
|
6057 |
msgstr ""
|
6058 |
|
6059 |
-
#: lib/wpdev-bk-lib.php:
|
6060 |
msgid "Help"
|
6061 |
msgstr ""
|
6062 |
|
6063 |
-
#: lib/wpdev-bk-lib.php:
|
6064 |
msgid "About Booking Calendar"
|
6065 |
msgstr ""
|
6066 |
|
6067 |
-
#: lib/wpdev-bk-lib.php:
|
6068 |
-
#: lib/wpdev-booking-class.php:
|
6069 |
msgid "FAQ"
|
6070 |
msgstr ""
|
6071 |
|
6072 |
-
#: lib/wpdev-bk-lib.php:
|
6073 |
msgid "Technical Support"
|
6074 |
msgstr ""
|
6075 |
|
6076 |
-
#: lib/wpdev-bk-lib.php:
|
6077 |
msgid "Filter"
|
6078 |
msgstr ""
|
6079 |
|
6080 |
-
#: lib/wpdev-bk-lib.php:
|
6081 |
msgid "Expand Advanced Filter"
|
6082 |
msgstr ""
|
6083 |
|
6084 |
-
#: lib/wpdev-bk-lib.php:
|
6085 |
msgid "Collapse Advanced Filter"
|
6086 |
msgstr ""
|
6087 |
|
6088 |
-
#: lib/wpdev-bk-lib.php:
|
6089 |
msgid "Send email notification to customer after approval, cancellation or deletion of bookings"
|
6090 |
msgstr ""
|
6091 |
|
6092 |
-
#: lib/wpdev-bk-lib.php:
|
6093 |
msgid "Emails sending"
|
6094 |
msgstr ""
|
6095 |
|
6096 |
-
#: lib/wpdev-bk-lib.php:
|
6097 |
msgid "Booking ID"
|
6098 |
msgstr ""
|
6099 |
|
6100 |
-
#: lib/wpdev-bk-lib.php:
|
6101 |
msgid "Refresh booking listing"
|
6102 |
msgstr ""
|
6103 |
|
6104 |
-
#: lib/wpdev-bk-lib.php:
|
6105 |
msgid "Reset filter to default values"
|
6106 |
msgstr ""
|
6107 |
|
6108 |
-
#: lib/wpdev-bk-lib.php:
|
6109 |
msgid "Any"
|
6110 |
msgstr ""
|
6111 |
|
6112 |
-
#: lib/wpdev-bk-lib.php:
|
6113 |
msgid "New bookings"
|
6114 |
msgstr ""
|
6115 |
|
6116 |
-
#: lib/wpdev-bk-lib.php:
|
6117 |
msgid "Show"
|
6118 |
msgstr ""
|
6119 |
|
6120 |
-
#: lib/wpdev-bk-lib.php:
|
6121 |
msgid "Creation"
|
6122 |
msgstr ""
|
6123 |
|
6124 |
-
#: lib/wpdev-bk-lib.php:
|
6125 |
msgid "Order by"
|
6126 |
msgstr ""
|
6127 |
|
6128 |
-
#: lib/wpdev-bk-lib.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6129 |
msgid ""
|
6130 |
"Save filter settings as default template (Please, click Apply filter button, before saving!)"
|
6131 |
msgstr ""
|
6132 |
|
6133 |
-
#: lib/wpdev-bk-lib.php:
|
6134 |
msgid "Save as Default"
|
6135 |
msgstr ""
|
6136 |
|
6137 |
-
#: lib/wpdev-bk-lib.php:
|
6138 |
msgid "Delete your previously saved default filer template!"
|
6139 |
msgstr ""
|
6140 |
|
6141 |
-
#: lib/wpdev-bk-lib.php:
|
6142 |
msgid "Delete template"
|
6143 |
msgstr ""
|
6144 |
|
6145 |
-
#: lib/wpdev-bk-lib.php:
|
6146 |
msgid "Approve selected bookings"
|
6147 |
msgstr ""
|
6148 |
|
6149 |
-
#: lib/wpdev-bk-lib.php:
|
6150 |
msgid "Approve"
|
6151 |
msgstr ""
|
6152 |
|
6153 |
-
#: lib/wpdev-bk-lib.php:
|
6154 |
msgid "Set selected bookings as pending"
|
6155 |
msgstr ""
|
6156 |
|
6157 |
-
#: lib/wpdev-bk-lib.php:
|
6158 |
msgid "Do you really want to set booking as pending ?"
|
6159 |
msgstr ""
|
6160 |
|
6161 |
-
#: lib/wpdev-bk-lib.php:
|
6162 |
msgid "Reject"
|
6163 |
msgstr ""
|
6164 |
|
6165 |
-
#: lib/wpdev-bk-lib.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6166 |
msgid "Delete selected bookings"
|
6167 |
msgstr ""
|
6168 |
|
6169 |
-
#: lib/wpdev-bk-lib.php:
|
6170 |
msgid "Reason of cancellation"
|
6171 |
msgstr ""
|
6172 |
|
6173 |
-
#: lib/wpdev-bk-lib.php:
|
6174 |
msgid "Mark as read all bookings"
|
6175 |
msgstr ""
|
6176 |
|
6177 |
-
#: lib/wpdev-bk-lib.php:
|
6178 |
msgid "Read All"
|
6179 |
msgstr ""
|
6180 |
|
6181 |
-
#: lib/wpdev-bk-lib.php:
|
6182 |
msgid "Mark as read selected bookings"
|
6183 |
msgstr ""
|
6184 |
|
6185 |
-
#: lib/wpdev-bk-lib.php:
|
6186 |
msgid "Read"
|
6187 |
msgstr ""
|
6188 |
|
6189 |
-
#: lib/wpdev-bk-lib.php:
|
6190 |
msgid "Mark as Unread selected bookings"
|
6191 |
msgstr ""
|
6192 |
|
6193 |
-
#: lib/wpdev-bk-lib.php:
|
6194 |
msgid "Unread"
|
6195 |
msgstr ""
|
6196 |
|
6197 |
-
#: lib/wpdev-bk-lib.php:
|
6198 |
msgid "Booking Data"
|
6199 |
msgstr ""
|
6200 |
|
6201 |
-
#: lib/wpdev-bk-lib.php:
|
6202 |
msgid "Booking Dates"
|
6203 |
msgstr ""
|
6204 |
|
6205 |
-
#: lib/wpdev-bk-lib.php:
|
6206 |
msgid "Show ALL dates of booking"
|
6207 |
msgstr ""
|
6208 |
|
6209 |
-
#: lib/wpdev-bk-lib.php:
|
6210 |
msgid "Show only check in/out dates"
|
6211 |
msgstr ""
|
6212 |
|
6213 |
-
#: lib/wpdev-bk-lib.php:
|
6214 |
msgid "Nothing found!"
|
6215 |
msgstr ""
|
6216 |
|
6217 |
-
#: lib/wpdev-bk-lib.php:
|
6218 |
msgid "Resource not exist"
|
6219 |
msgstr ""
|
6220 |
|
6221 |
-
#: lib/wpdev-bk-lib.php:
|
6222 |
msgid "Mark"
|
6223 |
msgstr ""
|
6224 |
|
6225 |
-
#: lib/wpdev-bk-lib.php:
|
6226 |
msgid "Do you really want to delete this booking ?"
|
6227 |
msgstr ""
|
6228 |
|
6229 |
-
#: lib/wpdev-bk-lib.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6230 |
msgid "Default Locale"
|
6231 |
msgstr ""
|
6232 |
|
6233 |
-
#: lib/wpdev-bk-lib.php:
|
6234 |
msgid "Prev"
|
6235 |
msgstr ""
|
6236 |
|
6237 |
-
#: lib/wpdev-bk-lib.php:
|
6238 |
msgid "Show month"
|
6239 |
msgstr ""
|
6240 |
|
6241 |
-
#: lib/wpdev-bk-lib.php:
|
6242 |
-
#: lib/wpdev-settings-general.php:
|
6243 |
msgid "Month"
|
6244 |
msgstr ""
|
6245 |
|
6246 |
-
#: lib/wpdev-bk-lib.php:
|
6247 |
msgid "Show 3 months"
|
6248 |
msgstr ""
|
6249 |
|
6250 |
-
#: lib/wpdev-bk-lib.php:
|
6251 |
msgid "3 Months"
|
6252 |
msgstr ""
|
6253 |
|
6254 |
-
#: lib/wpdev-bk-lib.php:
|
6255 |
msgid "Show year"
|
6256 |
msgstr ""
|
6257 |
|
6258 |
-
#: lib/wpdev-bk-lib.php:
|
6259 |
msgid "Calendar view mode"
|
6260 |
msgstr ""
|
6261 |
|
6262 |
-
#: lib/wpdev-bk-lib.php:
|
6263 |
msgid "Show day"
|
6264 |
msgstr ""
|
6265 |
|
6266 |
-
#: lib/wpdev-bk-lib.php:
|
6267 |
msgid "Day"
|
6268 |
msgstr ""
|
6269 |
|
6270 |
-
#: lib/wpdev-bk-lib.php:
|
6271 |
msgid "Show week"
|
6272 |
msgstr ""
|
6273 |
|
6274 |
-
#: lib/wpdev-bk-lib.php:
|
6275 |
msgid "Week"
|
6276 |
msgstr ""
|
6277 |
|
6278 |
-
#: lib/wpdev-bk-lib.php:
|
6279 |
msgid "Show 2 months"
|
6280 |
msgstr ""
|
6281 |
|
6282 |
-
#: lib/wpdev-bk-lib.php:
|
6283 |
msgid "2 Months"
|
6284 |
msgstr ""
|
6285 |
|
6286 |
-
#: lib/wpdev-bk-lib.php:
|
6287 |
msgid "Previous 4 weeks"
|
6288 |
msgstr ""
|
6289 |
|
6290 |
-
#: lib/wpdev-bk-lib.php:
|
6291 |
msgid "Previous week"
|
6292 |
msgstr ""
|
6293 |
|
6294 |
-
#: lib/wpdev-bk-lib.php:
|
6295 |
msgid "Current week"
|
6296 |
msgstr ""
|
6297 |
|
6298 |
-
#: lib/wpdev-bk-lib.php:
|
6299 |
msgid "Next week"
|
6300 |
msgstr ""
|
6301 |
|
6302 |
-
#: lib/wpdev-bk-lib.php:
|
6303 |
msgid "Next 4 weeks"
|
6304 |
msgstr ""
|
6305 |
|
6306 |
-
#: lib/wpdev-bk-lib.php:
|
6307 |
msgid "Previous 3 months"
|
6308 |
msgstr ""
|
6309 |
|
6310 |
-
#: lib/wpdev-bk-lib.php:
|
6311 |
msgid "Previous month"
|
6312 |
msgstr ""
|
6313 |
|
6314 |
-
#: lib/wpdev-bk-lib.php:
|
6315 |
msgid "Current month"
|
6316 |
msgstr ""
|
6317 |
|
6318 |
-
#: lib/wpdev-bk-lib.php:
|
6319 |
msgid "Next month"
|
6320 |
msgstr ""
|
6321 |
|
6322 |
-
#: lib/wpdev-bk-lib.php:
|
6323 |
msgid "Next 3 months"
|
6324 |
msgstr ""
|
6325 |
|
6326 |
-
#: lib/wpdev-bk-lib.php:
|
6327 |
msgid "Previous 7 days"
|
6328 |
msgstr ""
|
6329 |
|
6330 |
-
#: lib/wpdev-bk-lib.php:
|
6331 |
msgid "Previous day"
|
6332 |
msgstr ""
|
6333 |
|
6334 |
-
#: lib/wpdev-bk-lib.php:
|
6335 |
msgid "Current day"
|
6336 |
msgstr ""
|
6337 |
|
6338 |
-
#: lib/wpdev-bk-lib.php:
|
6339 |
msgid "Next day"
|
6340 |
msgstr ""
|
6341 |
|
6342 |
-
#: lib/wpdev-bk-lib.php:
|
6343 |
msgid "Next 7 days"
|
6344 |
msgstr ""
|
6345 |
|
6346 |
-
#: lib/wpdev-bk-lib.php:
|
6347 |
msgid "Calendar Navigation"
|
6348 |
msgstr ""
|
6349 |
|
@@ -6359,45 +6431,45 @@ msgstr ""
|
|
6359 |
msgid "F"
|
6360 |
msgstr ""
|
6361 |
|
6362 |
-
#: lib/wpdev-bk-timeline.php:122 lib/wpdev-bk-timeline.php:159 lib/wpdev-bk-timeline.php:
|
6363 |
-
#: lib/wpdev-bk-timeline.php:
|
6364 |
-
#: lib/wpdev-bk-timeline.php:
|
6365 |
msgid "Mon"
|
6366 |
msgstr ""
|
6367 |
|
6368 |
-
#: lib/wpdev-bk-timeline.php:122 lib/wpdev-bk-timeline.php:159 lib/wpdev-bk-timeline.php:
|
6369 |
-
#: lib/wpdev-bk-timeline.php:
|
6370 |
-
#: lib/wpdev-bk-timeline.php:
|
6371 |
msgid "Tue"
|
6372 |
msgstr ""
|
6373 |
|
6374 |
-
#: lib/wpdev-bk-timeline.php:122 lib/wpdev-bk-timeline.php:159 lib/wpdev-bk-timeline.php:
|
6375 |
-
#: lib/wpdev-bk-timeline.php:
|
6376 |
-
#: lib/wpdev-bk-timeline.php:
|
6377 |
msgid "Wed"
|
6378 |
msgstr ""
|
6379 |
|
6380 |
-
#: lib/wpdev-bk-timeline.php:122 lib/wpdev-bk-timeline.php:159 lib/wpdev-bk-timeline.php:
|
6381 |
-
#: lib/wpdev-bk-timeline.php:
|
6382 |
-
#: lib/wpdev-bk-timeline.php:
|
6383 |
msgid "Thu"
|
6384 |
msgstr ""
|
6385 |
|
6386 |
-
#: lib/wpdev-bk-timeline.php:122 lib/wpdev-bk-timeline.php:159 lib/wpdev-bk-timeline.php:
|
6387 |
-
#: lib/wpdev-bk-timeline.php:
|
6388 |
-
#: lib/wpdev-bk-timeline.php:
|
6389 |
msgid "Fri"
|
6390 |
msgstr ""
|
6391 |
|
6392 |
-
#: lib/wpdev-bk-timeline.php:122 lib/wpdev-bk-timeline.php:159 lib/wpdev-bk-timeline.php:
|
6393 |
-
#: lib/wpdev-bk-timeline.php:
|
6394 |
-
#: lib/wpdev-bk-timeline.php:
|
6395 |
msgid "Sat"
|
6396 |
msgstr ""
|
6397 |
|
6398 |
-
#: lib/wpdev-bk-timeline.php:122 lib/wpdev-bk-timeline.php:159 lib/wpdev-bk-timeline.php:
|
6399 |
-
#: lib/wpdev-bk-timeline.php:
|
6400 |
-
#: lib/wpdev-bk-timeline.php:
|
6401 |
msgid "Sun"
|
6402 |
msgstr ""
|
6403 |
|
@@ -6409,325 +6481,320 @@ msgstr ""
|
|
6409 |
msgid "S"
|
6410 |
msgstr ""
|
6411 |
|
6412 |
-
#: lib/wpdev-booking-class.php:
|
6413 |
msgid "Booking Calendar"
|
6414 |
msgstr ""
|
6415 |
|
6416 |
-
#: lib/wpdev-booking-class.php:
|
6417 |
msgid "Statistic"
|
6418 |
msgstr ""
|
6419 |
|
6420 |
-
#: lib/wpdev-booking-class.php:
|
6421 |
msgid "New (unverified) booking(s)"
|
6422 |
msgstr ""
|
6423 |
|
6424 |
-
#: lib/wpdev-booking-class.php:
|
6425 |
msgid "Pending booking(s)"
|
6426 |
msgstr ""
|
6427 |
|
6428 |
-
#: lib/wpdev-booking-class.php:
|
6429 |
msgid "Agenda"
|
6430 |
msgstr ""
|
6431 |
|
6432 |
-
#: lib/wpdev-booking-class.php:
|
6433 |
msgid "New booking(s) made today"
|
6434 |
msgstr ""
|
6435 |
|
6436 |
-
#: lib/wpdev-booking-class.php:
|
6437 |
msgid "Bookings for today"
|
6438 |
msgstr ""
|
6439 |
|
6440 |
-
#: lib/wpdev-booking-class.php:
|
6441 |
msgid "Upgrade to higher versions"
|
6442 |
msgstr ""
|
6443 |
|
6444 |
-
#: lib/wpdev-booking-class.php:
|
6445 |
msgid "Current version"
|
6446 |
msgstr ""
|
6447 |
|
6448 |
-
#: lib/wpdev-booking-class.php:
|
6449 |
msgid "Version"
|
6450 |
msgstr ""
|
6451 |
|
6452 |
-
#: lib/wpdev-booking-class.php:
|
6453 |
msgid "Type"
|
6454 |
msgstr ""
|
6455 |
|
6456 |
-
#: lib/wpdev-booking-class.php:
|
6457 |
msgid "Used for"
|
6458 |
msgstr ""
|
6459 |
|
6460 |
-
#: lib/wpdev-booking-class.php:
|
6461 |
msgid "websites"
|
6462 |
msgstr ""
|
6463 |
|
6464 |
-
#: lib/wpdev-booking-class.php:
|
6465 |
msgid "website"
|
6466 |
msgstr ""
|
6467 |
|
6468 |
-
#: lib/wpdev-booking-class.php:
|
6469 |
msgid "Release date"
|
6470 |
msgstr ""
|
6471 |
|
6472 |
-
#: lib/wpdev-booking-class.php:
|
6473 |
msgid "Check Premium Features"
|
6474 |
msgstr ""
|
6475 |
|
6476 |
-
#: lib/wpdev-booking-class.php:
|
6477 |
-
#: lib/wpdev-booking-class.php:
|
6478 |
-
#: lib/wpdev-booking-class.php:
|
6479 |
msgid "Upgrade"
|
6480 |
msgstr ""
|
6481 |
|
6482 |
-
#: lib/wpdev-booking-class.php:
|
6483 |
msgid "Explore Premium Features"
|
6484 |
msgstr ""
|
6485 |
|
6486 |
-
#: lib/wpdev-booking-class.php:
|
6487 |
msgid "Support"
|
6488 |
msgstr ""
|
6489 |
|
6490 |
-
#: lib/wpdev-booking-class.php:
|
6491 |
msgid "Getting Started"
|
6492 |
msgstr ""
|
6493 |
|
6494 |
-
#: lib/wpdev-booking-class.php:
|
6495 |
msgid "Contact email"
|
6496 |
msgstr ""
|
6497 |
|
6498 |
-
#: lib/wpdev-booking-class.php:
|
6499 |
msgid "Rate plugin (thanks:)"
|
6500 |
msgstr ""
|
6501 |
|
6502 |
-
#: lib/wpdev-booking-class.php:
|
6503 |
msgid "Warning !!!"
|
6504 |
msgstr ""
|
6505 |
|
6506 |
-
#: lib/wpdev-booking-class.php:
|
6507 |
msgid "All booking data will be deleted when the plugin is deactivated."
|
6508 |
msgstr ""
|
6509 |
|
6510 |
-
#: lib/wpdev-booking-class.php:
|
6511 |
#, php-format
|
6512 |
msgid ""
|
6513 |
"If you want to save your booking data, please uncheck the %s\"Delete booking data\"%s at the"
|
6514 |
msgstr ""
|
6515 |
|
6516 |
-
#: lib/wpdev-booking-class.php:
|
6517 |
msgid "settings page"
|
6518 |
msgstr ""
|
6519 |
|
6520 |
-
#: lib/wpdev-booking-class.php:
|
6521 |
-
#: lib/wpdev-booking-functions.php:
|
6522 |
msgid "Settings"
|
6523 |
msgstr ""
|
6524 |
|
6525 |
-
#: lib/wpdev-booking-class.php:
|
6526 |
msgid "Check new functionality in this plugin update."
|
6527 |
msgstr ""
|
6528 |
|
6529 |
-
#: lib/wpdev-booking-class.php:
|
6530 |
msgid "What's New"
|
6531 |
msgstr ""
|
6532 |
|
6533 |
-
#: lib/wpdev-booking-class.php:
|
6534 |
msgid "Booking"
|
6535 |
msgstr ""
|
6536 |
|
6537 |
-
#: lib/wpdev-booking-class.php:
|
6538 |
msgid "Booking Calendar Settings"
|
6539 |
msgstr ""
|
6540 |
|
6541 |
-
#: lib/wpdev-booking-class.php:
|
6542 |
-
#: lib/wpdev-settings-general.php:1167
|
6543 |
-
msgid "Bookings"
|
6544 |
-
msgstr ""
|
6545 |
-
|
6546 |
-
#: lib/wpdev-booking-class.php:704
|
6547 |
msgid "Bookings listing"
|
6548 |
msgstr ""
|
6549 |
|
6550 |
-
#: lib/wpdev-booking-class.php:
|
6551 |
msgid "Send email notification to customer about this operation"
|
6552 |
msgstr ""
|
6553 |
|
6554 |
-
#: lib/wpdev-booking-class.php:
|
6555 |
msgid "General"
|
6556 |
msgstr ""
|
6557 |
|
6558 |
-
#: lib/wpdev-booking-class.php:
|
6559 |
msgid "Fields"
|
6560 |
msgstr ""
|
6561 |
|
6562 |
-
#: lib/wpdev-booking-class.php:
|
6563 |
msgid "Fields Settings"
|
6564 |
msgstr ""
|
6565 |
|
6566 |
-
#: lib/wpdev-booking-class.php:
|
6567 |
msgid "Emails"
|
6568 |
msgstr ""
|
6569 |
|
6570 |
-
#: lib/wpdev-booking-class.php:
|
6571 |
msgid "Emails Settings"
|
6572 |
msgstr ""
|
6573 |
|
6574 |
-
#: lib/wpdev-booking-class.php:
|
6575 |
msgid "Payments"
|
6576 |
msgstr ""
|
6577 |
|
6578 |
-
#: lib/wpdev-booking-class.php:
|
6579 |
msgid "Payments Settings"
|
6580 |
msgstr ""
|
6581 |
|
6582 |
-
#: lib/wpdev-booking-class.php:
|
6583 |
msgid "Search Settings"
|
6584 |
msgstr ""
|
6585 |
|
6586 |
-
#: lib/wpdev-booking-class.php:
|
6587 |
msgid "Users Settings"
|
6588 |
msgstr ""
|
6589 |
|
6590 |
-
#: lib/wpdev-booking-class.php:
|
6591 |
msgid "Features"
|
6592 |
msgstr ""
|
6593 |
|
6594 |
-
#: lib/wpdev-booking-class.php:
|
6595 |
msgid "Live Demos"
|
6596 |
msgstr ""
|
6597 |
|
6598 |
-
#: lib/wpdev-booking-class.php:
|
6599 |
msgid "Contact"
|
6600 |
msgstr ""
|
6601 |
|
6602 |
-
#: lib/wpdev-booking-class.php:
|
6603 |
msgid "Buy"
|
6604 |
msgstr ""
|
6605 |
|
6606 |
-
#: lib/wpdev-booking-class.php:
|
6607 |
msgid "Calendar is loading..."
|
6608 |
msgstr ""
|
6609 |
|
6610 |
-
#: lib/wpdev-booking-class.php:
|
6611 |
msgid "Booking resource type is not defined. Its can be, when at the URL is wrong booking hash."
|
6612 |
msgstr ""
|
6613 |
|
6614 |
-
#: lib/wpdev-booking-class.php:
|
6615 |
#, php-format
|
6616 |
msgid ""
|
6617 |
"%sWarning! Booking calendar for this booking resource are already at the page, please check more "
|
6618 |
"about this issue at %sthis page%s"
|
6619 |
msgstr ""
|
6620 |
|
6621 |
-
#: lib/wpdev-booking-class.php:
|
6622 |
msgid "Wrong booking hash in URL. Probably hash is expired."
|
6623 |
msgstr ""
|
6624 |
|
6625 |
-
#: lib/wpdev-booking-class.php:
|
6626 |
msgid "You do not set any parameters for booking editing"
|
6627 |
msgstr ""
|
6628 |
|
6629 |
-
#: lib/wpdev-booking-class.php:
|
6630 |
#, php-format
|
6631 |
msgid ""
|
6632 |
"Thank you for your online booking. %s We will send confirmation of your booking as soon as "
|
6633 |
"possible."
|
6634 |
msgstr ""
|
6635 |
|
6636 |
-
#: lib/wpdev-booking-class.php:
|
6637 |
msgid "New booking"
|
6638 |
msgstr ""
|
6639 |
|
6640 |
-
#: lib/wpdev-booking-class.php:
|
6641 |
#, php-format
|
6642 |
msgid ""
|
6643 |
"You need to approve a new booking %s for: %s Person detail information:%s Currently a new "
|
6644 |
"booking is waiting for approval. Please visit the moderation panel%sThank you, %s"
|
6645 |
msgstr ""
|
6646 |
|
6647 |
-
#: lib/wpdev-booking-class.php:
|
6648 |
#, php-format
|
6649 |
msgid ""
|
6650 |
"Your reservation %s for: %s is processing now! We will send confirmation by email. %sYou can "
|
6651 |
"edit this booking at this page: %s Thank you, %s"
|
6652 |
msgstr ""
|
6653 |
|
6654 |
-
#: lib/wpdev-booking-class.php:
|
6655 |
#, php-format
|
6656 |
msgid ""
|
6657 |
"Your reservation %s for: %s is processing now! We will send confirmation by email. %s Thank you, "
|
6658 |
"%s"
|
6659 |
msgstr ""
|
6660 |
|
6661 |
-
#: lib/wpdev-booking-class.php:
|
6662 |
msgid "Your booking has been approved"
|
6663 |
msgstr ""
|
6664 |
|
6665 |
-
#: lib/wpdev-booking-class.php:
|
6666 |
#, php-format
|
6667 |
msgid ""
|
6668 |
"Your reservation %s for: %s has been approved.%sYou can edit the booking on this page: %s Thank "
|
6669 |
"you, %s"
|
6670 |
msgstr ""
|
6671 |
|
6672 |
-
#: lib/wpdev-booking-class.php:
|
6673 |
#, php-format
|
6674 |
msgid "Your booking %s for: %s has been approved.%sThank you, %s"
|
6675 |
msgstr ""
|
6676 |
|
6677 |
-
#: lib/wpdev-booking-class.php:
|
6678 |
msgid "Your booking has been declined"
|
6679 |
msgstr ""
|
6680 |
|
6681 |
-
#: lib/wpdev-booking-class.php:
|
6682 |
#, php-format
|
6683 |
msgid "Your booking %s for: %s has been canceled. %sThank you, %s"
|
6684 |
msgstr ""
|
6685 |
|
6686 |
-
#: lib/wpdev-booking-class.php:
|
6687 |
msgid "Booking form"
|
6688 |
msgstr ""
|
6689 |
|
6690 |
-
#: lib/wpdev-booking-class.php:
|
6691 |
msgid "Available"
|
6692 |
msgstr ""
|
6693 |
|
6694 |
-
#: lib/wpdev-booking-class.php:
|
6695 |
msgid "Booked"
|
6696 |
msgstr ""
|
6697 |
|
6698 |
-
#: lib/wpdev-booking-class.php:
|
6699 |
msgid "Partially booked"
|
6700 |
msgstr ""
|
6701 |
|
6702 |
-
#: lib/wpdev-booking-class.php:
|
6703 |
msgid "Technical support section"
|
6704 |
msgstr ""
|
6705 |
|
6706 |
-
#: lib/wpdev-booking-class.php:
|
6707 |
msgid "Reindex booking data"
|
6708 |
msgstr ""
|
6709 |
|
6710 |
-
#: lib/wpdev-booking-class.php:
|
6711 |
msgid "Reindex"
|
6712 |
msgstr ""
|
6713 |
|
6714 |
-
#: lib/wpdev-booking-class.php:
|
6715 |
msgid ""
|
6716 |
" Click, if you want to reindex booking data by booking dates sort field (Your installation/"
|
6717 |
"update of the plugin must be successful)."
|
6718 |
msgstr ""
|
6719 |
|
6720 |
-
#: lib/wpdev-booking-class.php:
|
6721 |
#, php-format
|
6722 |
msgid "%s Found %s not indexed bookings %s"
|
6723 |
msgstr ""
|
6724 |
|
6725 |
-
#: lib/wpdev-booking-class.php:
|
6726 |
#, php-format
|
6727 |
msgid "%s Finish getting sort dates. %s"
|
6728 |
msgstr ""
|
6729 |
|
6730 |
-
#: lib/wpdev-booking-class.php:
|
6731 |
#, php-format
|
6732 |
msgid "Updated booking: %s"
|
6733 |
msgstr ""
|
@@ -6736,44 +6803,44 @@ msgstr ""
|
|
6736 |
msgid "no"
|
6737 |
msgstr ""
|
6738 |
|
6739 |
-
#: lib/wpdev-booking-functions.php:
|
6740 |
msgid "Booking system"
|
6741 |
msgstr ""
|
6742 |
|
6743 |
-
#: lib/wpdev-booking-functions.php:
|
6744 |
msgid "Warning! Some error occur, during sending registration request."
|
6745 |
msgstr ""
|
6746 |
|
6747 |
-
#: lib/wpdev-booking-functions.php:
|
6748 |
msgid ""
|
6749 |
"Please refresh this page and if the same error appear again contact support by email (with info "
|
6750 |
"about order number and website) for finishing the registrations"
|
6751 |
msgstr ""
|
6752 |
|
6753 |
-
#: lib/wpdev-booking-functions.php:
|
6754 |
msgid "version"
|
6755 |
msgstr ""
|
6756 |
|
6757 |
-
#: lib/wpdev-booking-functions.php:
|
6758 |
#, php-format
|
6759 |
msgid "Add your %s on %swordpress.org%s, if you enjoyed by this plugin."
|
6760 |
msgstr ""
|
6761 |
|
6762 |
-
#: lib/wpdev-booking-widget.php:
|
6763 |
msgid "Footer"
|
6764 |
msgstr ""
|
6765 |
|
6766 |
-
#: lib/wpdev-booking-widget.php:
|
6767 |
#, php-format
|
6768 |
msgid "Example: %sMake booking here%s"
|
6769 |
msgstr ""
|
6770 |
|
6771 |
-
#: lib/wpdev-booking-widget.php:
|
6772 |
#, php-format
|
6773 |
msgid "%sSeveral widgets are supported at %spaid versions%s."
|
6774 |
msgstr ""
|
6775 |
|
6776 |
-
#: lib/wpdev-settings-general.php:41 lib/wpdev-settings-general.php:
|
6777 |
msgid "Form"
|
6778 |
msgstr ""
|
6779 |
|
@@ -6801,276 +6868,276 @@ msgstr ""
|
|
6801 |
msgid "Calendar Skin"
|
6802 |
msgstr ""
|
6803 |
|
6804 |
-
#: lib/wpdev-settings-general.php:
|
6805 |
msgid "Select the skin of the booking calendar"
|
6806 |
msgstr ""
|
6807 |
|
6808 |
-
#: lib/wpdev-settings-general.php:
|
6809 |
msgid "Number of months"
|
6810 |
msgstr ""
|
6811 |
|
6812 |
-
#: lib/wpdev-settings-general.php:
|
6813 |
msgid "month(s)"
|
6814 |
msgstr ""
|
6815 |
|
6816 |
-
#: lib/wpdev-settings-general.php:
|
6817 |
msgid "year(s)"
|
6818 |
msgstr ""
|
6819 |
|
6820 |
-
#: lib/wpdev-settings-general.php:
|
6821 |
msgid "Select the maximum number of months to show (scroll)"
|
6822 |
msgstr ""
|
6823 |
|
6824 |
-
#: lib/wpdev-settings-general.php:
|
6825 |
msgid "Start Day of the week"
|
6826 |
msgstr ""
|
6827 |
|
6828 |
-
#: lib/wpdev-settings-general.php:
|
6829 |
msgid "Select your start day of the week"
|
6830 |
msgstr ""
|
6831 |
|
6832 |
-
#: lib/wpdev-settings-general.php:
|
6833 |
-
msgid "
|
6834 |
msgstr ""
|
6835 |
|
6836 |
-
#: lib/wpdev-settings-general.php:
|
6837 |
-
msgid "
|
6838 |
msgstr ""
|
6839 |
|
6840 |
-
#: lib/wpdev-settings-general.php:
|
6841 |
-
msgid "
|
6842 |
msgstr ""
|
6843 |
|
6844 |
-
#: lib/wpdev-settings-general.php:
|
6845 |
-
msgid "
|
6846 |
msgstr ""
|
6847 |
|
6848 |
-
#: lib/wpdev-settings-general.php:
|
6849 |
-
msgid "
|
6850 |
msgstr ""
|
6851 |
|
6852 |
-
#: lib/wpdev-settings-general.php:
|
6853 |
-
msgid "
|
6854 |
msgstr ""
|
6855 |
|
6856 |
-
#: lib/wpdev-settings-general.php:
|
6857 |
-
msgid "
|
6858 |
msgstr ""
|
6859 |
|
6860 |
-
#: lib/wpdev-settings-general.php:
|
6861 |
-
msgid "
|
6862 |
msgstr ""
|
6863 |
|
6864 |
-
#: lib/wpdev-settings-general.php:
|
6865 |
-
msgid "
|
6866 |
msgstr ""
|
6867 |
|
6868 |
-
#: lib/wpdev-settings-general.php:
|
6869 |
msgid "Check the box to activate CAPTCHA inside the booking form."
|
6870 |
msgstr ""
|
6871 |
|
6872 |
-
#: lib/wpdev-settings-general.php:
|
6873 |
msgid "Auto-fill fields"
|
6874 |
msgstr ""
|
6875 |
|
6876 |
-
#: lib/wpdev-settings-general.php:
|
6877 |
msgid "Check the box to activate auto-fill form fields for logged in users."
|
6878 |
msgstr ""
|
6879 |
|
6880 |
-
#: lib/wpdev-settings-general.php:
|
6881 |
msgid "Use CSS BootStrap"
|
6882 |
msgstr ""
|
6883 |
|
6884 |
-
#: lib/wpdev-settings-general.php:
|
6885 |
msgid "Using BootStrap CSS for the form fields"
|
6886 |
msgstr ""
|
6887 |
|
6888 |
-
#: lib/wpdev-settings-general.php:
|
6889 |
msgid "You must not deactivate loading BootStrap files at advanced section of these settings!"
|
6890 |
msgstr ""
|
6891 |
|
6892 |
-
#: lib/wpdev-settings-general.php:
|
6893 |
msgid "Action after booking is done"
|
6894 |
msgstr ""
|
6895 |
|
6896 |
-
#: lib/wpdev-settings-general.php:
|
6897 |
msgid "Show \"Thank You\" message"
|
6898 |
msgstr ""
|
6899 |
|
6900 |
-
#: lib/wpdev-settings-general.php:
|
6901 |
msgid "Redirect visitor to a new \"Thank You\" page"
|
6902 |
msgstr ""
|
6903 |
|
6904 |
-
#: lib/wpdev-settings-general.php:
|
6905 |
msgid "This action will have no effect, if the payment form(s) is active!"
|
6906 |
msgstr ""
|
6907 |
|
6908 |
-
#: lib/wpdev-settings-general.php:
|
6909 |
msgid "Message title"
|
6910 |
msgstr ""
|
6911 |
|
6912 |
-
#: lib/wpdev-settings-general.php:
|
6913 |
#, php-format
|
6914 |
msgid "Type title of message %safter booking has done by user%s"
|
6915 |
msgstr ""
|
6916 |
|
6917 |
-
#: lib/wpdev-settings-general.php:
|
6918 |
msgid "Time of message showing"
|
6919 |
msgstr ""
|
6920 |
|
6921 |
-
#: lib/wpdev-settings-general.php:
|
6922 |
msgid "Set duration of time (milliseconds) to show this message"
|
6923 |
msgstr ""
|
6924 |
|
6925 |
-
#: lib/wpdev-settings-general.php:
|
6926 |
msgid "URL of \"thank you\" page"
|
6927 |
msgstr ""
|
6928 |
|
6929 |
-
#: lib/wpdev-settings-general.php:
|
6930 |
#, php-format
|
6931 |
msgid "Type URL of %s\"Thank You\" page%s"
|
6932 |
msgstr ""
|
6933 |
|
6934 |
-
#: lib/wpdev-settings-general.php:
|
6935 |
msgid "Listing of bookings"
|
6936 |
msgstr ""
|
6937 |
|
6938 |
-
#: lib/wpdev-settings-general.php:
|
6939 |
msgid "Default booking admin page"
|
6940 |
msgstr ""
|
6941 |
|
6942 |
-
#: lib/wpdev-settings-general.php:
|
6943 |
msgid "Bookings Listing"
|
6944 |
msgstr ""
|
6945 |
|
6946 |
-
#: lib/wpdev-settings-general.php:
|
6947 |
msgid "Select your default view mode of bookings at the booking listing page"
|
6948 |
msgstr ""
|
6949 |
|
6950 |
-
#: lib/wpdev-settings-general.php:
|
6951 |
msgid "Default calendar view mode"
|
6952 |
msgstr ""
|
6953 |
|
6954 |
-
#: lib/wpdev-settings-general.php:
|
6955 |
msgid "Select your default calendar view mode at booking calendar overview page"
|
6956 |
msgstr ""
|
6957 |
|
6958 |
-
#: lib/wpdev-settings-general.php:
|
6959 |
msgid "Default toolbar tab"
|
6960 |
msgstr ""
|
6961 |
|
6962 |
-
#: lib/wpdev-settings-general.php:
|
6963 |
msgid "Filter tab"
|
6964 |
msgstr ""
|
6965 |
|
6966 |
-
#: lib/wpdev-settings-general.php:
|
6967 |
msgid "Actions tab"
|
6968 |
msgstr ""
|
6969 |
|
6970 |
-
#: lib/wpdev-settings-general.php:
|
6971 |
msgid "Select your default opened tab in toolbar at booking listing page"
|
6972 |
msgstr ""
|
6973 |
|
6974 |
-
#: lib/wpdev-settings-general.php:
|
6975 |
msgid "Bookings number per page"
|
6976 |
msgstr ""
|
6977 |
|
6978 |
-
#: lib/wpdev-settings-general.php:
|
6979 |
msgid "Select number of bookings per page in booking listing"
|
6980 |
msgstr ""
|
6981 |
|
6982 |
-
#: lib/wpdev-settings-general.php:
|
6983 |
msgid "Bookings default order"
|
6984 |
msgstr ""
|
6985 |
|
6986 |
-
#: lib/wpdev-settings-general.php:
|
6987 |
-
#: lib/wpdev-settings-general.php:
|
6988 |
msgid "ASC"
|
6989 |
msgstr ""
|
6990 |
|
6991 |
-
#: lib/wpdev-settings-general.php:
|
6992 |
-
#: lib/wpdev-settings-general.php:
|
6993 |
msgid "DESC"
|
6994 |
msgstr ""
|
6995 |
|
6996 |
-
#: lib/wpdev-settings-general.php:
|
6997 |
msgid "Select your default order of bookings in the booking listing"
|
6998 |
msgstr ""
|
6999 |
|
7000 |
-
#: lib/wpdev-settings-general.php:
|
7001 |
msgid "Date Format"
|
7002 |
msgstr ""
|
7003 |
|
7004 |
-
#: lib/wpdev-settings-general.php:
|
7005 |
msgid "F j, Y"
|
7006 |
msgstr ""
|
7007 |
|
7008 |
-
#: lib/wpdev-settings-general.php:
|
7009 |
#, php-format
|
7010 |
msgid ""
|
7011 |
"Type your date format for emails and the booking table. %sDocumentation on date formatting%s"
|
7012 |
msgstr ""
|
7013 |
|
7014 |
-
#: lib/wpdev-settings-general.php:
|
7015 |
msgid "Dates view"
|
7016 |
msgstr ""
|
7017 |
|
7018 |
-
#: lib/wpdev-settings-general.php:
|
7019 |
msgid "Short days view"
|
7020 |
msgstr ""
|
7021 |
|
7022 |
-
#: lib/wpdev-settings-general.php:
|
7023 |
msgid "Wide days view"
|
7024 |
msgstr ""
|
7025 |
|
7026 |
-
#: lib/wpdev-settings-general.php:
|
7027 |
msgid "Select the default view for dates on the booking tables"
|
7028 |
msgstr ""
|
7029 |
|
7030 |
-
#: lib/wpdev-settings-general.php:
|
7031 |
msgid "Show / hide hints"
|
7032 |
msgstr ""
|
7033 |
|
7034 |
-
#: lib/wpdev-settings-general.php:
|
7035 |
msgid "Check this box if you want to show help hints on the admin panel."
|
7036 |
msgstr ""
|
7037 |
|
7038 |
-
#: lib/wpdev-settings-general.php:
|
7039 |
msgid "Checking to prevent double booking, during submitting booking"
|
7040 |
msgstr ""
|
7041 |
|
7042 |
-
#: lib/wpdev-settings-general.php:
|
7043 |
msgid "This feature can impact to speed of submitting booking. Do you really want to do this?"
|
7044 |
msgstr ""
|
7045 |
|
7046 |
-
#: lib/wpdev-settings-general.php:
|
7047 |
#, php-format
|
7048 |
msgid ""
|
7049 |
"Check this box, if you want to %sre-check if the selected dates available during submitting "
|
7050 |
"booking%s."
|
7051 |
msgstr ""
|
7052 |
|
7053 |
-
#: lib/wpdev-settings-general.php:
|
7054 |
msgid ""
|
7055 |
"This feature useful to prevent double booking of the same date(s) or time(s), if several "
|
7056 |
"visitors try to book the same date(s) in same calendar during the same time."
|
7057 |
msgstr ""
|
7058 |
|
7059 |
-
#: lib/wpdev-settings-general.php:
|
7060 |
msgid "This feature does not work for booking resources with capacity higher than one."
|
7061 |
msgstr ""
|
7062 |
|
7063 |
-
#: lib/wpdev-settings-general.php:
|
7064 |
msgid "Allow unlimited bookings per same day(s)"
|
7065 |
msgstr ""
|
7066 |
|
7067 |
-
#: lib/wpdev-settings-general.php:
|
7068 |
msgid ""
|
7069 |
"You allow unlimited number of bookings per same dates, its can be a reason of double bookings on "
|
7070 |
"the same date. Do you really want to do this?"
|
7071 |
msgstr ""
|
7072 |
|
7073 |
-
#: lib/wpdev-settings-general.php:
|
7074 |
#, php-format
|
7075 |
msgid ""
|
7076 |
"Check this box, if you want to %sset any days as available%s in calendar. Your visitors will be "
|
@@ -7078,305 +7145,305 @@ msgid ""
|
|
7078 |
"date(s)%s of other visitors."
|
7079 |
msgstr ""
|
7080 |
|
7081 |
-
#: lib/wpdev-settings-general.php:
|
7082 |
msgid "Show advanced settings of JavaScript loading"
|
7083 |
msgstr ""
|
7084 |
|
7085 |
-
#: lib/wpdev-settings-general.php:
|
7086 |
msgid "Hide advanced settings of JavaScript loading"
|
7087 |
msgstr ""
|
7088 |
|
7089 |
-
#: lib/wpdev-settings-general.php:
|
7090 |
msgid "Disable Bootstrap loading on Front-End"
|
7091 |
msgstr ""
|
7092 |
|
7093 |
-
#: lib/wpdev-settings-general.php:
|
7094 |
-
#: lib/wpdev-settings-general.php:
|
7095 |
msgid ""
|
7096 |
"You are need to be sure what you are doing. You are disable of loading some JavaScripts Do you "
|
7097 |
"really want to do this?"
|
7098 |
msgstr ""
|
7099 |
|
7100 |
-
#: lib/wpdev-settings-general.php:
|
7101 |
msgid ""
|
7102 |
" If your theme or some other plugin is load the BootStrap JavaScripts, you can disable loading "
|
7103 |
"of this script by this plugin."
|
7104 |
msgstr ""
|
7105 |
|
7106 |
-
#: lib/wpdev-settings-general.php:
|
7107 |
msgid "Disable Bootstrap loading on Back-End"
|
7108 |
msgstr ""
|
7109 |
|
7110 |
-
#: lib/wpdev-settings-general.php:
|
7111 |
msgid "Load JS and CSS files only on specific pages"
|
7112 |
msgstr ""
|
7113 |
|
7114 |
-
#: lib/wpdev-settings-general.php:
|
7115 |
msgid "Activate loading of CSS and JavaScript files of plugin only at specific pages."
|
7116 |
msgstr ""
|
7117 |
|
7118 |
-
#: lib/wpdev-settings-general.php:
|
7119 |
msgid "Relative URLs of pages, where to load plugin CSS and JS files"
|
7120 |
msgstr ""
|
7121 |
|
7122 |
-
#: lib/wpdev-settings-general.php:
|
7123 |
#, php-format
|
7124 |
msgid ""
|
7125 |
"Enter relative URLs of pages, where you have Booking Calendar elements (booking forms or "
|
7126 |
"availability calendars). Please enter one URL per line. Example: %s"
|
7127 |
msgstr ""
|
7128 |
|
7129 |
-
#: lib/wpdev-settings-general.php:
|
7130 |
msgid "Show settings of powered by notice"
|
7131 |
msgstr ""
|
7132 |
|
7133 |
-
#: lib/wpdev-settings-general.php:
|
7134 |
msgid "Hide settings of powered by notice"
|
7135 |
msgstr ""
|
7136 |
|
7137 |
-
#: lib/wpdev-settings-general.php:
|
7138 |
msgid "Powered by notice"
|
7139 |
msgstr ""
|
7140 |
|
7141 |
-
#: lib/wpdev-settings-general.php:
|
7142 |
msgid " Turn On/Off powered by \"Booking Calendar\" notice under the calendar."
|
7143 |
msgstr ""
|
7144 |
|
7145 |
-
#: lib/wpdev-settings-general.php:
|
7146 |
msgid "Help and info notices"
|
7147 |
msgstr ""
|
7148 |
|
7149 |
-
#: lib/wpdev-settings-general.php:
|
7150 |
msgid " Turn On/Off version notice and help info links at booking admin panel."
|
7151 |
msgstr ""
|
7152 |
|
7153 |
-
#: lib/wpdev-settings-general.php:
|
7154 |
msgid "Information"
|
7155 |
msgstr ""
|
7156 |
|
7157 |
-
#: lib/wpdev-settings-general.php:
|
7158 |
msgid "User permissions for plugin menu pages"
|
7159 |
msgstr ""
|
7160 |
|
7161 |
-
#: lib/wpdev-settings-general.php:
|
7162 |
msgid "Select user access level for the menu pages of plugin"
|
7163 |
msgstr ""
|
7164 |
|
7165 |
-
#: lib/wpdev-settings-general.php:
|
7166 |
msgid "Uninstall / deactivation"
|
7167 |
msgstr ""
|
7168 |
|
7169 |
-
#: lib/wpdev-settings-general.php:
|
7170 |
msgid "Delete booking data, when plugin deactivated"
|
7171 |
msgstr ""
|
7172 |
|
7173 |
-
#: lib/wpdev-settings-general.php:
|
7174 |
msgid ""
|
7175 |
"If you check this option, all booking data will be deleted when you uninstall this plugin. Do "
|
7176 |
"you really want to do this?"
|
7177 |
msgstr ""
|
7178 |
|
7179 |
-
#: lib/wpdev-settings-general.php:
|
7180 |
msgid "Check this box to delete all booking data when you uninstal this plugin."
|
7181 |
msgstr ""
|
7182 |
|
7183 |
-
#: lib/wpdev-settings-general.php:
|
7184 |
msgid "Show legend below calendar"
|
7185 |
msgstr ""
|
7186 |
|
7187 |
-
#: lib/wpdev-settings-general.php:
|
7188 |
msgid "Check this box to display a legend of dates below the booking calendar."
|
7189 |
msgstr ""
|
7190 |
|
7191 |
-
#: lib/wpdev-settings-general.php:
|
7192 |
msgid "Available item"
|
7193 |
msgstr ""
|
7194 |
|
7195 |
-
#: lib/wpdev-settings-general.php:
|
7196 |
#, php-format
|
7197 |
msgid "Activate and type your %stitle of available%s item in legend"
|
7198 |
msgstr ""
|
7199 |
|
7200 |
-
#: lib/wpdev-settings-general.php:
|
7201 |
msgid "Pending item"
|
7202 |
msgstr ""
|
7203 |
|
7204 |
-
#: lib/wpdev-settings-general.php:
|
7205 |
#, php-format
|
7206 |
msgid "Activate and type your %stitle of pending%s item in legend"
|
7207 |
msgstr ""
|
7208 |
|
7209 |
-
#: lib/wpdev-settings-general.php:
|
7210 |
msgid "Approved item"
|
7211 |
msgstr ""
|
7212 |
|
7213 |
-
#: lib/wpdev-settings-general.php:
|
7214 |
#, php-format
|
7215 |
msgid "Activate and type your %stitle of approved%s item in legend"
|
7216 |
msgstr ""
|
7217 |
|
7218 |
-
#: lib/wpdev-settings-general.php:
|
7219 |
msgid "Partially booked item"
|
7220 |
msgstr ""
|
7221 |
|
7222 |
-
#: lib/wpdev-settings-general.php:
|
7223 |
#, php-format
|
7224 |
msgid "Activate and type your %stitle of partially booked%s item in legend"
|
7225 |
msgstr ""
|
7226 |
|
7227 |
-
#: lib/wpdev-settings-general.php:
|
7228 |
msgid "Partially booked item - day, which is booked for the specific time-slot(s)."
|
7229 |
msgstr ""
|
7230 |
|
7231 |
-
#: lib/wpdev-settings-general.php:
|
7232 |
msgid "Show date number in legend"
|
7233 |
msgstr ""
|
7234 |
|
7235 |
-
#: lib/wpdev-settings-general.php:
|
7236 |
msgid "Check this box to display today date number in legend cells. "
|
7237 |
msgstr ""
|
7238 |
|
7239 |
-
#: lib/wpdev-settings-general.php:
|
7240 |
msgid "Form fields labels"
|
7241 |
msgstr ""
|
7242 |
|
7243 |
-
#: lib/wpdev-settings-general.php:
|
7244 |
-
#: lib/wpdev-settings-general.php:
|
7245 |
msgid "Field Label"
|
7246 |
msgstr ""
|
7247 |
|
7248 |
-
#: lib/wpdev-settings-general.php:
|
7249 |
-
#: lib/wpdev-settings-general.php:
|
7250 |
-
#: lib/wpdev-settings-general.php:
|
7251 |
msgid "Required"
|
7252 |
msgstr ""
|
7253 |
|
7254 |
-
#: lib/wpdev-settings-general.php:
|
7255 |
-
#: lib/wpdev-settings-general.php:
|
7256 |
-
#: lib/wpdev-settings-general.php:
|
7257 |
msgid "Activate or deactivate field and change the label title"
|
7258 |
msgstr ""
|
7259 |
|
7260 |
-
#: lib/wpdev-settings-general.php:
|
7261 |
msgid "Email Label"
|
7262 |
msgstr ""
|
7263 |
|
7264 |
-
#: lib/wpdev-settings-general.php:
|
7265 |
msgid "Change the label title of this field. Email is obligatory field in booking form."
|
7266 |
msgstr ""
|
7267 |
|
7268 |
-
#: lib/wpdev-settings-general.php:
|
7269 |
msgid "Selectbox Label"
|
7270 |
msgstr ""
|
7271 |
|
7272 |
-
#: lib/wpdev-settings-general.php:
|
7273 |
msgid "Selectbox Values"
|
7274 |
msgstr ""
|
7275 |
|
7276 |
-
#: lib/wpdev-settings-general.php:
|
7277 |
msgid "Enter dropdown options. One option per line."
|
7278 |
msgstr ""
|
7279 |
|
7280 |
-
#: lib/wpdev-settings-general.php:
|
7281 |
msgid "Textarea Label"
|
7282 |
msgstr ""
|
7283 |
|
7284 |
-
#: lib/wpdev-settings-general.php:
|
7285 |
#, php-format
|
7286 |
msgid ""
|
7287 |
"For example: \"You have a new reservation %s on the following date(s): %s Contact information: "
|
7288 |
"%s You can approve or cancel this booking at: %s Thank you, Reservation service.\""
|
7289 |
msgstr ""
|
7290 |
|
7291 |
-
#: lib/wpdev-settings-general.php:
|
7292 |
#, php-format
|
7293 |
msgid ""
|
7294 |
"For example: \"Your reservation %s on these date(s): %s is processing now! We will send "
|
7295 |
"confirmation by email. %s Thank you, Reservation service.\""
|
7296 |
msgstr ""
|
7297 |
|
7298 |
-
#: lib/wpdev-settings-general.php:
|
7299 |
#, php-format
|
7300 |
msgid ""
|
7301 |
"For example: \"Your reservation %s on these date(s): %s has been approved.%s Thank you, "
|
7302 |
"Reservation service.\""
|
7303 |
msgstr ""
|
7304 |
|
7305 |
-
#: lib/wpdev-settings-general.php:
|
7306 |
msgid ""
|
7307 |
"You can use (in subject and content of email template) any shortcodes, which you used in the "
|
7308 |
"booking form. Use the shortcodes in the same way as you used them in the content form at "
|
7309 |
"Settings Fields page."
|
7310 |
msgstr ""
|
7311 |
|
7312 |
-
#: lib/wpdev-settings-general.php:
|
7313 |
#, php-format
|
7314 |
msgid "%s - inserting data info about the booking"
|
7315 |
msgstr ""
|
7316 |
|
7317 |
-
#: lib/wpdev-settings-general.php:
|
7318 |
#, php-format
|
7319 |
msgid "%s - inserting your site URL "
|
7320 |
msgstr ""
|
7321 |
|
7322 |
-
#: lib/wpdev-settings-general.php:
|
7323 |
#, php-format
|
7324 |
msgid "%s - inserting IP address of the user who made this action "
|
7325 |
msgstr ""
|
7326 |
|
7327 |
-
#: lib/wpdev-settings-general.php:
|
7328 |
#, php-format
|
7329 |
msgid ""
|
7330 |
"%s - inserting contents of the User-Agent: header from the current request, if there is one "
|
7331 |
msgstr ""
|
7332 |
|
7333 |
-
#: lib/wpdev-settings-general.php:
|
7334 |
#, php-format
|
7335 |
msgid "%s - inserting address of the page (if any), where visitor make this action "
|
7336 |
msgstr ""
|
7337 |
|
7338 |
-
#: lib/wpdev-settings-general.php:
|
7339 |
#, php-format
|
7340 |
msgid "%s - inserting date of this action "
|
7341 |
msgstr ""
|
7342 |
|
7343 |
-
#: lib/wpdev-settings-general.php:
|
7344 |
#, php-format
|
7345 |
msgid "%s - inserting time of this action "
|
7346 |
msgstr ""
|
7347 |
|
7348 |
-
#: lib/wpdev-settings-general.php:
|
7349 |
#, php-format
|
7350 |
msgid "%s - inserting moderate link of new booking "
|
7351 |
msgstr ""
|
7352 |
|
7353 |
-
#: lib/wpdev-settings-general.php:
|
7354 |
#, php-format
|
7355 |
msgid ""
|
7356 |
"%s - inserting link to the page where visitor can edit the reservation, (possible to use the %s "
|
7357 |
"parameter for setting different %s of this page. Example: %s )"
|
7358 |
msgstr ""
|
7359 |
|
7360 |
-
#: lib/wpdev-settings-general.php:
|
7361 |
#, php-format
|
7362 |
msgid ""
|
7363 |
"%s - inserting link to the page where visitor can cancel the reservation, (possible to use the "
|
7364 |
"%s parameter for setting different %s of this page. Example: %s )"
|
7365 |
msgstr ""
|
7366 |
|
7367 |
-
#: lib/wpdev-settings-general.php:
|
7368 |
#, php-format
|
7369 |
msgid ""
|
7370 |
"%s - inserting link to payment page where visitor can pay for the reservation (possible to use "
|
7371 |
"the %s parameter for setting different %s of this page. Example: %s )"
|
7372 |
msgstr ""
|
7373 |
|
7374 |
-
#: lib/wpdev-settings-general.php:
|
7375 |
#, php-format
|
7376 |
msgid "%s - add the reason for booking payment, you can enter it before sending email, "
|
7377 |
msgstr ""
|
7378 |
|
7379 |
-
#: lib/wpdev-settings-general.php:
|
7380 |
#, php-format
|
7381 |
msgid "%s - add the reason booking was cancelled, you can enter it before sending email, "
|
7382 |
msgstr ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: booking\n"
|
5 |
"Report-Msgid-Bugs-To: \n"
|
6 |
+
"POT-Creation-Date: 2016-04-29 14:59+0300\n"
|
7 |
"PO-Revision-Date: \n"
|
8 |
"Last-Translator: wpdevelop <info@wpdevelop.com>\n"
|
9 |
"Language-Team: wpdevelop <info@wpbookingcalendar.com>\n"
|
14 |
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
"X-Poedit-KeywordsList: __;_e\n"
|
16 |
"X-Poedit-Basepath: ..\n"
|
17 |
+
"X-Generator: Poedit 1.8.7\n"
|
18 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
+
#: inc/biz_l.php:121 inc/biz_m.php:243 inc/lib_p.php:254 inc/lib_p.php:258 inc/lib_p.php:375
|
22 |
#: inc/lib_s.php:302 inc/lib_s.php:307 lib/wpbc-gcal-class.php:580 lib/wpbc-gcal-class.php:611
|
23 |
+
#: lib/wpdev-bk-lib.php:1577 lib/wpdev-bk-lib.php:1634 lib/wpdev-bk-lib.php:1637
|
24 |
+
#: lib/wpdev-bk-timeline.php:780 lib/wpdev-settings-general.php:851
|
25 |
+
#: lib/wpdev-settings-general.php:852
|
26 |
msgid "Dates"
|
27 |
msgstr ""
|
28 |
|
29 |
+
#: inc/biz_l.php:122 inc/biz_m.php:244
|
30 |
msgid "Full cost of the booking"
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: inc/biz_l.php:124 inc/biz_m.php:246 inc/biz_s.php:109 inc/personal.php:4303
|
34 |
+
#: inc/personal.php:4317 inc/personal.php:4335
|
35 |
msgid "First Name (required)"
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: inc/biz_l.php:125 inc/biz_m.php:247 inc/biz_s.php:110 inc/personal.php:4304
|
39 |
+
#: inc/personal.php:4318 inc/personal.php:4336
|
40 |
msgid "Last Name (required)"
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: inc/biz_l.php:126 inc/biz_m.php:248 inc/biz_s.php:111 inc/personal.php:4305
|
44 |
+
#: inc/personal.php:4319 inc/personal.php:4337
|
45 |
msgid "Email (required)"
|
46 |
msgstr ""
|
47 |
|
48 |
+
#: inc/biz_l.php:127 inc/biz_m.php:249 inc/biz_s.php:112 inc/biz_s.php:1427
|
49 |
+
#: inc/payments/ipay88.php:316 inc/personal.php:4306 inc/personal.php:4320 inc/personal.php:4338
|
50 |
+
#: inc/personal.php:4358 inc/personal.php:4369 inc/personal.php:4384
|
51 |
msgid "Phone"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: inc/biz_l.php:128 inc/biz_m.php:250 inc/biz_s.php:113 inc/personal.php:4339
|
55 |
msgid "Address (required)"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: inc/biz_l.php:129 inc/biz_m.php:251 inc/biz_s.php:114 inc/personal.php:4340
|
59 |
msgid "City (required)"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: inc/biz_l.php:130 inc/biz_m.php:252 inc/biz_s.php:115 inc/personal.php:4341
|
63 |
msgid "Post code (required)"
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: inc/biz_l.php:131 inc/biz_m.php:253 inc/biz_s.php:116 inc/personal.php:4342
|
67 |
msgid "Country (required)"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: inc/biz_l.php:132
|
71 |
msgid "Visitors"
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: inc/biz_l.php:133 inc/biz_m.php:255 inc/biz_s.php:118 inc/personal.php:4308
|
75 |
+
#: inc/personal.php:4322 inc/personal.php:4344 inc/personal.php:4361 inc/personal.php:4372
|
76 |
+
#: inc/personal.php:4391
|
77 |
msgid "Details"
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: inc/biz_l.php:134
|
81 |
msgid "Coupon"
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: inc/biz_l.php:135 inc/biz_m.php:256 inc/biz_s.php:119 inc/personal.php:4309
|
85 |
+
#: inc/personal.php:4323 inc/personal.php:4345
|
86 |
msgid "I Accept term and conditions"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: inc/biz_l.php:137 inc/biz_m.php:258 inc/biz_s.php:121 inc/personal.php:3020
|
90 |
+
#: inc/personal.php:4311 inc/personal.php:4325 inc/personal.php:4347
|
91 |
+
#: lib/wpdev-booking-class.php:1637
|
92 |
msgid "Send"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: inc/biz_l.php:171
|
96 |
msgid ""
|
97 |
"Try selecting fewer visitors. The number of visitors may be more than the number of available "
|
98 |
"units on selected day(s)!"
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: inc/biz_l.php:358
|
102 |
msgid "coupon"
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: inc/biz_l.php:360
|
106 |
msgid "discount"
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: inc/biz_l.php:793 inc/lib_l.php:661
|
110 |
msgid "Nothing found"
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: inc/biz_l.php:794 inc/lib_l.php:238 inc/lib_l.php:651 inc/lib_l.php:666 inc/personal.php:261
|
114 |
msgid "Search results"
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: inc/biz_l.php:928 inc/lib_l.php:797
|
118 |
msgid "Book now"
|
119 |
msgstr ""
|
120 |
|
122 |
msgid "Please select check-in and check-out days!"
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: inc/biz_l.php:1390 inc/biz_l.php:1403 inc/personal.php:156 lib/wpdev-booking-class.php:1176
|
126 |
msgid "Search"
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: inc/biz_l.php:2330
|
130 |
#, php-format
|
131 |
msgid ""
|
132 |
"Sorry, the reservation was not made because these days are already booked!!! %s (Its not "
|
134 |
"page and try other days."
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: inc/biz_l.php:2841
|
138 |
#, php-format
|
139 |
msgid "The folowing pending booking(s): %s deleted."
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: inc/biz_l.php:2881
|
143 |
msgid "Maximum available booking resource items"
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: inc/biz_l.php:3024 inc/biz_l.php:3918 inc/biz_l.php:4457 inc/biz_m.php:2693 inc/biz_m.php:3307
|
147 |
+
#: inc/biz_m.php:4915 inc/biz_m.php:5100 inc/biz_m.php:5207 inc/biz_m.php:5270 inc/biz_s.php:1529
|
148 |
+
#: inc/biz_s.php:2269 inc/multiuser.php:1441 inc/payments/authorizenet.php:346
|
149 |
#: inc/payments/bank-transfer.php:341 inc/payments/ipay88.php:320 inc/payments/pay-cash.php:126
|
150 |
#: inc/payments/paypal.php:596 inc/payments/sage.php:337 inc/payments/sermepa.php:299
|
151 |
+
#: inc/personal.php:1423 inc/personal.php:1482 inc/personal.php:1672 inc/personal.php:1767
|
152 |
+
#: inc/personal.php:4130 inc/personal.php:4271 lib/wpbc-class-settings.php:46
|
153 |
+
#: lib/wpdev-settings-general.php:75 lib/wpdev-settings-general.php:1291
|
154 |
+
#: lib/wpdev-settings-general.php:1793 lib/wpdev-settings-general.php:2320
|
155 |
+
#: lib/wpdev-settings-general.php:2448
|
156 |
msgid "Save Changes"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: inc/biz_l.php:3126 inc/biz_l.php:3304 inc/biz_l.php:3792 inc/biz_l.php:4094 inc/biz_l.php:4151
|
160 |
+
#: inc/biz_l.php:4217 inc/biz_l.php:4355 inc/biz_m.php:4921 inc/biz_s.php:851 inc/biz_s.php:1368
|
161 |
+
#: inc/biz_s.php:2010 inc/biz_s.php:2135 inc/payments/authorizenet.php:100
|
162 |
#: inc/payments/bank-transfer.php:111 inc/payments/ipay88.php:104 inc/payments/pay-cash.php:56
|
163 |
#: inc/payments/paypal.php:140 inc/payments/sage.php:96 inc/payments/sermepa.php:85
|
164 |
+
#: inc/personal.php:1380 inc/personal.php:3709 inc/personal.php:3790 inc/personal.php:3862
|
165 |
+
#: inc/personal.php:3947 inc/personal.php:4037 inc/personal.php:4194 inc/personal.php:4236
|
166 |
#: inc/sync/wpbc-sync-gcal-api.php:74 lib/wpbc-gcal.php:311 lib/wpbc-gcal.php:331
|
167 |
+
#: lib/wpbc-gcal.php:349 lib/wpbc-gcal.php:420 lib/wpdev-booking-class.php:3046
|
168 |
+
#: lib/wpdev-settings-general.php:387 lib/wpdev-settings-general.php:544
|
169 |
+
#: lib/wpdev-settings-general.php:606 lib/wpdev-settings-general.php:729
|
170 |
+
#: lib/wpdev-settings-general.php:956 lib/wpdev-settings-general.php:1166
|
171 |
+
#: lib/wpdev-settings-general.php:1195 lib/wpdev-settings-general.php:1265
|
172 |
+
#: lib/wpdev-settings-general.php:1498 lib/wpdev-settings-general.php:1982
|
173 |
+
#: lib/wpdev-settings-general.php:2062 lib/wpdev-settings-general.php:2135
|
174 |
+
#: lib/wpdev-settings-general.php:2222
|
175 |
msgid "Click to toggle"
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: inc/biz_l.php:3127 lib/wpdev-booking-class.php:732
|
179 |
msgid "Booking resources management"
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: inc/biz_l.php:3132 inc/biz_l.php:3955 inc/biz_l.php:3996 inc/biz_m.php:4427 inc/biz_m.php:4448
|
183 |
+
#: inc/biz_m.php:5221 inc/biz_m.php:5237 inc/form/class-wpbc-field-help-text.php:211
|
184 |
#: inc/lib_p.php:253 inc/lib_p.php:257 inc/lib_p.php:372 inc/lib_s.php:301 inc/lib_s.php:306
|
185 |
+
#: inc/multiuser.php:1337 inc/personal.php:1436 inc/personal.php:1451
|
186 |
#: inc/wpbc-br-table-for-settings.php:76 inc/wpbc-br-table-for-settings.php:93
|
187 |
+
#: lib/wpbc-gcal-class.php:577 lib/wpbc-gcal-class.php:595 lib/wpdev-bk-lib.php:1633
|
188 |
+
#: lib/wpdev-bk-lib.php:1636 lib/wpdev-bk-lib.php:2051 lib/wpdev-settings-general.php:849
|
189 |
+
#: lib/wpdev-settings-general.php:850
|
190 |
msgid "ID"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: inc/biz_l.php:3134 inc/biz_l.php:4536 inc/biz_m.php:5222 inc/personal.php:1437
|
194 |
+
#: inc/personal.php:1453 inc/wpbc-br-table-for-settings.php:77
|
195 |
msgid "Resource name"
|
196 |
msgstr ""
|
197 |
|
198 |
+
#: inc/biz_l.php:3136 inc/biz_l.php:4481
|
199 |
msgid "Number of resource items inside of parent resource"
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: inc/biz_l.php:3136 inc/biz_l.php:4481
|
203 |
msgid "Capacity"
|
204 |
msgstr ""
|
205 |
|
206 |
+
#: inc/biz_l.php:3137 inc/biz_l.php:3241 inc/biz_l.php:4482 inc/biz_l.php:4608
|
207 |
msgid "Parent"
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: inc/biz_l.php:3138 inc/biz_l.php:3248 inc/biz_l.php:4483 inc/biz_l.php:4618
|
211 |
msgid "Priority"
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: inc/biz_l.php:3140 inc/biz_l.php:4485
|
215 |
msgid "Maximum number of visitors for resource"
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: inc/biz_l.php:3140 inc/biz_l.php:4485 inc/biz_s.php:1801
|
219 |
msgid "Max"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: inc/biz_l.php:3140 inc/biz_l.php:4485
|
223 |
msgid "visitors"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: inc/biz_l.php:3142 inc/biz_l.php:3962 inc/biz_l.php:4487 inc/biz_m.php:4430
|
227 |
+
#: inc/multiuser.php:1341 lib/wpdev-bk-lib.php:1435 lib/wpdev-bk-lib.php:1854
|
228 |
+
#: lib/wpdev-bk-lib.php:1869 lib/wpdev-bk-lib.php:2271
|
229 |
msgid "Actions"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: inc/biz_l.php:3220
|
233 |
msgid "Add"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: inc/biz_l.php:3229 inc/biz_l.php:4029 inc/biz_m.php:911 inc/biz_m.php:4457 inc/biz_m.php:4460
|
237 |
+
#: inc/biz_m.php:5205 inc/personal.php:1421 lib/wpdev-bk-lib.php:1789
|
238 |
msgid "Delete"
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: inc/biz_l.php:3239 inc/wpbc-booking-select-widget.php:135 lib/wpbc-gcal-class.php:578
|
242 |
+
#: lib/wpbc-gcal-class.php:597 lib/wpdev-booking-widget.php:93
|
243 |
msgid "Title"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: inc/biz_l.php:3256
|
247 |
msgid "Add new resource"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: inc/biz_l.php:3263 inc/biz_l.php:3402 inc/biz_m.php:3872 inc/biz_m.php:4120 inc/lib_p.php:464
|
251 |
msgid "Save"
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: inc/biz_l.php:3305
|
255 |
msgid "Advanced Settings"
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: inc/biz_l.php:3320 inc/biz_l.php:3444
|
259 |
msgid "Set capacity based on number of visitors"
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: inc/biz_l.php:3326
|
263 |
#, php-format
|
264 |
msgid ""
|
265 |
"Check this box if you want total availability (daily capacity) to depend on the number of "
|
266 |
"selected visitors %s."
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: inc/biz_l.php:3327 inc/biz_l.php:3454 inc/personal.php:1564
|
270 |
#, php-format
|
271 |
msgid "Please read more info about configuration of this parameter %shere%s"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: inc/biz_l.php:3341
|
275 |
#, php-format
|
276 |
msgid ""
|
277 |
"Add tooltip on calendar(s) to show availability based on the number of available booking "
|
279 |
"%sone booking resource%s with the number of visitors specified on the booking form."
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: inc/biz_l.php:3349
|
283 |
#, php-format
|
284 |
msgid ""
|
285 |
"Display tooltip on calendar(s) to show availability based on total (fixed) number of visitors "
|
288 |
"booking form."
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: inc/biz_l.php:3364
|
292 |
msgid "Show availability"
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: inc/biz_l.php:3371 inc/biz_l.php:3591
|
296 |
msgid ""
|
297 |
"Check this box to display the available number of booking resources with a tooltip, when mouse "
|
298 |
"hovers over each day on the calendar(s)."
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: inc/biz_l.php:3379
|
302 |
msgid "Availability description"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: inc/biz_l.php:3381 inc/biz_l.php:3602
|
306 |
#, php-format
|
307 |
msgid "Type your %savailability%s description"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: inc/biz_l.php:3391 inc/biz_l.php:3490
|
311 |
msgid "Disable bookings in different booking resources"
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: inc/biz_l.php:3395
|
315 |
msgid ""
|
316 |
"Check this box to dissable reservations, which can be stored in different booking resources. "
|
317 |
"When checked, all reserved days must be at same booking resource otherwise error message will "
|
318 |
"show."
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: inc/biz_l.php:3451
|
322 |
msgid ""
|
323 |
"Check this box if you want total availability (daily capacity) to depend on the number of "
|
324 |
"selected visitors."
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: inc/biz_l.php:3454 inc/biz_m.php:4549 inc/form/class-wpbc-form-help.php:117
|
328 |
+
#: inc/form/class-wpbc-form-help.php:126 inc/form/class-wpbc-form-help.php:136
|
329 |
+
#: inc/form/class-wpbc-form-help.php:197 inc/form/class-wpbc-form-help.php:228
|
330 |
+
#: inc/form/class-wpbc-form-help.php:230 inc/form/class-wpbc-form-help.php:278
|
331 |
+
#: inc/form/class-wpbc-form-help.php:291 inc/form/class-wpbc-form-help.php:303
|
332 |
+
#: inc/form/class-wpbc-form-help.php:305 inc/form/class-wpbc-form-help.php:341
|
333 |
+
#: inc/form/class-wpbc-form-help.php:343 inc/form/class-wpbc-form-help.php:380
|
334 |
+
#: inc/form/class-wpbc-form-help.php:382 inc/form/class-wpbc-form-help.php:497
|
335 |
+
#: inc/form/class-wpbc-form-help.php:515 inc/form/class-wpbc-form-help.php:644
|
336 |
+
#: inc/form/class-wpbc-form-help.php:658 inc/payments/ipay88.php:315 inc/payments/sage.php:332
|
337 |
+
#: inc/payments/sermepa.php:294
|
338 |
msgid "Important!"
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: inc/biz_l.php:3469
|
342 |
msgid ""
|
343 |
"Add tooltip on calendar(s) to show availability based on the number of available booking "
|
344 |
"resource items remaining for each day."
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: inc/biz_l.php:3471 inc/biz_l.php:3480 inc/biz_l.php:4239 inc/biz_m.php:3115 inc/biz_m.php:5063
|
348 |
+
#: lib/wpdev-settings-general.php:647 lib/wpdev-settings-general.php:683
|
349 |
+
#: lib/wpdev-settings-general.php:983 lib/wpdev-settings-general.php:1465
|
350 |
msgid "Note"
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: inc/biz_l.php:3471
|
354 |
#, php-format
|
355 |
msgid ""
|
356 |
"Be sure to match the maximum number of visitors for the %sone booking resource%s with the number "
|
357 |
"of visitors specified on the booking form."
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: inc/biz_l.php:3478
|
361 |
msgid ""
|
362 |
"Display tooltip on calendar(s) to show availability based on total (fixed) number of visitors "
|
363 |
"for the resource, which can be at free booking resource items."
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: inc/biz_l.php:3480
|
367 |
#, php-format
|
368 |
msgid ""
|
369 |
"Be sure to match the maximum number of visitors for %sall booking resources%s with the number of "
|
370 |
"visitors specified on the booking form."
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: inc/biz_l.php:3495
|
374 |
msgid ""
|
375 |
"Check this box to dissable reservations, which can be stored in different booking resources."
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: inc/biz_l.php:3498
|
379 |
msgid ""
|
380 |
"When checked, all reserved days must be at same booking resource otherwise error message will "
|
381 |
"show."
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: inc/biz_l.php:3527
|
385 |
msgid "Use pending days as available"
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: inc/biz_l.php:3536
|
389 |
msgid "Check this box if you want to show the pending days as available in calendars"
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: inc/biz_l.php:3553
|
393 |
msgid ""
|
394 |
"Warning!!! After you approved the specific booking(s), all your pending bookings of the same "
|
395 |
"booking resource as an approved booking for the dates, which are intersect with dates of "
|
396 |
"approved booking, will be automatically canceled!"
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: inc/biz_l.php:3555
|
400 |
msgid ""
|
401 |
"Auto Cancel all pending bookings for the specific date(s), if some booking is approved for these "
|
402 |
"date(s)"
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: inc/biz_l.php:3584
|
406 |
msgid "Show availability in tooltip"
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: inc/biz_l.php:3600
|
410 |
msgid "Availability Title"
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: inc/biz_l.php:3637
|
414 |
msgid ""
|
415 |
"Use \"Check In\" date as available in calendar for booking resources with capacity higher then 1 "
|
416 |
"for search results"
|
417 |
msgstr ""
|
418 |
|
419 |
+
#: inc/biz_l.php:3644
|
420 |
msgid ""
|
421 |
"Use \"Check Out\" date as available in calendar for booking resources with capacity higher then "
|
422 |
"1 search results"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: inc/biz_l.php:3670
|
426 |
msgid "Coupon Deleted"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: inc/biz_l.php:3684
|
430 |
msgid "Coupon does not exist"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: inc/biz_l.php:3750
|
434 |
msgid "Coupon created"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: inc/biz_l.php:3780 inc/personal.php:500
|
438 |
msgid "Saved"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: inc/biz_l.php:3795
|
442 |
msgid "Add New Discount Coupon"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: inc/biz_l.php:3797 inc/biz_l.php:4026 inc/biz_m.php:4453 inc/biz_m.php:4455 inc/biz_m.php:5204
|
446 |
+
#: inc/personal.php:1420
|
447 |
msgid "Edit"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: inc/biz_l.php:3805 inc/biz_l.php:3956 inc/biz_l.php:3998
|
451 |
msgid "Coupon Code"
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: inc/biz_l.php:3808
|
455 |
msgid "Enter coupon code."
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: inc/biz_l.php:3813 inc/biz_l.php:3957 inc/biz_l.php:4001
|
459 |
msgid "Savings"
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: inc/biz_l.php:3818
|
463 |
msgid "Fixed Amount"
|
464 |
msgstr ""
|
465 |
|
466 |
+
#: inc/biz_l.php:3820
|
467 |
msgid "Percentage Off"
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: inc/biz_l.php:3823
|
471 |
msgid "Enter number of fixed or percentage savings."
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: inc/biz_l.php:3828 inc/biz_l.php:3959 inc/biz_l.php:4012
|
475 |
msgid "Expiration Date"
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: inc/biz_l.php:3854
|
479 |
msgid "Select Expiration Date of the coupon."
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: inc/biz_l.php:3860
|
483 |
msgid "Minimum Booking Cost"
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: inc/biz_l.php:3863
|
487 |
msgid "Enter minimum booking cost, when coupon is applicable."
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: inc/biz_l.php:3869 inc/biz_l.php:3960
|
491 |
msgid "Maximum number of usage"
|
492 |
msgstr ""
|
493 |
|
494 |
+
#: inc/biz_l.php:3872
|
495 |
msgid "Enter maximum number of times, when coupon is applicable."
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: inc/biz_l.php:3883 inc/biz_l.php:3961 inc/biz_l.php:4016 inc/biz_m.php:5313
|
499 |
+
#: inc/multiuser.php:1340 lib/wpdev-bk-timeline.php:779 lib/wpdev-booking-class.php:664
|
500 |
+
#: lib/wpdev-settings-general.php:1227
|
501 |
msgid "Resources"
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: inc/biz_l.php:3895 inc/biz_l.php:3982 inc/personal.php:337 inc/sync/wpbc-sync-gcal-feed.php:100
|
505 |
+
#: inc/wpbc-booking-select-widget.php:158
|
506 |
msgid "All"
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: inc/biz_l.php:3909
|
510 |
msgid "Select booking resources, where is possible to apply this coupon code."
|
511 |
msgstr ""
|
512 |
|
513 |
+
#: inc/biz_l.php:3920
|
514 |
msgid "Add New Coupon"
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: inc/biz_l.php:3956
|
518 |
msgid "The coupon code your customers will be using to receive the discount."
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: inc/biz_l.php:3957
|
522 |
msgid "The amount which will be saved. Enter only digits."
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: inc/biz_l.php:3958
|
526 |
msgid "The minimum total cost required to use the coupon"
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: inc/biz_l.php:3958 inc/biz_l.php:4007
|
530 |
msgid "Minimum Purchase"
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: inc/biz_l.php:3959
|
534 |
msgid "The date your coupon will expire"
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: inc/biz_l.php:3960 inc/biz_l.php:4014
|
538 |
msgid "Number of usage"
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: inc/biz_l.php:3961
|
542 |
msgid "Resource list, which supports this coupon"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: inc/biz_l.php:4020 inc/biz_l.php:4030 inc/biz_s.php:1951 inc/payments/authorizenet.php:327
|
546 |
#: inc/payments/paypal.php:585 inc/payments/sage.php:294 inc/payments/sermepa.php:256
|
547 |
+
#: lib/wpdev-settings-general.php:978 lib/wpdev-settings-general.php:1003
|
548 |
+
#: lib/wpdev-settings-general.php:1037 lib/wpdev-settings-general.php:1052
|
549 |
+
#: lib/wpdev-settings-general.php:1069 lib/wpdev-settings-general.php:1275
|
550 |
msgid "Warning"
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: inc/biz_l.php:4020 inc/biz_l.php:4030
|
554 |
msgid "Do you really want to delete this item?"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: inc/biz_l.php:4046
|
558 |
#, php-format
|
559 |
msgid "%s - coupon field, "
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: inc/biz_l.php:4047
|
563 |
#, php-format
|
564 |
msgid "Example: %s "
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: inc/biz_l.php:4095
|
568 |
msgid "Search Availability Form"
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: inc/biz_l.php:4100
|
572 |
msgid "Inlinee Search Form Template"
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: inc/biz_l.php:4101
|
576 |
msgid "Horizontal Search Form Template"
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: inc/biz_l.php:4102
|
580 |
msgid "Standard Search Form Template"
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: inc/biz_l.php:4103 inc/biz_l.php:4159 inc/lib_l.php:238 inc/lib_l.php:651
|
584 |
+
#: lib/wpdev-settings-general.php:63 lib/wpdev-settings-general.php:957
|
585 |
+
msgid "Advanced"
|
586 |
+
msgstr ""
|
587 |
+
|
588 |
+
#: inc/biz_l.php:4105 inc/biz_l.php:4161 inc/personal.php:1732
|
589 |
msgid "Reset current Form"
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: inc/biz_l.php:4110 inc/biz_l.php:4166 inc/biz_m.php:3876 inc/biz_m.php:4124
|
593 |
+
#: inc/personal.php:1739
|
594 |
msgid "Reset"
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: inc/biz_l.php:4131 inc/biz_l.php:4189 inc/payments/authorizenet.php:225
|
598 |
#: inc/payments/ipay88.php:252 inc/payments/sage.php:245 inc/payments/sermepa.php:207
|
599 |
+
#: inc/personal.php:4258
|
600 |
msgid "Use these shortcodes for customization: "
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: inc/biz_l.php:4132
|
604 |
#, php-format
|
605 |
msgid "%s - search inside posts/pages which are part of this category, "
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: inc/biz_l.php:4133
|
609 |
#, php-format
|
610 |
msgid "%s - search inside posts/pages which have this tag, "
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: inc/biz_l.php:4134
|
614 |
#, php-format
|
615 |
msgid "%s - check-in date, "
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: inc/biz_l.php:4135
|
619 |
#, php-format
|
620 |
msgid "%s - check-out date, "
|
621 |
msgstr ""
|
622 |
|
623 |
+
#: inc/biz_l.php:4136
|
624 |
#, php-format
|
625 |
msgid "%s - default selection number of visitors, "
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: inc/biz_l.php:4137
|
629 |
#, php-format
|
630 |
msgid "Example: %s - custom number of visitor selections\""
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: inc/biz_l.php:4138
|
634 |
#, php-format
|
635 |
msgid "%s - search button, "
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: inc/biz_l.php:4140 inc/biz_l.php:4206 inc/payments/index.php:266
|
639 |
+
#: lib/wpdev-settings-general.php:2396
|
640 |
msgid "HTML tags is accepted."
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: inc/biz_l.php:4152 inc/biz_l.php:4447
|
644 |
msgid "Search Results"
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: inc/biz_l.php:4158 inc/biz_l.php:4662 inc/biz_l.php:4872 inc/biz_l.php:4878 inc/biz_l.php:4926
|
648 |
+
#: inc/biz_m.php:883 inc/biz_m.php:1092 inc/biz_m.php:1136 inc/biz_m.php:2524 inc/biz_m.php:4889
|
649 |
+
#: inc/wpbc-booking-select-widget.php:225
|
650 |
+
msgid "Standard"
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: inc/biz_l.php:4190
|
654 |
#, php-format
|
655 |
msgid "%s - resource title, "
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: inc/biz_l.php:4191
|
659 |
#, php-format
|
660 |
msgid "%s - link to the page with booking form, "
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: inc/biz_l.php:4192
|
664 |
#, php-format
|
665 |
msgid "%s - availability of booking resource, "
|
666 |
msgstr ""
|
667 |
|
668 |
+
#: inc/biz_l.php:4193
|
669 |
#, php-format
|
670 |
msgid "%s - maximum number of visitors for the booking resource, "
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: inc/biz_l.php:4194
|
674 |
#, php-format
|
675 |
msgid "%s - cost of booking the resource, "
|
676 |
msgstr ""
|
677 |
|
678 |
+
#: inc/biz_l.php:4195
|
679 |
#, php-format
|
680 |
msgid "%s - featured image, taken from the featured image associated with the post, "
|
681 |
msgstr ""
|
682 |
|
683 |
+
#: inc/biz_l.php:4196
|
684 |
#, php-format
|
685 |
msgid "%s - booking info, taken from the excerpt associated with the post, "
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: inc/biz_l.php:4198 inc/form/class-wpbc-form-help.php:676
|
689 |
msgid "Full cost of the booking."
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: inc/biz_l.php:4199 inc/form/class-wpbc-form-help.php:678
|
693 |
msgid "Cost of the booking for the selected dates only."
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: inc/biz_l.php:4200 inc/form/class-wpbc-form-help.php:680
|
697 |
msgid "Additional cost, which depends on the fields selection in the form."
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: inc/biz_l.php:4201 inc/form/class-wpbc-form-help.php:682
|
701 |
msgid "The deposit cost of the booking."
|
702 |
msgstr ""
|
703 |
|
704 |
+
#: inc/biz_l.php:4202 inc/form/class-wpbc-form-help.php:684
|
705 |
msgid "Balance cost of the booking - difference between deposit and full cost."
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: inc/biz_l.php:4218 inc/biz_l.php:4453 lib/wpdev-booking-class.php:468
|
709 |
msgid "Help Info"
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: inc/biz_l.php:4234
|
713 |
msgid "CSS customization of search form and search results you can make at this file"
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: inc/biz_l.php:4240
|
717 |
#, php-format
|
718 |
msgid ""
|
719 |
"If you do not see search results at front-end side of your website, please check troubleshooting "
|
720 |
"instruction %shere%s"
|
721 |
msgstr ""
|
722 |
|
723 |
+
#: inc/biz_l.php:4257 inc/biz_l.php:4267 inc/biz_l.php:4277 inc/biz_l.php:4287
|
724 |
msgid "Check in"
|
725 |
msgstr ""
|
726 |
|
727 |
+
#: inc/biz_l.php:4258 inc/biz_l.php:4268 inc/biz_l.php:4278 inc/biz_l.php:4288
|
728 |
msgid "Check out"
|
729 |
msgstr ""
|
730 |
|
731 |
+
#: inc/biz_l.php:4259 inc/biz_l.php:4269 inc/biz_l.php:4279 inc/biz_l.php:4289
|
732 |
msgid "Guests"
|
733 |
msgstr ""
|
734 |
|
735 |
+
#: inc/biz_l.php:4281 inc/biz_m.php:3249 inc/biz_s.php:2193 lib/wpbc-gcal.php:618
|
736 |
+
#: lib/wpbc-gcal.php:682 lib/wpbc-gcal.php:808 lib/wpdev-bk-lib.php:300 lib/wpdev-bk-lib.php:301
|
737 |
+
#: lib/wpdev-bk-lib.php:302 lib/wpdev-bk-lib.php:303 lib/wpdev-bk-lib.php:304
|
738 |
+
msgid "days"
|
739 |
+
msgstr ""
|
740 |
+
|
741 |
+
#: inc/biz_l.php:4309 inc/biz_l.php:4326 inc/biz_m.php:2449 inc/biz_m.php:2510 inc/biz_m.php:5335
|
742 |
+
#: lib/wpdev-settings-general.php:545
|
743 |
msgid "Availability"
|
744 |
msgstr ""
|
745 |
|
746 |
+
#: inc/biz_l.php:4310 inc/biz_l.php:4327
|
747 |
msgid "Max. persons"
|
748 |
msgstr ""
|
749 |
|
750 |
+
#: inc/biz_l.php:4356 inc/biz_l.php:4450
|
751 |
msgid "Search Cache"
|
752 |
msgstr ""
|
753 |
|
754 |
+
#: inc/biz_l.php:4359
|
755 |
msgid "Reset Search Cache"
|
756 |
msgstr ""
|
757 |
|
758 |
+
#: inc/biz_l.php:4365
|
759 |
msgid "Cache expiration"
|
760 |
msgstr ""
|
761 |
|
762 |
+
#: inc/biz_l.php:4371
|
763 |
msgid "hour(s)"
|
764 |
msgstr ""
|
765 |
|
766 |
+
#: inc/biz_l.php:4376 inc/biz_m.php:3359 inc/biz_m.php:3547 inc/biz_m.php:4545 inc/biz_m.php:4626
|
767 |
+
#: inc/biz_m.php:4647
|
768 |
msgid "day(s)"
|
769 |
msgstr ""
|
770 |
|
771 |
+
#: inc/biz_l.php:4380
|
772 |
msgid "Select time of cache expiration"
|
773 |
msgstr ""
|
774 |
|
775 |
+
#: inc/biz_l.php:4388
|
776 |
msgid "Cache will expire:"
|
777 |
msgstr ""
|
778 |
|
779 |
+
#: inc/biz_l.php:4417
|
780 |
#, php-format
|
781 |
msgid "Found: %s booking forms inside of posts or pages "
|
782 |
msgstr ""
|
783 |
|
784 |
+
#: inc/biz_l.php:4421 inc/lib_p.php:255 inc/lib_p.php:259 inc/lib_s.php:303 inc/lib_s.php:308
|
785 |
+
#: lib/wpdev-settings-general.php:861 lib/wpdev-settings-general.php:862
|
786 |
+
msgid "Resource"
|
787 |
+
msgstr ""
|
788 |
+
|
789 |
+
#: inc/biz_l.php:4444
|
790 |
msgid "Search Form"
|
791 |
msgstr ""
|
792 |
|
793 |
+
#: inc/biz_l.php:4523
|
794 |
msgid "Parent Resource"
|
795 |
msgstr ""
|
796 |
|
797 |
+
#: inc/biz_l.php:4548
|
798 |
msgid "Max visitors"
|
799 |
msgstr ""
|
800 |
|
801 |
+
#: inc/biz_l.php:4595
|
802 |
msgid "Capacity: "
|
803 |
msgstr ""
|
804 |
|
805 |
+
#: inc/biz_l.php:4614
|
806 |
msgid "Select parent resource, if you want that parent resource to increase capacity."
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: inc/biz_l.php:4625
|
810 |
msgid "Set priority of resource - resource with higher priority will be reserved firstly."
|
811 |
msgstr ""
|
812 |
|
813 |
+
#: inc/biz_l.php:4636
|
814 |
msgid "Resources count"
|
815 |
msgstr ""
|
816 |
|
817 |
+
#: inc/biz_l.php:4643
|
818 |
msgid "Create several booking resources for one time"
|
819 |
msgstr ""
|
820 |
|
821 |
+
#: inc/biz_l.php:4657 inc/biz_m.php:2522 inc/wpbc-booking-select-widget.php:221
|
822 |
msgid "Default form"
|
823 |
msgstr ""
|
824 |
|
825 |
+
#: inc/biz_l.php:4667 inc/wpbc-booking-select-widget.php:233
|
|
|
|
|
|
|
|
|
|
|
|
|
826 |
msgid "Select default custom booking form"
|
827 |
msgstr ""
|
828 |
|
829 |
+
#: inc/biz_l.php:4759
|
830 |
msgid "Available: "
|
831 |
msgstr ""
|
832 |
|
833 |
+
#: inc/biz_l.php:4872 inc/multiuser.php:694 inc/personal.php:4434 lib/wpbc-gcal.php:742
|
834 |
+
#: lib/wpdev-bk-lib.php:1901
|
835 |
msgid "Default"
|
836 |
msgstr ""
|
837 |
|
838 |
+
#: inc/biz_l.php:4873 inc/biz_l.php:4879 inc/biz_l.php:4914 inc/biz_l.php:4915 inc/biz_l.php:4927
|
839 |
msgid "Superior"
|
840 |
msgstr ""
|
841 |
|
842 |
+
#: inc/biz_l.php:4873 inc/biz_s.php:2441
|
843 |
msgid "Resource #1"
|
844 |
msgstr ""
|
845 |
|
846 |
+
#: inc/biz_l.php:4874 inc/biz_l.php:4880
|
847 |
msgid "Presidential Suite"
|
848 |
msgstr ""
|
849 |
|
850 |
+
#: inc/biz_l.php:4874 inc/biz_s.php:2442
|
851 |
msgid "Resource #2"
|
852 |
msgstr ""
|
853 |
|
854 |
+
#: inc/biz_l.php:4875 inc/biz_l.php:4881 inc/multiuser.php:1521
|
855 |
msgid "Royal Villa"
|
856 |
msgstr ""
|
857 |
|
858 |
+
#: inc/biz_l.php:4875 inc/biz_s.php:2443
|
859 |
msgid "Resource #3"
|
860 |
msgstr ""
|
861 |
|
862 |
+
#: inc/biz_m.php:243
|
863 |
msgid "night(s)"
|
864 |
msgstr ""
|
865 |
|
866 |
+
#: inc/biz_m.php:254 inc/biz_s.php:117 inc/personal.php:4307 inc/personal.php:4321
|
867 |
+
#: inc/personal.php:4343 inc/personal.php:4359 inc/personal.php:4370 inc/personal.php:4389
|
868 |
msgid "Adults"
|
869 |
msgstr ""
|
870 |
|
871 |
+
#: inc/biz_m.php:254 inc/biz_s.php:117 inc/personal.php:4307 inc/personal.php:4321
|
872 |
+
#: inc/personal.php:4343 inc/personal.php:4360 inc/personal.php:4371 inc/personal.php:4390
|
873 |
msgid "Children"
|
874 |
msgstr ""
|
875 |
|
876 |
+
#: inc/biz_m.php:286 inc/biz_m.php:316 inc/biz_m.php:3178 inc/biz_m.php:3221 inc/biz_m.php:3263
|
877 |
msgid "per 1 day"
|
878 |
msgstr ""
|
879 |
|
880 |
+
#: inc/biz_m.php:287 inc/biz_m.php:317 inc/biz_m.php:3222 inc/biz_m.php:3262
|
881 |
msgid "from the cost of 1 day "
|
882 |
msgstr ""
|
883 |
|
884 |
+
#: inc/biz_m.php:288 inc/biz_m.php:318 inc/biz_m.php:3223 inc/biz_m.php:3264
|
885 |
#, php-format
|
886 |
msgid "Additional cost in %s per 1 day"
|
887 |
msgstr ""
|
888 |
|
889 |
+
#: inc/biz_m.php:289 inc/biz_m.php:319 inc/biz_m.php:320 inc/biz_m.php:3227 inc/biz_m.php:3228
|
890 |
+
#: inc/biz_m.php:3270 inc/biz_m.php:3271
|
891 |
msgid " for all days!"
|
892 |
msgstr ""
|
893 |
|
894 |
+
#: inc/biz_m.php:290
|
895 |
msgid "for all days!"
|
896 |
msgstr ""
|
897 |
|
898 |
+
#: inc/biz_m.php:880 inc/biz_m.php:885 inc/biz_m.php:4885 inc/biz_m.php:4891
|
899 |
msgid "Custom Form"
|
900 |
msgstr ""
|
901 |
|
902 |
+
#: inc/biz_m.php:895 inc/biz_m.php:4907
|
903 |
msgid "Load selected booking form"
|
904 |
msgstr ""
|
905 |
|
906 |
+
#: inc/biz_m.php:897 inc/biz_m.php:4909
|
907 |
msgid "Load"
|
908 |
msgstr ""
|
909 |
|
910 |
+
#: inc/biz_m.php:905
|
911 |
msgid "Delete selected booking form"
|
912 |
msgstr ""
|
913 |
|
914 |
+
#: inc/biz_m.php:908
|
915 |
msgid "Do you really want to delete selected booking form ?"
|
916 |
msgstr ""
|
917 |
|
918 |
+
#: inc/biz_m.php:915
|
919 |
msgid "Add new custom form"
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: inc/biz_m.php:916
|
923 |
msgid "Add New Custom Form"
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: inc/biz_m.php:921
|
927 |
msgid "Type the name of booking form"
|
928 |
msgstr ""
|
929 |
|
930 |
+
#: inc/biz_m.php:925
|
931 |
msgid "Create new form"
|
932 |
msgstr ""
|
933 |
|
934 |
+
#: inc/biz_m.php:928 inc/biz_m.php:3870 inc/biz_m.php:4118
|
935 |
msgid "Create"
|
936 |
msgstr ""
|
937 |
|
938 |
+
#: inc/biz_m.php:930
|
939 |
msgid "Delete form"
|
940 |
msgstr ""
|
941 |
|
942 |
+
#: inc/biz_m.php:934 inc/lib_p.php:467 inc/lib_p.php:507 inc/lib_p.php:540
|
943 |
#: lib/wpdev-bk-edit-toolbar-buttons.php:144
|
944 |
msgid "Cancel"
|
945 |
msgstr ""
|
946 |
|
947 |
+
#: inc/biz_m.php:964 inc/personal.php:513 lib/wpbc-ajax.php:274
|
948 |
msgid "Deleted"
|
949 |
msgstr ""
|
950 |
|
951 |
+
#: inc/biz_m.php:971
|
952 |
msgid "There are no extended booking forms"
|
953 |
msgstr ""
|
954 |
|
955 |
+
#: inc/biz_m.php:1090
|
956 |
msgid "Booking form type:"
|
957 |
msgstr ""
|
958 |
|
959 |
+
#: inc/biz_m.php:1097
|
960 |
msgid "Select type of booking form"
|
961 |
msgstr ""
|
962 |
|
963 |
+
#: inc/biz_m.php:1131
|
964 |
msgid "Booking Form"
|
965 |
msgstr ""
|
966 |
|
967 |
+
#: inc/biz_m.php:1211
|
968 |
msgid "Standard booking resource cost"
|
969 |
msgstr ""
|
970 |
|
971 |
+
#: inc/biz_m.php:1212
|
972 |
msgid "Total booking resource cost"
|
973 |
msgstr ""
|
974 |
|
975 |
+
#: inc/biz_m.php:1583
|
976 |
#, php-format
|
977 |
msgid ""
|
978 |
"%s - show cost hint for full booking in real time, depending on number of days selected and form "
|
979 |
"elements."
|
980 |
msgstr ""
|
981 |
|
982 |
+
#: inc/biz_m.php:1584
|
983 |
#, php-format
|
984 |
msgid "Example: %sThe full cost of payment: %s"
|
985 |
msgstr ""
|
986 |
|
987 |
+
#: inc/biz_m.php:1585
|
988 |
#, php-format
|
989 |
msgid ""
|
990 |
"%s - show hint of original booking cost without additional costs for full booking in real time, "
|
991 |
"depends only from days selection."
|
992 |
msgstr ""
|
993 |
|
994 |
+
#: inc/biz_m.php:1586
|
995 |
#, php-format
|
996 |
msgid "Example: %sThe original cost for payment: %s "
|
997 |
msgstr ""
|
998 |
|
999 |
+
#: inc/biz_m.php:1587
|
1000 |
#, php-format
|
1001 |
msgid ""
|
1002 |
"%s - show cost hint of additional booking cost, which depends from selection of form elements."
|
1003 |
msgstr ""
|
1004 |
|
1005 |
+
#: inc/biz_m.php:1588
|
1006 |
#, php-format
|
1007 |
msgid "Example: %sThe additional cost for payment: %s "
|
1008 |
msgstr ""
|
1009 |
|
1010 |
+
#: inc/biz_m.php:1589
|
1011 |
#, php-format
|
1012 |
msgid "%s - enter direct cost at admin panel at page: "
|
1013 |
msgstr ""
|
1014 |
|
1015 |
+
#: inc/biz_m.php:1589 lib/wpdev-booking-class.php:653 lib/wpdev-booking-class.php:720
|
1016 |
+
#: lib/wpdev-settings-general.php:1213
|
1017 |
msgid "Add booking"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
+
#: inc/biz_m.php:1590
|
1021 |
#, php-format
|
1022 |
msgid "Example: %s"
|
1023 |
msgstr ""
|
1024 |
|
1025 |
+
#: inc/biz_m.php:2241 lib/wpdev-booking-functions.php:392
|
1026 |
msgid "yes"
|
1027 |
msgstr ""
|
1028 |
|
1029 |
+
#: inc/biz_m.php:2444 inc/biz_m.php:2448
|
1030 |
msgid "Setting rate or cost, which is depend from number of selected days for the resource"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
+
#: inc/biz_m.php:2445 inc/biz_m.php:2482 inc/biz_m.php:2793
|
1034 |
msgid "Rates"
|
1035 |
msgstr ""
|
1036 |
|
1037 |
+
#: inc/biz_m.php:2445 inc/biz_m.php:2487 inc/biz_m.php:2491
|
1038 |
msgid "Valuation days"
|
1039 |
msgstr ""
|
1040 |
|
1041 |
+
#: inc/biz_m.php:2445 inc/payments/authorizenet.php:444 inc/payments/ipay88.php:454
|
1042 |
#: inc/payments/paypal.php:766 inc/payments/sage.php:551
|
1043 |
msgid "Deposit"
|
1044 |
msgstr ""
|
1045 |
|
1046 |
+
#: inc/biz_m.php:2453
|
1047 |
msgid "Setting the default form for the specific resource"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
+
#: inc/biz_m.php:2454
|
1051 |
msgid "Default Form"
|
1052 |
msgstr ""
|
1053 |
|
1054 |
+
#: inc/biz_m.php:2490
|
1055 |
msgid "Set the cost based on the number of days selected for the reservation"
|
1056 |
msgstr ""
|
1057 |
|
1058 |
+
#: inc/biz_m.php:2491
|
1059 |
msgid "Activation of this feature is require setting cost per day or cost per night"
|
1060 |
msgstr ""
|
1061 |
|
1062 |
+
#: inc/biz_m.php:2498 inc/biz_m.php:3520
|
1063 |
msgid "Deposit amount"
|
1064 |
msgstr ""
|
1065 |
|
1066 |
+
#: inc/biz_m.php:2634 inc/biz_m.php:2645 inc/biz_m.php:2650
|
1067 |
msgid "unavailable"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
+
#: inc/biz_m.php:2635 inc/biz_m.php:2646 inc/biz_m.php:2649
|
1071 |
msgid "available"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
+
#: inc/biz_m.php:2637
|
1075 |
msgid "Availability booking type"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
+
#: inc/biz_m.php:2642
|
1079 |
#, php-format
|
1080 |
msgid "All days for %s"
|
1081 |
msgstr ""
|
1082 |
|
1083 |
+
#: inc/biz_m.php:2652
|
1084 |
#, php-format
|
1085 |
msgid "Select %s days by activating specific season filter below or %sadd new season filter%s"
|
1086 |
msgstr ""
|
1087 |
|
1088 |
+
#: inc/biz_m.php:2663 inc/biz_m.php:2685 inc/biz_m.php:4428 inc/biz_m.php:4449
|
1089 |
msgid "Season Filter Name"
|
1090 |
msgstr ""
|
1091 |
|
1092 |
+
#: inc/biz_m.php:2664 inc/biz_m.php:2686 inc/biz_m.php:2796 inc/biz_m.php:2867 inc/biz_m.php:4450
|
1093 |
#: inc/form/class-wpbc-form-help.php:418 inc/form/class-wpbc-form-help.php:564
|
1094 |
#: inc/payments/bank-transfer.php:302 inc/payments/pay-cash.php:90
|
1095 |
#: lib/wpdev-bk-edit-toolbar-buttons.php:485 lib/wpdev-bk-edit-toolbar-buttons.php:493
|
1096 |
msgid "Description"
|
1097 |
msgstr ""
|
1098 |
|
1099 |
+
#: inc/biz_m.php:2682 inc/biz_m.php:2823 inc/biz_m.php:3151 inc/biz_m.php:3202 inc/biz_m.php:3332
|
1100 |
+
#: inc/biz_m.php:3513 inc/biz_s.php:866 inc/payments/authorizenet.php:107
|
1101 |
#: inc/payments/paypal.php:191 inc/payments/paypal.php:211 inc/payments/paypal.php:232
|
1102 |
+
#: inc/personal.php:3724 inc/personal.php:3806 inc/personal.php:3877 inc/personal.php:3963
|
1103 |
+
#: inc/personal.php:4053 inc/sync/wpbc-sync-gcal-api.php:91 lib/wpdev-settings-general.php:1533
|
1104 |
+
#: lib/wpdev-settings-general.php:1576 lib/wpdev-settings-general.php:1621
|
1105 |
+
#: lib/wpdev-settings-general.php:1667 lib/wpdev-settings-general.php:1721
|
1106 |
+
#: lib/wpdev-settings-general.php:1764 lib/wpdev-settings-general.php:1997
|
1107 |
+
#: lib/wpdev-settings-general.php:2078 lib/wpdev-settings-general.php:2150
|
1108 |
+
#: lib/wpdev-settings-general.php:2238
|
1109 |
msgid "Active"
|
1110 |
msgstr ""
|
1111 |
|
1112 |
+
#: inc/biz_m.php:2685 inc/biz_m.php:2866
|
1113 |
msgid "Edit season filter"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#: inc/biz_m.php:2773
|
1117 |
msgid "Seasonal rates of booking resource"
|
1118 |
msgstr ""
|
1119 |
|
1120 |
+
#: inc/biz_m.php:2779
|
1121 |
#, php-format
|
1122 |
msgid ""
|
1123 |
"Enter seasonal rate(s) (cost diference in %s from standard cost %s or a fixed cost) of the "
|
1124 |
"booking resource (%s) or %sAdd a new seasonal filter%s"
|
1125 |
msgstr ""
|
1126 |
|
1127 |
+
#: inc/biz_m.php:2794 inc/biz_m.php:2847
|
1128 |
msgid "Final cost"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
+
#: inc/biz_m.php:2795
|
1132 |
msgid "Season Filter"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
+
#: inc/biz_m.php:2828
|
1136 |
msgid "Rate"
|
1137 |
msgstr ""
|
1138 |
|
1139 |
+
#: inc/biz_m.php:2837 inc/biz_m.php:2857 inc/biz_s.php:2019
|
1140 |
msgid "for 1 day"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
+
#: inc/biz_m.php:2838 inc/biz_m.php:2858 inc/biz_s.php:2020
|
1144 |
msgid "for 1 night"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
+
#: inc/biz_m.php:2839 inc/biz_m.php:2859
|
1148 |
msgid "fixed deposit"
|
1149 |
msgstr ""
|
1150 |
|
1151 |
+
#: inc/biz_m.php:2840 inc/biz_m.php:2860 inc/biz_s.php:2022
|
1152 |
msgid "for 1 hour"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
+
#: inc/biz_m.php:2866 inc/biz_m.php:3860 inc/biz_m.php:4108
|
1156 |
msgid "Filter Name"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
+
#: inc/biz_m.php:2874 inc/biz_m.php:3114 inc/biz_m.php:3609 inc/payments/authorizenet.php:340
|
1160 |
msgid "Note!"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: inc/biz_m.php:2874
|
1164 |
msgid "Check boxe(s) at left side if you want to activate specific cost."
|
1165 |
msgstr ""
|
1166 |
|
1167 |
+
#: inc/biz_m.php:2878
|
1168 |
msgid "Update Rates"
|
1169 |
msgstr ""
|
1170 |
|
1171 |
+
#: inc/biz_m.php:3113
|
1172 |
msgid "Set cost of booking resource based on the number of days selected"
|
1173 |
msgstr ""
|
1174 |
|
1175 |
+
#: inc/biz_m.php:3114
|
1176 |
#, php-format
|
1177 |
msgid "If you add costs here, %srates%s for this booking resource will not take effect !!!"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
+
#: inc/biz_m.php:3118
|
1181 |
#, php-format
|
1182 |
msgid ""
|
1183 |
"Cost setings at %stop have higher priority%s than other costs of same type at the %sbottom%s of "
|
1184 |
"the list."
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: inc/biz_m.php:3119
|
1188 |
#, php-format
|
1189 |
msgid ""
|
1190 |
"Please create all %s terms firstly %s(from higher priority to lower)%s, then terms %s and after "
|
1191 |
"terms %s"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
+
#: inc/biz_m.php:3119 inc/biz_m.php:3121 inc/biz_m.php:3234 inc/biz_m.php:3345
|
1195 |
msgid "Together"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
+
#: inc/biz_m.php:3119 inc/biz_m.php:3121 inc/biz_m.php:3158 inc/biz_m.php:3232 inc/biz_m.php:3343
|
1199 |
msgid "For"
|
1200 |
msgstr ""
|
1201 |
|
1202 |
+
#: inc/biz_m.php:3119 inc/biz_m.php:3121 inc/biz_m.php:3233 inc/biz_m.php:3344 inc/biz_m.php:3690
|
1203 |
+
#: inc/biz_s.php:887 inc/personal.php:3737 inc/personal.php:3812 inc/personal.php:3897
|
1204 |
+
#: inc/personal.php:3984 inc/personal.php:4074 lib/wpbc-gcal.php:581
|
1205 |
+
#: lib/wpdev-settings-general.php:2010 lib/wpdev-settings-general.php:2084
|
1206 |
+
#: lib/wpdev-settings-general.php:2170 lib/wpdev-settings-general.php:2259
|
1207 |
msgid "From"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
+
#: inc/biz_m.php:3119 inc/biz_m.php:3121 inc/personal.php:3730 lib/wpdev-settings-general.php:2003
|
1211 |
msgid "To"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
+
#: inc/biz_m.php:3121
|
1215 |
#, php-format
|
1216 |
msgid "%s and %s terms have higher priority than a range %s days."
|
1217 |
msgstr ""
|
1218 |
|
1219 |
+
#: inc/biz_m.php:3124 lib/wpbc-gcal.php:853 lib/wpbc-notices.php:25
|
1220 |
msgid "Warning!"
|
1221 |
msgstr ""
|
1222 |
|
1223 |
+
#: inc/biz_m.php:3125
|
1224 |
msgid ""
|
1225 |
"Specific cost will take affect, only if it active (the box at the left side is checked) and if "
|
1226 |
"\"Check In\" (start) date belong to selected season filter or if set \"Any days\"."
|
1227 |
msgstr ""
|
1228 |
|
1229 |
+
#: inc/biz_m.php:3134
|
1230 |
msgid "Number of Days"
|
1231 |
msgstr ""
|
1232 |
|
1233 |
+
#: inc/biz_m.php:3135
|
1234 |
msgid "Cost Settings"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
+
#: inc/biz_m.php:3136 inc/biz_m.php:3183 inc/biz_m.php:3280 inc/biz_m.php:3374
|
1238 |
msgid "Season Filter of Check In date"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
+
#: inc/biz_m.php:3160 inc/biz_m.php:3236 inc/biz_m.php:3348
|
1242 |
msgid "Day Number(s)"
|
1243 |
msgstr ""
|
1244 |
|
1245 |
+
#: inc/biz_m.php:3166 inc/biz_m.php:3242 inc/biz_m.php:3354 inc/biz_m.php:3690
|
1246 |
msgid "to"
|
1247 |
msgstr ""
|
1248 |
|
1249 |
+
#: inc/biz_m.php:3170 inc/biz_m.php:3248 inc/biz_s.php:2190 lib/wpbc-gcal.php:805
|
1250 |
+
#: lib/wpdev-bk-lib.php:299 lib/wpdev-settings-general.php:2359
|
1251 |
msgid "day"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
+
#: inc/biz_m.php:3174 inc/biz_m.php:3255 inc/biz_m.php:3364 inc/biz_s.php:347 inc/biz_s.php:381
|
1255 |
#: inc/lib_p.php:376 inc/lib_s.php:282 inc/lib_s.php:304 inc/lib_s.php:309
|
1256 |
#: inc/payments/authorizenet.php:445 inc/payments/ipay88.php:455 inc/payments/paypal.php:767
|
1257 |
+
#: inc/payments/sage.php:552 lib/wpdev-settings-general.php:866 lib/wpdev-settings-general.php:867
|
1258 |
msgid "Cost"
|
1259 |
msgstr ""
|
1260 |
|
1261 |
+
#: inc/biz_m.php:3185 inc/biz_m.php:3282 inc/biz_m.php:3376 inc/biz_m.php:3563
|
1262 |
msgid "Any days"
|
1263 |
msgstr ""
|
1264 |
|
1265 |
+
#: inc/biz_m.php:3293 inc/biz_m.php:3387
|
|
|
|
|
|
|
|
|
|
|
|
|
1266 |
msgid "Remove"
|
1267 |
msgstr ""
|
1268 |
|
1269 |
+
#: inc/biz_m.php:3306
|
1270 |
msgid "Add new cost"
|
1271 |
msgstr ""
|
1272 |
|
1273 |
+
#: inc/biz_m.php:3486
|
|
|
|
|
|
|
|
|
1274 |
msgid "Set amount of deposit payment"
|
1275 |
msgstr ""
|
1276 |
|
1277 |
+
#: inc/biz_m.php:3495
|
1278 |
msgid "Deposit payment total"
|
1279 |
msgstr ""
|
1280 |
|
1281 |
+
#: inc/biz_m.php:3498
|
1282 |
msgid "Deposit payment is not active for booking resource"
|
1283 |
msgstr ""
|
1284 |
|
1285 |
+
#: inc/biz_m.php:3505 inc/biz_s.php:857 inc/personal.php:3715 inc/personal.php:3797
|
1286 |
+
#: inc/personal.php:3868 inc/personal.php:3955 inc/personal.php:4044
|
1287 |
+
#: inc/sync/wpbc-sync-gcal-api.php:82 lib/wpdev-bk-lib.php:1568 lib/wpdev-settings-general.php:1988
|
1288 |
+
#: lib/wpdev-settings-general.php:2069 lib/wpdev-settings-general.php:2141
|
1289 |
+
#: lib/wpdev-settings-general.php:2230
|
1290 |
msgid "Status"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#: inc/biz_m.php:3514
|
1294 |
msgid "deposit payment for booking resource"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
+
#: inc/biz_m.php:3529
|
1298 |
msgid "fixed total in"
|
1299 |
msgstr ""
|
1300 |
|
1301 |
+
#: inc/biz_m.php:3530
|
1302 |
msgid "of payment"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
+
#: inc/biz_m.php:3536
|
1306 |
msgid "Conditions"
|
1307 |
msgstr ""
|
1308 |
|
1309 |
+
#: inc/biz_m.php:3539
|
1310 |
#, php-format
|
1311 |
msgid ""
|
1312 |
"Show deposit payment form, only if difference between %sToday%s and %sCheck In%s days more than"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
+
#: inc/biz_m.php:3560
|
1316 |
#, php-format
|
1317 |
msgid "Show deposit payment form, only if %sCheck In%s day inside of this %sSeason Filter%s"
|
1318 |
msgstr ""
|
1319 |
|
1320 |
+
#: inc/biz_m.php:3579
|
1321 |
msgid "Update Deposit"
|
1322 |
msgstr ""
|
1323 |
|
1324 |
+
#: inc/biz_m.php:3603
|
1325 |
msgid "Deposit payment"
|
1326 |
msgstr ""
|
1327 |
|
1328 |
+
#: inc/biz_m.php:3608
|
1329 |
#, php-format
|
1330 |
msgid ""
|
1331 |
"Check this box if you want to use the %sdeposit%s total %spayment%s on the payment form, instead "
|
1332 |
"of the full total of the booking."
|
1333 |
msgstr ""
|
1334 |
|
1335 |
+
#: inc/biz_m.php:3609
|
1336 |
#, php-format
|
1337 |
msgid " You can configure the deposit payment for your booking resources %shere%s."
|
1338 |
msgstr ""
|
1339 |
|
1340 |
+
#: inc/biz_m.php:3627 inc/biz_m.php:3907 lib/wpdev-bk-timeline.php:116
|
1341 |
#: lib/wpdev-bk-timeline.php:153
|
1342 |
msgid "Su"
|
1343 |
msgstr ""
|
1344 |
|
1345 |
+
#: inc/biz_m.php:3627 inc/biz_m.php:3907
|
1346 |
msgid "Mo"
|
1347 |
msgstr ""
|
1348 |
|
1349 |
+
#: inc/biz_m.php:3627 inc/biz_m.php:3907 lib/wpdev-bk-timeline.php:116
|
1350 |
#: lib/wpdev-bk-timeline.php:153
|
1351 |
msgid "Tu"
|
1352 |
msgstr ""
|
1353 |
|
1354 |
+
#: inc/biz_m.php:3627 inc/biz_m.php:3907
|
1355 |
msgid "We"
|
1356 |
msgstr ""
|
1357 |
|
1358 |
+
#: inc/biz_m.php:3627 inc/biz_m.php:3907 lib/wpdev-bk-timeline.php:116
|
1359 |
#: lib/wpdev-bk-timeline.php:153
|
1360 |
msgid "Th"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
+
#: inc/biz_m.php:3627 inc/biz_m.php:3907
|
1364 |
msgid "Fr"
|
1365 |
msgstr ""
|
1366 |
|
1367 |
+
#: inc/biz_m.php:3627 inc/biz_m.php:3907 lib/wpdev-bk-timeline.php:116
|
1368 |
#: lib/wpdev-bk-timeline.php:153
|
1369 |
msgid "Sa"
|
1370 |
msgstr ""
|
1371 |
|
1372 |
+
#: inc/biz_m.php:3628
|
1373 |
msgid "Jan"
|
1374 |
msgstr ""
|
1375 |
|
1376 |
+
#: inc/biz_m.php:3628
|
1377 |
msgid "Feb"
|
1378 |
msgstr ""
|
1379 |
|
1380 |
+
#: inc/biz_m.php:3628
|
1381 |
msgid "Mar"
|
1382 |
msgstr ""
|
1383 |
|
1384 |
+
#: inc/biz_m.php:3628
|
1385 |
msgid "Apr"
|
1386 |
msgstr ""
|
1387 |
|
1388 |
+
#: inc/biz_m.php:3628 inc/biz_m.php:4283
|
1389 |
msgid "May"
|
1390 |
msgstr ""
|
1391 |
|
1392 |
+
#: inc/biz_m.php:3628
|
1393 |
msgid "Jun"
|
1394 |
msgstr ""
|
1395 |
|
1396 |
+
#: inc/biz_m.php:3628
|
1397 |
msgid "Jul"
|
1398 |
msgstr ""
|
1399 |
|
1400 |
+
#: inc/biz_m.php:3628
|
1401 |
msgid "Aug"
|
1402 |
msgstr ""
|
1403 |
|
1404 |
+
#: inc/biz_m.php:3628
|
1405 |
msgid "Sep"
|
1406 |
msgstr ""
|
1407 |
|
1408 |
+
#: inc/biz_m.php:3628
|
1409 |
msgid "Oct"
|
1410 |
msgstr ""
|
1411 |
|
1412 |
+
#: inc/biz_m.php:3628
|
1413 |
msgid "Nov"
|
1414 |
msgstr ""
|
1415 |
|
1416 |
+
#: inc/biz_m.php:3628
|
1417 |
msgid "Dec"
|
1418 |
msgstr ""
|
1419 |
|
1420 |
+
#: inc/biz_m.php:3687 inc/biz_m.php:3706 inc/biz_m.php:3726 inc/biz_m.php:3747 inc/biz_m.php:3764
|
1421 |
msgid "No days"
|
1422 |
msgstr ""
|
1423 |
|
1424 |
+
#: inc/biz_m.php:3690
|
1425 |
msgid "time"
|
1426 |
msgstr ""
|
1427 |
|
1428 |
+
#: inc/biz_m.php:3708
|
1429 |
msgid "Every"
|
1430 |
msgstr ""
|
1431 |
|
1432 |
+
#: inc/biz_m.php:3723
|
1433 |
msgid "Each day "
|
1434 |
msgstr ""
|
1435 |
|
1436 |
+
#: inc/biz_m.php:3724
|
1437 |
msgid "on each day "
|
1438 |
msgstr ""
|
1439 |
|
1440 |
+
#: inc/biz_m.php:3728
|
1441 |
msgid "On each "
|
1442 |
msgstr ""
|
1443 |
|
1444 |
+
#: inc/biz_m.php:3729
|
1445 |
msgid "on each "
|
1446 |
msgstr ""
|
1447 |
|
1448 |
+
#: inc/biz_m.php:3745
|
1449 |
msgid "of every month "
|
1450 |
msgstr ""
|
1451 |
|
1452 |
+
#: inc/biz_m.php:3749
|
1453 |
msgid "of"
|
1454 |
msgstr ""
|
1455 |
|
1456 |
+
#: inc/biz_m.php:3818 inc/biz_m.php:4057
|
1457 |
msgid "Filter saved"
|
1458 |
msgstr ""
|
1459 |
|
1460 |
+
#: inc/biz_m.php:3854
|
1461 |
msgid "Specific Dates Filter"
|
1462 |
msgstr ""
|
1463 |
|
1464 |
+
#: inc/biz_m.php:3863 inc/biz_m.php:4111
|
1465 |
msgid "Type filter name"
|
1466 |
msgstr ""
|
1467 |
|
1468 |
+
#: inc/biz_m.php:3868 inc/biz_m.php:3974 inc/biz_m.php:4116 inc/biz_m.php:4375
|
1469 |
msgid "Create new season filter"
|
1470 |
msgstr ""
|
1471 |
|
1472 |
+
#: inc/biz_m.php:3974 inc/biz_m.php:4375
|
1473 |
msgid "Create New Season Filter"
|
1474 |
msgstr ""
|
1475 |
|
1476 |
+
#: inc/biz_m.php:3974 inc/biz_m.php:4375
|
1477 |
msgid "Save changes"
|
1478 |
msgstr ""
|
1479 |
|
1480 |
+
#: inc/biz_m.php:4102
|
1481 |
msgid "Conditional Dates Filter"
|
1482 |
msgstr ""
|
1483 |
|
1484 |
+
#: inc/biz_m.php:4136
|
1485 |
msgid "Days of week"
|
1486 |
msgstr ""
|
1487 |
|
1488 |
+
#: inc/biz_m.php:4144 inc/biz_s.php:1767 inc/biz_s.php:1856 inc/form/class-wpbc-form-help.php:451
|
1489 |
#: inc/form/class-wpbc-form-help.php:597 lib/wpdev-bk-timeline.php:110
|
1490 |
#: lib/wpdev-bk-timeline.php:134 lib/wpdev-bk-timeline.php:135 lib/wpdev-bk-timeline.php:140
|
1491 |
+
#: lib/wpdev-bk-timeline.php:463 lib/wpdev-bk-timeline.php:498 lib/wpdev-settings-general.php:464
|
1492 |
+
#: lib/wpdev-settings-general.php:554
|
1493 |
msgid "Sunday"
|
1494 |
msgstr ""
|
1495 |
|
1496 |
+
#: inc/biz_m.php:4150 inc/biz_s.php:1769 inc/biz_s.php:1860 inc/form/class-wpbc-form-help.php:452
|
1497 |
#: inc/form/class-wpbc-form-help.php:598 lib/wpdev-bk-timeline.php:110
|
1498 |
#: lib/wpdev-bk-timeline.php:134 lib/wpdev-bk-timeline.php:135 lib/wpdev-bk-timeline.php:140
|
1499 |
+
#: lib/wpdev-bk-timeline.php:463 lib/wpdev-bk-timeline.php:498 lib/wpdev-settings-general.php:465
|
1500 |
+
#: lib/wpdev-settings-general.php:558
|
1501 |
msgid "Monday"
|
1502 |
msgstr ""
|
1503 |
|
1504 |
+
#: inc/biz_m.php:4156 inc/biz_s.php:1771 inc/biz_s.php:1864 inc/form/class-wpbc-form-help.php:453
|
1505 |
#: inc/form/class-wpbc-form-help.php:599 lib/wpdev-bk-timeline.php:110
|
1506 |
#: lib/wpdev-bk-timeline.php:134 lib/wpdev-bk-timeline.php:135 lib/wpdev-bk-timeline.php:140
|
1507 |
+
#: lib/wpdev-bk-timeline.php:463 lib/wpdev-bk-timeline.php:498 lib/wpdev-settings-general.php:466
|
1508 |
+
#: lib/wpdev-settings-general.php:562
|
1509 |
msgid "Tuesday"
|
1510 |
msgstr ""
|
1511 |
|
1512 |
+
#: inc/biz_m.php:4162 inc/biz_s.php:1773 inc/biz_s.php:1868 inc/form/class-wpbc-form-help.php:454
|
1513 |
#: inc/form/class-wpbc-form-help.php:600 lib/wpdev-bk-timeline.php:110
|
1514 |
#: lib/wpdev-bk-timeline.php:134 lib/wpdev-bk-timeline.php:135 lib/wpdev-bk-timeline.php:140
|
1515 |
+
#: lib/wpdev-bk-timeline.php:463 lib/wpdev-bk-timeline.php:498 lib/wpdev-settings-general.php:467
|
1516 |
+
#: lib/wpdev-settings-general.php:566
|
1517 |
msgid "Wednesday"
|
1518 |
msgstr ""
|
1519 |
|
1520 |
+
#: inc/biz_m.php:4168 inc/biz_s.php:1775 inc/biz_s.php:1872 inc/form/class-wpbc-form-help.php:455
|
1521 |
#: inc/form/class-wpbc-form-help.php:601 lib/wpdev-bk-timeline.php:110
|
1522 |
#: lib/wpdev-bk-timeline.php:134 lib/wpdev-bk-timeline.php:135 lib/wpdev-bk-timeline.php:140
|
1523 |
+
#: lib/wpdev-bk-timeline.php:463 lib/wpdev-bk-timeline.php:498 lib/wpdev-settings-general.php:468
|
1524 |
+
#: lib/wpdev-settings-general.php:570
|
1525 |
msgid "Thursday"
|
1526 |
msgstr ""
|
1527 |
|
1528 |
+
#: inc/biz_m.php:4174 inc/biz_s.php:1777 inc/biz_s.php:1876 inc/form/class-wpbc-form-help.php:456
|
1529 |
#: inc/form/class-wpbc-form-help.php:602 lib/wpdev-bk-timeline.php:110
|
1530 |
#: lib/wpdev-bk-timeline.php:134 lib/wpdev-bk-timeline.php:135 lib/wpdev-bk-timeline.php:140
|
1531 |
+
#: lib/wpdev-bk-timeline.php:463 lib/wpdev-bk-timeline.php:498 lib/wpdev-settings-general.php:469
|
1532 |
+
#: lib/wpdev-settings-general.php:574
|
1533 |
msgid "Friday"
|
1534 |
msgstr ""
|
1535 |
|
1536 |
+
#: inc/biz_m.php:4180 inc/biz_s.php:1779 inc/biz_s.php:1880 inc/form/class-wpbc-form-help.php:457
|
1537 |
#: inc/form/class-wpbc-form-help.php:603 lib/wpdev-bk-timeline.php:110
|
1538 |
#: lib/wpdev-bk-timeline.php:134 lib/wpdev-bk-timeline.php:135 lib/wpdev-bk-timeline.php:140
|
1539 |
+
#: lib/wpdev-bk-timeline.php:463 lib/wpdev-bk-timeline.php:498 lib/wpdev-settings-general.php:470
|
1540 |
+
#: lib/wpdev-settings-general.php:578
|
1541 |
msgid "Saturday"
|
1542 |
msgstr ""
|
1543 |
|
1544 |
+
#: inc/biz_m.php:4192
|
1545 |
msgid "Days of month"
|
1546 |
msgstr ""
|
1547 |
|
1548 |
+
#: inc/biz_m.php:4272
|
1549 |
msgid "Months"
|
1550 |
msgstr ""
|
1551 |
|
1552 |
+
#: inc/biz_m.php:4279
|
1553 |
msgid "January"
|
1554 |
msgstr ""
|
1555 |
|
1556 |
+
#: inc/biz_m.php:4280
|
1557 |
msgid "February"
|
1558 |
msgstr ""
|
1559 |
|
1560 |
+
#: inc/biz_m.php:4281
|
1561 |
msgid "March"
|
1562 |
msgstr ""
|
1563 |
|
1564 |
+
#: inc/biz_m.php:4282
|
1565 |
msgid "April"
|
1566 |
msgstr ""
|
1567 |
|
1568 |
+
#: inc/biz_m.php:4284
|
1569 |
msgid "June"
|
1570 |
msgstr ""
|
1571 |
|
1572 |
+
#: inc/biz_m.php:4303
|
1573 |
msgid "July"
|
1574 |
msgstr ""
|
1575 |
|
1576 |
+
#: inc/biz_m.php:4304
|
1577 |
msgid "August"
|
1578 |
msgstr ""
|
1579 |
|
1580 |
+
#: inc/biz_m.php:4305
|
1581 |
msgid "September"
|
1582 |
msgstr ""
|
1583 |
|
1584 |
+
#: inc/biz_m.php:4306
|
1585 |
msgid "October"
|
1586 |
msgstr ""
|
1587 |
|
1588 |
+
#: inc/biz_m.php:4307
|
1589 |
msgid "November"
|
1590 |
msgstr ""
|
1591 |
|
1592 |
+
#: inc/biz_m.php:4308
|
1593 |
msgid "December"
|
1594 |
msgstr ""
|
1595 |
|
1596 |
+
#: inc/biz_m.php:4332
|
1597 |
msgid "Years"
|
1598 |
msgstr ""
|
1599 |
|
1600 |
+
#: inc/biz_m.php:4402
|
1601 |
msgid "Filter deleted successfully"
|
1602 |
msgstr ""
|
1603 |
|
1604 |
+
#: inc/biz_m.php:4410
|
1605 |
msgid "Create dates filter"
|
1606 |
msgstr ""
|
1607 |
|
1608 |
+
#: inc/biz_m.php:4413
|
1609 |
msgid "Create conditional days filter"
|
1610 |
msgstr ""
|
1611 |
|
1612 |
+
#: inc/biz_m.php:4422
|
1613 |
msgid "Listing of season filters"
|
1614 |
msgstr ""
|
1615 |
|
1616 |
+
#: inc/biz_m.php:4429
|
1617 |
msgid "Filters"
|
1618 |
msgstr ""
|
1619 |
|
1620 |
+
#: inc/biz_m.php:4458
|
1621 |
msgid "Do you really want to delete?"
|
1622 |
msgstr ""
|
1623 |
|
1624 |
+
#: inc/biz_m.php:4496
|
1625 |
msgid "Limit available days from today"
|
1626 |
msgstr ""
|
1627 |
|
1628 |
+
#: inc/biz_m.php:4507
|
1629 |
msgid "Select number of available days in calendar start from today."
|
1630 |
msgstr ""
|
1631 |
|
1632 |
+
#: inc/biz_m.php:4520
|
1633 |
+
msgid "Unavailable time before / after booking"
|
1634 |
+
msgstr ""
|
1635 |
+
|
1636 |
+
#: inc/biz_m.php:4529 inc/personal.php:358 inc/wpbc-booking-select-widget.php:183
|
1637 |
+
#: lib/wpbc-gcal.php:516 lib/wpbc-gcal.php:929
|
1638 |
+
msgid "None"
|
1639 |
+
msgstr ""
|
1640 |
+
|
1641 |
+
#: inc/biz_m.php:4537 inc/biz_m.php:4567 inc/biz_m.php:4571 inc/biz_m.php:4596 inc/biz_m.php:4600
|
1642 |
+
#: lib/wpbc-gcal.php:616 lib/wpbc-gcal.php:680
|
1643 |
+
msgid "minutes"
|
1644 |
+
msgstr ""
|
1645 |
+
|
1646 |
+
#: inc/biz_m.php:4537 inc/biz_m.php:4575 inc/biz_m.php:4604 inc/biz_s.php:2187
|
1647 |
+
#: lib/wpbc-gcal.php:617 lib/wpbc-gcal.php:681 lib/wpbc-gcal.php:802
|
1648 |
+
msgid "hours"
|
1649 |
+
msgstr ""
|
1650 |
+
|
1651 |
+
#: inc/biz_m.php:4550
|
1652 |
+
msgid ""
|
1653 |
+
"This feature is appling only for bookings for specific timeslots, or if activated check in/out "
|
1654 |
+
"time option."
|
1655 |
+
msgstr ""
|
1656 |
+
|
1657 |
+
#: inc/biz_m.php:4558 inc/biz_m.php:4617
|
1658 |
+
msgid "Before booking"
|
1659 |
+
msgstr ""
|
1660 |
+
|
1661 |
+
#: inc/biz_m.php:4569 inc/biz_m.php:4571 inc/biz_m.php:4598 inc/biz_m.php:4600 inc/biz_s.php:2184
|
1662 |
+
#: lib/wpbc-gcal.php:799
|
1663 |
+
msgid "hour"
|
1664 |
+
msgstr ""
|
1665 |
+
|
1666 |
+
#: inc/biz_m.php:4582 inc/biz_m.php:4611 inc/biz_m.php:4633 inc/biz_m.php:4654
|
1667 |
+
msgid "Select unavailbale time interval."
|
1668 |
+
msgstr ""
|
1669 |
+
|
1670 |
+
#: inc/biz_m.php:4587 inc/biz_m.php:4638
|
1671 |
+
msgid "After booking"
|
1672 |
+
msgstr ""
|
1673 |
+
|
1674 |
+
#: inc/biz_m.php:4687 lib/wpbc-gcal-class.php:635 lib/wpbc-notices.php:104
|
1675 |
+
#: lib/wpdev-settings-general.php:970 lib/wpdev-settings-general.php:1655
|
1676 |
msgid "Hide"
|
1677 |
msgstr ""
|
1678 |
|
1679 |
+
#: inc/biz_m.php:4688
|
1680 |
msgid "Showing cost in date cell"
|
1681 |
msgstr ""
|
1682 |
|
1683 |
+
#: inc/biz_m.php:4699
|
1684 |
#, php-format
|
1685 |
msgid " Check this box to display the %sdaily cost at the date cells%s in the calendar(s)."
|
1686 |
msgstr ""
|
1687 |
|
1688 |
+
#: inc/biz_m.php:4707
|
1689 |
msgid "Currency symbol"
|
1690 |
msgstr ""
|
1691 |
|
1692 |
+
#: inc/biz_m.php:4731 inc/biz_s.php:1613 lib/wpdev-bk-lib.php:562 lib/wpdev-bk-lib.php:612
|
1693 |
+
#: lib/wpdev-settings-general.php:904
|
1694 |
msgid "Custom"
|
1695 |
msgstr ""
|
1696 |
|
1697 |
+
#: inc/biz_m.php:4736
|
1698 |
#, php-format
|
1699 |
msgid ""
|
1700 |
"Type your %scurrency symbol%s to display near daily cost in date cells. %sDocumentation on "
|
1701 |
"currency symbols%s"
|
1702 |
msgstr ""
|
1703 |
|
1704 |
+
#: inc/biz_m.php:4748
|
1705 |
msgid "Showing cost in tooltip"
|
1706 |
msgstr ""
|
1707 |
|
1708 |
+
#: inc/biz_m.php:4759
|
1709 |
msgid ""
|
1710 |
" Check this box to display the daily cost with a tooltip when mouse hovers over each day on the "
|
1711 |
"calendar(s)."
|
1712 |
msgstr ""
|
1713 |
|
1714 |
+
#: inc/biz_m.php:4767
|
1715 |
msgid "Cost Title"
|
1716 |
msgstr ""
|
1717 |
|
1718 |
+
#: inc/biz_m.php:4769
|
1719 |
#, php-format
|
1720 |
msgid "Type your %scost%s description"
|
1721 |
msgstr ""
|
1722 |
|
1723 |
+
#: inc/biz_m.php:4922
|
1724 |
msgid "Advanced cost management"
|
1725 |
msgstr ""
|
1726 |
|
1727 |
+
#: inc/biz_m.php:4947
|
1728 |
msgid "Configure Additional cost for the form"
|
1729 |
msgstr ""
|
1730 |
|
1731 |
+
#: inc/biz_m.php:4990
|
1732 |
msgid "Additional cost for"
|
1733 |
msgstr ""
|
1734 |
|
1735 |
+
#: inc/biz_m.php:5059
|
1736 |
msgid ""
|
1737 |
"Check this box if you want that specific additional cost, which configured as percentage for "
|
1738 |
"some option, apply to other additional fixed costs and not only to original booking cost."
|
1739 |
msgstr ""
|
1740 |
|
1741 |
+
#: inc/biz_m.php:5065
|
1742 |
msgid "Configure additional cost, which depend from selection of selectbox(es) and checkbox(es)."
|
1743 |
msgstr ""
|
1744 |
|
1745 |
+
#: inc/biz_m.php:5068
|
1746 |
#, php-format
|
1747 |
msgid ""
|
1748 |
"Fields %s(selectbox(es) and checkbox(es))%s are shown here automatically if they exist in the "
|
1749 |
"%sbooking form%s."
|
1750 |
msgstr ""
|
1751 |
|
1752 |
+
#: inc/biz_m.php:5075
|
1753 |
msgid "Enter additional cost in formats:"
|
1754 |
msgstr ""
|
1755 |
|
1756 |
+
#: inc/biz_m.php:5076
|
1757 |
#, php-format
|
1758 |
msgid ""
|
1759 |
"For example, if the original cost of the booking is %s, then after applying additional costs the "
|
1760 |
"total cost will be folowing"
|
1761 |
msgstr ""
|
1762 |
|
1763 |
+
#: inc/biz_m.php:5079
|
1764 |
msgid "Enter fixed cost"
|
1765 |
msgstr ""
|
1766 |
|
1767 |
+
#: inc/biz_m.php:5079 inc/biz_m.php:5082 inc/biz_m.php:5088
|
1768 |
#, php-format
|
1769 |
msgid "%s, then total cost will be %s"
|
1770 |
msgstr ""
|
1771 |
|
1772 |
+
#: inc/biz_m.php:5082
|
1773 |
msgid "Enter percentage of the entire booking"
|
1774 |
msgstr ""
|
1775 |
|
1776 |
+
#: inc/biz_m.php:5085
|
1777 |
msgid "Enter fixed amount for each selected day"
|
1778 |
msgstr ""
|
1779 |
|
1780 |
+
#: inc/biz_m.php:5085
|
1781 |
#, php-format
|
1782 |
msgid "%s, then total cost will be (if selected 3 days) %s"
|
1783 |
msgstr ""
|
1784 |
|
1785 |
+
#: inc/biz_m.php:5085 inc/form/class-wpbc-form-help.php:279 inc/form/class-wpbc-form-help.php:292
|
1786 |
#: inc/form/class-wpbc-form-help.php:306 inc/form/class-wpbc-form-help.php:344
|
1787 |
msgid "or"
|
1788 |
msgstr ""
|
1789 |
|
1790 |
+
#: inc/biz_m.php:5088
|
1791 |
msgid "Enter percentage as additional sum, which is based only on original cost and not full sum"
|
1792 |
msgstr ""
|
1793 |
|
1794 |
+
#: inc/biz_m.php:5092
|
1795 |
#, php-format
|
1796 |
msgid "Please check more info about configuration of this cost settings on this %spage%s."
|
1797 |
msgstr ""
|
1798 |
|
1799 |
+
#: inc/biz_m.php:5178 inc/personal.php:1362 inc/wpbc-br-table-for-settings.php:33
|
1800 |
msgid "Resource ID or Title"
|
1801 |
msgstr ""
|
1802 |
|
1803 |
+
#: inc/biz_m.php:5180 inc/multiuser.php:1249 inc/personal.php:1364
|
1804 |
+
#: inc/wpbc-br-table-for-settings.php:35 lib/wpdev-bk-lib.php:1513
|
1805 |
msgid "Go"
|
1806 |
msgstr ""
|
1807 |
|
1808 |
+
#: inc/biz_m.php:5203 inc/personal.php:1419
|
1809 |
msgid "Bulk Actions"
|
1810 |
msgstr ""
|
1811 |
|
1812 |
+
#: inc/biz_m.php:5224 inc/biz_m.php:5250 inc/personal.php:1439 inc/personal.php:1464
|
1813 |
#: inc/wpbc-br-table-for-settings.php:79 inc/wpbc-br-table-for-settings.php:105
|
1814 |
#: lib/wpbc-gcal-class.php:579 lib/wpbc-gcal-class.php:601
|
1815 |
msgid "Info"
|
1816 |
msgstr ""
|
1817 |
|
1818 |
+
#: inc/biz_m.php:5236 inc/personal.php:1450 inc/wpbc-br-table-for-settings.php:92
|
1819 |
#: lib/wpbc-gcal-class.php:594
|
1820 |
msgid "Selection"
|
1821 |
msgstr ""
|
1822 |
|
1823 |
+
#: inc/biz_m.php:5239 inc/wpbc-br-table-for-settings.php:95
|
1824 |
msgid "Resource Name"
|
1825 |
msgstr ""
|
1826 |
|
1827 |
+
#: inc/biz_m.php:5316
|
1828 |
msgid "Resources Settings"
|
1829 |
msgstr ""
|
1830 |
|
1831 |
+
#: inc/biz_m.php:5316
|
1832 |
msgid "Resources management"
|
1833 |
msgstr ""
|
1834 |
|
1835 |
+
#: inc/biz_m.php:5318
|
1836 |
msgid "Costs and Rates"
|
1837 |
msgstr ""
|
1838 |
|
1839 |
+
#: inc/biz_m.php:5321
|
1840 |
msgid "Costs and Rates Settings"
|
1841 |
msgstr ""
|
1842 |
|
1843 |
+
#: inc/biz_m.php:5321
|
1844 |
msgid "Customization of rates, valuation days cost and deposit amount "
|
1845 |
msgstr ""
|
1846 |
|
1847 |
+
#: inc/biz_m.php:5323
|
1848 |
msgid "Advanced Cost"
|
1849 |
msgstr ""
|
1850 |
|
1851 |
+
#: inc/biz_m.php:5326
|
1852 |
msgid "Advanced Cost Settings"
|
1853 |
msgstr ""
|
1854 |
|
1855 |
+
#: inc/biz_m.php:5326
|
1856 |
msgid "Customization of additional cost, which depend from form fields"
|
1857 |
msgstr ""
|
1858 |
|
1859 |
+
#: inc/biz_m.php:5329
|
1860 |
msgid "Coupons"
|
1861 |
msgstr ""
|
1862 |
|
1863 |
+
#: inc/biz_m.php:5332
|
1864 |
msgid "Coupons Settings"
|
1865 |
msgstr ""
|
1866 |
|
1867 |
+
#: inc/biz_m.php:5332
|
1868 |
msgid "Setting coupons for discount"
|
1869 |
msgstr ""
|
1870 |
|
1871 |
+
#: inc/biz_m.php:5338
|
1872 |
msgid "Availability Settings"
|
1873 |
msgstr ""
|
1874 |
|
1875 |
+
#: inc/biz_m.php:5338
|
1876 |
msgid "Customization of availability settings"
|
1877 |
msgstr ""
|
1878 |
|
1879 |
+
#: inc/biz_m.php:5340
|
1880 |
msgid "Season Filters"
|
1881 |
msgstr ""
|
1882 |
|
1883 |
+
#: inc/biz_m.php:5343
|
1884 |
msgid "Season Filters Settings"
|
1885 |
msgstr ""
|
1886 |
|
1887 |
+
#: inc/biz_m.php:5343
|
1888 |
msgid "Customization of season filters settings"
|
1889 |
msgstr ""
|
1890 |
|
1891 |
+
#: inc/biz_m.php:5397
|
1892 |
msgid "Cost: "
|
1893 |
msgstr ""
|
1894 |
|
1895 |
+
#: inc/biz_m.php:5431 inc/multiuser.php:700
|
1896 |
msgid "Weekend"
|
1897 |
msgstr ""
|
1898 |
|
1899 |
+
#: inc/biz_m.php:5478 inc/multiuser.php:702
|
1900 |
msgid "High season"
|
1901 |
msgstr ""
|
1902 |
|
1903 |
+
#: inc/biz_s.php:108 inc/personal.php:4316 inc/personal.php:4334
|
1904 |
msgid "Select Times"
|
1905 |
msgstr ""
|
1906 |
|
1907 |
+
#: inc/biz_s.php:346
|
1908 |
msgid "Setting cost for the resource"
|
1909 |
msgstr ""
|
1910 |
|
1911 |
+
#: inc/biz_s.php:349
|
1912 |
msgid "/ day"
|
1913 |
msgstr ""
|
1914 |
|
1915 |
+
#: inc/biz_s.php:350
|
1916 |
msgid "/ night"
|
1917 |
msgstr ""
|
1918 |
|
1919 |
+
#: inc/biz_s.php:351
|
1920 |
msgid "fixed"
|
1921 |
msgstr ""
|
1922 |
|
1923 |
+
#: inc/biz_s.php:352
|
1924 |
msgid "/ hour"
|
1925 |
msgstr ""
|
1926 |
|
1927 |
+
#: inc/biz_s.php:419
|
1928 |
+
msgid "Error! Please reset your check-in/check-out dates above."
|
1929 |
+
msgstr ""
|
1930 |
+
|
1931 |
+
#: inc/biz_s.php:420
|
1932 |
msgid ""
|
1933 |
"Start Time is invalid. The date or time may be booked, or already in the past! Please choose "
|
1934 |
"another date or time."
|
1935 |
msgstr ""
|
1936 |
|
1937 |
+
#: inc/biz_s.php:421
|
1938 |
msgid ""
|
1939 |
"End Time is invalid. The date or time may be booked, or already in the past. The End Time may "
|
1940 |
"also be earlier that the start time, if only 1 day was selected! Please choose another date or "
|
1941 |
"time."
|
1942 |
msgstr ""
|
1943 |
|
1944 |
+
#: inc/biz_s.php:422 inc/biz_s.php:423
|
1945 |
msgid "The time(s) may be booked, or already in the past!"
|
1946 |
msgstr ""
|
1947 |
|
1948 |
+
#: inc/biz_s.php:592
|
1949 |
msgid "Cost saved successfully"
|
1950 |
msgstr ""
|
1951 |
|
1952 |
+
#: inc/biz_s.php:599
|
1953 |
msgid "Cost is not correct. It must be greater than 0"
|
1954 |
msgstr ""
|
1955 |
|
1956 |
+
#: inc/biz_s.php:616
|
1957 |
msgid "Send payment request to customer"
|
1958 |
msgstr ""
|
1959 |
|
1960 |
+
#: inc/biz_s.php:620
|
1961 |
#, php-format
|
1962 |
msgid "Type your %sreason for payment%s request"
|
1963 |
msgstr ""
|
1964 |
|
1965 |
+
#: inc/biz_s.php:628
|
1966 |
msgid "Send Request"
|
1967 |
msgstr ""
|
1968 |
|
1969 |
+
#: inc/biz_s.php:629 inc/personal.php:784 inc/personal.php:1166 lib/wpbc-gcal.php:901
|
1970 |
+
#: lib/wpdev-bk-lib.php:523 lib/wpdev-bk-lib.php:586 lib/wpdev-bk-lib.php:642
|
1971 |
msgid "Close"
|
1972 |
msgstr ""
|
1973 |
|
1974 |
+
#: inc/biz_s.php:770
|
1975 |
msgid "Request has been sent"
|
1976 |
msgstr ""
|
1977 |
|
1978 |
+
#: inc/biz_s.php:776
|
1979 |
msgid "Request has failed"
|
1980 |
msgstr ""
|
1981 |
|
1982 |
+
#: inc/biz_s.php:801
|
1983 |
msgid "The payment status is changed successfully"
|
1984 |
msgstr ""
|
1985 |
|
1986 |
+
#: inc/biz_s.php:808
|
1987 |
msgid "The changing of payment status is failed"
|
1988 |
msgstr ""
|
1989 |
|
1990 |
+
#: inc/biz_s.php:852
|
1991 |
msgid "Email to \"Person\" with payment request"
|
1992 |
msgstr ""
|
1993 |
|
1994 |
+
#: inc/biz_s.php:872 inc/personal.php:3883 inc/personal.php:3969 inc/personal.php:4059
|
1995 |
+
#: lib/wpdev-settings-general.php:2156 lib/wpdev-settings-general.php:2244
|
1996 |
msgid "Send to Admin"
|
1997 |
msgstr ""
|
1998 |
|
1999 |
+
#: inc/biz_s.php:880 inc/personal.php:3891 inc/personal.php:3977 inc/personal.php:4067
|
2000 |
+
#: lib/wpdev-settings-general.php:2164 lib/wpdev-settings-general.php:2252
|
2001 |
msgid "Check this box to send copy of this email to Admin"
|
2002 |
msgstr ""
|
2003 |
|
2004 |
+
#: inc/biz_s.php:889 inc/personal.php:3814 inc/personal.php:3899 inc/personal.php:3986
|
2005 |
+
#: inc/personal.php:4076 lib/wpdev-settings-general.php:2086 lib/wpdev-settings-general.php:2172
|
2006 |
+
#: lib/wpdev-settings-general.php:2261
|
2007 |
#, php-format
|
2008 |
msgid "Type the default %sadmin email%s sending the booking confimation"
|
2009 |
msgstr ""
|
2010 |
|
2011 |
+
#: inc/biz_s.php:894 inc/personal.php:3744 inc/personal.php:3819 inc/personal.php:3904
|
2012 |
+
#: inc/personal.php:3991 inc/personal.php:4081 lib/wpdev-settings-general.php:2017
|
2013 |
+
#: lib/wpdev-settings-general.php:2091 lib/wpdev-settings-general.php:2177
|
2014 |
+
#: lib/wpdev-settings-general.php:2266
|
2015 |
msgid "Subject"
|
2016 |
msgstr ""
|
2017 |
|
2018 |
+
#: inc/biz_s.php:896
|
2019 |
#, php-format
|
2020 |
msgid "Type email subject for %spayment request%s."
|
2021 |
msgstr ""
|
2022 |
|
2023 |
+
#: inc/biz_s.php:901 inc/personal.php:3751 inc/personal.php:3828 inc/personal.php:3911
|
2024 |
+
#: inc/personal.php:3998 inc/personal.php:4088 lib/wpdev-settings-general.php:2024
|
2025 |
+
#: lib/wpdev-settings-general.php:2099 lib/wpdev-settings-general.php:2184
|
2026 |
+
#: lib/wpdev-settings-general.php:2273
|
2027 |
msgid "Content"
|
2028 |
msgstr ""
|
2029 |
|
2030 |
+
#: inc/biz_s.php:916
|
2031 |
#, php-format
|
2032 |
msgid "Type your %semail message for payment request%s"
|
2033 |
msgstr ""
|
2034 |
|
2035 |
+
#: inc/biz_s.php:925
|
2036 |
#, php-format
|
2037 |
msgid ""
|
2038 |
"You need to make payment %s for booking %s at %s. %s You can make payment at this %s Thank you, "
|
2039 |
"booking service."
|
2040 |
msgstr ""
|
2041 |
|
2042 |
+
#: inc/biz_s.php:925
|
2043 |
msgid "page"
|
2044 |
msgstr ""
|
2045 |
|
2046 |
+
#: inc/biz_s.php:1202
|
2047 |
msgid "deposit"
|
2048 |
msgstr ""
|
2049 |
|
2050 |
+
#: inc/biz_s.php:1203
|
2051 |
msgid "Total cost"
|
2052 |
msgstr ""
|
2053 |
|
2054 |
+
#: inc/biz_s.php:1204
|
2055 |
msgid "balance"
|
2056 |
msgstr ""
|
2057 |
|
2058 |
+
#: inc/biz_s.php:1269
|
2059 |
msgid "Auto-fill form"
|
2060 |
msgstr ""
|
2061 |
|
2062 |
+
#: inc/biz_s.php:1369
|
2063 |
msgid "Billing form fields customization"
|
2064 |
msgstr ""
|
2065 |
|
2066 |
+
#: inc/biz_s.php:1381
|
2067 |
msgid ""
|
2068 |
"Please select a field from your booking form. This field will be automatically assigned to the "
|
2069 |
"current field in the billing form."
|
2070 |
msgstr ""
|
2071 |
|
2072 |
+
#: inc/biz_s.php:1387 inc/payments/ipay88.php:316
|
2073 |
msgid "Customer Email"
|
2074 |
msgstr ""
|
2075 |
|
2076 |
+
#: inc/biz_s.php:1400 inc/payments/ipay88.php:316
|
2077 |
msgid "First Name(s)"
|
2078 |
msgstr ""
|
2079 |
|
2080 |
+
#: inc/biz_s.php:1413 inc/payments/ipay88.php:316
|
2081 |
msgid "Last name"
|
2082 |
msgstr ""
|
2083 |
|
2084 |
+
#: inc/biz_s.php:1447
|
2085 |
msgid "Billing Address"
|
2086 |
msgstr ""
|
2087 |
|
2088 |
+
#: inc/biz_s.php:1460
|
2089 |
msgid "Billing City"
|
2090 |
msgstr ""
|
2091 |
|
2092 |
+
#: inc/biz_s.php:1473
|
2093 |
msgid "Post Code"
|
2094 |
msgstr ""
|
2095 |
|
2096 |
+
#: inc/biz_s.php:1486 inc/personal.php:4388
|
2097 |
msgid "Country"
|
2098 |
msgstr ""
|
2099 |
|
2100 |
+
#: inc/biz_s.php:1505
|
2101 |
msgid "State"
|
2102 |
msgstr ""
|
2103 |
|
2104 |
+
#: inc/biz_s.php:1522
|
2105 |
#, php-format
|
2106 |
msgid "Configuring these %sfields is required for the some payment%s systems!"
|
2107 |
msgstr ""
|
2108 |
|
2109 |
+
#: inc/biz_s.php:1577
|
2110 |
msgid "Title of booked timeslot(s)"
|
2111 |
msgstr ""
|
2112 |
|
2113 |
+
#: inc/biz_s.php:1581
|
2114 |
#, php-format
|
2115 |
msgid "Type your %stitle%s, what will show in mouseover tooltip near booked timeslot(s)"
|
2116 |
msgstr ""
|
2117 |
|
2118 |
+
#: inc/biz_s.php:1598
|
2119 |
msgid "Time Format"
|
2120 |
msgstr ""
|
2121 |
|
2122 |
+
#: inc/biz_s.php:1621
|
2123 |
#, php-format
|
2124 |
msgid ""
|
2125 |
"Type your time format for emails and the booking table. %sDocumentation on time formatting%s"
|
2126 |
msgstr ""
|
2127 |
|
2128 |
+
#: inc/biz_s.php:1709
|
2129 |
#, php-format
|
2130 |
msgid "Select a %sFIXED%s number of days with %s1 mouse click%s"
|
2131 |
msgstr ""
|
2132 |
|
2133 |
+
#: inc/biz_s.php:1717
|
2134 |
#, php-format
|
2135 |
msgid "Select a %sDYNAMIC%s range of days with %s2 mouse clicks%s"
|
2136 |
msgstr ""
|
2137 |
|
2138 |
+
#: inc/biz_s.php:1725 inc/biz_s.php:1791
|
2139 |
msgid "Days selection number"
|
2140 |
msgstr ""
|
2141 |
|
2142 |
+
#: inc/biz_s.php:1732
|
2143 |
#, php-format
|
2144 |
msgid "Type your %snumber of days for range selection%s"
|
2145 |
msgstr ""
|
2146 |
|
2147 |
+
#: inc/biz_s.php:1739 inc/biz_s.php:1827
|
2148 |
msgid "Start day of range"
|
2149 |
msgstr ""
|
2150 |
|
2151 |
+
#: inc/biz_s.php:1748 inc/biz_s.php:1836
|
2152 |
msgid "Any day of week"
|
2153 |
msgstr ""
|
2154 |
|
2155 |
+
#: inc/biz_s.php:1759 inc/biz_s.php:1847
|
2156 |
msgid "Specific day(s) of week"
|
2157 |
msgstr ""
|
2158 |
|
2159 |
+
#: inc/biz_s.php:1781 inc/biz_s.php:1883
|
2160 |
msgid "Select your start day of range selection at week"
|
2161 |
msgstr ""
|
2162 |
|
2163 |
+
#: inc/biz_s.php:1793
|
2164 |
msgid "Min"
|
2165 |
msgstr ""
|
2166 |
|
2167 |
+
#: inc/biz_s.php:1807
|
2168 |
#, php-format
|
2169 |
msgid "Select your %sminimum and maximum number of days for range selection%s"
|
2170 |
msgstr ""
|
2171 |
|
2172 |
+
#: inc/biz_s.php:1813
|
2173 |
msgid "Specific days selections"
|
2174 |
msgstr ""
|
2175 |
|
2176 |
+
#: inc/biz_s.php:1817
|
2177 |
#, php-format
|
2178 |
msgid ""
|
2179 |
"Type your %sspecific%s days, which can be selected by visitors, or leave this value empty. It "
|
2181 |
"this: %s) or combination (example:%s, its the same like this: %s)"
|
2182 |
msgstr ""
|
2183 |
|
2184 |
+
#: inc/biz_s.php:1926
|
2185 |
msgid "Use time selections as recurrent time slots"
|
2186 |
msgstr ""
|
2187 |
|
2188 |
+
#: inc/biz_s.php:1937
|
2189 |
msgid ""
|
2190 |
"Check this box if you want to use recurrent time to reserve several days. This means that middle "
|
2191 |
"days will be partially booked by actual times, otherwise the time in the booking form will be "
|
2192 |
"used as check-in/check-out time for the first and last day of the reservation."
|
2193 |
msgstr ""
|
2194 |
|
2195 |
+
#: inc/biz_s.php:1944
|
2196 |
msgid "Use check in/out time"
|
2197 |
msgstr ""
|
2198 |
|
2199 |
+
#: inc/biz_s.php:1951
|
2200 |
msgid "This option will overwrite any times selection in your booking form."
|
2201 |
msgstr ""
|
2202 |
|
2203 |
+
#: inc/biz_s.php:1956
|
2204 |
msgid "Check this option, to use check in/out time during booking process. "
|
2205 |
msgstr ""
|
2206 |
|
2207 |
+
#: inc/biz_s.php:1959
|
2208 |
#, php-format
|
2209 |
msgid "%s Important!%s This will overwrite any times selection in your booking form."
|
2210 |
msgstr ""
|
2211 |
|
2212 |
+
#: inc/biz_s.php:1968
|
2213 |
msgid "Check-in time"
|
2214 |
msgstr ""
|
2215 |
|
2216 |
+
#: inc/biz_s.php:1968
|
2217 |
#, php-format
|
2218 |
msgid "%sstart booking time%s"
|
2219 |
msgstr ""
|
2220 |
|
2221 |
+
#: inc/biz_s.php:1970
|
2222 |
#, php-format
|
2223 |
msgid "Type your %sCheck-in%s time of booking"
|
2224 |
msgstr ""
|
2225 |
|
2226 |
+
#: inc/biz_s.php:1975
|
2227 |
msgid "Check-Out time"
|
2228 |
msgstr ""
|
2229 |
|
2230 |
+
#: inc/biz_s.php:1975
|
2231 |
#, php-format
|
2232 |
msgid "%send booking time%s"
|
2233 |
msgstr ""
|
2234 |
|
2235 |
+
#: inc/biz_s.php:1977
|
2236 |
#, php-format
|
2237 |
msgid "Type your %sCheck-Out%s time of booking"
|
2238 |
msgstr ""
|
2239 |
|
2240 |
+
#: inc/biz_s.php:2011 lib/wpdev-settings-general.php:50
|
2241 |
msgid "Costs"
|
2242 |
msgstr ""
|
2243 |
|
2244 |
+
#: inc/biz_s.php:2016
|
2245 |
msgid "Set the cost"
|
2246 |
msgstr ""
|
2247 |
|
2248 |
+
#: inc/biz_s.php:2021
|
2249 |
msgid "fixed sum"
|
2250 |
msgstr ""
|
2251 |
|
2252 |
+
#: inc/biz_s.php:2024
|
2253 |
msgid " Select your cost configuration."
|
2254 |
msgstr ""
|
2255 |
|
2256 |
+
#: inc/biz_s.php:2029
|
2257 |
msgid "Currency format"
|
2258 |
msgstr ""
|
2259 |
|
2260 |
+
#: inc/biz_s.php:2032
|
2261 |
msgid "Number of decimal points"
|
2262 |
msgstr ""
|
2263 |
|
2264 |
+
#: inc/biz_s.php:2039
|
2265 |
msgid "Separator for the decimal point"
|
2266 |
msgstr ""
|
2267 |
|
2268 |
+
#: inc/biz_s.php:2043 inc/biz_s.php:2057
|
2269 |
msgid "No separator"
|
2270 |
msgstr ""
|
2271 |
|
2272 |
+
#: inc/biz_s.php:2044 inc/biz_s.php:2058
|
2273 |
msgid "Space"
|
2274 |
msgstr ""
|
2275 |
|
2276 |
+
#: inc/biz_s.php:2045 inc/biz_s.php:2059
|
2277 |
msgid "Dot"
|
2278 |
msgstr ""
|
2279 |
|
2280 |
+
#: inc/biz_s.php:2046 inc/biz_s.php:2060
|
2281 |
msgid "Comma"
|
2282 |
msgstr ""
|
2283 |
|
2284 |
+
#: inc/biz_s.php:2053
|
2285 |
msgid "Thousands separator"
|
2286 |
msgstr ""
|
2287 |
|
2288 |
+
#: inc/biz_s.php:2071
|
2289 |
msgid "Time impact to cost"
|
2290 |
msgstr ""
|
2291 |
|
2292 |
+
#: inc/biz_s.php:2076
|
2293 |
#, php-format
|
2294 |
msgid ""
|
2295 |
"Check this box if you want the %stime selection%s on the booking form %sapplied to the cost "
|
2296 |
"calculation%s."
|
2297 |
msgstr ""
|
2298 |
|
2299 |
+
#: inc/biz_s.php:2085
|
2300 |
msgid "Show booking details in payment form"
|
2301 |
msgstr ""
|
2302 |
|
2303 |
+
#: inc/biz_s.php:2091
|
2304 |
#, php-format
|
2305 |
msgid ""
|
2306 |
" Check this checkbox if you want to show the %sbooking details summary%s above the payment form"
|
2307 |
msgstr ""
|
2308 |
|
2309 |
+
#: inc/biz_s.php:2136
|
2310 |
msgid "Auto cancellation / auto approval of bookings"
|
2311 |
msgstr ""
|
2312 |
|
2313 |
+
#: inc/biz_s.php:2142
|
2314 |
msgid "Auto approve all new bookings"
|
2315 |
msgstr ""
|
2316 |
|
2317 |
+
#: inc/biz_s.php:2151
|
2318 |
#, php-format
|
2319 |
msgid "Check this checkbox to %sactivate%s auto approve of all new pending bookings."
|
2320 |
msgstr ""
|
2321 |
|
2322 |
+
#: inc/biz_s.php:2158
|
2323 |
msgid "Auto-cancel bookings"
|
2324 |
msgstr ""
|
2325 |
|
2326 |
+
#: inc/biz_s.php:2168
|
2327 |
#, php-format
|
2328 |
msgid "Check this box to %sactivate%s auto-cancellation for pending, unpaid bookings."
|
2329 |
msgstr ""
|
2330 |
|
2331 |
+
#: inc/biz_s.php:2179
|
2332 |
msgid "Cancel bookings older"
|
2333 |
msgstr ""
|
2334 |
|
2335 |
+
#: inc/biz_s.php:2197
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2336 |
msgid "Cancel only pending, unpaid bookings, which are older than this selection."
|
2337 |
msgstr ""
|
2338 |
|
2339 |
+
#: inc/biz_s.php:2202
|
2340 |
msgid "Cancellation email sent"
|
2341 |
msgstr ""
|
2342 |
|
2343 |
+
#: inc/biz_s.php:2207
|
2344 |
#, php-format
|
2345 |
msgid "Check this box to %ssend%s cancellation email for this resource."
|
2346 |
msgstr ""
|
2347 |
|
2348 |
+
#: inc/biz_s.php:2219
|
2349 |
msgid "Reason for cancellation"
|
2350 |
msgstr ""
|
2351 |
|
2352 |
+
#: inc/biz_s.php:2221
|
2353 |
#, php-format
|
2354 |
msgid "Type the reason for %scancellation%s for the email template."
|
2355 |
msgstr ""
|
2356 |
|
2357 |
+
#: inc/biz_s.php:2266
|
2358 |
msgid ""
|
2359 |
"Customization of billing fields, which automatically assign from booking form to billing form"
|
2360 |
msgstr ""
|
2361 |
|
2362 |
+
#: inc/biz_s.php:2267
|
2363 |
msgid "Billing form fields"
|
2364 |
msgstr ""
|
2365 |
|
2366 |
+
#: inc/biz_s.php:2293
|
2367 |
msgid "Booked Times:"
|
2368 |
msgstr ""
|
2369 |
|
2370 |
+
#: inc/biz_s.php:2316
|
2371 |
msgid ""
|
2372 |
"This booking canceled because we did not receive payment and the administrator did not approve "
|
2373 |
"it."
|
2374 |
msgstr ""
|
2375 |
|
2376 |
+
#: inc/biz_s.php:2335
|
2377 |
msgid "You need to make payment for this reservation"
|
2378 |
msgstr ""
|
2379 |
|
2380 |
+
#: inc/biz_s.php:2337
|
2381 |
#, php-format
|
2382 |
msgid ""
|
2383 |
"You need to make payment %s for reservation %s at %s. %s Please make payment on this page: %s "
|
2384 |
"Thank you, %s"
|
2385 |
msgstr ""
|
2386 |
|
2387 |
+
#: inc/biz_s.php:2441 inc/multiuser.php:1523 inc/personal.php:4435
|
2388 |
msgid "Apartment#1"
|
2389 |
msgstr ""
|
2390 |
|
2391 |
+
#: inc/biz_s.php:2442 inc/multiuser.php:1524 inc/personal.php:4436
|
2392 |
msgid "Apartment#2"
|
2393 |
msgstr ""
|
2394 |
|
2395 |
+
#: inc/biz_s.php:2443 inc/personal.php:4437
|
2396 |
msgid "Apartment#3"
|
2397 |
msgstr ""
|
2398 |
|
2639 |
msgid "Radio Button(s)"
|
2640 |
msgstr ""
|
2641 |
|
2642 |
+
#: inc/form/class-wpbc-form-help.php:194 lib/wpdev-settings-general.php:619
|
2643 |
msgid "CAPTCHA"
|
2644 |
msgstr ""
|
2645 |
|
3124 |
msgid "Select option to configure or show help info about tags"
|
3125 |
msgstr ""
|
3126 |
|
|
|
|
|
|
|
|
|
|
|
3127 |
#: inc/lib_p.php:244
|
3128 |
msgid "Enter Keyword here"
|
3129 |
msgstr ""
|
3132 |
msgid "Keyword"
|
3133 |
msgstr ""
|
3134 |
|
|
|
|
|
|
|
|
|
|
|
3135 |
#: inc/lib_p.php:274
|
3136 |
msgid "Print bookings listing"
|
3137 |
msgstr ""
|
3138 |
|
3139 |
+
#: inc/lib_p.php:276 inc/lib_s.php:446 inc/personal.php:1164
|
3140 |
msgid "Print"
|
3141 |
msgstr ""
|
3142 |
|
3156 |
msgid "Export All"
|
3157 |
msgstr ""
|
3158 |
|
3159 |
+
#: inc/lib_p.php:373 inc/multiuser.php:1339 lib/wpdev-bk-lib.php:1854
|
3160 |
msgid "Labels"
|
3161 |
msgstr ""
|
3162 |
|
3164 |
msgid "Data"
|
3165 |
msgstr ""
|
3166 |
|
3167 |
+
#: inc/lib_p.php:391 inc/personal.php:692 inc/personal.php:1637 lib/wpdev-bk-lib.php:1564
|
3168 |
+
#: lib/wpdev-bk-lib.php:2058 lib/wpdev-settings-general.php:2433
|
3169 |
msgid "Approved"
|
3170 |
msgstr ""
|
3171 |
|
3172 |
+
#: inc/lib_p.php:392 inc/lib_s.php:147 inc/personal.php:693 lib/wpdev-bk-lib.php:1563
|
3173 |
+
#: lib/wpdev-bk-lib.php:2057 lib/wpdev-booking-class.php:2291
|
3174 |
msgid "Pending"
|
3175 |
msgstr ""
|
3176 |
|
3208 |
"Please clear the selection, then add new resources."
|
3209 |
msgstr ""
|
3210 |
|
3211 |
+
#: inc/lib_p.php:770 inc/personal.php:1525
|
3212 |
msgid "All resources"
|
3213 |
msgstr ""
|
3214 |
|
3224 |
msgid "In-Progress"
|
3225 |
msgstr ""
|
3226 |
|
3227 |
+
#: inc/lib_s.php:126 inc/lib_s.php:523 lib/wpdev-bk-lib.php:2007
|
3228 |
msgid "Unknown"
|
3229 |
msgstr ""
|
3230 |
|
3288 |
msgid "Voided"
|
3289 |
msgstr ""
|
3290 |
|
3291 |
+
#: inc/lib_s.php:161 lib/wpdev-bk-lib.php:2142
|
3292 |
msgid "Created"
|
3293 |
msgstr ""
|
3294 |
|
3324 |
msgid "Any Status"
|
3325 |
msgstr ""
|
3326 |
|
3327 |
+
#: inc/lib_s.php:228 inc/lib_s.php:520 lib/wpdev-bk-lib.php:2004
|
3328 |
msgid "Paid OK"
|
3329 |
msgstr ""
|
3330 |
|
3332 |
msgid "Unknown Status"
|
3333 |
msgstr ""
|
3334 |
|
3335 |
+
#: inc/lib_s.php:271 inc/lib_s.php:499 inc/lib_s.php:501 lib/wpdev-bk-timeline.php:963
|
3336 |
msgid "Payment"
|
3337 |
msgstr ""
|
3338 |
|
3368 |
msgid "Change status"
|
3369 |
msgstr ""
|
3370 |
|
3371 |
+
#: inc/multiuser.php:701
|
3372 |
msgid "Work days"
|
3373 |
msgstr ""
|
3374 |
|
3375 |
+
#: inc/multiuser.php:718 inc/multiuser.php:776 lib/wpbc-booking-new.php:134
|
3376 |
msgid "Updating..."
|
3377 |
msgstr ""
|
3378 |
|
3379 |
+
#: inc/multiuser.php:723
|
3380 |
msgid "User is Activated"
|
3381 |
msgstr ""
|
3382 |
|
3383 |
+
#: inc/multiuser.php:781
|
3384 |
msgid "User is Deactivated"
|
3385 |
msgstr ""
|
3386 |
|
3387 |
+
#: inc/multiuser.php:909
|
3388 |
#, php-format
|
3389 |
msgid ""
|
3390 |
"%sYou do not have permissions for this page.%s Your account is not active, please contact "
|
3391 |
"administrator.%s"
|
3392 |
msgstr ""
|
3393 |
|
3394 |
+
#: inc/multiuser.php:944
|
3395 |
#, php-format
|
3396 |
msgid "%sYou do not have permissions for this booking resources.%s"
|
3397 |
msgstr ""
|
3398 |
|
3399 |
+
#: inc/multiuser.php:950
|
3400 |
#, php-format
|
3401 |
msgid "%sNo this booking resources.%s"
|
3402 |
msgstr ""
|
3403 |
|
3404 |
+
#: inc/multiuser.php:1090
|
3405 |
msgid "Show resources of user:"
|
3406 |
msgstr ""
|
3407 |
|
3408 |
+
#: inc/multiuser.php:1102
|
3409 |
msgid "My"
|
3410 |
msgstr ""
|
3411 |
|
3412 |
+
#: inc/multiuser.php:1121 inc/personal.php:335 lib/wpdev-bk-edit-toolbar-buttons.php:373
|
3413 |
msgid "Booking resource:"
|
3414 |
msgstr ""
|
3415 |
|
3416 |
+
#: inc/multiuser.php:1153 inc/multiuser.php:1205 lib/wpdev-booking-class.php:1181
|
3417 |
msgid "Users"
|
3418 |
msgstr ""
|
3419 |
|
3420 |
+
#: inc/multiuser.php:1173 inc/multiuser.php:1189 inc/multiuser.php:1338
|
3421 |
msgid "User"
|
3422 |
msgstr ""
|
3423 |
|
3424 |
+
#: inc/multiuser.php:1207
|
3425 |
msgid "Management of"
|
3426 |
msgstr ""
|
3427 |
|
3428 |
+
#: inc/multiuser.php:1247
|
3429 |
+
msgid "User Name or ID"
|
3430 |
+
msgstr ""
|
3431 |
+
|
3432 |
+
#: inc/multiuser.php:1342
|
3433 |
msgid "Set user as"
|
3434 |
msgstr ""
|
3435 |
|
3436 |
+
#: inc/multiuser.php:1378
|
3437 |
#, php-format
|
3438 |
msgid "Active %sSuper Admin%s"
|
3439 |
msgstr ""
|
3440 |
|
3441 |
+
#: inc/multiuser.php:1380
|
3442 |
#, php-format
|
3443 |
msgid "Active %sRegular User%s"
|
3444 |
msgstr ""
|
3445 |
|
3446 |
+
#: inc/multiuser.php:1383
|
3447 |
msgid "Inactive User"
|
3448 |
msgstr ""
|
3449 |
|
3450 |
+
#: inc/multiuser.php:1390
|
3451 |
msgid "Unlimited"
|
3452 |
msgstr ""
|
3453 |
|
3454 |
+
#: inc/multiuser.php:1395
|
3455 |
msgid "Activate"
|
3456 |
msgstr ""
|
3457 |
|
3458 |
+
#: inc/multiuser.php:1396 inc/multiuser.php:1405 inc/multiuser.php:1408 inc/multiuser.php:1411
|
3459 |
+
#: inc/multiuser.php:1422 inc/multiuser.php:1426
|
3460 |
msgid "Do you really want"
|
3461 |
msgstr ""
|
3462 |
|
3463 |
+
#: inc/multiuser.php:1396
|
3464 |
msgid "make user active"
|
3465 |
msgstr ""
|
3466 |
|
3467 |
+
#: inc/multiuser.php:1400
|
3468 |
msgid "Deactivate"
|
3469 |
msgstr ""
|
3470 |
|
3471 |
+
#: inc/multiuser.php:1404
|
3472 |
msgid "Set as inactive"
|
3473 |
msgstr ""
|
3474 |
|
3475 |
+
#: inc/multiuser.php:1405
|
3476 |
msgid "make user inactive"
|
3477 |
msgstr ""
|
3478 |
|
3479 |
+
#: inc/multiuser.php:1407
|
3480 |
msgid "Delete settings"
|
3481 |
msgstr ""
|
3482 |
|
3483 |
+
#: inc/multiuser.php:1408
|
3484 |
msgid "delete configuration"
|
3485 |
msgstr ""
|
3486 |
|
3487 |
+
#: inc/multiuser.php:1410
|
3488 |
msgid "Delete data"
|
3489 |
msgstr ""
|
3490 |
|
3491 |
+
#: inc/multiuser.php:1411
|
3492 |
msgid "delete all booking data"
|
3493 |
msgstr ""
|
3494 |
|
3495 |
+
#: inc/multiuser.php:1421 inc/multiuser.php:1422
|
3496 |
msgid "Super Admin"
|
3497 |
msgstr ""
|
3498 |
|
3499 |
+
#: inc/multiuser.php:1422 inc/multiuser.php:1426
|
3500 |
msgid "set user as"
|
3501 |
msgstr ""
|
3502 |
|
3503 |
+
#: inc/multiuser.php:1425
|
3504 |
msgid "Regular User"
|
3505 |
msgstr ""
|
3506 |
|
3507 |
+
#: inc/multiuser.php:1426
|
3508 |
msgid "Regular user"
|
3509 |
msgstr ""
|
3510 |
|
3511 |
+
#: inc/multiuser.php:1522
|
3512 |
msgid "Suite"
|
3513 |
msgstr ""
|
3514 |
|
3909 |
msgid "Booking Details:"
|
3910 |
msgstr ""
|
3911 |
|
3912 |
+
#: inc/payments/index.php:219 lib/wpdev-settings-general.php:2336
|
3913 |
+
#: lib/wpdev-settings-general.php:2338
|
3914 |
msgid "You can use following shortcodes in content of this template"
|
3915 |
msgstr ""
|
3916 |
|
3949 |
msgid "%s - inserting BIC "
|
3950 |
msgstr ""
|
3951 |
|
3952 |
+
#: inc/payments/index.php:245 lib/wpdev-settings-general.php:2344
|
3953 |
#, php-format
|
3954 |
msgid ""
|
3955 |
"%s - inserting data info about the booking, which you configured in the content form at Settings "
|
3956 |
"Fields page"
|
3957 |
msgstr ""
|
3958 |
|
3959 |
+
#: inc/payments/index.php:247 lib/wpdev-settings-general.php:2346
|
3960 |
#, php-format
|
3961 |
msgid "%s - inserting ID of booking "
|
3962 |
msgstr ""
|
3963 |
|
3964 |
+
#: inc/payments/index.php:249 lib/wpdev-settings-general.php:2348
|
3965 |
#, php-format
|
3966 |
msgid "%s or %s - inserting the title of the booking resource "
|
3967 |
msgstr ""
|
3968 |
|
3969 |
+
#: inc/payments/index.php:251 lib/wpdev-settings-general.php:2350
|
3970 |
#, php-format
|
3971 |
msgid "%s - inserting the cost of booking "
|
3972 |
msgstr ""
|
3973 |
|
3974 |
+
#: inc/payments/index.php:255 lib/wpdev-settings-general.php:2354
|
3975 |
#, php-format
|
3976 |
msgid "%s - inserting the dates of booking"
|
3977 |
msgstr ""
|
3978 |
|
3979 |
+
#: inc/payments/index.php:257 lib/wpdev-settings-general.php:2356
|
3980 |
#, php-format
|
3981 |
msgid "%s - inserting check-in date (first day of reservation),"
|
3982 |
msgstr ""
|
3983 |
|
3984 |
+
#: inc/payments/index.php:259 lib/wpdev-settings-general.php:2358
|
3985 |
+
#: lib/wpdev-settings-general.php:2359
|
3986 |
#, php-format
|
3987 |
msgid "%s - inserting check-out date (last day of reservation),"
|
3988 |
msgstr ""
|
3989 |
|
3990 |
+
#: inc/payments/index.php:261 lib/wpdev-settings-general.php:2361
|
3991 |
#, php-format
|
3992 |
msgid "%s - inserting the number of booking dates "
|
3993 |
msgstr ""
|
4737 |
"users, or leave it blank for searching for all users."
|
4738 |
msgstr ""
|
4739 |
|
4740 |
+
#: inc/personal.php:350 inc/wpbc-booking-select-widget.php:170
|
4741 |
msgid ""
|
4742 |
"Select booking resources, for showing in selectbox. Please use CTRL to select multiple booking "
|
4743 |
"resources."
|
4744 |
msgstr ""
|
4745 |
|
4746 |
+
#: inc/personal.php:356 inc/wpbc-booking-select-widget.php:176
|
4747 |
msgid "Preselected resource"
|
4748 |
msgstr ""
|
4749 |
|
|
|
|
|
|
|
|
|
|
|
4750 |
#: inc/personal.php:365
|
4751 |
msgid "Define preselected resource."
|
4752 |
msgstr ""
|
4767 |
msgid "Title near your select box."
|
4768 |
msgstr ""
|
4769 |
|
4770 |
+
#: inc/personal.php:404 inc/wpbc-booking-select-widget.php:242
|
4771 |
msgid "First option title"
|
4772 |
msgstr ""
|
4773 |
|
4774 |
+
#: inc/personal.php:405 inc/personal.php:871
|
4775 |
msgid "Please Select"
|
4776 |
msgstr ""
|
4777 |
|
4778 |
+
#: inc/personal.php:406 inc/wpbc-booking-select-widget.php:249
|
4779 |
msgid "First option in dropdown list."
|
4780 |
msgstr ""
|
4781 |
|
4782 |
+
#: inc/personal.php:407 inc/wpbc-booking-select-widget.php:251
|
4783 |
msgid "Please leave it empty if you want to skip it."
|
4784 |
msgstr ""
|
4785 |
|
4790 |
"selectbox"
|
4791 |
msgstr ""
|
4792 |
|
4793 |
+
#: inc/personal.php:587
|
4794 |
msgid "This booking resources does not exist"
|
4795 |
msgstr ""
|
4796 |
|
4797 |
+
#: inc/personal.php:606
|
4798 |
msgid "Processing"
|
4799 |
msgstr ""
|
4800 |
|
4801 |
+
#: inc/personal.php:633
|
4802 |
msgid "Generating columns"
|
4803 |
msgstr ""
|
4804 |
|
4805 |
+
#: inc/personal.php:673
|
4806 |
msgid "Exporting booking data"
|
4807 |
msgstr ""
|
4808 |
|
4809 |
+
#: inc/personal.php:712
|
4810 |
msgid "Generating content of file"
|
4811 |
msgstr ""
|
4812 |
|
4813 |
+
#: inc/personal.php:754
|
4814 |
msgid "Saving to file"
|
4815 |
msgstr ""
|
4816 |
|
4817 |
+
#: inc/personal.php:771
|
4818 |
msgid "Export bookings"
|
4819 |
msgstr ""
|
4820 |
|
4821 |
+
#: inc/personal.php:774
|
4822 |
msgid "Download the CSV file of exported booking data"
|
4823 |
msgstr ""
|
4824 |
|
4825 |
+
#: inc/personal.php:782
|
4826 |
msgid "Download"
|
4827 |
msgstr ""
|
4828 |
|
4829 |
+
#: inc/personal.php:792 lib/wpbc-ajax.php:219 lib/wpbc-ajax.php:224 lib/wpbc-gcal-class.php:444
|
4830 |
+
#: lib/wpbc-gcal.php:102
|
4831 |
msgid "Done"
|
4832 |
msgstr ""
|
4833 |
|
4834 |
+
#: inc/personal.php:1047
|
4835 |
msgid "link"
|
4836 |
msgstr ""
|
4837 |
|
4838 |
+
#: inc/personal.php:1168
|
4839 |
msgid "Print bookings"
|
4840 |
msgstr ""
|
4841 |
|
4842 |
+
#: inc/personal.php:1189
|
4843 |
msgid "The booking was canceled by the visitor."
|
4844 |
msgstr ""
|
4845 |
|
4846 |
+
#: inc/personal.php:1203 inc/personal.php:1214 lib/wpdev-booking-class.php:1680
|
4847 |
+
#: lib/wpdev-booking-class.php:1737
|
4848 |
msgid "Wrong booking hash in URL (probably expired)"
|
4849 |
msgstr ""
|
4850 |
|
4851 |
+
#: inc/personal.php:1242
|
4852 |
msgid "The booking has been canceled successfully"
|
4853 |
msgstr ""
|
4854 |
|
4855 |
+
#: inc/personal.php:1381
|
4856 |
msgid "Add New Booking Resource(s)"
|
4857 |
msgstr ""
|
4858 |
|
4859 |
+
#: inc/personal.php:1386
|
4860 |
msgid "New Resource"
|
4861 |
msgstr ""
|
4862 |
|
4863 |
+
#: inc/personal.php:1390
|
4864 |
msgid "Enter title here"
|
4865 |
msgstr ""
|
4866 |
|
4867 |
+
#: inc/personal.php:1392
|
4868 |
msgid "Enter name of booking resource"
|
4869 |
msgstr ""
|
4870 |
|
4871 |
+
#: inc/personal.php:1401
|
4872 |
msgid "Advanced Options"
|
4873 |
msgstr ""
|
4874 |
|
4875 |
+
#: inc/personal.php:1402
|
4876 |
msgid "Add new resource(s)"
|
4877 |
msgstr ""
|
4878 |
|
4879 |
+
#: inc/personal.php:1518
|
4880 |
msgid "Default booking resource"
|
4881 |
msgstr ""
|
4882 |
|
4883 |
+
#: inc/personal.php:1534
|
4884 |
msgid "Select your default booking resource."
|
4885 |
msgstr ""
|
4886 |
|
4887 |
+
#: inc/personal.php:1538
|
4888 |
msgid "Resources number per page"
|
4889 |
msgstr ""
|
4890 |
|
4891 |
+
#: inc/personal.php:1547
|
4892 |
msgid "Select number of booking resources (single or parent) per page at Resource menu page"
|
4893 |
msgstr ""
|
4894 |
|
4895 |
+
#: inc/personal.php:1561
|
4896 |
msgid "URL to edit bookings"
|
4897 |
msgstr ""
|
4898 |
|
4899 |
+
#: inc/personal.php:1563
|
4900 |
#, php-format
|
4901 |
msgid "Type URL for %svisitors%s to edit bookings. You must insert %s shortcode into this page."
|
4902 |
msgstr ""
|
4903 |
|
4904 |
+
#: inc/personal.php:1581
|
4905 |
msgid "Change hash after the booking is approved"
|
4906 |
msgstr ""
|
4907 |
|
4908 |
+
#: inc/personal.php:1587
|
4909 |
msgid ""
|
4910 |
"Check this box if you want to change the booking hash after approval. When checked, visitor will "
|
4911 |
"not be able to edit or cancel the booking."
|
4912 |
msgstr ""
|
4913 |
|
4914 |
+
#: inc/personal.php:1599
|
4915 |
msgid "Configuration in several languages"
|
4916 |
msgstr ""
|
4917 |
|
4918 |
+
#: inc/personal.php:1600
|
4919 |
#, php-format
|
4920 |
msgid "%s - start new translation section, where %s - locale of translation"
|
4921 |
msgstr ""
|
4922 |
|
4923 |
+
#: inc/personal.php:1601
|
4924 |
#, php-format
|
4925 |
msgid "Example #1: %s - start French translation section"
|
4926 |
msgstr ""
|
4927 |
|
4928 |
+
#: inc/personal.php:1602
|
4929 |
#, php-format
|
4930 |
msgid "Example #2: \"%s\" - English and French translation of some message"
|
4931 |
msgstr ""
|
4932 |
|
4933 |
+
#: inc/personal.php:1618 lib/wpdev-settings-general.php:2414
|
4934 |
msgid "Customization of email template, which is sending to Admin after new booking"
|
4935 |
msgstr ""
|
4936 |
|
4937 |
+
#: inc/personal.php:1619 lib/wpdev-settings-general.php:2415
|
4938 |
msgid "New for Admin"
|
4939 |
msgstr ""
|
4940 |
|
4941 |
+
#: inc/personal.php:1627 lib/wpdev-settings-general.php:2423
|
4942 |
msgid "Customization of email template, which is sending to Visitor after new booking"
|
4943 |
msgstr ""
|
4944 |
|
4945 |
+
#: inc/personal.php:1628 lib/wpdev-settings-general.php:2424
|
4946 |
msgid "New for Visitor"
|
4947 |
msgstr ""
|
4948 |
|
4949 |
+
#: inc/personal.php:1636 lib/wpdev-settings-general.php:2432
|
4950 |
msgid "Customization of email template, which is sending to Visitor after approval of booking"
|
4951 |
msgstr ""
|
4952 |
|
4953 |
+
#: inc/personal.php:1645 lib/wpdev-settings-general.php:2441
|
4954 |
msgid "Customization of email template, which is sending to Visitor after Cancellation of booking"
|
4955 |
msgstr ""
|
4956 |
|
4957 |
+
#: inc/personal.php:1646 lib/wpdev-settings-general.php:2442
|
4958 |
msgid "Declined"
|
4959 |
msgstr ""
|
4960 |
|
4961 |
+
#: inc/personal.php:1654
|
4962 |
msgid "Customization of email template, which is sending after modification of booking"
|
4963 |
msgstr ""
|
4964 |
|
4965 |
+
#: inc/personal.php:1655
|
4966 |
msgid "Modified"
|
4967 |
msgstr ""
|
4968 |
|
4969 |
+
#: inc/personal.php:1664
|
4970 |
msgid "Customization of email template, which is sending to Visitor after payment request"
|
4971 |
msgstr ""
|
4972 |
|
4973 |
+
#: inc/personal.php:1665
|
4974 |
msgid "Payment request"
|
4975 |
msgstr ""
|
4976 |
|
4977 |
+
#: inc/personal.php:1719
|
4978 |
msgid "Standard Form Template"
|
4979 |
msgstr ""
|
4980 |
|
4981 |
+
#: inc/personal.php:1720
|
4982 |
msgid "2 Columns Form Template"
|
4983 |
msgstr ""
|
4984 |
|
4985 |
+
#: inc/personal.php:1721
|
4986 |
msgid "Wizard Form Template(several steps)"
|
4987 |
msgstr ""
|
4988 |
|
4989 |
+
#: inc/personal.php:1723
|
4990 |
msgid "Payment Form Template"
|
4991 |
msgstr ""
|
4992 |
|
4993 |
+
#: inc/personal.php:1724
|
4994 |
msgid "Time Slots Form Template"
|
4995 |
msgstr ""
|
4996 |
|
4997 |
+
#: inc/personal.php:1726
|
4998 |
msgid "Time slots for different weekends Form Template"
|
4999 |
msgstr ""
|
5000 |
|
5001 |
+
#: inc/personal.php:1727
|
5002 |
msgid "Hints Form Template"
|
5003 |
msgstr ""
|
5004 |
|
5005 |
+
#: inc/personal.php:1740
|
5006 |
msgid "Reset Booking Form and Content of Booking Fields Form"
|
5007 |
msgstr ""
|
5008 |
|
5009 |
+
#: inc/personal.php:1744
|
5010 |
msgid "Both"
|
5011 |
msgstr ""
|
5012 |
|
5013 |
+
#: inc/personal.php:1756 inc/personal.php:4278
|
5014 |
msgid "Please configure the form for content of booking fields data!"
|
5015 |
msgstr ""
|
5016 |
|
5017 |
+
#: inc/personal.php:1764 inc/personal.php:4286
|
5018 |
msgid "Please configure the form fields!"
|
5019 |
msgstr ""
|
5020 |
|
5021 |
+
#: inc/personal.php:1797
|
5022 |
msgid "Default title of bookings"
|
5023 |
msgstr ""
|
5024 |
|
5025 |
+
#: inc/personal.php:1799
|
5026 |
#, php-format
|
5027 |
msgid ""
|
5028 |
"Type %sdefault title of bookings%s in calendar view mode at Booking Listing page (You can use "
|
5029 |
"the shortcodes from the bottom form of Settings Fields page)."
|
5030 |
msgstr ""
|
5031 |
|
5032 |
+
#: inc/personal.php:1816
|
5033 |
msgid "CSV data separator"
|
5034 |
msgstr ""
|
5035 |
|
5036 |
+
#: inc/personal.php:1821
|
5037 |
msgid "semicolon"
|
5038 |
msgstr ""
|
5039 |
|
5040 |
+
#: inc/personal.php:1822
|
5041 |
msgid "comma"
|
5042 |
msgstr ""
|
5043 |
|
5044 |
+
#: inc/personal.php:1828
|
5045 |
msgid "Select separator of data for export bookings to CSV."
|
5046 |
msgstr ""
|
5047 |
|
5048 |
+
#: inc/personal.php:1841
|
5049 |
msgid "Incorrect date format"
|
5050 |
msgstr ""
|
5051 |
|
5052 |
+
#: inc/personal.php:2097
|
5053 |
msgid "Booking Resource"
|
5054 |
msgstr ""
|
5055 |
|
5056 |
+
#: inc/personal.php:2107 lib/wpdev-bk-lib.php:1593
|
5057 |
msgid "All bookings"
|
5058 |
msgstr ""
|
5059 |
|
5060 |
+
#: inc/personal.php:2111
|
5061 |
msgid "All incoming bookings"
|
5062 |
msgstr ""
|
5063 |
|
5064 |
+
#: inc/personal.php:2116
|
5065 |
msgid "New reservations made today"
|
5066 |
msgstr ""
|
5067 |
|
5068 |
+
#: inc/personal.php:2121
|
5069 |
msgid "Reservations for today"
|
5070 |
msgstr ""
|
5071 |
|
5072 |
+
#: inc/personal.php:2143
|
5073 |
msgid "Add new booking resource"
|
5074 |
msgstr ""
|
5075 |
|
5076 |
+
#: inc/personal.php:3032
|
5077 |
msgid "Change your Booking"
|
5078 |
msgstr ""
|
5079 |
|
5080 |
+
#: inc/personal.php:3034
|
5081 |
msgid "Cancel Booking"
|
5082 |
msgstr ""
|
5083 |
|
5084 |
+
#: inc/personal.php:3280 inc/personal.php:3475 lib/wpbc-booking-new.php:158
|
5085 |
+
#: lib/wpbc-booking-new.php:160
|
5086 |
msgid "Updated successfully"
|
5087 |
msgstr ""
|
5088 |
|
5089 |
+
#: inc/personal.php:3294
|
5090 |
msgid "Warning! The resource was not changed. Current dates are already booked there."
|
5091 |
msgstr ""
|
5092 |
|
5093 |
+
#: inc/personal.php:3432
|
5094 |
msgid "The booking has been duplicated successfully"
|
5095 |
msgstr ""
|
5096 |
|
5097 |
+
#: inc/personal.php:3443
|
5098 |
msgid "Warning! Operation failed. Current dates are already booked there."
|
5099 |
msgstr ""
|
5100 |
|
5101 |
+
#: inc/personal.php:3710 lib/wpdev-settings-general.php:1983
|
5102 |
msgid "Email to \"Admin\" after a new booking"
|
5103 |
msgstr ""
|
5104 |
|
5105 |
+
#: inc/personal.php:3732 lib/wpdev-settings-general.php:2005
|
5106 |
#, php-format
|
5107 |
msgid "Type default %sadmin email%s for booking confirmation"
|
5108 |
msgstr ""
|
5109 |
|
5110 |
+
#: inc/personal.php:3739 lib/wpdev-settings-general.php:2012
|
5111 |
#, php-format
|
5112 |
msgid ""
|
5113 |
"Type the default %sadmin email%s sending the booking confimation. You can use this %s shortcode."
|
5114 |
msgstr ""
|
5115 |
|
5116 |
+
#: inc/personal.php:3746 lib/wpdev-settings-general.php:2019
|
5117 |
#, php-format
|
5118 |
msgid "Type your email %ssubject%s for the booking confimation message."
|
5119 |
msgstr ""
|
5120 |
|
5121 |
+
#: inc/personal.php:3767 lib/wpdev-settings-general.php:2039
|
5122 |
#, php-format
|
5123 |
msgid "Type your %semail message content for checking booking%s in. "
|
5124 |
msgstr ""
|
5125 |
|
5126 |
+
#: inc/personal.php:3776
|
5127 |
#, php-format
|
5128 |
msgid ""
|
5129 |
"For example: \"You have a new reservation %s on the following date(s): %s Contact information: "
|
5130 |
"%s You can approve or edit this booking at: %s Thank you, Reservation service.\""
|
5131 |
msgstr ""
|
5132 |
|
5133 |
+
#: inc/personal.php:3776 inc/personal.php:3849 inc/personal.php:3934 inc/personal.php:4113
|
5134 |
+
#: lib/wpbc-gcal.php:862 lib/wpdev-booking-functions.php:1769 lib/wpdev-settings-general.php:2048
|
5135 |
msgid "here"
|
5136 |
msgstr ""
|
5137 |
|
5138 |
+
#: inc/personal.php:3791 lib/wpdev-settings-general.php:2063
|
5139 |
msgid "Email to \"Person\" after they make a new reservation"
|
5140 |
msgstr ""
|
5141 |
|
5142 |
+
#: inc/personal.php:3821 lib/wpdev-settings-general.php:2093
|
5143 |
#, php-format
|
5144 |
msgid "Type email subject for %svisitor after creating a new reservation%s."
|
5145 |
msgstr ""
|
5146 |
|
5147 |
+
#: inc/personal.php:3822
|
5148 |
#, php-format
|
5149 |
msgid "Use these %s shortcodes."
|
5150 |
msgstr ""
|
5151 |
|
5152 |
+
#: inc/personal.php:3843 lib/wpdev-settings-general.php:2114
|
5153 |
#, php-format
|
5154 |
msgid "Type your %semail message for visitor after creating a new reservation%s"
|
5155 |
msgstr ""
|
5156 |
|
5157 |
+
#: inc/personal.php:3849
|
5158 |
#, php-format
|
5159 |
msgid ""
|
5160 |
"For example: \"Your reservation %s on these date(s): %s is processing now! We will send "
|
5162 |
"service.\""
|
5163 |
msgstr ""
|
5164 |
|
5165 |
+
#: inc/personal.php:3863 lib/wpdev-settings-general.php:2136
|
5166 |
msgid "Email to \"Person\" after booking is approved"
|
5167 |
msgstr ""
|
5168 |
|
5169 |
+
#: inc/personal.php:3906 lib/wpdev-settings-general.php:2179
|
5170 |
#, php-format
|
5171 |
msgid "Type your email subject for the %sapproved booking%s."
|
5172 |
msgstr ""
|
5173 |
|
5174 |
+
#: inc/personal.php:3926 lib/wpdev-settings-general.php:2199
|
5175 |
#, php-format
|
5176 |
msgid "Type your %semail message for the approved booking%s from the website"
|
5177 |
msgstr ""
|
5178 |
|
5179 |
+
#: inc/personal.php:3934
|
5180 |
#, php-format
|
5181 |
msgid ""
|
5182 |
"For example: \"Your reservation %s on these date(s): %s has been approved.%s You can edit this "
|
5183 |
"booking on this page: %s . Thank you, Reservation service.\""
|
5184 |
msgstr ""
|
5185 |
|
5186 |
+
#: inc/personal.php:3948 lib/wpdev-settings-general.php:2223
|
5187 |
msgid "Email to \"Person\" after their booking has been denied"
|
5188 |
msgstr ""
|
5189 |
|
5190 |
+
#: inc/personal.php:3993 lib/wpdev-settings-general.php:2268
|
5191 |
#, php-format
|
5192 |
msgid "Type your email subject for the %sdenied booking%s."
|
5193 |
msgstr ""
|
5194 |
|
5195 |
+
#: inc/personal.php:4013 lib/wpdev-settings-general.php:2288
|
5196 |
#, php-format
|
5197 |
msgid "Type your %semail message for the denied booking%s from the website"
|
5198 |
msgstr ""
|
5199 |
|
5200 |
+
#: inc/personal.php:4022 lib/wpdev-settings-general.php:2298
|
5201 |
#, php-format
|
5202 |
msgid ""
|
5203 |
"For example: \"Your reservation %s on these date(s): %s has been canceled. Please contact us for "
|
5204 |
"more information. %s Thank you, Reservation service.\""
|
5205 |
msgstr ""
|
5206 |
|
5207 |
+
#: inc/personal.php:4038
|
5208 |
msgid "Email to \"Person\" after booking is modified"
|
5209 |
msgstr ""
|
5210 |
|
5211 |
+
#: inc/personal.php:4083
|
5212 |
#, php-format
|
5213 |
msgid "Type your email subject for the %smodified booking%s. "
|
5214 |
msgstr ""
|
5215 |
|
5216 |
+
#: inc/personal.php:4103
|
5217 |
#, php-format
|
5218 |
msgid "Type your %semail message for the modified booking%s from the website"
|
5219 |
msgstr ""
|
5220 |
|
5221 |
+
#: inc/personal.php:4113
|
5222 |
#, php-format
|
5223 |
msgid ""
|
5224 |
"For example: \"The reservation %s on these date(s): %s has been modified. %s You can edit this "
|
5225 |
"booking on this page: %s . Thank you, Reservation service.\""
|
5226 |
msgstr ""
|
5227 |
|
5228 |
+
#: inc/personal.php:4195
|
5229 |
msgid "Form fields"
|
5230 |
msgstr ""
|
5231 |
|
5232 |
+
#: inc/personal.php:4237
|
5233 |
#, php-format
|
5234 |
msgid "Content of booking fields data for email templates (%s-shortcode) and booking listing page"
|
5235 |
msgstr ""
|
5236 |
|
5237 |
+
#: inc/personal.php:4259
|
5238 |
#, php-format
|
5239 |
msgid "%s - inserting data from fields of booking form"
|
5240 |
msgstr ""
|
5241 |
|
5242 |
+
#: inc/personal.php:4260
|
5243 |
#, php-format
|
5244 |
msgid "%s - inserting new line"
|
5245 |
msgstr ""
|
5246 |
|
5247 |
+
#: inc/personal.php:4261
|
5248 |
msgid "Use any other HTML tags (carefully)."
|
5249 |
msgstr ""
|
5250 |
|
5251 |
+
#: inc/personal.php:4355 inc/personal.php:4366 inc/personal.php:4381
|
5252 |
msgid "First Name"
|
5253 |
msgstr ""
|
5254 |
|
5255 |
+
#: inc/personal.php:4356 inc/personal.php:4367 inc/personal.php:4382
|
5256 |
msgid "Last Name"
|
5257 |
msgstr ""
|
5258 |
|
5259 |
+
#: inc/personal.php:4357 inc/personal.php:4368 inc/personal.php:4383
|
5260 |
msgid "Email"
|
5261 |
msgstr ""
|
5262 |
|
5263 |
+
#: inc/personal.php:4365 inc/personal.php:4380 lib/wpdev-bk-timeline.php:225
|
5264 |
+
#: lib/wpdev-bk-timeline.php:583
|
5265 |
msgid "Times"
|
5266 |
msgstr ""
|
5267 |
|
5268 |
+
#: inc/personal.php:4385
|
5269 |
msgid "Address"
|
5270 |
msgstr ""
|
5271 |
|
5272 |
+
#: inc/personal.php:4386
|
5273 |
msgid "City"
|
5274 |
msgstr ""
|
5275 |
|
5276 |
+
#: inc/personal.php:4387
|
5277 |
msgid "Post code"
|
5278 |
msgstr ""
|
5279 |
|
5280 |
+
#: inc/personal.php:4440
|
5281 |
msgid "Please, reserve an apartment with fresh flowers."
|
5282 |
msgstr ""
|
5283 |
|
5284 |
+
#: inc/personal.php:4546
|
5285 |
msgid "The reservation has been modified"
|
5286 |
msgstr ""
|
5287 |
|
5288 |
+
#: inc/personal.php:4547
|
5289 |
#, php-format
|
5290 |
msgid ""
|
5291 |
"The reservation %s for: %s has been modified. %sYou can edit this booking on this page: %s "
|
5292 |
"Thank you, %s"
|
5293 |
msgstr ""
|
5294 |
|
5295 |
+
#: inc/personal.php:4600
|
5296 |
msgid "Sending request..."
|
5297 |
msgstr ""
|
5298 |
|
5299 |
+
#: inc/personal.php:4627
|
5300 |
msgid "Order number"
|
5301 |
msgstr ""
|
5302 |
|
5303 |
+
#: inc/personal.php:4630
|
5304 |
msgid "Register"
|
5305 |
msgstr ""
|
5306 |
|
5307 |
+
#: inc/personal.php:4632
|
5308 |
msgid ""
|
5309 |
"Please, enter order number of your purchased version, which you received to your billing email."
|
5310 |
msgstr ""
|
5311 |
|
5312 |
+
#: inc/personal.php:4636
|
5313 |
#, php-format
|
5314 |
msgid "If you will get any difficulties or have a questions, please contact by email %s"
|
5315 |
msgstr ""
|
5326 |
msgid "Customization of synchronization with Google Calendar"
|
5327 |
msgstr ""
|
5328 |
|
5329 |
+
#: inc/sync/wpbc-sync-gcal-api.php:75 lib/wpdev-booking-class.php:726
|
5330 |
+
#: lib/wpdev-booking-class.php:1155
|
5331 |
msgid "General Settings"
|
5332 |
msgstr ""
|
5333 |
|
5335 |
msgid "Google Calendar ID"
|
5336 |
msgstr ""
|
5337 |
|
5338 |
+
#: inc/sync/wpbc-sync-gcal-feed.php:97 inc/wpbc-booking-select-widget.php:148
|
5339 |
+
#: lib/wpdev-booking-widget.php:115
|
5340 |
msgid "Booking resource"
|
5341 |
msgstr ""
|
5342 |
|
5344 |
msgid "Select booking resource"
|
5345 |
msgstr ""
|
5346 |
|
5347 |
+
#: inc/wpbc-booking-select-widget.php:52 lib/wpdev-booking-class.php:1937
|
5348 |
+
#: lib/wpdev-booking-widget.php:39
|
5349 |
msgid "You need to use special shortcode [bookingedit] for booking editing."
|
5350 |
msgstr ""
|
5351 |
|
5352 |
+
#: inc/wpbc-booking-select-widget.php:196 lib/wpdev-booking-widget.php:132
|
5353 |
msgid "Visible months"
|
5354 |
msgstr ""
|
5355 |
|
5356 |
+
#: inc/wpbc-booking-select-widget.php:258 lib/wpdev-booking-widget.php:156
|
5357 |
#, php-format
|
5358 |
msgid ""
|
5359 |
"%sImportant!!!%s Please note, if you show booking calendar (inserted into post/page) with widget "
|
5385 |
msgid "View details"
|
5386 |
msgstr ""
|
5387 |
|
5388 |
+
#: inc/wpdev-booking-search-widget.php:14 inc/wpdev-booking-search-widget.php:65
|
5389 |
msgid "Search availability"
|
5390 |
msgstr ""
|
5391 |
|
5392 |
+
#: inc/wpdev-booking-search-widget.php:15 inc/wpdev-booking-search-widget.php:77
|
5393 |
+
msgid "Search results."
|
5394 |
msgstr ""
|
5395 |
|
5396 |
+
#: inc/wpdev-booking-search-widget.php:16 inc/wpdev-booking-search-widget.php:73
|
5397 |
+
msgid "Nothing found."
|
5398 |
msgstr ""
|
5399 |
|
5400 |
+
#: inc/wpdev-booking-search-widget.php:83
|
5401 |
msgid "Title of search widget"
|
5402 |
msgstr ""
|
5403 |
|
5404 |
+
#: inc/wpdev-booking-search-widget.php:91
|
5405 |
msgid "Title of search results"
|
5406 |
msgstr ""
|
5407 |
|
5408 |
+
#: inc/wpdev-booking-search-widget.php:96
|
5409 |
#, php-format
|
5410 |
msgid "Please type the %sTitle of search results%s."
|
5411 |
msgstr ""
|
5412 |
|
5413 |
+
#: inc/wpdev-booking-search-widget.php:100
|
5414 |
msgid "Nothing found message"
|
5415 |
msgstr ""
|
5416 |
|
5417 |
+
#: inc/wpdev-booking-search-widget.php:105
|
5418 |
#, php-format
|
5419 |
msgid "Please type the %smessage ,what is showing, when nothing found%s."
|
5420 |
msgstr ""
|
5421 |
|
5422 |
+
#: inc/wpdev-booking-search-widget.php:109
|
5423 |
msgid "URL of Search Results"
|
5424 |
msgstr ""
|
5425 |
|
5426 |
+
#: inc/wpdev-booking-search-widget.php:114
|
5427 |
#, php-format
|
5428 |
msgid ""
|
5429 |
"Please type the URL of the page %s(with %s shortcode in content)%s, where search results will "
|
5430 |
"show."
|
5431 |
msgstr ""
|
5432 |
|
5433 |
+
#: lib/wpbc-ajax.php:35
|
5434 |
#, php-format
|
5435 |
msgid ""
|
5436 |
"%sError!%s Request do not pass security check! Please refresh the page and try one more time."
|
5437 |
msgstr ""
|
5438 |
|
5439 |
+
#: lib/wpbc-ajax.php:114
|
5440 |
msgid "Set as Read"
|
5441 |
msgstr ""
|
5442 |
|
5443 |
+
#: lib/wpbc-ajax.php:114
|
5444 |
msgid "Set as Unread"
|
5445 |
msgstr ""
|
5446 |
|
5447 |
+
#: lib/wpbc-ajax.php:171
|
5448 |
msgid "Set as Approved"
|
5449 |
msgstr ""
|
5450 |
|
5451 |
+
#: lib/wpbc-ajax.php:171
|
5452 |
msgid "Set as Pending"
|
5453 |
msgstr ""
|
5454 |
|
5455 |
+
#: lib/wpbc-ajax.php:189 lib/wpbc-ajax.php:245
|
5456 |
msgid "Reason for cancellation here"
|
5457 |
msgstr ""
|
5458 |
|
5459 |
+
#: lib/wpbc-ajax.php:190 lib/wpbc-ajax.php:246
|
5460 |
msgid "Reason of cancellation here"
|
5461 |
msgstr ""
|
5462 |
|
5464 |
msgid "The code you entered is incorrect"
|
5465 |
msgstr ""
|
5466 |
|
5467 |
+
#: lib/wpbc-booking-new.php:670
|
5468 |
msgid "Error!"
|
5469 |
msgstr ""
|
5470 |
|
5471 |
+
#: lib/wpbc-booking-new.php:671
|
5472 |
msgid ""
|
5473 |
"Probably these date(s) just was booking by other visitor. Please reload this page and make "
|
5474 |
"booking again."
|
5475 |
msgstr ""
|
5476 |
|
5477 |
+
#: lib/wpbc-class-dismiss.php:80 lib/wpbc-welcome.php:1412
|
5478 |
msgid "Dismiss"
|
5479 |
msgstr ""
|
5480 |
|
5520 |
msgid "Reload page"
|
5521 |
msgstr ""
|
5522 |
|
5523 |
+
#: lib/wpbc-gcal-class.php:637 lib/wpdev-bk-lib.php:1785
|
5524 |
msgid "Do you really want to delete selected booking(s) ?"
|
5525 |
msgstr ""
|
5526 |
|
5527 |
+
#: lib/wpbc-gcal-class.php:646
|
5528 |
msgid "Delete selected booking(s)"
|
5529 |
msgstr ""
|
5530 |
|
5696 |
msgid "seconds"
|
5697 |
msgstr ""
|
5698 |
|
|
|
|
|
|
|
|
|
5699 |
#: lib/wpbc-gcal.php:625
|
5700 |
msgid ""
|
5701 |
"You can specify an additional offset from you chosen start point. The offset can be negative."
|
5791 |
"failed. You can request the new update of your paid version at %1sthis page%2s."
|
5792 |
msgstr ""
|
5793 |
|
5794 |
+
#: lib/wpbc-scripts.php:57
|
5795 |
msgid "This field is required"
|
5796 |
msgstr ""
|
5797 |
|
5798 |
+
#: lib/wpbc-scripts.php:58
|
5799 |
msgid "This checkbox must be checked"
|
5800 |
msgstr ""
|
5801 |
|
5802 |
+
#: lib/wpbc-scripts.php:59
|
5803 |
msgid "At least one option must be selected"
|
5804 |
msgstr ""
|
5805 |
|
5806 |
+
#: lib/wpbc-scripts.php:60
|
5807 |
msgid "Incorrect email field"
|
5808 |
msgstr ""
|
5809 |
|
5810 |
+
#: lib/wpbc-scripts.php:61
|
5811 |
msgid "Your emails do not the same"
|
5812 |
msgstr ""
|
5813 |
|
5814 |
+
#: lib/wpbc-scripts.php:62
|
5815 |
msgid "Please, select booking date(s) at Calendar."
|
5816 |
msgstr ""
|
5817 |
|
5818 |
+
#: lib/wpbc-welcome.php:801 lib/wpbc-welcome.php:1250 lib/wpdev-booking-class.php:381
|
5819 |
+
#: lib/wpdev-settings-general.php:1339
|
5820 |
msgid "Purchase"
|
5821 |
msgstr ""
|
5822 |
|
5823 |
+
#: lib/wpbc-welcome.php:801 lib/wpbc-welcome.php:1250 lib/wpdev-bk-lib.php:696
|
5824 |
+
#: lib/wpdev-booking-class.php:381 lib/wpdev-settings-general.php:1339
|
5825 |
msgid "Upgrade Now"
|
5826 |
msgstr ""
|
5827 |
|
5828 |
+
#: lib/wpbc-welcome.php:1428
|
5829 |
msgid "We’ve assembled some links to get you started:"
|
5830 |
msgstr ""
|
5831 |
|
5832 |
+
#: lib/wpbc-welcome.php:1431
|
5833 |
msgid "Get Started"
|
5834 |
msgstr ""
|
5835 |
|
5836 |
+
#: lib/wpbc-welcome.php:1434
|
5837 |
#, php-format
|
5838 |
msgid "Insert booking form %sshortcode%s into your %sPost%s or %sPage%s"
|
5839 |
msgstr ""
|
5840 |
|
5841 |
+
#: lib/wpbc-welcome.php:1442
|
5842 |
#, php-format
|
5843 |
msgid "or add booking calendar %sWidget%s to your sidebar."
|
5844 |
msgstr ""
|
5845 |
|
5846 |
+
#: lib/wpbc-welcome.php:1448
|
5847 |
#, php-format
|
5848 |
msgid "Check %show todo%s that and what %sshortcodes%s are available."
|
5849 |
msgstr ""
|
5850 |
|
5851 |
+
#: lib/wpbc-welcome.php:1454
|
5852 |
#, php-format
|
5853 |
msgid "Add new booking from your post/page or from %sAdmin Panel%s."
|
5854 |
msgstr ""
|
5855 |
|
5856 |
+
#: lib/wpbc-welcome.php:1461
|
5857 |
msgid "Next Steps"
|
5858 |
msgstr ""
|
5859 |
|
5860 |
+
#: lib/wpbc-welcome.php:1464
|
5861 |
#, php-format
|
5862 |
msgid "Check %sBooking Listing%s page for new bookings."
|
5863 |
msgstr ""
|
5864 |
|
5865 |
+
#: lib/wpbc-welcome.php:1470
|
5866 |
#, php-format
|
5867 |
msgid "Configure booking %sSettings%s."
|
5868 |
msgstr ""
|
5869 |
|
5870 |
+
#: lib/wpbc-welcome.php:1475
|
5871 |
#, php-format
|
5872 |
msgid "Configure predefined set of your %sForm Fields%s."
|
5873 |
msgstr ""
|
5874 |
|
5875 |
+
#: lib/wpbc-welcome.php:1480
|
5876 |
#, php-format
|
5877 |
msgid "Configure your predefined %sEmail Templates%s."
|
5878 |
msgstr ""
|
5879 |
|
5880 |
+
#: lib/wpbc-welcome.php:1487
|
5881 |
msgid "Have a questions?"
|
5882 |
msgstr ""
|
5883 |
|
5884 |
+
#: lib/wpbc-welcome.php:1490
|
5885 |
#, php-format
|
5886 |
msgid "Check out our %sHelp%s"
|
5887 |
msgstr ""
|
5888 |
|
5889 |
+
#: lib/wpbc-welcome.php:1495
|
5890 |
#, php-format
|
5891 |
msgid "See %sFAQ%s."
|
5892 |
msgstr ""
|
5893 |
|
5894 |
+
#: lib/wpbc-welcome.php:1500
|
5895 |
#, php-format
|
5896 |
msgid "Still having questions? Contact %sSupport%s."
|
5897 |
msgstr ""
|
5898 |
|
5899 |
+
#: lib/wpbc-welcome.php:1508
|
5900 |
#, php-format
|
5901 |
msgid "Need even more functionality? Check %s higher versions %s"
|
5902 |
msgstr ""
|
5905 |
msgid "Insert booking calendar"
|
5906 |
msgstr ""
|
5907 |
|
5908 |
+
#: lib/wpdev-bk-edit-toolbar-buttons.php:31 lib/wpdev-booking-class.php:646
|
5909 |
msgid "Booking calendar"
|
5910 |
msgstr ""
|
5911 |
|
5925 |
msgid "Show in the page:"
|
5926 |
msgstr ""
|
5927 |
|
5928 |
+
#: lib/wpdev-bk-edit-toolbar-buttons.php:437 lib/wpdev-booking-widget.php:105
|
5929 |
msgid "Booking form with calendar"
|
5930 |
msgstr ""
|
5931 |
|
5932 |
+
#: lib/wpdev-bk-edit-toolbar-buttons.php:438 lib/wpdev-booking-widget.php:106
|
5933 |
msgid "Only availability calendar"
|
5934 |
msgstr ""
|
5935 |
|
6001 |
"Visitor can select only 4 days starting at Monday, 3 or 7 days – Friday, 2 days – Saturday, etc…"
|
6002 |
msgstr ""
|
6003 |
|
6004 |
+
#: lib/wpdev-bk-lib.php:305
|
6005 |
msgid "week"
|
6006 |
msgstr ""
|
6007 |
|
6008 |
+
#: lib/wpdev-bk-lib.php:306
|
6009 |
msgid "weeks"
|
6010 |
msgstr ""
|
6011 |
|
6012 |
+
#: lib/wpdev-bk-lib.php:307
|
6013 |
msgid "month"
|
6014 |
msgstr ""
|
6015 |
|
6016 |
+
#: lib/wpdev-bk-lib.php:308 lib/wpdev-bk-lib.php:309 lib/wpdev-bk-lib.php:310
|
6017 |
msgid "months"
|
6018 |
msgstr ""
|
6019 |
|
6020 |
+
#: lib/wpdev-bk-lib.php:311 lib/wpdev-bk-lib.php:2348 lib/wpdev-settings-general.php:766
|
6021 |
+
#: lib/wpdev-settings-general.php:772
|
6022 |
msgid "Year"
|
6023 |
msgstr ""
|
6024 |
|
6025 |
+
#: lib/wpdev-bk-lib.php:314
|
6026 |
msgid "Current dates"
|
6027 |
msgstr ""
|
6028 |
|
6029 |
+
#: lib/wpdev-bk-lib.php:315
|
6030 |
msgid "Today"
|
6031 |
msgstr ""
|
6032 |
|
6033 |
+
#: lib/wpdev-bk-lib.php:316
|
6034 |
msgid "Previous dates"
|
6035 |
msgstr ""
|
6036 |
|
6037 |
+
#: lib/wpdev-bk-lib.php:317
|
6038 |
msgid "All dates"
|
6039 |
msgstr ""
|
6040 |
|
6041 |
+
#: lib/wpdev-bk-lib.php:318 lib/wpdev-bk-lib.php:439 lib/wpdev-bk-lib.php:2206
|
6042 |
msgid "Next"
|
6043 |
msgstr ""
|
6044 |
|
6045 |
+
#: lib/wpdev-bk-lib.php:319 lib/wpdev-bk-lib.php:462
|
6046 |
msgid "Prior"
|
6047 |
msgstr ""
|
6048 |
|
6049 |
+
#: lib/wpdev-bk-lib.php:321
|
6050 |
msgid "Check In - Tomorrow"
|
6051 |
msgstr ""
|
6052 |
|
6053 |
+
#: lib/wpdev-bk-lib.php:322
|
6054 |
msgid "Check Out - Tomorrow"
|
6055 |
msgstr ""
|
6056 |
|
6057 |
+
#: lib/wpdev-bk-lib.php:323
|
6058 |
msgid "Today check in/out"
|
6059 |
msgstr ""
|
6060 |
|
6061 |
+
#: lib/wpdev-bk-lib.php:487
|
6062 |
msgid "Check-in"
|
6063 |
msgstr ""
|
6064 |
|
6065 |
+
#: lib/wpdev-bk-lib.php:497
|
6066 |
msgid "Check-out"
|
6067 |
msgstr ""
|
6068 |
|
6069 |
+
#: lib/wpdev-bk-lib.php:520 lib/wpdev-bk-lib.php:582 lib/wpdev-bk-lib.php:638
|
6070 |
+
#: lib/wpdev-bk-lib.php:1524
|
6071 |
msgid "Apply"
|
6072 |
msgstr ""
|
6073 |
|
6074 |
+
#: lib/wpdev-bk-lib.php:620
|
6075 |
msgid "Start Date"
|
6076 |
msgstr ""
|
6077 |
|
6078 |
+
#: lib/wpdev-bk-lib.php:663 lib/wpdev-settings-general.php:44
|
6079 |
msgid "Booking Listing"
|
6080 |
msgstr ""
|
6081 |
|
6082 |
+
#: lib/wpdev-bk-lib.php:667 lib/wpdev-settings-general.php:737
|
6083 |
msgid "Calendar Overview"
|
6084 |
msgstr ""
|
6085 |
|
6086 |
+
#: lib/wpdev-bk-lib.php:676
|
6087 |
msgid "Booking Calendar - Overview"
|
6088 |
msgstr ""
|
6089 |
|
6090 |
+
#: lib/wpdev-bk-lib.php:684 lib/wpdev-bk-lib.php:692
|
6091 |
msgid "Help"
|
6092 |
msgstr ""
|
6093 |
|
6094 |
+
#: lib/wpdev-bk-lib.php:690
|
6095 |
msgid "About Booking Calendar"
|
6096 |
msgstr ""
|
6097 |
|
6098 |
+
#: lib/wpdev-bk-lib.php:693 lib/wpdev-booking-class.php:471 lib/wpdev-booking-class.php:1218
|
6099 |
+
#: lib/wpdev-booking-class.php:1220
|
6100 |
msgid "FAQ"
|
6101 |
msgstr ""
|
6102 |
|
6103 |
+
#: lib/wpdev-bk-lib.php:694
|
6104 |
msgid "Technical Support"
|
6105 |
msgstr ""
|
6106 |
|
6107 |
+
#: lib/wpdev-bk-lib.php:1425
|
6108 |
msgid "Filter"
|
6109 |
msgstr ""
|
6110 |
|
6111 |
+
#: lib/wpdev-bk-lib.php:1470
|
6112 |
msgid "Expand Advanced Filter"
|
6113 |
msgstr ""
|
6114 |
|
6115 |
+
#: lib/wpdev-bk-lib.php:1471
|
6116 |
msgid "Collapse Advanced Filter"
|
6117 |
msgstr ""
|
6118 |
|
6119 |
+
#: lib/wpdev-bk-lib.php:1488
|
6120 |
msgid "Send email notification to customer after approval, cancellation or deletion of bookings"
|
6121 |
msgstr ""
|
6122 |
|
6123 |
+
#: lib/wpdev-bk-lib.php:1489
|
6124 |
msgid "Emails sending"
|
6125 |
msgstr ""
|
6126 |
|
6127 |
+
#: lib/wpdev-bk-lib.php:1512
|
6128 |
msgid "Booking ID"
|
6129 |
msgstr ""
|
6130 |
|
6131 |
+
#: lib/wpdev-bk-lib.php:1521
|
6132 |
msgid "Refresh booking listing"
|
6133 |
msgstr ""
|
6134 |
|
6135 |
+
#: lib/wpdev-bk-lib.php:1525
|
6136 |
msgid "Reset filter to default values"
|
6137 |
msgstr ""
|
6138 |
|
6139 |
+
#: lib/wpdev-bk-lib.php:1566 lib/wpdev-bk-lib.php:1656
|
6140 |
msgid "Any"
|
6141 |
msgstr ""
|
6142 |
|
6143 |
+
#: lib/wpdev-bk-lib.php:1594
|
6144 |
msgid "New bookings"
|
6145 |
msgstr ""
|
6146 |
|
6147 |
+
#: lib/wpdev-bk-lib.php:1597 lib/wpdev-booking-widget.php:101
|
6148 |
msgid "Show"
|
6149 |
msgstr ""
|
6150 |
|
6151 |
+
#: lib/wpdev-bk-lib.php:1609
|
6152 |
msgid "Creation"
|
6153 |
msgstr ""
|
6154 |
|
6155 |
+
#: lib/wpdev-bk-lib.php:1643
|
6156 |
msgid "Order by"
|
6157 |
msgstr ""
|
6158 |
|
6159 |
+
#: lib/wpdev-bk-lib.php:1653
|
6160 |
+
msgid "Exist"
|
6161 |
+
msgstr ""
|
6162 |
+
|
6163 |
+
#: lib/wpdev-bk-lib.php:1654
|
6164 |
+
msgid "In Trash"
|
6165 |
+
msgstr ""
|
6166 |
+
|
6167 |
+
#: lib/wpdev-bk-lib.php:1658 lib/wpdev-booking-class.php:683 lib/wpdev-booking-functions.php:2470
|
6168 |
+
#: lib/wpdev-settings-general.php:1200
|
6169 |
+
msgid "Bookings"
|
6170 |
+
msgstr ""
|
6171 |
+
|
6172 |
+
#: lib/wpdev-bk-lib.php:1673
|
6173 |
msgid ""
|
6174 |
"Save filter settings as default template (Please, click Apply filter button, before saving!)"
|
6175 |
msgstr ""
|
6176 |
|
6177 |
+
#: lib/wpdev-bk-lib.php:1676
|
6178 |
msgid "Save as Default"
|
6179 |
msgstr ""
|
6180 |
|
6181 |
+
#: lib/wpdev-bk-lib.php:1681
|
6182 |
msgid "Delete your previously saved default filer template!"
|
6183 |
msgstr ""
|
6184 |
|
6185 |
+
#: lib/wpdev-bk-lib.php:1684
|
6186 |
msgid "Delete template"
|
6187 |
msgstr ""
|
6188 |
|
6189 |
+
#: lib/wpdev-bk-lib.php:1755
|
6190 |
msgid "Approve selected bookings"
|
6191 |
msgstr ""
|
6192 |
|
6193 |
+
#: lib/wpdev-bk-lib.php:1759 lib/wpdev-bk-lib.php:2089
|
6194 |
msgid "Approve"
|
6195 |
msgstr ""
|
6196 |
|
6197 |
+
#: lib/wpdev-bk-lib.php:1760
|
6198 |
msgid "Set selected bookings as pending"
|
6199 |
msgstr ""
|
6200 |
|
6201 |
+
#: lib/wpdev-bk-lib.php:1762 lib/wpdev-bk-lib.php:2093
|
6202 |
msgid "Do you really want to set booking as pending ?"
|
6203 |
msgstr ""
|
6204 |
|
6205 |
+
#: lib/wpdev-bk-lib.php:1765 lib/wpdev-bk-lib.php:2094
|
6206 |
msgid "Reject"
|
6207 |
msgstr ""
|
6208 |
|
6209 |
+
#: lib/wpdev-bk-lib.php:1769
|
6210 |
+
msgid "Move selected bookings to trash"
|
6211 |
+
msgstr ""
|
6212 |
+
|
6213 |
+
#: lib/wpdev-bk-lib.php:1771 lib/wpdev-bk-lib.php:1778
|
6214 |
+
msgid "Do you really want to do this ?"
|
6215 |
+
msgstr ""
|
6216 |
+
|
6217 |
+
#: lib/wpdev-bk-lib.php:1775 lib/wpdev-bk-lib.php:2059
|
6218 |
+
msgid "Trash"
|
6219 |
+
msgstr ""
|
6220 |
+
|
6221 |
+
#: lib/wpdev-bk-lib.php:1776
|
6222 |
+
msgid "Restore selected bookings"
|
6223 |
+
msgstr ""
|
6224 |
+
|
6225 |
+
#: lib/wpdev-bk-lib.php:1782 lib/wpdev-bk-lib.php:2107
|
6226 |
+
msgid "Restore"
|
6227 |
+
msgstr ""
|
6228 |
+
|
6229 |
+
#: lib/wpdev-bk-lib.php:1783
|
6230 |
msgid "Delete selected bookings"
|
6231 |
msgstr ""
|
6232 |
|
6233 |
+
#: lib/wpdev-bk-lib.php:1791
|
6234 |
msgid "Reason of cancellation"
|
6235 |
msgstr ""
|
6236 |
|
6237 |
+
#: lib/wpdev-bk-lib.php:1796
|
6238 |
msgid "Mark as read all bookings"
|
6239 |
msgstr ""
|
6240 |
|
6241 |
+
#: lib/wpdev-bk-lib.php:1800
|
6242 |
msgid "Read All"
|
6243 |
msgstr ""
|
6244 |
|
6245 |
+
#: lib/wpdev-bk-lib.php:1801
|
6246 |
msgid "Mark as read selected bookings"
|
6247 |
msgstr ""
|
6248 |
|
6249 |
+
#: lib/wpdev-bk-lib.php:1805
|
6250 |
msgid "Read"
|
6251 |
msgstr ""
|
6252 |
|
6253 |
+
#: lib/wpdev-bk-lib.php:1806
|
6254 |
msgid "Mark as Unread selected bookings"
|
6255 |
msgstr ""
|
6256 |
|
6257 |
+
#: lib/wpdev-bk-lib.php:1810 lib/wpdev-bk-lib.php:2030
|
6258 |
msgid "Unread"
|
6259 |
msgstr ""
|
6260 |
|
6261 |
+
#: lib/wpdev-bk-lib.php:1855
|
6262 |
msgid "Booking Data"
|
6263 |
msgstr ""
|
6264 |
|
6265 |
+
#: lib/wpdev-bk-lib.php:1856
|
6266 |
msgid "Booking Dates"
|
6267 |
msgstr ""
|
6268 |
|
6269 |
+
#: lib/wpdev-bk-lib.php:1861
|
6270 |
msgid "Show ALL dates of booking"
|
6271 |
msgstr ""
|
6272 |
|
6273 |
+
#: lib/wpdev-bk-lib.php:1866
|
6274 |
msgid "Show only check in/out dates"
|
6275 |
msgstr ""
|
6276 |
|
6277 |
+
#: lib/wpdev-bk-lib.php:1873
|
6278 |
msgid "Nothing found!"
|
6279 |
msgstr ""
|
6280 |
|
6281 |
+
#: lib/wpdev-bk-lib.php:1909
|
6282 |
msgid "Resource not exist"
|
6283 |
msgstr ""
|
6284 |
|
6285 |
+
#: lib/wpdev-bk-lib.php:2030
|
6286 |
msgid "Mark"
|
6287 |
msgstr ""
|
6288 |
|
6289 |
+
#: lib/wpdev-bk-lib.php:2101 lib/wpdev-bk-lib.php:2111
|
6290 |
msgid "Do you really want to delete this booking ?"
|
6291 |
msgstr ""
|
6292 |
|
6293 |
+
#: lib/wpdev-bk-lib.php:2102
|
6294 |
+
msgid "Move to Trash"
|
6295 |
+
msgstr ""
|
6296 |
+
|
6297 |
+
#: lib/wpdev-bk-lib.php:2112
|
6298 |
+
msgid "Completely Delete"
|
6299 |
+
msgstr ""
|
6300 |
+
|
6301 |
+
#: lib/wpdev-bk-lib.php:2126
|
6302 |
msgid "Default Locale"
|
6303 |
msgstr ""
|
6304 |
|
6305 |
+
#: lib/wpdev-bk-lib.php:2188
|
6306 |
msgid "Prev"
|
6307 |
msgstr ""
|
6308 |
|
6309 |
+
#: lib/wpdev-bk-lib.php:2337 lib/wpdev-bk-lib.php:2369
|
6310 |
msgid "Show month"
|
6311 |
msgstr ""
|
6312 |
|
6313 |
+
#: lib/wpdev-bk-lib.php:2340 lib/wpdev-bk-lib.php:2372 lib/wpdev-settings-general.php:761
|
6314 |
+
#: lib/wpdev-settings-general.php:770
|
6315 |
msgid "Month"
|
6316 |
msgstr ""
|
6317 |
|
6318 |
+
#: lib/wpdev-bk-lib.php:2341
|
6319 |
msgid "Show 3 months"
|
6320 |
msgstr ""
|
6321 |
|
6322 |
+
#: lib/wpdev-bk-lib.php:2344 lib/wpdev-settings-general.php:765 lib/wpdev-settings-general.php:771
|
6323 |
msgid "3 Months"
|
6324 |
msgstr ""
|
6325 |
|
6326 |
+
#: lib/wpdev-bk-lib.php:2345
|
6327 |
msgid "Show year"
|
6328 |
msgstr ""
|
6329 |
|
6330 |
+
#: lib/wpdev-bk-lib.php:2354 lib/wpdev-bk-lib.php:2388
|
6331 |
msgid "Calendar view mode"
|
6332 |
msgstr ""
|
6333 |
|
6334 |
+
#: lib/wpdev-bk-lib.php:2361
|
6335 |
msgid "Show day"
|
6336 |
msgstr ""
|
6337 |
|
6338 |
+
#: lib/wpdev-bk-lib.php:2364 lib/wpdev-settings-general.php:758
|
6339 |
msgid "Day"
|
6340 |
msgstr ""
|
6341 |
|
6342 |
+
#: lib/wpdev-bk-lib.php:2365
|
6343 |
msgid "Show week"
|
6344 |
msgstr ""
|
6345 |
|
6346 |
+
#: lib/wpdev-bk-lib.php:2368 lib/wpdev-settings-general.php:759
|
6347 |
msgid "Week"
|
6348 |
msgstr ""
|
6349 |
|
6350 |
+
#: lib/wpdev-bk-lib.php:2373
|
6351 |
msgid "Show 2 months"
|
6352 |
msgstr ""
|
6353 |
|
6354 |
+
#: lib/wpdev-bk-lib.php:2376 lib/wpdev-settings-general.php:763
|
6355 |
msgid "2 Months"
|
6356 |
msgstr ""
|
6357 |
|
6358 |
+
#: lib/wpdev-bk-lib.php:2414 lib/wpdev-bk-lib.php:2428 lib/wpdev-bk-lib.php:2475
|
6359 |
msgid "Previous 4 weeks"
|
6360 |
msgstr ""
|
6361 |
|
6362 |
+
#: lib/wpdev-bk-lib.php:2415 lib/wpdev-bk-lib.php:2429 lib/wpdev-bk-lib.php:2476
|
6363 |
msgid "Previous week"
|
6364 |
msgstr ""
|
6365 |
|
6366 |
+
#: lib/wpdev-bk-lib.php:2416 lib/wpdev-bk-lib.php:2430 lib/wpdev-bk-lib.php:2477
|
6367 |
msgid "Current week"
|
6368 |
msgstr ""
|
6369 |
|
6370 |
+
#: lib/wpdev-bk-lib.php:2417 lib/wpdev-bk-lib.php:2431 lib/wpdev-bk-lib.php:2478
|
6371 |
msgid "Next week"
|
6372 |
msgstr ""
|
6373 |
|
6374 |
+
#: lib/wpdev-bk-lib.php:2418 lib/wpdev-bk-lib.php:2432 lib/wpdev-bk-lib.php:2479
|
6375 |
msgid "Next 4 weeks"
|
6376 |
msgstr ""
|
6377 |
|
6378 |
+
#: lib/wpdev-bk-lib.php:2442 lib/wpdev-bk-lib.php:2492 lib/wpdev-bk-lib.php:2507
|
6379 |
msgid "Previous 3 months"
|
6380 |
msgstr ""
|
6381 |
|
6382 |
+
#: lib/wpdev-bk-lib.php:2443 lib/wpdev-bk-lib.php:2493 lib/wpdev-bk-lib.php:2508
|
6383 |
msgid "Previous month"
|
6384 |
msgstr ""
|
6385 |
|
6386 |
+
#: lib/wpdev-bk-lib.php:2444 lib/wpdev-bk-lib.php:2494 lib/wpdev-bk-lib.php:2509
|
6387 |
msgid "Current month"
|
6388 |
msgstr ""
|
6389 |
|
6390 |
+
#: lib/wpdev-bk-lib.php:2445 lib/wpdev-bk-lib.php:2495 lib/wpdev-bk-lib.php:2510
|
6391 |
msgid "Next month"
|
6392 |
msgstr ""
|
6393 |
|
6394 |
+
#: lib/wpdev-bk-lib.php:2446 lib/wpdev-bk-lib.php:2496 lib/wpdev-bk-lib.php:2511
|
6395 |
msgid "Next 3 months"
|
6396 |
msgstr ""
|
6397 |
|
6398 |
+
#: lib/wpdev-bk-lib.php:2460
|
6399 |
msgid "Previous 7 days"
|
6400 |
msgstr ""
|
6401 |
|
6402 |
+
#: lib/wpdev-bk-lib.php:2461
|
6403 |
msgid "Previous day"
|
6404 |
msgstr ""
|
6405 |
|
6406 |
+
#: lib/wpdev-bk-lib.php:2462
|
6407 |
msgid "Current day"
|
6408 |
msgstr ""
|
6409 |
|
6410 |
+
#: lib/wpdev-bk-lib.php:2463
|
6411 |
msgid "Next day"
|
6412 |
msgstr ""
|
6413 |
|
6414 |
+
#: lib/wpdev-bk-lib.php:2464
|
6415 |
msgid "Next 7 days"
|
6416 |
msgstr ""
|
6417 |
|
6418 |
+
#: lib/wpdev-bk-lib.php:2535
|
6419 |
msgid "Calendar Navigation"
|
6420 |
msgstr ""
|
6421 |
|
6431 |
msgid "F"
|
6432 |
msgstr ""
|
6433 |
|
6434 |
+
#: lib/wpdev-bk-timeline.php:122 lib/wpdev-bk-timeline.php:159 lib/wpdev-bk-timeline.php:470
|
6435 |
+
#: lib/wpdev-bk-timeline.php:476 lib/wpdev-bk-timeline.php:482 lib/wpdev-bk-timeline.php:488
|
6436 |
+
#: lib/wpdev-bk-timeline.php:504 lib/wpdev-bk-timeline.php:510
|
6437 |
msgid "Mon"
|
6438 |
msgstr ""
|
6439 |
|
6440 |
+
#: lib/wpdev-bk-timeline.php:122 lib/wpdev-bk-timeline.php:159 lib/wpdev-bk-timeline.php:470
|
6441 |
+
#: lib/wpdev-bk-timeline.php:476 lib/wpdev-bk-timeline.php:482 lib/wpdev-bk-timeline.php:488
|
6442 |
+
#: lib/wpdev-bk-timeline.php:504 lib/wpdev-bk-timeline.php:510
|
6443 |
msgid "Tue"
|
6444 |
msgstr ""
|
6445 |
|
6446 |
+
#: lib/wpdev-bk-timeline.php:122 lib/wpdev-bk-timeline.php:159 lib/wpdev-bk-timeline.php:470
|
6447 |
+
#: lib/wpdev-bk-timeline.php:476 lib/wpdev-bk-timeline.php:482 lib/wpdev-bk-timeline.php:488
|
6448 |
+
#: lib/wpdev-bk-timeline.php:504 lib/wpdev-bk-timeline.php:510
|
6449 |
msgid "Wed"
|
6450 |
msgstr ""
|
6451 |
|
6452 |
+
#: lib/wpdev-bk-timeline.php:122 lib/wpdev-bk-timeline.php:159 lib/wpdev-bk-timeline.php:470
|
6453 |
+
#: lib/wpdev-bk-timeline.php:476 lib/wpdev-bk-timeline.php:482 lib/wpdev-bk-timeline.php:488
|
6454 |
+
#: lib/wpdev-bk-timeline.php:504 lib/wpdev-bk-timeline.php:510
|
6455 |
msgid "Thu"
|
6456 |
msgstr ""
|
6457 |
|
6458 |
+
#: lib/wpdev-bk-timeline.php:122 lib/wpdev-bk-timeline.php:159 lib/wpdev-bk-timeline.php:470
|
6459 |
+
#: lib/wpdev-bk-timeline.php:476 lib/wpdev-bk-timeline.php:482 lib/wpdev-bk-timeline.php:488
|
6460 |
+
#: lib/wpdev-bk-timeline.php:504 lib/wpdev-bk-timeline.php:510
|
6461 |
msgid "Fri"
|
6462 |
msgstr ""
|
6463 |
|
6464 |
+
#: lib/wpdev-bk-timeline.php:122 lib/wpdev-bk-timeline.php:159 lib/wpdev-bk-timeline.php:470
|
6465 |
+
#: lib/wpdev-bk-timeline.php:476 lib/wpdev-bk-timeline.php:482 lib/wpdev-bk-timeline.php:488
|
6466 |
+
#: lib/wpdev-bk-timeline.php:504 lib/wpdev-bk-timeline.php:510
|
6467 |
msgid "Sat"
|
6468 |
msgstr ""
|
6469 |
|
6470 |
+
#: lib/wpdev-bk-timeline.php:122 lib/wpdev-bk-timeline.php:159 lib/wpdev-bk-timeline.php:470
|
6471 |
+
#: lib/wpdev-bk-timeline.php:476 lib/wpdev-bk-timeline.php:482 lib/wpdev-bk-timeline.php:488
|
6472 |
+
#: lib/wpdev-bk-timeline.php:504 lib/wpdev-bk-timeline.php:510
|
6473 |
msgid "Sun"
|
6474 |
msgstr ""
|
6475 |
|
6481 |
msgid "S"
|
6482 |
msgstr ""
|
6483 |
|
6484 |
+
#: lib/wpdev-booking-class.php:145 lib/wpdev-booking-widget.php:14
|
6485 |
msgid "Booking Calendar"
|
6486 |
msgstr ""
|
6487 |
|
6488 |
+
#: lib/wpdev-booking-class.php:343
|
6489 |
msgid "Statistic"
|
6490 |
msgstr ""
|
6491 |
|
6492 |
+
#: lib/wpdev-booking-class.php:347
|
6493 |
msgid "New (unverified) booking(s)"
|
6494 |
msgstr ""
|
6495 |
|
6496 |
+
#: lib/wpdev-booking-class.php:351
|
6497 |
msgid "Pending booking(s)"
|
6498 |
msgstr ""
|
6499 |
|
6500 |
+
#: lib/wpdev-booking-class.php:357
|
6501 |
msgid "Agenda"
|
6502 |
msgstr ""
|
6503 |
|
6504 |
+
#: lib/wpdev-booking-class.php:361
|
6505 |
msgid "New booking(s) made today"
|
6506 |
msgstr ""
|
6507 |
|
6508 |
+
#: lib/wpdev-booking-class.php:365
|
6509 |
msgid "Bookings for today"
|
6510 |
msgstr ""
|
6511 |
|
6512 |
+
#: lib/wpdev-booking-class.php:379
|
6513 |
msgid "Upgrade to higher versions"
|
6514 |
msgstr ""
|
6515 |
|
6516 |
+
#: lib/wpdev-booking-class.php:396
|
6517 |
msgid "Current version"
|
6518 |
msgstr ""
|
6519 |
|
6520 |
+
#: lib/wpdev-booking-class.php:399
|
6521 |
msgid "Version"
|
6522 |
msgstr ""
|
6523 |
|
6524 |
+
#: lib/wpdev-booking-class.php:415
|
6525 |
msgid "Type"
|
6526 |
msgstr ""
|
6527 |
|
6528 |
+
#: lib/wpdev-booking-class.php:419
|
6529 |
msgid "Used for"
|
6530 |
msgstr ""
|
6531 |
|
6532 |
+
#: lib/wpdev-booking-class.php:428
|
6533 |
msgid "websites"
|
6534 |
msgstr ""
|
6535 |
|
6536 |
+
#: lib/wpdev-booking-class.php:430
|
6537 |
msgid "website"
|
6538 |
msgstr ""
|
6539 |
|
6540 |
+
#: lib/wpdev-booking-class.php:436
|
6541 |
msgid "Release date"
|
6542 |
msgstr ""
|
6543 |
|
6544 |
+
#: lib/wpdev-booking-class.php:446
|
6545 |
msgid "Check Premium Features"
|
6546 |
msgstr ""
|
6547 |
|
6548 |
+
#: lib/wpdev-booking-class.php:448 lib/wpdev-booking-class.php:1187
|
6549 |
+
#: lib/wpdev-booking-class.php:1188 lib/wpdev-booking-class.php:1196
|
6550 |
+
#: lib/wpdev-booking-class.php:1197
|
6551 |
msgid "Upgrade"
|
6552 |
msgstr ""
|
6553 |
|
6554 |
+
#: lib/wpdev-booking-class.php:450
|
6555 |
msgid "Explore Premium Features"
|
6556 |
msgstr ""
|
6557 |
|
6558 |
+
#: lib/wpdev-booking-class.php:459
|
6559 |
msgid "Support"
|
6560 |
msgstr ""
|
6561 |
|
6562 |
+
#: lib/wpdev-booking-class.php:464
|
6563 |
msgid "Getting Started"
|
6564 |
msgstr ""
|
6565 |
|
6566 |
+
#: lib/wpdev-booking-class.php:474
|
6567 |
msgid "Contact email"
|
6568 |
msgstr ""
|
6569 |
|
6570 |
+
#: lib/wpdev-booking-class.php:477
|
6571 |
msgid "Rate plugin (thanks:)"
|
6572 |
msgstr ""
|
6573 |
|
6574 |
+
#: lib/wpdev-booking-class.php:540
|
6575 |
msgid "Warning !!!"
|
6576 |
msgstr ""
|
6577 |
|
6578 |
+
#: lib/wpdev-booking-class.php:541
|
6579 |
msgid "All booking data will be deleted when the plugin is deactivated."
|
6580 |
msgstr ""
|
6581 |
|
6582 |
+
#: lib/wpdev-booking-class.php:542
|
6583 |
#, php-format
|
6584 |
msgid ""
|
6585 |
"If you want to save your booking data, please uncheck the %s\"Delete booking data\"%s at the"
|
6586 |
msgstr ""
|
6587 |
|
6588 |
+
#: lib/wpdev-booking-class.php:543
|
6589 |
msgid "settings page"
|
6590 |
msgstr ""
|
6591 |
|
6592 |
+
#: lib/wpdev-booking-class.php:593 lib/wpdev-booking-class.php:673
|
6593 |
+
#: lib/wpdev-booking-functions.php:2504 lib/wpdev-settings-general.php:1241
|
6594 |
msgid "Settings"
|
6595 |
msgstr ""
|
6596 |
|
6597 |
+
#: lib/wpdev-booking-class.php:597
|
6598 |
msgid "Check new functionality in this plugin update."
|
6599 |
msgstr ""
|
6600 |
|
6601 |
+
#: lib/wpdev-booking-class.php:597
|
6602 |
msgid "What's New"
|
6603 |
msgstr ""
|
6604 |
|
6605 |
+
#: lib/wpdev-booking-class.php:635
|
6606 |
msgid "Booking"
|
6607 |
msgstr ""
|
6608 |
|
6609 |
+
#: lib/wpdev-booking-class.php:673
|
6610 |
msgid "Booking Calendar Settings"
|
6611 |
msgstr ""
|
6612 |
|
6613 |
+
#: lib/wpdev-booking-class.php:714
|
|
|
|
|
|
|
|
|
|
|
6614 |
msgid "Bookings listing"
|
6615 |
msgstr ""
|
6616 |
|
6617 |
+
#: lib/wpdev-booking-class.php:1075
|
6618 |
msgid "Send email notification to customer about this operation"
|
6619 |
msgstr ""
|
6620 |
|
6621 |
+
#: lib/wpdev-booking-class.php:1154
|
6622 |
msgid "General"
|
6623 |
msgstr ""
|
6624 |
|
6625 |
+
#: lib/wpdev-booking-class.php:1159
|
6626 |
msgid "Fields"
|
6627 |
msgstr ""
|
6628 |
|
6629 |
+
#: lib/wpdev-booking-class.php:1160
|
6630 |
msgid "Fields Settings"
|
6631 |
msgstr ""
|
6632 |
|
6633 |
+
#: lib/wpdev-booking-class.php:1163
|
6634 |
msgid "Emails"
|
6635 |
msgstr ""
|
6636 |
|
6637 |
+
#: lib/wpdev-booking-class.php:1164
|
6638 |
msgid "Emails Settings"
|
6639 |
msgstr ""
|
6640 |
|
6641 |
+
#: lib/wpdev-booking-class.php:1171
|
6642 |
msgid "Payments"
|
6643 |
msgstr ""
|
6644 |
|
6645 |
+
#: lib/wpdev-booking-class.php:1172
|
6646 |
msgid "Payments Settings"
|
6647 |
msgstr ""
|
6648 |
|
6649 |
+
#: lib/wpdev-booking-class.php:1177
|
6650 |
msgid "Search Settings"
|
6651 |
msgstr ""
|
6652 |
|
6653 |
+
#: lib/wpdev-booking-class.php:1182
|
6654 |
msgid "Users Settings"
|
6655 |
msgstr ""
|
6656 |
|
6657 |
+
#: lib/wpdev-booking-class.php:1218
|
6658 |
msgid "Features"
|
6659 |
msgstr ""
|
6660 |
|
6661 |
+
#: lib/wpdev-booking-class.php:1218
|
6662 |
msgid "Live Demos"
|
6663 |
msgstr ""
|
6664 |
|
6665 |
+
#: lib/wpdev-booking-class.php:1218 lib/wpdev-booking-class.php:1220
|
6666 |
msgid "Contact"
|
6667 |
msgstr ""
|
6668 |
|
6669 |
+
#: lib/wpdev-booking-class.php:1218
|
6670 |
msgid "Buy"
|
6671 |
msgstr ""
|
6672 |
|
6673 |
+
#: lib/wpdev-booking-class.php:1508
|
6674 |
msgid "Calendar is loading..."
|
6675 |
msgstr ""
|
6676 |
|
6677 |
+
#: lib/wpdev-booking-class.php:1688
|
6678 |
msgid "Booking resource type is not defined. Its can be, when at the URL is wrong booking hash."
|
6679 |
msgstr ""
|
6680 |
|
6681 |
+
#: lib/wpdev-booking-class.php:1843
|
6682 |
#, php-format
|
6683 |
msgid ""
|
6684 |
"%sWarning! Booking calendar for this booking resource are already at the page, please check more "
|
6685 |
"about this issue at %sthis page%s"
|
6686 |
msgstr ""
|
6687 |
|
6688 |
+
#: lib/wpdev-booking-class.php:2039 lib/wpdev-booking-class.php:2041
|
6689 |
msgid "Wrong booking hash in URL. Probably hash is expired."
|
6690 |
msgstr ""
|
6691 |
|
6692 |
+
#: lib/wpdev-booking-class.php:2045
|
6693 |
msgid "You do not set any parameters for booking editing"
|
6694 |
msgstr ""
|
6695 |
|
6696 |
+
#: lib/wpdev-booking-class.php:2167
|
6697 |
#, php-format
|
6698 |
msgid ""
|
6699 |
"Thank you for your online booking. %s We will send confirmation of your booking as soon as "
|
6700 |
"possible."
|
6701 |
msgstr ""
|
6702 |
|
6703 |
+
#: lib/wpdev-booking-class.php:2247 lib/wpdev-booking-class.php:2252
|
6704 |
msgid "New booking"
|
6705 |
msgstr ""
|
6706 |
|
6707 |
+
#: lib/wpdev-booking-class.php:2248
|
6708 |
#, php-format
|
6709 |
msgid ""
|
6710 |
"You need to approve a new booking %s for: %s Person detail information:%s Currently a new "
|
6711 |
"booking is waiting for approval. Please visit the moderation panel%sThank you, %s"
|
6712 |
msgstr ""
|
6713 |
|
6714 |
+
#: lib/wpdev-booking-class.php:2254
|
6715 |
#, php-format
|
6716 |
msgid ""
|
6717 |
"Your reservation %s for: %s is processing now! We will send confirmation by email. %sYou can "
|
6718 |
"edit this booking at this page: %s Thank you, %s"
|
6719 |
msgstr ""
|
6720 |
|
6721 |
+
#: lib/wpdev-booking-class.php:2256
|
6722 |
#, php-format
|
6723 |
msgid ""
|
6724 |
"Your reservation %s for: %s is processing now! We will send confirmation by email. %s Thank you, "
|
6725 |
"%s"
|
6726 |
msgstr ""
|
6727 |
|
6728 |
+
#: lib/wpdev-booking-class.php:2261
|
6729 |
msgid "Your booking has been approved"
|
6730 |
msgstr ""
|
6731 |
|
6732 |
+
#: lib/wpdev-booking-class.php:2263
|
6733 |
#, php-format
|
6734 |
msgid ""
|
6735 |
"Your reservation %s for: %s has been approved.%sYou can edit the booking on this page: %s Thank "
|
6736 |
"you, %s"
|
6737 |
msgstr ""
|
6738 |
|
6739 |
+
#: lib/wpdev-booking-class.php:2264
|
6740 |
#, php-format
|
6741 |
msgid "Your booking %s for: %s has been approved.%sThank you, %s"
|
6742 |
msgstr ""
|
6743 |
|
6744 |
+
#: lib/wpdev-booking-class.php:2267
|
6745 |
msgid "Your booking has been declined"
|
6746 |
msgstr ""
|
6747 |
|
6748 |
+
#: lib/wpdev-booking-class.php:2268
|
6749 |
#, php-format
|
6750 |
msgid "Your booking %s for: %s has been canceled. %sThank you, %s"
|
6751 |
msgstr ""
|
6752 |
|
6753 |
+
#: lib/wpdev-booking-class.php:2278
|
6754 |
msgid "Booking form"
|
6755 |
msgstr ""
|
6756 |
|
6757 |
+
#: lib/wpdev-booking-class.php:2289
|
6758 |
msgid "Available"
|
6759 |
msgstr ""
|
6760 |
|
6761 |
+
#: lib/wpdev-booking-class.php:2293
|
6762 |
msgid "Booked"
|
6763 |
msgstr ""
|
6764 |
|
6765 |
+
#: lib/wpdev-booking-class.php:2296
|
6766 |
msgid "Partially booked"
|
6767 |
msgstr ""
|
6768 |
|
6769 |
+
#: lib/wpdev-booking-class.php:3047
|
6770 |
msgid "Technical support section"
|
6771 |
msgstr ""
|
6772 |
|
6773 |
+
#: lib/wpdev-booking-class.php:3051
|
6774 |
msgid "Reindex booking data"
|
6775 |
msgstr ""
|
6776 |
|
6777 |
+
#: lib/wpdev-booking-class.php:3053
|
6778 |
msgid "Reindex"
|
6779 |
msgstr ""
|
6780 |
|
6781 |
+
#: lib/wpdev-booking-class.php:3059
|
6782 |
msgid ""
|
6783 |
" Click, if you want to reindex booking data by booking dates sort field (Your installation/"
|
6784 |
"update of the plugin must be successful)."
|
6785 |
msgstr ""
|
6786 |
|
6787 |
+
#: lib/wpdev-booking-class.php:3104
|
6788 |
#, php-format
|
6789 |
msgid "%s Found %s not indexed bookings %s"
|
6790 |
msgstr ""
|
6791 |
|
6792 |
+
#: lib/wpdev-booking-class.php:3119
|
6793 |
#, php-format
|
6794 |
msgid "%s Finish getting sort dates. %s"
|
6795 |
msgstr ""
|
6796 |
|
6797 |
+
#: lib/wpdev-booking-class.php:3128
|
6798 |
#, php-format
|
6799 |
msgid "Updated booking: %s"
|
6800 |
msgstr ""
|
6803 |
msgid "no"
|
6804 |
msgstr ""
|
6805 |
|
6806 |
+
#: lib/wpdev-booking-functions.php:1346 lib/wpdev-booking-functions.php:1793
|
6807 |
msgid "Booking system"
|
6808 |
msgstr ""
|
6809 |
|
6810 |
+
#: lib/wpdev-booking-functions.php:2612
|
6811 |
msgid "Warning! Some error occur, during sending registration request."
|
6812 |
msgstr ""
|
6813 |
|
6814 |
+
#: lib/wpdev-booking-functions.php:2617
|
6815 |
msgid ""
|
6816 |
"Please refresh this page and if the same error appear again contact support by email (with info "
|
6817 |
"about order number and website) for finishing the registrations"
|
6818 |
msgstr ""
|
6819 |
|
6820 |
+
#: lib/wpdev-booking-functions.php:2677
|
6821 |
msgid "version"
|
6822 |
msgstr ""
|
6823 |
|
6824 |
+
#: lib/wpdev-booking-functions.php:2679
|
6825 |
#, php-format
|
6826 |
msgid "Add your %s on %swordpress.org%s, if you enjoyed by this plugin."
|
6827 |
msgstr ""
|
6828 |
|
6829 |
+
#: lib/wpdev-booking-widget.php:147
|
6830 |
msgid "Footer"
|
6831 |
msgstr ""
|
6832 |
|
6833 |
+
#: lib/wpdev-booking-widget.php:152
|
6834 |
#, php-format
|
6835 |
msgid "Example: %sMake booking here%s"
|
6836 |
msgstr ""
|
6837 |
|
6838 |
+
#: lib/wpdev-booking-widget.php:160
|
6839 |
#, php-format
|
6840 |
msgid "%sSeveral widgets are supported at %spaid versions%s."
|
6841 |
msgstr ""
|
6842 |
|
6843 |
+
#: lib/wpdev-settings-general.php:41 lib/wpdev-settings-general.php:607
|
6844 |
msgid "Form"
|
6845 |
msgstr ""
|
6846 |
|
6868 |
msgid "Calendar Skin"
|
6869 |
msgstr ""
|
6870 |
|
6871 |
+
#: lib/wpdev-settings-general.php:438
|
6872 |
msgid "Select the skin of the booking calendar"
|
6873 |
msgstr ""
|
6874 |
|
6875 |
+
#: lib/wpdev-settings-general.php:443
|
6876 |
msgid "Number of months"
|
6877 |
msgstr ""
|
6878 |
|
6879 |
+
#: lib/wpdev-settings-general.php:448
|
6880 |
msgid "month(s)"
|
6881 |
msgstr ""
|
6882 |
|
6883 |
+
#: lib/wpdev-settings-general.php:453
|
6884 |
msgid "year(s)"
|
6885 |
msgstr ""
|
6886 |
|
6887 |
+
#: lib/wpdev-settings-general.php:456
|
6888 |
msgid "Select the maximum number of months to show (scroll)"
|
6889 |
msgstr ""
|
6890 |
|
6891 |
+
#: lib/wpdev-settings-general.php:461
|
6892 |
msgid "Start Day of the week"
|
6893 |
msgstr ""
|
6894 |
|
6895 |
+
#: lib/wpdev-settings-general.php:472
|
6896 |
msgid "Select your start day of the week"
|
6897 |
msgstr ""
|
6898 |
|
6899 |
+
#: lib/wpdev-settings-general.php:481
|
6900 |
+
msgid "Type of days selection in calendar"
|
6901 |
msgstr ""
|
6902 |
|
6903 |
+
#: lib/wpdev-settings-general.php:484
|
6904 |
+
msgid "Type of days selection"
|
6905 |
msgstr ""
|
6906 |
|
6907 |
+
#: lib/wpdev-settings-general.php:497
|
6908 |
+
msgid "Single day"
|
6909 |
msgstr ""
|
6910 |
|
6911 |
+
#: lib/wpdev-settings-general.php:507
|
6912 |
+
msgid "Multiple days"
|
6913 |
msgstr ""
|
6914 |
|
6915 |
+
#: lib/wpdev-settings-general.php:518
|
6916 |
+
msgid "Range days"
|
6917 |
msgstr ""
|
6918 |
|
6919 |
+
#: lib/wpdev-settings-general.php:550
|
6920 |
+
msgid "Unavailable week days"
|
6921 |
msgstr ""
|
6922 |
|
6923 |
+
#: lib/wpdev-settings-general.php:580
|
6924 |
+
msgid "Check unavailable days in calendars. This option will overwrite all other settings."
|
6925 |
msgstr ""
|
6926 |
|
6927 |
+
#: lib/wpdev-settings-general.php:588
|
6928 |
+
msgid "Unavailable days from today"
|
6929 |
msgstr ""
|
6930 |
|
6931 |
+
#: lib/wpdev-settings-general.php:595
|
6932 |
+
msgid "Select number of unavailable days in calendar start from today."
|
6933 |
msgstr ""
|
6934 |
|
6935 |
+
#: lib/wpdev-settings-general.php:622
|
6936 |
msgid "Check the box to activate CAPTCHA inside the booking form."
|
6937 |
msgstr ""
|
6938 |
|
6939 |
+
#: lib/wpdev-settings-general.php:629
|
6940 |
msgid "Auto-fill fields"
|
6941 |
msgstr ""
|
6942 |
|
6943 |
+
#: lib/wpdev-settings-general.php:632
|
6944 |
msgid "Check the box to activate auto-fill form fields for logged in users."
|
6945 |
msgstr ""
|
6946 |
|
6947 |
+
#: lib/wpdev-settings-general.php:639
|
6948 |
msgid "Use CSS BootStrap"
|
6949 |
msgstr ""
|
6950 |
|
6951 |
+
#: lib/wpdev-settings-general.php:644
|
6952 |
msgid "Using BootStrap CSS for the form fields"
|
6953 |
msgstr ""
|
6954 |
|
6955 |
+
#: lib/wpdev-settings-general.php:647
|
6956 |
msgid "You must not deactivate loading BootStrap files at advanced section of these settings!"
|
6957 |
msgstr ""
|
6958 |
|
6959 |
+
#: lib/wpdev-settings-general.php:664
|
6960 |
msgid "Action after booking is done"
|
6961 |
msgstr ""
|
6962 |
|
6963 |
+
#: lib/wpdev-settings-general.php:672
|
6964 |
msgid "Show \"Thank You\" message"
|
6965 |
msgstr ""
|
6966 |
|
6967 |
+
#: lib/wpdev-settings-general.php:679
|
6968 |
msgid "Redirect visitor to a new \"Thank You\" page"
|
6969 |
msgstr ""
|
6970 |
|
6971 |
+
#: lib/wpdev-settings-general.php:683
|
6972 |
msgid "This action will have no effect, if the payment form(s) is active!"
|
6973 |
msgstr ""
|
6974 |
|
6975 |
+
#: lib/wpdev-settings-general.php:692
|
6976 |
msgid "Message title"
|
6977 |
msgstr ""
|
6978 |
|
6979 |
+
#: lib/wpdev-settings-general.php:695
|
6980 |
#, php-format
|
6981 |
msgid "Type title of message %safter booking has done by user%s"
|
6982 |
msgstr ""
|
6983 |
|
6984 |
+
#: lib/wpdev-settings-general.php:700
|
6985 |
msgid "Time of message showing"
|
6986 |
msgstr ""
|
6987 |
|
6988 |
+
#: lib/wpdev-settings-general.php:703
|
6989 |
msgid "Set duration of time (milliseconds) to show this message"
|
6990 |
msgstr ""
|
6991 |
|
6992 |
+
#: lib/wpdev-settings-general.php:710
|
6993 |
msgid "URL of \"thank you\" page"
|
6994 |
msgstr ""
|
6995 |
|
6996 |
+
#: lib/wpdev-settings-general.php:715
|
6997 |
#, php-format
|
6998 |
msgid "Type URL of %s\"Thank You\" page%s"
|
6999 |
msgstr ""
|
7000 |
|
7001 |
+
#: lib/wpdev-settings-general.php:730
|
7002 |
msgid "Listing of bookings"
|
7003 |
msgstr ""
|
7004 |
|
7005 |
+
#: lib/wpdev-settings-general.php:733
|
7006 |
msgid "Default booking admin page"
|
7007 |
msgstr ""
|
7008 |
|
7009 |
+
#: lib/wpdev-settings-general.php:736
|
7010 |
msgid "Bookings Listing"
|
7011 |
msgstr ""
|
7012 |
|
7013 |
+
#: lib/wpdev-settings-general.php:744
|
7014 |
msgid "Select your default view mode of bookings at the booking listing page"
|
7015 |
msgstr ""
|
7016 |
|
7017 |
+
#: lib/wpdev-settings-general.php:754
|
7018 |
msgid "Default calendar view mode"
|
7019 |
msgstr ""
|
7020 |
|
7021 |
+
#: lib/wpdev-settings-general.php:806
|
7022 |
msgid "Select your default calendar view mode at booking calendar overview page"
|
7023 |
msgstr ""
|
7024 |
|
7025 |
+
#: lib/wpdev-settings-general.php:816
|
7026 |
msgid "Default toolbar tab"
|
7027 |
msgstr ""
|
7028 |
|
7029 |
+
#: lib/wpdev-settings-general.php:818
|
7030 |
msgid "Filter tab"
|
7031 |
msgstr ""
|
7032 |
|
7033 |
+
#: lib/wpdev-settings-general.php:819
|
7034 |
msgid "Actions tab"
|
7035 |
msgstr ""
|
7036 |
|
7037 |
+
#: lib/wpdev-settings-general.php:826
|
7038 |
msgid "Select your default opened tab in toolbar at booking listing page"
|
7039 |
msgstr ""
|
7040 |
|
7041 |
+
#: lib/wpdev-settings-general.php:831
|
7042 |
msgid "Bookings number per page"
|
7043 |
msgstr ""
|
7044 |
|
7045 |
+
#: lib/wpdev-settings-general.php:840
|
7046 |
msgid "Select number of bookings per page in booking listing"
|
7047 |
msgstr ""
|
7048 |
|
7049 |
+
#: lib/wpdev-settings-general.php:846
|
7050 |
msgid "Bookings default order"
|
7051 |
msgstr ""
|
7052 |
|
7053 |
+
#: lib/wpdev-settings-general.php:849 lib/wpdev-settings-general.php:851
|
7054 |
+
#: lib/wpdev-settings-general.php:861 lib/wpdev-settings-general.php:866
|
7055 |
msgid "ASC"
|
7056 |
msgstr ""
|
7057 |
|
7058 |
+
#: lib/wpdev-settings-general.php:850 lib/wpdev-settings-general.php:852
|
7059 |
+
#: lib/wpdev-settings-general.php:862 lib/wpdev-settings-general.php:867
|
7060 |
msgid "DESC"
|
7061 |
msgstr ""
|
7062 |
|
7063 |
+
#: lib/wpdev-settings-general.php:875
|
7064 |
msgid "Select your default order of bookings in the booking listing"
|
7065 |
msgstr ""
|
7066 |
|
7067 |
+
#: lib/wpdev-settings-general.php:886
|
7068 |
msgid "Date Format"
|
7069 |
msgstr ""
|
7070 |
|
7071 |
+
#: lib/wpdev-settings-general.php:890
|
7072 |
msgid "F j, Y"
|
7073 |
msgstr ""
|
7074 |
|
7075 |
+
#: lib/wpdev-settings-general.php:912
|
7076 |
#, php-format
|
7077 |
msgid ""
|
7078 |
"Type your date format for emails and the booking table. %sDocumentation on date formatting%s"
|
7079 |
msgstr ""
|
7080 |
|
7081 |
+
#: lib/wpdev-settings-general.php:920
|
7082 |
msgid "Dates view"
|
7083 |
msgstr ""
|
7084 |
|
7085 |
+
#: lib/wpdev-settings-general.php:923
|
7086 |
msgid "Short days view"
|
7087 |
msgstr ""
|
7088 |
|
7089 |
+
#: lib/wpdev-settings-general.php:924
|
7090 |
msgid "Wide days view"
|
7091 |
msgstr ""
|
7092 |
|
7093 |
+
#: lib/wpdev-settings-general.php:926
|
7094 |
msgid "Select the default view for dates on the booking tables"
|
7095 |
msgstr ""
|
7096 |
|
7097 |
+
#: lib/wpdev-settings-general.php:934
|
7098 |
msgid "Show / hide hints"
|
7099 |
msgstr ""
|
7100 |
|
7101 |
+
#: lib/wpdev-settings-general.php:940
|
7102 |
msgid "Check this box if you want to show help hints on the admin panel."
|
7103 |
msgstr ""
|
7104 |
|
7105 |
+
#: lib/wpdev-settings-general.php:971
|
7106 |
msgid "Checking to prevent double booking, during submitting booking"
|
7107 |
msgstr ""
|
7108 |
|
7109 |
+
#: lib/wpdev-settings-general.php:978
|
7110 |
msgid "This feature can impact to speed of submitting booking. Do you really want to do this?"
|
7111 |
msgstr ""
|
7112 |
|
7113 |
+
#: lib/wpdev-settings-general.php:980
|
7114 |
#, php-format
|
7115 |
msgid ""
|
7116 |
"Check this box, if you want to %sre-check if the selected dates available during submitting "
|
7117 |
"booking%s."
|
7118 |
msgstr ""
|
7119 |
|
7120 |
+
#: lib/wpdev-settings-general.php:984
|
7121 |
msgid ""
|
7122 |
"This feature useful to prevent double booking of the same date(s) or time(s), if several "
|
7123 |
"visitors try to book the same date(s) in same calendar during the same time."
|
7124 |
msgstr ""
|
7125 |
|
7126 |
+
#: lib/wpdev-settings-general.php:987
|
7127 |
msgid "This feature does not work for booking resources with capacity higher than one."
|
7128 |
msgstr ""
|
7129 |
|
7130 |
+
#: lib/wpdev-settings-general.php:996
|
7131 |
msgid "Allow unlimited bookings per same day(s)"
|
7132 |
msgstr ""
|
7133 |
|
7134 |
+
#: lib/wpdev-settings-general.php:1003
|
7135 |
msgid ""
|
7136 |
"You allow unlimited number of bookings per same dates, its can be a reason of double bookings on "
|
7137 |
"the same date. Do you really want to do this?"
|
7138 |
msgstr ""
|
7139 |
|
7140 |
+
#: lib/wpdev-settings-general.php:1005
|
7141 |
#, php-format
|
7142 |
msgid ""
|
7143 |
"Check this box, if you want to %sset any days as available%s in calendar. Your visitors will be "
|
7145 |
"date(s)%s of other visitors."
|
7146 |
msgstr ""
|
7147 |
|
7148 |
+
#: lib/wpdev-settings-general.php:1021
|
7149 |
msgid "Show advanced settings of JavaScript loading"
|
7150 |
msgstr ""
|
7151 |
|
7152 |
+
#: lib/wpdev-settings-general.php:1022
|
7153 |
msgid "Hide advanced settings of JavaScript loading"
|
7154 |
msgstr ""
|
7155 |
|
7156 |
+
#: lib/wpdev-settings-general.php:1031
|
7157 |
msgid "Disable Bootstrap loading on Front-End"
|
7158 |
msgstr ""
|
7159 |
|
7160 |
+
#: lib/wpdev-settings-general.php:1037 lib/wpdev-settings-general.php:1052
|
7161 |
+
#: lib/wpdev-settings-general.php:1069
|
7162 |
msgid ""
|
7163 |
"You are need to be sure what you are doing. You are disable of loading some JavaScripts Do you "
|
7164 |
"really want to do this?"
|
7165 |
msgstr ""
|
7166 |
|
7167 |
+
#: lib/wpdev-settings-general.php:1039 lib/wpdev-settings-general.php:1054
|
7168 |
msgid ""
|
7169 |
" If your theme or some other plugin is load the BootStrap JavaScripts, you can disable loading "
|
7170 |
"of this script by this plugin."
|
7171 |
msgstr ""
|
7172 |
|
7173 |
+
#: lib/wpdev-settings-general.php:1046
|
7174 |
msgid "Disable Bootstrap loading on Back-End"
|
7175 |
msgstr ""
|
7176 |
|
7177 |
+
#: lib/wpdev-settings-general.php:1063
|
7178 |
msgid "Load JS and CSS files only on specific pages"
|
7179 |
msgstr ""
|
7180 |
|
7181 |
+
#: lib/wpdev-settings-general.php:1071
|
7182 |
msgid "Activate loading of CSS and JavaScript files of plugin only at specific pages."
|
7183 |
msgstr ""
|
7184 |
|
7185 |
+
#: lib/wpdev-settings-general.php:1085
|
7186 |
msgid "Relative URLs of pages, where to load plugin CSS and JS files"
|
7187 |
msgstr ""
|
7188 |
|
7189 |
+
#: lib/wpdev-settings-general.php:1090
|
7190 |
#, php-format
|
7191 |
msgid ""
|
7192 |
"Enter relative URLs of pages, where you have Booking Calendar elements (booking forms or "
|
7193 |
"availability calendars). Please enter one URL per line. Example: %s"
|
7194 |
msgstr ""
|
7195 |
|
7196 |
+
#: lib/wpdev-settings-general.php:1108
|
7197 |
msgid "Show settings of powered by notice"
|
7198 |
msgstr ""
|
7199 |
|
7200 |
+
#: lib/wpdev-settings-general.php:1109
|
7201 |
msgid "Hide settings of powered by notice"
|
7202 |
msgstr ""
|
7203 |
|
7204 |
+
#: lib/wpdev-settings-general.php:1117
|
7205 |
msgid "Powered by notice"
|
7206 |
msgstr ""
|
7207 |
|
7208 |
+
#: lib/wpdev-settings-general.php:1122
|
7209 |
msgid " Turn On/Off powered by \"Booking Calendar\" notice under the calendar."
|
7210 |
msgstr ""
|
7211 |
|
7212 |
+
#: lib/wpdev-settings-general.php:1132
|
7213 |
msgid "Help and info notices"
|
7214 |
msgstr ""
|
7215 |
|
7216 |
+
#: lib/wpdev-settings-general.php:1138
|
7217 |
msgid " Turn On/Off version notice and help info links at booking admin panel."
|
7218 |
msgstr ""
|
7219 |
|
7220 |
+
#: lib/wpdev-settings-general.php:1167
|
7221 |
msgid "Information"
|
7222 |
msgstr ""
|
7223 |
|
7224 |
+
#: lib/wpdev-settings-general.php:1196
|
7225 |
msgid "User permissions for plugin menu pages"
|
7226 |
msgstr ""
|
7227 |
|
7228 |
+
#: lib/wpdev-settings-general.php:1256
|
7229 |
msgid "Select user access level for the menu pages of plugin"
|
7230 |
msgstr ""
|
7231 |
|
7232 |
+
#: lib/wpdev-settings-general.php:1266
|
7233 |
msgid "Uninstall / deactivation"
|
7234 |
msgstr ""
|
7235 |
|
7236 |
+
#: lib/wpdev-settings-general.php:1270
|
7237 |
msgid "Delete booking data, when plugin deactivated"
|
7238 |
msgstr ""
|
7239 |
|
7240 |
+
#: lib/wpdev-settings-general.php:1275
|
7241 |
msgid ""
|
7242 |
"If you check this option, all booking data will be deleted when you uninstall this plugin. Do "
|
7243 |
"you really want to do this?"
|
7244 |
msgstr ""
|
7245 |
|
7246 |
+
#: lib/wpdev-settings-general.php:1277
|
7247 |
msgid "Check this box to delete all booking data when you uninstal this plugin."
|
7248 |
msgstr ""
|
7249 |
|
7250 |
+
#: lib/wpdev-settings-general.php:1404
|
7251 |
msgid "Show legend below calendar"
|
7252 |
msgstr ""
|
7253 |
|
7254 |
+
#: lib/wpdev-settings-general.php:1412
|
7255 |
msgid "Check this box to display a legend of dates below the booking calendar."
|
7256 |
msgstr ""
|
7257 |
|
7258 |
+
#: lib/wpdev-settings-general.php:1422
|
7259 |
msgid "Available item"
|
7260 |
msgstr ""
|
7261 |
|
7262 |
+
#: lib/wpdev-settings-general.php:1428
|
7263 |
#, php-format
|
7264 |
msgid "Activate and type your %stitle of available%s item in legend"
|
7265 |
msgstr ""
|
7266 |
|
7267 |
+
#: lib/wpdev-settings-general.php:1434
|
7268 |
msgid "Pending item"
|
7269 |
msgstr ""
|
7270 |
|
7271 |
+
#: lib/wpdev-settings-general.php:1440
|
7272 |
#, php-format
|
7273 |
msgid "Activate and type your %stitle of pending%s item in legend"
|
7274 |
msgstr ""
|
7275 |
|
7276 |
+
#: lib/wpdev-settings-general.php:1446
|
7277 |
msgid "Approved item"
|
7278 |
msgstr ""
|
7279 |
|
7280 |
+
#: lib/wpdev-settings-general.php:1452
|
7281 |
#, php-format
|
7282 |
msgid "Activate and type your %stitle of approved%s item in legend"
|
7283 |
msgstr ""
|
7284 |
|
7285 |
+
#: lib/wpdev-settings-general.php:1458
|
7286 |
msgid "Partially booked item"
|
7287 |
msgstr ""
|
7288 |
|
7289 |
+
#: lib/wpdev-settings-general.php:1464
|
7290 |
#, php-format
|
7291 |
msgid "Activate and type your %stitle of partially booked%s item in legend"
|
7292 |
msgstr ""
|
7293 |
|
7294 |
+
#: lib/wpdev-settings-general.php:1465
|
7295 |
msgid "Partially booked item - day, which is booked for the specific time-slot(s)."
|
7296 |
msgstr ""
|
7297 |
|
7298 |
+
#: lib/wpdev-settings-general.php:1472
|
7299 |
msgid "Show date number in legend"
|
7300 |
msgstr ""
|
7301 |
|
7302 |
+
#: lib/wpdev-settings-general.php:1477
|
7303 |
msgid "Check this box to display today date number in legend cells. "
|
7304 |
msgstr ""
|
7305 |
|
7306 |
+
#: lib/wpdev-settings-general.php:1499
|
7307 |
msgid "Form fields labels"
|
7308 |
msgstr ""
|
7309 |
|
7310 |
+
#: lib/wpdev-settings-general.php:1523 lib/wpdev-settings-general.php:1566
|
7311 |
+
#: lib/wpdev-settings-general.php:1711
|
7312 |
msgid "Field Label"
|
7313 |
msgstr ""
|
7314 |
|
7315 |
+
#: lib/wpdev-settings-general.php:1540 lib/wpdev-settings-general.php:1583
|
7316 |
+
#: lib/wpdev-settings-general.php:1628 lib/wpdev-settings-general.php:1674
|
7317 |
+
#: lib/wpdev-settings-general.php:1728 lib/wpdev-settings-general.php:1771
|
7318 |
msgid "Required"
|
7319 |
msgstr ""
|
7320 |
|
7321 |
+
#: lib/wpdev-settings-general.php:1543 lib/wpdev-settings-general.php:1586
|
7322 |
+
#: lib/wpdev-settings-general.php:1686 lib/wpdev-settings-general.php:1731
|
7323 |
+
#: lib/wpdev-settings-general.php:1774
|
7324 |
msgid "Activate or deactivate field and change the label title"
|
7325 |
msgstr ""
|
7326 |
|
7327 |
+
#: lib/wpdev-settings-general.php:1611
|
7328 |
msgid "Email Label"
|
7329 |
msgstr ""
|
7330 |
|
7331 |
+
#: lib/wpdev-settings-general.php:1631
|
7332 |
msgid "Change the label title of this field. Email is obligatory field in booking form."
|
7333 |
msgstr ""
|
7334 |
|
7335 |
+
#: lib/wpdev-settings-general.php:1657
|
7336 |
msgid "Selectbox Label"
|
7337 |
msgstr ""
|
7338 |
|
7339 |
+
#: lib/wpdev-settings-general.php:1680
|
7340 |
msgid "Selectbox Values"
|
7341 |
msgstr ""
|
7342 |
|
7343 |
+
#: lib/wpdev-settings-general.php:1687
|
7344 |
msgid "Enter dropdown options. One option per line."
|
7345 |
msgstr ""
|
7346 |
|
7347 |
+
#: lib/wpdev-settings-general.php:1754
|
7348 |
msgid "Textarea Label"
|
7349 |
msgstr ""
|
7350 |
|
7351 |
+
#: lib/wpdev-settings-general.php:2048
|
7352 |
#, php-format
|
7353 |
msgid ""
|
7354 |
"For example: \"You have a new reservation %s on the following date(s): %s Contact information: "
|
7355 |
"%s You can approve or cancel this booking at: %s Thank you, Reservation service.\""
|
7356 |
msgstr ""
|
7357 |
|
7358 |
+
#: lib/wpdev-settings-general.php:2122
|
7359 |
#, php-format
|
7360 |
msgid ""
|
7361 |
"For example: \"Your reservation %s on these date(s): %s is processing now! We will send "
|
7362 |
"confirmation by email. %s Thank you, Reservation service.\""
|
7363 |
msgstr ""
|
7364 |
|
7365 |
+
#: lib/wpdev-settings-general.php:2208
|
7366 |
#, php-format
|
7367 |
msgid ""
|
7368 |
"For example: \"Your reservation %s on these date(s): %s has been approved.%s Thank you, "
|
7369 |
"Reservation service.\""
|
7370 |
msgstr ""
|
7371 |
|
7372 |
+
#: lib/wpdev-settings-general.php:2334
|
7373 |
msgid ""
|
7374 |
"You can use (in subject and content of email template) any shortcodes, which you used in the "
|
7375 |
"booking form. Use the shortcodes in the same way as you used them in the content form at "
|
7376 |
"Settings Fields page."
|
7377 |
msgstr ""
|
7378 |
|
7379 |
+
#: lib/wpdev-settings-general.php:2342
|
7380 |
#, php-format
|
7381 |
msgid "%s - inserting data info about the booking"
|
7382 |
msgstr ""
|
7383 |
|
7384 |
+
#: lib/wpdev-settings-general.php:2365 lib/wpdev-settings-general.php:2373
|
7385 |
#, php-format
|
7386 |
msgid "%s - inserting your site URL "
|
7387 |
msgstr ""
|
7388 |
|
7389 |
+
#: lib/wpdev-settings-general.php:2366
|
7390 |
#, php-format
|
7391 |
msgid "%s - inserting IP address of the user who made this action "
|
7392 |
msgstr ""
|
7393 |
|
7394 |
+
#: lib/wpdev-settings-general.php:2367
|
7395 |
#, php-format
|
7396 |
msgid ""
|
7397 |
"%s - inserting contents of the User-Agent: header from the current request, if there is one "
|
7398 |
msgstr ""
|
7399 |
|
7400 |
+
#: lib/wpdev-settings-general.php:2368
|
7401 |
#, php-format
|
7402 |
msgid "%s - inserting address of the page (if any), where visitor make this action "
|
7403 |
msgstr ""
|
7404 |
|
7405 |
+
#: lib/wpdev-settings-general.php:2369
|
7406 |
#, php-format
|
7407 |
msgid "%s - inserting date of this action "
|
7408 |
msgstr ""
|
7409 |
|
7410 |
+
#: lib/wpdev-settings-general.php:2370
|
7411 |
#, php-format
|
7412 |
msgid "%s - inserting time of this action "
|
7413 |
msgstr ""
|
7414 |
|
7415 |
+
#: lib/wpdev-settings-general.php:2377
|
7416 |
#, php-format
|
7417 |
msgid "%s - inserting moderate link of new booking "
|
7418 |
msgstr ""
|
7419 |
|
7420 |
+
#: lib/wpdev-settings-general.php:2381
|
7421 |
#, php-format
|
7422 |
msgid ""
|
7423 |
"%s - inserting link to the page where visitor can edit the reservation, (possible to use the %s "
|
7424 |
"parameter for setting different %s of this page. Example: %s )"
|
7425 |
msgstr ""
|
7426 |
|
7427 |
+
#: lib/wpdev-settings-general.php:2383
|
7428 |
#, php-format
|
7429 |
msgid ""
|
7430 |
"%s - inserting link to the page where visitor can cancel the reservation, (possible to use the "
|
7431 |
"%s parameter for setting different %s of this page. Example: %s )"
|
7432 |
msgstr ""
|
7433 |
|
7434 |
+
#: lib/wpdev-settings-general.php:2385
|
7435 |
#, php-format
|
7436 |
msgid ""
|
7437 |
"%s - inserting link to payment page where visitor can pay for the reservation (possible to use "
|
7438 |
"the %s parameter for setting different %s of this page. Example: %s )"
|
7439 |
msgstr ""
|
7440 |
|
7441 |
+
#: lib/wpdev-settings-general.php:2389
|
7442 |
#, php-format
|
7443 |
msgid "%s - add the reason for booking payment, you can enter it before sending email, "
|
7444 |
msgstr ""
|
7445 |
|
7446 |
+
#: lib/wpdev-settings-general.php:2393
|
7447 |
#, php-format
|
7448 |
msgid "%s - add the reason booking was cancelled, you can enter it before sending email, "
|
7449 |
msgstr ""
|
lib/wpbc-ajax.php
CHANGED
@@ -17,12 +17,17 @@ if ( ! defined( 'ABSPATH' ) ) exit;
|
|
17 |
////////////////////////////////////////////////////////////////////////////////
|
18 |
// S u p p o r t f u n c t i o n s f o r A j a x ///////////////
|
19 |
////////////////////////////////////////////////////////////////////////////////
|
20 |
-
|
|
|
|
|
21 |
// Verify the nonce.
|
22 |
function wpdev_check_nonce_in_admin_panel( $action_check = 'wpbc_ajax_admin_nonce' ){
|
23 |
|
24 |
$nonce = ( isset($_REQUEST['wpbc_nonce']) ) ? $_REQUEST['wpbc_nonce'] : '';
|
25 |
-
|
|
|
|
|
|
|
26 |
if ( ! wp_verify_nonce( $nonce, $action_check ) ) { // This nonce is not valid.
|
27 |
?>
|
28 |
<script type="text/javascript">
|
@@ -169,6 +174,62 @@ function wpbc_ajax_UPDATE_APPROVE() {
|
|
169 |
}
|
170 |
}
|
171 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
172 |
|
173 |
function wpbc_ajax_DELETE_APPROVE() {
|
174 |
|
@@ -355,6 +416,7 @@ if ( is_admin() && ( defined( 'DOING_AJAX' ) ) && ( DOING_AJAX ) ) {
|
|
355 |
,'UPDATE_READ_UNREAD' => 'admin'
|
356 |
,'UPDATE_APPROVE' => 'admin'
|
357 |
,'DELETE_APPROVE' => 'admin'
|
|
|
358 |
,'DELETE_BY_VISITOR' => 'both'
|
359 |
,'SAVE_BK_COST' => 'admin'
|
360 |
,'SEND_PAYMENT_REQUEST' => 'admin'
|
17 |
////////////////////////////////////////////////////////////////////////////////
|
18 |
// S u p p o r t f u n c t i o n s f o r A j a x ///////////////
|
19 |
////////////////////////////////////////////////////////////////////////////////
|
20 |
+
function wpbc_verify_nonce_failed( $nonce, $action, $user, $token ) {
|
21 |
+
debuge('$nonce, $action, $user, $token',$nonce, $action, $user, $token);
|
22 |
+
}
|
23 |
// Verify the nonce.
|
24 |
function wpdev_check_nonce_in_admin_panel( $action_check = 'wpbc_ajax_admin_nonce' ){
|
25 |
|
26 |
$nonce = ( isset($_REQUEST['wpbc_nonce']) ) ? $_REQUEST['wpbc_nonce'] : '';
|
27 |
+
//$nonce .= '1';
|
28 |
+
//add_action('wp_verify_nonce_failed', 'wpbc_verify_nonce_failed', 10, 4);
|
29 |
+
//debuge(is_user_logged_in(), wp_get_current_user());
|
30 |
+
//if ( ! wp_verify_nonce( $nonce, $action_check ) && is_user_logged_in() ) { // This nonce is not valid.
|
31 |
if ( ! wp_verify_nonce( $nonce, $action_check ) ) { // This nonce is not valid.
|
32 |
?>
|
33 |
<script type="text/javascript">
|
174 |
}
|
175 |
}
|
176 |
|
177 |
+
//FixIn: 6.1.1.10
|
178 |
+
function wpbc_ajax_TRASH_RESTORE() {
|
179 |
+
|
180 |
+
global $wpdb;
|
181 |
+
|
182 |
+
wpdev_check_nonce_in_admin_panel();
|
183 |
+
make_bk_action('check_multiuser_params_for_client_side_by_user_id', $_POST['user_id'] );
|
184 |
+
|
185 |
+
$booking_id = $_POST[ "booking_id" ]; // Booking ID
|
186 |
+
if ( ! isset($_POST["denyreason"] ) )
|
187 |
+
$_POST["denyreason"] = '';
|
188 |
+
$denyreason = $_POST["denyreason"];
|
189 |
+
if ( ( $denyreason == __('Reason for cancellation here' ,'booking'))
|
190 |
+
|| ( $denyreason == __('Reason of cancellation here' ,'booking'))
|
191 |
+
|| ( $denyreason == 'Reason of cancel here')
|
192 |
+
) $denyreason = '';
|
193 |
+
$is_send_emeils = intval( $_POST["is_send_emeils"] );
|
194 |
+
$approved_id = explode('|',$booking_id);
|
195 |
+
|
196 |
+
$is_trash = intval( $_POST["is_trash"] );
|
197 |
+
|
198 |
+
if ( (count($approved_id)>0) && ($approved_id !=false) && ($approved_id !='')) {
|
199 |
+
|
200 |
+
$approved_id_str = join( ',', $approved_id);
|
201 |
+
$approved_id_str = wpbc_clean_string_for_db( $approved_id_str );
|
202 |
+
|
203 |
+
sendDeclineEmails($approved_id_str, $is_send_emeils,$denyreason);
|
204 |
+
|
205 |
+
|
206 |
+
if ( false === $wpdb->query( "UPDATE {$wpdb->prefix}booking AS bk SET bk.trash = {$is_trash} WHERE booking_id IN ({$approved_id_str})" ) ){
|
207 |
+
?> <script type="text/javascript"> document.getElementById('ajax_message').innerHTML = '<div style="height:20px;width:100%;text-align:center;margin:15px auto;"><?php bk_error('Error during trash booking in DB',__FILE__,__LINE__ ); ?></div>'; </script> <?php
|
208 |
+
die();
|
209 |
+
}
|
210 |
+
?>
|
211 |
+
<script type="text/javascript">
|
212 |
+
<?php
|
213 |
+
if ( $is_trash ) {
|
214 |
+
foreach ($approved_id as $bk_id) { ?>
|
215 |
+
set_booking_row_trash(<?php echo $bk_id ?>);
|
216 |
+
setTimeout(function() { set_booking_row_deleted_in_timeline(<?php echo $bk_id ?>); }, 1000);
|
217 |
+
//setTimeout(function() { set_booking_row_deleted(<?php echo $bk_id ?>); }, 1000);
|
218 |
+
<?php } ?>
|
219 |
+
document.getElementById('ajax_message').innerHTML = '<?php echo __('Done' ,'booking'); ?>';
|
220 |
+
<?php } else {
|
221 |
+
foreach ($approved_id as $bk_id) { ?>
|
222 |
+
set_booking_row_restore(<?php echo $bk_id ?>);
|
223 |
+
<?php } ?>
|
224 |
+
document.getElementById('ajax_message').innerHTML = '<?php echo __('Done' ,'booking'); ?>';
|
225 |
+
<?php } ?>
|
226 |
+
jQuery('#ajax_message').fadeOut(1000);
|
227 |
+
</script>
|
228 |
+
<?php
|
229 |
+
}
|
230 |
+
}
|
231 |
+
|
232 |
+
|
233 |
|
234 |
function wpbc_ajax_DELETE_APPROVE() {
|
235 |
|
416 |
,'UPDATE_READ_UNREAD' => 'admin'
|
417 |
,'UPDATE_APPROVE' => 'admin'
|
418 |
,'DELETE_APPROVE' => 'admin'
|
419 |
+
,'TRASH_RESTORE' => 'admin' //FixIn: 6.1.1.10
|
420 |
,'DELETE_BY_VISITOR' => 'both'
|
421 |
,'SAVE_BK_COST' => 'admin'
|
422 |
,'SEND_PAYMENT_REQUEST' => 'admin'
|
lib/wpbc-booking-new.php
CHANGED
@@ -96,6 +96,16 @@ function wpdev_bk_insert_new_booking() {
|
|
96 |
$is_edit_booking['booking_id'] = $my_booking_id_type[0];
|
97 |
$is_edit_booking['booking_type'] = $my_booking_id_type[1];
|
98 |
$bktype = intval( $is_edit_booking['booking_type'] );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
99 |
}
|
100 |
|
101 |
} else {
|
@@ -247,6 +257,11 @@ function wpbc_add_new_booking( $params , $is_edit_booking = false ){
|
|
247 |
$auto_approve_new_bookings_is_active = trim( get_bk_option( 'booking_auto_approve_new_bookings_is_active' ) );
|
248 |
$is_approved_dates = ( $auto_approve_new_bookings_is_active == 'On' ) ? '1' : '0';
|
249 |
|
|
|
|
|
|
|
|
|
|
|
250 |
// // Auto Approve booking from Booking > Add booking page for single booking resources
|
251 |
// $admin_uri = ltrim( str_replace( get_site_url( null, '', 'admin' ), '', admin_url('admin.php?') ), '/' ) ;
|
252 |
// if ( strpos( $_SERVER['HTTP_REFERER'], $admin_uri ) !== false )
|
@@ -301,11 +316,14 @@ function wpbc_add_new_booking( $params , $is_edit_booking = false ){
|
|
301 |
// Update the Hash and Cost of the booking
|
302 |
make_bk_action('wpbc_update_booking_hash', $booking_id, $bktype );
|
303 |
make_bk_action('wpdev_booking_post_inserted', $booking_id, $bktype, $str_dates__dd_mm_yyyy, array($start_time, $end_time ) , $formdata );
|
304 |
-
|
305 |
-
|
306 |
-
//
|
|
|
|
|
307 |
// $is_approved_dates = '1';
|
308 |
// }
|
|
|
309 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
310 |
|
311 |
$insert = wpbc_get_SQL_to_insert_dates( $dates_in_diff_formats , $is_approved_dates, $booking_id );
|
@@ -333,7 +351,10 @@ function wpbc_add_new_booking( $params , $is_edit_booking = false ){
|
|
333 |
|
334 |
// wpbc_integrate_MailChimp($formdata, $bktype);
|
335 |
|
336 |
-
if (
|
|
|
|
|
|
|
337 |
sendApproveEmails($booking_id, 1);
|
338 |
}
|
339 |
|
@@ -619,6 +640,7 @@ function wpbc_check_if_dates_free($bktype, $formdata ,$dates_in_diff_formats, $s
|
|
619 |
else
|
620 |
$approved_only = '';
|
621 |
|
|
|
622 |
|
623 |
// Get all booked dates ////////////////////////////////////////////////////
|
624 |
$sql_req = "SELECT DISTINCT dt.booking_date
|
@@ -629,7 +651,7 @@ function wpbc_check_if_dates_free($bktype, $formdata ,$dates_in_diff_formats, $s
|
|
629 |
|
630 |
ON bk.booking_id = dt.booking_id
|
631 |
|
632 |
-
WHERE {$approved_only} {$dates_sql_where} AND bk.booking_type IN ({$bktype})
|
633 |
|
634 |
ORDER BY dt.booking_date" ;
|
635 |
|
@@ -666,4 +688,3 @@ function wpbc_check_if_dates_free($bktype, $formdata ,$dates_in_diff_formats, $s
|
|
666 |
|
667 |
return true;
|
668 |
}
|
669 |
-
?>
|
96 |
$is_edit_booking['booking_id'] = $my_booking_id_type[0];
|
97 |
$is_edit_booking['booking_type'] = $my_booking_id_type[1];
|
98 |
$bktype = intval( $is_edit_booking['booking_type'] );
|
99 |
+
|
100 |
+
// FixIn: 6.1.1.9
|
101 |
+
// Check situation when we have editing "child booking resource", so need to reupdate calendar and form to have it for parent resource.
|
102 |
+
if ( ( function_exists( 'wpbc_is_this_child_resource') ) && ( wpbc_is_this_child_resource( $bktype ) ) ){
|
103 |
+
$bk_parent_br_id = wpbc_get_parent_resource( $bktype );
|
104 |
+
|
105 |
+
$is_edit_booking['booking_type'] = $bk_parent_br_id;
|
106 |
+
$bktype = $bk_parent_br_id;
|
107 |
+
}
|
108 |
+
// End: 6.1.1.9
|
109 |
}
|
110 |
|
111 |
} else {
|
257 |
$auto_approve_new_bookings_is_active = trim( get_bk_option( 'booking_auto_approve_new_bookings_is_active' ) );
|
258 |
$is_approved_dates = ( $auto_approve_new_bookings_is_active == 'On' ) ? '1' : '0';
|
259 |
|
260 |
+
// $booking_form_show = get_form_content( $formdata, $bktype, '', array());
|
261 |
+
// if ( intval($booking_form_show['visitors'] ) > 4 )
|
262 |
+
// $is_approved_dates = '1';
|
263 |
+
// else $is_approved_dates = '0';
|
264 |
+
|
265 |
// // Auto Approve booking from Booking > Add booking page for single booking resources
|
266 |
// $admin_uri = ltrim( str_replace( get_site_url( null, '', 'admin' ), '', admin_url('admin.php?') ), '/' ) ;
|
267 |
// if ( strpos( $_SERVER['HTTP_REFERER'], $admin_uri ) !== false )
|
316 |
// Update the Hash and Cost of the booking
|
317 |
make_bk_action('wpbc_update_booking_hash', $booking_id, $bktype );
|
318 |
make_bk_action('wpdev_booking_post_inserted', $booking_id, $bktype, $str_dates__dd_mm_yyyy, array($start_time, $end_time ) , $formdata );
|
319 |
+
|
320 |
+
// Auto approve booking if cost = 0.
|
321 |
+
// $booking_cost = apply_bk_filter('get_booking_cost_from_db', '', $booking_id ); // Auto approve booking if cost = 0.
|
322 |
+
// $booking_cost = floatval( $booking_cost );
|
323 |
+
// if ( empty( $booking_cost ) ) {
|
324 |
// $is_approved_dates = '1';
|
325 |
// }
|
326 |
+
|
327 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
328 |
|
329 |
$insert = wpbc_get_SQL_to_insert_dates( $dates_in_diff_formats , $is_approved_dates, $booking_id );
|
351 |
|
352 |
// wpbc_integrate_MailChimp($formdata, $bktype);
|
353 |
|
354 |
+
if (
|
355 |
+
( ( $auto_approve_new_bookings_is_active == 'On') && ($is_send_emeils != 0 ) )
|
356 |
+
// || ($is_approved_dates == '1') // Auto approve and send email if cost = 0.
|
357 |
+
) {
|
358 |
sendApproveEmails($booking_id, 1);
|
359 |
}
|
360 |
|
640 |
else
|
641 |
$approved_only = '';
|
642 |
|
643 |
+
$trash_bookings = ' AND bk.trash != 1 '; //FixIn: 6.1.1.10 - check also below usage of {$trash_bookings}
|
644 |
|
645 |
// Get all booked dates ////////////////////////////////////////////////////
|
646 |
$sql_req = "SELECT DISTINCT dt.booking_date
|
651 |
|
652 |
ON bk.booking_id = dt.booking_id
|
653 |
|
654 |
+
WHERE {$approved_only} {$dates_sql_where} {$trash_bookings} AND bk.booking_type IN ({$bktype})
|
655 |
|
656 |
ORDER BY dt.booking_date" ;
|
657 |
|
688 |
|
689 |
return true;
|
690 |
}
|
|
lib/wpbc-constants.php
CHANGED
@@ -26,7 +26,7 @@ if (!defined('WP_BK_IS_SEND_EMAILS_ON_COST_CHANGE')) define('WP_BK_IS_SEND_EM
|
|
26 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
27 |
// SYSTEM CONSTANTS //////////////////////////////////////////////////////////////////////////////////////////////////
|
28 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
29 |
-
if (!defined('WP_BK_VERSION_NUM')) define('WP_BK_VERSION_NUM', '6.
|
30 |
if (!defined('WP_BK_MINOR_UPDATE')) define('WP_BK_MINOR_UPDATE', ! true );
|
31 |
if (!defined('IS_USE_WPDEV_BK_CACHE')) define('IS_USE_WPDEV_BK_CACHE', true );
|
32 |
if (!defined('WP_BK_DEBUG_MODE')) define('WP_BK_DEBUG_MODE', false );
|
26 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
27 |
// SYSTEM CONSTANTS //////////////////////////////////////////////////////////////////////////////////////////////////
|
28 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
29 |
+
if (!defined('WP_BK_VERSION_NUM')) define('WP_BK_VERSION_NUM', '6.2' );
|
30 |
if (!defined('WP_BK_MINOR_UPDATE')) define('WP_BK_MINOR_UPDATE', ! true );
|
31 |
if (!defined('IS_USE_WPDEV_BK_CACHE')) define('IS_USE_WPDEV_BK_CACHE', true );
|
32 |
if (!defined('WP_BK_DEBUG_MODE')) define('WP_BK_DEBUG_MODE', false );
|
lib/wpbc-gcal-class.php
CHANGED
@@ -635,7 +635,8 @@ class WPBC_Google_Calendar {
|
|
635 |
onclick="javascript:jQuery('#gcal_imported_events<?php echo $this->getResource(); ?>').remove();" ><?php _e('Hide' ,'booking'); ?></a>
|
636 |
<a href="javascript:void(0)" class="button" style="float:none;margin:10px;"
|
637 |
onclick="javascript: if ( bk_are_you_sure('<?php echo esc_js(__('Do you really want to delete selected booking(s) ?' ,'booking')); ?>') ) {
|
638 |
-
delete_booking(
|
|
|
639 |
get_selected_bookings_id_in_this_list('#gcal_imported_events<?php echo $this->getResource(); ?> .events_items', 13)
|
640 |
, <?php echo $this->getUserID(); ?>
|
641 |
, '<?php echo getBookingLocale(); ?>'
|
635 |
onclick="javascript:jQuery('#gcal_imported_events<?php echo $this->getResource(); ?>').remove();" ><?php _e('Hide' ,'booking'); ?></a>
|
636 |
<a href="javascript:void(0)" class="button" style="float:none;margin:10px;"
|
637 |
onclick="javascript: if ( bk_are_you_sure('<?php echo esc_js(__('Do you really want to delete selected booking(s) ?' ,'booking')); ?>') ) {
|
638 |
+
//delete_booking( <?php //FixIn: 6.1.1.10 ?>
|
639 |
+
trash_restore( 1, <?php //FixIn: 6.1.1.10 ?>
|
640 |
get_selected_bookings_id_in_this_list('#gcal_imported_events<?php echo $this->getResource(); ?> .events_items', 13)
|
641 |
, <?php echo $this->getUserID(); ?>
|
642 |
, '<?php echo getBookingLocale(); ?>'
|
lib/wpbc-scripts.php
CHANGED
@@ -58,7 +58,7 @@ function wpbc_define_js_vars( $where_to_load = 'both' ) {
|
|
58 |
, 'message_verif_requred_for_check_box' => esc_js(__('This checkbox must be checked' ,'booking'))
|
59 |
, 'message_verif_requred_for_radio_box' => esc_js(__('At least one option must be selected' ,'booking'))
|
60 |
, 'message_verif_emeil' => esc_js(__('Incorrect email field' ,'booking'))
|
61 |
-
, 'message_verif_same_emeil' => esc_js(__('Your emails do not
|
62 |
, 'message_verif_selectdts' => esc_js(__('Please, select booking date(s) at Calendar.' ,'booking'))
|
63 |
, 'parent_booking_resources' => '[]'
|
64 |
, 'new_booking_title' => esc_js( apply_bk_filter('wpdev_check_for_active_language', get_bk_option( 'booking_title_after_reservation' ) ) )
|
58 |
, 'message_verif_requred_for_check_box' => esc_js(__('This checkbox must be checked' ,'booking'))
|
59 |
, 'message_verif_requred_for_radio_box' => esc_js(__('At least one option must be selected' ,'booking'))
|
60 |
, 'message_verif_emeil' => esc_js(__('Incorrect email field' ,'booking'))
|
61 |
+
, 'message_verif_same_emeil' => esc_js(__('Your emails do not match' ,'booking')) // Email Addresses Do Not Match
|
62 |
, 'message_verif_selectdts' => esc_js(__('Please, select booking date(s) at Calendar.' ,'booking'))
|
63 |
, 'parent_booking_resources' => '[]'
|
64 |
, 'new_booking_title' => esc_js( apply_bk_filter('wpdev_check_for_active_language', get_bk_option( 'booking_title_after_reservation' ) ) )
|
lib/wpbc-welcome.php
CHANGED
@@ -350,46 +350,44 @@ class WPBC_Welcome {
|
|
350 |
<?php
|
351 |
|
352 |
$this->show_col_section( array(
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
|
|
|
|
357 |
|
358 |
-
, array( 'h4' => 'Faster check actual bookings',
|
359 |
-
'text' => 'Showing *past bookings "darker"*, than actual bookings at TimeLine' ,
|
360 |
-
'img' => '6.1/booking-calendar-timeline.png', 'img_style'=>'margin-top:20px;width: 99%;' )
|
361 |
|
362 |
)
|
363 |
);
|
364 |
|
365 |
$this->show_separator();
|
366 |
-
|
367 |
$this->show_col_section( array( 'h3' => 'Updated Translations',
|
368 |
array( //'h4' => 'Updated Translations',
|
369 |
'text' => '<ul>
|
370 |
-
<li style="margin-left: 0.5em;"
|
|
|
371 |
<li style="margin-left: 0.5em;">**German** by Peter Wegmann and Christian</li>
|
372 |
<li style="margin-left: 0.5em;">**French** by Laurent Thiry and Terry Atkinson</li>
|
373 |
<li style="margin-left: 0.5em;">**Italian** by Fabrizio Pecorelli</li>
|
374 |
<li style="margin-left: 0.5em;">**Spanish** by Juan C and Juan García Piosa</li>
|
375 |
-
<li style="margin-left: 0.5em;">**
|
376 |
-
|
377 |
-
|
378 |
</ul>'
|
379 |
),
|
380 |
array( //'h4' => '',
|
381 |
'text' => '<ul>
|
382 |
-
<li style="margin-left: 0.5em;">**
|
383 |
<li style="margin-left: 0.5em;">**Danish** by Ib H. Rasmussen</li>
|
384 |
<li style="margin-left: 0.5em;">**Swedish** by Mikael Göransson and Jan Österling</li>
|
385 |
<li style="margin-left: 0.5em;">**Norwegian** by Håvard Hasli</li>
|
386 |
<li style="margin-left: 0.5em;">**Czech** by Ales Dlask</li>
|
387 |
-
<li style="margin-left: 0.5em;">**Hungarian** by István Vincze</li>
|
388 |
|
389 |
</ul>'
|
390 |
),
|
391 |
array( //'h4' => '',
|
392 |
'text' => '<ul>
|
|
|
393 |
<li style="margin-left: 0.5em;">**Greece** by Dimitris Amanatiadis</li>
|
394 |
<li style="margin-left: 0.5em;">**Ukrainian**</li>
|
395 |
<li style="margin-left: 0.5em;">**Russian**</li>
|
@@ -435,6 +433,39 @@ class WPBC_Welcome {
|
|
435 |
|
436 |
?><h2 style='font-size: 1.8em;line-height: 1.3em;margin-top:40px;'>New features in Premium versions of Booking Calendar</h2><?php
|
437 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
438 |
$this->show_col_section( array(
|
439 |
array( 'img' => '6.1/booking-calendar-search-availability.png', 'img_style'=>'margin-top:20px;width:99%;margin-left:1%;' )
|
440 |
, array( 'h4' => 'Advanced search availability functionality',
|
@@ -451,7 +482,7 @@ class WPBC_Welcome {
|
|
451 |
);
|
452 |
|
453 |
$this->show_separator();
|
454 |
-
|
455 |
$this->show_col_section( array( 'h3' => 'Under the Hood',
|
456 |
array(
|
457 |
'text' => '<ul>'
|
@@ -1482,4 +1513,3 @@ printf( __( 'Need even more functionality? Check %s higher versions %s','booking
|
|
1482 |
</div>
|
1483 |
<?php
|
1484 |
}
|
1485 |
-
?>
|
350 |
<?php
|
351 |
|
352 |
$this->show_col_section( array(
|
353 |
+
array(
|
354 |
+
'img' => '6.2/trash-booking.png', 'img_style'=>'margin-top:20px;width: 99%;')
|
355 |
+
|
356 |
+
, array( 'h4' => 'Move bookings to trash instead of complete deleting.',
|
357 |
+
'text' => 'From now you can **move** your bookings to **trash** instead of complete deleting. Its will **make booking dates as available** in calendar and you will not lose this booking info, if you will need it later. Also you can **restore** specific **booking** from trash or **complete delete** it.' ,
|
358 |
+
)
|
359 |
|
|
|
|
|
|
|
360 |
|
361 |
)
|
362 |
);
|
363 |
|
364 |
$this->show_separator();
|
365 |
+
/*
|
366 |
$this->show_col_section( array( 'h3' => 'Updated Translations',
|
367 |
array( //'h4' => 'Updated Translations',
|
368 |
'text' => '<ul>
|
369 |
+
<li style="margin-left: 0.5em;">**Croatian** by Danijel Prebeg</li>
|
370 |
+
<li style="margin-left: 0.5em;">**Turkish** by EMİNA MESİNOVİC</li>
|
371 |
<li style="margin-left: 0.5em;">**German** by Peter Wegmann and Christian</li>
|
372 |
<li style="margin-left: 0.5em;">**French** by Laurent Thiry and Terry Atkinson</li>
|
373 |
<li style="margin-left: 0.5em;">**Italian** by Fabrizio Pecorelli</li>
|
374 |
<li style="margin-left: 0.5em;">**Spanish** by Juan C and Juan García Piosa</li>
|
375 |
+
<li style="margin-left: 0.5em;">**Dutch** by Wim Bommerez</li>
|
|
|
|
|
376 |
</ul>'
|
377 |
),
|
378 |
array( //'h4' => '',
|
379 |
'text' => '<ul>
|
380 |
+
<li style="margin-left: 0.5em;">**Finnish** by Turo Numminen and Peter Grönberg</li>
|
381 |
<li style="margin-left: 0.5em;">**Danish** by Ib H. Rasmussen</li>
|
382 |
<li style="margin-left: 0.5em;">**Swedish** by Mikael Göransson and Jan Österling</li>
|
383 |
<li style="margin-left: 0.5em;">**Norwegian** by Håvard Hasli</li>
|
384 |
<li style="margin-left: 0.5em;">**Czech** by Ales Dlask</li>
|
|
|
385 |
|
386 |
</ul>'
|
387 |
),
|
388 |
array( //'h4' => '',
|
389 |
'text' => '<ul>
|
390 |
+
<li style="margin-left: 0.5em;">**Hungarian** by István Vincze</li>
|
391 |
<li style="margin-left: 0.5em;">**Greece** by Dimitris Amanatiadis</li>
|
392 |
<li style="margin-left: 0.5em;">**Ukrainian**</li>
|
393 |
<li style="margin-left: 0.5em;">**Russian**</li>
|
433 |
|
434 |
?><h2 style='font-size: 1.8em;line-height: 1.3em;margin-top:40px;'>New features in Premium versions of Booking Calendar</h2><?php
|
435 |
|
436 |
+
|
437 |
+
$this->show_col_section( array(
|
438 |
+
array( 'h4' => 'Extend booking dates/times interval to extra hours or days.',
|
439 |
+
'text' => 'You can define **extra minutes / hours** or even **dates before** and/or **after bookings** to set as **unavailable time in calendar**. Its useful for adding **cleaning** time, or any other service time, which required before or after the booking. <br>*(Business Medium/Large, MultiUser)*' ,
|
440 |
+
), array(
|
441 |
+
'img' => '6.2/cleaning-time.png', 'img_style'=>'margin-top:20px;width: 99%;')
|
442 |
+
|
443 |
+
|
444 |
+
)
|
445 |
+
);
|
446 |
+
|
447 |
+
$this->show_separator();
|
448 |
+
|
449 |
+
$this->show_col_section( array( 'h3' => 'Under the Hood',
|
450 |
+
array(
|
451 |
+
'text' => '<ul>'
|
452 |
+
. '<li style="margin-left: 0.5em;">' . '**Improvement** Ability to use <code>[booking_id]</code>, <code>[resource_title]</code> shortcodes in the Content of booking fields data form at Booking > Settings > Fields page, for ability to show booking ID and booking resources in payment summary. *(Business Small/Medium/Large, MultiUser)*' . '</li>'
|
453 |
+
. '<li style="margin-left: 0.5em;">' . '**Improvement** Resolved issue of not showing available day(s), if all start times have booked for this specific day(s). (Example of shortcode in booking form: <code>[select starttime "11:00" "13:00" "15:00"]</code>). *(Business Small/Medium/Large, MultiUser)*' . '</li>'
|
454 |
+
. '</ul>'
|
455 |
+
),
|
456 |
+
array(
|
457 |
+
'text' => '<ul>'
|
458 |
+
. '<li style="margin-left: 0.5em;">' . '**Improvement** Ability to book dates in additional calendar(s), without selection date(s) in main calendar, if used several calendars of different booking resources and only 1 booking form. Restriction in this case the "payment summary" after booking is not showing. *(Business Medium/Large, MultiUser)*' . '</li>'
|
459 |
+
. '<li style="margin-left: 0.5em;">' . '**Improvement** Added search users form at the Settings Users page. *(MultiUser)*' . '</li>'
|
460 |
+
. '</ul>'
|
461 |
+
)
|
462 |
+
)
|
463 |
+
);
|
464 |
+
|
465 |
+
$this->show_separator();
|
466 |
+
|
467 |
+
?><h2 style='font-size: 1.8em;line-height: 1.3em;margin-top:40px;'>Other</h2><?php
|
468 |
+
|
469 |
$this->show_col_section( array(
|
470 |
array( 'img' => '6.1/booking-calendar-search-availability.png', 'img_style'=>'margin-top:20px;width:99%;margin-left:1%;' )
|
471 |
, array( 'h4' => 'Advanced search availability functionality',
|
482 |
);
|
483 |
|
484 |
$this->show_separator();
|
485 |
+
/*
|
486 |
$this->show_col_section( array( 'h3' => 'Under the Hood',
|
487 |
array(
|
488 |
'text' => '<ul>'
|
1513 |
</div>
|
1514 |
<?php
|
1515 |
}
|
|
lib/wpdev-bk-lib.php
CHANGED
@@ -655,9 +655,10 @@ if ( ! defined( 'ABSPATH' ) ) exit;
|
|
655 |
// Show V i e w M o d e Buttons in the Toolbar
|
656 |
function wpdevbk_booking_view_mode_buttons() {
|
657 |
$selected_view_mode = $_REQUEST['view_mode'];
|
658 |
-
$bk_admin_url = get_params_in_url( array('view_mode','wh_booking_id','page_num') );
|
659 |
-
$bk_admin_timeline_url = get_params_in_url( array(), array( 'page', 'tab', 'tab_cvm', 'wh_booking_type', 'scroll_start_date', 'scroll_month', 'view_days_num'
|
660 |
-
|
|
|
661 |
?><div id="booking-listing-view-mode-buttons" class="btn-group btn-group-vertical" data-toggle="buttons-radio">
|
662 |
<a id="btn_vm_listing" rel="tooltip" data-original-title="<?php _e('Booking Listing' ,'booking'); ?>"
|
663 |
class="tooltip_top button button-secondary" <?php if ($selected_view_mode=='vm_listing') { echo ' data-toggle="button" ' ; } ?>
|
@@ -727,6 +728,7 @@ if ( ! defined( 'ABSPATH' ) ) exit;
|
|
727 |
'wh_cost2' => (isset($_REQUEST['wh_cost2'])) ? wpbc_clean_parameter( $_REQUEST['wh_cost2'] ):'',
|
728 |
'or_sort' => (isset($_REQUEST['or_sort'])) ? wpbc_clean_parameter( $_REQUEST['or_sort'] ):get_bk_option( 'booking_sort_order'),
|
729 |
'page_num' => (isset($_REQUEST['page_num'])) ? wpbc_clean_parameter( $_REQUEST['page_num'] ):'1',
|
|
|
730 |
'page_items_count' => (isset($_REQUEST['page_items_count'])) ? wpbc_clean_parameter( $_REQUEST['page_items_count'] ):$num_per_page_check,
|
731 |
);
|
732 |
//debuge($args, $_REQUEST['wh_booking_type'] );
|
@@ -909,6 +911,7 @@ if ( ! defined( 'ABSPATH' ) ) exit;
|
|
909 |
'wh_cost2' => '', //(isset($_REQUEST['wh_cost2']))?$_REQUEST['wh_cost2']:'', // ?
|
910 |
'or_sort' => $or_sort,
|
911 |
'page_num' => '1',
|
|
|
912 |
'page_items_count' => '100000'
|
913 |
);
|
914 |
|
@@ -939,6 +942,7 @@ if ( ! defined( 'ABSPATH' ) ) exit;
|
|
939 |
'wh_cost' => '', 'wh_cost2' => '',
|
940 |
'or_sort' => get_bk_option( 'booking_sort_order'),
|
941 |
'page_num' => '1',
|
|
|
942 |
'page_items_count' => $num_per_page_check
|
943 |
);
|
944 |
|
@@ -955,6 +959,15 @@ if ( ! defined( 'ABSPATH' ) ) exit;
|
|
955 |
// S Q L
|
956 |
////////////////////////////////////////////////////////////////////////
|
957 |
// GET ONLY ROWS OF THE B o o k i n g s - So we can limit the requests
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
958 |
$sql_start_select = " SELECT * " ;
|
959 |
$sql_start_count = " SELECT COUNT(*) as count" ;
|
960 |
$sql = " FROM {$wpdb->prefix}booking as bk" ;
|
@@ -963,13 +976,15 @@ if ( ! defined( 'ABSPATH' ) ) exit;
|
|
963 |
SELECT *
|
964 |
FROM {$wpdb->prefix}bookingdates as dt
|
965 |
WHERE bk.booking_id = dt.booking_id " ;
|
966 |
-
if ($wh_approved !== '')
|
967 |
$sql_where.= " AND approved = $wh_approved " ; // Approved or Pending
|
968 |
|
969 |
$sql_where.= set_dates_filter_for_sql($wh_booking_date, $wh_booking_date2) ;
|
970 |
|
971 |
$sql_where.= " ) " ;
|
972 |
|
|
|
|
|
973 |
if ( $wh_is_new !== '' ) $sql_where .= " AND bk.is_new = " . $wh_is_new . " ";
|
974 |
|
975 |
// P
|
@@ -1123,6 +1138,7 @@ if ( ! defined( 'ABSPATH' ) ) exit;
|
|
1123 |
'wh_cost' => '', 'wh_cost2' => '',
|
1124 |
'or_sort' => get_bk_option( 'booking_sort_order'),
|
1125 |
'page_num' => '1',
|
|
|
1126 |
'page_items_count' => $num_per_page_check
|
1127 |
);
|
1128 |
|
@@ -1630,6 +1646,22 @@ if ( ! defined( 'ABSPATH' ) ) exit;
|
|
1630 |
wpdevbk_selectbox_filter($wpdevbk_id, $wpdevbk_selectors, $wpdevbk_control_label, $wpdevbk_help_block, $wpdevbk_default_value);
|
1631 |
?>
|
1632 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1633 |
<?php if (function_exists('wpdevbk_booking_resource_selection_for_booking_listing')) {
|
1634 |
wpdevbk_booking_resource_selection_for_booking_listing();
|
1635 |
} ?>
|
@@ -1733,13 +1765,29 @@ if ( ! defined( 'ABSPATH' ) ) exit;
|
|
1733 |
" /><?php _e('Reject' ,'booking'); ?> <i class="icon-ban-circle"></i></a>
|
1734 |
</div>
|
1735 |
<div class="btn-group" style="width:340px">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1736 |
<a data-original-title="<?php _e('Delete selected bookings' ,'booking'); ?>" rel="tooltip" class="tooltip_top button button-secondary"
|
1737 |
onclick="javascript:
|
1738 |
if ( bk_are_you_sure('<?php echo esc_js(__('Do you really want to delete selected booking(s) ?' ,'booking')); ?>') )
|
1739 |
delete_booking( get_selected_bookings_id_in_booking_listing() ,
|
1740 |
<?php echo $user_bk_id; ?>, '<?php echo getBookingLocale(); ?>' , 1 );
|
1741 |
" >
|
1742 |
-
<?php _e('Delete' ,'booking'); ?> <i class="icon-
|
|
|
1743 |
<input type="text" placeholder="<?php echo __('Reason of cancellation' ,'booking'); ?>"
|
1744 |
class="span2" value="" id="denyreason" name="denyreason" />
|
1745 |
</div>
|
@@ -1873,6 +1921,10 @@ if ( ! defined( 'ABSPATH' ) ) exit;
|
|
1873 |
$bk_dates_short_id = array(); if (count($bk->dates) > 0 ) $bk_dates_short_id = (isset($bk->dates_short_id))?$bk->dates_short_id:array(); // Array ([0] => [1] => .... [4] => 6... [11] => [12] => 8 )
|
1874 |
|
1875 |
$is_approved = 0; if (count($bk->dates) > 0 ) $is_approved = $bk->dates[0]->approved ;
|
|
|
|
|
|
|
|
|
1876 |
//BS
|
1877 |
$is_paid = 0;
|
1878 |
$payment_status_titles_current = '';
|
@@ -2004,6 +2056,7 @@ if ( ! defined( 'ABSPATH' ) ) exit;
|
|
2004 |
<?php make_bk_action('wpdev_bk_listing_show_payment_label', $is_paid, $pay_print_status, $payment_status_titles_current); ?>
|
2005 |
<span class="label label-pending <?php if ($is_approved) echo ' hidden_items '; ?> "><?php _e('Pending' ,'booking'); ?></span>
|
2006 |
<span class="label label-approved <?php if (! $is_approved) echo ' hidden_items '; ?>"><?php _e('Approved' ,'booking'); ?></span>
|
|
|
2007 |
</div>
|
2008 |
|
2009 |
<div class="wpbc_column_3 booking-listing-collumn bktextjustify span<?php echo ($is_free?'5':'6'); ?> ">
|
@@ -2040,14 +2093,26 @@ if ( ! defined( 'ABSPATH' ) ) exit;
|
|
2040 |
onclick="javascript:if ( bk_are_you_sure('<?php echo esc_js(__('Do you really want to set booking as pending ?' ,'booking')); ?>') ) approve_unapprove_booking(<?php echo $booking_id; ?>,0, <?php echo $user_bk_id; ?>, '<?php echo getBookingLocale(); ?>' , 1 );"
|
2041 |
data-original-title="<?php _e('Reject' ,'booking'); ?>" rel="tooltip"
|
2042 |
><i class="icon-ban-circle"></i><?php
|
2043 |
-
/** ?><img src="<?php echo WPDEV_BK_PLUGIN_URL; ?>/img/remove-16x16.png" style="width:15px; height:15px;"><?php /**/ ?></a
|
2044 |
-
href="javascript:void(0)"
|
2045 |
-
onclick="javascript:if ( bk_are_you_sure('<?php echo esc_js(__('Do you really want to delete this booking ?' ,'booking')); ?>') ) delete_booking(<?php echo $booking_id; ?>, <?php echo $user_bk_id; ?>, '<?php echo getBookingLocale(); ?>' , 1 );"
|
2046 |
-
data-original-title="<?php _e('Delete' ,'booking'); ?>" rel="tooltip"
|
2047 |
-
class="tooltip_top button-secondary button"
|
2048 |
-
><i class="icon-trash"></i><?php
|
2049 |
-
/** ?><img src="<?php echo WPDEV_BK_PLUGIN_URL; ?>/img/delete_type.png" style="width:13px; height:13px;"><?php /**/ ?></a><?php
|
2050 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2051 |
make_bk_action('wpdev_bk_listing_show_print_btn', $booking_id );
|
2052 |
|
2053 |
make_bk_action('wpdev_bk_listing_show_payment_status_btn', $booking_id );
|
655 |
// Show V i e w M o d e Buttons in the Toolbar
|
656 |
function wpdevbk_booking_view_mode_buttons() {
|
657 |
$selected_view_mode = $_REQUEST['view_mode'];
|
658 |
+
$bk_admin_url = get_params_in_url( array('view_mode','wh_booking_id','page_num' ) );
|
659 |
+
$bk_admin_timeline_url = get_params_in_url( array(), array( 'page', 'tab', 'tab_cvm', 'wh_booking_type', 'scroll_start_date', 'scroll_month', 'view_days_num'
|
660 |
+
, 'wh_trash' //FixIn: 6.1.1.10
|
661 |
+
) ); //FixIn: 6.0.1.14
|
662 |
?><div id="booking-listing-view-mode-buttons" class="btn-group btn-group-vertical" data-toggle="buttons-radio">
|
663 |
<a id="btn_vm_listing" rel="tooltip" data-original-title="<?php _e('Booking Listing' ,'booking'); ?>"
|
664 |
class="tooltip_top button button-secondary" <?php if ($selected_view_mode=='vm_listing') { echo ' data-toggle="button" ' ; } ?>
|
728 |
'wh_cost2' => (isset($_REQUEST['wh_cost2'])) ? wpbc_clean_parameter( $_REQUEST['wh_cost2'] ):'',
|
729 |
'or_sort' => (isset($_REQUEST['or_sort'])) ? wpbc_clean_parameter( $_REQUEST['or_sort'] ):get_bk_option( 'booking_sort_order'),
|
730 |
'page_num' => (isset($_REQUEST['page_num'])) ? wpbc_clean_parameter( $_REQUEST['page_num'] ):'1',
|
731 |
+
'wh_trash' => (isset($_REQUEST['wh_trash'])) ? wpbc_clean_parameter( $_REQUEST['wh_trash'] ):'', //FixIn:6.1.1.10
|
732 |
'page_items_count' => (isset($_REQUEST['page_items_count'])) ? wpbc_clean_parameter( $_REQUEST['page_items_count'] ):$num_per_page_check,
|
733 |
);
|
734 |
//debuge($args, $_REQUEST['wh_booking_type'] );
|
911 |
'wh_cost2' => '', //(isset($_REQUEST['wh_cost2']))?$_REQUEST['wh_cost2']:'', // ?
|
912 |
'or_sort' => $or_sort,
|
913 |
'page_num' => '1',
|
914 |
+
'wh_trash' => (isset($_REQUEST['wh_trash']))?$_REQUEST['wh_trash']:'',
|
915 |
'page_items_count' => '100000'
|
916 |
);
|
917 |
|
942 |
'wh_cost' => '', 'wh_cost2' => '',
|
943 |
'or_sort' => get_bk_option( 'booking_sort_order'),
|
944 |
'page_num' => '1',
|
945 |
+
'wh_trash' => '', //FixIn: 6.1.1.10
|
946 |
'page_items_count' => $num_per_page_check
|
947 |
);
|
948 |
|
959 |
// S Q L
|
960 |
////////////////////////////////////////////////////////////////////////
|
961 |
// GET ONLY ROWS OF THE B o o k i n g s - So we can limit the requests
|
962 |
+
//debuge($wh_trash);
|
963 |
+
//FixIn: 6.1.1.10 - check also below usage of {$trash_bookings}
|
964 |
+
$trash_bookings = " AND bk.trash = 0 ";
|
965 |
+
if ( isset( $wh_trash ) ) {
|
966 |
+
|
967 |
+
if ( $wh_trash == "trash" ) $trash_bookings = " AND bk.trash = 1 ";
|
968 |
+
else if ( $wh_trash == "any" ) $trash_bookings = '';
|
969 |
+
}
|
970 |
+
//debuge($trash_bookings);
|
971 |
$sql_start_select = " SELECT * " ;
|
972 |
$sql_start_count = " SELECT COUNT(*) as count" ;
|
973 |
$sql = " FROM {$wpdb->prefix}booking as bk" ;
|
976 |
SELECT *
|
977 |
FROM {$wpdb->prefix}bookingdates as dt
|
978 |
WHERE bk.booking_id = dt.booking_id " ;
|
979 |
+
if ( $wh_approved !== '' )
|
980 |
$sql_where.= " AND approved = $wh_approved " ; // Approved or Pending
|
981 |
|
982 |
$sql_where.= set_dates_filter_for_sql($wh_booking_date, $wh_booking_date2) ;
|
983 |
|
984 |
$sql_where.= " ) " ;
|
985 |
|
986 |
+
$sql_where .= " {$trash_bookings} "; //FixIn: 6.1.1.10
|
987 |
+
|
988 |
if ( $wh_is_new !== '' ) $sql_where .= " AND bk.is_new = " . $wh_is_new . " ";
|
989 |
|
990 |
// P
|
1138 |
'wh_cost' => '', 'wh_cost2' => '',
|
1139 |
'or_sort' => get_bk_option( 'booking_sort_order'),
|
1140 |
'page_num' => '1',
|
1141 |
+
'wh_trash' => '', //FixIn: 6.1.1.10
|
1142 |
'page_items_count' => $num_per_page_check
|
1143 |
);
|
1144 |
|
1646 |
wpdevbk_selectbox_filter($wpdevbk_id, $wpdevbk_selectors, $wpdevbk_control_label, $wpdevbk_help_block, $wpdevbk_default_value);
|
1647 |
?>
|
1648 |
|
1649 |
+
<?php
|
1650 |
+
//FixIn: 6.1.1.10
|
1651 |
+
// Actual | Trash | Any
|
1652 |
+
$wpdevbk_id = 'wh_trash'; // {'', '0', '1' }
|
1653 |
+
$wpdevbk_selectors = array(__('Exist' ,'booking') => '',
|
1654 |
+
__('In Trash' ,'booking') => 'trash',
|
1655 |
+
'divider0'=>'divider',
|
1656 |
+
__('Any' ,'booking') => 'any');
|
1657 |
+
$wpdevbk_control_label = '';
|
1658 |
+
$wpdevbk_help_block = __('Bookings' ,'booking');;//__('In Trash' ,'booking');
|
1659 |
+
// Pending, Active, Suspended, Terminated, Cancelled, Fraud
|
1660 |
+
wpdevbk_selectbox_filter($wpdevbk_id, $wpdevbk_selectors, $wpdevbk_control_label, $wpdevbk_help_block);
|
1661 |
+
//End FixIn: 6.1.1.10
|
1662 |
+
?>
|
1663 |
+
|
1664 |
+
|
1665 |
<?php if (function_exists('wpdevbk_booking_resource_selection_for_booking_listing')) {
|
1666 |
wpdevbk_booking_resource_selection_for_booking_listing();
|
1667 |
} ?>
|
1765 |
" /><?php _e('Reject' ,'booking'); ?> <i class="icon-ban-circle"></i></a>
|
1766 |
</div>
|
1767 |
<div class="btn-group" style="width:340px">
|
1768 |
+
<?php //FixIn: 6.1.1.10 ?>
|
1769 |
+
<a data-original-title="<?php _e('Move selected bookings to trash' ,'booking'); ?>" rel="tooltip" class="tooltip_top button button-secondary"
|
1770 |
+
onclick="javascript:
|
1771 |
+
if ( bk_are_you_sure('<?php echo esc_js(__('Do you really want to do this ?' ,'booking')); ?>') )
|
1772 |
+
trash__restore_booking(1, get_selected_bookings_id_in_booking_listing() ,
|
1773 |
+
<?php echo $user_bk_id; ?>, '<?php echo getBookingLocale(); ?>' , 1 );
|
1774 |
+
" >
|
1775 |
+
<?php _e('Trash' ,'booking'); ?> <i class="icon-trash"></i></a>
|
1776 |
+
<a data-original-title="<?php _e('Restore selected bookings' ,'booking'); ?>" rel="tooltip" class="tooltip_top button button-secondary"
|
1777 |
+
onclick="javascript:
|
1778 |
+
if ( bk_are_you_sure('<?php echo esc_js(__('Do you really want to do this ?' ,'booking')); ?>') )
|
1779 |
+
trash__restore_booking(0, get_selected_bookings_id_in_booking_listing() ,
|
1780 |
+
<?php echo $user_bk_id; ?>, '<?php echo getBookingLocale(); ?>' , 1 );
|
1781 |
+
" >
|
1782 |
+
<?php _e('Restore' ,'booking'); ?> <i class="icon-repeat"></i></a>
|
1783 |
<a data-original-title="<?php _e('Delete selected bookings' ,'booking'); ?>" rel="tooltip" class="tooltip_top button button-secondary"
|
1784 |
onclick="javascript:
|
1785 |
if ( bk_are_you_sure('<?php echo esc_js(__('Do you really want to delete selected booking(s) ?' ,'booking')); ?>') )
|
1786 |
delete_booking( get_selected_bookings_id_in_booking_listing() ,
|
1787 |
<?php echo $user_bk_id; ?>, '<?php echo getBookingLocale(); ?>' , 1 );
|
1788 |
" >
|
1789 |
+
<?php _e('Delete' ,'booking'); ?> <i class="icon-remove"></i></a>
|
1790 |
+
<?php //End FixIn: 6.1.1.10 ?>
|
1791 |
<input type="text" placeholder="<?php echo __('Reason of cancellation' ,'booking'); ?>"
|
1792 |
class="span2" value="" id="denyreason" name="denyreason" />
|
1793 |
</div>
|
1921 |
$bk_dates_short_id = array(); if (count($bk->dates) > 0 ) $bk_dates_short_id = (isset($bk->dates_short_id))?$bk->dates_short_id:array(); // Array ([0] => [1] => .... [4] => 6... [11] => [12] => 8 )
|
1922 |
|
1923 |
$is_approved = 0; if (count($bk->dates) > 0 ) $is_approved = $bk->dates[0]->approved ;
|
1924 |
+
|
1925 |
+
//Is booking in Trash.
|
1926 |
+
$is_trash = $bk->trash ; //FixIn: 6.1.1.10
|
1927 |
+
|
1928 |
//BS
|
1929 |
$is_paid = 0;
|
1930 |
$payment_status_titles_current = '';
|
2056 |
<?php make_bk_action('wpdev_bk_listing_show_payment_label', $is_paid, $pay_print_status, $payment_status_titles_current); ?>
|
2057 |
<span class="label label-pending <?php if ($is_approved) echo ' hidden_items '; ?> "><?php _e('Pending' ,'booking'); ?></span>
|
2058 |
<span class="label label-approved <?php if (! $is_approved) echo ' hidden_items '; ?>"><?php _e('Approved' ,'booking'); ?></span>
|
2059 |
+
<span class="label label-trash label-important <?php if (! $is_trash) echo ' hidden_items '; ?> "><?php _e('Trash' ,'booking'); ?></span><?php //FixIn: 6.1.1.10 ?>
|
2060 |
</div>
|
2061 |
|
2062 |
<div class="wpbc_column_3 booking-listing-collumn bktextjustify span<?php echo ($is_free?'5':'6'); ?> ">
|
2093 |
onclick="javascript:if ( bk_are_you_sure('<?php echo esc_js(__('Do you really want to set booking as pending ?' ,'booking')); ?>') ) approve_unapprove_booking(<?php echo $booking_id; ?>,0, <?php echo $user_bk_id; ?>, '<?php echo getBookingLocale(); ?>' , 1 );"
|
2094 |
data-original-title="<?php _e('Reject' ,'booking'); ?>" rel="tooltip"
|
2095 |
><i class="icon-ban-circle"></i><?php
|
2096 |
+
/** ?><img src="<?php echo WPDEV_BK_PLUGIN_URL; ?>/img/remove-16x16.png" style="width:15px; height:15px;"><?php /**/ ?></a><?php
|
|
|
|
|
|
|
|
|
|
|
|
|
2097 |
|
2098 |
+
//FixIn: 6.1.1.10
|
2099 |
+
?><a
|
2100 |
+
href="javascript:void(0)" class="tooltip_top button-secondary button trash_bk_link <?php if ( $is_trash ) echo ' hidden_items '; ?>"
|
2101 |
+
onclick="javascript:if ( bk_are_you_sure('<?php echo esc_js(__('Do you really want to delete this booking ?' ,'booking')); ?>') ) trash__restore_booking(1, <?php echo $booking_id; ?>, <?php echo $user_bk_id; ?>, '<?php echo getBookingLocale(); ?>' , 1 );"
|
2102 |
+
data-original-title="<?php _e('Move to Trash' ,'booking'); ?>" rel="tooltip"
|
2103 |
+
><i class="icon-trash"></i></a><?php
|
2104 |
+
?><a
|
2105 |
+
href="javascript:void(0)" class="tooltip_top button-secondary button restore_bk_link <?php if ( ! $is_trash ) echo ' hidden_items '; ?>"
|
2106 |
+
onclick="javascript:trash__restore_booking(0, <?php echo $booking_id; ?>, <?php echo $user_bk_id; ?>, '<?php echo getBookingLocale(); ?>' , 1 );"
|
2107 |
+
data-original-title="<?php _e('Restore' ,'booking'); ?>" rel="tooltip"
|
2108 |
+
><i class="icon-repeat"></i></a><?php
|
2109 |
+
?><a
|
2110 |
+
href="javascript:void(0)" class="tooltip_top button-secondary button delete_bk_link <?php if ( ! $is_trash ) echo ' hidden_items '; ?>"
|
2111 |
+
onclick="javascript:if ( bk_are_you_sure('<?php echo esc_js(__('Do you really want to delete this booking ?' ,'booking')); ?>') ) delete_booking(<?php echo $booking_id; ?>, <?php echo $user_bk_id; ?>, '<?php echo getBookingLocale(); ?>' , 1 );"
|
2112 |
+
data-original-title="<?php _e('Completely Delete' ,'booking'); ?>" rel="tooltip"
|
2113 |
+
><i class="icon-remove"></i></a><?php
|
2114 |
+
//End FixIn: 6.1.1.10
|
2115 |
+
|
2116 |
make_bk_action('wpdev_bk_listing_show_print_btn', $booking_id );
|
2117 |
|
2118 |
make_bk_action('wpdev_bk_listing_show_payment_status_btn', $booking_id );
|
lib/wpdev-bk-timeline.php
CHANGED
@@ -320,9 +320,16 @@ function wpdev_bk_timeline_booking_row( $current_resource_id, $start_date, $book
|
|
320 |
$tm = floor(24 / $time_selles_num);
|
321 |
$tt = 0 ;
|
322 |
$my_bkid_title = '';
|
|
|
|
|
|
|
|
|
|
|
|
|
323 |
echo '<div class="'.write_bk_id_css_classes('cell_bk_id_',$previous_booking_id).' time_section_in_day timeslots_in_this_day' . $time_selles_num .
|
324 |
' time_hour'.($tt*$tm).' time_in_days_num_'.$view_days_num.' '.
|
325 |
( $is_bk ?'time_booked_in_day':'' ).' '.( $is_approved ?'approved':'' ).
|
|
|
326 |
' ">'.
|
327 |
(($is_bk)?($my_bkid_title):'').
|
328 |
'</div>';
|
@@ -392,9 +399,15 @@ function wpdev_bk_timeline_booking_row( $current_resource_id, $start_date, $book
|
|
392 |
$is_past_time = ' past_time ';
|
393 |
}
|
394 |
|
|
|
|
|
|
|
|
|
|
|
395 |
echo '<div class="'.write_bk_id_css_classes('cell_bk_id_',$previous_booking_id).' time_section_in_day timeslots_in_this_day' . $time_selles_num .
|
396 |
' time_hour'.($tt*$tm).' time_in_days_num_'.$view_days_num.' '.
|
397 |
( $is_bk ? ' time_booked_in_day' . $is_past_time : '' ).' '.( $is_approved ?'approved':'' ).
|
|
|
398 |
' ">'.
|
399 |
(($is_bk)?($my_bkid_title):'').
|
400 |
'</div>';
|
@@ -402,10 +415,11 @@ function wpdev_bk_timeline_booking_row( $current_resource_id, $start_date, $book
|
|
402 |
|
403 |
} else { // Just time borders
|
404 |
$tm = floor(24 / $time_selles_num);
|
|
|
405 |
for ($tt = 0; $tt < $time_selles_num; $tt++) {
|
406 |
echo '<div class="time_section_in_day timeslots_in_this_day' . $time_selles_num .
|
407 |
' time_hour'.($tt*$tm).' time_in_days_num_'.$view_days_num.' '.
|
408 |
-
( $is_bk ?'time_booked_in_day':'' ).' '.( $is_approved ?'approved':'' ).
|
409 |
' ">'.
|
410 |
(($is_bk)?($my_bkid_title):'').
|
411 |
'</div>';
|
@@ -989,7 +1003,14 @@ function get_booking_info_4_tooltip( $bk_id, $bookings, $booking_types, $title_i
|
|
989 |
|
990 |
$title .= '<a class=\'button button-secondary approve_bk_link '.($is_approved?'hidden_items':'').'\' style=\'margin-right:5px;\' href=\'javascript:;\' onclick=\'javascript:approve_unapprove_booking('. $bk_id.',1, '. $user_bk_id .', "'. getBookingLocale() .'" , 1 );\' ><i class=\'icon-ok-circle\'></i></a>';
|
991 |
$title .= '<a class=\'button button-secondary pending_bk_link '.($is_approved?'':'hidden_items').'\' style=\'margin-right:5px;\' href=\'javascript:;\' onclick=\'javascript:approve_unapprove_booking('. $bk_id.',0, '. $user_bk_id .', "'. getBookingLocale() .'" , 1 );\' ><i class=\'icon-ban-circle\'></i></a>';
|
992 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
993 |
}
|
994 |
$title .= '</div>';
|
995 |
|
@@ -999,4 +1020,3 @@ function get_booking_info_4_tooltip( $bk_id, $bookings, $booking_types, $title_i
|
|
999 |
|
1000 |
return( array($title_in_day, $title, $title_hint, $is_approved) );
|
1001 |
}
|
1002 |
-
?>
|
320 |
$tm = floor(24 / $time_selles_num);
|
321 |
$tt = 0 ;
|
322 |
$my_bkid_title = '';
|
323 |
+
|
324 |
+
if ( ! empty( $previous_booking_id ) ) //FixIn:6.1.1.10
|
325 |
+
$is_trash = $bookings[$previous_booking_id]->trash;
|
326 |
+
else
|
327 |
+
$is_trash = false;
|
328 |
+
|
329 |
echo '<div class="'.write_bk_id_css_classes('cell_bk_id_',$previous_booking_id).' time_section_in_day timeslots_in_this_day' . $time_selles_num .
|
330 |
' time_hour'.($tt*$tm).' time_in_days_num_'.$view_days_num.' '.
|
331 |
( $is_bk ?'time_booked_in_day':'' ).' '.( $is_approved ?'approved':'' ).
|
332 |
+
( $is_trash? ' booking_trash ': '') . //FixIn:6.1.1.10
|
333 |
' ">'.
|
334 |
(($is_bk)?($my_bkid_title):'').
|
335 |
'</div>';
|
399 |
$is_past_time = ' past_time ';
|
400 |
}
|
401 |
|
402 |
+
if ( $is_bk ) //FixIn:6.1.1.10
|
403 |
+
$is_trash = $bookings[ $bk_id ]->trash;
|
404 |
+
else
|
405 |
+
$is_trash = false;
|
406 |
+
|
407 |
echo '<div class="'.write_bk_id_css_classes('cell_bk_id_',$previous_booking_id).' time_section_in_day timeslots_in_this_day' . $time_selles_num .
|
408 |
' time_hour'.($tt*$tm).' time_in_days_num_'.$view_days_num.' '.
|
409 |
( $is_bk ? ' time_booked_in_day' . $is_past_time : '' ).' '.( $is_approved ?'approved':'' ).
|
410 |
+
( $is_trash? ' booking_trash ': '') . //FixIn:6.1.1.10
|
411 |
' ">'.
|
412 |
(($is_bk)?($my_bkid_title):'').
|
413 |
'</div>';
|
415 |
|
416 |
} else { // Just time borders
|
417 |
$tm = floor(24 / $time_selles_num);
|
418 |
+
|
419 |
for ($tt = 0; $tt < $time_selles_num; $tt++) {
|
420 |
echo '<div class="time_section_in_day timeslots_in_this_day' . $time_selles_num .
|
421 |
' time_hour'.($tt*$tm).' time_in_days_num_'.$view_days_num.' '.
|
422 |
+
( $is_bk ?'time_booked_in_day':'' ).' '.( $is_approved ?'approved':'' ).
|
423 |
' ">'.
|
424 |
(($is_bk)?($my_bkid_title):'').
|
425 |
'</div>';
|
1003 |
|
1004 |
$title .= '<a class=\'button button-secondary approve_bk_link '.($is_approved?'hidden_items':'').'\' style=\'margin-right:5px;\' href=\'javascript:;\' onclick=\'javascript:approve_unapprove_booking('. $bk_id.',1, '. $user_bk_id .', "'. getBookingLocale() .'" , 1 );\' ><i class=\'icon-ok-circle\'></i></a>';
|
1005 |
$title .= '<a class=\'button button-secondary pending_bk_link '.($is_approved?'':'hidden_items').'\' style=\'margin-right:5px;\' href=\'javascript:;\' onclick=\'javascript:approve_unapprove_booking('. $bk_id.',0, '. $user_bk_id .', "'. getBookingLocale() .'" , 1 );\' ><i class=\'icon-ban-circle\'></i></a>';
|
1006 |
+
//FixIn: 6.1.1.10
|
1007 |
+
$is_trash = $bookings[$bk_id]->trash;
|
1008 |
+
//$title .= '<a class=\'button button-secondary\' style=\'margin-right:5px;\' href=\'javascript:;\' onclick=\'javascript:delete_booking('. $bk_id.', '. $user_bk_id .', "'. getBookingLocale() .'" , 1 );\' ><i class=\'icon-trash\'></i></a>';
|
1009 |
+
$title .= '<a class=\'button button-secondary trash_bk_link'.(($is_trash)?' hidden_items ':'').'\' style=\'margin-right:5px;\' href=\'javascript:;\' onclick=\'javascript:trash__restore_booking(1,'. $bk_id.', '. $user_bk_id .', "'. getBookingLocale() .'" , 1 );\' ><i class=\'icon-trash\'></i></a>';
|
1010 |
+
$title .= '<a class=\'button button-secondary restore_bk_link'.((!$is_trash)?' hidden_items ':'').'\' style=\'margin-right:5px;\' href=\'javascript:;\' onclick=\'javascript:trash__restore_booking(0,'. $bk_id.', '. $user_bk_id .', "'. getBookingLocale() .'" , 1 );\' ><i class=\'icon-repeat\'></i></a>';
|
1011 |
+
$title .= '<a class=\'button button-secondary delete_bk_link'.((!$is_trash)?' hidden_items ':'').'\' style=\'margin-right:5px;\' href=\'javascript:;\' onclick=\'javascript:delete_booking('. $bk_id.', '. $user_bk_id .', "'. getBookingLocale() .'" , 1 );\' ><i class=\'icon-remove\'></i></a>';
|
1012 |
+
//End FixIn: 6.1.1.10
|
1013 |
+
|
1014 |
}
|
1015 |
$title .= '</div>';
|
1016 |
|
1020 |
|
1021 |
return( array($title_in_day, $title, $title_hint, $is_approved) );
|
1022 |
}
|
|
lib/wpdev-booking-class.php
CHANGED
@@ -174,7 +174,7 @@ class wpdev_booking {
|
|
174 |
|
175 |
|
176 |
// Show Booking Dashboard Widget content
|
177 |
-
function dashboard_bk_widget_show() {
|
178 |
|
179 |
wp_nonce_field('wpbc_ajax_admin_nonce', "wpbc_admin_panel_nonce_dashboard" , true , true );
|
180 |
|
@@ -204,12 +204,14 @@ class wpdev_booking {
|
|
204 |
}
|
205 |
}
|
206 |
|
207 |
-
|
|
|
208 |
$sql_req = "SELECT DISTINCT bk.booking_id as id, dt.approved, dt.booking_date, bk.modification_date as m_date , bk.is_new as new
|
209 |
FROM {$wpdb->prefix}bookingdates as dt
|
210 |
INNER JOIN {$wpdb->prefix}booking as bk
|
211 |
-
ON bk.booking_id = dt.booking_id "
|
212 |
-
|
|
|
213 |
|
214 |
$sql_req .= "ORDER BY dt.booking_date" ;
|
215 |
|
@@ -840,6 +842,8 @@ class wpdev_booking {
|
|
840 |
global $wpdb;
|
841 |
$dates_array = $time_array = array();
|
842 |
|
|
|
|
|
843 |
if ($approved == 'admin_blank') {
|
844 |
|
845 |
$sql_req = "SELECT DISTINCT dt.booking_date
|
@@ -850,7 +854,7 @@ class wpdev_booking {
|
|
850 |
|
851 |
ON bk.booking_id = dt.booking_id
|
852 |
|
853 |
-
WHERE dt.booking_date >= CURDATE()
|
854 |
|
855 |
ORDER BY dt.booking_date" ;
|
856 |
$dates_approve = $wpdb->get_results( $sql_req );
|
@@ -866,7 +870,7 @@ class wpdev_booking {
|
|
866 |
|
867 |
ON bk.booking_id = dt.booking_id
|
868 |
|
869 |
-
WHERE dt.booking_date >= CURDATE()
|
870 |
|
871 |
". (($skip_booking_id != '') ? " AND dt.booking_id NOT IN ( ".$skip_booking_id." ) ":"") ."
|
872 |
|
@@ -881,7 +885,7 @@ class wpdev_booking {
|
|
881 |
|
882 |
ON bk.booking_id = dt.booking_id
|
883 |
|
884 |
-
WHERE dt.approved = $approved AND dt.booking_date >= CURDATE() AND bk.booking_type IN ($bk_type_additional)
|
885 |
|
886 |
". (($skip_booking_id != '') ? " AND dt.booking_id NOT IN ( ".$skip_booking_id." ) ":"") ."
|
887 |
|
@@ -891,97 +895,29 @@ class wpdev_booking {
|
|
891 |
}
|
892 |
|
893 |
|
894 |
-
//
|
895 |
-
|
896 |
-
if (! empty($dates_approve))
|
897 |
foreach ($dates_approve as $my_date) {
|
898 |
|
899 |
-
|
900 |
-
// Extend unavailbale interval to extra hours; cleaning time, or any other service time
|
901 |
-
/**
|
902 |
-
// $extra_hours_in = 1;
|
903 |
-
// $extra_hours_out = 1;
|
904 |
-
// if ( substr( $my_date->booking_date, -1 ) == '1' )
|
905 |
-
// $my_date->booking_date = date( 'Y-m-d H:i:s', strtotime( '-' . $extra_hours_in . ' hour', strtotime( $my_date->booking_date ) ) );
|
906 |
-
// if ( substr( $my_date->booking_date, -1 ) == '2' )
|
907 |
-
// $my_date->booking_date = date( 'Y-m-d H:i:s', strtotime( '+' . $extra_hours_out . ' hour', strtotime( $my_date->booking_date ) ) );
|
908 |
-
|
909 |
-
$extra_minutes_in = 0;
|
910 |
-
$extra_minutes_out = 30;
|
911 |
-
if ( substr( $my_date->booking_date, -1 ) == '1' )
|
912 |
-
$my_date->booking_date = date( 'Y-m-d H:i:s', strtotime( '-' . $extra_minutes_in . ' minutes', strtotime( $my_date->booking_date ) ) );
|
913 |
-
if ( substr( $my_date->booking_date, -1 ) == '2' )
|
914 |
-
$my_date->booking_date = date( 'Y-m-d H:i:s', strtotime( '+' . $extra_minutes_out . ' minutes', strtotime( $my_date->booking_date ) ) );
|
915 |
-
|
916 |
-
// Fix overlap of previous times
|
917 |
-
if ( $my_previous_date !== false ) {
|
918 |
-
if (
|
919 |
-
( substr( $my_date->booking_date, -1 ) == '1' )
|
920 |
-
&& ( substr( $my_previous_date, -1 ) == '2' )
|
921 |
-
&& ( strtotime( $my_previous_date ) >= strtotime( $my_date->booking_date ) )
|
922 |
-
) {
|
923 |
-
$my_date->booking_date = date( 'Y-m-d H:i:s', strtotime( '-1 second', strtotime( $my_previous_date ) ) );
|
924 |
-
}
|
925 |
-
}
|
926 |
-
$my_previous_date = $my_date->booking_date;
|
927 |
-
/**/
|
928 |
-
////////////////////////////////////////////////////////////////
|
929 |
-
// Extend unavailbale interval to extra DAYS
|
930 |
-
/*
|
931 |
-
$extra_days_in = 0;
|
932 |
-
$extra_days_out = 21;
|
933 |
-
$initial_check_in_day = $initial_check_out_day = false;
|
934 |
-
if ( substr( $my_date->booking_date, -1 ) == '1' ) {
|
935 |
-
$initial_check_in_day = $my_date->booking_date;
|
936 |
-
$my_date->booking_date = date( 'Y-m-d H:i:s', strtotime( '-' . $extra_days_in . ' day', strtotime( $my_date->booking_date ) ) );
|
937 |
-
}
|
938 |
-
if ( substr( $my_date->booking_date, -1 ) == '2' ) {
|
939 |
-
$initial_check_out_day = $my_date->booking_date;
|
940 |
-
$my_date->booking_date = date( 'Y-m-d H:i:s', strtotime( '+' . $extra_days_out . ' day', strtotime( $my_date->booking_date ) ) );
|
941 |
-
}
|
942 |
-
|
943 |
-
// Fix overlap of previous times
|
944 |
-
if ( $my_previous_date !== false ) {
|
945 |
-
if (
|
946 |
-
( substr( $my_date->booking_date, -1 ) == '1' )
|
947 |
-
&& ( substr( $my_previous_date, -1 ) == '2' )
|
948 |
-
&& ( strtotime( $my_previous_date ) >= strtotime( $my_date->booking_date ) )
|
949 |
-
) {
|
950 |
-
$my_date->booking_date = date( 'Y-m-d H:i:s', strtotime( '-1 second', strtotime( $my_previous_date ) ) );
|
951 |
-
}
|
952 |
-
}
|
953 |
-
$my_previous_date = $my_date->booking_date;
|
954 |
-
|
955 |
-
if ( $initial_check_in_day !== false )
|
956 |
-
for ( $di = 0; $di < $extra_days_in; $di++ ) {
|
957 |
-
$my_block_date = date( 'Y-m-d', strtotime( '-' . $di . ' day', strtotime( $initial_check_in_day ) ) );
|
958 |
-
$my_dt = explode( '-', $my_block_date );
|
959 |
-
array_push( $dates_array , $my_dt );
|
960 |
-
array_push( $time_array , array( '00', '00', '00' ) );
|
961 |
-
}
|
962 |
-
|
963 |
-
if ( $initial_check_out_day !== false )
|
964 |
-
for ( $di = 0; $di < $extra_days_out; $di++ ) {
|
965 |
-
$my_block_date = date( 'Y-m-d', strtotime( '+' . $di . ' day', strtotime( $initial_check_out_day ) ) );
|
966 |
-
$my_dt = explode( '-', $my_block_date );
|
967 |
-
array_push( $dates_array , $my_dt );
|
968 |
-
array_push( $time_array , array( '00', '00', '00' ) );
|
969 |
-
}
|
970 |
-
|
971 |
-
/**/
|
972 |
-
////////////////////////////////////////////////////////////////
|
973 |
-
|
974 |
|
975 |
-
$
|
976 |
-
|
977 |
-
|
978 |
-
$
|
|
|
|
|
|
|
|
|
|
|
979 |
|
980 |
-
|
981 |
-
|
|
|
982 |
}
|
983 |
-
|
984 |
-
return
|
985 |
}
|
986 |
|
987 |
// Generate booking CAPTCHA fields for booking form
|
@@ -1491,6 +1427,9 @@ class wpdev_booking {
|
|
1491 |
if ($booking_legend_is_show_item_pending == 'On') // __('Pending' ,'booking')
|
1492 |
$my_result .= '<div class="wpdev_hint_with_text"><div class="block_pending date2approve">'.$text_for_day_cell.'</div><div class="block_text">- '.$booking_legend_text_for_item_pending.'</div></div>';
|
1493 |
|
|
|
|
|
|
|
1494 |
if ( class_exists('wpdev_bk_biz_s') ) {
|
1495 |
|
1496 |
$booking_legend_is_show_item_partially = get_bk_option( 'booking_legend_is_show_item_partially');
|
@@ -1752,14 +1691,24 @@ class wpdev_booking {
|
|
1752 |
return;
|
1753 |
}
|
1754 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1755 |
|
1756 |
-
|
1757 |
-
|
1758 |
$start_script_code = $this->get_script_for_calendar($bk_type, $additional_bk_types, $my_selected_dates_without_calendar, $cal_count, $start_month_calendar );
|
1759 |
|
1760 |
// Apply scripts for the conditions in the rnage days selections
|
1761 |
$start_script_code = apply_bk_filter('wpdev_bk_define_additional_js_options_for_bk_shortcode', $start_script_code, $bk_type, $bk_otions);
|
1762 |
-
|
1763 |
$my_result = ' ' . $this->get__client_side_booking_content($bk_type, $my_booking_form, $my_selected_dates_without_calendar, $cal_count, $bk_otions ) . ' ' . $start_script_code ;
|
1764 |
|
1765 |
$my_result = apply_filters('wpdev_booking_form', $my_result , $bk_type);
|
@@ -1906,6 +1855,7 @@ class wpdev_booking {
|
|
1906 |
});
|
1907 |
</script>';
|
1908 |
} else {
|
|
|
1909 |
$return_form .= '<script type="text/javascript">
|
1910 |
jQuery(document).ready( function(){
|
1911 |
if(typeof( showCostHintInsideBkForm ) == "function") {
|
@@ -2061,6 +2011,13 @@ class wpdev_booking {
|
|
2061 |
if ( isset( $attr['selected_dates'] ) ) { $my_selected_dates_without_calendar = $attr['selected_dates']; } //$my_selected_dates_without_calendar = '20.08.2010, 29.08.2010';
|
2062 |
|
2063 |
$res = $this->add_booking_form_action($my_boook_type,$my_boook_count, 0 , $my_booking_form, $my_selected_dates_without_calendar, false );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2064 |
return $res;
|
2065 |
}
|
2066 |
|
@@ -2176,6 +2133,9 @@ class wpdev_booking {
|
|
2176 |
|
2177 |
// Activate
|
2178 |
function wpdev_booking_activate() {
|
|
|
|
|
|
|
2179 |
update_bk_option( 'booking_activation_process','On');
|
2180 |
|
2181 |
//update_bk_option( 'booking_version_num',WP_BK_VERSION_NUM); //FixIn:5.4.2
|
@@ -2381,6 +2341,12 @@ class wpdev_booking {
|
|
2381 |
$wp_queries[] = "ALTER TABLE {$wpdb->prefix}booking ADD sync_gid varchar(200) NOT NULL default '' AFTER booking_id";
|
2382 |
}
|
2383 |
|
|
|
|
|
|
|
|
|
|
|
|
|
2384 |
if ( ! wpbc_is_table_exists('bookingdates') ) { // Cehck if tables not exist yet
|
2385 |
$simple_sql = "CREATE TABLE {$wpdb->prefix}bookingdates (
|
2386 |
booking_id bigint(20) unsigned NOT NULL,
|
@@ -2618,8 +2584,10 @@ class wpdev_booking {
|
|
2618 |
if (empty($my_bk_types)) $my_bk_types=array(13,14,15,16,17); // The booking resources with these IDs are exist in the Demo sites
|
2619 |
else shuffle($my_bk_types);
|
2620 |
|
|
|
|
|
2621 |
// Get NUMBER of Bookings
|
2622 |
-
$bookings_count = $wpdb->get_results( "SELECT COUNT(*) as count FROM {$wpdb->prefix}booking as bk" );
|
2623 |
if (count($bookings_count)>0) $bookings_count = $bookings_count[0]->count ;
|
2624 |
if ($bookings_count>=20) return;
|
2625 |
|
174 |
|
175 |
|
176 |
// Show Booking Dashboard Widget content
|
177 |
+
function dashboard_bk_widget_show() {
|
178 |
|
179 |
wp_nonce_field('wpbc_ajax_admin_nonce', "wpbc_admin_panel_nonce_dashboard" , true , true );
|
180 |
|
204 |
}
|
205 |
}
|
206 |
|
207 |
+
$trash_bookings = ' bk.trash != 1 '; //FixIn: 6.1.1.10 - check also below usage of {$trash_bookings}
|
208 |
+
|
209 |
$sql_req = "SELECT DISTINCT bk.booking_id as id, dt.approved, dt.booking_date, bk.modification_date as m_date , bk.is_new as new
|
210 |
FROM {$wpdb->prefix}bookingdates as dt
|
211 |
INNER JOIN {$wpdb->prefix}booking as bk
|
212 |
+
ON bk.booking_id = dt.booking_id "
|
213 |
+
. " WHERE {$trash_bookings} " ;
|
214 |
+
if ($my_resources!='') $sql_req .= " AND bk.booking_type IN ({$my_resources}) ";
|
215 |
|
216 |
$sql_req .= "ORDER BY dt.booking_date" ;
|
217 |
|
842 |
global $wpdb;
|
843 |
$dates_array = $time_array = array();
|
844 |
|
845 |
+
$trash_bookings = ' AND bk.trash != 1 '; //FixIn: 6.1.1.10 - check also below usage of {$trash_bookings}
|
846 |
+
|
847 |
if ($approved == 'admin_blank') {
|
848 |
|
849 |
$sql_req = "SELECT DISTINCT dt.booking_date
|
854 |
|
855 |
ON bk.booking_id = dt.booking_id
|
856 |
|
857 |
+
WHERE dt.booking_date >= CURDATE() {$trash_bookings} AND bk.booking_type IN ($bk_type_additional) AND bk.form like '%admin@blank.com%'
|
858 |
|
859 |
ORDER BY dt.booking_date" ;
|
860 |
$dates_approve = $wpdb->get_results( $sql_req );
|
870 |
|
871 |
ON bk.booking_id = dt.booking_id
|
872 |
|
873 |
+
WHERE dt.booking_date >= CURDATE() {$trash_bookings} AND bk.booking_type IN ($bk_type_additional)
|
874 |
|
875 |
". (($skip_booking_id != '') ? " AND dt.booking_id NOT IN ( ".$skip_booking_id." ) ":"") ."
|
876 |
|
885 |
|
886 |
ON bk.booking_id = dt.booking_id
|
887 |
|
888 |
+
WHERE dt.approved = $approved AND dt.booking_date >= CURDATE() {$trash_bookings} AND bk.booking_type IN ($bk_type_additional)
|
889 |
|
890 |
". (($skip_booking_id != '') ? " AND dt.booking_id NOT IN ( ".$skip_booking_id." ) ":"") ."
|
891 |
|
895 |
}
|
896 |
|
897 |
|
898 |
+
// FixIn: 6.1.1.18
|
899 |
+
$prior_check_out_date = false;
|
900 |
+
if ( ! empty( $dates_approve ) )
|
901 |
foreach ($dates_approve as $my_date) {
|
902 |
|
903 |
+
$blocked_days_range = array( $my_date->booking_date );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
904 |
|
905 |
+
list( $blocked_days_range, $prior_check_out_date ) = apply_filters( 'wpbc_get_extended_block_dates_filter', array( $blocked_days_range, $prior_check_out_date ) );
|
906 |
+
|
907 |
+
// Define booked dates and times
|
908 |
+
foreach ( $blocked_days_range as $in_date) {
|
909 |
+
|
910 |
+
$my_date = explode(' ', $in_date );
|
911 |
+
|
912 |
+
$my_dt = explode('-',$my_date[0]);
|
913 |
+
$my_tm = explode(':',$my_date[1]);
|
914 |
|
915 |
+
array_push( $dates_array , $my_dt );
|
916 |
+
array_push( $time_array , $my_tm );
|
917 |
+
}
|
918 |
}
|
919 |
+
// FixIn: 6.1.1.18 End
|
920 |
+
return array( $dates_array, $time_array );
|
921 |
}
|
922 |
|
923 |
// Generate booking CAPTCHA fields for booking form
|
1427 |
if ($booking_legend_is_show_item_pending == 'On') // __('Pending' ,'booking')
|
1428 |
$my_result .= '<div class="wpdev_hint_with_text"><div class="block_pending date2approve">'.$text_for_day_cell.'</div><div class="block_text">- '.$booking_legend_text_for_item_pending.'</div></div>';
|
1429 |
|
1430 |
+
// if ($booking_legend_is_show_item_pending == 'On') // __('Pending' ,'booking')
|
1431 |
+
// $my_result .= '<div class="wpdev_hint_with_text "><div class="block_pending datepick-unselectable date_user_unavailable" style="background-color:transparent;">'.$text_for_day_cell.'</div><div class="block_text">- '.__('Unavailable', 'booking').'</div></div>';
|
1432 |
+
|
1433 |
if ( class_exists('wpdev_bk_biz_s') ) {
|
1434 |
|
1435 |
$booking_legend_is_show_item_partially = get_bk_option( 'booking_legend_is_show_item_partially');
|
1691 |
return;
|
1692 |
}
|
1693 |
|
1694 |
+
// FixIn: 6.1.1.9
|
1695 |
+
if ( isset( $_GET['booking_hash'] ) ) {
|
1696 |
+
$bk_edit_id = $my_booking_id_type[0];
|
1697 |
+
$bk_br_id = $my_booking_id_type[1];
|
1698 |
+
// Check situation when we have editing "child booking resource", so need to reupdate calendar and form to have it for parent resource.
|
1699 |
+
if ( ( function_exists( 'wpbc_is_this_child_resource') ) && ( wpbc_is_this_child_resource( $bk_br_id ) ) ){
|
1700 |
+
$bk_parent_br_id = wpbc_get_parent_resource( $bk_br_id );
|
1701 |
+
|
1702 |
+
$bk_type = $bk_parent_br_id;
|
1703 |
+
}
|
1704 |
+
}
|
1705 |
+
// End: 6.1.1.9
|
1706 |
|
|
|
|
|
1707 |
$start_script_code = $this->get_script_for_calendar($bk_type, $additional_bk_types, $my_selected_dates_without_calendar, $cal_count, $start_month_calendar );
|
1708 |
|
1709 |
// Apply scripts for the conditions in the rnage days selections
|
1710 |
$start_script_code = apply_bk_filter('wpdev_bk_define_additional_js_options_for_bk_shortcode', $start_script_code, $bk_type, $bk_otions);
|
1711 |
+
|
1712 |
$my_result = ' ' . $this->get__client_side_booking_content($bk_type, $my_booking_form, $my_selected_dates_without_calendar, $cal_count, $bk_otions ) . ' ' . $start_script_code ;
|
1713 |
|
1714 |
$my_result = apply_filters('wpdev_booking_form', $my_result , $bk_type);
|
1855 |
});
|
1856 |
</script>';
|
1857 |
} else {
|
1858 |
+
if (0) //FixIn:6.1.1.16
|
1859 |
$return_form .= '<script type="text/javascript">
|
1860 |
jQuery(document).ready( function(){
|
1861 |
if(typeof( showCostHintInsideBkForm ) == "function") {
|
2011 |
if ( isset( $attr['selected_dates'] ) ) { $my_selected_dates_without_calendar = $attr['selected_dates']; } //$my_selected_dates_without_calendar = '20.08.2010, 29.08.2010';
|
2012 |
|
2013 |
$res = $this->add_booking_form_action($my_boook_type,$my_boook_count, 0 , $my_booking_form, $my_selected_dates_without_calendar, false );
|
2014 |
+
|
2015 |
+
$res .= "<script type='text/javascript'> "; //FixIn:6.1.1.16
|
2016 |
+
$res .= "jQuery(document).ready( function(){";
|
2017 |
+
$res .= apply_filters('wpdev_booking_show_availability_at_calendar', '', $my_boook_type);
|
2018 |
+
$res .= "}); ";
|
2019 |
+
$res .= "</script>";
|
2020 |
+
|
2021 |
return $res;
|
2022 |
}
|
2023 |
|
2133 |
|
2134 |
// Activate
|
2135 |
function wpdev_booking_activate() {
|
2136 |
+
|
2137 |
+
ini_set('memory_limit','256M'); //FixIn:6.1.1.15
|
2138 |
+
|
2139 |
update_bk_option( 'booking_activation_process','On');
|
2140 |
|
2141 |
//update_bk_option( 'booking_version_num',WP_BK_VERSION_NUM); //FixIn:5.4.2
|
2341 |
$wp_queries[] = "ALTER TABLE {$wpdb->prefix}booking ADD sync_gid varchar(200) NOT NULL default '' AFTER booking_id";
|
2342 |
}
|
2343 |
|
2344 |
+
// FixIn: 6.1.1.10
|
2345 |
+
if (wpbc_is_field_in_table_exists('booking','trash') == 0) {
|
2346 |
+
$wp_queries[] = "ALTER TABLE {$wpdb->prefix}booking ADD trash bigint(10) NOT NULL default 0 AFTER booking_id";
|
2347 |
+
}
|
2348 |
+
// End: 6.1.1.10
|
2349 |
+
|
2350 |
if ( ! wpbc_is_table_exists('bookingdates') ) { // Cehck if tables not exist yet
|
2351 |
$simple_sql = "CREATE TABLE {$wpdb->prefix}bookingdates (
|
2352 |
booking_id bigint(20) unsigned NOT NULL,
|
2584 |
if (empty($my_bk_types)) $my_bk_types=array(13,14,15,16,17); // The booking resources with these IDs are exist in the Demo sites
|
2585 |
else shuffle($my_bk_types);
|
2586 |
|
2587 |
+
$trash_bookings = ' bk.trash != 1 '; //FixIn: 6.1.1.10 - check also below usage of {$trash_bookings}
|
2588 |
+
|
2589 |
// Get NUMBER of Bookings
|
2590 |
+
$bookings_count = $wpdb->get_results( "SELECT COUNT(*) as count FROM {$wpdb->prefix}booking as bk WHERE {$trash_bookings}" );
|
2591 |
if (count($bookings_count)>0) $bookings_count = $bookings_count[0]->count ;
|
2592 |
if ($bookings_count>=20) return;
|
2593 |
|
lib/wpdev-booking-functions.php
CHANGED
@@ -406,7 +406,8 @@ if ( ! defined( 'ABSPATH' ) ) exit;
|
|
406 |
//$checkbox_value[ str_replace('[]','',(string) $element_name) ] = 'checkbox';
|
407 |
}
|
408 |
|
409 |
-
$value =
|
|
|
410 |
}
|
411 |
|
412 |
if ( ( $type == 'select-one') || ( $type == 'select-multiple' ) ) { // add all select box selected items to return array
|
@@ -433,9 +434,9 @@ if ( ! defined( 'ABSPATH' ) ) exit;
|
|
433 |
$booking_form_show = str_replace( '['. $type_name .']', $value ,$booking_form_show);
|
434 |
}
|
435 |
|
436 |
-
|
437 |
// Remove all shortcodes, which is not replaced early.
|
438 |
-
$booking_form_show = preg_replace ('/[\s]{0,}\[[a-zA-Z0-9.,-_]{0,}\][\s]{0,}/', '', $booking_form_show);
|
439 |
|
440 |
if (! isset($all_fields_array_without_types[ 'booking_resource_id' ])) $all_fields_array_without_types[ 'booking_resource_id' ] = $bktype;
|
441 |
if (! isset($all_fields_array_without_types[ 'resource_id' ])) $all_fields_array_without_types[ 'resource_id' ] = $bktype;
|
@@ -448,6 +449,15 @@ if ( ! defined( 'ABSPATH' ) ) exit;
|
|
448 |
if (! isset($all_fields_array_without_types[ $key_param ])) $all_fields_array_without_types[ $key_param ] = $value_param;
|
449 |
}
|
450 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
451 |
$return_array = array('content' => $booking_form_show,
|
452 |
'email' => $email_adress,
|
453 |
'name' => $name_of_person,
|
@@ -1377,8 +1387,8 @@ if ( ! defined( 'ABSPATH' ) ) exit;
|
|
1377 |
$wpbc_email_return_path = new wpbc_email_return_path();
|
1378 |
|
1379 |
// $mail_recipient = str_replace( '"', '', $mail_recipient ); //FixIn:5.4.3
|
1380 |
-
|
1381 |
-
|
1382 |
|
1383 |
unset( $wpbc_email_return_path );
|
1384 |
}
|
@@ -1782,19 +1792,25 @@ if ( ! defined( 'ABSPATH' ) ) exit;
|
|
1782 |
|
1783 |
$wpbc_mail = '"' . ((empty($wpbc_email_title))?__('Booking system' ,'booking'):$wpbc_email_title) . '" '
|
1784 |
. '<'.$booking_form_show['email'].'>';
|
|
|
|
|
|
|
1785 |
|
1786 |
$mail_sender = str_replace('[visitoremail]',$wpbc_mail,$mail_sender);
|
1787 |
}
|
1788 |
$mail_sender = replace_bk_shortcodes_in_form($mail_sender, $booking_form_show['_all_fields_'], true);
|
1789 |
|
1790 |
$mail_headers = "From: $mail_sender\nContent-Type: text/html\n";
|
1791 |
-
|
1792 |
-
|
1793 |
-
//
|
1794 |
-
|
1795 |
-
|
1796 |
-
|
1797 |
-
|
|
|
|
|
|
|
1798 |
|
1799 |
if (strpos($mail_recipients, ',')!==false) { $mail_recipients= explode(',', $mail_recipients);
|
1800 |
} else if (strpos($mail_recipients, ';')!==false) { $mail_recipients= explode(';', $mail_recipients);
|
@@ -2382,7 +2398,9 @@ if ( ! defined( 'ABSPATH' ) ) exit;
|
|
2382 |
|
2383 |
if (wpbc_is_field_in_table_exists('booking','is_new') == 0) return 0; // do not created this field, so return 0
|
2384 |
|
2385 |
-
$
|
|
|
|
|
2386 |
|
2387 |
$sql_req = apply_bk_filter('get_sql_for_checking_new_bookings', $sql_req );
|
2388 |
$sql_req = apply_bk_filter('get_sql_for_checking_new_bookings_multiuser', $sql_req );
|
@@ -2422,7 +2440,7 @@ if ( ! defined( 'ABSPATH' ) ) exit;
|
|
2422 |
|
2423 |
|
2424 |
function wpdev_bk_is_this_demo(){
|
2425 |
-
|
2426 |
if (
|
2427 |
( strpos($_SERVER['SCRIPT_FILENAME'],'wpbookingcalendar.com') !== FALSE ) ||
|
2428 |
( strpos($_SERVER['HTTP_HOST'],'wpbookingcalendar.com') !== FALSE )
|
406 |
//$checkbox_value[ str_replace('[]','',(string) $element_name) ] = 'checkbox';
|
407 |
}
|
408 |
|
409 |
+
$value = '['. $type_name .']'; //FixIn: 6.1.1.14
|
410 |
+
//$value = $value .' ' . '['. $type_name .']';
|
411 |
}
|
412 |
|
413 |
if ( ( $type == 'select-one') || ( $type == 'select-multiple' ) ) { // add all select box selected items to return array
|
434 |
$booking_form_show = str_replace( '['. $type_name .']', $value ,$booking_form_show);
|
435 |
}
|
436 |
|
437 |
+
//debuge($booking_form_show, $all_fields_array_without_types);
|
438 |
// Remove all shortcodes, which is not replaced early.
|
439 |
+
// $booking_form_show = preg_replace ('/[\s]{0,}\[[a-zA-Z0-9.,-_]{0,}\][\s]{0,}/', '', $booking_form_show); //FixIn: 6.1.1.4
|
440 |
|
441 |
if (! isset($all_fields_array_without_types[ 'booking_resource_id' ])) $all_fields_array_without_types[ 'booking_resource_id' ] = $bktype;
|
442 |
if (! isset($all_fields_array_without_types[ 'resource_id' ])) $all_fields_array_without_types[ 'resource_id' ] = $bktype;
|
449 |
if (! isset($all_fields_array_without_types[ $key_param ])) $all_fields_array_without_types[ $key_param ] = $value_param;
|
450 |
}
|
451 |
|
452 |
+
|
453 |
+
foreach ( $all_fields_array_without_types as $key_param=>$value_param) { //FixIn: 6.1.1.4
|
454 |
+
if ( ! is_object( $value_param ) )
|
455 |
+
$booking_form_show = str_replace( '['. $key_param .']', $value_param ,$booking_form_show);
|
456 |
+
}
|
457 |
+
// Remove all shortcodes, which is not replaced early.
|
458 |
+
$booking_form_show = preg_replace ('/[\s]{0,}\[[a-zA-Z0-9.,-_]{0,}\][\s]{0,}/', '', $booking_form_show); //FixIn: 6.1.1.4
|
459 |
+
|
460 |
+
|
461 |
$return_array = array('content' => $booking_form_show,
|
462 |
'email' => $email_adress,
|
463 |
'name' => $name_of_person,
|
1387 |
$wpbc_email_return_path = new wpbc_email_return_path();
|
1388 |
|
1389 |
// $mail_recipient = str_replace( '"', '', $mail_recipient ); //FixIn:5.4.3
|
1390 |
+
if ( ! wpdev_bk_is_this_demo() ) //FixIn:6.1.1.19
|
1391 |
+
@wp_mail($mail_recipient, $mail_subject, $mail_body, $mail_headers);
|
1392 |
|
1393 |
unset( $wpbc_email_return_path );
|
1394 |
}
|
1792 |
|
1793 |
$wpbc_mail = '"' . ((empty($wpbc_email_title))?__('Booking system' ,'booking'):$wpbc_email_title) . '" '
|
1794 |
. '<'.$booking_form_show['email'].'>';
|
1795 |
+
|
1796 |
+
// $wpbc_mail = '"' . ((empty($wpbc_email_title))?__('Booking system' ,'booking'):$wpbc_email_title) . '" '
|
1797 |
+
// . '<your_email@server.com>';
|
1798 |
|
1799 |
$mail_sender = str_replace('[visitoremail]',$wpbc_mail,$mail_sender);
|
1800 |
}
|
1801 |
$mail_sender = replace_bk_shortcodes_in_form($mail_sender, $booking_form_show['_all_fields_'], true);
|
1802 |
|
1803 |
$mail_headers = "From: $mail_sender\nContent-Type: text/html\n";
|
1804 |
+
|
1805 |
+
//$mail_headers = "From: $mail_sender\n";
|
1806 |
+
//preg_match('/<(.*)>/', $mail_sender, $simple_email_matches );
|
1807 |
+
//$reply_to_email = ( count( $simple_email_matches ) > 1 ) ? $simple_email_matches[1] : $mail_sender;
|
1808 |
+
//$mail_headers .= 'Reply-To: ' . $booking_form_show['email'] . "\n";
|
1809 |
+
//$mail_headers .= 'Reply-To: ' . $booking_form_show['email'] . "\n";
|
1810 |
+
//$mail_headers .= 'X-Sender: ' . $reply_to_email . "\n";
|
1811 |
+
//$mail_headers .= 'Return-Path: ' . $reply_to_email . "\n";
|
1812 |
+
//$mail_headers .= 'Content-type: text/html; charset=' . get_option( 'blog_charset' ) . "\n";
|
1813 |
+
//debuge( htmlentities( $mail_headers ) );
|
1814 |
|
1815 |
if (strpos($mail_recipients, ',')!==false) { $mail_recipients= explode(',', $mail_recipients);
|
1816 |
} else if (strpos($mail_recipients, ';')!==false) { $mail_recipients= explode(';', $mail_recipients);
|
2398 |
|
2399 |
if (wpbc_is_field_in_table_exists('booking','is_new') == 0) return 0; // do not created this field, so return 0
|
2400 |
|
2401 |
+
$trash_bookings = ' AND bk.trash != 1 '; //FixIn: 6.1.1.10 - check also below usage of {$trash_bookings}
|
2402 |
+
|
2403 |
+
$sql_req = "SELECT bk.booking_id FROM {$wpdb->prefix}booking as bk WHERE bk.is_new = 1 {$trash_bookings} " ;
|
2404 |
|
2405 |
$sql_req = apply_bk_filter('get_sql_for_checking_new_bookings', $sql_req );
|
2406 |
$sql_req = apply_bk_filter('get_sql_for_checking_new_bookings_multiuser', $sql_req );
|
2440 |
|
2441 |
|
2442 |
function wpdev_bk_is_this_demo(){
|
2443 |
+
//return true;
|
2444 |
if (
|
2445 |
( strpos($_SERVER['SCRIPT_FILENAME'],'wpbookingcalendar.com') !== FALSE ) ||
|
2446 |
( strpos($_SERVER['HTTP_HOST'],'wpbookingcalendar.com') !== FALSE )
|
lib/wpdev-booking-widget.php
CHANGED
@@ -50,6 +50,7 @@ class BookingWidget extends WP_Widget {
|
|
50 |
make_bk_action('wpdevbk_add_form', $booking_widget_type , $booking_widget_calendar_count, true, $my_booking_form_name );
|
51 |
|
52 |
} else {
|
|
|
53 |
do_action('wpdev_bk_add_calendar', $booking_widget_type , $booking_widget_calendar_count);
|
54 |
}
|
55 |
|
50 |
make_bk_action('wpdevbk_add_form', $booking_widget_type , $booking_widget_calendar_count, true, $my_booking_form_name );
|
51 |
|
52 |
} else {
|
53 |
+
echo "<div id='calendar_booking_unselectable" . $booking_widget_type . "'></div>"; //FixIn: 6.1.1.13
|
54 |
do_action('wpdev_bk_add_calendar', $booking_widget_type , $booking_widget_calendar_count);
|
55 |
}
|
56 |
|
lib/wpdev-settings-general.php
CHANGED
@@ -37,6 +37,9 @@ function wpbc_general_settings_top_menu_submenu_line(){
|
|
37 |
<a href="javascript:void(0)" onclick="javascript:makeScrollInAdminPanel('#bk_general_settings_calendar' );"
|
38 |
class="nav-tab booking-submenu-tab go-to-link" ><span><?php _e('Calendar' ,'booking');?></span></a>
|
39 |
|
|
|
|
|
|
|
40 |
<a href="javascript:void(0)" onclick="javascript:makeScrollInAdminPanel('#bk_general_settings_form' );"
|
41 |
class="nav-tab booking-submenu-tab go-to-link" ><span><?php _e('Form' ,'booking');?></span></a>
|
42 |
|
@@ -398,7 +401,29 @@ function wpdev_bk_settings_general() {
|
|
398 |
$upload_dir = wp_upload_dir();
|
399 |
$custom_user_skin_folder = $upload_dir['basedir'] . '/wpbc_skins/';
|
400 |
|
401 |
-
$dir_list = wpdev_bk_dir_list( array( '/css/skins/', '/inc/skins/', $custom_user_skin_folder ) );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
402 |
//debuge($dir_list);
|
403 |
?>
|
404 |
<select id="booking_skin" name="booking_skin" style="text-transform:capitalize;">
|
@@ -452,61 +477,9 @@ function wpdev_bk_settings_general() {
|
|
452 |
</tr>
|
453 |
|
454 |
<tr valign="top"><td colspan="2" style="padding:10px 0px; "><div style="border-bottom:1px solid #cccccc;"></div></td></tr>
|
455 |
-
|
456 |
-
<tr valign="top">
|
457 |
-
<th scope="row"><label for="unavailable_days_num_from_today" ><?php _e('Unavailable days from today' ,'booking'); ?>:</label></th>
|
458 |
-
<td>
|
459 |
-
<select id="unavailable_days_num_from_today" name="unavailable_days_num_from_today">
|
460 |
-
<?php for ($i = 0; $i < 32; $i++) { ?>
|
461 |
-
<option <?php if($unavailable_days_num_from_today == $i) echo "selected"; ?> value="<?php echo $i; ?>"><?php echo $i; ?></option>
|
462 |
-
<?php } ?>
|
463 |
-
</select>
|
464 |
-
<span class="description"><?php _e('Select number of unavailable days in calendar start from today.' ,'booking');?></span>
|
465 |
-
</td>
|
466 |
-
</tr>
|
467 |
-
|
468 |
-
<?php do_action('settings_calendar_unavailable_days'); ?>
|
469 |
-
|
470 |
-
<tr valign="top">
|
471 |
-
<th scope="row"><?php _e('Unavailable week days' ,'booking'); ?>:</th>
|
472 |
-
<td>
|
473 |
-
<label for="unavailable_day0" class="wpbc-single-checkbox">
|
474 |
-
<input id="unavailable_day0" name="unavailable_day0" <?php if ($unavailable_day0 == 'On') echo "checked"; ?> value="<?php echo $unavailable_day0; ?>" type="checkbox" />
|
475 |
-
<?php _e('Sunday' ,'booking'); ?>
|
476 |
-
</label>
|
477 |
-
<label for="unavailable_day1" class="wpbc-single-checkbox">
|
478 |
-
<input id="unavailable_day1" name="unavailable_day1" <?php if ($unavailable_day1 == 'On') echo "checked"; ?> value="<?php echo $unavailable_day1; ?>" type="checkbox" />
|
479 |
-
<?php _e('Monday' ,'booking'); ?>
|
480 |
-
</label>
|
481 |
-
<label for="unavailable_day2" class="wpbc-single-checkbox">
|
482 |
-
<input id="unavailable_day2" name="unavailable_day2" <?php if ($unavailable_day2 == 'On') echo "checked"; ?> value="<?php echo $unavailable_day2; ?>" type="checkbox" />
|
483 |
-
<?php _e('Tuesday' ,'booking'); ?>
|
484 |
-
</label>
|
485 |
-
<label for="unavailable_day3" class="wpbc-single-checkbox">
|
486 |
-
<input id="unavailable_day3" name="unavailable_day3" <?php if ($unavailable_day3 == 'On') echo "checked"; ?> value="<?php echo $unavailable_day3; ?>" type="checkbox" />
|
487 |
-
<?php _e('Wednesday' ,'booking'); ?>
|
488 |
-
</label>
|
489 |
-
<label for="unavailable_day4" class="wpbc-single-checkbox">
|
490 |
-
<input id="unavailable_day4" name="unavailable_day4" <?php if ($unavailable_day4 == 'On') echo "checked"; ?> value="<?php echo $unavailable_day4; ?>" type="checkbox" />
|
491 |
-
<?php _e('Thursday' ,'booking'); ?>
|
492 |
-
</label>
|
493 |
-
<label for="unavailable_day5" class="wpbc-single-checkbox">
|
494 |
-
<input id="unavailable_day5" name="unavailable_day5" <?php if ($unavailable_day5 == 'On') echo "checked"; ?> value="<?php echo $unavailable_day5; ?>" type="checkbox" />
|
495 |
-
<?php _e('Friday' ,'booking'); ?>
|
496 |
-
</label>
|
497 |
-
<label for="unavailable_day6" class="wpbc-single-checkbox">
|
498 |
-
<input id="unavailable_day6" name="unavailable_day6" <?php if ($unavailable_day6 == 'On') echo "checked"; ?> value="<?php echo $unavailable_day6; ?>" type="checkbox" />
|
499 |
-
<?php _e('Saturday' ,'booking'); ?>
|
500 |
-
</label>
|
501 |
-
<p class="description"><?php _e('Check unavailable days in calendars. This option will overwrite all other settings.' ,'booking');?></p>
|
502 |
-
</td>
|
503 |
-
</tr>
|
504 |
-
|
505 |
-
<?php /* Allow multiple bookings per same day previusly was here */ ?>
|
506 |
|
|
|
507 |
|
508 |
-
<tr valign="top"><td colspan="2" style="padding:10px 0px; "><div style="border-bottom:1px solid #cccccc;"></div></td></tr>
|
509 |
-
|
510 |
<tr valign="top">
|
511 |
<th scope="row"><?php _e('Type of days selection in calendar' ,'booking'); ?>:</th>
|
512 |
<td>
|
@@ -569,6 +542,69 @@ function wpdev_bk_settings_general() {
|
|
569 |
</tbody></table>
|
570 |
</div></div></div>
|
571 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
572 |
<div class='meta-box'>
|
573 |
<div <?php $my_close_open_win_id = 'bk_general_settings_form'; ?> id="<?php echo $my_close_open_win_id; ?>" class="postbox <?php if ( '1' == get_user_option( 'booking_win_' . $my_close_open_win_id ) ) echo 'closed'; ?>" > <div title="<?php _e('Click to toggle' ,'booking'); ?>" class="handlediv" onclick="javascript:verify_window_opening(<?php echo get_bk_current_user_id(); ?>, '<?php echo $my_close_open_win_id; ?>');"><br></div>
|
574 |
<h3 class='hndle'><span><?php _e('Form' ,'booking'); ?></span></h3> <div class="inside">
|
@@ -2445,4 +2481,3 @@ function wpbc_booking_settings_top_menu_submenu_line(){
|
|
2445 |
|
2446 |
if ( ! class_exists('wpdev_bk_personal') )
|
2447 |
add_bk_action('wpdev_booking_settings_top_menu_submenu_line', 'wpbc_booking_settings_top_menu_submenu_line');
|
2448 |
-
?>
|
37 |
<a href="javascript:void(0)" onclick="javascript:makeScrollInAdminPanel('#bk_general_settings_calendar' );"
|
38 |
class="nav-tab booking-submenu-tab go-to-link" ><span><?php _e('Calendar' ,'booking');?></span></a>
|
39 |
|
40 |
+
<a href="javascript:void(0)" onclick="javascript:makeScrollInAdminPanel('#bk_general_settings_availability' );"
|
41 |
+
class="nav-tab booking-submenu-tab go-to-link" ><span><?php _e('Availability' ,'booking');?></span></a>
|
42 |
+
|
43 |
<a href="javascript:void(0)" onclick="javascript:makeScrollInAdminPanel('#bk_general_settings_form' );"
|
44 |
class="nav-tab booking-submenu-tab go-to-link" ><span><?php _e('Form' ,'booking');?></span></a>
|
45 |
|
401 |
$upload_dir = wp_upload_dir();
|
402 |
$custom_user_skin_folder = $upload_dir['basedir'] . '/wpbc_skins/';
|
403 |
|
404 |
+
$dir_list = wpdev_bk_dir_list( array( '/css/skins/', '/inc/skins/', $custom_user_skin_folder ) );
|
405 |
+
//$dir_list = array(
|
406 |
+
// array(
|
407 |
+
// 'black.css'
|
408 |
+
// ,'/css/skins/black.css'
|
409 |
+
// ,'Black'
|
410 |
+
// )
|
411 |
+
// , array(
|
412 |
+
// 'standard.css'
|
413 |
+
// ,'/css/skins/standard.css'
|
414 |
+
// ,'Standard'
|
415 |
+
// )
|
416 |
+
// , array(
|
417 |
+
// 'traditional-light.css'
|
418 |
+
// ,'/css/skins/traditional-light.css'
|
419 |
+
// ,'Traditional-light'
|
420 |
+
// )
|
421 |
+
// , array(
|
422 |
+
// 'traditional.css'
|
423 |
+
// ,'/css/skins/traditional.css'
|
424 |
+
// ,'Traditional'
|
425 |
+
// )
|
426 |
+
// );
|
427 |
//debuge($dir_list);
|
428 |
?>
|
429 |
<select id="booking_skin" name="booking_skin" style="text-transform:capitalize;">
|
477 |
</tr>
|
478 |
|
479 |
<tr valign="top"><td colspan="2" style="padding:10px 0px; "><div style="border-bottom:1px solid #cccccc;"></div></td></tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
480 |
|
481 |
+
<?php //FixIn: 6.1.1.18 - removed from here unavailbale week days and number of unavailbale days from today. ?>
|
482 |
|
|
|
|
|
483 |
<tr valign="top">
|
484 |
<th scope="row"><?php _e('Type of days selection in calendar' ,'booking'); ?>:</th>
|
485 |
<td>
|
542 |
</tbody></table>
|
543 |
</div></div></div>
|
544 |
|
545 |
+
<?php //FixIn: 6.1.1.18 ?>
|
546 |
+
<div class='meta-box'>
|
547 |
+
<div <?php $my_close_open_win_id = 'bk_general_settings_availability'; ?> id="<?php echo $my_close_open_win_id; ?>" class="postbox <?php if ( '1' == get_user_option( 'booking_win_' . $my_close_open_win_id ) ) echo 'closed'; ?>" > <div title="<?php _e('Click to toggle' ,'booking'); ?>" class="handlediv" onclick="javascript:verify_window_opening(<?php echo get_bk_current_user_id(); ?>, '<?php echo $my_close_open_win_id; ?>');"><br></div>
|
548 |
+
<h3 class='hndle'><span><?php _e('Availability' ,'booking'); ?></span></h3> <div class="inside">
|
549 |
+
<table class="form-table"><tbody>
|
550 |
+
|
551 |
+
|
552 |
+
<tr valign="top">
|
553 |
+
<th scope="row"><?php _e('Unavailable week days' ,'booking'); ?>:</th>
|
554 |
+
<td>
|
555 |
+
<label for="unavailable_day0" class="wpbc-single-checkbox">
|
556 |
+
<input id="unavailable_day0" name="unavailable_day0" <?php if ($unavailable_day0 == 'On') echo "checked"; ?> value="<?php echo $unavailable_day0; ?>" type="checkbox" />
|
557 |
+
<?php _e('Sunday' ,'booking'); ?>
|
558 |
+
</label>
|
559 |
+
<label for="unavailable_day1" class="wpbc-single-checkbox">
|
560 |
+
<input id="unavailable_day1" name="unavailable_day1" <?php if ($unavailable_day1 == 'On') echo "checked"; ?> value="<?php echo $unavailable_day1; ?>" type="checkbox" />
|
561 |
+
<?php _e('Monday' ,'booking'); ?>
|
562 |
+
</label>
|
563 |
+
<label for="unavailable_day2" class="wpbc-single-checkbox">
|
564 |
+
<input id="unavailable_day2" name="unavailable_day2" <?php if ($unavailable_day2 == 'On') echo "checked"; ?> value="<?php echo $unavailable_day2; ?>" type="checkbox" />
|
565 |
+
<?php _e('Tuesday' ,'booking'); ?>
|
566 |
+
</label>
|
567 |
+
<label for="unavailable_day3" class="wpbc-single-checkbox">
|
568 |
+
<input id="unavailable_day3" name="unavailable_day3" <?php if ($unavailable_day3 == 'On') echo "checked"; ?> value="<?php echo $unavailable_day3; ?>" type="checkbox" />
|
569 |
+
<?php _e('Wednesday' ,'booking'); ?>
|
570 |
+
</label>
|
571 |
+
<label for="unavailable_day4" class="wpbc-single-checkbox">
|
572 |
+
<input id="unavailable_day4" name="unavailable_day4" <?php if ($unavailable_day4 == 'On') echo "checked"; ?> value="<?php echo $unavailable_day4; ?>" type="checkbox" />
|
573 |
+
<?php _e('Thursday' ,'booking'); ?>
|
574 |
+
</label>
|
575 |
+
<label for="unavailable_day5" class="wpbc-single-checkbox">
|
576 |
+
<input id="unavailable_day5" name="unavailable_day5" <?php if ($unavailable_day5 == 'On') echo "checked"; ?> value="<?php echo $unavailable_day5; ?>" type="checkbox" />
|
577 |
+
<?php _e('Friday' ,'booking'); ?>
|
578 |
+
</label>
|
579 |
+
<label for="unavailable_day6" class="wpbc-single-checkbox">
|
580 |
+
<input id="unavailable_day6" name="unavailable_day6" <?php if ($unavailable_day6 == 'On') echo "checked"; ?> value="<?php echo $unavailable_day6; ?>" type="checkbox" />
|
581 |
+
<?php _e('Saturday' ,'booking'); ?>
|
582 |
+
</label>
|
583 |
+
<p class="description"><?php _e('Check unavailable days in calendars. This option will overwrite all other settings.' ,'booking');?></p>
|
584 |
+
</td>
|
585 |
+
</tr>
|
586 |
+
|
587 |
+
<tr valign="top"><td colspan="2" style="padding:10px 0px; "><div style="border-bottom:1px solid #cccccc;"></div></td></tr>
|
588 |
+
|
589 |
+
|
590 |
+
<tr valign="top">
|
591 |
+
<th scope="row"><label for="unavailable_days_num_from_today" ><?php _e('Unavailable days from today' ,'booking'); ?>:</label></th>
|
592 |
+
<td>
|
593 |
+
<select id="unavailable_days_num_from_today" name="unavailable_days_num_from_today">
|
594 |
+
<?php for ($i = 0; $i < 32; $i++) { ?>
|
595 |
+
<option <?php if($unavailable_days_num_from_today == $i) echo "selected"; ?> value="<?php echo $i; ?>"><?php echo $i; ?></option>
|
596 |
+
<?php } ?>
|
597 |
+
</select>
|
598 |
+
<span class="description"><?php _e('Select number of unavailable days in calendar start from today.' ,'booking');?></span>
|
599 |
+
</td>
|
600 |
+
</tr>
|
601 |
+
|
602 |
+
<?php do_action('settings_calendar_unavailable_days'); ?>
|
603 |
+
|
604 |
+
</tbody></table>
|
605 |
+
</div></div></div>
|
606 |
+
<?php //FixIn: 6.1.1.18 End ?>
|
607 |
+
|
608 |
<div class='meta-box'>
|
609 |
<div <?php $my_close_open_win_id = 'bk_general_settings_form'; ?> id="<?php echo $my_close_open_win_id; ?>" class="postbox <?php if ( '1' == get_user_option( 'booking_win_' . $my_close_open_win_id ) ) echo 'closed'; ?>" > <div title="<?php _e('Click to toggle' ,'booking'); ?>" class="handlediv" onclick="javascript:verify_window_opening(<?php echo get_bk_current_user_id(); ?>, '<?php echo $my_close_open_win_id; ?>');"><br></div>
|
610 |
<h3 class='hndle'><span><?php _e('Form' ,'booking'); ?></span></h3> <div class="inside">
|
2481 |
|
2482 |
if ( ! class_exists('wpdev_bk_personal') )
|
2483 |
add_bk_action('wpdev_booking_settings_top_menu_submenu_line', 'wpbc_booking_settings_top_menu_submenu_line');
|
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://wpbookingcalendar.com/buy/
|
|
4 |
Tags: booking calendar, availability calendar, event calendar, booking system, booking form, reservation, events, appointment, availability, schedule, calendar, contact form
|
5 |
Requires at least: 3.3
|
6 |
Tested up to: 4.5
|
7 |
-
Stable tag: 6.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -152,6 +152,22 @@ If you have any further questions, please fill free to <a href="mailto:support@w
|
|
152 |
11. **Calendar Skins**. Select calendar skin for better fitting to your web-site design.
|
153 |
|
154 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
155 |
= 6.1 =
|
156 |
- Features and issue fixings in All versions:
|
157 |
* **New** Display or hide **"Today date number"** in legend cells under calendar.
|
@@ -336,37 +352,37 @@ If you have any further questions, please fill free to <a href="mailto:support@w
|
|
336 |
For more information, see the [full release notes](http://wpbookingcalendar.com/changelog/).
|
337 |
|
338 |
== Upgrade Notice ==
|
339 |
-
= 6.
|
340 |
-
|
341 |
|
342 |
== Languages ==
|
343 |
|
344 |
Plugin supports following languages:
|
345 |
|
346 |
- English
|
347 |
-
- German [
|
348 |
-
- French [
|
349 |
-
- Norwegian [
|
350 |
-
- Swedish [
|
351 |
-
- Spanish [
|
352 |
-
- Dutch [
|
353 |
-
- Greece [
|
354 |
-
- Polish [
|
355 |
-
- Ukrainian [
|
356 |
-
- Russian [
|
357 |
-
- Danish [
|
358 |
-
- Czech [
|
359 |
-
- Slovak [
|
360 |
-
- Italian [
|
361 |
-
- Hungarian [
|
362 |
-
- Finnish [
|
363 |
-
- Turkish [
|
364 |
-
- Catalan [99% Completed]
|
365 |
-
- Portugal [99% Completed]
|
366 |
- Croatian [99% Completed]
|
367 |
-
-
|
368 |
-
-
|
369 |
-
-
|
|
|
|
|
370 |
- Belarusian [11% Completed]
|
371 |
|
372 |
|
4 |
Tags: booking calendar, availability calendar, event calendar, booking system, booking form, reservation, events, appointment, availability, schedule, calendar, contact form
|
5 |
Requires at least: 3.3
|
6 |
Tested up to: 4.5
|
7 |
+
Stable tag: 6.2
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
152 |
11. **Calendar Skins**. Select calendar skin for better fitting to your web-site design.
|
153 |
|
154 |
== Changelog ==
|
155 |
+
= 6.2 =
|
156 |
+
- Features and issue fixings in All versions:
|
157 |
+
* **New** Moving bookings to trash instead of complete deleting.
|
158 |
+
* **New** Ability to restore bookings from Trash.
|
159 |
+
* **Translation** Updated Croatian translation [99% Completed] by Danijel Prebeg
|
160 |
+
* **Fix** showing warning during managing Booking Calendar widget in "Customizer". Issue was relative to WordPress 4.5 update (fix:6.1.1.11)
|
161 |
+
- Personal / Business Small / Business Medium / Business Large / MultiUser versions features:
|
162 |
+
* **New** Extend booking dates/times interval to extra hours or days. Useful for adding cleaning time, or any other service time. *(Business Medium/Large, MultiUser)*
|
163 |
+
* **Improvement** ability to use [booking_id], [resource_title] shortcodes in the Content of booking fields data form at Booking > Settings > Fields page, for ability to show booking ID and booking resources in payment summary. *(Business Small/Medium/Large, MultiUser)*
|
164 |
+
* **Improvement** ability to book dates in additional calendar(s), without selection date(s) in main calendar, if used several calendars of different booking resources and only 1 booking form. Restriction in this case the "payment summary" after booking is not showing. *(Business Medium/Large, MultiUser)*
|
165 |
+
* **Improvement** resolve issue of not showing available day(s), if all start time (example of shortcode in booking form: [select starttime "11:00" "13:00" "15:00"]) have booked for this specific day(s) (fix:6.1.1.6). *(Business Small/Medium/Large, MultiUser)*
|
166 |
+
* **Improvement** Added search users form at the Settings Users page. (fix:6.1.1.6). *(MultiUser)*
|
167 |
+
* **Fix** Ability to edit bookings, that belong to the "child booking resources", when activated option "visitors apply to capacity". If you will edit of booking, this booking editing is belonging to calendar of parent booking resources with specific capacity. *(Business Large, MultiUser)*
|
168 |
+
* **Fix** issue of not ability to add "Valuation days" cost settings in some servers, because of conflict. *(Business Medium/Large, MultiUser)*
|
169 |
+
* **Fix** issue of not ability to submit booking form, when using [bookingform ...] shortcode. (fix:6.1.1.16) *(Business Large, MultiUser)*
|
170 |
+
|
171 |
= 6.1 =
|
172 |
- Features and issue fixings in All versions:
|
173 |
* **New** Display or hide **"Today date number"** in legend cells under calendar.
|
352 |
For more information, see the [full release notes](http://wpbookingcalendar.com/changelog/).
|
353 |
|
354 |
== Upgrade Notice ==
|
355 |
+
= 6.2 =
|
356 |
+
Moving bookings to trash instead of complete deleting. Extend booking dates/times interval to extra hours or days (in paid versions).
|
357 |
|
358 |
== Languages ==
|
359 |
|
360 |
Plugin supports following languages:
|
361 |
|
362 |
- English
|
363 |
+
- German [99% Completed]
|
364 |
+
- French [99% Completed]
|
365 |
+
- Norwegian [99% Completed]
|
366 |
+
- Swedish [99% Completed]
|
367 |
+
- Spanish [99% Completed]
|
368 |
+
- Dutch [99% Completed]
|
369 |
+
- Greece [99% Completed]
|
370 |
+
- Polish [99% Completed]
|
371 |
+
- Ukrainian [99% Completed]
|
372 |
+
- Russian [99% Completed]
|
373 |
+
- Danish [99% Completed]
|
374 |
+
- Czech [99% Completed]
|
375 |
+
- Slovak [99% Completed]
|
376 |
+
- Italian [99% Completed]
|
377 |
+
- Hungarian [99% Completed]
|
378 |
+
- Finnish [99% Completed]
|
379 |
+
- Turkish [99% Completed]
|
|
|
|
|
380 |
- Croatian [99% Completed]
|
381 |
+
- Catalan [98% Completed]
|
382 |
+
- Portugal [98% Completed]
|
383 |
+
- Bulgarian [98% Completed]
|
384 |
+
- Brazilian Portuguese [93% Completed]
|
385 |
+
- Hebrew [16% Completed]
|
386 |
- Belarusian [11% Completed]
|
387 |
|
388 |
|
wpdev-booking.php
CHANGED
@@ -7,7 +7,7 @@ Author: wpdevelop
|
|
7 |
Author URI: http://wpbookingcalendar.com/
|
8 |
Text Domain: booking
|
9 |
Domain Path: /languages/
|
10 |
-
Version: 6.
|
11 |
*/
|
12 |
|
13 |
/* Copyright 2009 - 2015 www.wpbookingcalendar.com (email: info@wpbookingcalendar.com),
|
7 |
Author URI: http://wpbookingcalendar.com/
|
8 |
Text Domain: booking
|
9 |
Domain Path: /languages/
|
10 |
+
Version: 6.2
|
11 |
*/
|
12 |
|
13 |
/* Copyright 2009 - 2015 www.wpbookingcalendar.com (email: info@wpbookingcalendar.com),
|