Booking Calendar - Version 5.4.3

Version Description

  • Features and issue fixings in All versions:
    • New Hungarian translation [100% Completed] by Istvn Vincze
    • New Finnish translation [100% Completed] by Jukka Turunen
    • New Catalan translation [100% Completed] by Fiiiu - Gerard H. Serra
    • Improvement Plugin will send emails with "From" address, that defined in "From" field at Booking > Settings > Emails page. If you define constant WP_BK_STRICTLY_FROM_EMAILS to false at ../lib/wpbc-constants.php file, then sending the copy of Confirmation email to admin, sends a "from" field of email not the email of server, but email from the person, who made reservation. Its useful for "reply to this emails", but when receiving such email, Yahoo mail for instance rejects it, and google mail puts a warning about fishing etc. Check more here
    • Improvement Removing PHP4 style constructors, for support WordPress 4.3 update.
    • Ability to define constant WP_BK_USE_TITLES_IN_EMAILS in wpbc-constants.php. If true, then system try to send emails in format "Jo Smith" josmith@server.com If false, then system try to send emails in format josmith@server.com . Some servers does not support or generate issues for first email format.
    • Fix possible JavaScript Error: "SyntaxError: missing ; before statement" (and because of that do not show calendar), if some third party plugin override links incorrectly. Please check more here
    • Fix ability to use "+" sign in the email fields during booking process. Please read more here
    • Fix issue of showing "today" date in Calendar Overview page based on website timezone, and not server timezone.
    • CSS improvements.
  • Personal / Business Small / Business Medium / Business Large / MultiUser versions features:
    • New Limit available days from today. Select number of available days in calendar start from today. (Business Medium/Large, MultiUser)
    • New Ability to define number times of usage coupon codes for discounts (Business Large, MultiUser)
    • New Ability to edit exist coupon codes for discounts (Business Large, MultiUser)
    • Improvement Do not highlight next date(s), when mouse-over on already selected date. Please check more here (Business Small/Medium/Large, MultiUser)
    • Improvement Do not highlight date(s), when mouse outside of calendar. Please check more here (Business Small/Medium/Large, MultiUser)
    • Improvement Do not update the cost in the cost correction field, if admin edit this booking. (Business Medium/Large, MultiUser)
    • Improvement Prevent of showing any hints (costs, dates...), if selected only Check In day, while using range days selection mode using 2 mouse clicks (Business Medium/Large, MultiUser)
    • Improvement Rollback to 1st step, if system will show warning and booking form is using customization of having several steps wizard form. (Personal, Business Small/Medium/Large, MultiUser)
    • Improvement Ability to show the title of booking resources in booking form (as hint). You can use this shortcode [resource_title_hint] to show the title of current booking resource. (Business Medium/Large, MultiUser)
    • Improvement showing booking details in payment form. (Business Medium/Large, MultiUser)
    • Fix issue for ability to activate users in MultiUser version, while active French translation of Booking Calendar. (Business Medium/Large, MultiUser)
    • Fix issue for ability to add new "Valuation days" cost settings in French version of Booking Calendar. (Business Medium/Large, MultiUser)
    • Fix issue of range days selection, when activated specific week days as start days and we have some booked days after our selected date. More here (Business Small/Medium/Large, MultiUser)
    • Fix issue of correct showing some special symbols during exporting bookings to CSV file. (Personal, Business Small/Medium/Large, MultiUser)
    • Fix issue relative to the old times season filters that can exist in some old versions (Business Medium/Large, MultiUser)
    • Fix issue of showing cost in correct cost format (using decimal and thousands separators) in emails (Business Small/Medium/Large, MultiUser)
    • Fix issue of too many redirects, if upgraded from free to paid version, and use MySQL version older than 5.0
Download this release

Release Info

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

Code changes from version 5.4.2 to 5.4.3

css/admin.css CHANGED
@@ -1519,7 +1519,7 @@ a.wpbc-season-filter-link {
1519
  width:auto;
1520
  }
1521
  .wpbc_coupons_table th.wpbc_column_7{
1522
- width:75px;
1523
  }
1524
  .wpbc_coupons_table td.wpbc_column_1,
1525
  .wpbc_coupons_table td.wpbc_column_2,
1519
  width:auto;
1520
  }
1521
  .wpbc_coupons_table th.wpbc_column_7{
1522
+ width:100px;
1523
  }
1524
  .wpbc_coupons_table td.wpbc_column_1,
1525
  .wpbc_coupons_table td.wpbc_column_2,
css/client.css CHANGED
@@ -7,7 +7,10 @@
7
  margin: 15px auto;
8
  padding: 15px 10px;
9
  text-align: center;
10
- width: 100%;
 
 
 
11
  }
12
  .submiting_content.wpdev-help-message.alert {
13
  color:#093;
7
  margin: 15px auto;
8
  padding: 15px 10px;
9
  text-align: center;
10
+
11
+ width: 80%;
12
+ line-height: 1.5em;
13
+ padding: 10px 10% 14px !important;
14
  }
15
  .submiting_content.wpdev-help-message.alert {
16
  color:#093;
js/captcha/captcha.php CHANGED
@@ -27,7 +27,7 @@ Author URI: http://ideasilo.wordpress.com/
27
 
28
  class wpdevReallySimpleCaptcha {
29
 
30
- function wpdevReallySimpleCaptcha() {
31
 
32
  /* Characters available in images */
33
  $this->chars = 'ABCDEFGHJKLMNPQRSTUVWXYZ23456789';
27
 
28
  class wpdevReallySimpleCaptcha {
29
 
30
+ function __construct() {
31
 
32
  /* Characters available in images */
33
  $this->chars = 'ABCDEFGHJKLMNPQRSTUVWXYZ23456789';
js/client.js CHANGED
@@ -87,6 +87,11 @@ function init_datepick_cal(bk_type, date_approved_par, my_num_month, start_day_
87
  var my_test_date = new Date( wpdev_bk_today[0],(wpdev_bk_today[1]-1), wpdev_bk_today[2] ,0,0,0 ); //Get today
88
  if ( (days_between( date, my_test_date)) < block_some_dates_from_today )
89
  return [false, 'cal4date-' + class_day +' date_user_unavailable'];
 
 
 
 
 
90
  }
91
 
92
  if (typeof( is_this_day_available ) == 'function') {
@@ -286,6 +291,7 @@ function init_datepick_cal(bk_type, date_approved_par, my_num_month, start_day_
286
  changeMonth: false,
287
  changeYear: false,
288
  minDate: bkMinDate, maxDate: bkMaxDate, //'1Y',
 
289
  showStatus: false,
290
  multiSeparator: ', ',
291
  closeAtTop: false,
@@ -583,7 +589,7 @@ function mybooking_submit( submit_form , bk_type, wpdev_active_locale){
583
 
584
  // Validation Check --- Email correct filling field
585
  if ( element.className.indexOf('wpdev-validates-as-email') !== -1 ){
586
- var reg = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,})$/;
587
  if ( inp_value != '' )
588
  if(reg.test(inp_value) == false) {showErrorMessage( element , message_verif_emeil);return;}
589
  }
@@ -774,9 +780,11 @@ function send_ajax_submit(bk_type,formdata,captcha_chalange,user_captcha,is_send
774
 
775
  // Show Error Message in Booking Form at Front End
776
  function showErrorMessage( element , errorMessage) {
777
-
778
- // bk_form_step_click(); // rollback to 1st step, if system will show warning and booking form is using this customization: in the Exmaple #2 here: http://wpbookingcalendar.com/faq/customize-booking-form-for-having-several-steps-of-reservation/
779
-
 
 
780
  makeScroll( element );
781
 
782
  jQuery("[name='"+ element.name +"']")
@@ -823,6 +831,10 @@ function showErrorMessage( element , errorMessage) {
823
  */
824
  function showMessageUnderElement( element , errorMessage , message_type) {
825
 
 
 
 
 
826
  makeScroll( element );
827
 
828
  if ( jQuery( element ).attr('type') == "radio" ) {
87
  var my_test_date = new Date( wpdev_bk_today[0],(wpdev_bk_today[1]-1), wpdev_bk_today[2] ,0,0,0 ); //Get today
88
  if ( (days_between( date, my_test_date)) < block_some_dates_from_today )
89
  return [false, 'cal4date-' + class_day +' date_user_unavailable'];
90
+
91
+ if( typeof( wpbc_available_days_num_from_today ) !== 'undefined')
92
+ if ( parseInt( '0' + wpbc_available_days_num_from_today ) > 0 )
93
+ if ( (days_between( date, my_test_date)) > parseInt( '0' + wpbc_available_days_num_from_today ) )
94
+ return [false, 'cal4date-' + class_day +' date_user_unavailable'];
95
  }
96
 
97
  if (typeof( is_this_day_available ) == 'function') {
291
  changeMonth: false,
292
  changeYear: false,
293
  minDate: bkMinDate, maxDate: bkMaxDate, //'1Y',
294
+ //minDate: '01.01.2016', maxDate: '31.12.2016', // Ability to set any start and end date in calendar
295
  showStatus: false,
296
  multiSeparator: ', ',
297
  closeAtTop: false,
589
 
590
  // Validation Check --- Email correct filling field
591
  if ( element.className.indexOf('wpdev-validates-as-email') !== -1 ){
592
+ var reg = /^([A-Za-z0-9_\-\.\+])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,})$/;
593
  if ( inp_value != '' )
594
  if(reg.test(inp_value) == false) {showErrorMessage( element , message_verif_emeil);return;}
595
  }
780
 
781
  // Show Error Message in Booking Form at Front End
782
  function showErrorMessage( element , errorMessage) {
783
+
784
+ if(typeof( bk_form_step_click ) == 'function') {
785
+ bk_form_step_click(); // rollback to 1st step, if system will show warning and booking form is using this customization: in the Exmaple #2 here: http://wpbookingcalendar.com/faq/customize-booking-form-for-having-several-steps-of-reservation/
786
+ }
787
+
788
  makeScroll( element );
789
 
790
  jQuery("[name='"+ element.name +"']")
831
  */
832
  function showMessageUnderElement( element , errorMessage , message_type) {
833
 
834
+ if(typeof( bk_form_step_click ) == 'function') {
835
+ bk_form_step_click(); // rollback to 1st step, if system will show warning and booking form is using this customization: in the Exmaple #2 here: http://wpbookingcalendar.com/faq/customize-booking-form-for-having-several-steps-of-reservation/
836
+ }
837
+
838
  makeScroll( element );
839
 
840
  if ( jQuery( element ).attr('type') == "radio" ) {
js/wpbc_vars.js CHANGED
@@ -52,7 +52,7 @@ var wpbc_active_locale = wpbc_global1.wpbc_active_locale;
52
  if (typeof wpbc_global2 !== 'undefined') {
53
  var message_time_error = wpbc_global2.message_time_error;
54
  }
55
- if (typeof wpbc_global3 !== 'undefined') {
56
  var bk_1click_mode_days_num = wpbc_define_var( wpbc_global3.bk_1click_mode_days_num );
57
  var bk_1click_mode_days_start = wpbc_define_var( wpbc_global3.bk_1click_mode_days_start );
58
  var bk_2clicks_mode_days_min = wpbc_define_var( wpbc_global3.bk_2clicks_mode_days_min );
@@ -69,6 +69,7 @@ if (typeof wpbc_global3 !== 'undefined') {
69
  var bk_show_info_in_form = wpbc_define_var( wpbc_global3.bk_show_info_in_form );
70
  }
71
  if (typeof wpbc_global4 !== 'undefined') {
 
72
  var bk_cost_depends_from_selection_line1 = wpbc_global4.bk_cost_depends_from_selection_line1;
73
  var bk_cost_depends_from_selection_line2 = wpbc_global4.bk_cost_depends_from_selection_line2;
74
  var bk_cost_depends_from_selection_line3 = wpbc_global4.bk_cost_depends_from_selection_line3;
52
  if (typeof wpbc_global2 !== 'undefined') {
53
  var message_time_error = wpbc_global2.message_time_error;
54
  }
55
+ if (typeof wpbc_global3 !== 'undefined') {
56
  var bk_1click_mode_days_num = wpbc_define_var( wpbc_global3.bk_1click_mode_days_num );
57
  var bk_1click_mode_days_start = wpbc_define_var( wpbc_global3.bk_1click_mode_days_start );
58
  var bk_2clicks_mode_days_min = wpbc_define_var( wpbc_global3.bk_2clicks_mode_days_min );
69
  var bk_show_info_in_form = wpbc_define_var( wpbc_global3.bk_show_info_in_form );
70
  }
71
  if (typeof wpbc_global4 !== 'undefined') {
72
+ var wpbc_available_days_num_from_today = wpbc_define_var( wpbc_global4.wpbc_available_days_num_from_today );
73
  var bk_cost_depends_from_selection_line1 = wpbc_global4.bk_cost_depends_from_selection_line1;
74
  var bk_cost_depends_from_selection_line2 = wpbc_global4.bk_cost_depends_from_selection_line2;
75
  var bk_cost_depends_from_selection_line3 = wpbc_global4.bk_cost_depends_from_selection_line3;
languages/po_translations.txt ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+
2
+ You can download the original PO translations files from here: http://wpbookingcalendar.com/download/languages/languages.zip
3
+
4
+ You can check instruction how to make or update translations files at this page: http://wpbookingcalendar.com/faq/make-translation-of-wp-plugin/
languages/wpdev-booking-be_BY.mo CHANGED
Binary file
languages/wpdev-booking-be_BY.po DELETED
@@ -1,10417 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: wpdev-booking\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-05-09 10:24+0200\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: wpdevelop <info@wpdevelop.com>\n"
8
- "Language-Team: Marcis G. <by.marcis@gmail.com>\n"
9
- "Language: be_BY\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-SourceCharset: UTF-8\n"
14
- "X-Poedit-Bookmarks: 49,183,-1,-1,-1,-1,-1,-1,-1,-1\n"
15
- "X-Poedit-KeywordsList: __;_e;_c;__ngettext;_ngettext_boop:1,2\n"
16
- "X-Poedit-Basepath: w:\\www\\home\\dev\\www\\wp-content\\plugins\\booking\\.\n"
17
- "X-Generator: Poedit 1.7.1\n"
18
- "X-Poedit-SearchPath-0: w:\\www\\home\\dev\\www\\wp-content\\plugins\\booking\\.\n"
19
-
20
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:123
21
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:241
22
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:254
23
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:258
24
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:375
25
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:302
26
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:307
27
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:579
28
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:610
29
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1516
30
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1573
31
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1576
32
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:756
33
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:817
34
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:818
35
- msgid "Dates"
36
- msgstr "Даты"
37
-
38
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:124
39
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:242
40
- #, fuzzy
41
- msgid "Full cost of the booking"
42
- msgstr "Фінальны кошт"
43
-
44
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:126
45
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:244
46
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:108
47
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4027
48
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4041
49
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4059
50
- msgid "First Name (required)"
51
- msgstr "Імя (абавязковае поле)"
52
-
53
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:127
54
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:245
55
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:109
56
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4028
57
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4042
58
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4060
59
- msgid "Last Name (required)"
60
- msgstr "Прозвішча (абавязковае поле)"
61
-
62
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:128
63
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:246
64
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:110
65
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4029
66
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4043
67
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4061
68
- msgid "Email (required)"
69
- msgstr "Емейл (абавязковае поле)"
70
-
71
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:129
72
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:247
73
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:111
74
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1412
75
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:316
76
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4030
77
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4044
78
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4062
79
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4082
80
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4093
81
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4108
82
- msgid "Phone"
83
- msgstr "Тэлефон"
84
-
85
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:130
86
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:248
87
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:112
88
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4063
89
- #, fuzzy
90
- msgid "Address (required)"
91
- msgstr "Імя (абавязковае поле)"
92
-
93
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:131
94
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:249
95
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:113
96
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4064
97
- #, fuzzy
98
- msgid "City (required)"
99
- msgstr "Емейл (абавязковае поле)"
100
-
101
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:132
102
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:250
103
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:114
104
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4065
105
- #, fuzzy
106
- msgid "Post code (required)"
107
- msgstr "Імя (абавязковае поле)"
108
-
109
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:133
110
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:251
111
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:115
112
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4066
113
- #, fuzzy
114
- msgid "Country (required)"
115
- msgstr "Імя (абавязковае поле)"
116
-
117
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:134
118
- msgid "Visitors"
119
- msgstr "Наведвальнікі"
120
-
121
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:135
122
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:253
123
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:117
124
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4032
125
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4046
126
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4068
127
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4085
128
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4096
129
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4115
130
- msgid "Details"
131
- msgstr "Апісанне"
132
-
133
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:136
134
- #, fuzzy
135
- msgid "Coupon"
136
- msgstr "Лік дзён"
137
-
138
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:137
139
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:254
140
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:118
141
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4033
142
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4047
143
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4069
144
- msgid "I Accept term and conditions"
145
- msgstr ""
146
-
147
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:139
148
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:256
149
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:120
150
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:2909
151
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4035
152
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4049
153
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4071
154
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1625
155
- msgid "Send"
156
- msgstr "Адправіць"
157
-
158
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:173
159
- msgid ""
160
- "Try selecting fewer visitors. The number of visitors may be more than the number of available "
161
- "units on selected day(s)!"
162
- msgstr ""
163
-
164
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:319
165
- msgid "coupon"
166
- msgstr ""
167
-
168
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:321
169
- msgid "discount"
170
- msgstr ""
171
-
172
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:695
173
- msgid "Nothing found"
174
- msgstr ""
175
-
176
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:696
177
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:259
178
- msgid "Search results"
179
- msgstr ""
180
-
181
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:828
182
- #, fuzzy
183
- msgid "Book now"
184
- msgstr "Купіць цяпер"
185
-
186
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:972
187
- msgid "Please select check-in and check-out days!"
188
- msgstr ""
189
-
190
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:1172
191
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:1185
192
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:154
193
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1175
194
- #, fuzzy
195
- msgid "Search"
196
- msgstr "Сакавік"
197
-
198
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:2097
199
- #, php-format
200
- msgid ""
201
- "Sorry, the reservation was not made because these days are already booked!!! %s (Its not "
202
- "possible to store this sequence of the dates into the one resource.) %s Please %srefresh%s the "
203
- "page and try other days."
204
- msgstr ""
205
-
206
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:2608
207
- #, php-format
208
- msgid "The folowing pending booking(s): %s deleted."
209
- msgstr ""
210
-
211
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:2648
212
- #, fuzzy
213
- msgid "Maximum available booking resource items"
214
- msgstr "максімальная колькасць аб'ектаў усярэдзіне рэсурсу бранявання "
215
-
216
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:2789
217
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4019
218
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2537
219
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3151
220
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4562
221
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4741
222
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4837
223
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4900
224
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1514
225
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2255
226
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1352
227
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:346
228
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:341
229
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:320
230
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/pay-cash.php:126
231
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:596
232
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:337
233
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:299
234
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1398
235
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1457
236
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1647
237
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1742
238
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3854
239
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3995
240
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-class-settings.php:46
241
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:75
242
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1257
243
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1742
244
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2269
245
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2396
246
- msgid "Save Changes"
247
- msgstr "Захаваць змены"
248
-
249
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:2891
250
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3069
251
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3488
252
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3718
253
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3774
254
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3827
255
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3925
256
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4568
257
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:841
258
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1353
259
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1996
260
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2121
261
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:100
262
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:111
263
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:104
264
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/pay-cash.php:56
265
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:140
266
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:96
267
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:85
268
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1355
269
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3433
270
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3514
271
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3586
272
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3671
273
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3761
274
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3918
275
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3960
276
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/sync/wpbc-sync-gcal-api.php:74
277
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:311
278
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:331
279
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:349
280
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:420
281
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:2982
282
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:387
283
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:572
284
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:695
285
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:922
286
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1132
287
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1161
288
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1231
289
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1447
290
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1931
291
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2011
292
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2084
293
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2171
294
- msgid "Click to toggle"
295
- msgstr ""
296
-
297
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:2892
298
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:722
299
- #, fuzzy
300
- msgid "Booking resources management"
301
- msgstr "Дадаць рэзерв"
302
-
303
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:2897
304
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3599
305
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3639
306
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4271
307
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4292
308
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4851
309
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4867
310
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-text.php:211
311
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:253
312
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:257
313
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:372
314
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:301
315
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:306
316
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1248
317
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1411
318
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1426
319
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-br-table-for-settings.php:76
320
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-br-table-for-settings.php:93
321
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:576
322
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:594
323
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1572
324
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1575
325
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1952
326
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:815
327
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:816
328
- msgid "ID"
329
- msgstr "ID"
330
-
331
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:2899
332
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4098
333
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4852
334
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1412
335
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1428
336
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-br-table-for-settings.php:77
337
- msgid "Resource name"
338
- msgstr "Імя рэсурсу"
339
-
340
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:2901
341
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4043
342
- #, fuzzy
343
- msgid "Number of resource items inside of parent resource"
344
- msgstr "Імя аб'ектаў з рэсурсу"
345
-
346
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:2901
347
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4043
348
- msgid "Capacity"
349
- msgstr ""
350
-
351
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:2902
352
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3006
353
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4044
354
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4170
355
- #, fuzzy
356
- msgid "Parent"
357
- msgstr "Аплата"
358
-
359
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:2903
360
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3013
361
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4045
362
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4180
363
- msgid "Priority"
364
- msgstr ""
365
-
366
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:2905
367
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4047
368
- #, fuzzy
369
- msgid "Maximum number of visitors for resource"
370
- msgstr "Лік наведвальнікаў"
371
-
372
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:2905
373
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4047
374
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1787
375
- #, fuzzy
376
- msgid "Max"
377
- msgstr "Сакавік"
378
-
379
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:2905
380
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4047
381
- #, fuzzy
382
- msgid "visitors"
383
- msgstr "Наведвальнікі"
384
-
385
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:2907
386
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3605
387
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4049
388
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4274
389
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1252
390
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1374
391
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1761
392
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1776
393
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2137
394
- msgid "Actions"
395
- msgstr "Функцыі "
396
-
397
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:2985
398
- msgid "Add"
399
- msgstr "Дадаць"
400
-
401
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:2994
402
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:882
403
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4301
404
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4304
405
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4835
406
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1396
407
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1697
408
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1999
409
- msgid "Delete"
410
- msgstr "Выдаліць"
411
-
412
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3004
413
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-booking-select-widget.php:121
414
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:577
415
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:596
416
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-widget.php:79
417
- msgid "Title"
418
- msgstr "Загаловак"
419
-
420
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3021
421
- #, fuzzy
422
- msgid "Add new resource"
423
- msgstr "Дадаць новае браняванне"
424
-
425
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3028
426
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3167
427
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3716
428
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3964
429
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:448
430
- msgid "Save"
431
- msgstr "Захаваць"
432
-
433
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3070
434
- msgid "Advanced Settings"
435
- msgstr "Пашыраныя налады"
436
-
437
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3085
438
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3209
439
- #, fuzzy
440
- msgid "Set capacity based on number of visitors"
441
- msgstr "Лік наведвальнікаў"
442
-
443
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3091
444
- #, fuzzy, php-format
445
- msgid ""
446
- "Check this box if you want total availability (daily capacity) to depend on the number of "
447
- "selected visitors %s."
448
- msgstr "Вылучыце гэты чекбокс для паказу даступнасці аб'ектаў бранявання ў якая сплывае падказцы"
449
-
450
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3092
451
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3219
452
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1539
453
- #, php-format
454
- msgid "Please read more info about configuration of this parameter %shere%s"
455
- msgstr ""
456
-
457
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3106
458
- #, php-format
459
- msgid ""
460
- "Add tooltip on calendar(s) to show availability based on the number of available booking "
461
- "resource items remaining for each day. %sBe sure to match the maximum number of visitors for the "
462
- "%sone booking resource%s with the number of visitors specified on the booking form."
463
- msgstr ""
464
-
465
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3114
466
- #, php-format
467
- msgid ""
468
- "Display tooltip on calendar(s) to show availability based on total (fixed) number of visitors "
469
- "for the resource, which can be at free booking resource items. %sBe sure to match the maximum "
470
- "number of visitors for %sall booking resources%s with the number of visitors specified on the "
471
- "booking form."
472
- msgstr ""
473
-
474
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3129
475
- #, fuzzy
476
- msgid "Show availability"
477
- msgstr "Паказаць"
478
-
479
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3136
480
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3356
481
- #, fuzzy
482
- msgid ""
483
- "Check this box to display the available number of booking resources with a tooltip, when mouse "
484
- "hovers over each day on the calendar(s)."
485
- msgstr "Вылучыце гэты чекбокс для паказу даступнасці аб'ектаў бранявання ў якая сплывае падказцы"
486
-
487
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3144
488
- msgid "Availability description"
489
- msgstr "Апісанне даступнасць"
490
-
491
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3146
492
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3367
493
- #, php-format
494
- msgid "Type your %savailability%s description"
495
- msgstr "Увядзіце Ваш надпіс для %sдоступности%s "
496
-
497
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3156
498
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3255
499
- #, fuzzy
500
- msgid "Disable bookings in different booking resources"
501
- msgstr "Памылка пры абнаўленні БД "
502
-
503
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3160
504
- msgid ""
505
- "Check this box to dissable reservations, which can be stored in different booking resources. "
506
- "When checked, all reserved days must be at same booking resource otherwise error message will "
507
- "show."
508
- msgstr ""
509
-
510
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3216
511
- #, fuzzy
512
- msgid ""
513
- "Check this box if you want total availability (daily capacity) to depend on the number of "
514
- "selected visitors."
515
- msgstr "Вылучыце гэты чекбокс для паказу даступнасці аб'ектаў бранявання ў якая сплывае падказцы"
516
-
517
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3219
518
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:117
519
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:126
520
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:136
521
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:197
522
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:228
523
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:230
524
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:278
525
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:291
526
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:303
527
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:305
528
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:341
529
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:343
530
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:380
531
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:382
532
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:497
533
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:515
534
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:644
535
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:658
536
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:315
537
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:332
538
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:294
539
- msgid "Important!"
540
- msgstr ""
541
-
542
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3234
543
- msgid ""
544
- "Add tooltip on calendar(s) to show availability based on the number of available booking "
545
- "resource items remaining for each day."
546
- msgstr ""
547
-
548
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3236
549
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3245
550
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3849
551
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2959
552
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4706
553
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:613
554
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:649
555
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:949
556
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1424
557
- #, fuzzy
558
- msgid "Note"
559
- msgstr ""
560
- "%sВажно!!!%s Калі ласка майце на ўвазе, калі каляндар показываеться ў пасце ці на старонцы "
561
- "сумесна з виджетом, то каляндар у виджете не будзе намаляваны"
562
-
563
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3236
564
- #, php-format
565
- msgid ""
566
- "Be sure to match the maximum number of visitors for the %sone booking resource%s with the number "
567
- "of visitors specified on the booking form."
568
- msgstr ""
569
-
570
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3243
571
- msgid ""
572
- "Display tooltip on calendar(s) to show availability based on total (fixed) number of visitors "
573
- "for the resource, which can be at free booking resource items."
574
- msgstr ""
575
-
576
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3245
577
- #, php-format
578
- msgid ""
579
- "Be sure to match the maximum number of visitors for %sall booking resources%s with the number of "
580
- "visitors specified on the booking form."
581
- msgstr ""
582
-
583
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3260
584
- #, fuzzy
585
- msgid ""
586
- "Check this box to dissable reservations, which can be stored in different booking resources."
587
- msgstr "Памылка пры абнаўленні БД "
588
-
589
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3263
590
- msgid ""
591
- "When checked, all reserved days must be at same booking resource otherwise error message will "
592
- "show."
593
- msgstr ""
594
-
595
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3292
596
- msgid "Use pending days as available"
597
- msgstr ""
598
-
599
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3301
600
- #, fuzzy
601
- msgid "Check this box if you want to show the pending days as available in calendars"
602
- msgstr "Абярыце, калі Вы жадаеце паказаць легенду дзён пад календаром "
603
-
604
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3318
605
- msgid ""
606
- "Warning!!! After you approved the specific booking(s), all your pending bookings of the same "
607
- "booking resource as an approved booking for the dates, which are intersect with dates of "
608
- "approved booking, will be automatically canceled!"
609
- msgstr ""
610
-
611
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3320
612
- msgid ""
613
- "Auto Cancel all pending bookings for the specific date(s), if some booking is approved for these "
614
- "date(s)"
615
- msgstr ""
616
-
617
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3349
618
- #, fuzzy
619
- msgid "Show availability in tooltip"
620
- msgstr "Паказаць"
621
-
622
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3365
623
- #, fuzzy
624
- msgid "Availability Title"
625
- msgstr "Загаловак"
626
-
627
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3402
628
- msgid ""
629
- "Use \"Check In\" date as available in calendar for booking resources with capacity higher then 1 "
630
- "for search results"
631
- msgstr ""
632
-
633
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3409
634
- msgid ""
635
- "Use \"Check Out\" date as available in calendar for booking resources with capacity higher then "
636
- "1 search results"
637
- msgstr ""
638
-
639
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3435
640
- #, fuzzy
641
- msgid "Coupon Deleted"
642
- msgstr "Выдалена"
643
-
644
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3481
645
- #, fuzzy
646
- msgid "Coupon created"
647
- msgstr "Лік дзён"
648
-
649
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3489
650
- #, fuzzy
651
- msgid "Add New Discount Coupon"
652
- msgstr "Дадаць новае браняванне"
653
-
654
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3496
655
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3600
656
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3641
657
- msgid "Coupon Code"
658
- msgstr ""
659
-
660
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3499
661
- #, fuzzy
662
- msgid "Enter coupon code."
663
- msgstr "Увядзіце ваш тэлефон"
664
-
665
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3504
666
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3601
667
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3644
668
- #, fuzzy
669
- msgid "Savings"
670
- msgstr "Захаванне..."
671
-
672
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3508
673
- #, fuzzy
674
- msgid "Fixed Amount"
675
- msgstr "фіксаваны ўнёсак"
676
-
677
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3509
678
- msgid "Percentage Off"
679
- msgstr ""
680
-
681
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3512
682
- msgid "Enter number of fixed or percentage savings."
683
- msgstr ""
684
-
685
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3517
686
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3603
687
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3655
688
- #, fuzzy
689
- msgid "Expiration Date"
690
- msgstr "Фармат даты"
691
-
692
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3525
693
- msgid "Select Expiration Date of the coupon."
694
- msgstr ""
695
-
696
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3531
697
- #, fuzzy
698
- msgid "Minimum Booking Cost"
699
- msgstr "Фінальны кошт"
700
-
701
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3534
702
- msgid "Enter minimum booking cost, when coupon is applicable."
703
- msgstr ""
704
-
705
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3545
706
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3604
707
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3657
708
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4943
709
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1251
710
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:755
711
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:654
712
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1193
713
- #, fuzzy
714
- msgid "Resources"
715
- msgstr "Кошт рэсурсу"
716
-
717
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3548
718
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3625
719
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:335
720
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/sync/wpbc-sync-gcal-feed.php:100
721
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-booking-select-widget.php:144
722
- msgid "All"
723
- msgstr ""
724
-
725
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3561
726
- msgid "Select booking resources, where is possible to apply this coupon code."
727
- msgstr ""
728
-
729
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3568
730
- #, fuzzy
731
- msgid "Add New Coupon"
732
- msgstr "Дадаць"
733
-
734
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3600
735
- msgid "The coupon code your customers will be using to receive the discount."
736
- msgstr ""
737
-
738
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3601
739
- #, fuzzy
740
- msgid "The amount which will be saved. Enter only digits."
741
- msgstr "для кожнага тыпу бранявання. Увядзіце толькі лічбы."
742
-
743
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3602
744
- msgid "The minimum total cost required to use the coupon"
745
- msgstr ""
746
-
747
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3602
748
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3650
749
- #, fuzzy
750
- msgid "Minimum Purchase"
751
- msgstr "Купля"
752
-
753
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3603
754
- msgid "The date your coupon will expire"
755
- msgstr ""
756
-
757
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3604
758
- msgid "Resource list, which supports this coupon"
759
- msgstr ""
760
-
761
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3661
762
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1937
763
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:327
764
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:585
765
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:294
766
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:256
767
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:944
768
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:969
769
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1003
770
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1018
771
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1035
772
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1241
773
- msgid "Warning"
774
- msgstr ""
775
-
776
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3661
777
- #, fuzzy
778
- msgid "Do you really want to delete this item?"
779
- msgstr "Вы ўпэўнены, што жадаеце выдаліць? "
780
-
781
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3676
782
- #, fuzzy, php-format
783
- msgid "%s - coupon field, "
784
- msgstr "Некоректно ўведзены емейл"
785
-
786
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3677
787
- #, php-format
788
- msgid "Example: %s "
789
- msgstr "Прыклад: %s "
790
-
791
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3719
792
- #, fuzzy
793
- msgid "Search Availability Form"
794
- msgstr "Апісанне даступнасць"
795
-
796
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3724
797
- #, fuzzy
798
- msgid "Inlinee Search Form Template"
799
- msgstr "Фармат даты"
800
-
801
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3725
802
- #, fuzzy
803
- msgid "Horizontal Search Form Template"
804
- msgstr "Форма"
805
-
806
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3726
807
- #, fuzzy
808
- msgid "Standard Search Form Template"
809
- msgstr "Стандарт "
810
-
811
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3728
812
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1707
813
- #, fuzzy
814
- msgid "Reset current Form"
815
- msgstr "Палі формы"
816
-
817
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3733
818
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3720
819
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3968
820
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1714
821
- msgid "Reset"
822
- msgstr ""
823
-
824
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3754
825
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3799
826
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:225
827
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:252
828
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:245
829
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:207
830
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3982
831
- msgid "Use these shortcodes for customization: "
832
- msgstr "Выкарыстоўвайце гэтыя пазнакі для налады"
833
-
834
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3755
835
- #, php-format
836
- msgid "%s - search inside posts/pages which are part of this category, "
837
- msgstr ""
838
-
839
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3756
840
- #, php-format
841
- msgid "%s - search inside posts/pages which have this tag, "
842
- msgstr ""
843
-
844
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3757
845
- #, fuzzy, php-format
846
- msgid "%s - check-in date, "
847
- msgstr "Прыклад: %s "
848
-
849
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3758
850
- #, fuzzy, php-format
851
- msgid "%s - check-out date, "
852
- msgstr "%s - поле з пазнакай"
853
-
854
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3759
855
- #, fuzzy, php-format
856
- msgid "%s - default selection number of visitors, "
857
- msgstr "Лік наведвальнікаў"
858
-
859
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3760
860
- #, fuzzy, php-format
861
- msgid "Example: %s - custom number of visitor selections\""
862
- msgstr "Лік наведвальнікаў"
863
-
864
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3761
865
- #, fuzzy, php-format
866
- msgid "%s - search button, "
867
- msgstr "%sвведите час пачатку бранявання%s"
868
-
869
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3763
870
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3816
871
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/index.php:232
872
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2344
873
- msgid "HTML tags is accepted."
874
- msgstr ""
875
-
876
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3775
877
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4009
878
- #, fuzzy
879
- msgid "Search Results"
880
- msgstr "Загаловак"
881
-
882
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3778
883
- #, fuzzy
884
- msgid "Reset to default form"
885
- msgstr "Форма"
886
-
887
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3800
888
- #, fuzzy, php-format
889
- msgid "%s - resource title, "
890
- msgstr "Дапаможнае тэкставае поле"
891
-
892
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3801
893
- #, fuzzy, php-format
894
- msgid "%s - link to the page with booking form, "
895
- msgstr "%s - уставіць тып бранявання"
896
-
897
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3802
898
- #, fuzzy, php-format
899
- msgid "%s - availability of booking resource, "
900
- msgstr "Тып бранявання"
901
-
902
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3803
903
- #, fuzzy, php-format
904
- msgid "%s - maximum number of visitors for the booking resource, "
905
- msgstr "%s - уставіць тып бранявання"
906
-
907
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3804
908
- #, fuzzy, php-format
909
- msgid "%s - cost of booking the resource, "
910
- msgstr "Тып бранявання"
911
-
912
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3805
913
- #, php-format
914
- msgid "%s - featured image, taken from the featured image associated with the post, "
915
- msgstr ""
916
-
917
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3806
918
- #, php-format
919
- msgid "%s - booking info, taken from the excerpt associated with the post, "
920
- msgstr ""
921
-
922
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3808
923
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:676
924
- #, fuzzy
925
- msgid "Full cost of the booking."
926
- msgstr "Фінальны кошт"
927
-
928
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3809
929
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:678
930
- #, fuzzy
931
- msgid "Cost of the booking for the selected dates only."
932
- msgstr "Лік дзён"
933
-
934
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3810
935
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:680
936
- #, fuzzy
937
- msgid "Additional cost, which depends on the fields selection in the form."
938
- msgstr "Лік дзён"
939
-
940
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3811
941
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:682
942
- #, fuzzy
943
- msgid "The deposit cost of the booking."
944
- msgstr "Кошт"
945
-
946
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3812
947
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:684
948
- msgid "Balance cost of the booking - difference between deposit and full cost."
949
- msgstr ""
950
-
951
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3828
952
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4015
953
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:459
954
- #, fuzzy
955
- msgid "Help Info"
956
- msgstr "Інфа"
957
-
958
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3844
959
- msgid "CSS customization of search form and search results you can make at this file"
960
- msgstr ""
961
-
962
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3850
963
- #, php-format
964
- msgid ""
965
- "If you do not see search results at front-end side of your website, please check troubleshooting "
966
- "instruction %shere%s"
967
- msgstr ""
968
-
969
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3867
970
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3877
971
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3885
972
- #, fuzzy
973
- msgid "Check in"
974
- msgstr "Дзеці"
975
-
976
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3868
977
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3878
978
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3886
979
- #, fuzzy
980
- msgid "Check out"
981
- msgstr "Дзеці"
982
-
983
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3869
984
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3879
985
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3887
986
- msgid "Guests"
987
- msgstr ""
988
-
989
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3899
990
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2293
991
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2354
992
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4965
993
- msgid "Availability"
994
- msgstr "Даступнасць"
995
-
996
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3899
997
- #, fuzzy
998
- msgid "Max. persons"
999
- msgstr "Кошт"
1000
-
1001
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3926
1002
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4012
1003
- #, fuzzy
1004
- msgid "Search Cache"
1005
- msgstr "Усталёўкі"
1006
-
1007
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3929
1008
- #, fuzzy
1009
- msgid "Reset Search Cache"
1010
- msgstr "Усталёўкі"
1011
-
1012
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3935
1013
- msgid "Cache expiration"
1014
- msgstr ""
1015
-
1016
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3941
1017
- #, fuzzy
1018
- msgid "hour(s)"
1019
- msgstr "за 1 гадзіна"
1020
-
1021
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3946
1022
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3203
1023
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3391
1024
- #, fuzzy
1025
- msgid "day(s)"
1026
- msgstr "Дзень пачатку дыяпазону"
1027
-
1028
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3950
1029
- msgid "Select time of cache expiration"
1030
- msgstr ""
1031
-
1032
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3958
1033
- msgid "Cache will expire:"
1034
- msgstr ""
1035
-
1036
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3986
1037
- #, php-format
1038
- msgid "Found: %s booking forms inside of posts or pages "
1039
- msgstr ""
1040
-
1041
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4006
1042
- #, fuzzy
1043
- msgid "Search Form"
1044
- msgstr "Палі формы"
1045
-
1046
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4085
1047
- #, fuzzy
1048
- msgid "Parent Resource"
1049
- msgstr "Дадаць новае браняванне"
1050
-
1051
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4110
1052
- #, fuzzy
1053
- msgid "Max visitors"
1054
- msgstr "Лік наведвальнікаў"
1055
-
1056
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4157
1057
- msgid "Capacity: "
1058
- msgstr ""
1059
-
1060
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4176
1061
- msgid "Select parent resource, if you want that parent resource to increase capacity."
1062
- msgstr ""
1063
-
1064
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4187
1065
- msgid "Set priority of resource - resource with higher priority will be reserved firstly."
1066
- msgstr ""
1067
-
1068
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4198
1069
- #, fuzzy
1070
- msgid "Resources count"
1071
- msgstr "Кошт рэсурсу"
1072
-
1073
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4205
1074
- #, fuzzy
1075
- msgid "Create several booking resources for one time"
1076
- msgstr "Тып бранявання"
1077
-
1078
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4219
1079
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2366
1080
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-booking-select-widget.php:207
1081
- #, fuzzy
1082
- msgid "Default form"
1083
- msgstr "Форма"
1084
-
1085
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4224
1086
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4428
1087
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4434
1088
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4482
1089
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:854
1090
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:1061
1091
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:1105
1092
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2368
1093
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4538
1094
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-booking-select-widget.php:211
1095
- msgid "Standard"
1096
- msgstr "Стандарт "
1097
-
1098
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4229
1099
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-booking-select-widget.php:219
1100
- #, fuzzy
1101
- msgid "Select default custom booking form"
1102
- msgstr "Выдаленне дадзеных па браняванні"
1103
-
1104
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4321
1105
- msgid "Available: "
1106
- msgstr "Доступа: "
1107
-
1108
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4428
1109
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:653
1110
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4158
1111
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:742
1112
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1806
1113
- msgid "Default"
1114
- msgstr "Па змаўчанні"
1115
-
1116
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4429
1117
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4435
1118
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4470
1119
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4471
1120
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4483
1121
- msgid "Superior"
1122
- msgstr "Супериор "
1123
-
1124
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4429
1125
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2427
1126
- #, fuzzy
1127
- msgid "Resource #1"
1128
- msgstr "за 1 ноч"
1129
-
1130
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4430
1131
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4436
1132
- msgid "Presidential Suite"
1133
- msgstr "Президенский нумар "
1134
-
1135
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4430
1136
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2428
1137
- #, fuzzy
1138
- msgid "Resource #2"
1139
- msgstr "Дадаць новае браняванне"
1140
-
1141
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4431
1142
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4437
1143
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1432
1144
- msgid "Royal Villa"
1145
- msgstr "Віла "
1146
-
1147
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4431
1148
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2429
1149
- #, fuzzy
1150
- msgid "Resource #3"
1151
- msgstr "Дадаць новае браняванне"
1152
-
1153
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:241
1154
- #, fuzzy
1155
- msgid "night(s)"
1156
- msgstr "за 1 ноч"
1157
-
1158
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:252
1159
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:116
1160
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4031
1161
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4045
1162
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4067
1163
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4083
1164
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4094
1165
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4113
1166
- msgid "Adults"
1167
- msgstr ""
1168
-
1169
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:252
1170
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:116
1171
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4031
1172
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4045
1173
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4067
1174
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4084
1175
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4095
1176
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4114
1177
- msgid "Children"
1178
- msgstr "Дзеці"
1179
-
1180
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:281
1181
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:310
1182
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3022
1183
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3065
1184
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3107
1185
- #, fuzzy
1186
- msgid "per 1 day"
1187
- msgstr "за 1 дзень"
1188
-
1189
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:282
1190
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:311
1191
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3066
1192
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3106
1193
- #, fuzzy
1194
- msgid "from the cost of 1 day "
1195
- msgstr "за 1 дзень"
1196
-
1197
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:283
1198
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:312
1199
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3067
1200
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3108
1201
- #, fuzzy, php-format
1202
- msgid "Additional cost in %s per 1 day"
1203
- msgstr "Дадатковы кошт для "
1204
-
1205
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:284
1206
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:313
1207
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:314
1208
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3071
1209
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3072
1210
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3114
1211
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3115
1212
- #, fuzzy
1213
- msgid " for all days!"
1214
- msgstr "Дні тыдня "
1215
-
1216
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:285
1217
- #, fuzzy
1218
- msgid "for all days!"
1219
- msgstr "Дні тыдня "
1220
-
1221
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:851
1222
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:856
1223
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4534
1224
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4540
1225
- #, fuzzy
1226
- msgid "Custom Form"
1227
- msgstr "Наладжвальны"
1228
-
1229
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:866
1230
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4555
1231
- #, fuzzy
1232
- msgid "Load selected booking form"
1233
- msgstr "Форма бранявання"
1234
-
1235
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:868
1236
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4557
1237
- msgid "Load"
1238
- msgstr ""
1239
-
1240
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:876
1241
- #, fuzzy
1242
- msgid "Delete selected booking form"
1243
- msgstr "Форма бранявання"
1244
-
1245
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:879
1246
- #, fuzzy
1247
- msgid "Do you really want to delete selected booking form ?"
1248
- msgstr "Вы ўпэўнены, што жадаеце выдаліць гэты тып?"
1249
-
1250
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:886
1251
- #, fuzzy
1252
- msgid "Add new custom form"
1253
- msgstr "Дадаць новае браняванне"
1254
-
1255
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:887
1256
- #, fuzzy
1257
- msgid "Add New Custom Form"
1258
- msgstr "Дадаць новае браняванне"
1259
-
1260
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:892
1261
- #, fuzzy
1262
- msgid "Type the name of booking form"
1263
- msgstr "Форма бранявання"
1264
-
1265
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:895
1266
- #, fuzzy
1267
- msgid "Create new form"
1268
- msgstr "Новазеландскія даляры"
1269
-
1270
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:898
1271
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3714
1272
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3962
1273
- msgid "Create"
1274
- msgstr ""
1275
-
1276
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:900
1277
- #, fuzzy
1278
- msgid "Delete form"
1279
- msgstr "Выдаліць"
1280
-
1281
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:904
1282
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:451
1283
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:491
1284
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:144
1285
- msgid "Cancel"
1286
- msgstr "Адмена"
1287
-
1288
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:934
1289
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:511
1290
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-ajax.php:213
1291
- msgid "Deleted"
1292
- msgstr "Выдалена"
1293
-
1294
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:941
1295
- #, fuzzy
1296
- msgid "There are no extended booking forms"
1297
- msgstr "Дадаць рэзерв"
1298
-
1299
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:1059
1300
- #, fuzzy
1301
- msgid "Booking form type:"
1302
- msgstr "Форма бранявання"
1303
-
1304
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:1066
1305
- #, fuzzy
1306
- msgid "Select type of booking form"
1307
- msgstr "Форма бранявання"
1308
-
1309
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:1100
1310
- #, fuzzy
1311
- msgid "Booking Form"
1312
- msgstr "Форма бранявання"
1313
-
1314
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:1180
1315
- #, fuzzy
1316
- msgid "Standard booking resource cost"
1317
- msgstr "Дадаць новае браняванне"
1318
-
1319
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:1181
1320
- #, fuzzy
1321
- msgid "Total booking resource cost"
1322
- msgstr "Дадаць новае браняванне"
1323
-
1324
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:1525
1325
- #, php-format
1326
- msgid ""
1327
- "%s - show cost hint for full booking in real time, depending on number of days selected and form "
1328
- "elements."
1329
- msgstr ""
1330
-
1331
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:1526
1332
- #, fuzzy, php-format
1333
- msgid "Example: %sThe full cost of payment: %s"
1334
- msgstr "%s - уставіць даты бранявання"
1335
-
1336
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:1527
1337
- #, php-format
1338
- msgid ""
1339
- "%s - show hint of original booking cost without additional costs for full booking in real time, "
1340
- "depends only from days selection."
1341
- msgstr ""
1342
-
1343
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:1528
1344
- #, fuzzy, php-format
1345
- msgid "Example: %sThe original cost for payment: %s "
1346
- msgstr "%s - уставіць даты бранявання"
1347
-
1348
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:1529
1349
- #, php-format
1350
- msgid ""
1351
- "%s - show cost hint of additional booking cost, which depends from selection of form elements."
1352
- msgstr ""
1353
-
1354
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:1530
1355
- #, php-format
1356
- msgid "Example: %sThe additional cost for payment: %s "
1357
- msgstr ""
1358
-
1359
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:1531
1360
- #, php-format
1361
- msgid "%s - enter direct cost at admin panel at page: "
1362
- msgstr ""
1363
-
1364
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:1531
1365
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:643
1366
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:710
1367
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1179
1368
- msgid "Add booking"
1369
- msgstr "Дадаць рэзерв"
1370
-
1371
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:1532
1372
- #, fuzzy, php-format
1373
- msgid "Example: %s"
1374
- msgstr "Прыклад: %s "
1375
-
1376
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2086
1377
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-functions.php:322
1378
- msgid "yes"
1379
- msgstr "так"
1380
-
1381
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2288
1382
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2292
1383
- #, fuzzy
1384
- msgid "Setting rate or cost, which is depend from number of selected days for the resource"
1385
- msgstr "Лік дзён"
1386
-
1387
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2289
1388
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2326
1389
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2637
1390
- msgid "Rates"
1391
- msgstr "Рэйты "
1392
-
1393
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2289
1394
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2331
1395
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2335
1396
- #, fuzzy
1397
- msgid "Valuation days"
1398
- msgstr "Дні тыдня "
1399
-
1400
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2289
1401
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:444
1402
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:454
1403
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:766
1404
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:551
1405
- #, fuzzy
1406
- msgid "Deposit"
1407
- msgstr "фіксаваны ўнёсак"
1408
-
1409
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2297
1410
- msgid "Setting the default form for the specific resource"
1411
- msgstr ""
1412
-
1413
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2298
1414
- #, fuzzy
1415
- msgid "Default Form"
1416
- msgstr "Форма"
1417
-
1418
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2334
1419
- #, fuzzy
1420
- msgid "Set the cost based on the number of days selected for the reservation"
1421
- msgstr "Лік дзён"
1422
-
1423
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2335
1424
- msgid "Activation of this feature is require setting cost per day or cost per night"
1425
- msgstr ""
1426
-
1427
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2342
1428
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3364
1429
- #, fuzzy
1430
- msgid "Deposit amount"
1431
- msgstr "фіксаваны ўнёсак"
1432
-
1433
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2478
1434
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2489
1435
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2494
1436
- msgid "unavailable"
1437
- msgstr "Недаступныя дні "
1438
-
1439
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2479
1440
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2490
1441
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2493
1442
- msgid "available"
1443
- msgstr "даступныя дні "
1444
-
1445
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2481
1446
- #, fuzzy
1447
- msgid "Availability booking type"
1448
- msgstr "Апісанне даступнасць"
1449
-
1450
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2486
1451
- #, fuzzy, php-format
1452
- msgid "All days for %s"
1453
- msgstr "днеи"
1454
-
1455
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2496
1456
- #, fuzzy, php-format
1457
- msgid "Select %s days by activating specific season filter below or %sadd new season filter%s"
1458
- msgstr "Абярыце %s дні ўнізе ці %sдобавьте новы фільтр дат%s"
1459
-
1460
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2507
1461
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2529
1462
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4272
1463
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4293
1464
- #, fuzzy
1465
- msgid "Season Filter Name"
1466
- msgstr "Фільтр "
1467
-
1468
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2508
1469
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2530
1470
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2640
1471
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2711
1472
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4294
1473
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:418
1474
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:564
1475
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:302
1476
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/pay-cash.php:90
1477
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:485
1478
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:493
1479
- #, fuzzy
1480
- msgid "Description"
1481
- msgstr "Увядзіце Ваш надпіс для %sдоступности%s "
1482
-
1483
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2526
1484
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2667
1485
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2995
1486
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3046
1487
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3176
1488
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3357
1489
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:856
1490
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:107
1491
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:191
1492
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:211
1493
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:232
1494
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3448
1495
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3530
1496
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3601
1497
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3687
1498
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3777
1499
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/sync/wpbc-sync-gcal-api.php:91
1500
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1482
1501
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1525
1502
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1570
1503
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1616
1504
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1670
1505
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1713
1506
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1946
1507
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2027
1508
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2099
1509
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2187
1510
- msgid "Active"
1511
- msgstr "Актыўна"
1512
-
1513
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2529
1514
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2710
1515
- #, fuzzy
1516
- msgid "Edit season filter"
1517
- msgstr "Фільтр "
1518
-
1519
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2617
1520
- #, fuzzy
1521
- msgid "Seasonal rates of booking resource"
1522
- msgstr "Дадаць новае браняванне"
1523
-
1524
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2623
1525
- #, fuzzy, php-format
1526
- msgid ""
1527
- "Enter seasonal rate(s) (cost diference in %s from standard cost %s or a fixed cost) of the "
1528
- "booking resource (%s) or %sAdd a new seasonal filter%s"
1529
- msgstr ""
1530
- "Веедите сезонныя змены коштаў (рознасць кошту ў %s) ад стандартнага кошту %s ці фіксаваны кошт "
1531
- "рэсурсу бранявання %s ці %sдобавьте новы фільтр дат%s"
1532
-
1533
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2638
1534
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2691
1535
- msgid "Final cost"
1536
- msgstr "Фінальны кошт"
1537
-
1538
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2639
1539
- #, fuzzy
1540
- msgid "Season Filter"
1541
- msgstr "Высокі сазон"
1542
-
1543
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2672
1544
- #, fuzzy
1545
- msgid "Rate"
1546
- msgstr "Рэйты "
1547
-
1548
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2681
1549
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2701
1550
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2005
1551
- msgid "for 1 day"
1552
- msgstr "за 1 дзень"
1553
-
1554
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2682
1555
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2702
1556
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2006
1557
- msgid "for 1 night"
1558
- msgstr "за 1 ноч"
1559
-
1560
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2683
1561
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2703
1562
- msgid "fixed deposit"
1563
- msgstr "фіксаваны ўнёсак"
1564
-
1565
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2684
1566
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2704
1567
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2008
1568
- msgid "for 1 hour"
1569
- msgstr "за 1 гадзіна"
1570
-
1571
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2710
1572
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3704
1573
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3952
1574
- #, fuzzy
1575
- msgid "Filter Name"
1576
- msgstr "Фільтр "
1577
-
1578
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2718
1579
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2958
1580
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3453
1581
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:340
1582
- #, fuzzy
1583
- msgid "Note!"
1584
- msgstr ""
1585
- "%sВажно!!!%s Калі ласка майце на ўвазе, калі каляндар показываеться ў пасце ці на старонцы "
1586
- "сумесна з виджетом, то каляндар у виджете не будзе намаляваны"
1587
-
1588
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2718
1589
- msgid "Check boxe(s) at left side if you want to activate specific cost."
1590
- msgstr ""
1591
-
1592
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2722
1593
- #, fuzzy
1594
- msgid "Update Rates"
1595
- msgstr "Рэйты "
1596
-
1597
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2957
1598
- msgid "Set cost of booking resource based on the number of days selected"
1599
- msgstr ""
1600
-
1601
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2958
1602
- #, php-format
1603
- msgid "If you add costs here, %srates%s for this booking resource will not take effect !!!"
1604
- msgstr ""
1605
-
1606
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2962
1607
- #, php-format
1608
- msgid ""
1609
- "Cost setings at %stop have higher priority%s than other costs of same type at the %sbottom%s of "
1610
- "the list."
1611
- msgstr ""
1612
-
1613
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2963
1614
- #, php-format
1615
- msgid ""
1616
- "Please create all %s terms firstly %s(from higher priority to lower)%s, then terms %s and after "
1617
- "terms %s"
1618
- msgstr ""
1619
-
1620
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2963
1621
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2965
1622
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3078
1623
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3189
1624
- msgid "Together"
1625
- msgstr ""
1626
-
1627
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2963
1628
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2965
1629
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3002
1630
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3076
1631
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3187
1632
- #, fuzzy
1633
- msgid "For"
1634
- msgstr "Форма"
1635
-
1636
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2963
1637
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2965
1638
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3077
1639
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3188
1640
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3534
1641
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:877
1642
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3461
1643
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3536
1644
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3621
1645
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3708
1646
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3798
1647
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:581
1648
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1959
1649
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2033
1650
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2119
1651
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2208
1652
- msgid "From"
1653
- msgstr "Ад каго"
1654
-
1655
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2963
1656
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2965
1657
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3454
1658
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1952
1659
- msgid "To"
1660
- msgstr "Каму"
1661
-
1662
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2965
1663
- #, php-format
1664
- msgid "%s and %s terms have higher priority than a range %s days."
1665
- msgstr ""
1666
-
1667
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2968
1668
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:853
1669
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-notices.php:25
1670
- msgid "Warning!"
1671
- msgstr ""
1672
-
1673
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2969
1674
- msgid ""
1675
- "Specific cost will take affect, only if it active (the box at the left side is checked) and if "
1676
- "\"Check In\" (start) date belong to selected season filter or if set \"Any days\"."
1677
- msgstr ""
1678
-
1679
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2978
1680
- #, fuzzy
1681
- msgid "Number of Days"
1682
- msgstr "Лік наведвальнікаў"
1683
-
1684
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2979
1685
- #, fuzzy
1686
- msgid "Cost Settings"
1687
- msgstr "Кошт"
1688
-
1689
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2980
1690
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3027
1691
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3124
1692
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3218
1693
- #, fuzzy
1694
- msgid "Season Filter of Check In date"
1695
- msgstr "Фільтр дат"
1696
-
1697
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3004
1698
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3080
1699
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3192
1700
- #, fuzzy
1701
- msgid "Day Number(s)"
1702
- msgstr "Лік наведвальнікаў"
1703
-
1704
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3010
1705
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3086
1706
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3198
1707
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3534
1708
- msgid "to"
1709
- msgstr "да"
1710
-
1711
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3014
1712
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3092
1713
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2176
1714
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:805
1715
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:292
1716
- #, fuzzy
1717
- msgid "day"
1718
- msgstr "Дзень пачатку дыяпазону"
1719
-
1720
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3018
1721
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3099
1722
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3208
1723
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:344
1724
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:378
1725
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:376
1726
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:282
1727
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:304
1728
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:309
1729
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:445
1730
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:455
1731
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:767
1732
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:552
1733
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:832
1734
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:833
1735
- msgid "Cost"
1736
- msgstr "Кошт"
1737
-
1738
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3029
1739
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3126
1740
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3220
1741
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3407
1742
- #, fuzzy
1743
- msgid "Any days"
1744
- msgstr "Любы дзень тыдня"
1745
-
1746
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3093
1747
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2179
1748
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:618
1749
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:682
1750
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:808
1751
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:293
1752
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:294
1753
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:295
1754
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:296
1755
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:297
1756
- msgid "days"
1757
- msgstr "днеи"
1758
-
1759
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3137
1760
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3231
1761
- msgid "Remove"
1762
- msgstr ""
1763
-
1764
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3150
1765
- #, fuzzy
1766
- msgid "Add new cost"
1767
- msgstr "Дадаць"
1768
-
1769
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3186
1770
- #, fuzzy
1771
- msgid "for all days"
1772
- msgstr "Дні тыдня "
1773
-
1774
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3330
1775
- #, fuzzy
1776
- msgid "Set amount of deposit payment"
1777
- msgstr "%s - уставіць даты бранявання"
1778
-
1779
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3339
1780
- #, fuzzy
1781
- msgid "Deposit payment total"
1782
- msgstr "Аплата"
1783
-
1784
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3342
1785
- #, fuzzy
1786
- msgid "Deposit payment is not active for booking resource"
1787
- msgstr "Сезонныя змены коштаў"
1788
-
1789
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3349
1790
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:847
1791
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3439
1792
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3521
1793
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3592
1794
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3679
1795
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3768
1796
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/sync/wpbc-sync-gcal-api.php:82
1797
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1507
1798
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1937
1799
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2018
1800
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2090
1801
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2179
1802
- msgid "Status"
1803
- msgstr ""
1804
-
1805
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3358
1806
- #, fuzzy
1807
- msgid "deposit payment for booking resource"
1808
- msgstr "Дадаць новае браняванне"
1809
-
1810
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3373
1811
- #, fuzzy
1812
- msgid "fixed total in"
1813
- msgstr "фіксаваны ўнёсак"
1814
-
1815
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3374
1816
- #, fuzzy
1817
- msgid "of payment"
1818
- msgstr "Аплата"
1819
-
1820
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3380
1821
- #, fuzzy
1822
- msgid "Conditions"
1823
- msgstr "Выдаленне дадзеных па браняванні"
1824
-
1825
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3383
1826
- #, php-format
1827
- msgid ""
1828
- "Show deposit payment form, only if difference between %sToday%s and %sCheck In%s days more than"
1829
- msgstr ""
1830
-
1831
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3404
1832
- #, php-format
1833
- msgid "Show deposit payment form, only if %sCheck In%s day inside of this %sSeason Filter%s"
1834
- msgstr ""
1835
-
1836
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3423
1837
- #, fuzzy
1838
- msgid "Update Deposit"
1839
- msgstr "фіксаваны ўнёсак"
1840
-
1841
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3447
1842
- #, fuzzy
1843
- msgid "Deposit payment"
1844
- msgstr "Аплата"
1845
-
1846
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3452
1847
- #, fuzzy, php-format
1848
- msgid ""
1849
- "Check this box if you want to use the %sdeposit%s total %spayment%s on the payment form, instead "
1850
- "of the full total of the booking."
1851
- msgstr "Вылучыце гэты чекбокс для паказу кошту дня ў якая сплывае падказцы"
1852
-
1853
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3453
1854
- #, fuzzy, php-format
1855
- msgid " You can configure the deposit payment for your booking resources %shere%s."
1856
- msgstr "Сезонныя змены коштаў"
1857
-
1858
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3471
1859
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3751
1860
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:116
1861
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:153
1862
- msgid "Su"
1863
- msgstr "Вс"
1864
-
1865
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3471
1866
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3751
1867
- msgid "Mo"
1868
- msgstr "Пн"
1869
-
1870
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3471
1871
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3751
1872
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:116
1873
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:153
1874
- msgid "Tu"
1875
- msgstr "Вт"
1876
-
1877
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3471
1878
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3751
1879
- msgid "We"
1880
- msgstr "Ср"
1881
-
1882
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3471
1883
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3751
1884
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:116
1885
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:153
1886
- msgid "Th"
1887
- msgstr "Чт"
1888
-
1889
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3471
1890
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3751
1891
- msgid "Fr"
1892
- msgstr "Пт"
1893
-
1894
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3471
1895
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3751
1896
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:116
1897
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:153
1898
- msgid "Sa"
1899
- msgstr "Сб"
1900
-
1901
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3472
1902
- msgid "Jan"
1903
- msgstr "Янв"
1904
-
1905
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3472
1906
- msgid "Feb"
1907
- msgstr "Фев"
1908
-
1909
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3472
1910
- msgid "Mar"
1911
- msgstr "Сакавік"
1912
-
1913
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3472
1914
- msgid "Apr"
1915
- msgstr "Апр"
1916
-
1917
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3472
1918
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4127
1919
- msgid "May"
1920
- msgstr "Травень"
1921
-
1922
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3472
1923
- msgid "Jun"
1924
- msgstr "Чэрвень"
1925
-
1926
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3472
1927
- msgid "Jul"
1928
- msgstr "Ліпень"
1929
-
1930
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3472
1931
- msgid "Aug"
1932
- msgstr "Авг"
1933
-
1934
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3472
1935
- msgid "Sep"
1936
- msgstr "Сен"
1937
-
1938
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3472
1939
- msgid "Oct"
1940
- msgstr "Окт"
1941
-
1942
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3472
1943
- msgid "Nov"
1944
- msgstr "Ныючы"
1945
-
1946
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3472
1947
- msgid "Dec"
1948
- msgstr "Дэк"
1949
-
1950
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3531
1951
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3550
1952
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3570
1953
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3591
1954
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3608
1955
- msgid "No days"
1956
- msgstr "Няма дзён"
1957
-
1958
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3534
1959
- msgid "time"
1960
- msgstr "час"
1961
-
1962
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3552
1963
- msgid "Every"
1964
- msgstr "Кожны "
1965
-
1966
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3567
1967
- #, fuzzy
1968
- msgid "Each day "
1969
- msgstr "за 1 дзень"
1970
-
1971
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3568
1972
- #, fuzzy
1973
- msgid "on each day "
1974
- msgstr "Дзень пачатку дыяпазону"
1975
-
1976
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3572
1977
- #, fuzzy
1978
- msgid "On each "
1979
- msgstr "на кожны "
1980
-
1981
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3573
1982
- #, fuzzy
1983
- msgid "on each "
1984
- msgstr "на кожны "
1985
-
1986
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3589
1987
- #, fuzzy
1988
- msgid "of every month "
1989
- msgstr "Кожны "
1990
-
1991
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3593
1992
- msgid "of"
1993
- msgstr "з "
1994
-
1995
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3662
1996
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3901
1997
- msgid "Filter saved"
1998
- msgstr "Фільтр захаваны"
1999
-
2000
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3698
2001
- #, fuzzy
2002
- msgid "Specific Dates Filter"
2003
- msgstr "Даты"
2004
-
2005
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3707
2006
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3955
2007
- #, fuzzy
2008
- msgid "Type filter name"
2009
- msgstr "Фільтр "
2010
-
2011
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3712
2012
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3818
2013
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3960
2014
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4219
2015
- #, fuzzy
2016
- msgid "Create new season filter"
2017
- msgstr "Фільтр Дат"
2018
-
2019
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3818
2020
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4219
2021
- #, fuzzy
2022
- msgid "Create New Season Filter"
2023
- msgstr "Фільтр Дат"
2024
-
2025
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3818
2026
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4219
2027
- msgid "Save changes"
2028
- msgstr "Захаваць змены "
2029
-
2030
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3946
2031
- #, fuzzy
2032
- msgid "Conditional Dates Filter"
2033
- msgstr "Даты"
2034
-
2035
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3980
2036
- msgid "Days of week"
2037
- msgstr "Дні тыдня "
2038
-
2039
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3988
2040
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1753
2041
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1842
2042
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:451
2043
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:597
2044
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:110
2045
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:134
2046
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:135
2047
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:140
2048
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:440
2049
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:475
2050
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:442
2051
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:474
2052
- msgid "Sunday"
2053
- msgstr "Нядзеля"
2054
-
2055
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3994
2056
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1755
2057
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1846
2058
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:452
2059
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:598
2060
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:110
2061
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:134
2062
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:135
2063
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:140
2064
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:440
2065
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:475
2066
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:443
2067
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:478
2068
- msgid "Monday"
2069
- msgstr "Панядзелак"
2070
-
2071
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4000
2072
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1757
2073
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1850
2074
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:453
2075
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:599
2076
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:110
2077
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:134
2078
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:135
2079
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:140
2080
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:440
2081
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:475
2082
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:444
2083
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:482
2084
- #, fuzzy
2085
- msgid "Tuesday"
2086
- msgstr "Аўторак"
2087
-
2088
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4006
2089
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1759
2090
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1854
2091
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:454
2092
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:600
2093
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:110
2094
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:134
2095
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:135
2096
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:140
2097
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:440
2098
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:475
2099
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:445
2100
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:486
2101
- msgid "Wednesday"
2102
- msgstr "Асяроддзе"
2103
-
2104
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4012
2105
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1761
2106
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1858
2107
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:455
2108
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:601
2109
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:110
2110
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:134
2111
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:135
2112
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:140
2113
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:440
2114
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:475
2115
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:446
2116
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:490
2117
- msgid "Thursday"
2118
- msgstr "Чацвер"
2119
-
2120
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4018
2121
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1763
2122
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1862
2123
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:456
2124
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:602
2125
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:110
2126
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:134
2127
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:135
2128
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:140
2129
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:440
2130
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:475
2131
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:447
2132
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:494
2133
- msgid "Friday"
2134
- msgstr "Пятніца"
2135
-
2136
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4024
2137
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1765
2138
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1866
2139
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:457
2140
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:603
2141
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:110
2142
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:134
2143
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:135
2144
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:140
2145
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:440
2146
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:475
2147
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:448
2148
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:498
2149
- msgid "Saturday"
2150
- msgstr "Субота"
2151
-
2152
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4036
2153
- msgid "Days of month"
2154
- msgstr "Дні месяца"
2155
-
2156
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4116
2157
- #, fuzzy
2158
- msgid "Months"
2159
- msgstr "Месяцы"
2160
-
2161
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4123
2162
- msgid "January"
2163
- msgstr "Студзень"
2164
-
2165
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4124
2166
- msgid "February"
2167
- msgstr "Люты"
2168
-
2169
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4125
2170
- msgid "March"
2171
- msgstr "Сакавік"
2172
-
2173
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4126
2174
- msgid "April"
2175
- msgstr "Красавік"
2176
-
2177
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4128
2178
- msgid "June"
2179
- msgstr "Чэрвень"
2180
-
2181
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4147
2182
- msgid "July"
2183
- msgstr "Ліпень"
2184
-
2185
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4148
2186
- msgid "August"
2187
- msgstr "Жнівень"
2188
-
2189
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4149
2190
- msgid "September"
2191
- msgstr "Верасень"
2192
-
2193
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4150
2194
- msgid "October"
2195
- msgstr "Кастрычнік"
2196
-
2197
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4151
2198
- msgid "November"
2199
- msgstr "Лістапад"
2200
-
2201
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4152
2202
- msgid "December"
2203
- msgstr "Снежань"
2204
-
2205
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4176
2206
- msgid "Years"
2207
- msgstr "Гады"
2208
-
2209
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4246
2210
- msgid "Filter deleted successfully"
2211
- msgstr "Фільтр выдалены паспяхова"
2212
-
2213
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4254
2214
- #, fuzzy
2215
- msgid "Create dates filter"
2216
- msgstr "Даты"
2217
-
2218
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4257
2219
- #, fuzzy
2220
- msgid "Create conditional days filter"
2221
- msgstr "Фільтр для часу ці дзён"
2222
-
2223
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4266
2224
- #, fuzzy
2225
- msgid "Listing of season filters"
2226
- msgstr "Высокі сазон"
2227
-
2228
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4273
2229
- msgid "Filters"
2230
- msgstr "Фільтры "
2231
-
2232
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4297
2233
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4299
2234
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4834
2235
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1395
2236
- msgid "Edit"
2237
- msgstr "рэдагаваць "
2238
-
2239
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4302
2240
- msgid "Do you really want to delete?"
2241
- msgstr "Вы ўпэўнены, што жадаеце выдаліць? "
2242
-
2243
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4343
2244
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:634
2245
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-notices.php:104
2246
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:936
2247
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1028
2248
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1604
2249
- msgid "Hide"
2250
- msgstr ""
2251
-
2252
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4344
2253
- #, fuzzy
2254
- msgid "Showing cost in date cell"
2255
- msgstr "Кошт"
2256
-
2257
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4355
2258
- #, fuzzy, php-format
2259
- msgid " Check this box to display the %sdaily cost at the date cells%s in the calendar(s)."
2260
- msgstr "Вылучыце гэты чекбокс для паказу кошту дня ў якая сплывае падказцы"
2261
-
2262
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4363
2263
- #, fuzzy
2264
- msgid "Currency symbol"
2265
- msgstr "Фармат даты"
2266
-
2267
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4387
2268
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1599
2269
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:547
2270
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:597
2271
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:870
2272
- msgid "Custom"
2273
- msgstr "Наладжвальны"
2274
-
2275
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4392
2276
- #, php-format
2277
- msgid ""
2278
- "Type your %scurrency symbol%s to display near daily cost in date cells. %sDocumentation on "
2279
- "currency symbols%s"
2280
- msgstr ""
2281
-
2282
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4404
2283
- #, fuzzy
2284
- msgid "Showing cost in tooltip"
2285
- msgstr "Фінальны кошт"
2286
-
2287
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4415
2288
- #, fuzzy
2289
- msgid ""
2290
- " Check this box to display the daily cost with a tooltip when mouse hovers over each day on the "
2291
- "calendar(s)."
2292
- msgstr "Вылучыце гэты чекбокс для паказу кошту дня ў якая сплывае падказцы"
2293
-
2294
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4423
2295
- #, fuzzy
2296
- msgid "Cost Title"
2297
- msgstr "Кошт"
2298
-
2299
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4425
2300
- #, php-format
2301
- msgid "Type your %scost%s description"
2302
- msgstr "Увядзіце Ваш надпіс для %sстоимости%s "
2303
-
2304
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4569
2305
- #, fuzzy
2306
- msgid "Advanced cost management"
2307
- msgstr "Кошт"
2308
-
2309
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4588
2310
- #, fuzzy
2311
- msgid "Configure Additional cost for the form"
2312
- msgstr "Дадатковы кошт для "
2313
-
2314
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4631
2315
- #, fuzzy
2316
- msgid "Additional cost for"
2317
- msgstr "Фінальны кошт"
2318
-
2319
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4702
2320
- msgid ""
2321
- "Check this box if you want that specific additional cost, which configured as percentage for "
2322
- "some option, apply to other additional fixed costs and not only to original booking cost."
2323
- msgstr ""
2324
-
2325
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4708
2326
- #, fuzzy
2327
- msgid "Configure additional cost, which depend from selection of selectbox(es) and checkbox(es)."
2328
- msgstr "Лік дзён"
2329
-
2330
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4711
2331
- #, php-format
2332
- msgid ""
2333
- "Fields %s(selectbox(es) and checkbox(es))%s are shown here automatically if they exist in the "
2334
- "%sbooking form%s."
2335
- msgstr ""
2336
-
2337
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4718
2338
- #, fuzzy
2339
- msgid "Enter additional cost in formats:"
2340
- msgstr "Дадатковы кошт для "
2341
-
2342
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4719
2343
- #, php-format
2344
- msgid ""
2345
- "For example, if the original cost of the booking is %s, then after applying additional costs the "
2346
- "total cost will be folowing"
2347
- msgstr ""
2348
-
2349
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4722
2350
- #, fuzzy
2351
- msgid "Enter fixed cost"
2352
- msgstr "Кошт"
2353
-
2354
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4722
2355
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4725
2356
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4731
2357
- #, fuzzy, php-format
2358
- msgid "%s, then total cost will be %s"
2359
- msgstr "%sвведите час пачатку бранявання%s"
2360
-
2361
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4725
2362
- #, fuzzy
2363
- msgid "Enter percentage of the entire booking"
2364
- msgstr "Увядзіце назву сэрвісу ці чыннік для плацяжоў тут."
2365
-
2366
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4728
2367
- #, fuzzy
2368
- msgid "Enter fixed amount for each selected day"
2369
- msgstr "Лік дзён"
2370
-
2371
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4728
2372
- #, php-format
2373
- msgid "%s, then total cost will be (if selected 3 days) %s"
2374
- msgstr ""
2375
-
2376
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4728
2377
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:279
2378
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:292
2379
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:306
2380
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:344
2381
- #, fuzzy
2382
- msgid "or"
2383
- msgstr "Форма"
2384
-
2385
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4731
2386
- msgid "Enter percentage as additional sum, which is based only on original cost and not full sum"
2387
- msgstr ""
2388
-
2389
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4735
2390
- #, php-format
2391
- msgid "Please check more info about configuration of this cost settings on this %spage%s."
2392
- msgstr ""
2393
-
2394
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4808
2395
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1337
2396
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-br-table-for-settings.php:33
2397
- #, fuzzy
2398
- msgid "Resource ID or Title"
2399
- msgstr "Загаловак"
2400
-
2401
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4810
2402
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1339
2403
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-br-table-for-settings.php:35
2404
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1452
2405
- msgid "Go"
2406
- msgstr ""
2407
-
2408
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4833
2409
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1394
2410
- #, fuzzy
2411
- msgid "Bulk Actions"
2412
- msgstr "Функцыі "
2413
-
2414
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4854
2415
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4880
2416
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1414
2417
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1439
2418
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-br-table-for-settings.php:79
2419
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-br-table-for-settings.php:105
2420
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:578
2421
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:600
2422
- msgid "Info"
2423
- msgstr "Інфа"
2424
-
2425
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4866
2426
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1425
2427
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-br-table-for-settings.php:92
2428
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:593
2429
- #, fuzzy
2430
- msgid "Selection"
2431
- msgstr "Увядзіце Ваш %sфиксированый дыяпазон дзён для вылучэння%s"
2432
-
2433
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4869
2434
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-br-table-for-settings.php:95
2435
- #, fuzzy
2436
- msgid "Resource Name"
2437
- msgstr "Імя рэсурсу"
2438
-
2439
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4946
2440
- #, fuzzy
2441
- msgid "Resources Settings"
2442
- msgstr "Пашыраныя налады"
2443
-
2444
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4946
2445
- #, fuzzy
2446
- msgid "Resources management"
2447
- msgstr "Браняванне"
2448
-
2449
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4948
2450
- #, fuzzy
2451
- msgid "Costs and Rates"
2452
- msgstr "Рэйты "
2453
-
2454
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4951
2455
- #, fuzzy
2456
- msgid "Costs and Rates Settings"
2457
- msgstr "Усталёўкі"
2458
-
2459
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4951
2460
- msgid "Customization of rates, valuation days cost and deposit amount "
2461
- msgstr ""
2462
-
2463
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4953
2464
- #, fuzzy
2465
- msgid "Advanced Cost"
2466
- msgstr "Кошт"
2467
-
2468
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4956
2469
- #, fuzzy
2470
- msgid "Advanced Cost Settings"
2471
- msgstr "Пашыраныя налады"
2472
-
2473
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4956
2474
- #, fuzzy
2475
- msgid "Customization of additional cost, which depend from form fields"
2476
- msgstr "Палі формы"
2477
-
2478
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4959
2479
- #, fuzzy
2480
- msgid "Coupons"
2481
- msgstr "Лік дзён"
2482
-
2483
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4962
2484
- #, fuzzy
2485
- msgid "Coupons Settings"
2486
- msgstr "Пашыраныя налады"
2487
-
2488
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4962
2489
- #, fuzzy
2490
- msgid "Setting coupons for discount"
2491
- msgstr "Кошт"
2492
-
2493
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4968
2494
- #, fuzzy
2495
- msgid "Availability Settings"
2496
- msgstr "Усталёўкі"
2497
-
2498
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4968
2499
- #, fuzzy
2500
- msgid "Customization of availability settings"
2501
- msgstr "Усталёўкі"
2502
-
2503
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4970
2504
- #, fuzzy
2505
- msgid "Season Filters"
2506
- msgstr "Фільтры "
2507
-
2508
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4973
2509
- #, fuzzy
2510
- msgid "Season Filters Settings"
2511
- msgstr "Усталёўкі"
2512
-
2513
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4973
2514
- #, fuzzy
2515
- msgid "Customization of season filters settings"
2516
- msgstr "Емейл"
2517
-
2518
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:5017
2519
- msgid "Cost: "
2520
- msgstr "Кошт:"
2521
-
2522
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:5051
2523
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:659
2524
- msgid "Weekend"
2525
- msgstr "Выходныя"
2526
-
2527
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:5098
2528
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:661
2529
- msgid "High season"
2530
- msgstr "Высокі сазон"
2531
-
2532
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:107
2533
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4040
2534
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4058
2535
- msgid "Select Times"
2536
- msgstr ""
2537
-
2538
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:343
2539
- #, fuzzy
2540
- msgid "Setting cost for the resource"
2541
- msgstr "Імя рэсурсу"
2542
-
2543
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:346
2544
- #, fuzzy
2545
- msgid "/ day"
2546
- msgstr "Дзень пачатку дыяпазону"
2547
-
2548
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:347
2549
- #, fuzzy
2550
- msgid "/ night"
2551
- msgstr "за 1 ноч"
2552
-
2553
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:348
2554
- #, fuzzy
2555
- msgid "fixed"
2556
- msgstr "фіксаваны ўнёсак"
2557
-
2558
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:349
2559
- #, fuzzy
2560
- msgid "/ hour"
2561
- msgstr "за 1 гадзіна"
2562
-
2563
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:416
2564
- #, fuzzy
2565
- msgid ""
2566
- "Start Time is invalid. The date or time may be booked, or already in the past! Please choose "
2567
- "another date or time."
2568
- msgstr "Час пачатку некоректно, магчыма гэты час ужо зарэзервавана ці ўжо прайшло."
2569
-
2570
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:417
2571
- #, fuzzy
2572
- msgid ""
2573
- "End Time is invalid. The date or time may be booked, or already in the past. The End Time may "
2574
- "also be earlier that the start time, if only 1 day was selected! Please choose another date or "
2575
- "time."
2576
- msgstr ""
2577
- "Час канчатка некоректно. Магчыма час для вылучаных дзён ужо зарэзервавана, ці час канчатка раней "
2578
- "чым час пачатку бранявання для 1-го вылучанага дня."
2579
-
2580
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:418
2581
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:419
2582
- #, fuzzy
2583
- msgid "The time(s) may be booked, or already in the past!"
2584
- msgstr "Час некоректно, магчыма гэты час ужо зарэзервавана ці ўжо прайшло."
2585
-
2586
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:583
2587
- #, fuzzy
2588
- msgid "Cost saved successfully"
2589
- msgstr "Абноўлена паспяхова"
2590
-
2591
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:590
2592
- msgid "Cost is not correct. It must be greater than 0"
2593
- msgstr ""
2594
-
2595
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:606
2596
- msgid "Send payment request to customer"
2597
- msgstr ""
2598
-
2599
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:610
2600
- #, fuzzy, php-format
2601
- msgid "Type your %sreason for payment%s request"
2602
- msgstr "Увядзіце %sаремя канчаткі%s"
2603
-
2604
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:618
2605
- #, fuzzy
2606
- msgid "Send Request"
2607
- msgstr "%sвремя канчаткі бранявання%s"
2608
-
2609
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:619
2610
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:768
2611
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1141
2612
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:901
2613
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:508
2614
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:571
2615
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:627
2616
- #, fuzzy
2617
- msgid "Close"
2618
- msgstr "Кошт"
2619
-
2620
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:760
2621
- msgid "Request has been sent"
2622
- msgstr ""
2623
-
2624
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:766
2625
- msgid "Request has failed"
2626
- msgstr ""
2627
-
2628
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:791
2629
- msgid "The payment status is changed successfully"
2630
- msgstr ""
2631
-
2632
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:798
2633
- msgid "The changing of payment status is failed"
2634
- msgstr ""
2635
-
2636
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:842
2637
- msgid "Email to \"Person\" with payment request"
2638
- msgstr ""
2639
-
2640
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:862
2641
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3607
2642
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3693
2643
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3783
2644
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2105
2645
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2193
2646
- #, fuzzy
2647
- msgid "Send to Admin"
2648
- msgstr "Адміністрацыйны емейл"
2649
-
2650
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:870
2651
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3615
2652
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3701
2653
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3791
2654
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2113
2655
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2201
2656
- #, fuzzy
2657
- msgid "Check this box to send copy of this email to Admin"
2658
- msgstr "Вылучыце, калі Вы жадаеце выкарыстоўваць аплату пры дапамозе Paypal."
2659
-
2660
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:879
2661
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3538
2662
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3623
2663
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3710
2664
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3800
2665
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2035
2666
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2121
2667
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2210
2668
- #, fuzzy, php-format
2669
- msgid "Type the default %sadmin email%s sending the booking confimation"
2670
- msgstr "Увядзіце %s еў. почу адміністратара%s для праверкі бранявання"
2671
-
2672
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:884
2673
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3468
2674
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3543
2675
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3628
2676
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3715
2677
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3805
2678
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1966
2679
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2040
2680
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2126
2681
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2215
2682
- msgid "Subject"
2683
- msgstr "Тэма ліста"
2684
-
2685
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:886
2686
- #, fuzzy, php-format
2687
- msgid "Type email subject for %spayment request%s."
2688
- msgstr "ввдите тэкст ліста для %sотказа браняванні%s на сайце"
2689
-
2690
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:891
2691
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3475
2692
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3552
2693
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3635
2694
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3722
2695
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3812
2696
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1973
2697
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2048
2698
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2133
2699
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2222
2700
- #, fuzzy
2701
- msgid "Content"
2702
- msgstr "Панядзелак"
2703
-
2704
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:906
2705
- #, fuzzy, php-format
2706
- msgid "Type your %semail message for payment request%s"
2707
- msgstr "ввдите тэкст ліста для %sотказа браняванні%s на сайце"
2708
-
2709
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:915
2710
- #, fuzzy, php-format
2711
- msgid ""
2712
- "You need to make payment %s for booking %s at %s. %s You can make payment at this %s Thank you, "
2713
- "booking service."
2714
- msgstr ""
2715
- "Напрыклад: \" Ваша бронь %s на даты: %s была адменена. %s Дзякуй за карыстанне сэрвісам "
2716
- "бранявання.\""
2717
-
2718
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:915
2719
- #, fuzzy
2720
- msgid "page"
2721
- msgstr ""
2722
- "%sВажно!!!%s Калі ласка майце на ўвазе, калі каляндар показываеться ў пасце ці на старонцы "
2723
- "сумесна з виджетом, то каляндар у виджете не будзе намаляваны"
2724
-
2725
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1191
2726
- #, fuzzy
2727
- msgid "deposit"
2728
- msgstr "фіксаваны ўнёсак"
2729
-
2730
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1192
2731
- #, fuzzy
2732
- msgid "Total cost"
2733
- msgstr "Фінальны кошт"
2734
-
2735
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1193
2736
- #, fuzzy
2737
- msgid "balance"
2738
- msgstr "Адмена"
2739
-
2740
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1254
2741
- #, fuzzy
2742
- msgid "Auto-fill form"
2743
- msgstr "Палі формы"
2744
-
2745
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1354
2746
- #, fuzzy
2747
- msgid "Billing form fields customization"
2748
- msgstr "Палі формы"
2749
-
2750
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1366
2751
- msgid ""
2752
- "Please select a field from your booking form. This field will be automatically assigned to the "
2753
- "current field in the billing form."
2754
- msgstr ""
2755
-
2756
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1372
2757
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:316
2758
- #, fuzzy
2759
- msgid "Customer Email"
2760
- msgstr "Емейл (абавязковае поле)"
2761
-
2762
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1385
2763
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:316
2764
- #, fuzzy
2765
- msgid "First Name(s)"
2766
- msgstr "Імя (абавязковае поле)"
2767
-
2768
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1398
2769
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:316
2770
- #, fuzzy
2771
- msgid "Last name"
2772
- msgstr "Прозвішча"
2773
-
2774
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1432
2775
- msgid "Billing Address"
2776
- msgstr ""
2777
-
2778
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1445
2779
- msgid "Billing City"
2780
- msgstr ""
2781
-
2782
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1458
2783
- msgid "Post Code"
2784
- msgstr ""
2785
-
2786
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1471
2787
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4112
2788
- #, fuzzy
2789
- msgid "Country"
2790
- msgstr "Лік дзён"
2791
-
2792
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1490
2793
- msgid "State"
2794
- msgstr ""
2795
-
2796
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1507
2797
- #, php-format
2798
- msgid "Configuring these %sfields is required for the some payment%s systems!"
2799
- msgstr ""
2800
-
2801
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1562
2802
- msgid "Title of booked timeslot(s)"
2803
- msgstr ""
2804
-
2805
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1566
2806
- #, php-format
2807
- msgid "Type your %stitle%s, what will show in mouseover tooltip near booked timeslot(s)"
2808
- msgstr ""
2809
-
2810
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1584
2811
- msgid "Time Format"
2812
- msgstr "Фармат даты"
2813
-
2814
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1607
2815
- #, fuzzy, php-format
2816
- msgid ""
2817
- "Type your time format for emails and the booking table. %sDocumentation on time formatting%s"
2818
- msgstr ""
2819
- "Увядзіце Ваш фармат даты для електронной пошты і табліцы бранявання. %s Дакументацыя па фармаце "
2820
- "для дат%s "
2821
-
2822
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1695
2823
- #, fuzzy, php-format
2824
- msgid "Select a %sFIXED%s number of days with %s1 mouse click%s"
2825
- msgstr "Вылучэнне фиксированого колькасці дзён 1-ім клікам мышкі"
2826
-
2827
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1703
2828
- #, fuzzy, php-format
2829
- msgid "Select a %sDYNAMIC%s range of days with %s2 mouse clicks%s"
2830
- msgstr "Вылучэнне дынамічнай колькасці дзён у 2 зграя мышкі"
2831
-
2832
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1711
2833
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1777
2834
- #, fuzzy
2835
- msgid "Days selection number"
2836
- msgstr "днеи"
2837
-
2838
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1718
2839
- #, php-format
2840
- msgid "Type your %snumber of days for range selection%s"
2841
- msgstr "Увядзіце Ваш %sфиксированый дыяпазон дзён для вылучэння%s"
2842
-
2843
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1725
2844
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1813
2845
- msgid "Start day of range"
2846
- msgstr "Дзень пачатку дыяпазону"
2847
-
2848
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1734
2849
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1822
2850
- msgid "Any day of week"
2851
- msgstr "Любы дзень тыдня"
2852
-
2853
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1745
2854
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1833
2855
- #, fuzzy
2856
- msgid "Specific day(s) of week"
2857
- msgstr "Абярыце дзень пачатку тыдня"
2858
-
2859
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1767
2860
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1869
2861
- msgid "Select your start day of range selection at week"
2862
- msgstr "Абярыце дзень тыдня, які будзе пачаткам вылучэння дыяпазону дат"
2863
-
2864
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1779
2865
- #, fuzzy
2866
- msgid "Min"
2867
- msgstr "Пн"
2868
-
2869
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1793
2870
- #, fuzzy, php-format
2871
- msgid "Select your %sminimum and maximum number of days for range selection%s"
2872
- msgstr "Увядзіце %sминимальное колькасць дзён для вылучэння%s"
2873
-
2874
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1799
2875
- #, fuzzy
2876
- msgid "Specific days selections"
2877
- msgstr "Дні тыдня "
2878
-
2879
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1803
2880
- #, php-format
2881
- msgid ""
2882
- "Type your %sspecific%s days, which can be selected by visitors, or leave this value empty. It "
2883
- "can be several days separated by comma (example: %s) or by dash (example: %s, its the same like "
2884
- "this: %s) or combination (example:%s, its the same like this: %s)"
2885
- msgstr ""
2886
-
2887
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1912
2888
- msgid "Use time selections as recurrent time slots"
2889
- msgstr ""
2890
-
2891
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1923
2892
- msgid ""
2893
- "Check this box if you want to use recurrent time to reserve several days. This means that middle "
2894
- "days will be partially booked by actual times, otherwise the time in the booking form will be "
2895
- "used as check-in/check-out time for the first and last day of the reservation."
2896
- msgstr ""
2897
-
2898
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1930
2899
- #, fuzzy
2900
- msgid "Use check in/out time"
2901
- msgstr "Выкарыстоўваць фиксированое час"
2902
-
2903
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1937
2904
- msgid "This option will overwrite any times selection in your booking form."
2905
- msgstr ""
2906
-
2907
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1942
2908
- msgid "Check this option, to use check in/out time during booking process. "
2909
- msgstr ""
2910
-
2911
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1945
2912
- #, php-format
2913
- msgid "%s Important!%s This will overwrite any times selection in your booking form."
2914
- msgstr ""
2915
-
2916
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1954
2917
- #, fuzzy
2918
- msgid "Check-in time"
2919
- msgstr "Фармат даты"
2920
-
2921
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1954
2922
- #, php-format
2923
- msgid "%sstart booking time%s"
2924
- msgstr "%sвведите час пачатку бранявання%s"
2925
-
2926
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1956
2927
- #, fuzzy, php-format
2928
- msgid "Type your %sCheck-in%s time of booking"
2929
- msgstr "Увядзіце %sвремя%s для апошняга дня з некалькіх дзён бранявання"
2930
-
2931
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1961
2932
- #, fuzzy
2933
- msgid "Check-Out time"
2934
- msgstr "Фармат даты"
2935
-
2936
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1961
2937
- #, php-format
2938
- msgid "%send booking time%s"
2939
- msgstr "%sвремя канчаткі бранявання%s"
2940
-
2941
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1963
2942
- #, fuzzy, php-format
2943
- msgid "Type your %sCheck-Out%s time of booking"
2944
- msgstr "Увядзіце %sвремя%s для апошняга дня з некалькіх дзён бранявання"
2945
-
2946
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1997
2947
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:50
2948
- #, fuzzy
2949
- msgid "Costs"
2950
- msgstr "Кошт"
2951
-
2952
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2002
2953
- #, fuzzy
2954
- msgid "Set the cost"
2955
- msgstr "Фінальны кошт"
2956
-
2957
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2007
2958
- #, fuzzy
2959
- msgid "fixed sum"
2960
- msgstr "фіксаваны ўнёсак"
2961
-
2962
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2010
2963
- #, fuzzy
2964
- msgid " Select your cost configuration."
2965
- msgstr "Абярыце дзень пачатку тыдня"
2966
-
2967
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2015
2968
- #, fuzzy
2969
- msgid "Currency format"
2970
- msgstr "Фармат даты"
2971
-
2972
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2018
2973
- #, fuzzy
2974
- msgid "Number of decimal points"
2975
- msgstr "Увядзіце колькасць месяцаў паказваных у календары."
2976
-
2977
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2025
2978
- msgid "Separator for the decimal point"
2979
- msgstr ""
2980
-
2981
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2029
2982
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2043
2983
- msgid "No separator"
2984
- msgstr ""
2985
-
2986
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2030
2987
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2044
2988
- msgid "Space"
2989
- msgstr ""
2990
-
2991
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2031
2992
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2045
2993
- #, fuzzy
2994
- msgid "Dot"
2995
- msgstr "фіксаваны ўнёсак"
2996
-
2997
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2032
2998
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2046
2999
- msgid "Comma"
3000
- msgstr ""
3001
-
3002
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2039
3003
- msgid "Thousands separator"
3004
- msgstr ""
3005
-
3006
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2057
3007
- #, fuzzy
3008
- msgid "Time impact to cost"
3009
- msgstr "Кошт"
3010
-
3011
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2062
3012
- #, fuzzy, php-format
3013
- msgid ""
3014
- "Check this box if you want the %stime selection%s on the booking form %sapplied to the cost "
3015
- "calculation%s."
3016
- msgstr "Вылучыце гэты чекбокс для паказу кошту дня ў якая сплывае падказцы"
3017
-
3018
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2071
3019
- #, fuzzy
3020
- msgid "Show booking details in payment form"
3021
- msgstr "Апісанне плацяжоў"
3022
-
3023
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2077
3024
- #, fuzzy, php-format
3025
- msgid ""
3026
- " Check this checkbox if you want to show the %sbooking details summary%s above the payment form"
3027
- msgstr "Вылучыце гэты чекбокс для паказу кошту дня ў якая сплывае падказцы"
3028
-
3029
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2122
3030
- #, fuzzy
3031
- msgid "Auto cancellation / auto approval of bookings"
3032
- msgstr "Электронная пошта наведвальніку пасля пацверджання брані"
3033
-
3034
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2128
3035
- #, fuzzy
3036
- msgid "Auto approve all new bookings"
3037
- msgstr "Электронная пошта наведвальніку пасля пацверджання брані"
3038
-
3039
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2137
3040
- #, fuzzy, php-format
3041
- msgid "Check this checkbox to %sactivate%s auto approve of all new pending bookings."
3042
- msgstr "Вылучыце, калі Вы жадаеце выкарыстоўваць аплату пры дапамозе Paypal."
3043
-
3044
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2144
3045
- #, fuzzy
3046
- msgid "Auto-cancel bookings"
3047
- msgstr "Браняванне"
3048
-
3049
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2154
3050
- #, fuzzy, php-format
3051
- msgid "Check this box to %sactivate%s auto-cancellation for pending, unpaid bookings."
3052
- msgstr "Вылучыце, калі Вы жадаеце выкарыстоўваць аплату пры дапамозе Paypal."
3053
-
3054
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2165
3055
- #, fuzzy
3056
- msgid "Cancel bookings older"
3057
- msgstr "Браняванне"
3058
-
3059
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2170
3060
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:799
3061
- #, fuzzy
3062
- msgid "hour"
3063
- msgstr "за 1 гадзіна"
3064
-
3065
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2173
3066
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:617
3067
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:681
3068
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:802
3069
- #, fuzzy
3070
- msgid "hours"
3071
- msgstr "Чацвер"
3072
-
3073
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2183
3074
- msgid "Cancel only pending, unpaid bookings, which are older than this selection."
3075
- msgstr ""
3076
-
3077
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2188
3078
- #, fuzzy
3079
- msgid "Cancellation email sent"
3080
- msgstr "Чыннік адмовы"
3081
-
3082
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2193
3083
- #, php-format
3084
- msgid "Check this box to %ssend%s cancellation email for this resource."
3085
- msgstr ""
3086
-
3087
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2205
3088
- #, fuzzy
3089
- msgid "Reason for cancellation"
3090
- msgstr "Чыннік адмовы"
3091
-
3092
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2207
3093
- #, php-format
3094
- msgid "Type the reason for %scancellation%s for the email template."
3095
- msgstr ""
3096
-
3097
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2252
3098
- msgid ""
3099
- "Customization of billing fields, which automatically assign from booking form to billing form"
3100
- msgstr ""
3101
-
3102
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2253
3103
- #, fuzzy
3104
- msgid "Billing form fields"
3105
- msgstr "Палі формы"
3106
-
3107
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2279
3108
- #, fuzzy
3109
- msgid "Booked Times:"
3110
- msgstr "Забранявана "
3111
-
3112
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2302
3113
- msgid ""
3114
- "This booking canceled because we did not receive payment and the administrator did not approve "
3115
- "it."
3116
- msgstr ""
3117
-
3118
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2321
3119
- #, fuzzy
3120
- msgid "You need to make payment for this reservation"
3121
- msgstr "Сезонныя змены коштаў"
3122
-
3123
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2323
3124
- #, fuzzy, php-format
3125
- msgid ""
3126
- "You need to make payment %s for reservation %s at %s. %s Please make payment on this page: %s "
3127
- "Thank you, %s"
3128
- msgstr ""
3129
- "Напрыклад: \" Ваша бронь %s на даты: %s была адменена. %s Дзякуй за карыстанне сэрвісам "
3130
- "бранявання.\""
3131
-
3132
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2427
3133
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1434
3134
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4159
3135
- #, fuzzy
3136
- msgid "Apartment#1"
3137
- msgstr "за 1 ноч"
3138
-
3139
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2428
3140
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1435
3141
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4160
3142
- #, fuzzy
3143
- msgid "Apartment#2"
3144
- msgstr "Апартаменты №2"
3145
-
3146
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2429
3147
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4161
3148
- #, fuzzy
3149
- msgid "Apartment#3"
3150
- msgstr "Апартаменты №3"
3151
-
3152
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-button.php:73
3153
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:394
3154
- #, fuzzy
3155
- msgid "Label"
3156
- msgstr "Емейл"
3157
-
3158
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-button.php:73
3159
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-checkbox.php:128
3160
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-checkbox.php:164
3161
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-radio.php:85
3162
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-select.php:78
3163
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-select.php:129
3164
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-text.php:194
3165
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-text.php:211
3166
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-text.php:228
3167
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-text.php:247
3168
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-text.php:264
3169
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-text.php:281
3170
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-textarea.php:94
3171
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-textarea.php:111
3172
- #, fuzzy
3173
- msgid "optional"
3174
- msgstr "Функцыі "
3175
-
3176
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-checkbox.php:90
3177
- #, php-format
3178
- msgid "Wrap each item with %s tag"
3179
- msgstr ""
3180
-
3181
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-checkbox.php:104
3182
- msgid "Put a label before field"
3183
- msgstr ""
3184
-
3185
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-checkbox.php:118
3186
- #, fuzzy, php-format
3187
- msgid "Make it %sexclusive%s"
3188
- msgstr "Прыклад: %s "
3189
-
3190
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-checkbox.php:128
3191
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-radio.php:85
3192
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-select.php:78
3193
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-text.php:194
3194
- #, fuzzy
3195
- msgid "Default value"
3196
- msgstr "Па змаўчанні"
3197
-
3198
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-checkbox.php:136
3199
- #, php-format
3200
- msgid "One Value from %sOptions%s list or term %s for selection of all checkboxes"
3201
- msgstr ""
3202
-
3203
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-checkbox.php:146
3204
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-select.php:111
3205
- #, fuzzy
3206
- msgid "Options"
3207
- msgstr "Функцыі "
3208
-
3209
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-checkbox.php:146
3210
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-select.php:111
3211
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-text.php:177
3212
- #, fuzzy
3213
- msgid "required"
3214
- msgstr "Імя (абавязковае поле)"
3215
-
3216
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-checkbox.php:154
3217
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-select.php:119
3218
- msgid "One option per line"
3219
- msgstr ""
3220
-
3221
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-checkbox.php:164
3222
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-select.php:129
3223
- msgid "Titles of options"
3224
- msgstr ""
3225
-
3226
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-checkbox.php:172
3227
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-select.php:137
3228
- msgid "One title per line"
3229
- msgstr ""
3230
-
3231
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-radio.php:93
3232
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-select.php:86
3233
- #, php-format
3234
- msgid "One Value from %sOptions%s list"
3235
- msgstr ""
3236
-
3237
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-select.php:101
3238
- #, php-format
3239
- msgid "Allow %smultiple%s selections"
3240
- msgstr ""
3241
-
3242
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-text.php:167
3243
- #, fuzzy, php-format
3244
- msgid "Set as %srequired%s"
3245
- msgstr "%sвведите час пачатку бранявання%s"
3246
-
3247
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-text.php:177
3248
- msgid "Name"
3249
- msgstr "Імя"
3250
-
3251
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-text.php:228
3252
- msgid "Placeholder"
3253
- msgstr ""
3254
-
3255
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-text.php:247
3256
- msgid "Class"
3257
- msgstr ""
3258
-
3259
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-text.php:264
3260
- msgid "Size"
3261
- msgstr ""
3262
-
3263
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-text.php:281
3264
- msgid "Maxlength"
3265
- msgstr ""
3266
-
3267
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-text.php:298
3268
- msgid "Copy and paste this shortcode into the form at left side"
3269
- msgstr ""
3270
-
3271
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-text.php:313
3272
- #, php-format
3273
- msgid "Put this code in %sContent of Booking Fields%s and in %sEmail Templates%s"
3274
- msgstr ""
3275
-
3276
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-textarea.php:94
3277
- msgid "Rows"
3278
- msgstr ""
3279
-
3280
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-textarea.php:111
3281
- msgid "Columns"
3282
- msgstr ""
3283
-
3284
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:86
3285
- #, fuzzy
3286
- msgid "General Information"
3287
- msgstr "Інфармацыя"
3288
-
3289
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:88
3290
- #, fuzzy
3291
- msgid "Shortcodes"
3292
- msgstr "Выкарыстоўвайце гэтыя пазнакі для налады"
3293
-
3294
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:89
3295
- msgid ""
3296
- "You can generate the form fields for your form (at the left side) by selection specific field in "
3297
- "the above selectbox."
3298
- msgstr ""
3299
-
3300
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:90
3301
- #, php-format
3302
- msgid "Please read more about the booking form fields configuration %shere%s."
3303
- msgstr ""
3304
-
3305
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:92
3306
- msgid "HTML"
3307
- msgstr ""
3308
-
3309
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:93
3310
- #, php-format
3311
- msgid ""
3312
- "You can use any %sHTML tags%s in the booking form. Please use the HTML tags carefully. Be sure, "
3313
- "that all \"open\" tags (like %s) are closed (like this %s)."
3314
- msgstr ""
3315
-
3316
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:99
3317
- #, fuzzy
3318
- msgid "Default Form Templates"
3319
- msgstr "Форма"
3320
-
3321
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:100
3322
- #, php-format
3323
- msgid ""
3324
- "You can reset your active form template by selecting default %sform template%s at the top "
3325
- "toolbar. Please select the form template and click on %sReset%s button for resetting only active "
3326
- "form (Booking Form or Content of Booking Fields form). Click on %sBoth%s button if you want to "
3327
- "reset both forms: Booking Form and Content of Booking Fields form."
3328
- msgstr ""
3329
-
3330
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:109
3331
- #, fuzzy
3332
- msgid "Required Fields in Booking Form"
3333
- msgstr "Форма бранявання"
3334
-
3335
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:115
3336
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:38
3337
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:388
3338
- #, fuzzy
3339
- msgid "Calendar"
3340
- msgstr "Уставіць Каляндар для бранявання"
3341
-
3342
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:117
3343
- #, php-format
3344
- msgid "You must to have this shortcode:%s in the form."
3345
- msgstr ""
3346
-
3347
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:119
3348
- msgid ""
3349
- "You can insert several calendars of different resources into the form allowing you to book "
3350
- "several resources during one booking process."
3351
- msgstr ""
3352
-
3353
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:120
3354
- #, fuzzy, php-format
3355
- msgid "Example: %s."
3356
- msgstr "Прыклад: %s "
3357
-
3358
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:121
3359
- #, php-format
3360
- msgid ""
3361
- "where %s – default calendar %s (you can select desired resource of calendar by inserting "
3362
- "shortcode into page)%s"
3363
- msgstr ""
3364
-
3365
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:122
3366
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:123
3367
- #, fuzzy, php-format
3368
- msgid "%s – calendar of booking resource with %s"
3369
- msgstr "%s[bookingname]%s - дадаць назву бранявання,"
3370
-
3371
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:124
3372
- #, php-format
3373
- msgid "Please check more about this feature %shere%s."
3374
- msgstr ""
3375
-
3376
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:126
3377
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:197
3378
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:230
3379
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:278
3380
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:291
3381
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:305
3382
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:343
3383
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:382
3384
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:515
3385
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:644
3386
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:658
3387
- #, fuzzy, php-format
3388
- msgid "You can %suse this shortcode only once%s in the form."
3389
- msgstr "%s Выкарыстоўвайце гэтыя пазнакі для дадання палёў у форму:%s "
3390
-
3391
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:135
3392
- #, fuzzy
3393
- msgid "Email Field"
3394
- msgstr "Некоректно ўведзены емейл"
3395
-
3396
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:136
3397
- #, fuzzy, php-format
3398
- msgid "You must have this shortcode:%s in the booking form."
3399
- msgstr "%s Выкарыстоўвайце гэтыя пазнакі для дадання палёў у форму:%s "
3400
-
3401
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:136
3402
- msgid "This is the primary email field, which is used for sending emails to visitors."
3403
- msgstr ""
3404
-
3405
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:141
3406
- #, fuzzy
3407
- msgid "Standard Fields"
3408
- msgstr "Стандарт "
3409
-
3410
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:147
3411
- #, fuzzy
3412
- msgid "Text"
3413
- msgstr "Паказаць даведкавае поле для ўводу"
3414
-
3415
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:156
3416
- msgid "Textarea"
3417
- msgstr ""
3418
-
3419
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:163
3420
- msgid "Drop Down"
3421
- msgstr ""
3422
-
3423
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:175
3424
- msgid "Checkbox(es)"
3425
- msgstr ""
3426
-
3427
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:182
3428
- #, fuzzy
3429
- msgid "Radio Button(s)"
3430
- msgstr "%sвведите час пачатку бранявання%s"
3431
-
3432
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:194
3433
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:585
3434
- msgid "CAPTCHA"
3435
- msgstr "CAPTCHA"
3436
-
3437
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:196
3438
- #, php-format
3439
- msgid "Insert %s shortcode to prevent SPAM bookings."
3440
- msgstr ""
3441
-
3442
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:206
3443
- #, fuzzy
3444
- msgid "Submit Button"
3445
- msgstr "%s - кнопка для адпраўкі"
3446
-
3447
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:214
3448
- #, fuzzy
3449
- msgid "Times Fields"
3450
- msgstr "Палі формы"
3451
-
3452
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:220
3453
- #, fuzzy
3454
- msgid "Time Slot List"
3455
- msgstr "Фармат даты"
3456
-
3457
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:222
3458
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:302
3459
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:340
3460
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:379
3461
- #, php-format
3462
- msgid "Select the %s using the predefined %sTime List%s."
3463
- msgstr ""
3464
-
3465
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:222
3466
- #, fuzzy
3467
- msgid "Time Slot"
3468
- msgstr "Фармат даты"
3469
-
3470
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:223
3471
- #, php-format
3472
- msgid ""
3473
- "Please note, %sthe use of the time shortcode%s. If you select a date with some booked time "
3474
- "slots, this time field will %sdisable booked times slots%s (set them as grayed)."
3475
- msgstr ""
3476
-
3477
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:224
3478
- #, php-format
3479
- msgid "It works only in %ssingle day selection%s mode."
3480
- msgstr ""
3481
-
3482
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:225
3483
- msgid ""
3484
- "Also some early versions of the IE do not support disabling of the options in the selectboxes."
3485
- msgstr ""
3486
-
3487
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:226
3488
- msgid ""
3489
- "Even if visitor selects the booked timeslot, system will not allow them to make the booking."
3490
- msgstr ""
3491
-
3492
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:229
3493
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:342
3494
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:381
3495
- #, php-format
3496
- msgid ""
3497
- "Please note, in the %sOptions list%s you can use times in military time format %s(24 Hour "
3498
- "Time)%s only."
3499
- msgstr ""
3500
-
3501
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:231
3502
- #, php-format
3503
- msgid "If you use this shortcode, %syou can not use any other time shortcodes%s in the form."
3504
- msgstr ""
3505
-
3506
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:273
3507
- #, fuzzy
3508
- msgid "Start Time - Text field"
3509
- msgstr "%s - тэкставае поле"
3510
-
3511
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:275
3512
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:288
3513
- #, fuzzy, php-format
3514
- msgid "Enter %s in text field."
3515
- msgstr "%s - тэкставае поле"
3516
-
3517
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:275
3518
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:292
3519
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:302
3520
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:344
3521
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:383
3522
- #, fuzzy
3523
- msgid "Start Time"
3524
- msgstr "Дзень пачатку дыяпазону"
3525
-
3526
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:277
3527
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:290
3528
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:496
3529
- #, php-format
3530
- msgid "Please note: this field only supports military time format %s(24 Hour Time)%s."
3531
- msgstr ""
3532
-
3533
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:279
3534
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:292
3535
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:306
3536
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:344
3537
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:383
3538
- #, fuzzy, php-format
3539
- msgid "You can also use the %s in the form."
3540
- msgstr "%s Выкарыстоўвайце гэтыя пазнакі для дадання палёў у форму:%s "
3541
-
3542
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:279
3543
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:288
3544
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:306
3545
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:340
3546
- #, fuzzy
3547
- msgid "End Time"
3548
- msgstr "Фармат даты"
3549
-
3550
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:279
3551
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:292
3552
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:306
3553
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:344
3554
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:379
3555
- #, fuzzy
3556
- msgid "Duration Time"
3557
- msgstr "Фармат даты"
3558
-
3559
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:279
3560
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:292
3561
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:306
3562
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:344
3563
- #, fuzzy
3564
- msgid "fields"
3565
- msgstr "Палі формы"
3566
-
3567
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:286
3568
- #, fuzzy
3569
- msgid "End Time - Text field"
3570
- msgstr "%s - тэкставае поле"
3571
-
3572
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:300
3573
- msgid "Start Time - Drop Down list"
3574
- msgstr ""
3575
-
3576
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:304
3577
- #, php-format
3578
- msgid ""
3579
- "Please note, in the %sOptions list%s you can use times in military time format %s(24 Hour "
3580
- "Time)%s only."
3581
- msgstr ""
3582
-
3583
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:338
3584
- msgid "End Time - Drop Down list"
3585
- msgstr ""
3586
-
3587
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:377
3588
- msgid "Duration Time - Drop Down list"
3589
- msgstr ""
3590
-
3591
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:383
3592
- #, fuzzy
3593
- msgid "field"
3594
- msgstr "Некоректно ўведзены емейл"
3595
-
3596
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:416
3597
- #, fuzzy
3598
- msgid "Different time slots, for the different week days"
3599
- msgstr "Выбар фиксированого колькасці дзён"
3600
-
3601
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:419
3602
- msgid ""
3603
- "This feature provides the possibility to use the different time slot selections in the booking "
3604
- "form for the different week days or different days - which are assigned to the specific season "
3605
- "filters. So each week day (day of specific season filter) can have a different time slots list."
3606
- msgstr ""
3607
-
3608
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:421
3609
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:567
3610
- #, fuzzy
3611
- msgid "Configuration"
3612
- msgstr "Выдаленне дадзеных па браняванні"
3613
-
3614
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:422
3615
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:568
3616
- #, php-format
3617
- msgid "The general structure of the configuration %scondition rule%s is as follows"
3618
- msgstr ""
3619
-
3620
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:428
3621
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:449
3622
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:472
3623
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:574
3624
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:595
3625
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:618
3626
- #, fuzzy
3627
- msgid "Parameters"
3628
- msgstr "Параметры:"
3629
-
3630
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:429
3631
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:575
3632
- #, php-format
3633
- msgid ""
3634
- "%sname%s – the unique name of the condition group, containing several conditions with different "
3635
- "values. For example, if you want to have specific HTML content for the different week days, you "
3636
- "can have several conditions, with the same name but with different value parameters in "
3637
- "conditions. Please check more about it, in the examples."
3638
- msgstr ""
3639
-
3640
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:430
3641
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:576
3642
- #, php-format
3643
- msgid ""
3644
- "%stype%s – type of the condition. There are 2 types of condition: \"weekday\" and \"season\". "
3645
- "\"weekday\" – is the condition rule based on the selected day of week value, like Monday, "
3646
- "Tuesday, etc… . \"season\" – is the condition rule based on the \"season filter\" name of "
3647
- "selected date. In other words the condition is TRUE if the selected day belongs to a season "
3648
- "filter in the Season Filters page."
3649
- msgstr ""
3650
-
3651
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:431
3652
- #, php-format
3653
- msgid ""
3654
- "%svalue%s – value of the specific conditions. If the value is true, the content of the "
3655
- "conditions will show in the booking form. You can have the default value (empty – \"\", or like "
3656
- "this – \"*\") for showing the content of this condition, if all other conditions are FALSE, or "
3657
- "at initial stage, when the date in calendar is not yet selected."
3658
- msgstr ""
3659
-
3660
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:433
3661
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:579
3662
- #, fuzzy
3663
- msgid "Examples"
3664
- msgstr "Прыклад: %s "
3665
-
3666
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:434
3667
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:580
3668
- #, fuzzy
3669
- msgid "Week days conditions."
3670
- msgstr "Дні тыдня "
3671
-
3672
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:450
3673
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:596
3674
- msgid "default value, if no dates are selected, or none exist conditions are true."
3675
- msgstr ""
3676
-
3677
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:458
3678
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:475
3679
- msgid "You can use the several values, separated by comma."
3680
- msgstr ""
3681
-
3682
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:460
3683
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:606
3684
- #, fuzzy
3685
- msgid "Season filters conditions."
3686
- msgstr "Высокі сазон"
3687
-
3688
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:473
3689
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:619
3690
- msgid "Season filter on the Season Filters page,"
3691
- msgstr ""
3692
-
3693
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:474
3694
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:620
3695
- #, fuzzy
3696
- msgid "Season filter on the Season Filters page"
3697
- msgstr "Фільтр дат"
3698
-
3699
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:477
3700
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:623
3701
- #, fuzzy
3702
- msgid "Additional info"
3703
- msgstr "Інфа"
3704
-
3705
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:478
3706
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:624
3707
- #, php-format
3708
- msgid ""
3709
- "Please use %sSingle day%s selection mode in the General Booking Settings page at calendar "
3710
- "section."
3711
- msgstr ""
3712
-
3713
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:479
3714
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:625
3715
- #, php-format
3716
- msgid "Please check more about this feature at %sthis page%s"
3717
- msgstr ""
3718
-
3719
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:486
3720
- #, fuzzy
3721
- msgid "Advanced Fields"
3722
- msgstr "Пашыраныя налады"
3723
-
3724
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:493
3725
- #, fuzzy
3726
- msgid "Time Field"
3727
- msgstr "Гэта поле неабходна"
3728
-
3729
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:495
3730
- #, php-format
3731
- msgid "Enter the %sTime%s using the text field."
3732
- msgstr ""
3733
-
3734
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:498
3735
- msgid "This field does not impact to availability (booking for the specific time) ."
3736
- msgstr ""
3737
-
3738
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:499
3739
- msgid "The value of this field is just saved into DB."
3740
- msgstr ""
3741
-
3742
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:509
3743
- #, fuzzy
3744
- msgid "Country List"
3745
- msgstr "Лік дзён"
3746
-
3747
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:511
3748
- msgid "Select the country from the predefined country list."
3749
- msgstr ""
3750
-
3751
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:512
3752
- #, php-format
3753
- msgid "You can customize the country list at this file: %s"
3754
- msgstr ""
3755
-
3756
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:513
3757
- msgid "You can insert this field with default selected value."
3758
- msgstr ""
3759
-
3760
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:514
3761
- #, php-format
3762
- msgid "Example: %s - %s\"United States\"%s is selected by default."
3763
- msgstr ""
3764
-
3765
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:523
3766
- #, fuzzy
3767
- msgid "Language Sections"
3768
- msgstr "у дыяпазоне выбару"
3769
-
3770
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:525
3771
- msgid "Plugin support configurations of the booking form are available in different languages."
3772
- msgstr ""
3773
-
3774
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:526
3775
- msgid "The active language of the booking form depends on the active locale of the site."
3776
- msgstr ""
3777
-
3778
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:527
3779
- msgid ""
3780
- "Booking Calendar supports WPML and qTranslate plugins for dynamic changing of website locale."
3781
- msgstr ""
3782
-
3783
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:529
3784
- msgid "Usage"
3785
- msgstr ""
3786
-
3787
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:530
3788
- #, php-format
3789
- msgid "start new translation section in specific language, where %s - locale of the translation."
3790
- msgstr ""
3791
-
3792
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:532
3793
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:535
3794
- #, fuzzy
3795
- msgid "Example"
3796
- msgstr "Прыклад: %sРезервируйте тут%s"
3797
-
3798
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:533
3799
- #, fuzzy
3800
- msgid "English and French translation"
3801
- msgstr "Прыклад: %s "
3802
-
3803
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:536
3804
- msgid "of configuration booking form in English and French languages"
3805
- msgstr ""
3806
-
3807
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:562
3808
- msgid "Different form fields, for the different week days"
3809
- msgstr ""
3810
-
3811
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:565
3812
- msgid ""
3813
- "This feature provides the possibility to show the different form fields or any other HTML "
3814
- "content in the booking form, depending on the selection of specific week day in calendar or "
3815
- "different days, which are assigned to the specific season filters"
3816
- msgstr ""
3817
-
3818
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:577
3819
- #, php-format
3820
- msgid ""
3821
- "%svalue%s – value of the specific conditions. If the value is true, so then the content of the "
3822
- "conditions will show in the booking form. You can have the default value (empty – \"\", or like "
3823
- "this – \"*\") for showing the content of this condition, if all other conditions are FALSE, or "
3824
- "at initial stage, when the date in calendar is not yet selected."
3825
- msgstr ""
3826
-
3827
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:604
3828
- msgid "You can use several values, separated by comma."
3829
- msgstr ""
3830
-
3831
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:621
3832
- msgid "You can use several values, separated by a comma."
3833
- msgstr ""
3834
-
3835
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:634
3836
- #, fuzzy
3837
- msgid "Cost Fields"
3838
- msgstr "Палі формы"
3839
-
3840
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:640
3841
- #, fuzzy
3842
- msgid "Cost Correction Field"
3843
- msgstr "Гэта поле неабходна"
3844
-
3845
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:642
3846
- #, php-format
3847
- msgid "This field is visible only in Admin Panel at %sAdd booking page%s."
3848
- msgstr ""
3849
-
3850
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:643
3851
- #, php-format
3852
- msgid "Use this field for %scorrecting the cost%s during adding new booking."
3853
- msgstr ""
3854
-
3855
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:654
3856
- #, fuzzy
3857
- msgid "Discount Coupon field"
3858
- msgstr "Некоректно ўведзены емейл"
3859
-
3860
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:656
3861
- msgid "Please use this field for possibility to use coupon discounts by your visitors."
3862
- msgstr ""
3863
-
3864
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:657
3865
- #, fuzzy, php-format
3866
- msgid "You can configure the discount coupon codes at this %spage%s."
3867
- msgstr "Каляндар бранявання для гэтага рэсурсу ўжо існуе на гэтай старонцы"
3868
-
3869
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:666
3870
- #, fuzzy
3871
- msgid "Hints for your form"
3872
- msgstr "Палі формы"
3873
-
3874
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:672
3875
- #, fuzzy
3876
- msgid "Cost Hints"
3877
- msgstr "Фінальны кошт"
3878
-
3879
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:674
3880
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:695
3881
- #, php-format
3882
- msgid ""
3883
- "Insert these shortcodes into form to %sshow info in real time %s(after selection of the dates in "
3884
- "calendar or options in checkboxes or selectboxes)%s."
3885
- msgstr ""
3886
-
3887
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:693
3888
- #, fuzzy
3889
- msgid "Dates and Times Hints"
3890
- msgstr "Выгляд дат"
3891
-
3892
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:697
3893
- #, fuzzy
3894
- msgid "Selected Check In date."
3895
- msgstr "Фармат даты"
3896
-
3897
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:698
3898
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:701
3899
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:704
3900
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:707
3901
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:710
3902
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:713
3903
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:716
3904
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:719
3905
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:722
3906
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:725
3907
- #, fuzzy
3908
- msgid "Example:"
3909
- msgstr "Прыклад: %sРезервируйте тут%s"
3910
-
3911
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:700
3912
- msgid "Selected Check Out date."
3913
- msgstr ""
3914
-
3915
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:703
3916
- #, fuzzy
3917
- msgid "Selected Start Time."
3918
- msgstr "Дзень пачатку дыяпазону"
3919
-
3920
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:706
3921
- #, fuzzy
3922
- msgid "Selected End Time."
3923
- msgstr "Фармат даты"
3924
-
3925
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:709
3926
- #, fuzzy
3927
- msgid "All selected dates."
3928
- msgstr "Выгляд дат"
3929
-
3930
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:712
3931
- msgid "All selected dates with times."
3932
- msgstr ""
3933
-
3934
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:715
3935
- msgid "All selected dates in \"short\" format."
3936
- msgstr ""
3937
-
3938
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:718
3939
- msgid "All selected dates with times in \"short\" format.."
3940
- msgstr ""
3941
-
3942
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:721
3943
- #, fuzzy
3944
- msgid "Number of selected days."
3945
- msgstr "Лік наведвальнікаў"
3946
-
3947
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:724
3948
- #, fuzzy
3949
- msgid "Number of selected nights."
3950
- msgstr "Увядзіце колькасць месяцаў паказваных у календары."
3951
-
3952
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:732
3953
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:168
3954
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:170
3955
- msgid "Other"
3956
- msgstr ""
3957
-
3958
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:738
3959
- msgid "Tips and Tricks"
3960
- msgstr ""
3961
-
3962
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:740
3963
- #, php-format
3964
- msgid "%sEmail verification field%s."
3965
- msgstr ""
3966
-
3967
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:742
3968
- #, fuzzy, php-format
3969
- msgid "%sDescription of usage%s."
3970
- msgstr "%sвведите час пачатку бранявання%s"
3971
-
3972
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:743
3973
- #, php-format
3974
- msgid ""
3975
- "To create verification email, you need to use special CSS class in other email field. This CSS "
3976
- "class must start with this reserved words: %s and then have to go the name of your primary email "
3977
- "field: %s"
3978
- msgstr ""
3979
-
3980
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:744
3981
- #, fuzzy, php-format
3982
- msgid "%sExample%s."
3983
- msgstr "%sвведите час пачатку бранявання%s"
3984
-
3985
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:745
3986
- msgid "confirmation email field of the primary email field"
3987
- msgstr ""
3988
-
3989
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:768
3990
- #, fuzzy
3991
- msgid "Generate Tag"
3992
- msgstr "Чэрвень"
3993
-
3994
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:785
3995
- msgid "Select option to configure or show help info about tags"
3996
- msgstr ""
3997
-
3998
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:244
3999
- #, fuzzy
4000
- msgid "Enter Keyword here"
4001
- msgstr "Чыннік адмовы"
4002
-
4003
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:245
4004
- msgid "Keyword"
4005
- msgstr ""
4006
-
4007
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:255
4008
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:259
4009
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:303
4010
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:308
4011
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:827
4012
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:828
4013
- #, fuzzy
4014
- msgid "Resource"
4015
- msgstr "Дадаць новае браняванне"
4016
-
4017
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:274
4018
- #, fuzzy
4019
- msgid "Print bookings listing"
4020
- msgstr "Браняванне"
4021
-
4022
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:276
4023
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:428
4024
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1139
4025
- #, fuzzy
4026
- msgid "Print"
4027
- msgstr "Аплата"
4028
-
4029
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:277
4030
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:913
4031
- msgid "Export only current page of bookings to CSV format"
4032
- msgstr ""
4033
-
4034
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:279
4035
- #, fuzzy
4036
- msgid "Export"
4037
- msgstr "Супериор "
4038
-
4039
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:280
4040
- msgid "Export All bookings to CSV format"
4041
- msgstr ""
4042
-
4043
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:282
4044
- msgid "Export All"
4045
- msgstr ""
4046
-
4047
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:373
4048
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1250
4049
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1761
4050
- msgid "Labels"
4051
- msgstr ""
4052
-
4053
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:374
4054
- #, fuzzy
4055
- msgid "Data"
4056
- msgstr "Даты"
4057
-
4058
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:391
4059
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:676
4060
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1612
4061
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1503
4062
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1959
4063
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2381
4064
- msgid "Approved"
4065
- msgstr "Пацверджана"
4066
-
4067
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:392
4068
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:147
4069
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:677
4070
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1502
4071
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1958
4072
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:2237
4073
- msgid "Pending"
4074
- msgstr "Якія чакаюць сцвярджэнні"
4075
-
4076
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:414
4077
- #, fuzzy
4078
- msgid "Edit Booking"
4079
- msgstr "рэдагаваць "
4080
-
4081
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:419
4082
- #, fuzzy
4083
- msgid "Edit Note"
4084
- msgstr "рэдагаваць "
4085
-
4086
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:423
4087
- #, fuzzy
4088
- msgid "Change Resource"
4089
- msgstr "Дадаць новае браняванне"
4090
-
4091
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:483
4092
- #, fuzzy
4093
- msgid "Change"
4094
- msgstr "Змены "
4095
-
4096
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:594
4097
- #, fuzzy
4098
- msgid "Clear booking resources selection"
4099
- msgstr "Тып бранявання"
4100
-
4101
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:598
4102
- #, fuzzy
4103
- msgid "Apply booking resources selection"
4104
- msgstr "Тып бранявання"
4105
-
4106
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:629
4107
- msgid ""
4108
- "Please note, its not possible to add new resources, if \"All resources\" option is selected. "
4109
- "Please clear the selection, then add new resources."
4110
- msgstr ""
4111
-
4112
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:709
4113
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1500
4114
- #, fuzzy
4115
- msgid "All resources"
4116
- msgstr "Кошт рэсурсу"
4117
-
4118
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:723
4119
- #, fuzzy
4120
- msgid "Booking resources"
4121
- msgstr "Дадаць рэзерв"
4122
-
4123
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:122
4124
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:145
4125
- #, fuzzy
4126
- msgid "Completed"
4127
- msgstr "Выдалена"
4128
-
4129
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:124
4130
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:149
4131
- msgid "In-Progress"
4132
- msgstr ""
4133
-
4134
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:126
4135
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:505
4136
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1908
4137
- msgid "Unknown"
4138
- msgstr ""
4139
-
4140
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:128
4141
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:171
4142
- #, fuzzy
4143
- msgid "Partially paid"
4144
- msgstr "Часткова забраняваныя"
4145
-
4146
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:129
4147
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:172
4148
- #, fuzzy
4149
- msgid "Cancelled"
4150
- msgstr "Адмена"
4151
-
4152
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:130
4153
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:155
4154
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:231
4155
- #, fuzzy
4156
- msgid "Failed"
4157
- msgstr "Палі формы"
4158
-
4159
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:131
4160
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:158
4161
- msgid "Refunded"
4162
- msgstr ""
4163
-
4164
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:133
4165
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:173
4166
- msgid "Fraud"
4167
- msgstr ""
4168
-
4169
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:140
4170
- #, fuzzy
4171
- msgid "!Paid OK"
4172
- msgstr "Ок"
4173
-
4174
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:141
4175
- msgid "Unknown status"
4176
- msgstr ""
4177
-
4178
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:142
4179
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:230
4180
- msgid "Not Completed"
4181
- msgstr ""
4182
-
4183
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:148
4184
- msgid "Processed"
4185
- msgstr ""
4186
-
4187
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:151
4188
- msgid "Canceled_Reversal"
4189
- msgstr ""
4190
-
4191
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:153
4192
- #, fuzzy
4193
- msgid "Denied"
4194
- msgstr "Выдалена"
4195
-
4196
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:154
4197
- msgid "Expired"
4198
- msgstr ""
4199
-
4200
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:157
4201
- #, fuzzy
4202
- msgid "Partially_Refunded"
4203
- msgstr "Часткова забраняваныя"
4204
-
4205
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:159
4206
- #, fuzzy
4207
- msgid "Reversed"
4208
- msgstr "Забранявана"
4209
-
4210
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:160
4211
- msgid "Voided"
4212
- msgstr ""
4213
-
4214
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:161
4215
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2009
4216
- msgid "Created"
4217
- msgstr ""
4218
-
4219
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:164
4220
- msgid "Not authed"
4221
- msgstr ""
4222
-
4223
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:165
4224
- msgid "Malformed"
4225
- msgstr ""
4226
-
4227
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:166
4228
- msgid "Invalid"
4229
- msgstr ""
4230
-
4231
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:167
4232
- msgid "Abort"
4233
- msgstr ""
4234
-
4235
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:168
4236
- #, fuzzy
4237
- msgid "Rejected"
4238
- msgstr "Выдалена"
4239
-
4240
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:169
4241
- #, fuzzy
4242
- msgid "Error"
4243
- msgstr "Еўра"
4244
-
4245
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:174
4246
- #, fuzzy
4247
- msgid "Suspended"
4248
- msgstr "Адправіць"
4249
-
4250
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:226
4251
- #, fuzzy
4252
- msgid "Any Status"
4253
- msgstr "Любы дзень тыдня"
4254
-
4255
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:228
4256
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:502
4257
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1905
4258
- #, fuzzy
4259
- msgid "Paid OK"
4260
- msgstr "Ок"
4261
-
4262
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:229
4263
- #, fuzzy
4264
- msgid "Unknown Status"
4265
- msgstr "Усталёўкі для бранявання"
4266
-
4267
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:271
4268
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:481
4269
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:483
4270
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:938
4271
- msgid "Payment"
4272
- msgstr "Аплата"
4273
-
4274
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:284
4275
- #, fuzzy
4276
- msgid "Min. cost"
4277
- msgstr "Фінальны кошт"
4278
-
4279
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:289
4280
- #, fuzzy
4281
- msgid "Max. cost"
4282
- msgstr "Фінальны кошт"
4283
-
4284
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:292
4285
- #, fuzzy
4286
- msgid "min"
4287
- msgstr "Пн"
4288
-
4289
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:293
4290
- #, fuzzy
4291
- msgid "max"
4292
- msgstr "Сакавік"
4293
-
4294
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:402
4295
- #, fuzzy
4296
- msgid "Send payment request to visitor"
4297
- msgstr "налада емейла"
4298
-
4299
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:415
4300
- #, fuzzy
4301
- msgid "Payment status"
4302
- msgstr "Апісанне плацяжоў"
4303
-
4304
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:447
4305
- #, fuzzy
4306
- msgid "Save cost"
4307
- msgstr "Захаваць змены"
4308
-
4309
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:470
4310
- #, fuzzy
4311
- msgid "Change status"
4312
- msgstr "Дадаць новае браняванне"
4313
-
4314
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:660
4315
- msgid "Work days"
4316
- msgstr "Працоўныя дні"
4317
-
4318
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:677
4319
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:735
4320
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-booking-new.php:124
4321
- msgid "Updating..."
4322
- msgstr "Захаванне..."
4323
-
4324
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:682
4325
- msgid "User is Activated"
4326
- msgstr ""
4327
-
4328
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:740
4329
- #, fuzzy
4330
- msgid "User is Deactivated"
4331
- msgstr "калі ўбудова дэактываваны"
4332
-
4333
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:852
4334
- #, php-format
4335
- msgid ""
4336
- "%sYou do not have permissions for this page.%s Your account is not active, please contact "
4337
- "administrator.%s"
4338
- msgstr ""
4339
-
4340
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:887
4341
- #, php-format
4342
- msgid "%sYou do not have permissions for this booking resources.%s"
4343
- msgstr ""
4344
-
4345
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:893
4346
- #, fuzzy, php-format
4347
- msgid "%sNo this booking resources.%s"
4348
- msgstr "Прыклад: %sРезервируйте тут%s"
4349
-
4350
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1033
4351
- #, fuzzy
4352
- msgid "Show resources of user:"
4353
- msgstr "Паказаць даведкавае поле для ўводу"
4354
-
4355
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1045
4356
- #, fuzzy
4357
- msgid "My"
4358
- msgstr "Травень"
4359
-
4360
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1064
4361
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:333
4362
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:373
4363
- #, fuzzy
4364
- msgid "Booking resource:"
4365
- msgstr "Тып бранявання"
4366
-
4367
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1096
4368
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1148
4369
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1180
4370
- #, fuzzy
4371
- msgid "Users"
4372
- msgstr "Бразільскі рэал (толькі для бразільскіх карыстачоў)"
4373
-
4374
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1116
4375
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1132
4376
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1249
4377
- #, fuzzy
4378
- msgid "User"
4379
- msgstr "Гады"
4380
-
4381
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1150
4382
- msgid "Management of"
4383
- msgstr ""
4384
-
4385
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1253
4386
- msgid "Set user as"
4387
- msgstr ""
4388
-
4389
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1289
4390
- #, fuzzy, php-format
4391
- msgid "Active %sSuper Admin%s"
4392
- msgstr "Супериор "
4393
-
4394
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1291
4395
- #, fuzzy, php-format
4396
- msgid "Active %sRegular User%s"
4397
- msgstr "Гады"
4398
-
4399
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1294
4400
- msgid "Inactive User"
4401
- msgstr ""
4402
-
4403
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1301
4404
- msgid "Unlimited"
4405
- msgstr ""
4406
-
4407
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1306
4408
- #, fuzzy
4409
- msgid "Activate"
4410
- msgstr "Актыўна"
4411
-
4412
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1307
4413
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1316
4414
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1319
4415
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1322
4416
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1333
4417
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1337
4418
- #, fuzzy
4419
- msgid "Do you really want"
4420
- msgstr "Вы ўпэўнены, што жадаеце выдаліць? "
4421
-
4422
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1307
4423
- #, fuzzy
4424
- msgid "make user active"
4425
- msgstr "Актывацыя Paypal"
4426
-
4427
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1311
4428
- #, fuzzy
4429
- msgid "Deactivate"
4430
- msgstr "Актыўна"
4431
-
4432
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1315
4433
- msgid "Set as inactive"
4434
- msgstr ""
4435
-
4436
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1316
4437
- msgid "make user inactive"
4438
- msgstr ""
4439
-
4440
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1318
4441
- #, fuzzy
4442
- msgid "Delete settings"
4443
- msgstr "Усталёўкі"
4444
-
4445
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1319
4446
- #, fuzzy
4447
- msgid "delete configuration"
4448
- msgstr "Выдаліць"
4449
-
4450
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1321
4451
- #, fuzzy
4452
- msgid "Delete data"
4453
- msgstr "Выдаліць"
4454
-
4455
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1322
4456
- #, fuzzy
4457
- msgid "delete all booking data"
4458
- msgstr "Выдаленне дадзеных па браняванні"
4459
-
4460
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1332
4461
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1333
4462
- #, fuzzy
4463
- msgid "Super Admin"
4464
- msgstr "Адміністрацыйны емейл"
4465
-
4466
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1333
4467
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1337
4468
- msgid "set user as"
4469
- msgstr ""
4470
-
4471
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1336
4472
- #, fuzzy
4473
- msgid "Regular User"
4474
- msgstr "Гады"
4475
-
4476
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1337
4477
- #, fuzzy
4478
- msgid "Regular user"
4479
- msgstr "Гады"
4480
-
4481
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1433
4482
- #, fuzzy
4483
- msgid "Suite"
4484
- msgstr "Президенский нумар "
4485
-
4486
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:29
4487
- msgid "Integration of authorizenet payment system"
4488
- msgstr ""
4489
-
4490
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:103
4491
- #, php-format
4492
- msgid ""
4493
- "If you have no account on this system, please sign up for a %sdeveloper test account%s to obtain "
4494
- "an API Login ID and Transaction Key. These keys will authenticate requests to the payment "
4495
- "gateway."
4496
- msgstr ""
4497
-
4498
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:112
4499
- #, fuzzy, php-format
4500
- msgid " Check this box to use %s payment gateway."
4501
- msgstr "Вылучыце, калі Вы жадаеце выкарыстоўваць аплату пры дапамозе Paypal."
4502
-
4503
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:117
4504
- #, fuzzy
4505
- msgid "API Login ID"
4506
- msgstr "ID"
4507
-
4508
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:121
4509
- #, php-format
4510
- msgid "The merchant API Login ID is provided in the Merchant Interface of %s"
4511
- msgstr ""
4512
-
4513
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:127
4514
- msgid "Transaction Key"
4515
- msgstr ""
4516
-
4517
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:131
4518
- #, php-format
4519
- msgid "This parameter have to assigned to you by %s"
4520
- msgstr ""
4521
-
4522
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:140
4523
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:328
4524
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:146
4525
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:132
4526
- #, fuzzy
4527
- msgid "Chose payment mode"
4528
- msgstr "Апісанне плацяжоў"
4529
-
4530
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:144
4531
- msgid "Developer Test"
4532
- msgstr ""
4533
-
4534
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:145
4535
- #, fuzzy
4536
- msgid "Live Test"
4537
- msgstr "Анлайн дэма "
4538
-
4539
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:146
4540
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:332
4541
- #, fuzzy
4542
- msgid "Live"
4543
- msgstr "Анлайн дэма "
4544
-
4545
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:148
4546
- msgid ""
4547
- "Select \"Live test\" or \"Live\" environment for using Merchant account or \"Developer Test\" "
4548
- "for using Developer account."
4549
- msgstr ""
4550
-
4551
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:150
4552
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:261
4553
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:473
4554
- #, fuzzy
4555
- msgid "Note:"
4556
- msgstr ""
4557
- "%sВажно!!!%s Калі ласка майце на ўвазе, калі каляндар показываеться ў пасце ці на старонцы "
4558
- "сумесна з виджетом, то каляндар у виджете не будзе намаляваны"
4559
-
4560
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:151
4561
- msgid ""
4562
- "Transactions posted against live merchant accounts using either of the above testing methods are "
4563
- "not submitted to financial institutions for authorization and are not stored in the Merchant "
4564
- "Interface."
4565
- msgstr ""
4566
-
4567
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:158
4568
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:341
4569
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:162
4570
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:145
4571
- msgid "Transaction type"
4572
- msgstr ""
4573
-
4574
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:162
4575
- #, fuzzy
4576
- msgid "Authorization and Capture"
4577
- msgstr "налада емейла"
4578
-
4579
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:163
4580
- #, fuzzy
4581
- msgid "Authorization Only"
4582
- msgstr "налада емейла"
4583
-
4584
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:165
4585
- msgid "Select transaction type, which supported by the payment gateway."
4586
- msgstr ""
4587
-
4588
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:172
4589
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:174
4590
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:354
4591
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:174
4592
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:157
4593
- msgid "Accepted Currency"
4594
- msgstr ""
4595
-
4596
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:176
4597
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:178
4598
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:359
4599
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:177
4600
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:160
4601
- msgid "U.S. Dollars"
4602
- msgstr "Даляры ЗША"
4603
-
4604
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:177
4605
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:364
4606
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:182
4607
- msgid "Canadian Dollars"
4608
- msgstr "Канадскія даляры"
4609
-
4610
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:178
4611
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:179
4612
- msgid "Pounds Sterling"
4613
- msgstr "Фунты Стэрлінгаў"
4614
-
4615
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:179
4616
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:360
4617
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:178
4618
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:161
4619
- msgid "Euros"
4620
- msgstr "Еўра"
4621
-
4622
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:181
4623
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:206
4624
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:384
4625
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:201
4626
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:163
4627
- msgid "The currency code that gateway will process the payment in."
4628
- msgstr ""
4629
-
4630
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:181
4631
- msgid ""
4632
- "Setting the currency that is not supported by the payment processor will result in an error."
4633
- msgstr ""
4634
-
4635
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:187
4636
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:211
4637
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:437
4638
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:206
4639
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:168
4640
- #, fuzzy
4641
- msgid "Payment button title"
4642
- msgstr "Аплата"
4643
-
4644
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:191
4645
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:216
4646
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:440
4647
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:209
4648
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:171
4649
- #, fuzzy
4650
- msgid "Enter the title of the payment button"
4651
- msgstr "Увядзіце назву сэрвісу ці чыннік для плацяжоў тут."
4652
-
4653
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:196
4654
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:223
4655
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:449
4656
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:216
4657
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:178
4658
- #, fuzzy
4659
- msgid "Show Payment description"
4660
- msgstr "Апісанне плацяжоў"
4661
-
4662
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:204
4663
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:231
4664
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:457
4665
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:224
4666
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:186
4667
- #, fuzzy
4668
- msgid "Check this box to show payment description in payment form"
4669
- msgstr "Апісанне плацяжоў"
4670
-
4671
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:215
4672
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:242
4673
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:468
4674
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:235
4675
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:197
4676
- msgid "Payment description"
4677
- msgstr "Апісанне плацяжоў"
4678
-
4679
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:218
4680
- msgid ""
4681
- "Format: Up to 255 characters (no symbols). Also, in order to be displayed, the View attribute "
4682
- "must be configured for this field in the Merchant Interface payment form settings."
4683
- msgstr ""
4684
-
4685
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:226
4686
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:253
4687
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:483
4688
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:246
4689
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:208
4690
- #, php-format
4691
- msgid "%s[bookingname]%s - inserting name of booking resource, "
4692
- msgstr "%s[bookingname]%s - дадаць назву бранявання,"
4693
-
4694
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:227
4695
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:254
4696
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:484
4697
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:247
4698
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:209
4699
- #, php-format
4700
- msgid "%s[dates]%s - inserting list of reserved dates "
4701
- msgstr "%s[dates]%s - дадаць спіс забраняваных дат "
4702
-
4703
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:228
4704
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:255
4705
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:485
4706
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:248
4707
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:210
4708
- #, fuzzy, php-format
4709
- msgid "%s[datescount]%s - inserting number of reserved dates "
4710
- msgstr "%s[dates]%s - дадаць спіс забраняваных дат "
4711
-
4712
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:240
4713
- msgid "Activate Relay Response"
4714
- msgstr ""
4715
-
4716
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:249
4717
- msgid ""
4718
- "Indicate to the payment gateway that you would like to receive the transaction response to your "
4719
- "site."
4720
- msgstr ""
4721
-
4722
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:262
4723
- msgid ""
4724
- "You should leave empty the Relay Response URL and Receipt Link URL/Text in the Merchant "
4725
- "Interface, if a Relay Response is activated here."
4726
- msgstr ""
4727
-
4728
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:267
4729
- msgid "MD5 Hash value"
4730
- msgstr ""
4731
-
4732
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:270
4733
- msgid ""
4734
- "Please enter the MD5 Hash value, which you configured in the settings of Merchant Interface."
4735
- msgstr ""
4736
-
4737
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:278
4738
- msgid "To configure MD5 Hash value in Relay Response for your transactions"
4739
- msgstr ""
4740
-
4741
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:281
4742
- msgid "Log on to the Merchant Interface"
4743
- msgstr ""
4744
-
4745
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:282
4746
- msgid "Click Settings under Account in the main menu on the left"
4747
- msgstr ""
4748
-
4749
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:283
4750
- msgid "Click MD5-Hash in the Security Settings section"
4751
- msgstr ""
4752
-
4753
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:284
4754
- msgid "Enter this value"
4755
- msgstr ""
4756
-
4757
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:285
4758
- msgid "Click Submit"
4759
- msgstr ""
4760
-
4761
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:287
4762
- #, php-format
4763
- msgid ""
4764
- "For more information about configuring Relay Response in the Merchant Interface, please see the "
4765
- "%sMerchant Integration Guide%s"
4766
- msgstr ""
4767
-
4768
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:295
4769
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:271
4770
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:262
4771
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:224
4772
- msgid "Return URL after Successful order"
4773
- msgstr ""
4774
-
4775
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:300
4776
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:276
4777
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:267
4778
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:229
4779
- #, fuzzy, php-format
4780
- msgid ""
4781
- "Enter a return relative Successful URL. %s will redirect visitors to this page after Successful "
4782
- "Payment"
4783
- msgstr ""
4784
- "Увядзіце спасылку (старонка падзякі) для вяртання з Paypal-а, наведвальнікі аўтаматычна "
4785
- "перанакіроўвацца на яе пасля ажыццяўлення плацяжу."
4786
-
4787
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:301
4788
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:312
4789
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:277
4790
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:288
4791
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:268
4792
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:279
4793
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:230
4794
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:241
4795
- msgid "Please test this URL, it must be a valid address"
4796
- msgstr ""
4797
-
4798
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:306
4799
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:282
4800
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:273
4801
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:235
4802
- #, fuzzy
4803
- msgid "Return URL after Failed order"
4804
- msgstr "Спасылка для вяртання з Paypal-а"
4805
-
4806
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:311
4807
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:287
4808
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:278
4809
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:240
4810
- #, fuzzy, php-format
4811
- msgid ""
4812
- "Enter a return relative Failed URL. %s will redirect visitors to this page after Failed Payment"
4813
- msgstr ""
4814
- "Увядзіце спасылку (старонка падзякі) для вяртання з Paypal-а, наведвальнікі аўтаматычна "
4815
- "перанакіроўвацца на яе пасля ажыццяўлення плацяжу."
4816
-
4817
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:317
4818
- #, fuzzy
4819
- msgid "Automatically approve booking"
4820
- msgstr "Браняванне"
4821
-
4822
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:325
4823
- msgid "Check this box to automatically approve booking, when visitor makes a successful payment."
4824
- msgstr ""
4825
-
4826
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:327
4827
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:585
4828
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:294
4829
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:256
4830
- msgid "This will not work, if the visitor leaves the payment page."
4831
- msgstr ""
4832
-
4833
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:341
4834
- msgid "Be sure that the merchant server system clock is set to the proper time and time zone."
4835
- msgstr ""
4836
-
4837
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:342
4838
- msgid ""
4839
- "Please configure all fields inside the Billing form fields tab at this page, when using a "
4840
- "European payment processor"
4841
- msgstr ""
4842
-
4843
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:715
4844
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:752
4845
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:975
4846
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:702
4847
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:707
4848
- #, fuzzy, php-format
4849
- msgid "Payment for booking %s on these day(s): %s"
4850
- msgstr "%s[bookingname]%s - дадаць назву бранявання,"
4851
-
4852
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:717
4853
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:747
4854
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:976
4855
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:706
4856
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:711
4857
- msgid "Pay via"
4858
- msgstr ""
4859
-
4860
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:23
4861
- #, fuzzy
4862
- msgid "Integration of Bank Transfer payment system"
4863
- msgstr "Аплата"
4864
-
4865
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:24
4866
- msgid "Bank Transfer"
4867
- msgstr ""
4868
-
4869
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:112
4870
- #, fuzzy
4871
- msgid "Bank Transfer customization"
4872
- msgstr "Выкарыстоўвайце гэтыя пазнакі для налады"
4873
-
4874
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:121
4875
- #, php-format
4876
- msgid "Allow payments by %sdirect bank / wire transfer%s"
4877
- msgstr ""
4878
-
4879
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:127
4880
- #, fuzzy
4881
- msgid "Bank Transfer active"
4882
- msgstr "Актывацыя Paypal"
4883
-
4884
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:134
4885
- #, fuzzy
4886
- msgid "Check this box to use Bank Transfer"
4887
- msgstr "Вылучыце, калі Вы жадаеце выкарыстоўваць аплату пры дапамозе Paypal."
4888
-
4889
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:143
4890
- #, fuzzy
4891
- msgid "Account details"
4892
- msgstr "Апісанне"
4893
-
4894
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:182
4895
- #, fuzzy
4896
- msgid "+ Add Account"
4897
- msgstr "Дадаць рэзерв"
4898
-
4899
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:182
4900
- #, fuzzy
4901
- msgid "Remove selected account(s)"
4902
- msgstr "Прыклад: %sРезервируйте тут%s"
4903
-
4904
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:321
4905
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/pay-cash.php:109
4906
- msgid "Payment method description that the customer will see on your payment page."
4907
- msgstr ""
4908
-
4909
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:356
4910
- msgid "BSB"
4911
- msgstr ""
4912
-
4913
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:357
4914
- #, fuzzy
4915
- msgid "Bank Transit Number"
4916
- msgstr "Увядзіце колькасць месяцаў паказваных у календары."
4917
-
4918
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:358
4919
- msgid "IFSC"
4920
- msgstr ""
4921
-
4922
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:359
4923
- msgid "Branch Sort"
4924
- msgstr ""
4925
-
4926
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:360
4927
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:361
4928
- msgid "Bank Code"
4929
- msgstr ""
4930
-
4931
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:362
4932
- #, fuzzy
4933
- msgid "Routing Number"
4934
- msgstr "Лік наведвальнікаў"
4935
-
4936
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:363
4937
- msgid "Branch Code"
4938
- msgstr ""
4939
-
4940
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:583
4941
- #, fuzzy
4942
- msgid "Sort Code"
4943
- msgstr "Супериор "
4944
-
4945
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:588
4946
- #, php-format
4947
- msgid ""
4948
- "Dear %sMake your payment %s directly into our bank account. %sPlease use your Booking ID %s as "
4949
- "the payment reference! %s %s: %s %s: %s %s: %s %s: %s"
4950
- msgstr ""
4951
-
4952
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:594
4953
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:603
4954
- #, fuzzy
4955
- msgid "Account Number"
4956
- msgstr "Лік наведвальнікаў"
4957
-
4958
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:596
4959
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:606
4960
- msgid "IBAN"
4961
- msgstr ""
4962
-
4963
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:597
4964
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:607
4965
- msgid "BIC / Swift"
4966
- msgstr ""
4967
-
4968
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:602
4969
- #, fuzzy
4970
- msgid "Account Name"
4971
- msgstr "Імя рэсурсу"
4972
-
4973
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:604
4974
- #, fuzzy
4975
- msgid "Bank Name"
4976
- msgstr "Імя рэсурсу"
4977
-
4978
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/index.php:165
4979
- #, fuzzy
4980
- msgid "Dates:"
4981
- msgstr "Даты"
4982
-
4983
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/index.php:166
4984
- #, fuzzy
4985
- msgid "Booking Details:"
4986
- msgstr "Апісанне"
4987
-
4988
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/index.php:185
4989
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2285
4990
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2287
4991
- #, fuzzy
4992
- msgid "You can use following shortcodes in content of this template"
4993
- msgstr "%s Выкарыстоўвайце гэтыя пазнакі для дадання палёў у форму:%s "
4994
-
4995
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/index.php:189
4996
- #, fuzzy, php-format
4997
- msgid "%s - inserting all bank accounts details"
4998
- msgstr "%s - уставіць даты бранявання"
4999
-
5000
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/index.php:192
5001
- #, fuzzy, php-format
5002
- msgid "%s - inserting account name"
5003
- msgstr "%s - дадаць новы радок"
5004
-
5005
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/index.php:195
5006
- #, fuzzy, php-format
5007
- msgid "%s - inserting account number"
5008
- msgstr "%s - дадаць новы радок"
5009
-
5010
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/index.php:198
5011
- #, fuzzy, php-format
5012
- msgid "%s - inserting bank name "
5013
- msgstr "%s - дадаць новы радок"
5014
-
5015
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/index.php:201
5016
- #, fuzzy, php-format
5017
- msgid "%s - inserting sort code "
5018
- msgstr "%s - дадаць новы радок"
5019
-
5020
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/index.php:204
5021
- #, fuzzy, php-format
5022
- msgid "%s - inserting IBAN "
5023
- msgstr "%s - дадаць новы радок"
5024
-
5025
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/index.php:207
5026
- #, fuzzy, php-format
5027
- msgid "%s - inserting BIC "
5028
- msgstr "%s - дадаць новы радок"
5029
-
5030
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/index.php:211
5031
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2293
5032
- #, php-format
5033
- msgid ""
5034
- "%s - inserting data info about the booking, which you configured in the content form at Settings "
5035
- "Fields page"
5036
- msgstr ""
5037
-
5038
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/index.php:213
5039
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2295
5040
- #, fuzzy, php-format
5041
- msgid "%s - inserting ID of booking "
5042
- msgstr "%s - дадаць новы радок"
5043
-
5044
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/index.php:215
5045
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2297
5046
- #, fuzzy, php-format
5047
- msgid "%s or %s - inserting the title of the booking resource "
5048
- msgstr "%s[bookingname]%s - дадаць назву бранявання,"
5049
-
5050
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/index.php:217
5051
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2299
5052
- #, fuzzy, php-format
5053
- msgid "%s - inserting the cost of booking "
5054
- msgstr "%s - дадаць новы радок"
5055
-
5056
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/index.php:221
5057
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2303
5058
- #, fuzzy, php-format
5059
- msgid "%s - inserting the dates of booking"
5060
- msgstr "%s - дадаць новы радок"
5061
-
5062
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/index.php:223
5063
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2305
5064
- #, fuzzy, php-format
5065
- msgid "%s - inserting check-in date (first day of reservation),"
5066
- msgstr "%s - уставіць даты бранявання"
5067
-
5068
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/index.php:225
5069
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2307
5070
- #, fuzzy, php-format
5071
- msgid "%s - inserting check-out date (last day of reservation),"
5072
- msgstr "%s - уставіць даты бранявання"
5073
-
5074
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/index.php:227
5075
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2309
5076
- #, fuzzy, php-format
5077
- msgid "%s - inserting the number of booking dates "
5078
- msgstr "%s[dates]%s - дадаць спіс забраняваных дат "
5079
-
5080
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88-backend.php:44
5081
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:591
5082
- #, fuzzy
5083
- msgid "Successful payment"
5084
- msgstr "Апісанне плацяжоў"
5085
-
5086
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88-backend.php:46
5087
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:593
5088
- #, fuzzy
5089
- msgid " Parameters are incorrect,"
5090
- msgstr "Некоректно ўведзены емейл"
5091
-
5092
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88-backend.php:47
5093
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:594
5094
- msgid "Cannot find the record"
5095
- msgstr ""
5096
-
5097
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88-backend.php:48
5098
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:595
5099
- msgid "Amount different"
5100
- msgstr ""
5101
-
5102
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88-backend.php:49
5103
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:596
5104
- #, fuzzy
5105
- msgid "Payment failed"
5106
- msgstr "Апісанне плацяжоў"
5107
-
5108
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88-backend.php:50
5109
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:597
5110
- msgid "Payment status updated by Mobile88 Admin(Fail)"
5111
- msgstr ""
5112
-
5113
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88-backend.php:51
5114
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:598
5115
- msgid "Connection Error"
5116
- msgstr ""
5117
-
5118
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:22
5119
- msgid "Integration of iPay88 payment system"
5120
- msgstr ""
5121
-
5122
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:23
5123
- #, fuzzy
5124
- msgid "iPay88"
5125
- msgstr "Актывацыя Paypal"
5126
-
5127
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:105
5128
- #, fuzzy
5129
- msgid "iPay88 customization"
5130
- msgstr "Налада Paypal"
5131
-
5132
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:113
5133
- #, fuzzy
5134
- msgid "Active iPay88"
5135
- msgstr "Актывацыя Paypal"
5136
-
5137
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:122
5138
- #, fuzzy
5139
- msgid " Check this box to use iPay88 payment system."
5140
- msgstr "Вылучыце, калі Вы жадаеце выкарыстоўваць аплату пры дапамозе Paypal."
5141
-
5142
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:130
5143
- msgid "Merchant Code"
5144
- msgstr ""
5145
-
5146
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:137
5147
- msgid "Enter your iPay88 Merchant Code."
5148
- msgstr ""
5149
-
5150
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:143
5151
- msgid "Merchant Key"
5152
- msgstr ""
5153
-
5154
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:149
5155
- msgid "Enter your iPay88 Merchant Key."
5156
- msgstr ""
5157
-
5158
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:177
5159
- msgid "Malaysian Ringgit"
5160
- msgstr ""
5161
-
5162
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:179
5163
- #, fuzzy
5164
- msgid "Philippines Peso"
5165
- msgstr "Мексіканскі пессо."
5166
-
5167
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:245
5168
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:471
5169
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:238
5170
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:200
5171
- msgid "Enter the service name or the reason for the payment here."
5172
- msgstr "Увядзіце назву сэрвісу ці чыннік для плацяжоў тут."
5173
-
5174
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:295
5175
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:576
5176
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:284
5177
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:246
5178
- #, fuzzy
5179
- msgid "Automatically approve/cancel booking"
5180
- msgstr "Электронная пошта наведвальніку пасля пацверджання брані"
5181
-
5182
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:303
5183
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:292
5184
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:254
5185
- msgid ""
5186
- "Check this box to automatically approve bookings when visitor makes a successful payment, or "
5187
- "automatically cancel the booking when visitor makes a payment cancellation."
5188
- msgstr ""
5189
-
5190
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:316
5191
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:333
5192
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:295
5193
- #, php-format
5194
- msgid ""
5195
- "Please configure %s fields inside the %sBilling form fields%s TAB at this page, this is "
5196
- "necessary for the %s."
5197
- msgstr ""
5198
-
5199
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipn.php:120
5200
- msgid "Error IPN"
5201
- msgstr ""
5202
-
5203
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipn.php:234
5204
- msgid "Verified IPN"
5205
- msgstr ""
5206
-
5207
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipn.php:257
5208
- msgid "Invalid IPN"
5209
- msgstr ""
5210
-
5211
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/pay-cash.php:21
5212
- #, fuzzy
5213
- msgid "Integration of Pay in Cash payment system"
5214
- msgstr "Аплата"
5215
-
5216
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/pay-cash.php:22
5217
- msgid "Pay in Cash"
5218
- msgstr ""
5219
-
5220
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/pay-cash.php:57
5221
- #, fuzzy
5222
- msgid "Pay in Cash customization"
5223
- msgstr "Выкарыстоўвайце гэтыя пазнакі для налады"
5224
-
5225
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/pay-cash.php:66
5226
- #, php-format
5227
- msgid "If you accept %scash payment%s, you can write details about it here"
5228
- msgstr ""
5229
-
5230
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/pay-cash.php:73
5231
- #, fuzzy
5232
- msgid "Pay in Cash active"
5233
- msgstr "Актывацыя Paypal"
5234
-
5235
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/pay-cash.php:81
5236
- #, fuzzy
5237
- msgid "Check this box to use Pay in Cash"
5238
- msgstr "Вылучыце, калі Вы жадаеце выкарыстоўваць аплату пры дапамозе Paypal."
5239
-
5240
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/pay-cash.php:276
5241
- #, php-format
5242
- msgid "Dear %sPay in cash %s for your booking %s on check in %sFor reference your booking ID: %s"
5243
- msgstr ""
5244
-
5245
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:23
5246
- msgid "Integration of Paypal payment system"
5247
- msgstr ""
5248
-
5249
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:24
5250
- #, fuzzy
5251
- msgid "PayPal"
5252
- msgstr "Спасылка для вяртання з Paypal-а"
5253
-
5254
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:141
5255
- msgid "PayPal customization"
5256
- msgstr "Налада Paypal"
5257
-
5258
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:144
5259
- msgid "Configuration of PayPal Standard payment form"
5260
- msgstr ""
5261
-
5262
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:151
5263
- #, fuzzy
5264
- msgid "Paypal Standard"
5265
- msgstr "Стандарт "
5266
-
5267
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:157
5268
- msgid "Configuration of PayPal Pro Hosted Solution payment form"
5269
- msgstr ""
5270
-
5271
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:164
5272
- msgid "Paypal Pro Hosted Solution"
5273
- msgstr ""
5274
-
5275
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:170
5276
- msgid ""
5277
- "Instant Payment Notification (IPN) is a message service that notifies you of events related to "
5278
- "PayPal transactions"
5279
- msgstr ""
5280
-
5281
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:175
5282
- msgid "IPN"
5283
- msgstr ""
5284
-
5285
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:182
5286
- msgid "Sending email for verified transaction"
5287
- msgstr ""
5288
-
5289
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:196
5290
- #, php-format
5291
- msgid "Email for getting report for %sverified%s transactions."
5292
- msgstr ""
5293
-
5294
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:203
5295
- msgid "Sending email for invalid transaction"
5296
- msgstr ""
5297
-
5298
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:216
5299
- #, php-format
5300
- msgid "Email for getting report for %sinvalid%s transactions."
5301
- msgstr ""
5302
-
5303
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:224
5304
- msgid "Sending email if error occur during verification"
5305
- msgstr ""
5306
-
5307
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:237
5308
- #, php-format
5309
- msgid "Email for getting report for %ssome errors in verification process%s."
5310
- msgstr ""
5311
-
5312
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:243
5313
- #, fuzzy
5314
- msgid "Use SSL connection"
5315
- msgstr "Выкарыстоўвайце гэтыя пазнакі для налады"
5316
-
5317
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:248
5318
- msgid "Use the SSL connection for posting data, instead of standard HTTP connection"
5319
- msgstr ""
5320
-
5321
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:254
5322
- #, fuzzy
5323
- msgid "Use cURL posting"
5324
- msgstr "Выкарыстоўвайце гэтыя пазнакі для налады"
5325
-
5326
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:259
5327
- msgid "Use the cURL for posting data, instead of fsockopen() function"
5328
- msgstr ""
5329
-
5330
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:267
5331
- msgid " Follow these instructions to set up your listener at your PayPal account:"
5332
- msgstr ""
5333
-
5334
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:269
5335
- msgid "Click Profile on the My Account tab."
5336
- msgstr ""
5337
-
5338
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:270
5339
- msgid "Click Instant Payment Notification Preferences in the Selling Preferences column."
5340
- msgstr ""
5341
-
5342
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:271
5343
- msgid "Click Choose IPN Settings to specify your listeners URL and activate the listener."
5344
- msgstr ""
5345
-
5346
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:272
5347
- msgid "Specify the URL for your listener in the Notification URL field as:"
5348
- msgstr ""
5349
-
5350
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:273
5351
- msgid "Click Receive IPN messages (Enabled) to enable your listener."
5352
- msgstr ""
5353
-
5354
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:274
5355
- #, fuzzy
5356
- msgid "Click Save."
5357
- msgstr "Захаваць змены"
5358
-
5359
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:275
5360
- msgid "Click Back to Profile Summary to return to the Profile after activating your listener."
5361
- msgstr ""
5362
-
5363
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:286
5364
- msgid "PayPal active"
5365
- msgstr "Актывацыя Paypal"
5366
-
5367
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:293
5368
- #, fuzzy
5369
- msgid "Check this box to use PayPal"
5370
- msgstr "Вылучыце, калі Вы жадаеце выкарыстоўваць аплату пры дапамозе Paypal."
5371
-
5372
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:301
5373
- #, fuzzy
5374
- msgid "Secure Merchant ID"
5375
- msgstr "ID"
5376
-
5377
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:307
5378
- msgid "This is the Secure Merchant ID, which can be found on the profile page"
5379
- msgstr ""
5380
-
5381
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:314
5382
- msgid "Paypal Email address to receive payments"
5383
- msgstr "Электронная пошта Paypal для атрымання плацяжоў"
5384
-
5385
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:319
5386
- #, fuzzy
5387
- msgid "This is the Paypal Email address where payments will be sent"
5388
- msgstr "Электронная пошта Paypal для атрымання плацяжоў"
5389
-
5390
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:333
5391
- msgid "Sandbox"
5392
- msgstr ""
5393
-
5394
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:335
5395
- #, fuzzy
5396
- msgid " Select using test (Sandbox Test Environment) or live PayPal payment."
5397
- msgstr "Вылучыце, калі Вы жадаеце выкарыстоўваць аплату пры дапамозе Paypal."
5398
-
5399
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:345
5400
- #, fuzzy
5401
- msgid "Sale"
5402
- msgstr "Захаваць"
5403
-
5404
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:346
5405
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:148
5406
- #, fuzzy
5407
- msgid "Authorization"
5408
- msgstr "налада емейла"
5409
-
5410
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:348
5411
- msgid ""
5412
- " Indicates whether the transaction is payment on a final sale or an authorization for a final "
5413
- "sale, to be captured later. "
5414
- msgstr ""
5415
-
5416
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:361
5417
- msgid "British Pound"
5418
- msgstr ""
5419
-
5420
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:362
5421
- #, fuzzy
5422
- msgid "Japanese Yen"
5423
- msgstr "Ены"
5424
-
5425
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:363
5426
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:181
5427
- msgid "Australian Dollars"
5428
- msgstr "Аўстралійскія даляры"
5429
-
5430
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:365
5431
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:183
5432
- msgid "New Zealand Dollar"
5433
- msgstr "Новазеландскія даляры"
5434
-
5435
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:366
5436
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:184
5437
- msgid "Swiss Franc"
5438
- msgstr "Швейцарскія франкі"
5439
-
5440
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:367
5441
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:185
5442
- msgid "Hong Kong Dollar"
5443
- msgstr "Гонгконские даляры"
5444
-
5445
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:368
5446
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:186
5447
- msgid "Singapore Dollar"
5448
- msgstr "Сінгапурскія даляры"
5449
-
5450
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:369
5451
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:187
5452
- msgid "Swedish Krona"
5453
- msgstr "Швецкая крона"
5454
-
5455
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:370
5456
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:188
5457
- msgid "Danish Krone"
5458
- msgstr "Дацкая крона"
5459
-
5460
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:371
5461
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:189
5462
- msgid "Polish Zloty"
5463
- msgstr "Польскі злоты"
5464
-
5465
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:372
5466
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:190
5467
- msgid "Norwegian Krone"
5468
- msgstr "Нарвежская крона"
5469
-
5470
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:373
5471
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:191
5472
- msgid "Hungarian Forint"
5473
- msgstr "Вугорскі форынт"
5474
-
5475
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:374
5476
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:192
5477
- msgid "Czech Koruna"
5478
- msgstr "Чэшская крона"
5479
-
5480
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:375
5481
- #, fuzzy
5482
- msgid "Israeli New Shekel"
5483
- msgstr "Ізраільскі шекель"
5484
-
5485
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:376
5486
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:194
5487
- msgid "Mexican Peso"
5488
- msgstr "Мексіканскі пессо."
5489
-
5490
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:377
5491
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:195
5492
- msgid "Brazilian Real (only for Brazilian users)"
5493
- msgstr "Бразільскі рэал (толькі для бразільскіх карыстачоў)"
5494
-
5495
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:378
5496
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:196
5497
- msgid "Malaysian Ringgits (only for Malaysian users)"
5498
- msgstr "Малайзійскі ринггит (толькі для карыстачоў Малайзіі)"
5499
-
5500
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:379
5501
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:197
5502
- msgid "Philippine Pesos"
5503
- msgstr "Филипинский пессо"
5504
-
5505
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:380
5506
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:198
5507
- msgid "Taiwan New Dollars"
5508
- msgstr "Тайванский новы даляр"
5509
-
5510
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:381
5511
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:199
5512
- msgid "Thai Baht"
5513
- msgstr "Тайландскі бат"
5514
-
5515
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:382
5516
- msgid "Turkish Lira (only for Turkish members)"
5517
- msgstr ""
5518
-
5519
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:391
5520
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:395
5521
- #, fuzzy
5522
- msgid "Payment Button type"
5523
- msgstr "Апісанне плацяжоў"
5524
-
5525
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:422
5526
- #, fuzzy
5527
- msgid "Custom button title"
5528
- msgstr "Загаловак"
5529
-
5530
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:474
5531
- msgid "This field support only up to 70 characters by payment system."
5532
- msgstr ""
5533
-
5534
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:481
5535
- msgid " Use these shortcodes for customization: "
5536
- msgstr "Выкарыстоўвайце гэтыя пазнакі для налады"
5537
-
5538
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:497
5539
- msgid "Show Reference Text Box"
5540
- msgstr "Паказаць даведкавае поле для ўводу"
5541
-
5542
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:504
5543
- #, fuzzy
5544
- msgid "Check this box to show Reference Text Box"
5545
- msgstr "Паказаць даведкавае поле для ўводу"
5546
-
5547
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:514
5548
- msgid "Reference Text Box Title"
5549
- msgstr "Дапаможнае тэкставае поле"
5550
-
5551
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:519
5552
- #, fuzzy
5553
- msgid ""
5554
- "Enter a title for the Reference text box (i.e. Your email address). Visitors will see this text."
5555
- msgstr ""
5556
- "Увядзіце загаловак для дапаможнага поля (напрыклад: Электронная пошта). Наведвальнікі ўбачаць "
5557
- "гэты тэкст"
5558
-
5559
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:532
5560
- #, php-format
5561
- msgid "To use this feature you %smust activate auto-return link%s at your Paypal account."
5562
- msgstr ""
5563
-
5564
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:533
5565
- msgid "Follow these steps to configure it:"
5566
- msgstr ""
5567
-
5568
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:535
5569
- msgid "Log in to your PayPal account."
5570
- msgstr ""
5571
-
5572
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:536
5573
- msgid "Click the Profile subtab."
5574
- msgstr ""
5575
-
5576
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:537
5577
- msgid "Click Website Payment Preferences in the Seller Preferences column."
5578
- msgstr ""
5579
-
5580
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:538
5581
- msgid "Under Auto Return for Website Payments, click the On radio button."
5582
- msgstr ""
5583
-
5584
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:539
5585
- msgid "For the Return URL, enter the Return URL from PayPal on your site for successfull payment."
5586
- msgstr ""
5587
-
5588
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:547
5589
- msgid "Return URL from PayPal"
5590
- msgstr "Спасылка для вяртання з Paypal-а"
5591
-
5592
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:554
5593
- msgid "The URL where visitor will be redirected after completing payment."
5594
- msgstr ""
5595
-
5596
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:555
5597
- #, php-format
5598
- msgid "For example, a URL to your site that displays a %s\"Thank you for the payment\"%s."
5599
- msgstr ""
5600
-
5601
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:562
5602
- #, fuzzy
5603
- msgid "Cancel Return URL from PayPal"
5604
- msgstr "Спасылка для вяртання з Paypal-а"
5605
-
5606
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:569
5607
- msgid "The URL where the visitor will be redirected after completing payment."
5608
- msgstr ""
5609
-
5610
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:570
5611
- #, php-format
5612
- msgid "For example, the URL to your website that displays a %s\"Payment Canceled\"%s page."
5613
- msgstr ""
5614
-
5615
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:583
5616
- msgid ""
5617
- "Check this box to automatically approve bookings, when visitor makes a successful payment, or "
5618
- "automatically cancel the booking, when visitor makes a payment cancellation."
5619
- msgstr ""
5620
-
5621
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:859
5622
- msgid "Make payments with payPal - its fast, free and secure!"
5623
- msgstr "Зрабіце аплату пры дапамозе Paypal - гэта хутка і бяспечна."
5624
-
5625
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:981
5626
- #, fuzzy
5627
- msgid "Enter your phone number"
5628
- msgstr "Увядзіце ваш тэлефон"
5629
-
5630
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:33
5631
- msgid "Integration of Sage payment system"
5632
- msgstr ""
5633
-
5634
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:34
5635
- #, fuzzy
5636
- msgid "Sage"
5637
- msgstr "Захаваць"
5638
-
5639
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:97
5640
- #, fuzzy
5641
- msgid "Sage payment customization"
5642
- msgstr "Аплата"
5643
-
5644
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:99
5645
- #, php-format
5646
- msgid "If you have no account on this system, please visit %s to create one."
5647
- msgstr ""
5648
-
5649
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:106
5650
- #, fuzzy
5651
- msgid "Active Sage Pay"
5652
- msgstr "Актывацыя Paypal"
5653
-
5654
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:113
5655
- #, fuzzy
5656
- msgid " Check this box to use Sage Pay payment."
5657
- msgstr "Вылучыце, калі Вы жадаеце выкарыстоўваць аплату пры дапамозе Paypal."
5658
-
5659
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:122
5660
- #, fuzzy
5661
- msgid "Vendor Name"
5662
- msgstr "Імя рэсурсу"
5663
-
5664
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:126
5665
- msgid "Set this value to the Vendor Name assigned to you by Sage Pay or chosen when you applied."
5666
- msgstr ""
5667
-
5668
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:133
5669
- msgid "XOR Encryption password"
5670
- msgstr ""
5671
-
5672
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:137
5673
- msgid "Set this value to the XOR Encryption password assigned to you by Sage Pay"
5674
- msgstr ""
5675
-
5676
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:153
5677
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:136
5678
- msgid "TEST"
5679
- msgstr ""
5680
-
5681
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:154
5682
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:137
5683
- msgid "LIVE"
5684
- msgstr ""
5685
-
5686
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:156
5687
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:139
5688
- msgid "Select TEST for the Test Server and LIVE in the live environment"
5689
- msgstr ""
5690
-
5691
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:165
5692
- #, fuzzy
5693
- msgid "PAYMENT"
5694
- msgstr "Аплата"
5695
-
5696
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:166
5697
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:149
5698
- msgid "DEFERRED"
5699
- msgstr ""
5700
-
5701
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:167
5702
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:150
5703
- msgid "AUTHENTICATE"
5704
- msgstr ""
5705
-
5706
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:169
5707
- msgid "This can be DEFERRED or AUTHENTICATED if your Sage Pay account supports those payment types"
5708
- msgstr ""
5709
-
5710
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:180
5711
- msgid "Yen"
5712
- msgstr "Ены"
5713
-
5714
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:193
5715
- msgid "Israeli Shekel"
5716
- msgstr "Ізраільскі шекель"
5717
-
5718
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:333
5719
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:295
5720
- msgid "ALL"
5721
- msgstr ""
5722
-
5723
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:567
5724
- #, php-format
5725
- msgid "Pay using %s payment service"
5726
- msgstr ""
5727
-
5728
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:24
5729
- #, fuzzy
5730
- msgid "Integration of Sermepa payment system"
5731
- msgstr "Аплата"
5732
-
5733
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:25
5734
- msgid "Sermepa"
5735
- msgstr ""
5736
-
5737
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:86
5738
- #, fuzzy
5739
- msgid "Sermepa payment customization"
5740
- msgstr "Аплата"
5741
-
5742
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:88
5743
- #, php-format
5744
- msgid ""
5745
- "If you have no account on this system, please visit %s to create one. Simulator account emulates "
5746
- "the Sermepa Pay account as well as a Test and Live account."
5747
- msgstr ""
5748
-
5749
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:92
5750
- #, fuzzy
5751
- msgid "Active Sermepa Pay"
5752
- msgstr "Актывацыя Paypal"
5753
-
5754
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:99
5755
- #, fuzzy
5756
- msgid " Check this box to use Sermepa Pay payment."
5757
- msgstr "Вылучыце, калі Вы жадаеце выкарыстоўваць аплату пры дапамозе Paypal."
5758
-
5759
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:108
5760
- msgid "FUC"
5761
- msgstr ""
5762
-
5763
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:112
5764
- msgid "Set this value to the FUC assigned to you by Sermepa Pay or chosen when you applied."
5765
- msgstr ""
5766
-
5767
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:119
5768
- msgid "Clave"
5769
- msgstr ""
5770
-
5771
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:123
5772
- msgid "Set this value to the Clave assigned to you by Sermepa Pay"
5773
- msgstr ""
5774
-
5775
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:152
5776
- msgid ""
5777
- "This can be DEFERRED or AUTHENTICATED if your Sermepa Pay account supports those payment types"
5778
- msgstr ""
5779
-
5780
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/wpbc-response.php:77
5781
- #, fuzzy
5782
- msgid "Payment rejected"
5783
- msgstr "Апісанне плацяжоў"
5784
-
5785
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:128
5786
- #, fuzzy
5787
- msgid "Form / Calendar"
5788
- msgstr "Каляндар бранявання"
5789
-
5790
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:130
5791
- #, fuzzy
5792
- msgid "Insertion of booking form or availability calendar shortcodes"
5793
- msgstr "Абярыце, што Вы жадаеце паказаць:форму бранявання ці адзін каляндар."
5794
-
5795
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:141
5796
- #, fuzzy
5797
- msgid "Selection of form"
5798
- msgstr "Палі формы"
5799
-
5800
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:143
5801
- #, fuzzy
5802
- msgid "Insertion selection of booking form for specific booking resource"
5803
- msgstr "Памылка пры абнаўленні БД "
5804
-
5805
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:156
5806
- #, fuzzy
5807
- msgid "Insertion search form shortcode"
5808
- msgstr "Інфармацыя"
5809
-
5810
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:181
5811
- #, fuzzy
5812
- msgid "Editing of booking"
5813
- msgstr "Дадаць рэзерв"
5814
-
5815
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:183
5816
- msgid "Insertion system shortcode for booking editing"
5817
- msgstr ""
5818
-
5819
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:202
5820
- #, php-format
5821
- msgid ""
5822
- "Please, read more about the shortcodes %shere%s or JavaScript customization of the specific "
5823
- "shortcodes %shere%s"
5824
- msgstr ""
5825
-
5826
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:212
5827
- #, fuzzy, php-format
5828
- msgid "You can use shortcode %s for showing title of booking resource "
5829
- msgstr "%s[bookingname]%s - дадаць назву бранявання,"
5830
-
5831
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:215
5832
- #, fuzzy, php-format
5833
- msgid "or cost of booking resource %s"
5834
- msgstr "Тып бранявання"
5835
-
5836
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:225
5837
- #, php-format
5838
- msgid ""
5839
- "This shortcode %s is used on a page, where visitors can %smodify%s their own booking(s), %scancel"
5840
- "%s or make %spayment%s after receiving an admin email payment request"
5841
- msgstr ""
5842
-
5843
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:226
5844
- #, php-format
5845
- msgid ""
5846
- "The content of field %sURL to edit bookings%s on the %sgeneral booking settings page%s must link "
5847
- "to this page"
5848
- msgstr ""
5849
-
5850
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:227
5851
- #, php-format
5852
- msgid "Email templates, which use shortcodes: %s, will be linked to this page"
5853
- msgstr ""
5854
-
5855
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:246
5856
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:248
5857
- #, fuzzy
5858
- msgid "Select shortcode to insert"
5859
- msgstr "Уставіць Каляндар для бранявання"
5860
-
5861
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:253
5862
- #, fuzzy
5863
- msgid "Search form"
5864
- msgstr "Палі формы"
5865
-
5866
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:268
5867
- #, php-format
5868
- msgid ""
5869
- "This shortcode %s is using for showing the search results at specific page, if the search form "
5870
- "is submit showing the search results at different page"
5871
- msgstr ""
5872
-
5873
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:278
5874
- #, fuzzy
5875
- msgid "Check this box to show search results on other page"
5876
- msgstr "Абярыце, калі Вы жадаеце паказаць легенду дзён пад календаром "
5877
-
5878
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:284
5879
- #, fuzzy
5880
- msgid "URL of search results:"
5881
- msgstr "Спасылка для вяртання з Paypal-а"
5882
-
5883
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:286
5884
- msgid "Type the URL of search results page."
5885
- msgstr ""
5886
-
5887
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:292
5888
- #, fuzzy
5889
- msgid "Title of Search results:"
5890
- msgstr "Дапаможнае тэкставае поле"
5891
-
5892
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:294
5893
- #, fuzzy
5894
- msgid "Search results:"
5895
- msgstr "Загаловак"
5896
-
5897
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:295
5898
- msgid "Type the title of Search results."
5899
- msgstr ""
5900
-
5901
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:301
5902
- msgid "Nothing Found Message:"
5903
- msgstr ""
5904
-
5905
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:303
5906
- msgid "Nothing Found."
5907
- msgstr ""
5908
-
5909
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:304
5910
- msgid "Type the message, when nothing found."
5911
- msgstr ""
5912
-
5913
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:311
5914
- #, fuzzy
5915
- msgid "Search only for users:"
5916
- msgstr "Бразільскі рэал (толькі для бразільскіх карыстачоў)"
5917
-
5918
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:313
5919
- msgid ""
5920
- "Type IDs of the users (separated by comma \",\") for searching availability only for these "
5921
- "users, or leave it blank for searching for all users."
5922
- msgstr ""
5923
-
5924
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:348
5925
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-booking-select-widget.php:156
5926
- msgid ""
5927
- "Select booking resources, for showing in selectbox. Please use CTRL to select multiple booking "
5928
- "resources."
5929
- msgstr ""
5930
-
5931
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:354
5932
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-booking-select-widget.php:162
5933
- #, fuzzy
5934
- msgid "Preselected resource"
5935
- msgstr "Дадаць новае браняванне"
5936
-
5937
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:356
5938
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-booking-select-widget.php:169
5939
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:516
5940
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:929
5941
- msgid "None"
5942
- msgstr ""
5943
-
5944
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:363
5945
- #, fuzzy
5946
- msgid "Define preselected resource."
5947
- msgstr "Дадаць новае браняванне"
5948
-
5949
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:371
5950
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:393
5951
- msgid "Visible months:"
5952
- msgstr ""
5953
-
5954
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:386
5955
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:408
5956
- msgid "Select number of month to show for calendar."
5957
- msgstr "Увядзіце колькасць месяцаў паказваных у календары."
5958
-
5959
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:395
5960
- #, fuzzy
5961
- msgid "Please select the resource:"
5962
- msgstr "Дадаць новае браняванне"
5963
-
5964
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:396
5965
- msgid "Title near your select box."
5966
- msgstr ""
5967
-
5968
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:402
5969
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-booking-select-widget.php:228
5970
- #, fuzzy
5971
- msgid "First option title"
5972
- msgstr "Загаловак"
5973
-
5974
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:403
5975
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:848
5976
- #, fuzzy
5977
- msgid "Please Select"
5978
- msgstr "Калі ласка, увядзіце кошт"
5979
-
5980
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:404
5981
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-booking-select-widget.php:235
5982
- msgid "First option in dropdown list."
5983
- msgstr ""
5984
-
5985
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:405
5986
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-booking-select-widget.php:237
5987
- msgid "Please leave it empty if you want to skip it."
5988
- msgstr ""
5989
-
5990
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:412
5991
- #, php-format
5992
- msgid ""
5993
- "This shortcode %s is using for selection of the booking form of specific booking resources in "
5994
- "selectbox"
5995
- msgstr ""
5996
-
5997
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:498
5998
- msgid "Saved"
5999
- msgstr "Захавана"
6000
-
6001
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:580
6002
- #, fuzzy
6003
- msgid "This booking resources does not exist"
6004
- msgstr "Тып бранявання"
6005
-
6006
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:599
6007
- msgid "Processing..."
6008
- msgstr ""
6009
-
6010
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:626
6011
- msgid "Generating columns..."
6012
- msgstr ""
6013
-
6014
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:657
6015
- #, fuzzy
6016
- msgid "Exporting booking data..."
6017
- msgstr "Дадаць рэзерв"
6018
-
6019
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:696
6020
- msgid "Generating content of file"
6021
- msgstr ""
6022
-
6023
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:738
6024
- #, fuzzy
6025
- msgid "Saving to file"
6026
- msgstr "у календары"
6027
-
6028
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:755
6029
- #, fuzzy
6030
- msgid "Export bookings"
6031
- msgstr "Браняванне"
6032
-
6033
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:758
6034
- msgid "Download the CSV file of exported booking data"
6035
- msgstr ""
6036
-
6037
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:766
6038
- msgid "Download"
6039
- msgstr ""
6040
-
6041
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:776
6042
- #, fuzzy
6043
- msgid "Done!"
6044
- msgstr "Тэлефон"
6045
-
6046
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1022
6047
- #, fuzzy
6048
- msgid "link"
6049
- msgstr "Спасылкі"
6050
-
6051
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1143
6052
- #, fuzzy
6053
- msgid "Print bookings"
6054
- msgstr "Браняванне"
6055
-
6056
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1164
6057
- #, fuzzy
6058
- msgid "The booking was canceled by the visitor."
6059
- msgstr "Дадаць рэзерв"
6060
-
6061
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1178
6062
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1189
6063
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1668
6064
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1715
6065
- msgid "Wrong booking hash in URL (probably expired)"
6066
- msgstr ""
6067
-
6068
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1217
6069
- #, fuzzy
6070
- msgid "The booking has been canceled successfully"
6071
- msgstr "Ваша бронь была зменена"
6072
-
6073
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1356
6074
- #, fuzzy
6075
- msgid "Add New Booking Resource(s)"
6076
- msgstr "Дадаць новае браняванне"
6077
-
6078
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1361
6079
- #, fuzzy
6080
- msgid "New Resource"
6081
- msgstr "Дадаць новае браняванне"
6082
-
6083
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1365
6084
- #, fuzzy
6085
- msgid "Enter title here"
6086
- msgstr "Загаловак"
6087
-
6088
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1367
6089
- #, fuzzy
6090
- msgid "Enter name of booking resource"
6091
- msgstr "Імя рэсурсу"
6092
-
6093
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1376
6094
- #, fuzzy
6095
- msgid "Advanced Options"
6096
- msgstr "Пашыраныя налады"
6097
-
6098
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1377
6099
- #, fuzzy
6100
- msgid "Add new resource(s)"
6101
- msgstr "Дадаць новае браняванне"
6102
-
6103
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1493
6104
- #, fuzzy
6105
- msgid "Default booking resource"
6106
- msgstr "Дадаць новае браняванне"
6107
-
6108
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1509
6109
- #, fuzzy
6110
- msgid "Select your default booking resource."
6111
- msgstr "Сезонныя змены коштаў"
6112
-
6113
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1513
6114
- #, fuzzy
6115
- msgid "Resources number per page"
6116
- msgstr "Тып бранявання"
6117
-
6118
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1522
6119
- #, fuzzy
6120
- msgid "Select number of booking resources (single or parent) per page at Resource menu page"
6121
- msgstr "Імя аб'ектаў з рэсурсу"
6122
-
6123
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1536
6124
- #, fuzzy
6125
- msgid "URL to edit bookings"
6126
- msgstr "Браняванне"
6127
-
6128
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1538
6129
- #, fuzzy, php-format
6130
- msgid "Type URL for %svisitors%s to edit bookings. You must insert %s shortcode into this page."
6131
- msgstr "Увядзіце Вашу тэму ліста для %sпроверки браняванні%s"
6132
-
6133
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1556
6134
- #, fuzzy
6135
- msgid "Change hash after the booking is approved"
6136
- msgstr "Электронная пошта наведвальніку пасля пацверджання брані"
6137
-
6138
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1562
6139
- msgid ""
6140
- "Check this box if you want to change the booking hash after approval. When checked, visitor will "
6141
- "not be able to edit or cancel the booking."
6142
- msgstr ""
6143
-
6144
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1574
6145
- msgid "Configuration in several languages"
6146
- msgstr ""
6147
-
6148
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1575
6149
- #, php-format
6150
- msgid "%s - start new translation section, where %s - locale of translation"
6151
- msgstr ""
6152
-
6153
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1576
6154
- #, fuzzy, php-format
6155
- msgid "Example #1: %s - start French translation section"
6156
- msgstr "Прыклад: %s "
6157
-
6158
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1577
6159
- #, php-format
6160
- msgid "Example #2: \"%s\" - English and French translation of some message"
6161
- msgstr ""
6162
-
6163
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1593
6164
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2362
6165
- msgid "Customization of email template, which is sending to Admin after new booking"
6166
- msgstr ""
6167
-
6168
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1594
6169
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2363
6170
- #, fuzzy
6171
- msgid "New for Admin"
6172
- msgstr "Адміністрацыйны емейл"
6173
-
6174
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1602
6175
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2371
6176
- msgid "Customization of email template, which is sending to Visitor after new booking"
6177
- msgstr ""
6178
-
6179
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1603
6180
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2372
6181
- #, fuzzy
6182
- msgid "New for Visitor"
6183
- msgstr "Новазеландскія даляры"
6184
-
6185
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1611
6186
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2380
6187
- #, fuzzy
6188
- msgid "Customization of email template, which is sending to Visitor after approval of booking"
6189
- msgstr "Ліст наведвальніку пасля рэдагавання брані."
6190
-
6191
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1620
6192
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2389
6193
- msgid "Customization of email template, which is sending to Visitor after Cancellation of booking"
6194
- msgstr ""
6195
-
6196
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1621
6197
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2390
6198
- #, fuzzy
6199
- msgid "Declined"
6200
- msgstr "Выдалена"
6201
-
6202
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1629
6203
- #, fuzzy
6204
- msgid "Customization of email template, which is sending after modification of booking"
6205
- msgstr "Ліст наведвальніку пасля рэдагавання брані."
6206
-
6207
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1630
6208
- msgid "Modified"
6209
- msgstr ""
6210
-
6211
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1639
6212
- msgid "Customization of email template, which is sending to Visitor after payment request"
6213
- msgstr ""
6214
-
6215
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1640
6216
- #, fuzzy
6217
- msgid "Payment request"
6218
- msgstr "Апісанне плацяжоў"
6219
-
6220
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1694
6221
- #, fuzzy
6222
- msgid "Standard Form Template"
6223
- msgstr "Форма"
6224
-
6225
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1695
6226
- #, fuzzy
6227
- msgid "2 Columns Form Template"
6228
- msgstr "Колькасць календароў"
6229
-
6230
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1696
6231
- msgid "Wizard Form Template(several steps)"
6232
- msgstr ""
6233
-
6234
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1698
6235
- #, fuzzy
6236
- msgid "Payment Form Template"
6237
- msgstr "Форма"
6238
-
6239
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1699
6240
- #, fuzzy
6241
- msgid "Time Slots Form Template"
6242
- msgstr "Фармат даты"
6243
-
6244
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1701
6245
- msgid "Time slots for different weekends Form Template"
6246
- msgstr ""
6247
-
6248
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1702
6249
- #, fuzzy
6250
- msgid "Hints Form Template"
6251
- msgstr "Палі формы"
6252
-
6253
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1715
6254
- #, fuzzy
6255
- msgid "Reset Booking Form and Content of Booking Fields Form"
6256
- msgstr "Кошты бранявання"
6257
-
6258
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1719
6259
- msgid "Both"
6260
- msgstr ""
6261
-
6262
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1731
6263
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4002
6264
- msgid "Please configure the form for content of booking fields data!"
6265
- msgstr ""
6266
-
6267
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1739
6268
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4010
6269
- #, fuzzy
6270
- msgid "Please configure the form fields!"
6271
- msgstr "Палі формы"
6272
-
6273
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1772
6274
- #, fuzzy
6275
- msgid "Default title of bookings"
6276
- msgstr "Па змаўчанні"
6277
-
6278
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1774
6279
- #, php-format
6280
- msgid ""
6281
- "Type %sdefault title of bookings%s in calendar view mode at Booking Listing page (You can use "
6282
- "the shortcodes from the bottom form of Settings Fields page)."
6283
- msgstr ""
6284
-
6285
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1791
6286
- msgid "CSV data separator"
6287
- msgstr ""
6288
-
6289
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1796
6290
- msgid "semicolon"
6291
- msgstr ""
6292
-
6293
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1797
6294
- msgid "comma"
6295
- msgstr ""
6296
-
6297
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1803
6298
- msgid "Select separator of data for export bookings to CSV."
6299
- msgstr ""
6300
-
6301
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1816
6302
- #, fuzzy
6303
- msgid "Incorrect date format"
6304
- msgstr "Фармат даты"
6305
-
6306
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:2072
6307
- #, fuzzy
6308
- msgid "Booking Resource"
6309
- msgstr "Тып бранявання"
6310
-
6311
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:2082
6312
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1532
6313
- #, fuzzy
6314
- msgid "All bookings"
6315
- msgstr "Браняванне"
6316
-
6317
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:2086
6318
- #, fuzzy
6319
- msgid "All incoming bookings"
6320
- msgstr "Браняванне"
6321
-
6322
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:2091
6323
- #, fuzzy
6324
- msgid "New reservations made today"
6325
- msgstr "Новае браняванне"
6326
-
6327
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:2096
6328
- #, fuzzy
6329
- msgid "Reservations for today"
6330
- msgstr "Інфармацыя"
6331
-
6332
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:2118
6333
- msgid "Add new booking resource"
6334
- msgstr "Дадаць новае браняванне"
6335
-
6336
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:2921
6337
- #, fuzzy
6338
- msgid "Change your Booking"
6339
- msgstr "Увядзіце Ваш надпіс для %sдоступности%s "
6340
-
6341
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:2923
6342
- #, fuzzy
6343
- msgid "Cancel Booking"
6344
- msgstr "Адмена"
6345
-
6346
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3151
6347
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3199
6348
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-booking-new.php:148
6349
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-booking-new.php:150
6350
- msgid "Updated successfully"
6351
- msgstr "Абноўлена паспяхова"
6352
-
6353
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3165
6354
- msgid "Warning! The resource was not changed. Current dates are already booked there."
6355
- msgstr ""
6356
-
6357
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3434
6358
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1932
6359
- #, fuzzy
6360
- msgid "Email to \"Admin\" after a new booking"
6361
- msgstr "Электронная ліст для \"Адміністратара\" пасля бранявання на сайце"
6362
-
6363
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3456
6364
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1954
6365
- #, fuzzy, php-format
6366
- msgid "Type default %sadmin email%s for booking confirmation"
6367
- msgstr "Увядзіце %s еў. почу адміністратара%s для праверкі бранявання"
6368
-
6369
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3463
6370
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1961
6371
- #, fuzzy, php-format
6372
- msgid ""
6373
- "Type the default %sadmin email%s sending the booking confimation. You can use this %s shortcode."
6374
- msgstr "Увядзіце %s еў. почу адміністратара%s адкуль лісты высылаюцца"
6375
-
6376
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3470
6377
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1968
6378
- #, fuzzy, php-format
6379
- msgid "Type your email %ssubject%s for the booking confimation message."
6380
- msgstr "Увядзіце тэкст %sписьма для праверкі бранявання%s на сайце"
6381
-
6382
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3491
6383
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1988
6384
- #, fuzzy, php-format
6385
- msgid "Type your %semail message content for checking booking%s in. "
6386
- msgstr "Увядзіце тэкст %sписьма для праверкі бранявання%s на сайце"
6387
-
6388
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3500
6389
- #, fuzzy, php-format
6390
- msgid ""
6391
- "For example: \"You have a new reservation %s on the following date(s): %s Contact information: "
6392
- "%s You can approve or edit this booking at: %s Thank you, Reservation service.\""
6393
- msgstr ""
6394
- "На прыклад: \"Вы павінны пацвердзіць новую бронь %s на даты: %s Дэталёвая інфармацыя пра твар "
6395
- "якое зрабіла браняванне:%s Дзякуй за карыстанне сэрвісам бранявання.\""
6396
-
6397
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3500
6398
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3573
6399
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3658
6400
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3837
6401
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:862
6402
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-functions.php:1589
6403
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1997
6404
- #, fuzzy
6405
- msgid "here"
6406
- msgstr "Прыклад: %sРезервируйте тут%s"
6407
-
6408
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3515
6409
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2012
6410
- #, fuzzy
6411
- msgid "Email to \"Person\" after they make a new reservation"
6412
- msgstr "Ліст наведвальніку пасля рэдагавання брані."
6413
-
6414
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3545
6415
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2042
6416
- #, fuzzy, php-format
6417
- msgid "Type email subject for %svisitor after creating a new reservation%s."
6418
- msgstr "ввдите тэкст ліста пры %sредактировании браняванні%s на сайце"
6419
-
6420
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3546
6421
- #, fuzzy, php-format
6422
- msgid "Use these %s shortcodes."
6423
- msgstr "Выкарыстоўвайце гэтыя пазнакі для налады"
6424
-
6425
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3567
6426
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2063
6427
- #, fuzzy, php-format
6428
- msgid "Type your %semail message for visitor after creating a new reservation%s"
6429
- msgstr "ввдите тэкст ліста пры %sредактировании браняванні%s на сайце"
6430
-
6431
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3573
6432
- #, fuzzy, php-format
6433
- msgid ""
6434
- "For example: \"Your reservation %s on these date(s): %s is processing now! We will send "
6435
- "confirmation by email. %s You can edit the booking at this page: %s Thank you, Reservation "
6436
- "service.\""
6437
- msgstr ""
6438
- "Напрыклад: \" Ваша бронь %s на даты: %s была зменена адміністратарам. %s Дзякуй за карыстанне "
6439
- "сэрвісам бранявання.\""
6440
-
6441
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3587
6442
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2085
6443
- #, fuzzy
6444
- msgid "Email to \"Person\" after booking is approved"
6445
- msgstr "Ліст наведвальніку пасля адмовы брані."
6446
-
6447
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3630
6448
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2128
6449
- #, fuzzy, php-format
6450
- msgid "Type your email subject for the %sapproved booking%s."
6451
- msgstr "Увядзіце тэкст ліста %sдля пацверджанні бранявання%s на сайце"
6452
-
6453
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3650
6454
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2148
6455
- #, fuzzy, php-format
6456
- msgid "Type your %semail message for the approved booking%s from the website"
6457
- msgstr "Увядзіце тэкст ліста %sдля пацверджанні бранявання%s на сайце"
6458
-
6459
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3658
6460
- #, fuzzy, php-format
6461
- msgid ""
6462
- "For example: \"Your reservation %s on these date(s): %s has been approved.%s You can edit this "
6463
- "booking on this page: %s . Thank you, Reservation service.\""
6464
- msgstr ""
6465
- "Напрыклад: \"Ваша бронь %s на даты: %s была пацверджана.%s Дзякуй за карыстанне сэрвісам "
6466
- "бранявання .\""
6467
-
6468
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3672
6469
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2172
6470
- #, fuzzy
6471
- msgid "Email to \"Person\" after their booking has been denied"
6472
- msgstr "Ліст наведвальніку пасля рэдагавання брані."
6473
-
6474
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3717
6475
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2217
6476
- #, fuzzy, php-format
6477
- msgid "Type your email subject for the %sdenied booking%s."
6478
- msgstr "Увядзіце тэму ліста для %sотказа браняванні%s"
6479
-
6480
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3737
6481
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2237
6482
- #, fuzzy, php-format
6483
- msgid "Type your %semail message for the denied booking%s from the website"
6484
- msgstr "ввдите тэкст ліста для %sотказа браняванні%s на сайце"
6485
-
6486
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3746
6487
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2247
6488
- #, fuzzy, php-format
6489
- msgid ""
6490
- "For example: \"Your reservation %s on these date(s): %s has been canceled. Please contact us for "
6491
- "more information. %s Thank you, Reservation service.\""
6492
- msgstr ""
6493
- "Напрыклад: \" Ваша бронь %s на даты: %s была адменена. %s Дзякуй за карыстанне сэрвісам "
6494
- "бранявання.\""
6495
-
6496
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3762
6497
- #, fuzzy
6498
- msgid "Email to \"Person\" after booking is modified"
6499
- msgstr "Ліст наведвальніку пасля адмовы брані."
6500
-
6501
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3807
6502
- #, fuzzy, php-format
6503
- msgid "Type your email subject for the %smodified booking%s. "
6504
- msgstr "ввдите тэкст ліста пры %sредактировании браняванні%s на сайце"
6505
-
6506
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3827
6507
- #, fuzzy, php-format
6508
- msgid "Type your %semail message for the modified booking%s from the website"
6509
- msgstr "ввдите тэкст ліста пры %sредактировании браняванні%s на сайце"
6510
-
6511
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3837
6512
- #, fuzzy, php-format
6513
- msgid ""
6514
- "For example: \"The reservation %s on these date(s): %s has been modified. %s You can edit this "
6515
- "booking on this page: %s . Thank you, Reservation service.\""
6516
- msgstr ""
6517
- "Напрыклад: \" Ваша бронь %s на даты: %s была зменена адміністратарам. %s Дзякуй за карыстанне "
6518
- "сэрвісам бранявання.\""
6519
-
6520
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3919
6521
- msgid "Form fields"
6522
- msgstr "Палі формы"
6523
-
6524
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3961
6525
- #, php-format
6526
- msgid "Content of booking fields data for email templates (%s-shortcode) and booking listing page"
6527
- msgstr ""
6528
-
6529
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3983
6530
- #, fuzzy, php-format
6531
- msgid "%s - inserting data from fields of booking form"
6532
- msgstr "%s - даданне палёў з дадзенымі формы бранявання,"
6533
-
6534
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3984
6535
- #, php-format
6536
- msgid "%s - inserting new line"
6537
- msgstr "%s - дадаць новы радок"
6538
-
6539
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3985
6540
- #, fuzzy
6541
- msgid "Use any other HTML tags (carefully)."
6542
- msgstr "выкарыстоўвайце любыя іншыя HTML тэгі акуратна."
6543
-
6544
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4079
6545
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4090
6546
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4105
6547
- msgid "First Name"
6548
- msgstr "Імя"
6549
-
6550
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4080
6551
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4091
6552
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4106
6553
- msgid "Last Name"
6554
- msgstr "Прозвішча"
6555
-
6556
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4081
6557
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4092
6558
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4107
6559
- msgid "Email"
6560
- msgstr "Емейл"
6561
-
6562
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4089
6563
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4104
6564
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:220
6565
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:559
6566
- #, fuzzy
6567
- msgid "Times"
6568
- msgstr "Час"
6569
-
6570
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4109
6571
- #, fuzzy
6572
- msgid "Address"
6573
- msgstr "Электронная пошта Paypal для атрымання плацяжоў"
6574
-
6575
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4110
6576
- msgid "City"
6577
- msgstr ""
6578
-
6579
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4111
6580
- msgid "Post code"
6581
- msgstr ""
6582
-
6583
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4164
6584
- msgid "Please, reserve an apartment with fresh flowers."
6585
- msgstr ""
6586
-
6587
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4270
6588
- #, fuzzy
6589
- msgid "The reservation has been modified"
6590
- msgstr "Ваша бронь была зменена"
6591
-
6592
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4271
6593
- #, fuzzy, php-format
6594
- msgid ""
6595
- "The reservation %s for: %s has been modified. %sYou can edit this booking on this page: %s "
6596
- "Thank you, %s"
6597
- msgstr ""
6598
- "Ваша бронь %sна даты: %s была зменена адміністратарам. %sСпасибо за карыстанне сэрвісам "
6599
- "бранявання.%s"
6600
-
6601
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4324
6602
- msgid "Sending request..."
6603
- msgstr ""
6604
-
6605
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4351
6606
- #, fuzzy
6607
- msgid "Order number"
6608
- msgstr "Лік наведвальнікаў"
6609
-
6610
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4354
6611
- #, fuzzy
6612
- msgid "Register"
6613
- msgstr "Забранявана"
6614
-
6615
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4356
6616
- msgid ""
6617
- "Please, enter order number of your purchased version, which you received to your billing email."
6618
- msgstr ""
6619
-
6620
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4360
6621
- #, php-format
6622
- msgid "If you will get any difficulties or have a questions, please contact by email %s"
6623
- msgstr ""
6624
-
6625
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/sync/wpbc-sync-gcal-api.php:41
6626
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:184
6627
- #, fuzzy
6628
- msgid "Google Calendar"
6629
- msgstr "Уставіць Каляндар для бранявання"
6630
-
6631
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/sync/wpbc-sync-gcal-api.php:41
6632
- msgid "API"
6633
- msgstr ""
6634
-
6635
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/sync/wpbc-sync-gcal-api.php:42
6636
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:185
6637
- #, fuzzy
6638
- msgid "Customization of synchronization with Google Calendar"
6639
- msgstr "Емейл"
6640
-
6641
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/sync/wpbc-sync-gcal-api.php:75
6642
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:716
6643
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1154
6644
- #, fuzzy
6645
- msgid "General Settings"
6646
- msgstr "Пашыраныя налады"
6647
-
6648
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/sync/wpbc-sync-gcal-feed.php:60
6649
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/sync/wpbc-sync-gcal-feed.php:81
6650
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:391
6651
- #, fuzzy
6652
- msgid "Google Calendar ID"
6653
- msgstr "Каляндар бранявання"
6654
-
6655
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/sync/wpbc-sync-gcal-feed.php:97
6656
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-booking-select-widget.php:134
6657
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-widget.php:101
6658
- msgid "Booking resource"
6659
- msgstr "Тып бранявання"
6660
-
6661
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/sync/wpbc-sync-gcal-feed.php:107
6662
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:381
6663
- #, fuzzy
6664
- msgid "Select booking resource"
6665
- msgstr "Дадаць новае браняванне"
6666
-
6667
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-booking-select-widget.php:38
6668
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1893
6669
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-widget.php:26
6670
- msgid "You need to use special shortcode [bookingedit] for booking editing."
6671
- msgstr ""
6672
-
6673
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-booking-select-widget.php:182
6674
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-widget.php:118
6675
- #, fuzzy
6676
- msgid "Visible months"
6677
- msgstr "Лік месяцаў"
6678
-
6679
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-booking-select-widget.php:244
6680
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-widget.php:142
6681
- #, php-format
6682
- msgid ""
6683
- "%sImportant!!!%s Please note, if you show booking calendar (inserted into post/page) with widget "
6684
- "at the same page, then the last will not be visible."
6685
- msgstr ""
6686
- "%sВажно!!!%s Калі ласка майце на ўвазе, калі каляндар показываеться ў пасце ці на старонцы "
6687
- "сумесна з виджетом, то каляндар у виджете не будзе намаляваны"
6688
-
6689
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-check-updates.php:178
6690
- #, php-format
6691
- msgid ""
6692
- "There is a new version of %1$s available. <a href=\"%2$s\" target=\"_blank\" title=\"%3$s\">View "
6693
- "version %4$s details</a>. <em>Automatic update is unavailable for this plugin.</em>"
6694
- msgstr ""
6695
-
6696
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-check-updates.php:184
6697
- #, php-format
6698
- msgid "You can request the new update of plugin on %1$sthis page%2$s."
6699
- msgstr ""
6700
-
6701
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-check-updates.php:191
6702
- #, fuzzy
6703
- msgid "Upgrade Notice"
6704
- msgstr "Капірайт"
6705
-
6706
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-check-updates.php:231
6707
- #, fuzzy, php-format
6708
- msgid "Version %s By %s"
6709
- msgstr "Прыклад: %s "
6710
-
6711
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-check-updates.php:235
6712
- #, fuzzy
6713
- msgid "View details"
6714
- msgstr "Апісанне"
6715
-
6716
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpdev-booking-search-widget.php:55
6717
- #, fuzzy
6718
- msgid "Search availability"
6719
- msgstr "Апісанне даступнасць"
6720
-
6721
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpdev-booking-search-widget.php:63
6722
- msgid "Nothing found."
6723
- msgstr ""
6724
-
6725
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpdev-booking-search-widget.php:67
6726
- msgid "Search results."
6727
- msgstr ""
6728
-
6729
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpdev-booking-search-widget.php:73
6730
- #, fuzzy
6731
- msgid "Title of search widget"
6732
- msgstr "Дапаможнае тэкставае поле"
6733
-
6734
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpdev-booking-search-widget.php:81
6735
- #, fuzzy
6736
- msgid "Title of search results"
6737
- msgstr "Дапаможнае тэкставае поле"
6738
-
6739
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpdev-booking-search-widget.php:86
6740
- #, php-format
6741
- msgid "Please type the %sTitle of search results%s."
6742
- msgstr ""
6743
-
6744
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpdev-booking-search-widget.php:90
6745
- msgid "Nothing found message"
6746
- msgstr ""
6747
-
6748
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpdev-booking-search-widget.php:95
6749
- #, php-format
6750
- msgid "Please type the %smessage ,what is showing, when nothing found%s."
6751
- msgstr ""
6752
-
6753
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpdev-booking-search-widget.php:99
6754
- #, fuzzy
6755
- msgid "URL of Search Results"
6756
- msgstr "Спасылка для вяртання з Paypal-а"
6757
-
6758
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpdev-booking-search-widget.php:104
6759
- #, php-format
6760
- msgid ""
6761
- "Please type the URL of the page %s(with %s shortcode in content)%s, where search results will "
6762
- "show."
6763
- msgstr ""
6764
-
6765
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-ajax.php:30
6766
- #, php-format
6767
- msgid ""
6768
- "%sError!%s Request do not pass security check! Please refresh the page and try one more time."
6769
- msgstr ""
6770
-
6771
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-ajax.php:109
6772
- msgid "Set as Read"
6773
- msgstr ""
6774
-
6775
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-ajax.php:109
6776
- msgid "Set as Unread"
6777
- msgstr ""
6778
-
6779
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-ajax.php:166
6780
- #, fuzzy
6781
- msgid "Set as Approved"
6782
- msgstr "Пацверджана"
6783
-
6784
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-ajax.php:166
6785
- #, fuzzy
6786
- msgid "Set as Pending"
6787
- msgstr "Якія чакаюць сцвярджэнні"
6788
-
6789
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-ajax.php:184
6790
- #, fuzzy
6791
- msgid "Reason for cancellation here"
6792
- msgstr "Чыннік адмовы"
6793
-
6794
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-ajax.php:185
6795
- msgid "Reason of cancellation here"
6796
- msgstr "Чыннік адмовы"
6797
-
6798
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-booking-new.php:37
6799
- #, fuzzy
6800
- msgid "The code you entered is incorrect"
6801
- msgstr "Ваш уведзены код няправільны"
6802
-
6803
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-booking-new.php:562
6804
- #, fuzzy
6805
- msgid "Error!"
6806
- msgstr "Еўра"
6807
-
6808
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-booking-new.php:563
6809
- msgid ""
6810
- "Probably these date(s) just was booking by other visitor. Please reload this page and make "
6811
- "booking again."
6812
- msgstr ""
6813
-
6814
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-class-dismiss.php:80
6815
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-welcome.php:1355
6816
- msgid "Dismiss"
6817
- msgstr ""
6818
-
6819
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:293
6820
- msgid "Importing Feed"
6821
- msgstr ""
6822
-
6823
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:309
6824
- msgid "Data Parsing"
6825
- msgstr ""
6826
-
6827
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:416
6828
- msgid ""
6829
- "Some data was retrieved, but could not be parsed successfully. Please ensure your feed URL is "
6830
- "correct."
6831
- msgstr ""
6832
-
6833
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:422
6834
- msgid "The feed could not be found (404). Please ensure your feed URL is correct."
6835
- msgstr ""
6836
-
6837
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:425
6838
- msgid ""
6839
- "Access to this feed was denied (403). Please ensure you have public sharing enabled for your "
6840
- "calendar."
6841
- msgstr ""
6842
-
6843
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:428
6844
- #, php-format
6845
- msgid ""
6846
- "The feed data could not be retrieved. Error code: %s. Please ensure your feed URL is correct."
6847
- msgstr ""
6848
-
6849
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:444
6850
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:102
6851
- #, fuzzy
6852
- msgid "Done"
6853
- msgstr "Тэлефон"
6854
-
6855
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:580
6856
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:625
6857
- #, fuzzy
6858
- msgid "GID"
6859
- msgstr "ID"
6860
-
6861
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:604
6862
- #, fuzzy
6863
- msgid "Location:"
6864
- msgstr "Функцыі "
6865
-
6866
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:632
6867
- #, fuzzy
6868
- msgid "Reload page"
6869
- msgstr "Дэма старонка"
6870
-
6871
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:636
6872
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1693
6873
- #, fuzzy
6874
- msgid "Do you really want to delete selected booking(s) ?"
6875
- msgstr "Вы ўпэўнены, што жадаеце выдаліць гэты тып?"
6876
-
6877
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:644
6878
- #, fuzzy
6879
- msgid "Delete selected booking(s)"
6880
- msgstr "Прыклад: %sРезервируйте тут%s"
6881
-
6882
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:103
6883
- msgid "Imported 0 events."
6884
- msgstr ""
6885
-
6886
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:170
6887
- msgid "Sync"
6888
- msgstr ""
6889
-
6890
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:171
6891
- #, fuzzy
6892
- msgid "Synchronization Bookings Settings"
6893
- msgstr "Браняванне"
6894
-
6895
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:184
6896
- #, fuzzy
6897
- msgid "Events Import"
6898
- msgstr "Супериор "
6899
-
6900
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:312
6901
- #, fuzzy
6902
- msgid "Assign events fields to specific booking form field"
6903
- msgstr "Кошты бранявання"
6904
-
6905
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:332
6906
- msgid "Auto import events"
6907
- msgstr ""
6908
-
6909
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:350
6910
- #, fuzzy
6911
- msgid "Google Calendar - General Settings"
6912
- msgstr "Уставіць Каляндар для бранявання"
6913
-
6914
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:377
6915
- msgid "Default settings for retrieving events"
6916
- msgstr ""
6917
-
6918
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:421
6919
- #, fuzzy
6920
- msgid "Google Calendar - Help Info"
6921
- msgstr "Уставіць Каляндар для бранявання"
6922
-
6923
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:430
6924
- msgid "To get Google Calendar API key please follow this instruction"
6925
- msgstr ""
6926
-
6927
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:432
6928
- #, php-format
6929
- msgid "Go to Google Developer Console: %s."
6930
- msgstr ""
6931
-
6932
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:433
6933
- msgid "Give your project a name and click \"Create\"."
6934
- msgstr ""
6935
-
6936
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:434
6937
- msgid "In the sidebar click on \"APIs & auth\"."
6938
- msgstr ""
6939
-
6940
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:435
6941
- msgid "Click APIs and make sure \"Calendar API\" is set to ON."
6942
- msgstr ""
6943
-
6944
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:436
6945
- msgid "Now click on \"Credentials\" in the sidebar."
6946
- msgstr ""
6947
-
6948
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:437
6949
- msgid "Under the section \"Public API access\" click the button \"Create new Key\"."
6950
- msgstr ""
6951
-
6952
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:438
6953
- msgid "On the popup click the button \"Server Key\" and click \"Create\"."
6954
- msgstr ""
6955
-
6956
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:439
6957
- #, php-format
6958
- msgid ""
6959
- "You will now see a table loaded with the top item being the API Key. Copy this and paste it into "
6960
- "%sGoogle API Key%s field at this page."
6961
- msgstr ""
6962
-
6963
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:445
6964
- msgid "Set Your Calendar to Public"
6965
- msgstr ""
6966
-
6967
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:447
6968
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:455
6969
- msgid "Navigate to your Google calendars."
6970
- msgstr ""
6971
-
6972
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:448
6973
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:456
6974
- #, fuzzy
6975
- msgid "Open the settings for the calendar."
6976
- msgstr "Пашыраныя налады"
6977
-
6978
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:449
6979
- msgid "Click the \"Share this Calendar\" link."
6980
- msgstr ""
6981
-
6982
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:450
6983
- msgid "Click the checkbox to make calendar public. Do not check the other option."
6984
- msgstr ""
6985
-
6986
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:453
6987
- #, fuzzy
6988
- msgid "Find Your Calendar ID"
6989
- msgstr "Каляндар бранявання"
6990
-
6991
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:457
6992
- #, php-format
6993
- msgid ""
6994
- "Now copy the Calendar ID to use in the plugin settings in your WordPress admin. Make sure to "
6995
- "%suse the Calendar ID only, not the entire XML feed URL%s."
6996
- msgstr ""
6997
-
6998
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:557
6999
- #, php-format
7000
- msgid "Select field for assigning to %sevent property%s"
7001
- msgstr ""
7002
-
7003
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:567
7004
- #, fuzzy
7005
- msgid "Event Title"
7006
- msgstr "Дапаможнае тэкставае поле"
7007
-
7008
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:568
7009
- msgid "Event Description (optional field)"
7010
- msgstr ""
7011
-
7012
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:569
7013
- #, fuzzy
7014
- msgid "Location"
7015
- msgstr "Функцыі "
7016
-
7017
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:594
7018
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:658
7019
- #, fuzzy
7020
- msgid "Now"
7021
- msgstr "Купіць цяпер"
7022
-
7023
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:595
7024
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:659
7025
- msgid "00:00 today"
7026
- msgstr ""
7027
-
7028
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:596
7029
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:660
7030
- #, fuzzy
7031
- msgid "Start of current week"
7032
- msgstr "Абярыце дзень пачатку тыдня"
7033
-
7034
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:597
7035
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:661
7036
- #, fuzzy
7037
- msgid "Start of current month"
7038
- msgstr "Увядзіце колькасць месяцаў паказваных у календары."
7039
-
7040
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:598
7041
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:662
7042
- #, fuzzy
7043
- msgid "End of current month"
7044
- msgstr "Увядзіце колькасць месяцаў паказваных у календары."
7045
-
7046
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:599
7047
- #, fuzzy
7048
- msgid "The start of time"
7049
- msgstr "Дзень пачатку дыяпазону"
7050
-
7051
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:600
7052
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:664
7053
- #, fuzzy
7054
- msgid "Specific date / time"
7055
- msgstr "Фармат даты"
7056
-
7057
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:607
7058
- msgid "Select option, when to start retrieving events."
7059
- msgstr ""
7060
-
7061
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:609
7062
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:673
7063
- msgid "Offset"
7064
- msgstr ""
7065
-
7066
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:609
7067
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:673
7068
- #, fuzzy
7069
- msgid "Enter date / time"
7070
- msgstr "Фармат даты"
7071
-
7072
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:615
7073
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:679
7074
- msgid "seconds"
7075
- msgstr ""
7076
-
7077
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:616
7078
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:680
7079
- msgid "minutes"
7080
- msgstr ""
7081
-
7082
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:625
7083
- msgid ""
7084
- "You can specify an additional offset from you chosen start point. The offset can be negative."
7085
- msgstr ""
7086
-
7087
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:628
7088
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:692
7089
- #, php-format
7090
- msgid "Type your date in format %s. Example: %s"
7091
- msgstr ""
7092
-
7093
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:645
7094
- msgid "Until"
7095
- msgstr ""
7096
-
7097
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:663
7098
- #, fuzzy
7099
- msgid "The end of time"
7100
- msgstr "Фармат даты"
7101
-
7102
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:671
7103
- msgid "Select option, when to stop retrieving events."
7104
- msgstr ""
7105
-
7106
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:689
7107
- msgid "You can specify an additional offset from you chosen end point. The offset can be negative."
7108
- msgstr ""
7109
-
7110
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:705
7111
- #, fuzzy
7112
- msgid "Maximum number"
7113
- msgstr "Лік наведвальнікаў"
7114
-
7115
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:708
7116
- msgid "You can specify the maximum number of events to import during one session."
7117
- msgstr ""
7118
-
7119
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:719
7120
- msgid "Google API Key"
7121
- msgstr ""
7122
-
7123
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:721
7124
- msgid "Please enter your Google API key. This field required to import events."
7125
- msgstr ""
7126
-
7127
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:723
7128
- #, php-format
7129
- msgid "You can check in this %sinstruction how to generate and use your Google API key%s."
7130
- msgstr ""
7131
-
7132
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:737
7133
- #, fuzzy
7134
- msgid "Timezone"
7135
- msgstr "Час"
7136
-
7137
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:771
7138
- msgid "Select a city in your required timezone, if you are having problems with dates and times."
7139
- msgstr ""
7140
-
7141
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:781
7142
- msgid "Activate auto import"
7143
- msgstr ""
7144
-
7145
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:787
7146
- #, fuzzy, php-format
7147
- msgid "Check this box to %sactivate%s auto import events and creation bookings from them"
7148
- msgstr "Вылучыце, калі Вы жадаеце выкарыстоўваць аплату пры дапамозе Paypal."
7149
-
7150
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:794
7151
- #, fuzzy
7152
- msgid "Import events every"
7153
- msgstr "Кожны "
7154
-
7155
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:812
7156
- msgid "Select time duration of import requests."
7157
- msgstr ""
7158
-
7159
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:855
7160
- msgid "Retrieve Google Calendar Events "
7161
- msgstr ""
7162
-
7163
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:861
7164
- #, fuzzy
7165
- msgid "Please configure settings for import Google Calendar events"
7166
- msgstr "Палі формы"
7167
-
7168
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:889
7169
- #, fuzzy
7170
- msgid "Configure"
7171
- msgstr "Выдаленне дадзеных па браняванні"
7172
-
7173
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:899
7174
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:905
7175
- #, fuzzy
7176
- msgid "Import Google Calendar Events"
7177
- msgstr "Усталёўкі для бранявання"
7178
-
7179
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:912
7180
- #, fuzzy
7181
- msgid "Import"
7182
- msgstr "Супериор "
7183
-
7184
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-notices.php:26
7185
- #, php-format
7186
- msgid ""
7187
- "Probabaly you updated your paid version of Booking Calendar by free version or update process "
7188
- "failed. You can request the new update of your paid version at %1sthis page%2s."
7189
- msgstr ""
7190
-
7191
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-scripts.php:56
7192
- msgid "This field is required"
7193
- msgstr "Гэта поле неабходна"
7194
-
7195
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-scripts.php:57
7196
- msgid "This checkbox must be checked"
7197
- msgstr ""
7198
-
7199
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-scripts.php:58
7200
- msgid "At least one option must be selected"
7201
- msgstr ""
7202
-
7203
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-scripts.php:59
7204
- msgid "Incorrect email field"
7205
- msgstr "Некоректно ўведзены емейл"
7206
-
7207
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-scripts.php:60
7208
- msgid "Your emails do not the same"
7209
- msgstr ""
7210
-
7211
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-scripts.php:61
7212
- #, fuzzy
7213
- msgid "Please, select booking date(s) at Calendar."
7214
- msgstr "Калі ласка, вылучыце даты для рэзервавання"
7215
-
7216
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-welcome.php:744
7217
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-welcome.php:1193
7218
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:372
7219
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1305
7220
- msgid "Purchase"
7221
- msgstr "Купля"
7222
-
7223
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-welcome.php:744
7224
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-welcome.php:1193
7225
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:679
7226
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:372
7227
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1305
7228
- #, fuzzy
7229
- msgid "Upgrade Now"
7230
- msgstr "Купіць цяпер"
7231
-
7232
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-welcome.php:1371
7233
- msgid "We&#8217;ve assembled some links to get you started:"
7234
- msgstr ""
7235
-
7236
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-welcome.php:1375
7237
- msgid "Get Started"
7238
- msgstr ""
7239
-
7240
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-welcome.php:1379
7241
- #, php-format
7242
- msgid "Insert booking form %sshortcode%s into your %sPost%s or %sPage%s"
7243
- msgstr ""
7244
-
7245
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-welcome.php:1388
7246
- #, php-format
7247
- msgid "or add booking calendar %sWidget%s to your sidebar."
7248
- msgstr ""
7249
-
7250
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-welcome.php:1395
7251
- #, php-format
7252
- msgid "Check %show todo%s that and what %sshortcodes%s are available."
7253
- msgstr ""
7254
-
7255
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-welcome.php:1402
7256
- #, php-format
7257
- msgid "Add new booking from your post/page or from %sAdmin Panel%s."
7258
- msgstr ""
7259
-
7260
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-welcome.php:1410
7261
- #, fuzzy
7262
- msgid "Next Steps"
7263
- msgstr "Адправіць"
7264
-
7265
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-welcome.php:1414
7266
- #, php-format
7267
- msgid "Check %sBooking Listing%s page for new bookings."
7268
- msgstr ""
7269
-
7270
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-welcome.php:1421
7271
- #, fuzzy, php-format
7272
- msgid "Configure booking %sSettings%s."
7273
- msgstr "Прыклад: %sРезервируйте тут%s"
7274
-
7275
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-welcome.php:1426
7276
- #, php-format
7277
- msgid "Configure predefined set of your %sForm Fields%s."
7278
- msgstr ""
7279
-
7280
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-welcome.php:1432
7281
- #, php-format
7282
- msgid "Configure your predefined %sEmail Templates%s."
7283
- msgstr ""
7284
-
7285
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-welcome.php:1440
7286
- #, fuzzy
7287
- msgid "Have a questions?"
7288
- msgstr "Усталёўкі"
7289
-
7290
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-welcome.php:1444
7291
- #, php-format
7292
- msgid "Check out our %sHelp%s"
7293
- msgstr ""
7294
-
7295
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-welcome.php:1449
7296
- #, fuzzy, php-format
7297
- msgid "See %sFAQ%s."
7298
- msgstr "%sвведите час пачатку бранявання%s"
7299
-
7300
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-welcome.php:1454
7301
- #, php-format
7302
- msgid "Still having questions? Contact %sSupport%s."
7303
- msgstr ""
7304
-
7305
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-welcome.php:1463
7306
- #, php-format
7307
- msgid "Need even more functionality? Check %s higher versions %s"
7308
- msgstr ""
7309
-
7310
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:30
7311
- msgid "Insert booking calendar"
7312
- msgstr "Уставіць Каляндар для бранявання"
7313
-
7314
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:31
7315
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:636
7316
- msgid "Booking calendar"
7317
- msgstr "Каляндар бранявання"
7318
-
7319
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:143
7320
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:165
7321
- msgid "Ok"
7322
- msgstr "Ок"
7323
-
7324
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:414
7325
- #, fuzzy
7326
- msgid "Start month:"
7327
- msgstr "Дні месяца"
7328
-
7329
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:424
7330
- #, fuzzy
7331
- msgid "Select start month of calendar"
7332
- msgstr "Увядзіце колькасць месяцаў паказваных у календары."
7333
-
7334
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:431
7335
- #, fuzzy
7336
- msgid "Show in the page:"
7337
- msgstr "Паказаць"
7338
-
7339
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:437
7340
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-widget.php:91
7341
- #, fuzzy
7342
- msgid "Booking form with calendar"
7343
- msgstr "Форма бранявання"
7344
-
7345
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:438
7346
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-widget.php:92
7347
- #, fuzzy
7348
- msgid "Only availability calendar"
7349
- msgstr "Апісанне даступнасць"
7350
-
7351
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:439
7352
- #, fuzzy
7353
- msgid "Only booking form"
7354
- msgstr "Форма бранявання"
7355
-
7356
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:444
7357
- #, fuzzy
7358
- msgid "for"
7359
- msgstr "Форма"
7360
-
7361
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:447
7362
- #, fuzzy
7363
- msgid "date"
7364
- msgstr "Фармат даты"
7365
-
7366
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:451
7367
- #, fuzzy
7368
- msgid "Select to show the entire booking form or the availability calendar only."
7369
- msgstr "Абярыце, што Вы жадаеце паказаць:форму бранявання ці адзін каляндар."
7370
-
7371
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:466
7372
- #, fuzzy
7373
- msgid "Show advanced settings"
7374
- msgstr "Пашыраныя налады"
7375
-
7376
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:467
7377
- #, fuzzy
7378
- msgid "Hide advanced settings"
7379
- msgstr "Пашыраныя налады"
7380
-
7381
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:471
7382
- #, php-format
7383
- msgid "Setting advanced parameters of the calendar. %sLike width, height and structure %s"
7384
- msgstr ""
7385
-
7386
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:473
7387
- #, php-format
7388
- msgid "%s or minimum and fixed number of days selection for the specific day of week or season.%s"
7389
- msgstr ""
7390
-
7391
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:479
7392
- #, php-format
7393
- msgid "Please read more about the possible customizations of these %soptions%s %shere%s"
7394
- msgstr ""
7395
-
7396
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:480
7397
- #, fuzzy
7398
- msgid "Options:"
7399
- msgstr "Функцыі "
7400
-
7401
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:483
7402
- msgid "Specify the full width of calendar, height of date cell and number of months in one row. "
7403
- msgstr ""
7404
-
7405
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:486
7406
- msgid ""
7407
- "Calendar have 2 months in a row, the cell height is 30px and calendar full width 568px (possible "
7408
- "to use percentage for width: 100%)"
7409
- msgstr ""
7410
-
7411
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:487
7412
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:495
7413
- #, fuzzy
7414
- msgid "Code Example"
7415
- msgstr "Прыклад: %s "
7416
-
7417
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:491
7418
- msgid ""
7419
- "Specify that during certain seasons (or days of week), the specific minimum number of days must "
7420
- "be booked. "
7421
- msgstr ""
7422
-
7423
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:494
7424
- msgid ""
7425
- "Visitor can select only 4 days starting at Monday, 3 or 7 days – Friday, 2 days – Saturday, etc…"
7426
- msgstr ""
7427
-
7428
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:298
7429
- #, fuzzy
7430
- msgid "week"
7431
- msgstr "Любы дзень тыдня"
7432
-
7433
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:299
7434
- msgid "weeks"
7435
- msgstr ""
7436
-
7437
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:300
7438
- #, fuzzy
7439
- msgid "month"
7440
- msgstr "Увядзіце колькасць месяцаў паказваных у календары."
7441
-
7442
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:301
7443
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:302
7444
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:303
7445
- #, fuzzy
7446
- msgid "months"
7447
- msgstr "месяц(ы)"
7448
-
7449
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:304
7450
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2214
7451
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:732
7452
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:738
7453
- #, fuzzy
7454
- msgid "Year"
7455
- msgstr "год(а)"
7456
-
7457
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:307
7458
- #, fuzzy
7459
- msgid "Current dates"
7460
- msgstr "Выгляд дат"
7461
-
7462
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:308
7463
- #, fuzzy
7464
- msgid "Today"
7465
- msgstr "днеи"
7466
-
7467
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:309
7468
- #, fuzzy
7469
- msgid "Previous dates"
7470
- msgstr "Выгляд дат"
7471
-
7472
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:310
7473
- #, fuzzy
7474
- msgid "All dates"
7475
- msgstr "Выгляд дат"
7476
-
7477
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:311
7478
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:424
7479
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2072
7480
- msgid "Next"
7481
- msgstr ""
7482
-
7483
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:312
7484
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:447
7485
- #, fuzzy
7486
- msgid "Prior"
7487
- msgstr "Пра"
7488
-
7489
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:314
7490
- msgid "Check In - Tomorrow"
7491
- msgstr ""
7492
-
7493
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:315
7494
- msgid "Check Out - Tomorrow"
7495
- msgstr ""
7496
-
7497
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:472
7498
- #, fuzzy
7499
- msgid "Check-in"
7500
- msgstr "Дзеці"
7501
-
7502
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:482
7503
- #, fuzzy
7504
- msgid "Check-out"
7505
- msgstr "Дзеці"
7506
-
7507
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:505
7508
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:567
7509
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:623
7510
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1463
7511
- #, fuzzy
7512
- msgid "Apply"
7513
- msgstr "Красавік"
7514
-
7515
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:605
7516
- #, fuzzy
7517
- msgid "Start Date"
7518
- msgstr "Фармат даты"
7519
-
7520
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:646
7521
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:44
7522
- #, fuzzy
7523
- msgid "Booking Listing"
7524
- msgstr "Дадаць рэзерв"
7525
-
7526
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:650
7527
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:703
7528
- #, fuzzy
7529
- msgid "Calendar Overview"
7530
- msgstr "Уставіць Каляндар для бранявання"
7531
-
7532
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:659
7533
- #, fuzzy
7534
- msgid "Booking Calendar - Overview"
7535
- msgstr "Уставіць Каляндар для бранявання"
7536
-
7537
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:667
7538
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:675
7539
- msgid "Help"
7540
- msgstr ""
7541
-
7542
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:673
7543
- #, fuzzy
7544
- msgid "About Booking Calendar"
7545
- msgstr "Уставіць Каляндар для бранявання"
7546
-
7547
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:676
7548
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:462
7549
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1217
7550
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1219
7551
- msgid "FAQ"
7552
- msgstr ""
7553
-
7554
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:677
7555
- #, fuzzy
7556
- msgid "Technical Support"
7557
- msgstr "Премиум падтрымка"
7558
-
7559
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1364
7560
- msgid "Filter"
7561
- msgstr "Фільтр "
7562
-
7563
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1409
7564
- #, fuzzy
7565
- msgid "Expand Advanced Filter"
7566
- msgstr "Пашыраныя налады"
7567
-
7568
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1410
7569
- #, fuzzy
7570
- msgid "Collapse Advanced Filter"
7571
- msgstr "Пашыраныя налады"
7572
-
7573
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1427
7574
- msgid "Send email notification to customer after approval, cancellation or deletion of bookings"
7575
- msgstr ""
7576
-
7577
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1428
7578
- #, fuzzy
7579
- msgid "Emails sending"
7580
- msgstr "Емейл "
7581
-
7582
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1451
7583
- #, fuzzy
7584
- msgid "Booking ID"
7585
- msgstr "ID"
7586
-
7587
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1460
7588
- #, fuzzy
7589
- msgid "Refresh booking listing"
7590
- msgstr "Дадаць рэзерв"
7591
-
7592
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1464
7593
- #, fuzzy
7594
- msgid "Reset filter to default values"
7595
- msgstr "Абнавіць да значэння па змаўчанні"
7596
-
7597
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1505
7598
- #, fuzzy
7599
- msgid "Any"
7600
- msgstr "Любы дзень тыдня"
7601
-
7602
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1533
7603
- #, fuzzy
7604
- msgid "New bookings"
7605
- msgstr "Браняванне"
7606
-
7607
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1536
7608
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-widget.php:87
7609
- msgid "Show"
7610
- msgstr "Паказаць"
7611
-
7612
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1548
7613
- #, fuzzy
7614
- msgid "Creation"
7615
- msgstr "Выдаленне дадзеных па браняванні"
7616
-
7617
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1582
7618
- msgid "Order by"
7619
- msgstr ""
7620
-
7621
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1596
7622
- msgid ""
7623
- "Save filter settings as default template (Please, click Apply filter button, before saving!)"
7624
- msgstr ""
7625
-
7626
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1599
7627
- #, fuzzy
7628
- msgid "Save as Default"
7629
- msgstr "Захаваць змены"
7630
-
7631
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1604
7632
- msgid "Delete your previously saved default filer template!"
7633
- msgstr ""
7634
-
7635
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1607
7636
- #, fuzzy
7637
- msgid "Delete template"
7638
- msgstr "Выдаліць"
7639
-
7640
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1678
7641
- #, fuzzy
7642
- msgid "Approve selected bookings"
7643
- msgstr "Браняванне"
7644
-
7645
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1682
7646
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1989
7647
- msgid "Approve"
7648
- msgstr "Пацвердзіць"
7649
-
7650
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1683
7651
- #, fuzzy
7652
- msgid "Set selected bookings as pending"
7653
- msgstr "увядзіце час бранявання"
7654
-
7655
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1685
7656
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1993
7657
- #, fuzzy
7658
- msgid "Do you really want to set booking as pending ?"
7659
- msgstr "Вы ўпэўнены, што жадаеце выдаліць гэты тып?"
7660
-
7661
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1688
7662
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1994
7663
- #, fuzzy
7664
- msgid "Reject"
7665
- msgstr "Выдалена"
7666
-
7667
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1691
7668
- #, fuzzy
7669
- msgid "Delete selected bookings"
7670
- msgstr "Браняванне"
7671
-
7672
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1698
7673
- #, fuzzy
7674
- msgid "Reason of cancellation"
7675
- msgstr "Чыннік адмовы"
7676
-
7677
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1703
7678
- #, fuzzy
7679
- msgid "Mark as read all bookings"
7680
- msgstr "Электронная пошта наведвальніку пасля пацверджання брані"
7681
-
7682
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1707
7683
- #, fuzzy
7684
- msgid "Read All"
7685
- msgstr "Нататка"
7686
-
7687
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1708
7688
- msgid "Mark as read selected bookings"
7689
- msgstr ""
7690
-
7691
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1712
7692
- #, fuzzy
7693
- msgid "Read"
7694
- msgstr "Нататка"
7695
-
7696
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1713
7697
- msgid "Mark as Unread selected bookings"
7698
- msgstr ""
7699
-
7700
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1717
7701
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1931
7702
- msgid "Unread"
7703
- msgstr ""
7704
-
7705
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1762
7706
- #, fuzzy
7707
- msgid "Booking Data"
7708
- msgstr "Дадаць рэзерв"
7709
-
7710
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1763
7711
- #, fuzzy
7712
- msgid "Booking Dates"
7713
- msgstr "Выгляд дат"
7714
-
7715
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1768
7716
- #, fuzzy
7717
- msgid "Show ALL dates of booking"
7718
- msgstr "Сезонныя змены коштаў"
7719
-
7720
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1773
7721
- #, fuzzy
7722
- msgid "Show only check in/out dates"
7723
- msgstr "%s - поле з пазнакай"
7724
-
7725
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1780
7726
- msgid "Nothing found!"
7727
- msgstr ""
7728
-
7729
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1814
7730
- #, fuzzy
7731
- msgid "Resource not exist"
7732
- msgstr "Дадаць новае браняванне"
7733
-
7734
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1931
7735
- msgid "Mark"
7736
- msgstr ""
7737
-
7738
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1998
7739
- #, fuzzy
7740
- msgid "Do you really want to delete this booking ?"
7741
- msgstr "Вы ўпэўнены, што жадаеце выдаліць? "
7742
-
7743
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2054
7744
- #, fuzzy
7745
- msgid "Prev"
7746
- msgstr "Кошт"
7747
-
7748
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2203
7749
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2235
7750
- #, fuzzy
7751
- msgid "Show month"
7752
- msgstr "Дні месяца"
7753
-
7754
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2206
7755
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2238
7756
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:727
7757
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:736
7758
- #, fuzzy
7759
- msgid "Month"
7760
- msgstr "Увядзіце колькасць месяцаў паказваных у календары."
7761
-
7762
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2207
7763
- #, fuzzy
7764
- msgid "Show 3 months"
7765
- msgstr "Паказаць даведкавае поле для ўводу"
7766
-
7767
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2210
7768
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:731
7769
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:737
7770
- #, fuzzy
7771
- msgid "3 Months"
7772
- msgstr "Месяцы"
7773
-
7774
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2211
7775
- #, fuzzy
7776
- msgid "Show year"
7777
- msgstr "год(а)"
7778
-
7779
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2220
7780
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2254
7781
- #, fuzzy
7782
- msgid "Calendar view mode"
7783
- msgstr "Скарочаны выгляд дат"
7784
-
7785
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2227
7786
- #, fuzzy
7787
- msgid "Show day"
7788
- msgstr "за 1 дзень"
7789
-
7790
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2230
7791
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:724
7792
- #, fuzzy
7793
- msgid "Day"
7794
- msgstr "Дзень пачатку дыяпазону"
7795
-
7796
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2231
7797
- #, fuzzy
7798
- msgid "Show week"
7799
- msgstr "Дні тыдня "
7800
-
7801
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2234
7802
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:725
7803
- #, fuzzy
7804
- msgid "Week"
7805
- msgstr "Любы дзень тыдня"
7806
-
7807
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2239
7808
- #, fuzzy
7809
- msgid "Show 2 months"
7810
- msgstr "Паказаць даведкавае поле для ўводу"
7811
-
7812
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2242
7813
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:729
7814
- #, fuzzy
7815
- msgid "2 Months"
7816
- msgstr "Месяцы"
7817
-
7818
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2280
7819
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2294
7820
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2341
7821
- msgid "Previous 4 weeks"
7822
- msgstr ""
7823
-
7824
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2281
7825
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2295
7826
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2342
7827
- #, fuzzy
7828
- msgid "Previous week"
7829
- msgstr "Любы дзень тыдня"
7830
-
7831
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2282
7832
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2296
7833
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2343
7834
- #, fuzzy
7835
- msgid "Current week"
7836
- msgstr "Дні тыдня "
7837
-
7838
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2283
7839
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2297
7840
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2344
7841
- #, fuzzy
7842
- msgid "Next week"
7843
- msgstr "Любы дзень тыдня"
7844
-
7845
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2284
7846
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2298
7847
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2345
7848
- msgid "Next 4 weeks"
7849
- msgstr ""
7850
-
7851
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2308
7852
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2358
7853
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2373
7854
- msgid "Previous 3 months"
7855
- msgstr ""
7856
-
7857
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2309
7858
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2359
7859
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2374
7860
- #, fuzzy
7861
- msgid "Previous month"
7862
- msgstr "Дні месяца"
7863
-
7864
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2310
7865
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2360
7866
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2375
7867
- #, fuzzy
7868
- msgid "Current month"
7869
- msgstr "Дні месяца"
7870
-
7871
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2311
7872
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2361
7873
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2376
7874
- #, fuzzy
7875
- msgid "Next month"
7876
- msgstr "месяц(ы)"
7877
-
7878
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2312
7879
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2362
7880
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2377
7881
- #, fuzzy
7882
- msgid "Next 3 months"
7883
- msgstr "Месяцы"
7884
-
7885
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2326
7886
- #, fuzzy
7887
- msgid "Previous 7 days"
7888
- msgstr "Дні тыдня "
7889
-
7890
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2327
7891
- #, fuzzy
7892
- msgid "Previous day"
7893
- msgstr "Дзень пачатку дыяпазону"
7894
-
7895
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2328
7896
- #, fuzzy
7897
- msgid "Current day"
7898
- msgstr "Дзень пачатку дыяпазону"
7899
-
7900
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2329
7901
- #, fuzzy
7902
- msgid "Next day"
7903
- msgstr "Дзень пачатку дыяпазону"
7904
-
7905
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2330
7906
- #, fuzzy
7907
- msgid "Next 7 days"
7908
- msgstr "Дні тыдня "
7909
-
7910
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2401
7911
- #, fuzzy
7912
- msgid "Calendar Navigation"
7913
- msgstr "Уставіць Каляндар для бранявання"
7914
-
7915
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:116
7916
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:146
7917
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:153
7918
- #, fuzzy
7919
- msgid "M"
7920
- msgstr "Пн"
7921
-
7922
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:116
7923
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:146
7924
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:153
7925
- #, fuzzy
7926
- msgid "W"
7927
- msgstr "Ср"
7928
-
7929
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:116
7930
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:146
7931
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:153
7932
- #, fuzzy
7933
- msgid "F"
7934
- msgstr "F j, Y"
7935
-
7936
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:122
7937
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:159
7938
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:447
7939
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:453
7940
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:459
7941
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:465
7942
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:481
7943
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:487
7944
- #, fuzzy
7945
- msgid "Mon"
7946
- msgstr "Пн"
7947
-
7948
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:122
7949
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:159
7950
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:447
7951
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:453
7952
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:459
7953
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:465
7954
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:481
7955
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:487
7956
- #, fuzzy
7957
- msgid "Tue"
7958
- msgstr "Вт"
7959
-
7960
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:122
7961
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:159
7962
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:447
7963
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:453
7964
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:459
7965
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:465
7966
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:481
7967
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:487
7968
- #, fuzzy
7969
- msgid "Wed"
7970
- msgstr "Ср"
7971
-
7972
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:122
7973
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:159
7974
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:447
7975
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:453
7976
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:459
7977
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:465
7978
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:481
7979
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:487
7980
- #, fuzzy
7981
- msgid "Thu"
7982
- msgstr "Вт"
7983
-
7984
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:122
7985
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:159
7986
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:447
7987
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:453
7988
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:459
7989
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:465
7990
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:481
7991
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:487
7992
- #, fuzzy
7993
- msgid "Fri"
7994
- msgstr "Пт"
7995
-
7996
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:122
7997
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:159
7998
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:447
7999
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:453
8000
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:459
8001
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:465
8002
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:481
8003
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:487
8004
- #, fuzzy
8005
- msgid "Sat"
8006
- msgstr "Сб"
8007
-
8008
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:122
8009
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:159
8010
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:447
8011
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:453
8012
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:459
8013
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:465
8014
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:481
8015
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:487
8016
- #, fuzzy
8017
- msgid "Sun"
8018
- msgstr "Вс"
8019
-
8020
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:146
8021
- #, fuzzy
8022
- msgid "T"
8023
- msgstr "Вт"
8024
-
8025
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:146
8026
- #, fuzzy
8027
- msgid "S"
8028
- msgstr "%s[bookingname]%s - дадаць назву бранявання,"
8029
-
8030
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:138
8031
- #, fuzzy
8032
- msgid "Booking Calendar"
8033
- msgstr "Каляндар бранявання"
8034
-
8035
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:334
8036
- #, fuzzy
8037
- msgid "Statistic"
8038
- msgstr "Час пачатку"
8039
-
8040
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:338
8041
- #, fuzzy
8042
- msgid "New (unverified) booking(s)"
8043
- msgstr "%s - дадаць новы радок"
8044
-
8045
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:342
8046
- #, fuzzy
8047
- msgid "Pending booking(s)"
8048
- msgstr "%sвведите час пачатку бранявання%s"
8049
-
8050
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:348
8051
- #, fuzzy
8052
- msgid "Agenda"
8053
- msgstr "Адправіць"
8054
-
8055
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:352
8056
- #, fuzzy
8057
- msgid "New booking(s) made today"
8058
- msgstr "Новае браняванне"
8059
-
8060
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:356
8061
- #, fuzzy
8062
- msgid "Bookings for today"
8063
- msgstr "Браняванне"
8064
-
8065
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:370
8066
- msgid "Upgrade to higher versions"
8067
- msgstr ""
8068
-
8069
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:387
8070
- #, fuzzy
8071
- msgid "Current version"
8072
- msgstr "Версія"
8073
-
8074
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:390
8075
- msgid "Version"
8076
- msgstr "Версія"
8077
-
8078
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:406
8079
- #, fuzzy
8080
- msgid "Type"
8081
- msgstr "Увядзіце Ваш %sфиксированый дыяпазон дзён для вылучэння%s"
8082
-
8083
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:410
8084
- msgid "Used for"
8085
- msgstr ""
8086
-
8087
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:419
8088
- msgid "websites"
8089
- msgstr ""
8090
-
8091
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:421
8092
- msgid "website"
8093
- msgstr ""
8094
-
8095
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:427
8096
- #, fuzzy
8097
- msgid "Release date"
8098
- msgstr "Фармат даты"
8099
-
8100
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:437
8101
- #, fuzzy
8102
- msgid "Check Premium Features"
8103
- msgstr "Магчымасці"
8104
-
8105
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:439
8106
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1186
8107
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1187
8108
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1195
8109
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1196
8110
- msgid "Upgrade"
8111
- msgstr ""
8112
-
8113
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:441
8114
- #, fuzzy
8115
- msgid "Explore Premium Features"
8116
- msgstr "Магчымасці"
8117
-
8118
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:450
8119
- #, fuzzy
8120
- msgid "Support"
8121
- msgstr "Супериор "
8122
-
8123
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:455
8124
- #, fuzzy
8125
- msgid "Getting Started"
8126
- msgstr "Усталёўкі"
8127
-
8128
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:465
8129
- #, fuzzy
8130
- msgid "Contact email"
8131
- msgstr "Емейл (абавязковае поле)"
8132
-
8133
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:468
8134
- msgid "Rate plugin (thanks:)"
8135
- msgstr ""
8136
-
8137
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:531
8138
- msgid "Warning !!!"
8139
- msgstr ""
8140
-
8141
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:532
8142
- msgid "All booking data will be deleted when the plugin is deactivated."
8143
- msgstr ""
8144
-
8145
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:533
8146
- #, php-format
8147
- msgid ""
8148
- "If you want to save your booking data, please uncheck the %s\"Delete booking data\"%s at the"
8149
- msgstr ""
8150
-
8151
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:534
8152
- #, fuzzy
8153
- msgid "settings page"
8154
- msgstr "Пашыраныя налады"
8155
-
8156
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:584
8157
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:663
8158
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-functions.php:2284
8159
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1207
8160
- msgid "Settings"
8161
- msgstr "Усталёўкі"
8162
-
8163
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:588
8164
- msgid "Check new functionality in this plugin update."
8165
- msgstr ""
8166
-
8167
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:588
8168
- #, fuzzy
8169
- msgid "What's New"
8170
- msgstr "Новазеландскія даляры"
8171
-
8172
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:626
8173
- msgid "Booking"
8174
- msgstr "Браняванне"
8175
-
8176
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:663
8177
- #, fuzzy
8178
- msgid "Booking Calendar Settings"
8179
- msgstr "Уставіць Каляндар для бранявання"
8180
-
8181
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:673
8182
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-functions.php:2252
8183
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1166
8184
- msgid "Bookings"
8185
- msgstr "Браняванне"
8186
-
8187
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:704
8188
- #, fuzzy
8189
- msgid "Bookings listing"
8190
- msgstr "Браняванне"
8191
-
8192
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1074
8193
- msgid "Send email notification to customer about this operation"
8194
- msgstr ""
8195
-
8196
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1153
8197
- #, fuzzy
8198
- msgid "General"
8199
- msgstr "Чэрвень"
8200
-
8201
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1158
8202
- #, fuzzy
8203
- msgid "Fields"
8204
- msgstr "Палі формы"
8205
-
8206
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1159
8207
- #, fuzzy
8208
- msgid "Fields Settings"
8209
- msgstr "Палі формы"
8210
-
8211
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1162
8212
- msgid "Emails"
8213
- msgstr "Емейл "
8214
-
8215
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1163
8216
- #, fuzzy
8217
- msgid "Emails Settings"
8218
- msgstr "Усталёўкі"
8219
-
8220
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1170
8221
- #, fuzzy
8222
- msgid "Payments"
8223
- msgstr "Зрабіце аплату пры дапамозе Paypal - гэта хутка і бяспечна."
8224
-
8225
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1171
8226
- #, fuzzy
8227
- msgid "Payments Settings"
8228
- msgstr "Пашыраныя налады"
8229
-
8230
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1176
8231
- #, fuzzy
8232
- msgid "Search Settings"
8233
- msgstr "Пашыраныя налады"
8234
-
8235
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1181
8236
- #, fuzzy
8237
- msgid "Users Settings"
8238
- msgstr "Пашыраныя налады"
8239
-
8240
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1217
8241
- msgid "Features"
8242
- msgstr "Магчымасці"
8243
-
8244
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1217
8245
- #, fuzzy
8246
- msgid "Live Demos"
8247
- msgstr "Анлайн дэма "
8248
-
8249
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1217
8250
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1219
8251
- #, fuzzy
8252
- msgid "Contact"
8253
- msgstr "Панядзелак"
8254
-
8255
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1217
8256
- msgid "Buy"
8257
- msgstr "Купіць "
8258
-
8259
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1496
8260
- #, fuzzy
8261
- msgid "Calendar is loading..."
8262
- msgstr "Уставіць Каляндар для бранявання"
8263
-
8264
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1676
8265
- msgid "Booking resource type is not defined. Its can be, when at the URL is wrong booking hash."
8266
- msgstr ""
8267
-
8268
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1805
8269
- #, fuzzy, php-format
8270
- msgid ""
8271
- "%sWarning! Booking calendar for this booking resource are already at the page, please check more "
8272
- "about this issue at %sthis page%s"
8273
- msgstr "Каляндар бранявання для гэтага рэсурсу ўжо існуе на гэтай старонцы"
8274
-
8275
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1988
8276
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1990
8277
- msgid "Wrong booking hash in URL. Probably hash is expired."
8278
- msgstr ""
8279
-
8280
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1994
8281
- msgid "You do not set any parameters for booking editing"
8282
- msgstr ""
8283
-
8284
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:2113
8285
- #, fuzzy, php-format
8286
- msgid ""
8287
- "Thank you for your online booking. %s We will send confirmation of your booking as soon as "
8288
- "possible."
8289
- msgstr "Дзякуй за браняванне. %sМы адразу ж звяжамся з Вамі для пацверджання бранявання."
8290
-
8291
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:2193
8292
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:2198
8293
- #, fuzzy
8294
- msgid "New booking"
8295
- msgstr "Дадаць новае браняванне"
8296
-
8297
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:2194
8298
- #, fuzzy, php-format
8299
- msgid ""
8300
- "You need to approve a new booking %s for: %s Person detail information:%s Currently a new "
8301
- "booking is waiting for approval. Please visit the moderation panel%sThank you, %s"
8302
- msgstr ""
8303
- "Вы павінны пацвердзіць новую бронь %sна даты: %sИнформация пра твар якое зрабіла рэзерв: "
8304
- "%sСпасибо, за карыстанне сэрвісам бранявання.%s"
8305
-
8306
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:2200
8307
- #, fuzzy, php-format
8308
- msgid ""
8309
- "Your reservation %s for: %s is processing now! We will send confirmation by email. %sYou can "
8310
- "edit this booking at this page: %s Thank you, %s"
8311
- msgstr ""
8312
- "Ваша бронь %sна даты: %s была зменена адміністратарам. %sСпасибо за карыстанне сэрвісам "
8313
- "бранявання.%s"
8314
-
8315
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:2202
8316
- #, fuzzy, php-format
8317
- msgid ""
8318
- "Your reservation %s for: %s is processing now! We will send confirmation by email. %s Thank you, "
8319
- "%s"
8320
- msgstr ""
8321
- "Ваша бронь %sна даты: %s была зменена адміністратарам. %sСпасибо за карыстанне сэрвісам "
8322
- "бранявання.%s"
8323
-
8324
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:2207
8325
- #, fuzzy
8326
- msgid "Your booking has been approved"
8327
- msgstr "Ваш рэзерв пацверджаны"
8328
-
8329
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:2209
8330
- #, fuzzy, php-format
8331
- msgid ""
8332
- "Your reservation %s for: %s has been approved.%sYou can edit the booking on this page: %s Thank "
8333
- "you, %s"
8334
- msgstr "Ваша бронь %sна даты: %sбыла пацверджана. %sСпасибо за карыстанне сэрвісам бранявання.%s"
8335
-
8336
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:2210
8337
- #, fuzzy, php-format
8338
- msgid "Your booking %s for: %s has been approved.%sThank you, %s"
8339
- msgstr "Ваша бронь %sна даты: %sбыла пацверджана. %sСпасибо за карыстанне сэрвісам бранявання.%s"
8340
-
8341
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:2213
8342
- #, fuzzy
8343
- msgid "Your booking has been declined"
8344
- msgstr "Ваша бронь была адхілена"
8345
-
8346
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:2214
8347
- #, fuzzy, php-format
8348
- msgid "Your booking %s for: %s has been canceled. %sThank you, %s"
8349
- msgstr "Ваша бронь %sна даты: %s была адхілена. %sСпасибо за карыстанне сэрвісам бранявання.%s"
8350
-
8351
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:2224
8352
- msgid "Booking form"
8353
- msgstr "Форма бранявання"
8354
-
8355
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:2235
8356
- #, fuzzy
8357
- msgid "Available"
8358
- msgstr "даступныя дні "
8359
-
8360
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:2239
8361
- msgid "Booked"
8362
- msgstr "Забранявана "
8363
-
8364
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:2242
8365
- #, fuzzy
8366
- msgid "Partially booked"
8367
- msgstr "Забранявана "
8368
-
8369
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:2983
8370
- #, fuzzy
8371
- msgid "Technical support section"
8372
- msgstr "Премиум падтрымка"
8373
-
8374
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:2987
8375
- #, fuzzy
8376
- msgid "Reindex booking data"
8377
- msgstr "Дадаць рэзерв"
8378
-
8379
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:2989
8380
- msgid "Reindex"
8381
- msgstr ""
8382
-
8383
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:2995
8384
- msgid ""
8385
- " Click, if you want to reindex booking data by booking dates sort field (Your installation/"
8386
- "update of the plugin must be successful)."
8387
- msgstr ""
8388
-
8389
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:3040
8390
- #, php-format
8391
- msgid "%s Found %s not indexed bookings %s"
8392
- msgstr ""
8393
-
8394
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:3055
8395
- #, php-format
8396
- msgid "%s Finish getting sort dates. %s"
8397
- msgstr ""
8398
-
8399
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:3064
8400
- #, fuzzy, php-format
8401
- msgid "Updated booking: %s"
8402
- msgstr "Абноўлена паспяхова"
8403
-
8404
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-functions.php:326
8405
- msgid "no"
8406
- msgstr "не"
8407
-
8408
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-functions.php:1218
8409
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-functions.php:1608
8410
- #, fuzzy
8411
- msgid "Booking system"
8412
- msgstr "Дадаць рэзерв"
8413
-
8414
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-functions.php:2392
8415
- msgid "Warning! Some error occur, during sending registration request."
8416
- msgstr ""
8417
-
8418
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-functions.php:2397
8419
- msgid ""
8420
- "Please refresh this page and if the same error appear again contact support by email (with info "
8421
- "about order number and website) for finishing the registrations"
8422
- msgstr ""
8423
-
8424
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-functions.php:2457
8425
- #, fuzzy
8426
- msgid "version"
8427
- msgstr "Версія"
8428
-
8429
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-functions.php:2459
8430
- #, php-format
8431
- msgid "Add your %s on %swordpress.org%s, if you enjoyed by this plugin."
8432
- msgstr ""
8433
-
8434
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-widget.php:133
8435
- msgid "Footer"
8436
- msgstr "Ніжняя частка"
8437
-
8438
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-widget.php:138
8439
- #, php-format
8440
- msgid "Example: %sMake booking here%s"
8441
- msgstr "Прыклад: %sРезервируйте тут%s"
8442
-
8443
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-widget.php:146
8444
- #, php-format
8445
- msgid "%sSeveral widgets are supported at %spaid versions%s."
8446
- msgstr ""
8447
-
8448
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:41
8449
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:573
8450
- msgid "Form"
8451
- msgstr "Форма"
8452
-
8453
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:53
8454
- #, fuzzy
8455
- msgid "Auto cancellation / approval"
8456
- msgstr "Чыннік адмовы"
8457
-
8458
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:63
8459
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:923
8460
- #, fuzzy
8461
- msgid "Advanced"
8462
- msgstr "Пашыраныя налады"
8463
-
8464
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:67
8465
- #, fuzzy
8466
- msgid "Menu access"
8467
- msgstr "Дэма старонка"
8468
-
8469
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:70
8470
- msgid "Uninstall"
8471
- msgstr ""
8472
-
8473
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:73
8474
- #, fuzzy
8475
- msgid "Technical"
8476
- msgstr "Премиум падтрымка"
8477
-
8478
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:362
8479
- #, fuzzy
8480
- msgid "Settings saved"
8481
- msgstr "Фільтр захаваны"
8482
-
8483
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:392
8484
- #, fuzzy
8485
- msgid "Calendar Skin"
8486
- msgstr "Уставіць Каляндар для бранявання"
8487
-
8488
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:416
8489
- #, fuzzy
8490
- msgid "Select the skin of the booking calendar"
8491
- msgstr "Каляндар бранявання"
8492
-
8493
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:421
8494
- #, fuzzy
8495
- msgid "Number of months"
8496
- msgstr "Лік наведвальнікаў"
8497
-
8498
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:426
8499
- msgid "month(s)"
8500
- msgstr "месяц(ы)"
8501
-
8502
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:431
8503
- msgid "year(s)"
8504
- msgstr "год(а)"
8505
-
8506
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:434
8507
- #, fuzzy
8508
- msgid "Select the maximum number of months to show (scroll)"
8509
- msgstr "Абярыце максімальную колькасць месяцаў у календары"
8510
-
8511
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:439
8512
- #, fuzzy
8513
- msgid "Start Day of the week"
8514
- msgstr "Абярыце дзень пачатку тыдня"
8515
-
8516
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:450
8517
- msgid "Select your start day of the week"
8518
- msgstr "Абярыце дзень пачатку тыдня"
8519
-
8520
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:457
8521
- #, fuzzy
8522
- msgid "Unavailable days from today"
8523
- msgstr "Недаступныя дні"
8524
-
8525
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:464
8526
- msgid "Select number of unavailable days in calendar start from today."
8527
- msgstr ""
8528
-
8529
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:470
8530
- #, fuzzy
8531
- msgid "Unavailable week days"
8532
- msgstr "Недаступныя дні "
8533
-
8534
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:500
8535
- msgid "Check unavailable days in calendars. This option will overwrite all other settings."
8536
- msgstr ""
8537
-
8538
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:510
8539
- #, fuzzy
8540
- msgid "Type of days selection in calendar"
8541
- msgstr "Абярыце, калі Вы жадаеце выбіраць некалькі дзён у календары"
8542
-
8543
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:513
8544
- #, fuzzy
8545
- msgid "Type of days selection"
8546
- msgstr "Вылучэнне некалькіх дзён"
8547
-
8548
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:526
8549
- #, fuzzy
8550
- msgid "Single day"
8551
- msgstr "Дзень пачатку дыяпазону"
8552
-
8553
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:536
8554
- #, fuzzy
8555
- msgid "Multiple days"
8556
- msgstr "Дні тыдня "
8557
-
8558
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:547
8559
- #, fuzzy
8560
- msgid "Range days"
8561
- msgstr "Дзень пачатку дыяпазону"
8562
-
8563
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:588
8564
- #, fuzzy
8565
- msgid "Check the box to activate CAPTCHA inside the booking form."
8566
- msgstr "Вылучыце, калі жадаеце актываваць CAPTCHA усярэдзіне формы бранявання"
8567
-
8568
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:595
8569
- #, fuzzy
8570
- msgid "Auto-fill fields"
8571
- msgstr "Палі формы"
8572
-
8573
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:598
8574
- #, fuzzy
8575
- msgid "Check the box to activate auto-fill form fields for logged in users."
8576
- msgstr "Вылучыце, калі жадаеце актываваць CAPTCHA усярэдзіне формы бранявання"
8577
-
8578
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:605
8579
- #, fuzzy
8580
- msgid "Use CSS BootStrap"
8581
- msgstr "Выкарыстоўвайце гэтыя пазнакі для налады"
8582
-
8583
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:610
8584
- msgid "Using BootStrap CSS for the form fields"
8585
- msgstr ""
8586
-
8587
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:613
8588
- msgid "You must not deactivate loading BootStrap files at advanced section of these settings!"
8589
- msgstr ""
8590
-
8591
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:630
8592
- #, fuzzy
8593
- msgid "Action after booking is done"
8594
- msgstr "Паказаць уласцівасці паведамлення падзякі"
8595
-
8596
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:638
8597
- #, fuzzy
8598
- msgid "Show \"Thank You\" message"
8599
- msgstr "Паказаць уласцівасці паведамлення падзякі"
8600
-
8601
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:645
8602
- msgid "Redirect visitor to a new \"Thank You\" page"
8603
- msgstr ""
8604
-
8605
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:649
8606
- msgid "This action will have no effect, if the payment form(s) is active!"
8607
- msgstr ""
8608
-
8609
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:658
8610
- #, fuzzy
8611
- msgid "Message title"
8612
- msgstr "Дапаможнае тэкставае поле"
8613
-
8614
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:661
8615
- #, fuzzy, php-format
8616
- msgid "Type title of message %safter booking has done by user%s"
8617
- msgstr "Увядзіце загаловак новага бранявання %s пасля таго як браняванне зроблена карыстачом%s "
8618
-
8619
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:666
8620
- #, fuzzy
8621
- msgid "Time of message showing"
8622
- msgstr "Фармат даты"
8623
-
8624
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:669
8625
- msgid "Set duration of time (milliseconds) to show this message"
8626
- msgstr ""
8627
-
8628
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:676
8629
- msgid "URL of \"thank you\" page"
8630
- msgstr ""
8631
-
8632
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:681
8633
- #, php-format
8634
- msgid "Type URL of %s\"Thank You\" page%s"
8635
- msgstr ""
8636
-
8637
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:696
8638
- #, fuzzy
8639
- msgid "Listing of bookings"
8640
- msgstr "Браняванне"
8641
-
8642
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:699
8643
- #, fuzzy
8644
- msgid "Default booking admin page"
8645
- msgstr "Тып бранявання"
8646
-
8647
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:702
8648
- #, fuzzy
8649
- msgid "Bookings Listing"
8650
- msgstr "Браняванне"
8651
-
8652
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:710
8653
- #, fuzzy
8654
- msgid "Select your default view mode of bookings at the booking listing page"
8655
- msgstr "Сезонныя змены коштаў"
8656
-
8657
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:720
8658
- msgid "Default calendar view mode"
8659
- msgstr ""
8660
-
8661
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:772
8662
- #, fuzzy
8663
- msgid "Select your default calendar view mode at booking calendar overview page"
8664
- msgstr "Сезонныя змены коштаў"
8665
-
8666
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:782
8667
- #, fuzzy
8668
- msgid "Default toolbar tab"
8669
- msgstr "Па змаўчанні"
8670
-
8671
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:784
8672
- #, fuzzy
8673
- msgid "Filter tab"
8674
- msgstr "Фільтр захаваны"
8675
-
8676
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:785
8677
- #, fuzzy
8678
- msgid "Actions tab"
8679
- msgstr "Функцыі "
8680
-
8681
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:792
8682
- #, fuzzy
8683
- msgid "Select your default opened tab in toolbar at booking listing page"
8684
- msgstr "Сезонныя змены коштаў"
8685
-
8686
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:797
8687
- #, fuzzy
8688
- msgid "Bookings number per page"
8689
- msgstr "Тып бранявання"
8690
-
8691
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:806
8692
- #, fuzzy
8693
- msgid "Select number of bookings per page in booking listing"
8694
- msgstr "Абярыце максімальную колькасць месяцаў у календары"
8695
-
8696
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:812
8697
- #, fuzzy
8698
- msgid "Bookings default order"
8699
- msgstr "Браняванне"
8700
-
8701
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:815
8702
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:817
8703
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:827
8704
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:832
8705
- msgid "ASC"
8706
- msgstr ""
8707
-
8708
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:816
8709
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:818
8710
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:828
8711
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:833
8712
- msgid "DESC"
8713
- msgstr ""
8714
-
8715
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:841
8716
- #, fuzzy
8717
- msgid "Select your default order of bookings in the booking listing"
8718
- msgstr "Сезонныя змены коштаў"
8719
-
8720
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:852
8721
- msgid "Date Format"
8722
- msgstr "Фармат даты"
8723
-
8724
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:856
8725
- msgid "F j, Y"
8726
- msgstr "F j, Y"
8727
-
8728
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:878
8729
- #, fuzzy, php-format
8730
- msgid ""
8731
- "Type your date format for emails and the booking table. %sDocumentation on date formatting%s"
8732
- msgstr ""
8733
- "Увядзіце Ваш фармат даты для електронной пошты і табліцы бранявання. %s Дакументацыя па фармаце "
8734
- "для дат%s "
8735
-
8736
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:886
8737
- msgid "Dates view"
8738
- msgstr "Выгляд дат"
8739
-
8740
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:889
8741
- msgid "Short days view"
8742
- msgstr "Скарочаны выгляд дат"
8743
-
8744
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:890
8745
- msgid "Wide days view"
8746
- msgstr "Пашыраны выгляд дат"
8747
-
8748
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:892
8749
- #, fuzzy
8750
- msgid "Select the default view for dates on the booking tables"
8751
- msgstr "Абярыце тып паказу дат па змаўчанні ў табліцы рэзервавання і емейле"
8752
-
8753
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:900
8754
- #, fuzzy
8755
- msgid "Show / hide hints"
8756
- msgstr "Паказаць даведкавае поле для ўводу"
8757
-
8758
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:906
8759
- #, fuzzy
8760
- msgid "Check this box if you want to show help hints on the admin panel."
8761
- msgstr "Абярыце, калі Вы жадаеце паказаць легенду дзён пад календаром "
8762
-
8763
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:937
8764
- msgid "Checking to prevent double booking, during submitting booking"
8765
- msgstr ""
8766
-
8767
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:944
8768
- msgid "This feature can impact to speed of submitting booking. Do you really want to do this?"
8769
- msgstr ""
8770
-
8771
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:946
8772
- #, fuzzy, php-format
8773
- msgid ""
8774
- "Check this box, if you want to %sre-check if the selected dates available during submitting "
8775
- "booking%s."
8776
- msgstr "Абярыце, калі Вы жадаеце паказаць легенду дзён пад календаром "
8777
-
8778
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:950
8779
- msgid ""
8780
- "This feature useful to prevent double booking of the same date(s) or time(s), if several "
8781
- "visitors try to book the same date(s) in same calendar during the same time."
8782
- msgstr ""
8783
-
8784
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:953
8785
- msgid "This feature does not work for booking resources with capacity higher than one."
8786
- msgstr ""
8787
-
8788
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:962
8789
- msgid "Allow unlimited bookings per same day(s)"
8790
- msgstr ""
8791
-
8792
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:969
8793
- msgid ""
8794
- "You allow unlimited number of bookings per same dates, its can be a reason of double bookings on "
8795
- "the same date. Do you really want to do this?"
8796
- msgstr ""
8797
-
8798
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:971
8799
- #, php-format
8800
- msgid ""
8801
- "Check this box, if you want to %sset any days as available%s in calendar. Your visitors will be "
8802
- "able to make %sunlimited bookings per same date(s) in calendar and do not see any booked "
8803
- "date(s)%s of other visitors."
8804
- msgstr ""
8805
-
8806
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:987
8807
- msgid "Show advanced settings of JavaScript loading"
8808
- msgstr ""
8809
-
8810
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:988
8811
- msgid "Hide advanced settings of JavaScript loading"
8812
- msgstr ""
8813
-
8814
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:997
8815
- msgid "Disable Bootstrap loading on Front-End"
8816
- msgstr ""
8817
-
8818
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1003
8819
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1018
8820
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1035
8821
- msgid ""
8822
- "You are need to be sure what you are doing. You are disable of loading some JavaScripts Do you "
8823
- "really want to do this?"
8824
- msgstr ""
8825
-
8826
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1005
8827
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1020
8828
- msgid ""
8829
- " If your theme or some other plugin is load the BootStrap JavaScripts, you can disable loading "
8830
- "of this script by this plugin."
8831
- msgstr ""
8832
-
8833
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1012
8834
- msgid "Disable Bootstrap loading on Back-End"
8835
- msgstr ""
8836
-
8837
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1029
8838
- msgid "Load JS and CSS files only on specific pages"
8839
- msgstr ""
8840
-
8841
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1037
8842
- msgid "Activate loading of CSS and JavaScript files of plugin only at specific pages."
8843
- msgstr ""
8844
-
8845
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1051
8846
- msgid "Relative URLs of pages, where to load plugin CSS and JS files"
8847
- msgstr ""
8848
-
8849
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1056
8850
- #, php-format
8851
- msgid ""
8852
- "Enter relative URLs of pages, where you have Booking Calendar elements (booking forms or "
8853
- "availability calendars). Please enter one URL per line. Example: %s"
8854
- msgstr ""
8855
-
8856
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1074
8857
- #, fuzzy
8858
- msgid "Show settings of powered by notice"
8859
- msgstr "Паказаць усталёўкі па недаступных длянм тыдні"
8860
-
8861
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1075
8862
- #, fuzzy
8863
- msgid "Hide settings of powered by notice"
8864
- msgstr "Паказаць усталёўкі па недаступных длянм тыдні"
8865
-
8866
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1083
8867
- #, fuzzy
8868
- msgid "Powered by notice"
8869
- msgstr "Капірайт"
8870
-
8871
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1088
8872
- msgid " Turn On/Off powered by \"Booking Calendar\" notice under the calendar."
8873
- msgstr ""
8874
-
8875
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1098
8876
- #, fuzzy
8877
- msgid "Help and info notices"
8878
- msgstr "Інфа"
8879
-
8880
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1104
8881
- #, fuzzy
8882
- msgid " Turn On/Off version notice and help info links at booking admin panel."
8883
- msgstr "Уключыць/Выключыць %s капірайт унізе сайта"
8884
-
8885
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1133
8886
- msgid "Information"
8887
- msgstr "Інфармацыя"
8888
-
8889
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1162
8890
- msgid "User permissions for plugin menu pages"
8891
- msgstr ""
8892
-
8893
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1222
8894
- #, fuzzy
8895
- msgid "Select user access level for the menu pages of plugin"
8896
- msgstr "Абярыце ўзровень доступу карыстача для адміністрацыйнай старонкі"
8897
-
8898
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1232
8899
- msgid "Uninstall / deactivation"
8900
- msgstr ""
8901
-
8902
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1236
8903
- #, fuzzy
8904
- msgid "Delete booking data, when plugin deactivated"
8905
- msgstr "калі ўбудова дэактываваны"
8906
-
8907
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1241
8908
- msgid ""
8909
- "If you check this option, all booking data will be deleted when you uninstall this plugin. Do "
8910
- "you really want to do this?"
8911
- msgstr ""
8912
-
8913
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1243
8914
- #, fuzzy
8915
- msgid "Check this box to delete all booking data when you uninstal this plugin."
8916
- msgstr "Праверце, калі Вы жадаеце выдаліць дадзеныя па браняванні пры выдаленні ўбудовы"
8917
-
8918
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1363
8919
- #, fuzzy
8920
- msgid "Show legend below calendar"
8921
- msgstr "Увядзіце колькасць месяцаў паказваных у календары."
8922
-
8923
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1371
8924
- #, fuzzy
8925
- msgid "Check this box to display a legend of dates below the booking calendar."
8926
- msgstr "Абярыце, калі Вы жадаеце паказаць легенду дзён пад календаром "
8927
-
8928
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1381
8929
- #, fuzzy
8930
- msgid "Available item"
8931
- msgstr "Доступа: "
8932
-
8933
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1387
8934
- #, php-format
8935
- msgid "Activate and type your %stitle of available%s item in legend"
8936
- msgstr ""
8937
-
8938
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1393
8939
- #, fuzzy
8940
- msgid "Pending item"
8941
- msgstr "Якія чакаюць сцвярджэнні"
8942
-
8943
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1399
8944
- #, php-format
8945
- msgid "Activate and type your %stitle of pending%s item in legend"
8946
- msgstr ""
8947
-
8948
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1405
8949
- #, fuzzy
8950
- msgid "Approved item"
8951
- msgstr "Пацверджана"
8952
-
8953
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1411
8954
- #, php-format
8955
- msgid "Activate and type your %stitle of approved%s item in legend"
8956
- msgstr ""
8957
-
8958
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1417
8959
- #, fuzzy
8960
- msgid "Partially booked item"
8961
- msgstr "Забранявана "
8962
-
8963
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1423
8964
- #, php-format
8965
- msgid "Activate and type your %stitle of partially booked%s item in legend"
8966
- msgstr ""
8967
-
8968
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1424
8969
- msgid "Partially booked item - day, which is booked for the specific time-slot(s)."
8970
- msgstr ""
8971
-
8972
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1448
8973
- #, fuzzy
8974
- msgid "Form fields labels"
8975
- msgstr "Палі формы"
8976
-
8977
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1472
8978
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1515
8979
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1660
8980
- #, fuzzy
8981
- msgid "Field Label"
8982
- msgstr "Некоректно ўведзены емейл"
8983
-
8984
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1489
8985
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1532
8986
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1577
8987
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1623
8988
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1677
8989
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1720
8990
- #, fuzzy
8991
- msgid "Required"
8992
- msgstr "Імя (абавязковае поле)"
8993
-
8994
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1492
8995
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1535
8996
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1635
8997
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1680
8998
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1723
8999
- msgid "Activate or deactivate field and change the label title"
9000
- msgstr ""
9001
-
9002
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1560
9003
- #, fuzzy
9004
- msgid "Email Label"
9005
- msgstr "Емейл (абавязковае поле)"
9006
-
9007
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1580
9008
- msgid "Change the label title of this field. Email is obligatory field in booking form."
9009
- msgstr ""
9010
-
9011
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1606
9012
- #, fuzzy
9013
- msgid "Selectbox Label"
9014
- msgstr "Гэта поле неабходна"
9015
-
9016
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1629
9017
- msgid "Selectbox Values"
9018
- msgstr ""
9019
-
9020
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1636
9021
- msgid "Enter dropdown options. One option per line."
9022
- msgstr ""
9023
-
9024
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1703
9025
- msgid "Textarea Label"
9026
- msgstr ""
9027
-
9028
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1997
9029
- #, fuzzy, php-format
9030
- msgid ""
9031
- "For example: \"You have a new reservation %s on the following date(s): %s Contact information: "
9032
- "%s You can approve or cancel this booking at: %s Thank you, Reservation service.\""
9033
- msgstr ""
9034
- "На прыклад: \"Вы павінны пацвердзіць новую бронь %s на даты: %s Дэталёвая інфармацыя пра твар "
9035
- "якое зрабіла браняванне:%s Дзякуй за карыстанне сэрвісам бранявання.\""
9036
-
9037
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2071
9038
- #, fuzzy, php-format
9039
- msgid ""
9040
- "For example: \"Your reservation %s on these date(s): %s is processing now! We will send "
9041
- "confirmation by email. %s Thank you, Reservation service.\""
9042
- msgstr ""
9043
- "Напрыклад: \" Ваша бронь %s на даты: %s была зменена адміністратарам. %s Дзякуй за карыстанне "
9044
- "сэрвісам бранявання.\""
9045
-
9046
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2157
9047
- #, fuzzy, php-format
9048
- msgid ""
9049
- "For example: \"Your reservation %s on these date(s): %s has been approved.%s Thank you, "
9050
- "Reservation service.\""
9051
- msgstr ""
9052
- "Напрыклад: \"Ваша бронь %s на даты: %s была пацверджана.%s Дзякуй за карыстанне сэрвісам "
9053
- "бранявання .\""
9054
-
9055
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2283
9056
- msgid ""
9057
- "You can use (in subject and content of email template) any shortcodes, which you used in the "
9058
- "booking form. Use the shortcodes in the same way as you used them in the content form at "
9059
- "Settings Fields page."
9060
- msgstr ""
9061
-
9062
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2291
9063
- #, fuzzy, php-format
9064
- msgid "%s - inserting data info about the booking"
9065
- msgstr "%s - уставіць даты бранявання"
9066
-
9067
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2313
9068
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2321
9069
- #, fuzzy, php-format
9070
- msgid "%s - inserting your site URL "
9071
- msgstr "%s - дадаць новы радок"
9072
-
9073
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2314
9074
- #, fuzzy, php-format
9075
- msgid "%s - inserting IP address of the user who made this action "
9076
- msgstr "%s[dates]%s - дадаць спіс забраняваных дат "
9077
-
9078
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2315
9079
- #, php-format
9080
- msgid ""
9081
- "%s - inserting contents of the User-Agent: header from the current request, if there is one "
9082
- msgstr ""
9083
-
9084
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2316
9085
- #, php-format
9086
- msgid "%s - inserting address of the page (if any), where visitor make this action "
9087
- msgstr ""
9088
-
9089
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2317
9090
- #, fuzzy, php-format
9091
- msgid "%s - inserting date of this action "
9092
- msgstr "%s - дадаць новы радок"
9093
-
9094
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2318
9095
- #, fuzzy, php-format
9096
- msgid "%s - inserting time of this action "
9097
- msgstr "%sвведите час пачатку бранявання%s"
9098
-
9099
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2325
9100
- #, fuzzy, php-format
9101
- msgid "%s - inserting moderate link of new booking "
9102
- msgstr "%s - уставіць даты бранявання"
9103
-
9104
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2329
9105
- #, php-format
9106
- msgid ""
9107
- "%s - inserting link to the page where visitor can edit the reservation, (possible to use the %s "
9108
- "parameter for setting different %s of this page. Example: %s )"
9109
- msgstr ""
9110
-
9111
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2331
9112
- #, php-format
9113
- msgid ""
9114
- "%s - inserting link to the page where visitor can cancel the reservation, (possible to use the "
9115
- "%s parameter for setting different %s of this page. Example: %s )"
9116
- msgstr ""
9117
-
9118
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2333
9119
- #, php-format
9120
- msgid ""
9121
- "%s - inserting link to payment page where visitor can pay for the reservation (possible to use "
9122
- "the %s parameter for setting different %s of this page. Example: %s )"
9123
- msgstr ""
9124
-
9125
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2337
9126
- #, fuzzy, php-format
9127
- msgid "%s - add the reason for booking payment, you can enter it before sending email, "
9128
- msgstr "%s - уставіць чыннік адмовы"
9129
-
9130
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2341
9131
- #, fuzzy, php-format
9132
- msgid "%s - add the reason booking was cancelled, you can enter it before sending email, "
9133
- msgstr "%s - уставіць чыннік адмовы"
9134
-
9135
- #, fuzzy
9136
- #~ msgid "Set the deposit payment required for the payment form"
9137
- #~ msgstr "Увядзіце назву сэрвісу ці чыннік для плацяжоў тут."
9138
-
9139
- #, fuzzy
9140
- #~ msgid "Title:"
9141
- #~ msgstr "Загаловак"
9142
-
9143
- #, fuzzy
9144
- #~ msgid "Feed URL"
9145
- #~ msgstr "Спасылка для вяртання з Paypal-а"
9146
-
9147
- #, fuzzy
9148
- #~ msgid "%s - new line "
9149
- #~ msgstr "%s - дадаць новы радок"
9150
-
9151
- #, fuzzy
9152
- #~ msgid "Reset to default search form content"
9153
- #~ msgstr "Абнавіць да значэння па змаўчанні"
9154
-
9155
- #, fuzzy
9156
- #~ msgid "Customization of found booking resource items"
9157
- #~ msgstr "Кошты бранявання"
9158
-
9159
- #, fuzzy
9160
- #~ msgid "Customization of booking form fields"
9161
- #~ msgstr "Палі формы"
9162
-
9163
- #, fuzzy
9164
- #~ msgid ""
9165
- #~ "Customization of fields, which showing in the Booking Listing page for the specific booking"
9166
- #~ msgstr "Ліст наведвальніку пасля рэдагавання брані."
9167
-
9168
- #, fuzzy
9169
- #~ msgid "Content of Booking Fields"
9170
- #~ msgstr "Палі формы"
9171
-
9172
- #, fuzzy
9173
- #~ msgid "Commercial versions"
9174
- #~ msgstr "купіць Прафесійную версію"
9175
-
9176
- #~ msgid "Buy now"
9177
- #~ msgstr "Купіць цяпер"
9178
-
9179
- #, fuzzy
9180
- #~ msgid "Insertion of"
9181
- #~ msgstr "Інфармацыя"
9182
-
9183
- #, fuzzy
9184
- #~ msgid "settings"
9185
- #~ msgstr "Усталёўкі"
9186
-
9187
- #, fuzzy
9188
- #~ msgid "Booking settings customization"
9189
- #~ msgstr "Усталёўкі"
9190
-
9191
- #, fuzzy
9192
- #~ msgid "Customization of email templates"
9193
- #~ msgstr "Емейл"
9194
-
9195
- #, fuzzy
9196
- #~ msgid "Customization of search form"
9197
- #~ msgstr "Форма"
9198
-
9199
- #, fuzzy
9200
- #~ msgid "Manage users settings"
9201
- #~ msgstr "Усталёўкі"
9202
-
9203
- #, fuzzy
9204
- #~ msgid "Upgrade to higher versions."
9205
- #~ msgstr "купіць Прафесійную версію"
9206
-
9207
- #~ msgid "Admin email"
9208
- #~ msgstr "Адміністрацыйны емейл"
9209
-
9210
- #~ msgid "Copyright notice"
9211
- #~ msgstr "Капірайт"
9212
-
9213
- #~ msgid "Number of visitors"
9214
- #~ msgstr "Лік наведвальнікаў"
9215
-
9216
- #, fuzzy
9217
- #~ msgid "management"
9218
- #~ msgstr "Пашыраная налада коштаў"
9219
-
9220
- #, fuzzy
9221
- #~ msgid "Customization of"
9222
- #~ msgstr "Налада Paypal"
9223
-
9224
- #, fuzzy
9225
- #~ msgid "Setting"
9226
- #~ msgstr "Усталёўкі"
9227
-
9228
- #, fuzzy
9229
- #~ msgid "Creation Date"
9230
- #~ msgstr "Фармат даты"
9231
-
9232
- #, fuzzy
9233
- #~ msgid "Welcome to WP Booking Calendar"
9234
- #~ msgstr "Каляндар бранявання"
9235
-
9236
- #, fuzzy
9237
- #~ msgid "Welcome to WP Booking Calendar %s"
9238
- #~ msgstr "Каляндар бранявання"
9239
-
9240
- #, fuzzy
9241
- #~ msgid "Multilingual Form Fields"
9242
- #~ msgstr "налада палёў"
9243
-
9244
- #, fuzzy
9245
- #~ msgid "New translations"
9246
- #~ msgstr "%sНовое браняванне%s"
9247
-
9248
- #, fuzzy
9249
- #~ msgid "Easy to customize"
9250
- #~ msgstr "Налада эл. пошты"
9251
-
9252
- #, fuzzy
9253
- #~ msgid "Smoother Booking Experience"
9254
- #~ msgstr "Паслугі бранявання"
9255
-
9256
- #, fuzzy
9257
- #~ msgid "Activate or Deactivate fields"
9258
- #~ msgstr "Актыўна"
9259
-
9260
- #, fuzzy
9261
- #~ msgid "Available in"
9262
- #~ msgstr "Доступа: "
9263
-
9264
- #, fuzzy
9265
- #~ msgid "versions"
9266
- #~ msgstr "Версія"
9267
-
9268
- #, fuzzy
9269
- #~ msgid "Conditions for Deposit payment"
9270
- #~ msgstr "%s - уставіць даты бранявання"
9271
-
9272
- #, fuzzy
9273
- #~ msgid "Custom form selection"
9274
- #~ msgstr "Лік дзён"
9275
-
9276
- #, fuzzy
9277
- #~ msgid "Users Pagination"
9278
- #~ msgstr "Пашыраная налада коштаў"
9279
-
9280
- #, fuzzy
9281
- #~ msgid "Show Pending Days as Available"
9282
- #~ msgstr "Паказаць усе даты"
9283
-
9284
- #, fuzzy
9285
- #~ msgid "Auto Decline"
9286
- #~ msgstr "Выдалена"
9287
-
9288
- #, fuzzy
9289
- #~ msgid "Configure Number of Days selection"
9290
- #~ msgstr "Вылучэнне некалькіх дзён"
9291
-
9292
- #, fuzzy
9293
- #~ msgid "New form Fields and parameters"
9294
- #~ msgstr "Налада формы палёў і кантэнту "
9295
-
9296
- #, fuzzy
9297
- #~ msgid "Payments and Costs."
9298
- #~ msgstr "Налада Paypal і коштаў "
9299
-
9300
- #, fuzzy
9301
- #~ msgid "Currency Format"
9302
- #~ msgstr "купіць Прафесійную версію"
9303
-
9304
- #, fuzzy
9305
- #~ msgid "%s Support"
9306
- #~ msgstr "Супериор "
9307
-
9308
- #, fuzzy
9309
- #~ msgid "Edit Past Bookings"
9310
- #~ msgstr "Браняванне"
9311
-
9312
- #, fuzzy
9313
- #~ msgid "Checking End Time only"
9314
- #~ msgstr "Дзеці"
9315
-
9316
- #, fuzzy
9317
- #~ msgid "Advanced Additional Cost"
9318
- #~ msgstr "Дадатковы кошт для "
9319
-
9320
- #, fuzzy
9321
- #~ msgid "Use 'Unavailable days from today' settings in Search Form"
9322
- #~ msgstr "Недаступныя дні"
9323
-
9324
- #, fuzzy
9325
- #~ msgid "Child booking resources"
9326
- #~ msgstr "Тып бранявання"
9327
-
9328
- #, fuzzy
9329
- #~ msgid "Booking coupons management"
9330
- #~ msgstr "Тып бранявання "
9331
-
9332
- #, fuzzy
9333
- #~ msgid "Delete this coupon"
9334
- #~ msgstr "Выдаленне дадзеных па браняванні"
9335
-
9336
- #, fuzzy
9337
- #~ msgid "The cost for payment"
9338
- #~ msgstr "%s - уставіць даты бранявання"
9339
-
9340
- #, fuzzy
9341
- #~ msgid "Add New Form"
9342
- #~ msgstr "Дадаць новы тып"
9343
-
9344
- #, fuzzy
9345
- #~ msgid "Booking form:"
9346
- #~ msgstr "Форма бранявання"
9347
-
9348
- #, fuzzy
9349
- #~ msgid "Update Availability"
9350
- #~ msgstr "Даступнасць"
9351
-
9352
- #, fuzzy
9353
- #~ msgid "Cost of 1 day"
9354
- #~ msgstr "Лік дзён"
9355
-
9356
- #, fuzzy
9357
- #~ msgid "Additional cost in USD per 1 day"
9358
- #~ msgstr "Дадатковы кошт для "
9359
-
9360
- #, fuzzy
9361
- #~ msgid "Update Costs"
9362
- #~ msgstr "Пашыраная налада коштаў"
9363
-
9364
- #, fuzzy
9365
- #~ msgid "Active/inactive"
9366
- #~ msgstr "Актыўна"
9367
-
9368
- #~ msgid "Cost of each booking type"
9369
- #~ msgstr "Кошты бранявання"
9370
-
9371
- #~ msgid "Resource Cost"
9372
- #~ msgstr "Кошт рэсурсу"
9373
-
9374
- #~ msgid "Names of items from resource"
9375
- #~ msgstr "Імя аб'ектаў з рэсурсу"
9376
-
9377
- #, fuzzy
9378
- #~ msgid ""
9379
- #~ "of each booking resource. Enter only digits.of each booking resources. Enter only digits."
9380
- #~ msgstr "для кожнага тыпу бранявання. Увядзіце толькі лічбы."
9381
-
9382
- #, fuzzy
9383
- #~ msgid "You can Add or Delete booking resources at the top of this %spage%s"
9384
- #~ msgstr "Каляндар бранявання для гэтага рэсурсу ўжо існуе на гэтай старонцы"
9385
-
9386
- #~ msgid "Add new filter"
9387
- #~ msgstr "Дадаць новы фільтр "
9388
-
9389
- #~ msgid "Cost description"
9390
- #~ msgstr "Апісанне плацяжоў "
9391
-
9392
- #, fuzzy
9393
- #~ msgid ""
9394
- #~ "Enter cost (%s) directly in format %s or %s for the entire booking in the format %s or a "
9395
- #~ "fixed amount for each selected day in the format %s For example: %s or %s or %s"
9396
- #~ msgstr ""
9397
- #~ "Вы можаце ўвесці кошт у %s у фармаце %s ці %s ад усяго кошту забронированого ў фармаце %s "
9398
- #~ "Напрыклад: %s ці %s"
9399
-
9400
- #, fuzzy
9401
- #~ msgid "Setting cost"
9402
- #~ msgstr "Усталёўкі"
9403
-
9404
- #, fuzzy
9405
- #~ msgid "per day"
9406
- #~ msgstr "за 1 дзень"
9407
-
9408
- #, fuzzy
9409
- #~ msgid "per night"
9410
- #~ msgstr "за 1 ноч"
9411
-
9412
- #, fuzzy
9413
- #~ msgid "per hour"
9414
- #~ msgstr "за 1 гадзіна"
9415
-
9416
- #, fuzzy
9417
- #~ msgid "for several days selection"
9418
- #~ msgstr "Вылучэнне некалькіх дзён"
9419
-
9420
- #, fuzzy
9421
- #~ msgid "Save settings"
9422
- #~ msgstr "Усталёўкі"
9423
-
9424
- #, fuzzy
9425
- #~ msgid "Filter by Keyword"
9426
- #~ msgstr "Фільтр захаваны"
9427
-
9428
- #, fuzzy
9429
- #~ msgid "User name"
9430
- #~ msgstr "Імя рэсурсу"
9431
-
9432
- #, fuzzy
9433
- #~ msgid "Max number of resources"
9434
- #~ msgstr "Лік наведвальнікаў"
9435
-
9436
- #, fuzzy
9437
- #~ msgid "Delete configuration"
9438
- #~ msgstr "Выдаленне дадзеных па браняванні"
9439
-
9440
- #, fuzzy
9441
- #~ msgid "Delete all booking data"
9442
- #~ msgstr "Выдаленне дадзеных па браняванні"
9443
-
9444
- #, fuzzy
9445
- #~ msgid "Login"
9446
- #~ msgstr "Спасылкі"
9447
-
9448
- #, fuzzy
9449
- #~ msgid "Aggregate resources:"
9450
- #~ msgstr "Кошт рэсурсу"
9451
-
9452
- #, fuzzy
9453
- #~ msgid "Reset to default selected form"
9454
- #~ msgstr "Абнавіць да значэння па змаўчанні"
9455
-
9456
- #, fuzzy
9457
- #~ msgid "Booking resource selection:"
9458
- #~ msgstr "Тып бранявання"
9459
-
9460
- #, fuzzy
9461
- #~ msgid ""
9462
- #~ "Type email subject for %svisitor after creating a new reservation%s. Use these %s shortcodes."
9463
- #~ msgstr "Увядзіце тэму ліста пры %sредактировании браняванні%s"
9464
-
9465
- #, fuzzy
9466
- #~ msgid "at booking form near the pay button"
9467
- #~ msgstr "у форме бранявання"
9468
-
9469
- #, fuzzy
9470
- #~ msgid "Check this box if you want to show the payment description near the pay button."
9471
- #~ msgstr "Вылучыце гэты чекбокс для паказу кошту дня ў якая сплывае падказцы"
9472
-
9473
- #, fuzzy
9474
- #~ msgid ""
9475
- #~ "Enter a return relative Successful URL. Sage will redirect visitors to this page after "
9476
- #~ "Successful Payment"
9477
- #~ msgstr ""
9478
- #~ "Увядзіце спасылку (старонка падзякі) для вяртання з Paypal-а, наведвальнікі аўтаматычна "
9479
- #~ "перанакіроўвацца на яе пасля ажыццяўлення плацяжу."
9480
-
9481
- #, fuzzy
9482
- #~ msgid ""
9483
- #~ "Enter a return relative Failed URL. Sage will redirect visitors to this page after Failed "
9484
- #~ "Payment"
9485
- #~ msgstr ""
9486
- #~ "Увядзіце спасылку (старонка падзякі) для вяртання з Paypal-а, наведвальнікі аўтаматычна "
9487
- #~ "перанакіроўвацца на яе пасля ажыццяўлення плацяжу."
9488
-
9489
- #, fuzzy
9490
- #~ msgid "Active / Inactive"
9491
- #~ msgstr "Актыўна"
9492
-
9493
- #, fuzzy
9494
- #~ msgid "Check this box to activate the Payment Pro Hosted Solution."
9495
- #~ msgstr "Вылучыце, калі Вы жадаеце выкарыстоўваць аплату пры дапамозе Paypal."
9496
-
9497
- #, fuzzy
9498
- #~ msgid "Payment action"
9499
- #~ msgstr "Апісанне плацяжоў"
9500
-
9501
- #~ msgid "Button types"
9502
- #~ msgstr "Выгляды кнопкі"
9503
-
9504
- #, fuzzy
9505
- #~ msgid "Select submit button type"
9506
- #~ msgstr "Абярыце тып якая пацвярджае кнопкі"
9507
-
9508
- #, fuzzy
9509
- #~ msgid "iPay88 active"
9510
- #~ msgstr "Актывацыя Paypal"
9511
-
9512
- #, fuzzy
9513
- #~ msgid "Check this box to use iPay88."
9514
- #~ msgstr "Вылучыце, калі Вы жадаеце выкарыстоўваць аплату пры дапамозе Paypal."
9515
-
9516
- #, fuzzy
9517
- #~ msgid "Some Prior days"
9518
- #~ msgstr "Лік месяцаў"
9519
-
9520
- #, fuzzy
9521
- #~ msgid "Fixed dates interval"
9522
- #~ msgstr "фіксаваны ўнёсак"
9523
-
9524
- #, fuzzy
9525
- #~ msgid "Booking dates"
9526
- #~ msgstr "Паслугі бранявання"
9527
-
9528
- #~ msgid "%sPowered by wordpress plugins developed by %s"
9529
- #~ msgstr "%s Створана з выкарыстаннем wordpress убудоў распрацаваных %s "
9530
-
9531
- #, fuzzy
9532
- #~ msgid "Admin side"
9533
- #~ msgstr "Адміністрацыйны емейл"
9534
-
9535
- #, fuzzy
9536
- #~ msgid "in calendar"
9537
- #~ msgstr "Толькі каляндар"
9538
-
9539
- #~ msgid "at booking form"
9540
- #~ msgstr "у форме бранявання"
9541
-
9542
- #, fuzzy
9543
- #~ msgid "New booking title"
9544
- #~ msgstr "у Календары для бранявання"
9545
-
9546
- #~ msgid "%sshowing after%s booking"
9547
- #~ msgstr "%s показываеться пасля%s браняванні"
9548
-
9549
- #, fuzzy
9550
- #~ msgid "%snew booking%s"
9551
- #~ msgstr "%sвремя канчаткі бранявання%s"
9552
-
9553
- #~ msgid "access level"
9554
- #~ msgstr "узровень доступу"
9555
-
9556
- #~ msgid "Delete booking data"
9557
- #~ msgstr "Выдаленне дадзеных па браняванні"
9558
-
9559
- #, fuzzy
9560
- #~ msgid "For booking, select type of booking resource"
9561
- #~ msgstr "Выбирети, што Вы жадаеце браняваць"
9562
-
9563
- #~ msgid "Show:"
9564
- #~ msgstr "Паказаць"
9565
-
9566
- #, fuzzy
9567
- #~ msgid "%s - this symbol means that this field is Required (can not be skipped)"
9568
- #~ msgstr "%s - гэты знак азначае абавязковае поле (можа быць прапушчаны)"
9569
-
9570
- #, fuzzy
9571
- #~ msgid "%s - field name, must be unique (can not be skipped)"
9572
- #~ msgstr "%s - назва поля, павінна быць унікальным (не можа быць прапушчана) "
9573
-
9574
- #, fuzzy
9575
- #~ msgid "%s - default value of field (CAN be skipped)"
9576
- #~ msgstr "%s - значэнне поля па змаўчанні (можа быць прапушчана)"
9577
-
9578
- #~ msgid "%s - calendar"
9579
- #~ msgstr "%s - каляндар"
9580
-
9581
- #~ msgid "%s - CAPTCHA"
9582
- #~ msgstr "%s - CAPTCHA"
9583
-
9584
- #~ msgid "Example: %sJohn%s"
9585
- #~ msgstr "Прыклад: %s Іван%s "
9586
-
9587
- #, fuzzy
9588
- #~ msgid "%s - start time field "
9589
- #~ msgstr "%s - поле для ўводу часу старту бранявання."
9590
-
9591
- #, fuzzy
9592
- #~ msgid ""
9593
- #~ "Example: %s. If you have already created predefined times, you can also use this shortcode: %s"
9594
- #~ msgstr ""
9595
- #~ "Прыклад: %s. Калі Вы жадаеце задаць строга пэўны час, Вы можаце выкарыстоўваць гэта: %s "
9596
-
9597
- #, fuzzy
9598
- #~ msgid "%s - end time field "
9599
- #~ msgstr "%s - поле для ўводу часу канчатка бранявання."
9600
-
9601
- #, fuzzy
9602
- #~ msgid "%s - Start Time and End Time fields in one dropdown list "
9603
- #~ msgstr "%s - поле для ўводу часу старту бранявання."
9604
-
9605
- #, fuzzy
9606
- #~ msgid "If you have already predefined times (Start Time and End Time), use this code: %s "
9607
- #~ msgstr " Калі Вы жадаеце задаць строга пэўны час, Вы можаце выкарыстоўваць гэта: %s "
9608
-
9609
- #~ msgid "%s - duration time field. "
9610
- #~ msgstr "%s - поле для ўводу працягласці часу бранявання."
9611
-
9612
- #, fuzzy
9613
- #~ msgid ""
9614
- #~ "If you set already created a start time, you can set the duration of time using this "
9615
- #~ "shortcode: %s. The endtime is not required."
9616
- #~ msgstr ""
9617
- #~ "Калі Вы ўжо ўсталявалі пачатковы час, Вы можаце ўсталяваць працягласць для рэзерву "
9618
- #~ "выкарыстоўваючы гэты код: %s. Вы не павінны ўсталёўваць час канчатка ў дадзеным выпадку."
9619
-
9620
- #~ msgid ""
9621
- #~ "%s - additional time field (as an additional property). Do not apply to the dividing day into "
9622
- #~ "sections. "
9623
- #~ msgstr "%s - дадатковае поле часу. Не ўплывае на дзяленне дня бранявання на часткі."
9624
-
9625
- #, fuzzy
9626
- #~ msgid "%s - email field, "
9627
- #~ msgstr "%s - поле для воода еў. пошты"
9628
-
9629
- #~ msgid "%s - select field, "
9630
- #~ msgstr "%s - поле з выпадальным спісам"
9631
-
9632
- #~ msgid "%s - checkbox field, "
9633
- #~ msgstr "%s - поле з пазнакай"
9634
-
9635
- #, fuzzy
9636
- #~ msgid "Example #1: %s "
9637
- #~ msgstr "Прыклад: %s "
9638
-
9639
- #~ msgid "%s - textarea field, "
9640
- #~ msgstr "%s - тэкставае поле"
9641
-
9642
- #, fuzzy
9643
- #~ msgid "%s - countries list field, "
9644
- #~ msgstr "%s - поле з выпадальным спісам"
9645
-
9646
- #, fuzzy
9647
- #~ msgid "Example #1: %s - default usage"
9648
- #~ msgstr "Прыклад: %s "
9649
-
9650
- #~ msgid "Example: %sSend%s "
9651
- #~ msgstr "Прыклад: %sОтправить%s "
9652
-
9653
- #, fuzzy
9654
- #~ msgid "Check other versions"
9655
- #~ msgstr "купіць Прафесійную версію"
9656
-
9657
- #~ msgid "Choose Payment Currency"
9658
- #~ msgstr "Абярыце валюту плацяжу"
9659
-
9660
- #~ msgid "This is the currency for your visitors to make Payments"
9661
- #~ msgstr "Гэта валюта для Вашых наведвальнікаў для ажыццяўлення плацяжоў"
9662
-
9663
- #, fuzzy
9664
- #~ msgid "Pay now"
9665
- #~ msgstr "Купіць цяпер"
9666
-
9667
- #~ msgid "in %srange to select%s"
9668
- #~ msgstr "у %sдиапазоне для вылучэння%s"
9669
-
9670
- #, fuzzy
9671
- #~ msgid "Actual dates"
9672
- #~ msgstr "Актыўна"
9673
-
9674
- #~ msgid " - custom wp-plugins and wp-themes development, WordPress solutions"
9675
- #~ msgstr "- распрацоўка ўбудоў і тым для WordPress"
9676
-
9677
- #, fuzzy
9678
- #~ msgid "Deposit payment sum"
9679
- #~ msgstr "Абярыце валюту плацяжу"
9680
-
9681
- #, fuzzy
9682
- #~ msgid "Type default %sadmin email%s from where this email is sending"
9683
- #~ msgstr "Увядзіце %s еў. почу адміністратара%s адкуль лісты высылаюцца"
9684
-
9685
- #~ msgid "Count of days"
9686
- #~ msgstr "Лік дзён"
9687
-
9688
- #, fuzzy
9689
- #~ msgid "%s - inserting reason of payment, you can enter it before sending email, "
9690
- #~ msgstr "%s - уставіць чыннік адмовы"
9691
-
9692
- #, fuzzy
9693
- #~ msgid "Agenda of bookings for today"
9694
- #~ msgstr "Некалькі рэзерваў у адзін і той жа дзень"
9695
-
9696
- #~ msgid "Email to \"Person\" after approval of booking"
9697
- #~ msgstr "Электронная пошта наведвальніку пасля пацверджання брані"
9698
-
9699
- #~ msgid "Email to \"Person\" after modification of booking"
9700
- #~ msgstr "Ліст наведвальніку пасля рэдагавання брані."
9701
-
9702
- #, fuzzy
9703
- #~ msgid "Type in milliseconds count of time for showing new booking title"
9704
- #~ msgstr "Увядзіце ў милисекундах час для паказу подпісу падзякі пасля бранявання"
9705
-
9706
- #, fuzzy
9707
- #~ msgid "Inserttion of"
9708
- #~ msgstr "налада емейла"
9709
-
9710
- #~ msgid "Name of filter"
9711
- #~ msgstr "Імя фільтра "
9712
-
9713
- #~ msgid "Type your %sstart time%s "
9714
- #~ msgstr "Увядзіце %sначальное час%s"
9715
-
9716
- #~ msgid "Type your %send time%s "
9717
- #~ msgstr "Увядзіце %sаремя канчаткі%s"
9718
-
9719
- #, fuzzy
9720
- #~ msgid "Type email subject for %spayment request%s. You can use these %s shortcodes."
9721
- #~ msgstr "Увядзіце тэму ліста для %sотказа браняванні%s"
9722
-
9723
- #~ msgid ""
9724
- #~ "%s - inserting name of person, who made booking (field %s requred at form for this bookmark), "
9725
- #~ msgstr ""
9726
- #~ "%s - уставіць імя наведвальніка, які зрабіў браняванне (поле %s требуеться ў форме для гэтай "
9727
- #~ "пазнакі),"
9728
-
9729
- #~ msgid "%s - inserting detail person info"
9730
- #~ msgstr "%s - уставіць дэталёвую інфармацыю пра наведвальніка"
9731
-
9732
- #, fuzzy
9733
- #~ msgid "%s - inserting link of booking editing by visitor at client side of site, "
9734
- #~ msgstr "%s - уставіць тып бранявання"
9735
-
9736
- #, fuzzy
9737
- #~ msgid ""
9738
- #~ " Check this if you want to use selection range in calendar. For example: select a week or "
9739
- #~ "only five days for booking."
9740
- #~ msgstr ""
9741
- #~ "Вылучыце, калі Вы жадаеце выкарыстоўваць вылучэнне фиксированым дыяпазонам дат. Напрыклад "
9742
- #~ "вылучэнне тыдня ці толькі ў колькасці 5 дзён для бранявання."
9743
-
9744
- #~ msgid "Minimum days count"
9745
- #~ msgstr "Мінімальная колькасць дзён"
9746
-
9747
- #~ msgid "Type your %sminimum number of days for range selection%s"
9748
- #~ msgstr "Увядзіце %sминимальное колькасць дзён для вылучэння%s"
9749
-
9750
- #, fuzzy
9751
- #~ msgid ""
9752
- #~ " Check this if you want to use a part of the day (not full day) at start and end day of "
9753
- #~ "selection range . It will overwrite start time and end time from from customization."
9754
- #~ msgstr ""
9755
- #~ "Выбирете, калі Вы жадаеце выкарыстоўваць для бранявання частка дня ў першым і апошнім дне "
9756
- #~ "бранявання. Гэта опцыя перапіша starttime і endtime з формы налады палёў."
9757
-
9758
- #~ msgid "Type your %sstart%s time of booking for range selection"
9759
- #~ msgstr "Увядзіце %sвремя%s браняванні для 1-го дня некалькіх дзён бранявання"
9760
-
9761
- #, fuzzy
9762
- #~ msgid "Modification of exist booking"
9763
- #~ msgstr "Новае браняванне"
9764
-
9765
- #~ msgid "%s - inserting detail person info, "
9766
- #~ msgstr "%s - дадаць падрабязную інфармацыю, пра твар якое зрабіла рэзерв,"
9767
-
9768
- #, fuzzy
9769
- #~ msgid "%s - inserting link to booking editable by vistor from his account, "
9770
- #~ msgstr "%s - уставіць тып бранявання"
9771
-
9772
- #, fuzzy
9773
- #~ msgid "Type your email subject for %sapproval of booking%s. You can use these %s shortcodes."
9774
- #~ msgstr "Увядзіце тэму ліста для %sподтверждения браняванні%s"
9775
-
9776
- #~ msgid "%s - inserting reason of cancel booking"
9777
- #~ msgstr "%s - уставіць чыннік адмовы"
9778
-
9779
- #, fuzzy
9780
- #~ msgid ""
9781
- #~ "Type your email subject for %smodification of booking%s. You can use these %s shortcodes."
9782
- #~ msgstr "Увядзіце тэму ліста пры %sредактировании браняванні%s"
9783
-
9784
- #, fuzzy
9785
- #~ msgid "Reset to default Payment form"
9786
- #~ msgstr "Абнавіць да значэння па змаўчанні"
9787
-
9788
- #, fuzzy
9789
- #~ msgid ""
9790
- #~ "Form content data showing in emails (%s-shortcode) and inside approval and booking tables in "
9791
- #~ "booking calendar page"
9792
- #~ msgstr ""
9793
- #~ "Форма ўтрымання дадзеных паказана ў лістах(%s - пазнака) і ўсярэдзіне табліц пацверджання і "
9794
- #~ "браняванні на старонцы календара бранявання"
9795
-
9796
- #~ msgid "Reset to default form content"
9797
- #~ msgstr "Абнавіць да значэння па змаўчанні"
9798
-
9799
- #, fuzzy
9800
- #~ msgid "Reset to default Payment form content"
9801
- #~ msgstr "Абнавіць да значэння па змаўчанні"
9802
-
9803
- #, fuzzy
9804
- #~ msgid "Unapprove"
9805
- #~ msgstr "Пацвердзіць"
9806
-
9807
- #~ msgid "at booking calendar"
9808
- #~ msgstr "у Календары для бранявання"
9809
-
9810
- #~ msgid "Show settings of user access level to admin menu"
9811
- #~ msgstr "Паказаць усталёўкі уровеня доступу карыстача для адміністрацыйнай старонкі"
9812
-
9813
- #, fuzzy
9814
- #~ msgid "Show all booking tables"
9815
- #~ msgstr "у Календары для бранявання"
9816
-
9817
- #, fuzzy
9818
- #~ msgid "Hide all booking tables"
9819
- #~ msgstr "%sвремя канчаткі бранявання%s"
9820
-
9821
- #, fuzzy
9822
- #~ msgid "Number of resources"
9823
- #~ msgstr "Лік наведвальнікаў"
9824
-
9825
- #, fuzzy
9826
- #~ msgid "Cost of each booking resource"
9827
- #~ msgstr "Кошты бранявання"
9828
-
9829
- #, fuzzy
9830
- #~ msgid "of each booking resource. Enter only digits."
9831
- #~ msgstr "для кожнага тыпу бранявання. Увядзіце толькі лічбы."
9832
-
9833
- #~ msgid "Save costs"
9834
- #~ msgstr "Захаваць кошты"
9835
-
9836
- #, fuzzy
9837
- #~ msgid " Check this to let the visitors enter more info like email or web url."
9838
- #~ msgstr ""
9839
- #~ "Вылучыце, калі жадаеце што б Вашы наведвальнікі маглі ўводзіць дапаможныя тэкст, у выглядзе "
9840
- #~ "электроннай пошты ці вэб сайта і да т.п."
9841
-
9842
- #, fuzzy
9843
- #~ msgid "Auto cancel pending not paid bookings"
9844
- #~ msgstr "Электронная пошта наведвальніку пасля пацверджання брані"
9845
-
9846
- #, fuzzy
9847
- #~ msgid "All reservations"
9848
- #~ msgstr "%sНовое браняванне%s"
9849
-
9850
- #, fuzzy
9851
- #~ msgid "All incomining reservations"
9852
- #~ msgstr "%sНовое браняванне%s"
9853
-
9854
- #, fuzzy
9855
- #~ msgid "All incoming reservations"
9856
- #~ msgstr "%sНовое браняванне%s"
9857
-
9858
- #, fuzzy
9859
- #~ msgid "Actual Bookings"
9860
- #~ msgstr "Браняванне"
9861
-
9862
- #, fuzzy
9863
- #~ msgid "Reservation services"
9864
- #~ msgstr "Новы загаловак бранявання"
9865
-
9866
- #, fuzzy
9867
- #~ msgid "Edit reservation"
9868
- #~ msgstr "Новае браняванне"
9869
-
9870
- #, fuzzy
9871
- #~ msgid "Standard resource"
9872
- #~ msgstr "Дадаць новае браняванне"
9873
-
9874
- #~ msgid ""
9875
- #~ "%sThere are no reservations.%s Please, press this %s button, when you edit %sposts%s or %spage"
9876
- #~ "%s. %sAfter entering booking you can wait for making reservation by somebody or you can make "
9877
- #~ "reservation %shere%s."
9878
- #~ msgstr ""
9879
- #~ "%sБронирование адсутнічае%s Калі ласка, націсніце %sкнопку, калі Вы рэдагуеце %sпост%s ці "
9880
- #~ "%sстраницу%s. %sПосле даданні брані пачакайце, калі хтосьці зробіць браняванне ці Вы самі "
9881
- #~ "можаце дадаць бронь %sздесь%s."
9882
-
9883
- #, fuzzy
9884
- #~ msgid "Agenda of reservations for"
9885
- #~ msgstr "%sНовое браняванне%s"
9886
-
9887
- #, fuzzy
9888
- #~ msgid "Reservations, which was done"
9889
- #~ msgstr "Новы загаловак бранявання"
9890
-
9891
- #, fuzzy
9892
- #~ msgid "Cost and availability"
9893
- #~ msgstr "Даступнасць"
9894
-
9895
- #~ msgid " Check unavailable days for your visitors."
9896
- #~ msgstr "Вылучыце дні, якія стануць недаступнымі"
9897
-
9898
- #, fuzzy
9899
- #~ msgid "Booking form settings"
9900
- #~ msgstr "Усталёўкі для бранявання"
9901
-
9902
- #~ msgid "New reservation title"
9903
- #~ msgstr "Новы загаловак бранявання"
9904
-
9905
- #~ msgid "Main difference features"
9906
- #~ msgstr "Асноўныя адрозненні "
9907
-
9908
- #~ msgid "Free"
9909
- #~ msgstr "Бясплатная"
9910
-
9911
- #, fuzzy
9912
- #~ msgid "Functionality"
9913
- #~ msgstr "Функцыі"
9914
-
9915
- #, fuzzy
9916
- #~ msgid "all existing functionality"
9917
- #~ msgstr "усе існыя функцыі"
9918
-
9919
- #~ msgid "Multi booking"
9920
- #~ msgstr "Мульты браняванне"
9921
-
9922
- #, fuzzy
9923
- #~ msgid "fields customization"
9924
- #~ msgstr "налада палёў"
9925
-
9926
- #~ msgid "email customization"
9927
- #~ msgstr "налада емейла"
9928
-
9929
- #~ msgid "selection fixed several days"
9930
- #~ msgstr "Выбар фиксированого колькасці дзён"
9931
-
9932
- #, fuzzy
9933
- #~ msgid "PayPal, Sage, iPay88 payment support"
9934
- #~ msgstr "PayPal падтрымка"
9935
-
9936
- #, fuzzy
9937
- #~ msgid "show at payment form part of cost"
9938
- #~ msgstr "Абнавіць да значэння па змаўчанні"
9939
-
9940
- #~ msgid "Season"
9941
- #~ msgstr "Сезон"
9942
-
9943
- #~ msgid "avalaibility filters"
9944
- #~ msgstr "фільтры даступнасці"
9945
-
9946
- #~ msgid "Rates cost"
9947
- #~ msgstr "Рэйты коштаў"
9948
-
9949
- #~ msgid "depends from season"
9950
- #~ msgstr "У залежнасці ад сезону"
9951
-
9952
- #, fuzzy
9953
- #~ msgid "Several booking forms"
9954
- #~ msgstr "Некалькі рэзерваў у адзін і той жа дзень"
9955
-
9956
- #~ msgid "free"
9957
- #~ msgstr "бясплатная"
9958
-
9959
- #~ msgid "start"
9960
- #~ msgstr "з "
9961
-
9962
- #, fuzzy
9963
- #~ msgid "Live demo"
9964
- #~ msgstr "Анлайн дэма "
9965
-
9966
- #, fuzzy
9967
- #~ msgid ""
9968
- #~ "This functionality exist at the %sBooking Calendar%s %sPremium%s, %sPremium Plus%s and "
9969
- #~ "%sHotel Edition%s"
9970
- #~ msgstr ""
9971
- #~ "Гэта функцыянальнасць даступная ў %sBooking Calendar%s %sProfessional%s, %sPremium%s and "
9972
- #~ "%sHotel Edition%s"
9973
-
9974
- #, fuzzy
9975
- #~ msgid ""
9976
- #~ "This functionality exist at the %sBooking Calendar%s %sPremium Plus%s and %sHotel Edition%s"
9977
- #~ msgstr "Гэта функцыянальнасць даступная ў %sBooking Calendar%s %sPremium%s і %sHotel Edition%s"
9978
-
9979
- #~ msgid "This functionality exist at the %sBooking Calendar%s %sHotel Edition%s"
9980
- #~ msgstr "Гэта функцыянальнасць даступная ў %sBooking Calendar%s %sHotel Edition%s"
9981
-
9982
- #, fuzzy
9983
- #~ msgid "This functionality exist at the %sBooking Calendar%s %sMultiUser%s version only"
9984
- #~ msgstr "Гэта функцыянальнасць даступная ў %sBooking Calendar%s %sHotel Edition%s"
9985
-
9986
- #, fuzzy
9987
- #~ msgid ""
9988
- #~ "This functionality exist at the %sBooking Calendar%s %sProfessional%s, %sPremium%s, %sPremium "
9989
- #~ "Plus%s and %sHotel Edition%s"
9990
- #~ msgstr ""
9991
- #~ "Гэта функцыянальнасць даступная ў %sBooking Calendar%s %sProfessional%s, %sPremium%s and "
9992
- #~ "%sHotel Edition%s"
9993
-
9994
- #, fuzzy
9995
- #~ msgid "Check %sfeatures%s of each versions, test %sonline demo%s and %sbuy%s."
9996
- #~ msgstr "Праверце %sвозможности%s, пратэстуйце %sonline дэма%s і %sкупите%s."
9997
-
9998
- #, fuzzy
9999
- #~ msgid "More Information about this plugin can be found at the"
10000
- #~ msgstr "Вы можаце больш пазнаць пра гэту ўбудову"
10001
-
10002
- #~ msgid "Display Booking."
10003
- #~ msgstr "Паказаць бронь"
10004
-
10005
- #, fuzzy
10006
- #~ msgid "Incoming"
10007
- #~ msgstr "Інфармацыя"
10008
-
10009
- #, fuzzy
10010
- #~ msgid "all reservations"
10011
- #~ msgstr "%sНовое браняванне%s"
10012
-
10013
- #, fuzzy
10014
- #~ msgid "all incoming reservations"
10015
- #~ msgstr "%sНовое браняванне%s"
10016
-
10017
- #~ msgid "Deleting..."
10018
- #~ msgstr "Выдаленне..."
10019
-
10020
- #~ msgid "Saving..."
10021
- #~ msgstr "Захаванне..."
10022
-
10023
- #, fuzzy
10024
- #~ msgid "Number of calendars:"
10025
- #~ msgstr "Колькасць календароў:"
10026
-
10027
- #, fuzzy
10028
- #~ msgid ""
10029
- #~ "This functionality exist at other version of Booking Calendar: %sProfessional%s, %sPremium"
10030
- #~ "%s , %sPremium Plus%s or %sHotel Edition%s."
10031
- #~ msgstr ""
10032
- #~ "Гэта функцыянальнасць даступная ў %sBooking Calendar%s %sProfessional%s, %sPremium%s and "
10033
- #~ "%sHotel Edition%s"
10034
-
10035
- #~ msgid "Links"
10036
- #~ msgstr "Спасылкі"
10037
-
10038
- #~ msgid "developer plugin page"
10039
- #~ msgstr "старонка распрацоўніка"
10040
-
10041
- #~ msgid "visit"
10042
- #~ msgstr "наведаць"
10043
-
10044
- #~ msgid "new features"
10045
- #~ msgstr "Магчымасці "
10046
-
10047
- #~ msgid "WordPress Extend"
10048
- #~ msgstr "WordPress пашырэнне"
10049
-
10050
- #~ msgid "wordpress plugin page"
10051
- #~ msgstr "старонка ўбудоў wordpress-а"
10052
-
10053
- #~ msgid "Author"
10054
- #~ msgstr "Аўтар"
10055
-
10056
- #~ msgid "special plugin customizations"
10057
- #~ msgstr "адмысловая налада ўбудовы"
10058
-
10059
- #~ msgid "email"
10060
- #~ msgstr "емейл"
10061
-
10062
- #, fuzzy
10063
- #~ msgid "Number of calendars"
10064
- #~ msgstr "Лік месяцаў"
10065
-
10066
- #, fuzzy
10067
- #~ msgid "Error during deleting user meta at DB"
10068
- #~ msgstr "Памылка пры выдаленні дадзеных браняванні з БД"
10069
-
10070
- #~ msgid "Error during updating exist booking in BD"
10071
- #~ msgstr "Памылка пры абнаўленні існага бранявання ў БД "
10072
-
10073
- #~ msgid "Error during updating exist booking for deleting dates in BD"
10074
- #~ msgstr "Памылка пры абнаўленні існага бранявання БД пры выдаленні дат "
10075
-
10076
- #~ msgid "Error during inserting into BD"
10077
- #~ msgstr "Памылка пры даданні дадзеных у БД"
10078
-
10079
- #~ msgid "Error during inserting into BD - Dates"
10080
- #~ msgstr "Памылка пры даданні дадзеных дат у БД"
10081
-
10082
- #~ msgid "Error during updating to DB"
10083
- #~ msgstr "Памылка пры абнаўленні БД"
10084
-
10085
- #~ msgid "Error during deleting dates at DB"
10086
- #~ msgstr "Памылка пры выдаленні дат з БД"
10087
-
10088
- #~ msgid "Error during deleting reservation at DB"
10089
- #~ msgstr "Памылка пры выдаленні дадзеных браняванні з БД"
10090
-
10091
- #, fuzzy
10092
- #~ msgid "Error during updating exist booking type in BD"
10093
- #~ msgstr "Памылка пры абнаўленні існага бранявання ў БД "
10094
-
10095
- #, fuzzy
10096
- #~ msgid "Error during booking dates cleaning in BD"
10097
- #~ msgstr "Памылка пры даданні дадзеных у БД"
10098
-
10099
- #, fuzzy
10100
- #~ msgid "Hide booking table"
10101
- #~ msgstr "%sвремя канчаткі бранявання%s"
10102
-
10103
- #, fuzzy
10104
- #~ msgid "Error during updating to DB booking resources"
10105
- #~ msgstr "Памылка пры абнаўленні БД "
10106
-
10107
- #, fuzzy
10108
- #~ msgid "Error during creating default booking resource for user"
10109
- #~ msgstr "Памылка пры абнаўленні БД "
10110
-
10111
- #, fuzzy
10112
- #~ msgid "Error during deleting booking resources at DB"
10113
- #~ msgstr "Памылка пры абнаўленні БД "
10114
-
10115
- #, fuzzy
10116
- #~ msgid "Error during deleting season filters at DB"
10117
- #~ msgstr "Памылка пры выдаленні дат з БД"
10118
-
10119
- #, fuzzy
10120
- #~ msgid "Error during searching this booking resources"
10121
- #~ msgstr "Памылка пры абнаўленні БД "
10122
-
10123
- #~ msgid "Error during updating to DB booking availability of booking resource"
10124
- #~ msgstr "Памылка пры абнаўленні БД "
10125
-
10126
- #~ msgid "Error during updating to DB booking costs"
10127
- #~ msgstr "Памылка пры абнаўленні коштаў у БД"
10128
-
10129
- #~ msgid "Error during deleting from DB booking filters"
10130
- #~ msgstr "Памылка пры абнаўленні БД "
10131
-
10132
- #~ msgid "Error during updating to DB booking filters"
10133
- #~ msgstr "Памылка пры абнаўленні БД "
10134
-
10135
- #, fuzzy
10136
- #~ msgid "Error during updating cost in BD"
10137
- #~ msgstr "Памылка пры абнаўленні нататкі ў БД"
10138
-
10139
- #, fuzzy
10140
- #~ msgid "Error during cost saving"
10141
- #~ msgstr "Памылка пры рэдагаванні БД"
10142
-
10143
- #, fuzzy
10144
- #~ msgid "Error during updating wp_nonce status in BD"
10145
- #~ msgstr "Памылка пры абнаўленні нататкі ў БД"
10146
-
10147
- #, fuzzy
10148
- #~ msgid "Error during updating wp_payment_request_count status in BD"
10149
- #~ msgstr "Памылка пры абнаўленні нататкі ў БД"
10150
-
10151
- #, fuzzy
10152
- #~ msgid "Error during updating hash in BD"
10153
- #~ msgstr "Памылка пры абнаўленні нататкі ў БД"
10154
-
10155
- #~ msgid "Error during updating remarks in BD"
10156
- #~ msgstr "Памылка пры абнаўленні нататкі ў БД"
10157
-
10158
- #~ msgid "Error during editing BD"
10159
- #~ msgstr "Памылка пры рэдагаванні БД"
10160
-
10161
- #~ msgid "Error during deleting from BD"
10162
- #~ msgstr "Памылка пры выдаленні з БД"
10163
-
10164
- #, fuzzy
10165
- #~ msgid "Premium Live Demo"
10166
- #~ msgstr "Анлайн дэма "
10167
-
10168
- #, fuzzy
10169
- #~ msgid "Hotel Edition Live Demo"
10170
- #~ msgstr "Hotel Edition"
10171
-
10172
- #~ msgid "at calendar"
10173
- #~ msgstr "у календары"
10174
-
10175
- #~ msgid "Online Demo"
10176
- #~ msgstr "Анлайн дэма"
10177
-
10178
- #~ msgid "Pro and Premium"
10179
- #~ msgstr "Pro і Premium"
10180
-
10181
- #~ msgid "Admin panel"
10182
- #~ msgstr "Административня панэль"
10183
-
10184
- #~ msgid "Hotel Edition"
10185
- #~ msgstr "Hotel Edition"
10186
-
10187
- #, fuzzy
10188
- #~ msgid "Parent "
10189
- #~ msgstr "Аплата"
10190
-
10191
- #~ msgid "Error during updating to DB booking subtypes"
10192
- #~ msgstr "Памылка пры абнаўленні БД "
10193
-
10194
- #~ msgid ""
10195
- #~ " Tick this checkbox if you want to show availability of booking resource at the tooltip, when "
10196
- #~ "mouse over it."
10197
- #~ msgstr ""
10198
- #~ "Вылучыце гэты чекбокс для паказу даступнасці аб'ектаў бранявання ў якая сплывае падказцы"
10199
-
10200
- #, fuzzy
10201
- #~ msgid "Surname"
10202
- #~ msgstr "Нядзеля"
10203
-
10204
- #~ msgid "g:i a"
10205
- #~ msgstr "g:i a"
10206
-
10207
- #, fuzzy
10208
- #~ msgid "Professional / Premium / Premium + / Hotel Ed. versions"
10209
- #~ msgstr "Прафесійная / Премиум / Hotel Edition версія"
10210
-
10211
- #, fuzzy
10212
- #~ msgid "For all days!"
10213
- #~ msgstr "Недаступныя дні"
10214
-
10215
- #~ msgid ""
10216
- #~ "This functionality exist at other version of Booking Calendar: %sBooking Calendar Professional"
10217
- #~ "%s, %sBooking Calendar Premium%s or %sBooking Calendar Hotel Edition%s."
10218
- #~ msgstr ""
10219
- #~ "Гэта функцыянальнасць даступная ў %sBooking Calendar Professional%s, %sPremium%s ці "
10220
- #~ "%sHotel Edition%s"
10221
-
10222
- #~ msgid "at %sadmin%s booking page"
10223
- #~ msgstr "на %sадминистративной%s старонцы бранявання"
10224
-
10225
- #~ msgid "Type your number of calendars %sat admin booking page%s"
10226
- #~ msgstr "Увядзіце колькасць месяцаў у календары %s на адміністрацыйнай%s панэлі"
10227
-
10228
- #~ msgid "at %sclient%s side view"
10229
- #~ msgstr "на %s кліенцкай%s боку"
10230
-
10231
- #~ msgid "Type your %sdefault count of calendars%s for inserting into post/page"
10232
- #~ msgstr "Увядзіце колькасць месяцаў %s па змаўчанні%s для дадання ў пост ці на старонку"
10233
-
10234
- #~ msgid "Diferent days color"
10235
- #~ msgstr "Зарезервированые дні ў розных кветках"
10236
-
10237
- #~ msgid "Aproved / pending days"
10238
- #~ msgstr "Зацверджаныя / якія чакаюць сцвярджэнні дні"
10239
-
10240
- #~ msgid ""
10241
- #~ " Check, if you want to show in diferent colors aproved days and pending for aproval days at "
10242
- #~ "client side."
10243
- #~ msgstr ""
10244
- #~ "Абярыце, калі Вы жадаеце паказаць рознымі кветкамі зацверджаныя і якія чакаюць пацверджанні "
10245
- #~ "дні"
10246
-
10247
- #~ msgid "Show Short Days view"
10248
- #~ msgstr "Скараціць выгляд дат"
10249
-
10250
- #, fuzzy
10251
- #~ msgid "Type new %sform%s name here"
10252
- #~ msgstr "Увядзіце %sназвание фільтра%s"
10253
-
10254
- #~ msgid "Max items"
10255
- #~ msgstr "Максімальна колькасць"
10256
-
10257
- #, fuzzy
10258
- #~ msgid "Cost depends from days count"
10259
- #~ msgstr "У залежнасці ад сезону"
10260
-
10261
- #~ msgid "edit"
10262
- #~ msgstr "рэдагаваць"
10263
-
10264
- #, fuzzy
10265
- #~ msgid "Equal"
10266
- #~ msgstr "Емейл"
10267
-
10268
- #, fuzzy
10269
- #~ msgid "Australia"
10270
- #~ msgstr "Аўстралійскія даляры"
10271
-
10272
- #, fuzzy
10273
- #~ msgid "Austria"
10274
- #~ msgstr "Аўтар"
10275
-
10276
- #, fuzzy
10277
- #~ msgid "Benin"
10278
- #~ msgstr "Якія чакаюць сцвярджэнні"
10279
-
10280
- #, fuzzy
10281
- #~ msgid "Chile"
10282
- #~ msgstr "Дзеці"
10283
-
10284
- #, fuzzy
10285
- #~ msgid "Denmark"
10286
- #~ msgstr "Нататка"
10287
-
10288
- #, fuzzy
10289
- #~ msgid "France"
10290
- #~ msgstr "Адмена"
10291
-
10292
- #, fuzzy
10293
- #~ msgid "Greece"
10294
- #~ msgstr "Бясплатная"
10295
-
10296
- #, fuzzy
10297
- #~ msgid "Hong Kong"
10298
- #~ msgstr "Гонгконские даляры"
10299
-
10300
- #, fuzzy
10301
- #~ msgid "Hungary"
10302
- #~ msgstr "Нядзеля"
10303
-
10304
- #, fuzzy
10305
- #~ msgid "Israel"
10306
- #~ msgstr "Ізраільскі шекель"
10307
-
10308
- #, fuzzy
10309
- #~ msgid "Japan"
10310
- #~ msgstr "Янв"
10311
-
10312
- #, fuzzy
10313
- #~ msgid "Jordan"
10314
- #~ msgstr "Янв"
10315
-
10316
- #, fuzzy
10317
- #~ msgid "Lebanon"
10318
- #~ msgstr "Сезон"
10319
-
10320
- #, fuzzy
10321
- #~ msgid "Macao"
10322
- #~ msgstr "Сакавік"
10323
-
10324
- #, fuzzy
10325
- #~ msgid "Mayotte"
10326
- #~ msgstr "Травень"
10327
-
10328
- #, fuzzy
10329
- #~ msgid "Mexico"
10330
- #~ msgstr "Мексіканскі пессо."
10331
-
10332
- #, fuzzy
10333
- #~ msgid "Moldova"
10334
- #~ msgstr "Панядзелак"
10335
-
10336
- #, fuzzy
10337
- #~ msgid "Myanmar"
10338
- #~ msgstr "Сакавік"
10339
-
10340
- #, fuzzy
10341
- #~ msgid "Nepal"
10342
- #~ msgstr "емейл"
10343
-
10344
- #, fuzzy
10345
- #~ msgid "New Zealand"
10346
- #~ msgstr "Новазеландскія даляры"
10347
-
10348
- #, fuzzy
10349
- #~ msgid "Norway"
10350
- #~ msgstr "Няма дзён"
10351
-
10352
- #, fuzzy
10353
- #~ msgid "Philippines"
10354
- #~ msgstr "Филипинский пессо"
10355
-
10356
- #, fuzzy
10357
- #~ msgid "Poland"
10358
- #~ msgstr "Платная"
10359
-
10360
- #, fuzzy
10361
- #~ msgid "Qatar"
10362
- #~ msgstr "з "
10363
-
10364
- #, fuzzy
10365
- #~ msgid "Russian Federation"
10366
- #~ msgstr "Выбар дыяпазону"
10367
-
10368
- #, fuzzy
10369
- #~ msgid "Singapore"
10370
- #~ msgstr "Сінгапурскія даляры"
10371
-
10372
- #, fuzzy
10373
- #~ msgid "Sudan"
10374
- #~ msgstr "Нядзеля"
10375
-
10376
- #, fuzzy
10377
- #~ msgid "Togo"
10378
- #~ msgstr "Каму"
10379
-
10380
- #, fuzzy
10381
- #~ msgid "Viet Nam"
10382
- #~ msgstr "Імя"
10383
-
10384
- #, fuzzy
10385
- #~ msgid "Yemen"
10386
- #~ msgstr "Ены"
10387
-
10388
- #~ msgid ""
10389
- #~ " Enter additional cost per each visitor if number of visitors more than 1. %s(Use this "
10390
- #~ "shortcode %s at the fields customisation form)"
10391
- #~ msgstr ""
10392
- #~ "Увядзіце дадатковы кошт для кожнага наведвальніка, калі іх колькасць больш чым 1. "
10393
- #~ "%s(Выкарыстоўвайце гэты код %s для формы налады палі для формы бранявання)"
10394
-
10395
- #~ msgid "filters"
10396
- #~ msgstr "фільтры"
10397
-
10398
- #~ msgid "demo of professional version"
10399
- #~ msgstr "дэма прафесійнай версіі"
10400
-
10401
- #~ msgid "plugin online demo"
10402
- #~ msgstr "дэма ўбудовы"
10403
-
10404
- #~ msgid "Start time is not valid. Probably, this time for selected dates already reserved."
10405
- #~ msgstr "Час пачатку некоректно. Магчыма гэты час ужо зарэзервавана."
10406
-
10407
- #~ msgid "For booking enter grade of accommodation"
10408
- #~ msgstr "Для бранявання ўвядзіце тып"
10409
-
10410
- #~ msgid "Enter type of property for booking."
10411
- #~ msgstr "Увядзіце, тып жылля для бранявання"
10412
-
10413
- #~ msgid "Booking property"
10414
- #~ msgstr "Браняванне маёмасці"
10415
-
10416
- #~ msgid "Arrival time"
10417
- #~ msgstr "Час прыбыцця"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wpdev-booking-bg_BG.mo CHANGED
Binary file
languages/wpdev-booking-bg_BG.po DELETED
@@ -1,8820 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: wpdev-booking\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-05-09 10:30+0200\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: wpdevelop <info@wpdevelop.com>\n"
8
- "Language-Team: wpdevelop <info@wpbookingcalendar.com>\n"
9
- "Language: bg_BG\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-SourceCharset: UTF-8\n"
14
- "X-Poedit-KeywordsList: __;_e\n"
15
- "X-Poedit-Basepath: .\n"
16
- "X-Generator: Poedit 1.7.1\n"
17
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
- "X-Poedit-SearchPath-0: w:\\www\\home\\dev\\www\\wp-content\\plugins\\booking\\.\n"
19
-
20
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:123
21
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:241
22
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:254
23
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:258
24
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:375
25
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:302
26
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:307
27
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:579
28
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:610
29
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1516
30
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1573
31
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1576
32
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:756
33
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:817
34
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:818
35
- msgid "Dates"
36
- msgstr "Дати"
37
-
38
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:124
39
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:242
40
- msgid "Full cost of the booking"
41
- msgstr "Обща цена на резервацията"
42
-
43
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:126
44
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:244
45
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:108
46
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4027
47
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4041
48
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4059
49
- msgid "First Name (required)"
50
- msgstr "Име (задължително)"
51
-
52
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:127
53
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:245
54
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:109
55
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4028
56
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4042
57
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4060
58
- msgid "Last Name (required)"
59
- msgstr "Фамилия (задължително)"
60
-
61
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:128
62
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:246
63
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:110
64
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4029
65
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4043
66
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4061
67
- msgid "Email (required)"
68
- msgstr "Email (задължително)"
69
-
70
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:129
71
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:247
72
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:111
73
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1412
74
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:316
75
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4030
76
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4044
77
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4062
78
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4082
79
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4093
80
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4108
81
- msgid "Phone"
82
- msgstr "Телефон"
83
-
84
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:130
85
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:248
86
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:112
87
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4063
88
- msgid "Address (required)"
89
- msgstr "Адрес (задължително)"
90
-
91
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:131
92
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:249
93
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:113
94
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4064
95
- msgid "City (required)"
96
- msgstr "Град (задължително)"
97
-
98
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:132
99
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:250
100
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:114
101
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4065
102
- msgid "Post code (required)"
103
- msgstr "Пощенски код (задължително)"
104
-
105
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:133
106
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:251
107
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:115
108
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4066
109
- msgid "Country (required)"
110
- msgstr "Държава (задължително)"
111
-
112
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:134
113
- msgid "Visitors"
114
- msgstr "Гости"
115
-
116
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:135
117
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:253
118
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:117
119
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4032
120
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4046
121
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4068
122
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4085
123
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4096
124
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4115
125
- msgid "Details"
126
- msgstr "Описание"
127
-
128
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:136
129
- msgid "Coupon"
130
- msgstr "Код за отстъпка"
131
-
132
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:137
133
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:254
134
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:118
135
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4033
136
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4047
137
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4069
138
- msgid "I Accept term and conditions"
139
- msgstr "Съгласен съм с условията"
140
-
141
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:139
142
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:256
143
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:120
144
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:2909
145
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4035
146
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4049
147
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4071
148
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1625
149
- msgid "Send"
150
- msgstr "Изпрати"
151
-
152
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:173
153
- msgid ""
154
- "Try selecting fewer visitors. The number of visitors may be more than the number of available "
155
- "units on selected day(s)!"
156
- msgstr ""
157
- "Опитайте се да изберете по-малко гости. Възможно е броят на гостите да надвишава свободните "
158
- "места за избрания период!"
159
-
160
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:319
161
- msgid "coupon"
162
- msgstr "купон"
163
-
164
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:321
165
- msgid "discount"
166
- msgstr "отстъпка"
167
-
168
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:695
169
- msgid "Nothing found"
170
- msgstr "Нищо не е намерено"
171
-
172
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:696
173
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:259
174
- msgid "Search results"
175
- msgstr "Търсене"
176
-
177
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:828
178
- msgid "Book now"
179
- msgstr "Резервирай сега"
180
-
181
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:972
182
- msgid "Please select check-in and check-out days!"
183
- msgstr "Моля изберете дата на заминаване и на пристигане!"
184
-
185
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:1172
186
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:1185
187
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:154
188
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1175
189
- msgid "Search"
190
- msgstr "Търси"
191
-
192
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:2097
193
- #, php-format
194
- msgid ""
195
- "Sorry, the reservation was not made because these days are already booked!!! %s (Its not "
196
- "possible to store this sequence of the dates into the one resource.) %s Please %srefresh%s the "
197
- "page and try other days."
198
- msgstr ""
199
- "Съжаляваме, резервацията не е валидна, тези дни са вече резревирани!!! %s (Не е възможно да "
200
- "избрете тези дати) %s Моля %sобновете%s страницата и изберете други дати."
201
-
202
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:2608
203
- #, php-format
204
- msgid "The folowing pending booking(s): %s deleted."
205
- msgstr "Следните чакащи резервации: %s са изтрити."
206
-
207
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:2648
208
- msgid "Maximum available booking resource items"
209
- msgstr "Максиммален брой налични ресурси за резервация"
210
-
211
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:2789
212
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4019
213
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2537
214
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3151
215
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4562
216
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4741
217
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4837
218
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4900
219
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1514
220
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2255
221
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1352
222
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:346
223
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:341
224
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:320
225
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/pay-cash.php:126
226
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:596
227
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:337
228
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:299
229
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1398
230
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1457
231
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1647
232
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1742
233
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3854
234
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3995
235
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-class-settings.php:46
236
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:75
237
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1257
238
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1742
239
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2269
240
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2396
241
- msgid "Save Changes"
242
- msgstr "Запис на промените"
243
-
244
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:2891
245
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3069
246
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3488
247
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3718
248
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3774
249
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3827
250
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3925
251
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4568
252
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:841
253
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1353
254
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1996
255
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2121
256
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:100
257
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:111
258
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:104
259
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/pay-cash.php:56
260
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:140
261
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:96
262
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:85
263
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1355
264
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3433
265
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3514
266
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3586
267
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3671
268
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3761
269
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3918
270
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3960
271
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/sync/wpbc-sync-gcal-api.php:74
272
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:311
273
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:331
274
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:349
275
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:420
276
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:2982
277
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:387
278
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:572
279
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:695
280
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:922
281
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1132
282
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1161
283
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1231
284
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1447
285
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1931
286
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2011
287
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2084
288
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2171
289
- msgid "Click to toggle"
290
- msgstr "Кликнете, за да превключите"
291
-
292
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:2892
293
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:722
294
- msgid "Booking resources management"
295
- msgstr "Управление на ресурси за резервации"
296
-
297
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:2897
298
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3599
299
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3639
300
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4271
301
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4292
302
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4851
303
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4867
304
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-text.php:211
305
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:253
306
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:257
307
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:372
308
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:301
309
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:306
310
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1248
311
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1411
312
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1426
313
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-br-table-for-settings.php:76
314
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-br-table-for-settings.php:93
315
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:576
316
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:594
317
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1572
318
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1575
319
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1952
320
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:815
321
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:816
322
- msgid "ID"
323
- msgstr "ID"
324
-
325
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:2899
326
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4098
327
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4852
328
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1412
329
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1428
330
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-br-table-for-settings.php:77
331
- msgid "Resource name"
332
- msgstr "Име на ресурса"
333
-
334
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:2901
335
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4043
336
- msgid "Number of resource items inside of parent resource"
337
- msgstr "Брой ресурси в родителския ресурс"
338
-
339
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:2901
340
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4043
341
- msgid "Capacity"
342
- msgstr "Капацитет"
343
-
344
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:2902
345
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3006
346
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4044
347
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4170
348
- msgid "Parent"
349
- msgstr "Родител"
350
-
351
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:2903
352
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3013
353
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4045
354
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4180
355
- msgid "Priority"
356
- msgstr "Приоритет"
357
-
358
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:2905
359
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4047
360
- msgid "Maximum number of visitors for resource"
361
- msgstr "Максимален брой посетители за ресурса"
362
-
363
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:2905
364
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4047
365
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1787
366
- msgid "Max"
367
- msgstr "Max"
368
-
369
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:2905
370
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4047
371
- msgid "visitors"
372
- msgstr "посетители"
373
-
374
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:2907
375
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3605
376
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4049
377
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4274
378
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1252
379
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1374
380
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1761
381
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1776
382
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2137
383
- msgid "Actions"
384
- msgstr "Действия"
385
-
386
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:2985
387
- msgid "Add"
388
- msgstr "Добави"
389
-
390
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:2994
391
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:882
392
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4301
393
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4304
394
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4835
395
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1396
396
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1697
397
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1999
398
- msgid "Delete"
399
- msgstr "Изтрий"
400
-
401
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3004
402
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-booking-select-widget.php:121
403
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:577
404
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:596
405
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-widget.php:79
406
- msgid "Title"
407
- msgstr "Заглавие"
408
-
409
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3021
410
- msgid "Add new resource"
411
- msgstr "Добави нов ресурс"
412
-
413
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3028
414
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3167
415
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3716
416
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3964
417
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:448
418
- msgid "Save"
419
- msgstr "Запис"
420
-
421
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3070
422
- msgid "Advanced Settings"
423
- msgstr "Разширени настройки"
424
-
425
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3085
426
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3209
427
- msgid "Set capacity based on number of visitors"
428
- msgstr "Капацитет на базата на брой гости"
429
-
430
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3091
431
- #, php-format
432
- msgid ""
433
- "Check this box if you want total availability (daily capacity) to depend on the number of "
434
- "selected visitors %s."
435
- msgstr ""
436
- "Маркирайте, ако искате общата наличност (дневен капацитет) да зависи от броя на избраните "
437
- "посетители %s."
438
-
439
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3092
440
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3219
441
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1539
442
- #, php-format
443
- msgid "Please read more info about configuration of this parameter %shere%s"
444
- msgstr "Моля, прочетете повече информация за конфигурацията на този параметър %sтук%s"
445
-
446
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3106
447
- #, php-format
448
- msgid ""
449
- "Add tooltip on calendar(s) to show availability based on the number of available booking "
450
- "resource items remaining for each day. %sBe sure to match the maximum number of visitors for the "
451
- "%sone booking resource%s with the number of visitors specified on the booking form."
452
- msgstr ""
453
- "Добави подсказка на календара (календарите), за да се показва броя налични ресурси за всеки ден. "
454
- "%sУверете се, че максималния брой гости за %sедин ресурс%s е съобразен с броя гости обявена в "
455
- "резервационната форма."
456
-
457
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3114
458
- #, php-format
459
- msgid ""
460
- "Display tooltip on calendar(s) to show availability based on total (fixed) number of visitors "
461
- "for the resource, which can be at free booking resource items. %sBe sure to match the maximum "
462
- "number of visitors for %sall booking resources%s with the number of visitors specified on the "
463
- "booking form."
464
- msgstr ""
465
- "Показване на подсказка на календара (календарите) за наличността, базирана на общия (фиксиран) "
466
- "брой гости за ресурса, който може да бъде от свободните ресурси за резревация. %sУверете се, че "
467
- "има съответствие между максималния брой гости за %sвсички резервационни ресурси%s с броя гости, "
468
- "специфицирани в резервационната форма."
469
-
470
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3129
471
- msgid "Show availability"
472
- msgstr "Покажи наличност"
473
-
474
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3136
475
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3356
476
- msgid ""
477
- "Check this box to display the available number of booking resources with a tooltip, when mouse "
478
- "hovers over each day on the calendar(s)."
479
- msgstr ""
480
- "Маркирайте, за да се показват наличните ресурси като подсказка. Подксазката се появява, когато "
481
- "се постави курсора на мишката върху отделен ден от календара."
482
-
483
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3144
484
- msgid "Availability description"
485
- msgstr "Описание на наличността"
486
-
487
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3146
488
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3367
489
- #, php-format
490
- msgid "Type your %savailability%s description"
491
- msgstr "Въведете описание на вашата %sналичност%s"
492
-
493
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3156
494
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3255
495
- msgid "Disable bookings in different booking resources"
496
- msgstr "Забрана на резервации в различни резервационни ресурси"
497
-
498
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3160
499
- msgid ""
500
- "Check this box to dissable reservations, which can be stored in different booking resources. "
501
- "When checked, all reserved days must be at same booking resource otherwise error message will "
502
- "show."
503
- msgstr ""
504
- "Маркирайте тази отметка, за да се забранят резервации, които могат да са от различни ресурси за "
505
- "резервации. Когато е избрано, всички резервирани дни трябва да са от един и същ ресурс, в "
506
- "противен склучай ще покаже съобщение за грешка."
507
-
508
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3216
509
- msgid ""
510
- "Check this box if you want total availability (daily capacity) to depend on the number of "
511
- "selected visitors."
512
- msgstr ""
513
- "Маркирайте тази отметка, ако искате общата наличност (дневен капацитет) да зависи от броя на "
514
- "избраните посетители ."
515
-
516
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3219
517
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:117
518
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:126
519
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:136
520
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:197
521
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:228
522
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:230
523
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:278
524
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:291
525
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:303
526
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:305
527
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:341
528
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:343
529
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:380
530
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:382
531
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:497
532
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:515
533
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:644
534
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:658
535
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:315
536
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:332
537
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:294
538
- msgid "Important!"
539
- msgstr "Важно!"
540
-
541
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3234
542
- msgid ""
543
- "Add tooltip on calendar(s) to show availability based on the number of available booking "
544
- "resource items remaining for each day."
545
- msgstr ""
546
- "Добавяне на подсказка на календара (календарите), която показва броя на наличните ресурси за "
547
- "всеки ден."
548
-
549
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3236
550
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3245
551
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3849
552
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2959
553
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4706
554
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:613
555
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:649
556
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:949
557
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1424
558
- msgid "Note"
559
- msgstr "Забележка"
560
-
561
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3236
562
- #, php-format
563
- msgid ""
564
- "Be sure to match the maximum number of visitors for the %sone booking resource%s with the number "
565
- "of visitors specified on the booking form."
566
- msgstr ""
567
- "Уверете се, че има съответствие между максималния брой гости за %sедин резервационен ресурс%s и "
568
- "броя гости, определени в резервационната форма."
569
-
570
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3243
571
- msgid ""
572
- "Display tooltip on calendar(s) to show availability based on total (fixed) number of visitors "
573
- "for the resource, which can be at free booking resource items."
574
- msgstr ""
575
- "Показване на подсказка на календара (календарите) за наличността, базирана на общия (фиксиран) "
576
- "брой гости за ресурса, който може да бъде от свободните ресурси за резревация."
577
-
578
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3245
579
- #, php-format
580
- msgid ""
581
- "Be sure to match the maximum number of visitors for %sall booking resources%s with the number of "
582
- "visitors specified on the booking form."
583
- msgstr ""
584
- "Уверете се, че има съответствие между максималния брой гости за %sвсички резервационни ресурси%s "
585
- "с броя гости, специфицирани в резервационната форма."
586
-
587
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3260
588
- msgid ""
589
- "Check this box to dissable reservations, which can be stored in different booking resources."
590
- msgstr ""
591
- "Отметка за забрана на резервации, които могат да са запазени в различни резервационни ресурси."
592
-
593
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3263
594
- msgid ""
595
- "When checked, all reserved days must be at same booking resource otherwise error message will "
596
- "show."
597
- msgstr ""
598
- "Когато е избрано, всички резервирани дни трябва да са от една и същ ресурс.В противн случай ще "
599
- "покаже съобщение за грешка."
600
-
601
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3292
602
- msgid "Use pending days as available"
603
- msgstr "Изполвай дните с непотвърдените резервации като налични"
604
-
605
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3301
606
- msgid "Check this box if you want to show the pending days as available in calendars"
607
- msgstr "Отметка дали дните с непотвърдените резервации се показват като налични в календарите"
608
-
609
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3318
610
- msgid ""
611
- "Warning!!! After you approved the specific booking(s), all your pending bookings of the same "
612
- "booking resource as an approved booking for the dates, which are intersect with dates of "
613
- "approved booking, will be automatically canceled!"
614
- msgstr ""
615
- "Винмание!! След като одобрите вашата резервацията (резервации), всички непотвърдени резервации "
616
- "за същия резервационен ресурс и дати като на одобрената резервация, ще бъдат автоматично "
617
- "анулирани !"
618
-
619
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3320
620
- msgid ""
621
- "Auto Cancel all pending bookings for the specific date(s), if some booking is approved for these "
622
- "date(s)"
623
- msgstr ""
624
- "Автоматично анулиране на всички непотвърдени резервациия за определени дати, при наличие на "
625
- "потвърдена резервация за същите дати."
626
-
627
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3349
628
- msgid "Show availability in tooltip"
629
- msgstr "Показване на наличност като подсказка"
630
-
631
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3365
632
- msgid "Availability Title"
633
- msgstr "Наличност заглавие"
634
-
635
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3402
636
- msgid ""
637
- "Use \"Check In\" date as available in calendar for booking resources with capacity higher then 1 "
638
- "for search results"
639
- msgstr ""
640
- "Използване на датата за \"Настаняване\" като налична в календара за резервационните ресурси с "
641
- "капацитет по-висок от 1 при резултатите от търсене"
642
-
643
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3409
644
- msgid ""
645
- "Use \"Check Out\" date as available in calendar for booking resources with capacity higher then "
646
- "1 search results"
647
- msgstr ""
648
- "Използвана на датата за \"Напускане\" като налична в календара за резервационните ресурси с "
649
- "капацитет по-висок от 1 при резултатите от търсене"
650
-
651
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3435
652
- msgid "Coupon Deleted"
653
- msgstr "Купонът е изтрит"
654
-
655
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3481
656
- msgid "Coupon created"
657
- msgstr "Купонът е създаден"
658
-
659
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3489
660
- msgid "Add New Discount Coupon"
661
- msgstr "Добавяне на нов купон за отстъпка"
662
-
663
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3496
664
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3600
665
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3641
666
- msgid "Coupon Code"
667
- msgstr "Код на купона"
668
-
669
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3499
670
- msgid "Enter coupon code."
671
- msgstr "Въведете кода на купона."
672
-
673
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3504
674
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3601
675
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3644
676
- msgid "Savings"
677
- msgstr "Отстъпки"
678
-
679
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3508
680
- msgid "Fixed Amount"
681
- msgstr "Фиксирана сума"
682
-
683
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3509
684
- msgid "Percentage Off"
685
- msgstr "Процент намаление"
686
-
687
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3512
688
- msgid "Enter number of fixed or percentage savings."
689
- msgstr "Въведете фиксирано число или процент за отстъпката"
690
-
691
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3517
692
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3603
693
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3655
694
- msgid "Expiration Date"
695
- msgstr "Дата на изтичане"
696
-
697
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3525
698
- msgid "Select Expiration Date of the coupon."
699
- msgstr "Изберете дата на изтичане на купона."
700
-
701
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3531
702
- msgid "Minimum Booking Cost"
703
- msgstr "Минимална цена на резервацията"
704
-
705
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3534
706
- msgid "Enter minimum booking cost, when coupon is applicable."
707
- msgstr "Въведете минимална цена на резервацията, когато купона е валиден."
708
-
709
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3545
710
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3604
711
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3657
712
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4943
713
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1251
714
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:755
715
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:654
716
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1193
717
- msgid "Resources"
718
- msgstr "Ресурси"
719
-
720
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3548
721
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3625
722
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:335
723
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/sync/wpbc-sync-gcal-feed.php:100
724
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-booking-select-widget.php:144
725
- msgid "All"
726
- msgstr "Всичко"
727
-
728
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3561
729
- msgid "Select booking resources, where is possible to apply this coupon code."
730
- msgstr "Изберете резервационни ресурси, за които отстъпката от купона е валидна."
731
-
732
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3568
733
- msgid "Add New Coupon"
734
- msgstr "Добави нов купон"
735
-
736
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3600
737
- msgid "The coupon code your customers will be using to receive the discount."
738
- msgstr "Код на купона, който клиентите ще използват, за да получат отстъпка."
739
-
740
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3601
741
- msgid "The amount which will be saved. Enter only digits."
742
- msgstr "Сума, която ще бъде намалена. Въвеждайте само цифри."
743
-
744
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3602
745
- msgid "The minimum total cost required to use the coupon"
746
- msgstr "Минималната сума за използване на кода за отстъпка"
747
-
748
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3602
749
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3650
750
- msgid "Minimum Purchase"
751
- msgstr "Минимална сума на покупка"
752
-
753
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3603
754
- msgid "The date your coupon will expire"
755
- msgstr "Дата на изтичане на купона"
756
-
757
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3604
758
- msgid "Resource list, which supports this coupon"
759
- msgstr "Списък с ресурси, за които тези купони са валидни"
760
-
761
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3661
762
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1937
763
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:327
764
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:585
765
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:294
766
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:256
767
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:944
768
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:969
769
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1003
770
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1018
771
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1035
772
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1241
773
- msgid "Warning"
774
- msgstr "Предупреждение"
775
-
776
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3661
777
- msgid "Do you really want to delete this item?"
778
- msgstr "Наистина ли искате да изтриете този елемент?"
779
-
780
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3676
781
- #, php-format
782
- msgid "%s - coupon field, "
783
- msgstr "%s - купон поле, "
784
-
785
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3677
786
- #, php-format
787
- msgid "Example: %s "
788
- msgstr "Пример: %s "
789
-
790
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3719
791
- msgid "Search Availability Form"
792
- msgstr "Форма за търсене на наличност"
793
-
794
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3724
795
- msgid "Inlinee Search Form Template"
796
- msgstr "Подравнена шаблон за форма за онлайн търсене"
797
-
798
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3725
799
- msgid "Horizontal Search Form Template"
800
- msgstr "Хоризолнтална форма за онлайн търсене"
801
-
802
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3726
803
- msgid "Standard Search Form Template"
804
- msgstr "Стандартна форма за онлайн търсене"
805
-
806
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3728
807
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1707
808
- msgid "Reset current Form"
809
- msgstr "Възстанови текущата форма"
810
-
811
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3733
812
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3720
813
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3968
814
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1714
815
- msgid "Reset"
816
- msgstr "Възстанови"
817
-
818
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3754
819
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3799
820
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:225
821
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:252
822
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:245
823
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:207
824
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3982
825
- msgid "Use these shortcodes for customization: "
826
- msgstr "Използвайте тези кратки кодове за персонализиране:"
827
-
828
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3755
829
- #, php-format
830
- msgid "%s - search inside posts/pages which are part of this category, "
831
- msgstr "%s - търсене в Мнения/Страници, които са част от тази категория,"
832
-
833
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3756
834
- #, php-format
835
- msgid "%s - search inside posts/pages which have this tag, "
836
- msgstr "%s - търсене в Мнения/Страници, които имат този етикет,"
837
-
838
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3757
839
- #, php-format
840
- msgid "%s - check-in date, "
841
- msgstr "%s - дата на пристигане,"
842
-
843
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3758
844
- #, php-format
845
- msgid "%s - check-out date, "
846
- msgstr "%s - дата на освобождаване,"
847
-
848
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3759
849
- #, php-format
850
- msgid "%s - default selection number of visitors, "
851
- msgstr "%s - брой посетители - стойност по подразбиране,"
852
-
853
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3760
854
- #, php-format
855
- msgid "Example: %s - custom number of visitor selections\""
856
- msgstr "Пример :%s - персонализиране на избора за брой посетители \""
857
-
858
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3761
859
- #, php-format
860
- msgid "%s - search button, "
861
- msgstr "%s - търсене "
862
-
863
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3763
864
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3816
865
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/index.php:232
866
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2344
867
- msgid "HTML tags is accepted."
868
- msgstr "HTML таговете са разрешени"
869
-
870
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3775
871
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4009
872
- msgid "Search Results"
873
- msgstr "Резултати от търсенето"
874
-
875
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3778
876
- msgid "Reset to default form"
877
- msgstr "Възстановяване на първоначалната форма"
878
-
879
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3800
880
- #, php-format
881
- msgid "%s - resource title, "
882
- msgstr "%s - заглавие на достъпните ресурси, "
883
-
884
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3801
885
- #, php-format
886
- msgid "%s - link to the page with booking form, "
887
- msgstr "%s - връзка към страницата с формата за резервации, "
888
-
889
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3802
890
- #, php-format
891
- msgid "%s - availability of booking resource, "
892
- msgstr "%s - наличност на ресурсите за резервация, "
893
-
894
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3803
895
- #, php-format
896
- msgid "%s - maximum number of visitors for the booking resource, "
897
- msgstr "%s - максимален брой посетители за съответния ресурс за резервация, "
898
-
899
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3804
900
- #, php-format
901
- msgid "%s - cost of booking the resource, "
902
- msgstr "%s - цена на резервацията за съответия ресурс, "
903
-
904
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3805
905
- #, php-format
906
- msgid "%s - featured image, taken from the featured image associated with the post, "
907
- msgstr "%s - заглавна картинка използвана в главата на съответния пост, "
908
-
909
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3806
910
- #, php-format
911
- msgid "%s - booking info, taken from the excerpt associated with the post, "
912
- msgstr "%s - информация за резервацията взета от анотацията асоциирана със съответния пост, "
913
-
914
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3808
915
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:676
916
- msgid "Full cost of the booking."
917
- msgstr "Крайна цена на резервацията."
918
-
919
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3809
920
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:678
921
- msgid "Cost of the booking for the selected dates only."
922
- msgstr "Цена на резервацията само за избраните дни."
923
-
924
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3810
925
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:680
926
- msgid "Additional cost, which depends on the fields selection in the form."
927
- msgstr "Допълнителна цена зависеща от избраните полета във формата."
928
-
929
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3811
930
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:682
931
- msgid "The deposit cost of the booking."
932
- msgstr "Капаро при резерация."
933
-
934
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3812
935
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:684
936
- msgid "Balance cost of the booking - difference between deposit and full cost."
937
- msgstr "Цена за доплащане - разлика между крайната цена на резервацията и депозита."
938
-
939
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3828
940
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4015
941
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:459
942
- msgid "Help Info"
943
- msgstr "Помощтна информация"
944
-
945
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3844
946
- msgid "CSS customization of search form and search results you can make at this file"
947
- msgstr ""
948
- "Персонализирането на формата за търсене и резултатите от търсенето може да направите с CSS в "
949
- "този файл"
950
-
951
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3850
952
- #, php-format
953
- msgid ""
954
- "If you do not see search results at front-end side of your website, please check troubleshooting "
955
- "instruction %shere%s"
956
- msgstr ""
957
- "Ако не виждате резултатите от търсенето в клиентската част на Вашият сайт, моля разгледайте "
958
- "инструкциите за отстраняване на проблеми %shere%s"
959
-
960
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3867
961
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3877
962
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3885
963
- msgid "Check in"
964
- msgstr "Настаняване"
965
-
966
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3868
967
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3878
968
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3886
969
- msgid "Check out"
970
- msgstr "Напускане"
971
-
972
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3869
973
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3879
974
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3887
975
- msgid "Guests"
976
- msgstr "Гости"
977
-
978
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3899
979
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2293
980
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2354
981
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4965
982
- msgid "Availability"
983
- msgstr "Наличност"
984
-
985
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3899
986
- msgid "Max. persons"
987
- msgstr "Максимален брой гости"
988
-
989
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3926
990
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4012
991
- msgid "Search Cache"
992
- msgstr "Кеширани резултати от търсенето"
993
-
994
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3929
995
- msgid "Reset Search Cache"
996
- msgstr "Нулирай кешираните резултати от търсенето"
997
-
998
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3935
999
- msgid "Cache expiration"
1000
- msgstr "Продължителност на кеширането"
1001
-
1002
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3941
1003
- msgid "hour(s)"
1004
- msgstr "час(а)"
1005
-
1006
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3946
1007
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3203
1008
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3391
1009
- msgid "day(s)"
1010
- msgstr "ден(дни)"
1011
-
1012
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3950
1013
- msgid "Select time of cache expiration"
1014
- msgstr "Задайте час за нулиране на кеша"
1015
-
1016
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3958
1017
- msgid "Cache will expire:"
1018
- msgstr "Кеша ще се нулира след:"
1019
-
1020
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3986
1021
- #, php-format
1022
- msgid "Found: %s booking forms inside of posts or pages "
1023
- msgstr "Намерени: %s форми за резервация в страниците и постовете"
1024
-
1025
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4006
1026
- msgid "Search Form"
1027
- msgstr "Форма за търсене"
1028
-
1029
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4085
1030
- msgid "Parent Resource"
1031
- msgstr "Родителски ресурс"
1032
-
1033
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4110
1034
- msgid "Max visitors"
1035
- msgstr "Най-много посетители"
1036
-
1037
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4157
1038
- msgid "Capacity: "
1039
- msgstr "Капацитет:"
1040
-
1041
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4176
1042
- msgid "Select parent resource, if you want that parent resource to increase capacity."
1043
- msgstr "Изберете родителски ресурс, ако искате той да увеличи капацитета."
1044
-
1045
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4187
1046
- msgid "Set priority of resource - resource with higher priority will be reserved firstly."
1047
- msgstr "Задайте приоритет на ресурсите, ресурсите с по-висок приоритет ще бъде резервирана първи."
1048
-
1049
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4198
1050
- msgid "Resources count"
1051
- msgstr "Брояч на ресурсите"
1052
-
1053
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4205
1054
- msgid "Create several booking resources for one time"
1055
- msgstr "Създайте няколко ресурса за резервации за едно и също време"
1056
-
1057
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4219
1058
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2366
1059
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-booking-select-widget.php:207
1060
- msgid "Default form"
1061
- msgstr "Форма по подразбиране"
1062
-
1063
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4224
1064
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4428
1065
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4434
1066
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4482
1067
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:854
1068
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:1061
1069
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:1105
1070
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2368
1071
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4538
1072
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-booking-select-widget.php:211
1073
- msgid "Standard"
1074
- msgstr "Стандарт"
1075
-
1076
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4229
1077
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-booking-select-widget.php:219
1078
- msgid "Select default custom booking form"
1079
- msgstr "Изберете персонализираната форма за резервации по подразбиране"
1080
-
1081
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4321
1082
- msgid "Available: "
1083
- msgstr "Налични:"
1084
-
1085
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4428
1086
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:653
1087
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4158
1088
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:742
1089
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1806
1090
- msgid "Default"
1091
- msgstr "По подразбиране"
1092
-
1093
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4429
1094
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4435
1095
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4470
1096
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4471
1097
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4483
1098
- msgid "Superior"
1099
- msgstr "По-горен"
1100
-
1101
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4429
1102
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2427
1103
- msgid "Resource #1"
1104
- msgstr "Ресурс #1"
1105
-
1106
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4430
1107
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4436
1108
- msgid "Presidential Suite"
1109
- msgstr "Президентски апартамент"
1110
-
1111
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4430
1112
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2428
1113
- msgid "Resource #2"
1114
- msgstr "Ресурс #2"
1115
-
1116
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4431
1117
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4437
1118
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1432
1119
- msgid "Royal Villa"
1120
- msgstr "Царска вила"
1121
-
1122
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4431
1123
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2429
1124
- msgid "Resource #3"
1125
- msgstr "Ресурс #3"
1126
-
1127
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:241
1128
- msgid "night(s)"
1129
- msgstr "нощ(и)"
1130
-
1131
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:252
1132
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:116
1133
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4031
1134
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4045
1135
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4067
1136
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4083
1137
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4094
1138
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4113
1139
- msgid "Adults"
1140
- msgstr "Възрастни"
1141
-
1142
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:252
1143
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:116
1144
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4031
1145
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4045
1146
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4067
1147
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4084
1148
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4095
1149
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4114
1150
- msgid "Children"
1151
- msgstr "Деца"
1152
-
1153
- # на ден
1154
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:281
1155
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:310
1156
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3022
1157
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3065
1158
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3107
1159
- msgid "per 1 day"
1160
- msgstr "за 1 ден"
1161
-
1162
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:282
1163
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:311
1164
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3066
1165
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3106
1166
- msgid "from the cost of 1 day "
1167
- msgstr "от цената за 1 ден"
1168
-
1169
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:283
1170
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:312
1171
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3067
1172
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3108
1173
- #, php-format
1174
- msgid "Additional cost in %s per 1 day"
1175
- msgstr "Допълнителна цена в %s за 1 ден"
1176
-
1177
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:284
1178
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:313
1179
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:314
1180
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3071
1181
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3072
1182
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3114
1183
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3115
1184
- msgid " for all days!"
1185
- msgstr " за всички дни!"
1186
-
1187
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:285
1188
- msgid "for all days!"
1189
- msgstr "за всички дни!"
1190
-
1191
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:851
1192
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:856
1193
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4534
1194
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4540
1195
- msgid "Custom Form"
1196
- msgstr "Персонализирана форма"
1197
-
1198
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:866
1199
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4555
1200
- msgid "Load selected booking form"
1201
- msgstr "Зареди избраната форма за резервации"
1202
-
1203
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:868
1204
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4557
1205
- msgid "Load"
1206
- msgstr "Зареждане"
1207
-
1208
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:876
1209
- msgid "Delete selected booking form"
1210
- msgstr "Изтрий избраната форма за резервации"
1211
-
1212
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:879
1213
- msgid "Do you really want to delete selected booking form ?"
1214
- msgstr "Наистина ли искате да изтриете тази форма за резервации?"
1215
-
1216
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:886
1217
- msgid "Add new custom form"
1218
- msgstr "Добавяне на нова персонализирана форма"
1219
-
1220
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:887
1221
- msgid "Add New Custom Form"
1222
- msgstr "Добавяне на нова персонализирана форма"
1223
-
1224
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:892
1225
- msgid "Type the name of booking form"
1226
- msgstr "Задайте име на формата за резервации"
1227
-
1228
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:895
1229
- msgid "Create new form"
1230
- msgstr "Създай нова форма"
1231
-
1232
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:898
1233
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3714
1234
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3962
1235
- msgid "Create"
1236
- msgstr "Създай"
1237
-
1238
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:900
1239
- msgid "Delete form"
1240
- msgstr "Изтрий формата"
1241
-
1242
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:904
1243
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:451
1244
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:491
1245
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:144
1246
- msgid "Cancel"
1247
- msgstr "Откажи"
1248
-
1249
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:934
1250
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:511
1251
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-ajax.php:213
1252
- msgid "Deleted"
1253
- msgstr "Изтрий"
1254
-
1255
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:941
1256
- msgid "There are no extended booking forms"
1257
- msgstr "Няма надградени форми за резервации"
1258
-
1259
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:1059
1260
- msgid "Booking form type:"
1261
- msgstr "Тип на формата за резервации:"
1262
-
1263
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:1066
1264
- msgid "Select type of booking form"
1265
- msgstr "Избери типа на формата за резервации"
1266
-
1267
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:1100
1268
- msgid "Booking Form"
1269
- msgstr "Форма за резервации"
1270
-
1271
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:1180
1272
- msgid "Standard booking resource cost"
1273
- msgstr "Стандартана цена на ресурса за резервации"
1274
-
1275
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:1181
1276
- msgid "Total booking resource cost"
1277
- msgstr "Крайна цена на ресурса за резервации"
1278
-
1279
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:1525
1280
- #, php-format
1281
- msgid ""
1282
- "%s - show cost hint for full booking in real time, depending on number of days selected and form "
1283
- "elements."
1284
- msgstr ""
1285
- "%s - показвай подсказка за цената на резервацията в реално време, в зависимост от броят на дните "
1286
- "и избраните елементи от формата."
1287
-
1288
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:1526
1289
- #, php-format
1290
- msgid "Example: %sThe full cost of payment: %s"
1291
- msgstr "Пример: %sКрайна цена за плащане: %s"
1292
-
1293
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:1527
1294
- #, php-format
1295
- msgid ""
1296
- "%s - show hint of original booking cost without additional costs for full booking in real time, "
1297
- "depends only from days selection."
1298
- msgstr ""
1299
- "%s - показвай подсказка в реално време с цената за цялата резервация (без допълнителните опции) "
1300
- "в зависимост само от избраните дни."
1301
-
1302
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:1528
1303
- #, php-format
1304
- msgid "Example: %sThe original cost for payment: %s "
1305
- msgstr "Пример: %sКрайна цена за плащане: %s"
1306
-
1307
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:1529
1308
- #, php-format
1309
- msgid ""
1310
- "%s - show cost hint of additional booking cost, which depends from selection of form elements."
1311
- msgstr ""
1312
- "%s - показвай подсказка за допълнителните цени които зависят от избраните във формата елементи."
1313
-
1314
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:1530
1315
- #, php-format
1316
- msgid "Example: %sThe additional cost for payment: %s "
1317
- msgstr "Пример: %sКрайна цена за плащане: %s"
1318
-
1319
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:1531
1320
- #, php-format
1321
- msgid "%s - enter direct cost at admin panel at page: "
1322
- msgstr "%s - директно въведи цена в административният панел за страница: "
1323
-
1324
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:1531
1325
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:643
1326
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:710
1327
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1179
1328
- msgid "Add booking"
1329
- msgstr "Добави резервация"
1330
-
1331
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:1532
1332
- #, php-format
1333
- msgid "Example: %s"
1334
- msgstr "Пример: %s"
1335
-
1336
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2086
1337
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-functions.php:322
1338
- msgid "yes"
1339
- msgstr "да"
1340
-
1341
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2288
1342
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2292
1343
- msgid "Setting rate or cost, which is depend from number of selected days for the resource"
1344
- msgstr "Създаване ставка или цена, която е в зависимост от броя на избраните дни за ресурса"
1345
-
1346
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2289
1347
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2326
1348
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2637
1349
- msgid "Rates"
1350
- msgstr "Ставка"
1351
-
1352
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2289
1353
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2331
1354
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2335
1355
- msgid "Valuation days"
1356
- msgstr "Калкулирани дни"
1357
-
1358
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2289
1359
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:444
1360
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:454
1361
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:766
1362
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:551
1363
- msgid "Deposit"
1364
- msgstr "Депозит"
1365
-
1366
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2297
1367
- msgid "Setting the default form for the specific resource"
1368
- msgstr "Задаване на форма по подразбиране за конкретен ресурс"
1369
-
1370
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2298
1371
- msgid "Default Form"
1372
- msgstr "Форма по подразбиране"
1373
-
1374
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2334
1375
- msgid "Set the cost based on the number of days selected for the reservation"
1376
- msgstr "Задай цена базирана на избраният брой дните за резервация"
1377
-
1378
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2335
1379
- msgid "Activation of this feature is require setting cost per day or cost per night"
1380
- msgstr "Активирането на тази функция изисква задаване на цена за ден или цена за нощ"
1381
-
1382
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2342
1383
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3364
1384
- msgid "Deposit amount"
1385
- msgstr "Сума на депозита"
1386
-
1387
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2478
1388
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2489
1389
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2494
1390
- msgid "unavailable"
1391
- msgstr "не е налично"
1392
-
1393
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2479
1394
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2490
1395
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2493
1396
- msgid "available"
1397
- msgstr "налично"
1398
-
1399
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2481
1400
- msgid "Availability booking type"
1401
- msgstr "Наличен тип резервация"
1402
-
1403
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2486
1404
- #, php-format
1405
- msgid "All days for %s"
1406
- msgstr "За всички дни %s"
1407
-
1408
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2496
1409
- #, php-format
1410
- msgid "Select %s days by activating specific season filter below or %sadd new season filter%s"
1411
- msgstr ""
1412
- "Избери %s дни за активиране в съответния филтър за сезон по-долу или %sadd нов сезонен филтър%s"
1413
-
1414
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2507
1415
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2529
1416
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4272
1417
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4293
1418
- msgid "Season Filter Name"
1419
- msgstr "Име на сезонен филтър"
1420
-
1421
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2508
1422
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2530
1423
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2640
1424
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2711
1425
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4294
1426
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:418
1427
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:564
1428
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:302
1429
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/pay-cash.php:90
1430
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:485
1431
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:493
1432
- msgid "Description"
1433
- msgstr "Описание"
1434
-
1435
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2526
1436
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2667
1437
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2995
1438
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3046
1439
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3176
1440
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3357
1441
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:856
1442
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:107
1443
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:191
1444
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:211
1445
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:232
1446
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3448
1447
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3530
1448
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3601
1449
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3687
1450
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3777
1451
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/sync/wpbc-sync-gcal-api.php:91
1452
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1482
1453
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1525
1454
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1570
1455
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1616
1456
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1670
1457
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1713
1458
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1946
1459
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2027
1460
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2099
1461
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2187
1462
- msgid "Active"
1463
- msgstr "Активно"
1464
-
1465
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2529
1466
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2710
1467
- msgid "Edit season filter"
1468
- msgstr "Редактиране на сезонен филтър"
1469
-
1470
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2617
1471
- msgid "Seasonal rates of booking resource"
1472
- msgstr "Сезонни ставки за резервационни ресурси"
1473
-
1474
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2623
1475
- #, php-format
1476
- msgid ""
1477
- "Enter seasonal rate(s) (cost diference in %s from standard cost %s or a fixed cost) of the "
1478
- "booking resource (%s) or %sAdd a new seasonal filter%s"
1479
- msgstr ""
1480
- "Задайте сезанни ставка(и) (разлика в цената в %s от стандартната цена %s или фиксирана цена) за "
1481
- "резервационния ресурс (%s) или %sAdd нов сезонен филтър%s"
1482
-
1483
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2638
1484
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2691
1485
- msgid "Final cost"
1486
- msgstr "Крайна цена"
1487
-
1488
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2639
1489
- msgid "Season Filter"
1490
- msgstr "Сезонен филтър"
1491
-
1492
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2672
1493
- msgid "Rate"
1494
- msgstr "Ставка"
1495
-
1496
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2681
1497
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2701
1498
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2005
1499
- msgid "for 1 day"
1500
- msgstr "за 1 ден"
1501
-
1502
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2682
1503
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2702
1504
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2006
1505
- msgid "for 1 night"
1506
- msgstr "за 1 нощ"
1507
-
1508
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2683
1509
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2703
1510
- msgid "fixed deposit"
1511
- msgstr "фиксиран депозит"
1512
-
1513
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2684
1514
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2704
1515
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2008
1516
- msgid "for 1 hour"
1517
- msgstr "за 1 час"
1518
-
1519
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2710
1520
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3704
1521
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3952
1522
- msgid "Filter Name"
1523
- msgstr "Име на филтъра"
1524
-
1525
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2718
1526
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2958
1527
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3453
1528
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:340
1529
- msgid "Note!"
1530
- msgstr "Нищо!"
1531
-
1532
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2718
1533
- msgid "Check boxe(s) at left side if you want to activate specific cost."
1534
- msgstr "Постави отметка в чекбокса(овете) от ляво, ако искате да активирате специфична цена."
1535
-
1536
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2722
1537
- msgid "Update Rates"
1538
- msgstr "Актуализирай ставката"
1539
-
1540
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2957
1541
- msgid "Set cost of booking resource based on the number of days selected"
1542
- msgstr "Задай цена на резервационния ресурс в зависимост от избрания брой дни"
1543
-
1544
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2958
1545
- #, php-format
1546
- msgid "If you add costs here, %srates%s for this booking resource will not take effect !!!"
1547
- msgstr "Ако зададете цена тук, %s ставките %s за този резервационен ресурс тяняма да има ефект !!!"
1548
-
1549
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2962
1550
- #, php-format
1551
- msgid ""
1552
- "Cost setings at %stop have higher priority%s than other costs of same type at the %sbottom%s of "
1553
- "the list."
1554
- msgstr ""
1555
- "Зададената цена в %stop има по висок приоритет от %s другите цени от същият тип зададени в "
1556
- "%sbottom%s на списъка."
1557
-
1558
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2963
1559
- #, php-format
1560
- msgid ""
1561
- "Please create all %s terms firstly %s(from higher priority to lower)%s, then terms %s and after "
1562
- "terms %s"
1563
- msgstr ""
1564
- "Моля създайте първо всички %s периоди %s(from higher priority to lower)%s, след това периодите "
1565
- "%s и най-накрая периодите %s"
1566
-
1567
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2963
1568
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2965
1569
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3078
1570
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3189
1571
- msgid "Together"
1572
- msgstr "Заедно"
1573
-
1574
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2963
1575
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2965
1576
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3002
1577
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3076
1578
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3187
1579
- msgid "For"
1580
- msgstr "От"
1581
-
1582
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2963
1583
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2965
1584
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3077
1585
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3188
1586
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3534
1587
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:877
1588
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3461
1589
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3536
1590
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3621
1591
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3708
1592
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3798
1593
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:581
1594
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1959
1595
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2033
1596
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2119
1597
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2208
1598
- msgid "From"
1599
- msgstr "От"
1600
-
1601
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2963
1602
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2965
1603
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3454
1604
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1952
1605
- msgid "To"
1606
- msgstr "До"
1607
-
1608
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2965
1609
- #, php-format
1610
- msgid "%s and %s terms have higher priority than a range %s days."
1611
- msgstr "%s и %s периоди имат по-висок приоритет от диапазона от %s дни."
1612
-
1613
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2968
1614
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:853
1615
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-notices.php:25
1616
- msgid "Warning!"
1617
- msgstr "Предупреждение!"
1618
-
1619
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2969
1620
- msgid ""
1621
- "Specific cost will take affect, only if it active (the box at the left side is checked) and if "
1622
- "\"Check In\" (start) date belong to selected season filter or if set \"Any days\"."
1623
- msgstr ""
1624
- "Специфичната цена ще има ефект, само ако е активирана (чекбокса от лявата страна е маркиран) и "
1625
- "ако \"Датата на пристигане\" (началната дата) принадлежи на избраният сезонен филтър или ако е "
1626
- "избрано \"Всеки ден\"."
1627
-
1628
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2978
1629
- msgid "Number of Days"
1630
- msgstr "Брой дни"
1631
-
1632
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2979
1633
- msgid "Cost Settings"
1634
- msgstr "Настройки на цената"
1635
-
1636
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2980
1637
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3027
1638
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3124
1639
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3218
1640
- msgid "Season Filter of Check In date"
1641
- msgstr "Сезонен филтър за избраните дни"
1642
-
1643
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3004
1644
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3080
1645
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3192
1646
- msgid "Day Number(s)"
1647
- msgstr "брой дни"
1648
-
1649
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3010
1650
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3086
1651
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3198
1652
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3534
1653
- msgid "to"
1654
- msgstr "до"
1655
-
1656
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3014
1657
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3092
1658
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2176
1659
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:805
1660
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:292
1661
- msgid "day"
1662
- msgstr "ден"
1663
-
1664
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3018
1665
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3099
1666
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3208
1667
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:344
1668
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:378
1669
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:376
1670
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:282
1671
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:304
1672
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:309
1673
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:445
1674
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:455
1675
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:767
1676
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:552
1677
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:832
1678
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:833
1679
- msgid "Cost"
1680
- msgstr "цена"
1681
-
1682
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3029
1683
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3126
1684
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3220
1685
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3407
1686
- msgid "Any days"
1687
- msgstr "всеки ден"
1688
-
1689
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3093
1690
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2179
1691
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:618
1692
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:682
1693
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:808
1694
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:293
1695
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:294
1696
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:295
1697
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:296
1698
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:297
1699
- msgid "days"
1700
- msgstr "Дни"
1701
-
1702
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3137
1703
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3231
1704
- msgid "Remove"
1705
- msgstr "Премахни"
1706
-
1707
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3150
1708
- msgid "Add new cost"
1709
- msgstr "Добави нова цена"
1710
-
1711
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3186
1712
- msgid "for all days"
1713
- msgstr "за всички дни"
1714
-
1715
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3330
1716
- msgid "Set amount of deposit payment"
1717
- msgstr "Задай необходимият за плащане депозит"
1718
-
1719
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3339
1720
- msgid "Deposit payment total"
1721
- msgstr "Депозит"
1722
-
1723
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3342
1724
- msgid "Deposit payment is not active for booking resource"
1725
- msgstr "Плащането на депозит не е активно за този резервационен ресурс"
1726
-
1727
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3349
1728
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:847
1729
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3439
1730
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3521
1731
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3592
1732
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3679
1733
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3768
1734
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/sync/wpbc-sync-gcal-api.php:82
1735
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1507
1736
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1937
1737
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2018
1738
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2090
1739
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2179
1740
- msgid "Status"
1741
- msgstr "Статус"
1742
-
1743
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3358
1744
- msgid "deposit payment for booking resource"
1745
- msgstr "Капаро при резервация за този резервационен ресурс."
1746
-
1747
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3373
1748
- msgid "fixed total in"
1749
- msgstr "Фиксирана сума в"
1750
-
1751
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3374
1752
- msgid "of payment"
1753
- msgstr "при плащане"
1754
-
1755
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3380
1756
- msgid "Conditions"
1757
- msgstr "Условия"
1758
-
1759
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3383
1760
- #, php-format
1761
- msgid ""
1762
- "Show deposit payment form, only if difference between %sToday%s and %sCheck In%s days more than"
1763
- msgstr ""
1764
- "Показвай формата за плащане на депозит, само ако разликата между %sToday%s и%sCheck In%s дни е "
1765
- "повече от "
1766
-
1767
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3404
1768
- #, php-format
1769
- msgid "Show deposit payment form, only if %sCheck In%s day inside of this %sSeason Filter%s"
1770
- msgstr ""
1771
- "Да се показва формата за плащане на депозит, само ако деня на %sПристигане%s е във %sСезонния "
1772
- "филтър%s"
1773
-
1774
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3423
1775
- msgid "Update Deposit"
1776
- msgstr "Актуализирай депозита"
1777
-
1778
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3447
1779
- msgid "Deposit payment"
1780
- msgstr "Плащане на депозита"
1781
-
1782
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3452
1783
- #, php-format
1784
- msgid ""
1785
- "Check this box if you want to use the %sdeposit%s total %spayment%s on the payment form, instead "
1786
- "of the full total of the booking."
1787
- msgstr ""
1788
- "Избери този бокс, ако искаш да използваш %sdeposit%s тотал %spayment%s във формата за плащане, "
1789
- "вместо крайната цена на резервацията."
1790
-
1791
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3453
1792
- #, php-format
1793
- msgid " You can configure the deposit payment for your booking resources %shere%s."
1794
- msgstr "Можете да конфигурирате плащането на депозит за вашия ресурс %shere%s"
1795
-
1796
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3471
1797
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3751
1798
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:116
1799
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:153
1800
- msgid "Su"
1801
- msgstr "Нд"
1802
-
1803
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3471
1804
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3751
1805
- msgid "Mo"
1806
- msgstr "Пн"
1807
-
1808
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3471
1809
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3751
1810
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:116
1811
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:153
1812
- msgid "Tu"
1813
- msgstr "Вт"
1814
-
1815
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3471
1816
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3751
1817
- msgid "We"
1818
- msgstr "Ср"
1819
-
1820
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3471
1821
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3751
1822
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:116
1823
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:153
1824
- msgid "Th"
1825
- msgstr "Чт"
1826
-
1827
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3471
1828
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3751
1829
- msgid "Fr"
1830
- msgstr "Пт"
1831
-
1832
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3471
1833
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3751
1834
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:116
1835
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:153
1836
- msgid "Sa"
1837
- msgstr "Сб"
1838
-
1839
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3472
1840
- msgid "Jan"
1841
- msgstr "Яну"
1842
-
1843
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3472
1844
- msgid "Feb"
1845
- msgstr "Фев"
1846
-
1847
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3472
1848
- msgid "Mar"
1849
- msgstr "Мар"
1850
-
1851
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3472
1852
- msgid "Apr"
1853
- msgstr "Апр"
1854
-
1855
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3472
1856
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4127
1857
- msgid "May"
1858
- msgstr "Май"
1859
-
1860
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3472
1861
- msgid "Jun"
1862
- msgstr "Юни"
1863
-
1864
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3472
1865
- msgid "Jul"
1866
- msgstr "Юли"
1867
-
1868
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3472
1869
- msgid "Aug"
1870
- msgstr "Авг"
1871
-
1872
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3472
1873
- msgid "Sep"
1874
- msgstr "Сеп"
1875
-
1876
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3472
1877
- msgid "Oct"
1878
- msgstr "Окт"
1879
-
1880
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3472
1881
- msgid "Nov"
1882
- msgstr "Нов"
1883
-
1884
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3472
1885
- msgid "Dec"
1886
- msgstr "Дек"
1887
-
1888
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3531
1889
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3550
1890
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3570
1891
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3591
1892
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3608
1893
- msgid "No days"
1894
- msgstr "За никой от дните"
1895
-
1896
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3534
1897
- msgid "time"
1898
- msgstr "час"
1899
-
1900
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3552
1901
- msgid "Every"
1902
- msgstr "Всеки"
1903
-
1904
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3567
1905
- msgid "Each day "
1906
- msgstr "Всеки ден"
1907
-
1908
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3568
1909
- msgid "on each day "
1910
- msgstr "За всеки ден"
1911
-
1912
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3572
1913
- msgid "On each "
1914
- msgstr "За всеки"
1915
-
1916
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3573
1917
- msgid "on each "
1918
- msgstr "за всеки"
1919
-
1920
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3589
1921
- msgid "of every month "
1922
- msgstr "За всеки месец"
1923
-
1924
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3593
1925
- msgid "of"
1926
- msgstr "за"
1927
-
1928
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3662
1929
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3901
1930
- msgid "Filter saved"
1931
- msgstr "Филтър е записан"
1932
-
1933
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3698
1934
- msgid "Specific Dates Filter"
1935
- msgstr "Филтър за конкретни дни"
1936
-
1937
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3707
1938
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3955
1939
- msgid "Type filter name"
1940
- msgstr "Въведи име на филтъра"
1941
-
1942
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3712
1943
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3818
1944
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3960
1945
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4219
1946
- msgid "Create new season filter"
1947
- msgstr "Създай нов сезонен филтър"
1948
-
1949
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3818
1950
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4219
1951
- msgid "Create New Season Filter"
1952
- msgstr "Създай нов сезонен филтър"
1953
-
1954
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3818
1955
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4219
1956
- msgid "Save changes"
1957
- msgstr "Запиши промените"
1958
-
1959
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3946
1960
- msgid "Conditional Dates Filter"
1961
- msgstr "Филтър за условни дни"
1962
-
1963
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3980
1964
- msgid "Days of week"
1965
- msgstr "Дни от седмицата"
1966
-
1967
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3988
1968
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1753
1969
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1842
1970
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:451
1971
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:597
1972
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:110
1973
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:134
1974
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:135
1975
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:140
1976
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:440
1977
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:475
1978
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:442
1979
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:474
1980
- msgid "Sunday"
1981
- msgstr "Неделя"
1982
-
1983
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3994
1984
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1755
1985
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1846
1986
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:452
1987
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:598
1988
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:110
1989
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:134
1990
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:135
1991
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:140
1992
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:440
1993
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:475
1994
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:443
1995
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:478
1996
- msgid "Monday"
1997
- msgstr "Понеделни"
1998
-
1999
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4000
2000
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1757
2001
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1850
2002
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:453
2003
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:599
2004
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:110
2005
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:134
2006
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:135
2007
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:140
2008
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:440
2009
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:475
2010
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:444
2011
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:482
2012
- msgid "Tuesday"
2013
- msgstr "Вторник"
2014
-
2015
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4006
2016
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1759
2017
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1854
2018
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:454
2019
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:600
2020
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:110
2021
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:134
2022
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:135
2023
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:140
2024
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:440
2025
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:475
2026
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:445
2027
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:486
2028
- msgid "Wednesday"
2029
- msgstr "Сряда"
2030
-
2031
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4012
2032
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1761
2033
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1858
2034
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:455
2035
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:601
2036
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:110
2037
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:134
2038
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:135
2039
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:140
2040
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:440
2041
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:475
2042
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:446
2043
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:490
2044
- msgid "Thursday"
2045
- msgstr "Четвъртък"
2046
-
2047
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4018
2048
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1763
2049
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1862
2050
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:456
2051
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:602
2052
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:110
2053
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:134
2054
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:135
2055
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:140
2056
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:440
2057
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:475
2058
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:447
2059
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:494
2060
- msgid "Friday"
2061
- msgstr "Петък"
2062
-
2063
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4024
2064
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1765
2065
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1866
2066
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:457
2067
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:603
2068
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:110
2069
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:134
2070
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:135
2071
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:140
2072
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:440
2073
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:475
2074
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:448
2075
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:498
2076
- msgid "Saturday"
2077
- msgstr "Събота"
2078
-
2079
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4036
2080
- msgid "Days of month"
2081
- msgstr "Дни от месеца"
2082
-
2083
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4116
2084
- msgid "Months"
2085
- msgstr "Месеци"
2086
-
2087
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4123
2088
- msgid "January"
2089
- msgstr "Януари"
2090
-
2091
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4124
2092
- msgid "February"
2093
- msgstr "Февруари"
2094
-
2095
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4125
2096
- msgid "March"
2097
- msgstr "Март"
2098
-
2099
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4126
2100
- msgid "April"
2101
- msgstr "Април"
2102
-
2103
- # Липсва май
2104
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4128
2105
- msgid "June"
2106
- msgstr "Юни"
2107
-
2108
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4147
2109
- msgid "July"
2110
- msgstr "Юли"
2111
-
2112
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4148
2113
- msgid "August"
2114
- msgstr "Август"
2115
-
2116
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4149
2117
- msgid "September"
2118
- msgstr "Септември"
2119
-
2120
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4150
2121
- msgid "October"
2122
- msgstr "Октомври"
2123
-
2124
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4151
2125
- msgid "November"
2126
- msgstr "Ноември"
2127
-
2128
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4152
2129
- msgid "December"
2130
- msgstr "Декември"
2131
-
2132
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4176
2133
- msgid "Years"
2134
- msgstr "Години"
2135
-
2136
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4246
2137
- msgid "Filter deleted successfully"
2138
- msgstr "Филтъра е изтрит успешно"
2139
-
2140
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4254
2141
- msgid "Create dates filter"
2142
- msgstr "Създай филтър по дни"
2143
-
2144
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4257
2145
- msgid "Create conditional days filter"
2146
- msgstr "Създай филтър за условни дни"
2147
-
2148
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4266
2149
- msgid "Listing of season filters"
2150
- msgstr "Списък на сезонните филтри"
2151
-
2152
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4273
2153
- msgid "Filters"
2154
- msgstr "Филтри"
2155
-
2156
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4297
2157
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4299
2158
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4834
2159
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1395
2160
- msgid "Edit"
2161
- msgstr "Редактирай"
2162
-
2163
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4302
2164
- msgid "Do you really want to delete?"
2165
- msgstr "Наистина ли искате да го изтриете?"
2166
-
2167
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4343
2168
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:634
2169
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-notices.php:104
2170
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:936
2171
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1028
2172
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1604
2173
- msgid "Hide"
2174
- msgstr "Скрий"
2175
-
2176
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4344
2177
- msgid "Showing cost in date cell"
2178
- msgstr "Показвай цената в клетката с данните"
2179
-
2180
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4355
2181
- #, php-format
2182
- msgid " Check this box to display the %sdaily cost at the date cells%s in the calendar(s)."
2183
- msgstr " Избери този бокс за да покажете %sdaily цена в клетката с данните%s в календара(ите)."
2184
-
2185
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4363
2186
- msgid "Currency symbol"
2187
- msgstr "Текущ символ"
2188
-
2189
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4387
2190
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1599
2191
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:547
2192
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:597
2193
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:870
2194
- msgid "Custom"
2195
- msgstr "Персонализиран"
2196
-
2197
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4392
2198
- #, php-format
2199
- msgid ""
2200
- "Type your %scurrency symbol%s to display near daily cost in date cells. %sDocumentation on "
2201
- "currency symbols%s"
2202
- msgstr ""
2203
- "Въведете вашия %scurrency symbol%s за да го покажете непосредствено до цената на ден в клетката "
2204
- "с данните. %sDocumentation on currency symbols%s"
2205
-
2206
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4404
2207
- msgid "Showing cost in tooltip"
2208
- msgstr "Показване на цената в подсказките"
2209
-
2210
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4415
2211
- msgid ""
2212
- " Check this box to display the daily cost with a tooltip when mouse hovers over each day on the "
2213
- "calendar(s)."
2214
- msgstr ""
2215
- "Изберете този бокс за да показвате цената за ден в подсказката когато преминавате с мишката "
2216
- "върху всяка клетка от календара(ите)."
2217
-
2218
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4423
2219
- msgid "Cost Title"
2220
- msgstr "Заглавие на цената"
2221
-
2222
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4425
2223
- #, php-format
2224
- msgid "Type your %scost%s description"
2225
- msgstr "Въведете вашето %scost%s описание"
2226
-
2227
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4569
2228
- msgid "Advanced cost management"
2229
- msgstr "Разширени настройки за цената"
2230
-
2231
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4588
2232
- msgid "Configure Additional cost for the form"
2233
- msgstr "Конфигуриране на допълнителни разходи за формата"
2234
-
2235
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4631
2236
- msgid "Additional cost for"
2237
- msgstr "Допълнителни цена за"
2238
-
2239
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4702
2240
- msgid ""
2241
- "Check this box if you want that specific additional cost, which configured as percentage for "
2242
- "some option, apply to other additional fixed costs and not only to original booking cost."
2243
- msgstr ""
2244
- "Маркирайте тази отметка, ако искате специфичните допълнителни разходи, които се конфигурират "
2245
- "като процент от някоя опция, да важат и за други допълнителни фиксирани цени, а не само към "
2246
- "първоначалната цена за резервация."
2247
-
2248
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4708
2249
- msgid "Configure additional cost, which depend from selection of selectbox(es) and checkbox(es)."
2250
- msgstr ""
2251
- "Конфигуриране на допълнителни разходи, които зависят от избор на селектбокс(ове) и чекбокс(ове)."
2252
-
2253
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4711
2254
- #, php-format
2255
- msgid ""
2256
- "Fields %s(selectbox(es) and checkbox(es))%s are shown here automatically if they exist in the "
2257
- "%sbooking form%s."
2258
- msgstr ""
2259
- "Полетата %s(селектбокс(ове) и чекбок(ове))%s се показват автоматично, ако съществуват в "
2260
- "%sbooking form%s."
2261
-
2262
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4718
2263
- msgid "Enter additional cost in formats:"
2264
- msgstr "Въведете допълнителна цена във формат:"
2265
-
2266
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4719
2267
- #, php-format
2268
- msgid ""
2269
- "For example, if the original cost of the booking is %s, then after applying additional costs the "
2270
- "total cost will be folowing"
2271
- msgstr ""
2272
- "Например, ако оригиналната цена на резервацията е %s, след прилагането на допълнителната цена, "
2273
- "крайната цена ще е следната"
2274
-
2275
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4722
2276
- msgid "Enter fixed cost"
2277
- msgstr "Въведете фиксирана цена"
2278
-
2279
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4722
2280
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4725
2281
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4731
2282
- #, php-format
2283
- msgid "%s, then total cost will be %s"
2284
- msgstr "%s, тогава крайната цена ще е %s"
2285
-
2286
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4725
2287
- msgid "Enter percentage of the entire booking"
2288
- msgstr "Въведете процент от цялата резервацията"
2289
-
2290
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4728
2291
- msgid "Enter fixed amount for each selected day"
2292
- msgstr "Въведете фиксирана сума за всеки избран ден"
2293
-
2294
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4728
2295
- #, php-format
2296
- msgid "%s, then total cost will be (if selected 3 days) %s"
2297
- msgstr "%s, тогава общата цена ще бъде (ако са избрани 3 дни) %s"
2298
-
2299
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4728
2300
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:279
2301
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:292
2302
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:306
2303
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:344
2304
- msgid "or"
2305
- msgstr "или"
2306
-
2307
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4731
2308
- msgid "Enter percentage as additional sum, which is based only on original cost and not full sum"
2309
- msgstr ""
2310
- "Въведете процент като допълнителна сума, която се основава само на първоначалната себестойност, "
2311
- "а не на пълна сума"
2312
-
2313
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4735
2314
- #, php-format
2315
- msgid "Please check more info about configuration of this cost settings on this %spage%s."
2316
- msgstr "Моля, прочетете повече информация за конфигурацията на този тип цена на %spage%s."
2317
-
2318
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4808
2319
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1337
2320
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-br-table-for-settings.php:33
2321
- msgid "Resource ID or Title"
2322
- msgstr "Ресурс ID или заглавие"
2323
-
2324
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4810
2325
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1339
2326
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-br-table-for-settings.php:35
2327
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1452
2328
- msgid "Go"
2329
- msgstr "Иди"
2330
-
2331
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4833
2332
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1394
2333
- msgid "Bulk Actions"
2334
- msgstr "Групови действия"
2335
-
2336
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4854
2337
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4880
2338
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1414
2339
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1439
2340
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-br-table-for-settings.php:79
2341
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-br-table-for-settings.php:105
2342
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:578
2343
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:600
2344
- msgid "Info"
2345
- msgstr "Информация"
2346
-
2347
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4866
2348
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1425
2349
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-br-table-for-settings.php:92
2350
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:593
2351
- msgid "Selection"
2352
- msgstr "Избор"
2353
-
2354
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4869
2355
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-br-table-for-settings.php:95
2356
- msgid "Resource Name"
2357
- msgstr "Име на ресурса"
2358
-
2359
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4946
2360
- msgid "Resources Settings"
2361
- msgstr "Настройки на ресурса"
2362
-
2363
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4946
2364
- msgid "Resources management"
2365
- msgstr "Менажиране на ресурса"
2366
-
2367
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4948
2368
- msgid "Costs and Rates"
2369
- msgstr "Цени и ставки"
2370
-
2371
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4951
2372
- msgid "Costs and Rates Settings"
2373
- msgstr "Настройки на цените и ставките"
2374
-
2375
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4951
2376
- msgid "Customization of rates, valuation days cost and deposit amount "
2377
- msgstr "Настройки на ставките, остойностените дни и сумата на депозита"
2378
-
2379
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4953
2380
- msgid "Advanced Cost"
2381
- msgstr "Разширени цени"
2382
-
2383
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4956
2384
- msgid "Advanced Cost Settings"
2385
- msgstr "Разширени настройки за цената"
2386
-
2387
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4956
2388
- msgid "Customization of additional cost, which depend from form fields"
2389
- msgstr "Персонализиране на допълнителните разходи, които зависят от полета на формата"
2390
-
2391
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4959
2392
- msgid "Coupons"
2393
- msgstr "Купони"
2394
-
2395
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4962
2396
- msgid "Coupons Settings"
2397
- msgstr "Настройки на купоните"
2398
-
2399
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4962
2400
- msgid "Setting coupons for discount"
2401
- msgstr "Настройка на купоните за намаление"
2402
-
2403
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4968
2404
- msgid "Availability Settings"
2405
- msgstr "Налични настройки"
2406
-
2407
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4968
2408
- msgid "Customization of availability settings"
2409
- msgstr "Персонализиране на наличните настройки"
2410
-
2411
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4970
2412
- msgid "Season Filters"
2413
- msgstr "Сезонни филтри"
2414
-
2415
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4973
2416
- msgid "Season Filters Settings"
2417
- msgstr "Настройки на сезонните филтри"
2418
-
2419
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4973
2420
- msgid "Customization of season filters settings"
2421
- msgstr "Персонализиране на настройките на сезонните филтри"
2422
-
2423
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:5017
2424
- msgid "Cost: "
2425
- msgstr "Цена:"
2426
-
2427
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:5051
2428
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:659
2429
- msgid "Weekend"
2430
- msgstr "Почивни дни"
2431
-
2432
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:5098
2433
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:661
2434
- msgid "High season"
2435
- msgstr "Висок сезон"
2436
-
2437
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:107
2438
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4040
2439
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4058
2440
- msgid "Select Times"
2441
- msgstr "Избери периоди"
2442
-
2443
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:343
2444
- msgid "Setting cost for the resource"
2445
- msgstr "Задаване на цената за ресурса"
2446
-
2447
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:346
2448
- msgid "/ day"
2449
- msgstr "/ деб"
2450
-
2451
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:347
2452
- msgid "/ night"
2453
- msgstr "/ нощ"
2454
-
2455
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:348
2456
- msgid "fixed"
2457
- msgstr "фиксирана"
2458
-
2459
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:349
2460
- msgid "/ hour"
2461
- msgstr "/ час"
2462
-
2463
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:416
2464
- msgid ""
2465
- "Start Time is invalid. The date or time may be booked, or already in the past! Please choose "
2466
- "another date or time."
2467
- msgstr ""
2468
- "Началото на периода е невалидно, Датата или часа може би са резервирани или са в миналото! Моля "
2469
- "изберете друг ден или час."
2470
-
2471
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:417
2472
- msgid ""
2473
- "End Time is invalid. The date or time may be booked, or already in the past. The End Time may "
2474
- "also be earlier that the start time, if only 1 day was selected! Please choose another date or "
2475
- "time."
2476
- msgstr ""
2477
- "Краят на периода е невалиден. Датата или часа може да са резервирани или са в миналото. Също "
2478
- "така, крайния момент може да е преди началния, ако е избран само един ден! Моля изберете друга "
2479
- "дата или час."
2480
-
2481
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:418
2482
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:419
2483
- msgid "The time(s) may be booked, or already in the past!"
2484
- msgstr "Периодът е резервиран или е в миналото!"
2485
-
2486
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:583
2487
- msgid "Cost saved successfully"
2488
- msgstr "Цената е записана успешно"
2489
-
2490
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:590
2491
- msgid "Cost is not correct. It must be greater than 0"
2492
- msgstr "Цената е невалидна. Тя трябва да е по-голяма от 0"
2493
-
2494
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:606
2495
- msgid "Send payment request to customer"
2496
- msgstr "Изпрати искане за плащане към клиента"
2497
-
2498
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:610
2499
- #, php-format
2500
- msgid "Type your %sreason for payment%s request"
2501
- msgstr "Въведи %sreason за исканото плащане %s"
2502
-
2503
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:618
2504
- msgid "Send Request"
2505
- msgstr "Изпрати искане"
2506
-
2507
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:619
2508
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:768
2509
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1141
2510
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:901
2511
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:508
2512
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:571
2513
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:627
2514
- msgid "Close"
2515
- msgstr "Затвори"
2516
-
2517
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:760
2518
- msgid "Request has been sent"
2519
- msgstr "Искането е изпратено"
2520
-
2521
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:766
2522
- msgid "Request has failed"
2523
- msgstr "Искането пропадна"
2524
-
2525
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:791
2526
- msgid "The payment status is changed successfully"
2527
- msgstr "Статуса за плащане е променен успешно"
2528
-
2529
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:798
2530
- msgid "The changing of payment status is failed"
2531
- msgstr "Промяната на статуса на плащането е неуспешен"
2532
-
2533
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:842
2534
- msgid "Email to \"Person\" with payment request"
2535
- msgstr "Email да \"Person\" с искане за плащане"
2536
-
2537
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:862
2538
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3607
2539
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3693
2540
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3783
2541
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2105
2542
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2193
2543
- msgid "Send to Admin"
2544
- msgstr "Изпрати до администратора"
2545
-
2546
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:870
2547
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3615
2548
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3701
2549
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3791
2550
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2113
2551
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2201
2552
- msgid "Check this box to send copy of this email to Admin"
2553
- msgstr "Избери този бокс за да се изпрати копие от този email до администратора"
2554
-
2555
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:879
2556
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3538
2557
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3623
2558
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3710
2559
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3800
2560
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2035
2561
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2121
2562
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2210
2563
- #, php-format
2564
- msgid "Type the default %sadmin email%s sending the booking confimation"
2565
- msgstr ""
2566
- "Въведи %sadmin email%s по подразбиране, на който ще се изпращат потвържденията за резервации"
2567
-
2568
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:884
2569
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3468
2570
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3543
2571
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3628
2572
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3715
2573
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3805
2574
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1966
2575
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2040
2576
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2126
2577
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2215
2578
- msgid "Subject"
2579
- msgstr "Тема"
2580
-
2581
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:886
2582
- #, php-format
2583
- msgid "Type email subject for %spayment request%s."
2584
- msgstr "Въведи темата на email-a за %spayment request%s."
2585
-
2586
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:891
2587
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3475
2588
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3552
2589
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3635
2590
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3722
2591
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3812
2592
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1973
2593
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2048
2594
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2133
2595
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2222
2596
- msgid "Content"
2597
- msgstr "Съдържание"
2598
-
2599
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:906
2600
- #, php-format
2601
- msgid "Type your %semail message for payment request%s"
2602
- msgstr "Въведи твоето %semail message for payment request%s"
2603
-
2604
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:915
2605
- #, php-format
2606
- msgid ""
2607
- "You need to make payment %s for booking %s at %s. %s You can make payment at this %s Thank you, "
2608
- "booking service."
2609
- msgstr ""
2610
- "Трябва да направите плащане %s for booking %s до %s. %s Можете да направите плащане в този %s "
2611
- "Благодаря Ви."
2612
-
2613
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:915
2614
- msgid "page"
2615
- msgstr "страница"
2616
-
2617
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1191
2618
- msgid "deposit"
2619
- msgstr "депозит"
2620
-
2621
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1192
2622
- msgid "Total cost"
2623
- msgstr "Крайна цена"
2624
-
2625
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1193
2626
- msgid "balance"
2627
- msgstr "баланс"
2628
-
2629
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1254
2630
- msgid "Auto-fill form"
2631
- msgstr "Автоматично попълване на формата"
2632
-
2633
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1354
2634
- msgid "Billing form fields customization"
2635
- msgstr "Персонализиране на полетата за формата за плащане"
2636
-
2637
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1366
2638
- msgid ""
2639
- "Please select a field from your booking form. This field will be automatically assigned to the "
2640
- "current field in the billing form."
2641
- msgstr ""
2642
- "Моля изберете поле от формата за резервации. Това поле ще бъде автоматично добавено към текущата "
2643
- "форма за плащане."
2644
-
2645
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1372
2646
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:316
2647
- msgid "Customer Email"
2648
- msgstr "Emajl на клиента"
2649
-
2650
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1385
2651
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:316
2652
- msgid "First Name(s)"
2653
- msgstr "Първо име"
2654
-
2655
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1398
2656
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:316
2657
- msgid "Last name"
2658
- msgstr "Фамилия"
2659
-
2660
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1432
2661
- msgid "Billing Address"
2662
- msgstr "Адрес за фактура"
2663
-
2664
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1445
2665
- msgid "Billing City"
2666
- msgstr "Град за фактура"
2667
-
2668
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1458
2669
- msgid "Post Code"
2670
- msgstr "Пощенски код"
2671
-
2672
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1471
2673
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4112
2674
- msgid "Country"
2675
- msgstr "Държава"
2676
-
2677
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1490
2678
- msgid "State"
2679
- msgstr "Облат"
2680
-
2681
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1507
2682
- #, php-format
2683
- msgid "Configuring these %sfields is required for the some payment%s systems!"
2684
- msgstr "Конфигурирането на тези %sfields е задължително за някой разплащателни %s системи!"
2685
-
2686
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1562
2687
- msgid "Title of booked timeslot(s)"
2688
- msgstr "Заглавие на резервирания времеви интервал(и)"
2689
-
2690
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1566
2691
- #, php-format
2692
- msgid "Type your %stitle%s, what will show in mouseover tooltip near booked timeslot(s)"
2693
- msgstr ""
2694
- "Въведете вашият %stitle%s, който ще се показва в подсказката при преминаване с мишката близо до "
2695
- "резервирания период(и)"
2696
-
2697
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1584
2698
- msgid "Time Format"
2699
- msgstr "Формат за час"
2700
-
2701
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1607
2702
- #, php-format
2703
- msgid ""
2704
- "Type your time format for emails and the booking table. %sDocumentation on time formatting%s"
2705
- msgstr ""
2706
- "Въведете вашия формат за часовете за email-ите и таблицата с резервации. %sDocumentation on time "
2707
- "formatting%s"
2708
-
2709
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1695
2710
- #, php-format
2711
- msgid "Select a %sFIXED%s number of days with %s1 mouse click%s"
2712
- msgstr "Въведете %sFIXED%s брой дни с %s1 кликове на мишката%s"
2713
-
2714
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1703
2715
- #, php-format
2716
- msgid "Select a %sDYNAMIC%s range of days with %s2 mouse clicks%s"
2717
- msgstr "Въведете %sDYNAMIC%s интервал от дни с %s2 кликове на мишката%s"
2718
-
2719
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1711
2720
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1777
2721
- msgid "Days selection number"
2722
- msgstr "Брой избрани дни"
2723
-
2724
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1718
2725
- #, php-format
2726
- msgid "Type your %snumber of days for range selection%s"
2727
- msgstr "Въведете вашия %snumber дни за избиране на период%s"
2728
-
2729
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1725
2730
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1813
2731
- msgid "Start day of range"
2732
- msgstr "Начален ден"
2733
-
2734
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1734
2735
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1822
2736
- msgid "Any day of week"
2737
- msgstr "Всеки ден от седмицата"
2738
-
2739
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1745
2740
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1833
2741
- msgid "Specific day(s) of week"
2742
- msgstr "Определен ден от седмицата"
2743
-
2744
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1767
2745
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1869
2746
- msgid "Select your start day of range selection at week"
2747
- msgstr "Въведете началният ден за избор на период от седмицата"
2748
-
2749
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1779
2750
- msgid "Min"
2751
- msgstr "минимум"
2752
-
2753
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1793
2754
- #, php-format
2755
- msgid "Select your %sminimum and maximum number of days for range selection%s"
2756
- msgstr "Въведете вашия %sminimum и минимален брой дни за избор на период%s"
2757
-
2758
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1799
2759
- msgid "Specific days selections"
2760
- msgstr "Избор на конкретни дни"
2761
-
2762
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1803
2763
- #, php-format
2764
- msgid ""
2765
- "Type your %sspecific%s days, which can be selected by visitors, or leave this value empty. It "
2766
- "can be several days separated by comma (example: %s) or by dash (example: %s, its the same like "
2767
- "this: %s) or combination (example:%s, its the same like this: %s)"
2768
- msgstr ""
2769
- "Въведете вашите %sspecific%s дни, които могат да бъдат избирани от посетителите, или го оставете "
2770
- "празно. Полето може да съдържа няколко дни разделени със запетя (пример: %s) или с тире (пример: "
2771
- "%s, е същото като: %s) или комбинация (пример:%s, е същото като: %s)"
2772
-
2773
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1912
2774
- msgid "Use time selections as recurrent time slots"
2775
- msgstr "Използвайте избора на период като повтарящи се времеви интервали"
2776
-
2777
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1923
2778
- msgid ""
2779
- "Check this box if you want to use recurrent time to reserve several days. This means that middle "
2780
- "days will be partially booked by actual times, otherwise the time in the booking form will be "
2781
- "used as check-in/check-out time for the first and last day of the reservation."
2782
- msgstr ""
2783
- "Маркирайте, ако искате да използавате времето, за да резервирате няколкоо дни. Това означава, че "
2784
- "междинните дни ще бъдат частично резервирани с актуалните часове, в противен случай времето от "
2785
- "формата за резервации ще бъде използвано за време за настаняване/напускане за първия и последния "
2786
- "ден от резрервацията."
2787
-
2788
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1930
2789
- msgid "Use check in/out time"
2790
- msgstr "Иползвайте времето за пристигане/заминаване"
2791
-
2792
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1937
2793
- msgid "This option will overwrite any times selection in your booking form."
2794
- msgstr ""
2795
- "Тази опция ще направи невалидни всички други избори за време на вашата резервационна форма."
2796
-
2797
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1942
2798
- msgid "Check this option, to use check in/out time during booking process. "
2799
- msgstr ""
2800
- "Изберете тази опция, за да използвате времето за пристигане/заминаване по време на процеса на "
2801
- "резервацията."
2802
-
2803
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1945
2804
- #, php-format
2805
- msgid "%s Important!%s This will overwrite any times selection in your booking form."
2806
- msgstr ""
2807
- "%sВажно!%sТова ще направи невалидни всички останали избори за време във вашата форма за "
2808
- "резервация"
2809
-
2810
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1954
2811
- msgid "Check-in time"
2812
- msgstr "Време за настаняване"
2813
-
2814
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1954
2815
- #, php-format
2816
- msgid "%sstart booking time%s"
2817
- msgstr "%sначален час за настаняване%s"
2818
-
2819
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1956
2820
- #, php-format
2821
- msgid "Type your %sCheck-in%s time of booking"
2822
- msgstr "Въведете вашето време за %sнастаняване%s"
2823
-
2824
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1961
2825
- msgid "Check-Out time"
2826
- msgstr "Час за напускане"
2827
-
2828
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1961
2829
- #, php-format
2830
- msgid "%send booking time%s"
2831
- msgstr "%sкраен час за напускане%s"
2832
-
2833
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1963
2834
- #, php-format
2835
- msgid "Type your %sCheck-Out%s time of booking"
2836
- msgstr "Въведете крайния час за %sнапускане%s"
2837
-
2838
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1997
2839
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:50
2840
- msgid "Costs"
2841
- msgstr "Разходи"
2842
-
2843
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2002
2844
- msgid "Set the cost"
2845
- msgstr "Въведете разход"
2846
-
2847
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2007
2848
- msgid "fixed sum"
2849
- msgstr "фиксирана сума"
2850
-
2851
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2010
2852
- msgid " Select your cost configuration."
2853
- msgstr "Изберете конфигурация за разходите"
2854
-
2855
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2015
2856
- msgid "Currency format"
2857
- msgstr "Формат на валутата"
2858
-
2859
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2018
2860
- msgid "Number of decimal points"
2861
- msgstr "Брой десетични точки"
2862
-
2863
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2025
2864
- msgid "Separator for the decimal point"
2865
- msgstr "Разделител за десетичната запетая"
2866
-
2867
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2029
2868
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2043
2869
- msgid "No separator"
2870
- msgstr "Без разделител"
2871
-
2872
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2030
2873
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2044
2874
- msgid "Space"
2875
- msgstr "Разстояние"
2876
-
2877
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2031
2878
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2045
2879
- msgid "Dot"
2880
- msgstr "Точка"
2881
-
2882
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2032
2883
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2046
2884
- msgid "Comma"
2885
- msgstr "Запетая"
2886
-
2887
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2039
2888
- msgid "Thousands separator"
2889
- msgstr "Разделител за хиляди"
2890
-
2891
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2057
2892
- msgid "Time impact to cost"
2893
- msgstr "Времето въздейства на разходите"
2894
-
2895
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2062
2896
- #, php-format
2897
- msgid ""
2898
- "Check this box if you want the %stime selection%s on the booking form %sapplied to the cost "
2899
- "calculation%s."
2900
- msgstr ""
2901
- "Маркирайте, ако искате %sизборът на време%s на формата за резервации %sда бъде приложен в "
2902
- "калкулацията на разходите%s"
2903
-
2904
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2071
2905
- msgid "Show booking details in payment form"
2906
- msgstr "Показване на детайли за резрервацията на формата за плащане"
2907
-
2908
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2077
2909
- #, php-format
2910
- msgid ""
2911
- " Check this checkbox if you want to show the %sbooking details summary%s above the payment form"
2912
- msgstr "Маркирайте, ако желаете да се показват %sдетайли за резервацията%s над формата за плащане"
2913
-
2914
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2122
2915
- msgid "Auto cancellation / auto approval of bookings"
2916
- msgstr "Автоматична анулиране/одобрение на резервации"
2917
-
2918
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2128
2919
- msgid "Auto approve all new bookings"
2920
- msgstr "Автоматично одобрение на всички нови резервации"
2921
-
2922
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2137
2923
- #, php-format
2924
- msgid "Check this checkbox to %sactivate%s auto approve of all new pending bookings."
2925
- msgstr "Маркирайте, за %sактивиране%s на автоматично одобряване на всички нови чакащи резервации"
2926
-
2927
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2144
2928
- msgid "Auto-cancel bookings"
2929
- msgstr "Автоматично анулиране на резервации"
2930
-
2931
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2154
2932
- #, php-format
2933
- msgid "Check this box to %sactivate%s auto-cancellation for pending, unpaid bookings."
2934
- msgstr ""
2935
- "Маркирайте, за %sактивиране%s на автоматично анулиране на всички неплатени чакащи резервации"
2936
-
2937
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2165
2938
- msgid "Cancel bookings older"
2939
- msgstr "Анулиране на по-стари резервации"
2940
-
2941
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2170
2942
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:799
2943
- msgid "hour"
2944
- msgstr "час"
2945
-
2946
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2173
2947
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:617
2948
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:681
2949
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:802
2950
- msgid "hours"
2951
- msgstr "чсове"
2952
-
2953
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2183
2954
- msgid "Cancel only pending, unpaid bookings, which are older than this selection."
2955
- msgstr "Анулиране само на чакащи, неплатени резервции по-стари от този избор."
2956
-
2957
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2188
2958
- msgid "Cancellation email sent"
2959
- msgstr "Изпратен е имейл за анулиране"
2960
-
2961
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2193
2962
- #, php-format
2963
- msgid "Check this box to %ssend%s cancellation email for this resource."
2964
- msgstr "Маркирайтем за да се %sизпрати%s имейл за отмяна на този ресурс"
2965
-
2966
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2205
2967
- msgid "Reason for cancellation"
2968
- msgstr "Причина за анулиране"
2969
-
2970
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2207
2971
- #, php-format
2972
- msgid "Type the reason for %scancellation%s for the email template."
2973
- msgstr "Въведете причина за %sанулиране%s, който ще се използва за имейл шаблона"
2974
-
2975
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2252
2976
- msgid ""
2977
- "Customization of billing fields, which automatically assign from booking form to billing form"
2978
- msgstr ""
2979
- "Определяне на полетата от фактурата, които ще се прехвърлят автоматично от формата за резервация "
2980
- "във фактурата"
2981
-
2982
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2253
2983
- msgid "Billing form fields"
2984
- msgstr "Полета от формата за фактура"
2985
-
2986
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2279
2987
- msgid "Booked Times:"
2988
- msgstr "Резервирани часове:"
2989
-
2990
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2302
2991
- msgid ""
2992
- "This booking canceled because we did not receive payment and the administrator did not approve "
2993
- "it."
2994
- msgstr ""
2995
- "Тази резервация е анулирана, защото не сме получили плащане и администраторът не я е одобрил."
2996
-
2997
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2321
2998
- msgid "You need to make payment for this reservation"
2999
- msgstr "Трябва да се направи плащане за тази резервация"
3000
-
3001
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2323
3002
- #, php-format
3003
- msgid ""
3004
- "You need to make payment %s for reservation %s at %s. %s Please make payment on this page: %s "
3005
- "Thank you, %s"
3006
- msgstr ""
3007
- "Трябва да се направи плащане за %sрезервация%s на %s. %s Моля направете плащане на тази "
3008
- "страница: %s Благодаря, %s"
3009
-
3010
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2427
3011
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1434
3012
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4159
3013
- msgid "Apartment#1"
3014
- msgstr "Апартамент#1"
3015
-
3016
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2428
3017
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1435
3018
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4160
3019
- msgid "Apartment#2"
3020
- msgstr "Apartment#2"
3021
-
3022
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2429
3023
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4161
3024
- msgid "Apartment#3"
3025
- msgstr "Apartment#3"
3026
-
3027
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-button.php:73
3028
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:394
3029
- msgid "Label"
3030
- msgstr "Етикет"
3031
-
3032
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-button.php:73
3033
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-checkbox.php:128
3034
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-checkbox.php:164
3035
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-radio.php:85
3036
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-select.php:78
3037
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-select.php:129
3038
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-text.php:194
3039
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-text.php:211
3040
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-text.php:228
3041
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-text.php:247
3042
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-text.php:264
3043
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-text.php:281
3044
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-textarea.php:94
3045
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-textarea.php:111
3046
- msgid "optional"
3047
- msgstr "незадължителен"
3048
-
3049
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-checkbox.php:90
3050
- #, php-format
3051
- msgid "Wrap each item with %s tag"
3052
- msgstr "Оградете всеки елемент в тага %s"
3053
-
3054
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-checkbox.php:104
3055
- msgid "Put a label before field"
3056
- msgstr "Поставете етикета преди полето"
3057
-
3058
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-checkbox.php:118
3059
- #, php-format
3060
- msgid "Make it %sexclusive%s"
3061
- msgstr "Направете го %sспециален (екслузивен)%s"
3062
-
3063
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-checkbox.php:128
3064
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-radio.php:85
3065
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-select.php:78
3066
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-text.php:194
3067
- msgid "Default value"
3068
- msgstr "Стойност по подразбиране"
3069
-
3070
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-checkbox.php:136
3071
- #, php-format
3072
- msgid "One Value from %sOptions%s list or term %s for selection of all checkboxes"
3073
- msgstr "Една стойност от списъка с %sопции%s или термин %s за избор на всички отметки"
3074
-
3075
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-checkbox.php:146
3076
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-select.php:111
3077
- msgid "Options"
3078
- msgstr "Опции"
3079
-
3080
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-checkbox.php:146
3081
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-select.php:111
3082
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-text.php:177
3083
- msgid "required"
3084
- msgstr "задължително"
3085
-
3086
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-checkbox.php:154
3087
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-select.php:119
3088
- msgid "One option per line"
3089
- msgstr "Една опция на ред"
3090
-
3091
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-checkbox.php:164
3092
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-select.php:129
3093
- msgid "Titles of options"
3094
- msgstr "Заглавия на опциите"
3095
-
3096
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-checkbox.php:172
3097
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-select.php:137
3098
- msgid "One title per line"
3099
- msgstr "Едно заглавир на ред"
3100
-
3101
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-radio.php:93
3102
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-select.php:86
3103
- #, php-format
3104
- msgid "One Value from %sOptions%s list"
3105
- msgstr "Една стойност от списъка с %sОпции%s"
3106
-
3107
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-select.php:101
3108
- #, php-format
3109
- msgid "Allow %smultiple%s selections"
3110
- msgstr "Позволяване на избор на %sняколко%s възможности"
3111
-
3112
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-text.php:167
3113
- #, php-format
3114
- msgid "Set as %srequired%s"
3115
- msgstr "Задаване като %sзадължитено%s"
3116
-
3117
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-text.php:177
3118
- msgid "Name"
3119
- msgstr "Име"
3120
-
3121
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-text.php:228
3122
- msgid "Placeholder"
3123
- msgstr "Заместител"
3124
-
3125
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-text.php:247
3126
- msgid "Class"
3127
- msgstr "Клас"
3128
-
3129
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-text.php:264
3130
- msgid "Size"
3131
- msgstr "Размер"
3132
-
3133
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-text.php:281
3134
- msgid "Maxlength"
3135
- msgstr "Максимална дължина"
3136
-
3137
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-text.php:298
3138
- msgid "Copy and paste this shortcode into the form at left side"
3139
- msgstr "Копирайте и поставете този кратък номер във формата от лявата страна"
3140
-
3141
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-text.php:313
3142
- #, php-format
3143
- msgid "Put this code in %sContent of Booking Fields%s and in %sEmail Templates%s"
3144
- msgstr "Поставете този код в %sСъдържанието на полетата%s за резервация и в %sШаблоните за имейл%s"
3145
-
3146
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-textarea.php:94
3147
- msgid "Rows"
3148
- msgstr "Редове"
3149
-
3150
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-textarea.php:111
3151
- msgid "Columns"
3152
- msgstr "Колони"
3153
-
3154
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:86
3155
- msgid "General Information"
3156
- msgstr "Основна Информация"
3157
-
3158
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:88
3159
- msgid "Shortcodes"
3160
- msgstr "Кратки кодове"
3161
-
3162
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:89
3163
- msgid ""
3164
- "You can generate the form fields for your form (at the left side) by selection specific field in "
3165
- "the above selectbox."
3166
- msgstr ""
3167
- "Можете да генерирате полетата на формата (от лявата страна), като изберете специфично поле от "
3168
- "възможностите по-горе"
3169
-
3170
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:90
3171
- #, php-format
3172
- msgid "Please read more about the booking form fields configuration %shere%s."
3173
- msgstr "Моля, прочетете повече за конфигурацията на полета на формата за резервация %sтук%s."
3174
-
3175
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:92
3176
- msgid "HTML"
3177
- msgstr "HTML"
3178
-
3179
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:93
3180
- #, php-format
3181
- msgid ""
3182
- "You can use any %sHTML tags%s in the booking form. Please use the HTML tags carefully. Be sure, "
3183
- "that all \"open\" tags (like %s) are closed (like this %s)."
3184
- msgstr ""
3185
- "Можете да използвате всички %sHTML тагове %s във формата за резревации. Моля, използвайте HTML "
3186
- "таговете внимателно. Уверете сем че всички \"отворени\" тагове (като %s) за затворени (като "
3187
- "%s) ."
3188
-
3189
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:99
3190
- msgid "Default Form Templates"
3191
- msgstr "Шаблон по подразбиране за форма"
3192
-
3193
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:100
3194
- #, php-format
3195
- msgid ""
3196
- "You can reset your active form template by selecting default %sform template%s at the top "
3197
- "toolbar. Please select the form template and click on %sReset%s button for resetting only active "
3198
- "form (Booking Form or Content of Booking Fields form). Click on %sBoth%s button if you want to "
3199
- "reset both forms: Booking Form and Content of Booking Fields form."
3200
- msgstr ""
3201
- "Можете да възстановите шаблона на активната форма, като изберете %sшаблона на формата%s "
3202
- "подразбиране в горната лента с инструменти. Моля изберете шаблона на на формата и натиснете "
3203
- "%sВъзстанови%s бутона, за да се възстанови само активната форма (Резевационната форма или "
3204
- "съдържанието на полетата). Натиснете бутона %sДвете%s ако искате да възстановите и двете форми: "
3205
- "Формата за резервации и Съдържанието на полетата от формата."
3206
-
3207
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:109
3208
- msgid "Required Fields in Booking Form"
3209
- msgstr "Задължителни полета от формата за резревации"
3210
-
3211
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:115
3212
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:38
3213
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:388
3214
- msgid "Calendar"
3215
- msgstr "Календар"
3216
-
3217
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:117
3218
- #, php-format
3219
- msgid "You must to have this shortcode:%s in the form."
3220
- msgstr "Трябва да изплозвате тоз кратък код:%s във формата"
3221
-
3222
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:119
3223
- msgid ""
3224
- "You can insert several calendars of different resources into the form allowing you to book "
3225
- "several resources during one booking process."
3226
- msgstr ""
3227
- "Можете да добавите няколко календара за различни ресурси във формата, позволявайки да се "
3228
- "резервират няколко ресурса по време на резервацията."
3229
-
3230
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:120
3231
- #, php-format
3232
- msgid "Example: %s."
3233
- msgstr "Пример: %s"
3234
-
3235
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:121
3236
- #, php-format
3237
- msgid ""
3238
- "where %s – default calendar %s (you can select desired resource of calendar by inserting "
3239
- "shortcode into page)%s"
3240
- msgstr ""
3241
- "където %s – календар по подразбиране %s (можете да избирате желания ресурс от календара като "
3242
- "вмъквате краткия код в страницата)%s"
3243
-
3244
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:122
3245
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:123
3246
- #, php-format
3247
- msgid "%s – calendar of booking resource with %s"
3248
- msgstr "%s – календар на ресурс с %s"
3249
-
3250
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:124
3251
- #, php-format
3252
- msgid "Please check more about this feature %shere%s."
3253
- msgstr "Моля изберете повече възможности за този ресурс %sтук%s."
3254
-
3255
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:126
3256
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:197
3257
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:230
3258
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:278
3259
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:291
3260
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:305
3261
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:343
3262
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:382
3263
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:515
3264
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:644
3265
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:658
3266
- #, php-format
3267
- msgid "You can %suse this shortcode only once%s in the form."
3268
- msgstr "Можете да %sизплозвате този код само веднъж%s във формата."
3269
-
3270
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:135
3271
- msgid "Email Field"
3272
- msgstr "Поле за имейл"
3273
-
3274
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:136
3275
- #, php-format
3276
- msgid "You must have this shortcode:%s in the booking form."
3277
- msgstr "Трябва да имате този код%s: във формата за резервации."
3278
-
3279
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:136
3280
- msgid "This is the primary email field, which is used for sending emails to visitors."
3281
- msgstr "Основно поле за имейл, което ще се използва за изпащане на имейли на гостите."
3282
-
3283
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:141
3284
- msgid "Standard Fields"
3285
- msgstr "Стандартни полета"
3286
-
3287
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:147
3288
- msgid "Text"
3289
- msgstr "Текст"
3290
-
3291
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:156
3292
- msgid "Textarea"
3293
- msgstr "Текстовото поле"
3294
-
3295
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:163
3296
- msgid "Drop Down"
3297
- msgstr "Падащо меню"
3298
-
3299
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:175
3300
- msgid "Checkbox(es)"
3301
- msgstr "Поле(та) за отметка"
3302
-
3303
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:182
3304
- msgid "Radio Button(s)"
3305
- msgstr "Бутон за избор"
3306
-
3307
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:194
3308
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:585
3309
- msgid "CAPTCHA"
3310
- msgstr "Капча"
3311
-
3312
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:196
3313
- #, php-format
3314
- msgid "Insert %s shortcode to prevent SPAM bookings."
3315
- msgstr "Вмъкнете %s кода, за да се предотвратят SPAM резервации."
3316
-
3317
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:206
3318
- msgid "Submit Button"
3319
- msgstr "Бутон Напред"
3320
-
3321
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:214
3322
- msgid "Times Fields"
3323
- msgstr "Полета за време"
3324
-
3325
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:220
3326
- msgid "Time Slot List"
3327
- msgstr "Списък с времеви интервали"
3328
-
3329
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:222
3330
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:302
3331
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:340
3332
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:379
3333
- #, php-format
3334
- msgid "Select the %s using the predefined %sTime List%s."
3335
- msgstr "Изберете %s използвайки предварително зададени %s Списък с времеви интервали%s ."
3336
-
3337
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:222
3338
- msgid "Time Slot"
3339
- msgstr "Времеви интервал"
3340
-
3341
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:223
3342
- #, php-format
3343
- msgid ""
3344
- "Please note, %sthe use of the time shortcode%s. If you select a date with some booked time "
3345
- "slots, this time field will %sdisable booked times slots%s (set them as grayed)."
3346
- msgstr ""
3347
- "Имайте в пред вид, в %sизползването на кодовете за време%s. Ако изберете дата с някои от "
3348
- "резервираните времеви интервали, това поле ще бъде %sзабранен времеви интервал%s (ще е сиво)."
3349
-
3350
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:224
3351
- #, php-format
3352
- msgid "It works only in %ssingle day selection%s mode."
3353
- msgstr "Работи само като възможност за %sизбро на един, единствен ден%s."
3354
-
3355
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:225
3356
- msgid ""
3357
- "Also some early versions of the IE do not support disabling of the options in the selectboxes."
3358
- msgstr ""
3359
- "Също така някои ранни версии на IE не поддържат забрана на опциите от selectboxes (списък от "
3360
- "стойности с възможност за избор)."
3361
-
3362
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:226
3363
- msgid ""
3364
- "Even if visitor selects the booked timeslot, system will not allow them to make the booking."
3365
- msgstr ""
3366
- "Дори и госта да избере резервиреан времеви интервал, системата няма да му позволи да направи "
3367
- "резервацията."
3368
-
3369
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:229
3370
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:342
3371
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:381
3372
- #, php-format
3373
- msgid ""
3374
- "Please note, in the %sOptions list%s you can use times in military time format %s(24 Hour "
3375
- "Time)%s only."
3376
- msgstr ""
3377
- "Имайте предвид, чв в %sСписъка с опции%s можете да използвате само време във формат милитари "
3378
- "%s(24 Часа Време)%s."
3379
-
3380
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:231
3381
- #, php-format
3382
- msgid "If you use this shortcode, %syou can not use any other time shortcodes%s in the form."
3383
- msgstr ""
3384
- "Можете да използвате този код, %sвие не можете да използвате други кодове%s за време във формата."
3385
-
3386
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:273
3387
- msgid "Start Time - Text field"
3388
- msgstr "Начално време - Текстово полеа"
3389
-
3390
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:275
3391
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:288
3392
- #, php-format
3393
- msgid "Enter %s in text field."
3394
- msgstr "Въведете %s в текстовото поле."
3395
-
3396
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:275
3397
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:292
3398
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:302
3399
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:344
3400
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:383
3401
- msgid "Start Time"
3402
- msgstr "Начален час"
3403
-
3404
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:277
3405
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:290
3406
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:496
3407
- #, php-format
3408
- msgid "Please note: this field only supports military time format %s(24 Hour Time)%s."
3409
- msgstr ""
3410
- "Моля имайте предвид, чв за това поле можете да използвате само време във формат милитари %s(24 "
3411
- "Часа)%s."
3412
-
3413
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:279
3414
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:292
3415
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:306
3416
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:344
3417
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:383
3418
- #, php-format
3419
- msgid "You can also use the %s in the form."
3420
- msgstr "Можете също да използвате %s във формата."
3421
-
3422
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:279
3423
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:288
3424
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:306
3425
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:340
3426
- msgid "End Time"
3427
- msgstr "Краен час"
3428
-
3429
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:279
3430
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:292
3431
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:306
3432
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:344
3433
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:379
3434
- msgid "Duration Time"
3435
- msgstr "Продължителност"
3436
-
3437
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:279
3438
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:292
3439
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:306
3440
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:344
3441
- msgid "fields"
3442
- msgstr "полета"
3443
-
3444
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:286
3445
- msgid "End Time - Text field"
3446
- msgstr "Краен час - текстово поле"
3447
-
3448
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:300
3449
- msgid "Start Time - Drop Down list"
3450
- msgstr "Начален час - Избор от списък"
3451
-
3452
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:304
3453
- #, php-format
3454
- msgid ""
3455
- "Please note, in the %sOptions list%s you can use times in military time format %s(24 Hour "
3456
- "Time)%s only."
3457
- msgstr ""
3458
- "Моля имайте предвид, че в %sСписъка с опции%s можете да използвате само %s(24 Часа)%s формат."
3459
-
3460
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:338
3461
- msgid "End Time - Drop Down list"
3462
- msgstr "Краен час - - Избор от списък"
3463
-
3464
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:377
3465
- msgid "Duration Time - Drop Down list"
3466
- msgstr "Продължителност - - Избор от списък"
3467
-
3468
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:383
3469
- msgid "field"
3470
- msgstr "поле"
3471
-
3472
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:416
3473
- msgid "Different time slots, for the different week days"
3474
- msgstr "Различни времеви интервали за различните дни от седмицата."
3475
-
3476
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:419
3477
- msgid ""
3478
- "This feature provides the possibility to use the different time slot selections in the booking "
3479
- "form for the different week days or different days - which are assigned to the specific season "
3480
- "filters. So each week day (day of specific season filter) can have a different time slots list."
3481
- msgstr ""
3482
- "Възможност за използване на различни времеви интервали за различни дни от седмицата или "
3483
- "различни дати във формата за резервации , които са избрани за специфичните сезони. Така всеки "
3484
- "ден от различния сезон може да има различно работно време."
3485
-
3486
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:421
3487
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:567
3488
- msgid "Configuration"
3489
- msgstr "Конфигурация"
3490
-
3491
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:422
3492
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:568
3493
- #, php-format
3494
- msgid "The general structure of the configuration %scondition rule%s is as follows"
3495
- msgstr "Основната структура на конфигурацията %sусловие, правило%s както следва"
3496
-
3497
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:428
3498
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:449
3499
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:472
3500
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:574
3501
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:595
3502
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:618
3503
- msgid "Parameters"
3504
- msgstr "Параметри"
3505
-
3506
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:429
3507
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:575
3508
- #, php-format
3509
- msgid ""
3510
- "%sname%s – the unique name of the condition group, containing several conditions with different "
3511
- "values. For example, if you want to have specific HTML content for the different week days, you "
3512
- "can have several conditions, with the same name but with different value parameters in "
3513
- "conditions. Please check more about it, in the examples."
3514
- msgstr ""
3515
- "%sиме%s - уникално име на групата условия, която съдържа няколко условия с различни стойности. "
3516
- "Примерно, ако искате да имате специфично HTML съдържание за различни дни от седмицата, можете да "
3517
- "имате няколко условия, с едно и също име, но са различен параметър. Моля погледнете примерите."
3518
-
3519
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:430
3520
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:576
3521
- #, php-format
3522
- msgid ""
3523
- "%stype%s – type of the condition. There are 2 types of condition: \"weekday\" and \"season\". "
3524
- "\"weekday\" – is the condition rule based on the selected day of week value, like Monday, "
3525
- "Tuesday, etc… . \"season\" – is the condition rule based on the \"season filter\" name of "
3526
- "selected date. In other words the condition is TRUE if the selected day belongs to a season "
3527
- "filter in the Season Filters page."
3528
- msgstr ""
3529
- "%sтип%s – тип на условието. Има два типа условия: \"weekday\" ден от седмицата and \"season\" "
3530
- "сезон. \"weekday\" ден от седмицата е условие, базирани на избран ден от седмицата като "
3531
- "Понеделник, Вторник и т.н. .. \"season\" - е условие, базирано на име на \"season filter\" . С "
3532
- "друго думи, условието е ИСТИНА, ако избрания ден е от съответния сезон о страницата за "
3533
- "филтриране на сезони."
3534
-
3535
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:431
3536
- #, php-format
3537
- msgid ""
3538
- "%svalue%s – value of the specific conditions. If the value is true, the content of the "
3539
- "conditions will show in the booking form. You can have the default value (empty – \"\", or like "
3540
- "this – \"*\") for showing the content of this condition, if all other conditions are FALSE, or "
3541
- "at initial stage, when the date in calendar is not yet selected."
3542
- msgstr ""
3543
- "%sстойност%s – стойност на определени условия. Ако стойността е истина (true), съдържанието се "
3544
- "показва във формата. Може да имате стойност по подразбиране (празно – \"\", или – \"*\") за да "
3545
- "се показва съдържанието на това условие, ако всички други условия не са изпълнени или са по "
3546
- "подразбиране, тогава датата ит календара не е избрана."
3547
-
3548
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:433
3549
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:579
3550
- msgid "Examples"
3551
- msgstr "Примери"
3552
-
3553
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:434
3554
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:580
3555
- msgid "Week days conditions."
3556
- msgstr "Условия за дни от седмицата"
3557
-
3558
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:450
3559
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:596
3560
- msgid "default value, if no dates are selected, or none exist conditions are true."
3561
- msgstr "стойност по подразбиране, ако не са избрани дати или нито едно условие не е изпълнено."
3562
-
3563
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:458
3564
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:475
3565
- msgid "You can use the several values, separated by comma."
3566
- msgstr "Можете да използвате повече стойности разделени със запетая."
3567
-
3568
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:460
3569
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:606
3570
- msgid "Season filters conditions."
3571
- msgstr "Условия за фитър по сезон."
3572
-
3573
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:473
3574
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:619
3575
- msgid "Season filter on the Season Filters page,"
3576
- msgstr "Филтър на страниците за Филтриране по сезон,"
3577
-
3578
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:474
3579
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:620
3580
- msgid "Season filter on the Season Filters page"
3581
- msgstr "Филтър на страниците за Филтриране по сезон"
3582
-
3583
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:477
3584
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:623
3585
- msgid "Additional info"
3586
- msgstr "Допълнителна информация"
3587
-
3588
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:478
3589
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:624
3590
- #, php-format
3591
- msgid ""
3592
- "Please use %sSingle day%s selection mode in the General Booking Settings page at calendar "
3593
- "section."
3594
- msgstr ""
3595
- "Моля използвайте възможност за избор на %sЕдин единствен ден%s в Основните Настройнки на "
3596
- "резрервации в секцията Календар."
3597
-
3598
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:479
3599
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:625
3600
- #, php-format
3601
- msgid "Please check more about this feature at %sthis page%s"
3602
- msgstr "Моля изберете повече за тази възможност на %sтази страница%st."
3603
-
3604
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:486
3605
- msgid "Advanced Fields"
3606
- msgstr "Разширени полета"
3607
-
3608
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:493
3609
- msgid "Time Field"
3610
- msgstr "Поле за време"
3611
-
3612
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:495
3613
- #, php-format
3614
- msgid "Enter the %sTime%s using the text field."
3615
- msgstr "Въвдете %sВреме%s като използвате текстовото поле."
3616
-
3617
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:498
3618
- msgid "This field does not impact to availability (booking for the specific time) ."
3619
- msgstr "Това поле не влияе на наличността (резервация за определен час)."
3620
-
3621
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:499
3622
- msgid "The value of this field is just saved into DB."
3623
- msgstr "Стойността на това поле е просто запазена в базата от данни."
3624
-
3625
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:509
3626
- msgid "Country List"
3627
- msgstr "Списък с държави"
3628
-
3629
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:511
3630
- msgid "Select the country from the predefined country list."
3631
- msgstr "Изберете страната от списъка с предварително зададени страни."
3632
-
3633
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:512
3634
- #, php-format
3635
- msgid "You can customize the country list at this file: %s"
3636
- msgstr "Можете да персонализирате списъка на страните в този файл: %s"
3637
-
3638
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:513
3639
- msgid "You can insert this field with default selected value."
3640
- msgstr "Можете да вмъкнете това поле с избрана стойност по подразбиране."
3641
-
3642
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:514
3643
- #, php-format
3644
- msgid "Example: %s - %s\"United States\"%s is selected by default."
3645
- msgstr "Пример: %s - %s\"България\"%s е избрана по подразбиране."
3646
-
3647
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:523
3648
- msgid "Language Sections"
3649
- msgstr "Секции Езици"
3650
-
3651
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:525
3652
- msgid "Plugin support configurations of the booking form are available in different languages."
3653
- msgstr "Поддържаме конфигурации на форма формата за резервации за различните езици."
3654
-
3655
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:526
3656
- msgid "The active language of the booking form depends on the active locale of the site."
3657
- msgstr "Актнивният език на формата за резервации зависи от езиковите настройки на сайта."
3658
-
3659
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:527
3660
- msgid ""
3661
- "Booking Calendar supports WPML and qTranslate plugins for dynamic changing of website locale."
3662
- msgstr ""
3663
- "Резервационният календар поддържа WPML и qTranslate plugins за динамична смяна на езика на сайта."
3664
-
3665
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:529
3666
- msgid "Usage"
3667
- msgstr "Използване"
3668
-
3669
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:530
3670
- #, php-format
3671
- msgid "start new translation section in specific language, where %s - locale of the translation."
3672
- msgstr "започнете нов раздел за превод на конкретен език, където %s - е е държавата за превода."
3673
-
3674
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:532
3675
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:535
3676
- msgid "Example"
3677
- msgstr "Пример"
3678
-
3679
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:533
3680
- msgid "English and French translation"
3681
- msgstr "Английски и Френски превод"
3682
-
3683
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:536
3684
- msgid "of configuration booking form in English and French languages"
3685
- msgstr "на конфигурацията на формата за резервации на английски и френски език"
3686
-
3687
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:562
3688
- msgid "Different form fields, for the different week days"
3689
- msgstr "Различни полета от формата за различни дни от седмицата"
3690
-
3691
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:565
3692
- msgid ""
3693
- "This feature provides the possibility to show the different form fields or any other HTML "
3694
- "content in the booking form, depending on the selection of specific week day in calendar or "
3695
- "different days, which are assigned to the specific season filters"
3696
- msgstr ""
3697
- "Тази функция дава възможност да се показват различните полета или друго HTML съдържание във "
3698
- "формата за резервация, в зависимост от избора на деня то седмицата в календара или различни дни, "
3699
- "които се отнасят към специфичните филтри за сезон."
3700
-
3701
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:577
3702
- #, php-format
3703
- msgid ""
3704
- "%svalue%s – value of the specific conditions. If the value is true, so then the content of the "
3705
- "conditions will show in the booking form. You can have the default value (empty – \"\", or like "
3706
- "this – \"*\") for showing the content of this condition, if all other conditions are FALSE, or "
3707
- "at initial stage, when the date in calendar is not yet selected."
3708
- msgstr ""
3709
- "%sстойност%s – стойност на специфичните условия. Ако стойността е истина, то съдържанието на "
3710
- "условията ще се покаже във формуляра за резервация. Можете да имате стойност по подразбиране "
3711
- "(празно – \"\", или така – \"*\") за показване на съдържанието на това условие, ако всички "
3712
- "други условия са неверни, или в начален етап, то датата в календара още не е избрана."
3713
-
3714
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:604
3715
- msgid "You can use several values, separated by comma."
3716
- msgstr "Можете да използвате няколко стойности, разделени със запетая."
3717
-
3718
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:621
3719
- msgid "You can use several values, separated by a comma."
3720
- msgstr "Можете да използвате няколко стойности, разделени със запетая.."
3721
-
3722
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:634
3723
- msgid "Cost Fields"
3724
- msgstr "Полета за разходи"
3725
-
3726
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:640
3727
- msgid "Cost Correction Field"
3728
- msgstr "Поле за корекция на разходите"
3729
-
3730
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:642
3731
- #, php-format
3732
- msgid "This field is visible only in Admin Panel at %sAdd booking page%s."
3733
- msgstr "Това поле е видимо само в Административния панел в %s Страница добавяне на резервация%s."
3734
-
3735
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:643
3736
- #, php-format
3737
- msgid "Use this field for %scorrecting the cost%s during adding new booking."
3738
- msgstr ""
3739
- "Използвайте това поле за %sкоригиране на разходите%s по време на добавяне на нова резервация."
3740
-
3741
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:654
3742
- msgid "Discount Coupon field"
3743
- msgstr "Поле за купон за отстъпка"
3744
-
3745
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:656
3746
- msgid "Please use this field for possibility to use coupon discounts by your visitors."
3747
- msgstr "Моля, използвайте това поле за възможност за използване на купон отстъпки за гостите."
3748
-
3749
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:657
3750
- #, php-format
3751
- msgid "You can configure the discount coupon codes at this %spage%s."
3752
- msgstr "Можете да конфигурирате купон кодове на намаления на тази %sстраница%s."
3753
-
3754
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:666
3755
- msgid "Hints for your form"
3756
- msgstr "Съвети за вашата форма"
3757
-
3758
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:672
3759
- msgid "Cost Hints"
3760
- msgstr "Съвети за разходите"
3761
-
3762
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:674
3763
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:695
3764
- #, php-format
3765
- msgid ""
3766
- "Insert these shortcodes into form to %sshow info in real time %s(after selection of the dates in "
3767
- "calendar or options in checkboxes or selectboxes)%s."
3768
- msgstr ""
3769
- "Поставете тези кратки кодове във формата, за да се %sпокаже информация в реално време%s (след "
3770
- "избор на дати в календара или опциите)%s."
3771
-
3772
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:693
3773
- msgid "Dates and Times Hints"
3774
- msgstr "Съвети за дата и час"
3775
-
3776
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:697
3777
- msgid "Selected Check In date."
3778
- msgstr "Изберете дата на пристигане"
3779
-
3780
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:698
3781
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:701
3782
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:704
3783
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:707
3784
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:710
3785
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:713
3786
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:716
3787
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:719
3788
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:722
3789
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:725
3790
- msgid "Example:"
3791
- msgstr "Пример:"
3792
-
3793
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:700
3794
- msgid "Selected Check Out date."
3795
- msgstr "Изберете дата за напускане:"
3796
-
3797
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:703
3798
- msgid "Selected Start Time."
3799
- msgstr "Изберете начален час:"
3800
-
3801
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:706
3802
- msgid "Selected End Time."
3803
- msgstr "Изберете карен час:"
3804
-
3805
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:709
3806
- msgid "All selected dates."
3807
- msgstr "Всички избрани дати."
3808
-
3809
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:712
3810
- msgid "All selected dates with times."
3811
- msgstr "Всички избрани дати с време."
3812
-
3813
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:715
3814
- msgid "All selected dates in \"short\" format."
3815
- msgstr "Всички избрани дати в \"кратък\" формат."
3816
-
3817
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:718
3818
- msgid "All selected dates with times in \"short\" format.."
3819
- msgstr "Всички избрани дати с час в \"кратък\" формат."
3820
-
3821
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:721
3822
- msgid "Number of selected days."
3823
- msgstr "Брой избрани дни:"
3824
-
3825
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:724
3826
- msgid "Number of selected nights."
3827
- msgstr "Брой избрани нощи:"
3828
-
3829
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:732
3830
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:168
3831
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:170
3832
- msgid "Other"
3833
- msgstr "Друго"
3834
-
3835
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:738
3836
- msgid "Tips and Tricks"
3837
- msgstr "Съвети и трикове"
3838
-
3839
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:740
3840
- #, php-format
3841
- msgid "%sEmail verification field%s."
3842
- msgstr "%sПоле за проверка на имейл%s"
3843
-
3844
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:742
3845
- #, php-format
3846
- msgid "%sDescription of usage%s."
3847
- msgstr "%sНачин на употреба%s"
3848
-
3849
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:743
3850
- #, php-format
3851
- msgid ""
3852
- "To create verification email, you need to use special CSS class in other email field. This CSS "
3853
- "class must start with this reserved words: %s and then have to go the name of your primary email "
3854
- "field: %s"
3855
- msgstr ""
3856
- "За създаване на имейл за потвърждение, ще трябва да използвате специален CSS клас в друго поле "
3857
- "имейл. Този CSS клас трябва да започнете с тази запазена дума: %s и след това трябва да отидете "
3858
- "на името на основното поле за имейл: %s"
3859
-
3860
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:744
3861
- #, php-format
3862
- msgid "%sExample%s."
3863
- msgstr "%sПример%s"
3864
-
3865
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:745
3866
- msgid "confirmation email field of the primary email field"
3867
- msgstr "поле за потвърждение на полето за основен имейл"
3868
-
3869
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:768
3870
- msgid "Generate Tag"
3871
- msgstr "Генериране на таг"
3872
-
3873
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:785
3874
- msgid "Select option to configure or show help info about tags"
3875
- msgstr "Изберете опция за конфигуриране или покаже помощ информация за тагове"
3876
-
3877
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:244
3878
- msgid "Enter Keyword here"
3879
- msgstr "Въведете ключовите думи тук"
3880
-
3881
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:245
3882
- msgid "Keyword"
3883
- msgstr "Ключови думи"
3884
-
3885
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:255
3886
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:259
3887
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:303
3888
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:308
3889
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:827
3890
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:828
3891
- msgid "Resource"
3892
- msgstr "Ресурс"
3893
-
3894
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:274
3895
- msgid "Print bookings listing"
3896
- msgstr "Печат на списъка с резервации"
3897
-
3898
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:276
3899
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:428
3900
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1139
3901
- msgid "Print"
3902
- msgstr "Печат"
3903
-
3904
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:277
3905
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:913
3906
- msgid "Export only current page of bookings to CSV format"
3907
- msgstr "Експортирай само текущата страница от резервациите в CSV формат"
3908
-
3909
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:279
3910
- msgid "Export"
3911
- msgstr "Експортирай"
3912
-
3913
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:280
3914
- msgid "Export All bookings to CSV format"
3915
- msgstr "Експортирай всички резервации в CSV формат"
3916
-
3917
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:282
3918
- msgid "Export All"
3919
- msgstr "Експортирай всичко"
3920
-
3921
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:373
3922
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1250
3923
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1761
3924
- msgid "Labels"
3925
- msgstr "Етикети"
3926
-
3927
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:374
3928
- msgid "Data"
3929
- msgstr "Данни"
3930
-
3931
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:391
3932
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:676
3933
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1612
3934
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1503
3935
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1959
3936
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2381
3937
- msgid "Approved"
3938
- msgstr "Одобрена"
3939
-
3940
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:392
3941
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:147
3942
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:677
3943
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1502
3944
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1958
3945
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:2237
3946
- msgid "Pending"
3947
- msgstr "Чакаща"
3948
-
3949
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:414
3950
- msgid "Edit Booking"
3951
- msgstr "Редактирай резервация"
3952
-
3953
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:419
3954
- msgid "Edit Note"
3955
- msgstr "Редактирай бележка"
3956
-
3957
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:423
3958
- msgid "Change Resource"
3959
- msgstr "Промени ресурс"
3960
-
3961
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:483
3962
- msgid "Change"
3963
- msgstr "Промени"
3964
-
3965
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:594
3966
- msgid "Clear booking resources selection"
3967
- msgstr "Изчисти селекцията на резервационните ресурси"
3968
-
3969
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:598
3970
- msgid "Apply booking resources selection"
3971
- msgstr "Приложи селекцията на резервационните ресурси"
3972
-
3973
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:629
3974
- msgid ""
3975
- "Please note, its not possible to add new resources, if \"All resources\" option is selected. "
3976
- "Please clear the selection, then add new resources."
3977
- msgstr ""
3978
- "Обърнете внимание, че не е възможно да се добави нов ресурс, ако опцията \"Всички ресурсию\" е "
3979
- "избрана. Моля изчистете селекцията преди да добавите нов ресурс."
3980
-
3981
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:709
3982
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1500
3983
- msgid "All resources"
3984
- msgstr "Всички ресурси"
3985
-
3986
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:723
3987
- msgid "Booking resources"
3988
- msgstr "Резервационни ресурси"
3989
-
3990
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:122
3991
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:145
3992
- msgid "Completed"
3993
- msgstr "Завършени"
3994
-
3995
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:124
3996
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:149
3997
- msgid "In-Progress"
3998
- msgstr "В процес на извършване"
3999
-
4000
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:126
4001
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:505
4002
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1908
4003
- msgid "Unknown"
4004
- msgstr "Неизвестен"
4005
-
4006
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:128
4007
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:171
4008
- msgid "Partially paid"
4009
- msgstr "Частично платен"
4010
-
4011
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:129
4012
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:172
4013
- msgid "Cancelled"
4014
- msgstr "Отказан"
4015
-
4016
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:130
4017
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:155
4018
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:231
4019
- msgid "Failed"
4020
- msgstr "Неуспешен"
4021
-
4022
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:131
4023
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:158
4024
- msgid "Refunded"
4025
- msgstr "Възстановена сума"
4026
-
4027
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:133
4028
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:173
4029
- msgid "Fraud"
4030
- msgstr "Измама"
4031
-
4032
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:140
4033
- msgid "!Paid OK"
4034
- msgstr "!Платен ОК"
4035
-
4036
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:141
4037
- msgid "Unknown status"
4038
- msgstr "Неизвестен статус"
4039
-
4040
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:142
4041
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:230
4042
- msgid "Not Completed"
4043
- msgstr "Незавършен"
4044
-
4045
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:148
4046
- msgid "Processed"
4047
- msgstr "В ход"
4048
-
4049
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:151
4050
- msgid "Canceled_Reversal"
4051
- msgstr "Анулирана_Сторнирана"
4052
-
4053
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:153
4054
- msgid "Denied"
4055
- msgstr "Отказана"
4056
-
4057
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:154
4058
- msgid "Expired"
4059
- msgstr "Изтекла"
4060
-
4061
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:157
4062
- msgid "Partially_Refunded"
4063
- msgstr "Частично възстановена сума"
4064
-
4065
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:159
4066
- msgid "Reversed"
4067
- msgstr "Сторнирана"
4068
-
4069
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:160
4070
- msgid "Voided"
4071
- msgstr "Освободена"
4072
-
4073
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:161
4074
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2009
4075
- msgid "Created"
4076
- msgstr "Създадена"
4077
-
4078
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:164
4079
- msgid "Not authed"
4080
- msgstr "Непотвърдена"
4081
-
4082
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:165
4083
- msgid "Malformed"
4084
- msgstr "Неточна"
4085
-
4086
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:166
4087
- msgid "Invalid"
4088
- msgstr "Невалидна"
4089
-
4090
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:167
4091
- msgid "Abort"
4092
- msgstr "Прекратена"
4093
-
4094
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:168
4095
- msgid "Rejected"
4096
- msgstr "Отказана"
4097
-
4098
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:169
4099
- msgid "Error"
4100
- msgstr "Грешка"
4101
-
4102
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:174
4103
- msgid "Suspended"
4104
- msgstr "Преустановена"
4105
-
4106
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:226
4107
- msgid "Any Status"
4108
- msgstr "Всеки статус"
4109
-
4110
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:228
4111
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:502
4112
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1905
4113
- msgid "Paid OK"
4114
- msgstr "Платена ОК"
4115
-
4116
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:229
4117
- msgid "Unknown Status"
4118
- msgstr "Неизвестен статус"
4119
-
4120
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:271
4121
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:481
4122
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:483
4123
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:938
4124
- msgid "Payment"
4125
- msgstr "Плащане"
4126
-
4127
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:284
4128
- msgid "Min. cost"
4129
- msgstr "Минимална цена"
4130
-
4131
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:289
4132
- msgid "Max. cost"
4133
- msgstr "Максимална цена"
4134
-
4135
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:292
4136
- msgid "min"
4137
- msgstr "Мин."
4138
-
4139
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:293
4140
- msgid "max"
4141
- msgstr "макс."
4142
-
4143
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:402
4144
- msgid "Send payment request to visitor"
4145
- msgstr "Изпрати искане за плащане към клиента"
4146
-
4147
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:415
4148
- msgid "Payment status"
4149
- msgstr "Статуса на плащането"
4150
-
4151
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:447
4152
- msgid "Save cost"
4153
- msgstr "Запиши цена"
4154
-
4155
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:470
4156
- msgid "Change status"
4157
- msgstr "Промени статуса"
4158
-
4159
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:660
4160
- msgid "Work days"
4161
- msgstr "Работни дни"
4162
-
4163
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:677
4164
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:735
4165
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-booking-new.php:124
4166
- msgid "Updating..."
4167
- msgstr "Актуализация..."
4168
-
4169
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:682
4170
- msgid "User is Activated"
4171
- msgstr "Потребителя е активиран"
4172
-
4173
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:740
4174
- msgid "User is Deactivated"
4175
- msgstr "Потребителя е деактивиран"
4176
-
4177
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:852
4178
- #, php-format
4179
- msgid ""
4180
- "%sYou do not have permissions for this page.%s Your account is not active, please contact "
4181
- "administrator.%s"
4182
- msgstr ""
4183
- "%sНямате права за тази страница. %s Вашият акаунт не е активиран, моля свържете се с "
4184
- "администратора.%s"
4185
-
4186
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:887
4187
- #, php-format
4188
- msgid "%sYou do not have permissions for this booking resources.%s"
4189
- msgstr "%sНямамте права за този резервационен ресурс%s"
4190
-
4191
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:893
4192
- #, php-format
4193
- msgid "%sNo this booking resources.%s"
4194
- msgstr "%sНе за този резервационен ресурс%s"
4195
-
4196
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1033
4197
- msgid "Show resources of user:"
4198
- msgstr "Покажи ресурсите за потребител:"
4199
-
4200
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1045
4201
- msgid "My"
4202
- msgstr "Моя"
4203
-
4204
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1064
4205
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:333
4206
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:373
4207
- msgid "Booking resource:"
4208
- msgstr "Резервационен ресурс:"
4209
-
4210
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1096
4211
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1148
4212
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1180
4213
- msgid "Users"
4214
- msgstr "Потребители"
4215
-
4216
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1116
4217
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1132
4218
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1249
4219
- msgid "User"
4220
- msgstr "Потребител"
4221
-
4222
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1150
4223
- msgid "Management of"
4224
- msgstr "Менажиране на"
4225
-
4226
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1253
4227
- msgid "Set user as"
4228
- msgstr "Задай потребителя като"
4229
-
4230
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1289
4231
- #, php-format
4232
- msgid "Active %sSuper Admin%s"
4233
- msgstr "Активирай %sSuper Admin%s"
4234
-
4235
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1291
4236
- #, php-format
4237
- msgid "Active %sRegular User%s"
4238
- msgstr "Активирай %sRegular User%s"
4239
-
4240
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1294
4241
- msgid "Inactive User"
4242
- msgstr "Неактивен потребител"
4243
-
4244
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1301
4245
- msgid "Unlimited"
4246
- msgstr "Неограничен"
4247
-
4248
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1306
4249
- msgid "Activate"
4250
- msgstr "Активиран"
4251
-
4252
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1307
4253
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1316
4254
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1319
4255
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1322
4256
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1333
4257
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1337
4258
- msgid "Do you really want"
4259
- msgstr "Наистина ли искате"
4260
-
4261
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1307
4262
- msgid "make user active"
4263
- msgstr "активирай потребителя"
4264
-
4265
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1311
4266
- msgid "Deactivate"
4267
- msgstr "Деактивирай"
4268
-
4269
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1315
4270
- msgid "Set as inactive"
4271
- msgstr "Задай като неактивен"
4272
-
4273
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1316
4274
- msgid "make user inactive"
4275
- msgstr "Направи потребителя неактивен"
4276
-
4277
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1318
4278
- msgid "Delete settings"
4279
- msgstr "Изтрий настройките"
4280
-
4281
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1319
4282
- msgid "delete configuration"
4283
- msgstr "изтрий конфигурацията"
4284
-
4285
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1321
4286
- msgid "Delete data"
4287
- msgstr "Изтрий данните"
4288
-
4289
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1322
4290
- msgid "delete all booking data"
4291
- msgstr "изтрий всички данни за резервацията"
4292
-
4293
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1332
4294
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1333
4295
- msgid "Super Admin"
4296
- msgstr "Супер администратор"
4297
-
4298
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1333
4299
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1337
4300
- msgid "set user as"
4301
- msgstr "направи потребителя"
4302
-
4303
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1336
4304
- msgid "Regular User"
4305
- msgstr "Обикновен потребител"
4306
-
4307
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1337
4308
- msgid "Regular user"
4309
- msgstr "Обикновен потребител"
4310
-
4311
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1433
4312
- msgid "Suite"
4313
- msgstr "Апартамент"
4314
-
4315
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:29
4316
- msgid "Integration of authorizenet payment system"
4317
- msgstr "Интегриране на разплащателна система authorizenet"
4318
-
4319
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:103
4320
- #, php-format
4321
- msgid ""
4322
- "If you have no account on this system, please sign up for a %sdeveloper test account%s to obtain "
4323
- "an API Login ID and Transaction Key. These keys will authenticate requests to the payment "
4324
- "gateway."
4325
- msgstr ""
4326
- "Ако нямате акаунт в тази ситема, моля впишете се за %sdeveloper test account%s за да получите "
4327
- "API Login ID и Transaction Key. Този ключ ще оторизира заявките ви към платежния терминал."
4328
-
4329
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:112
4330
- #, php-format
4331
- msgid " Check this box to use %s payment gateway."
4332
- msgstr " Изберете този бокс за да използвате %s платежен терминал."
4333
-
4334
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:117
4335
- msgid "API Login ID"
4336
- msgstr "API Login ID"
4337
-
4338
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:121
4339
- #, php-format
4340
- msgid "The merchant API Login ID is provided in the Merchant Interface of %s"
4341
- msgstr "Идентификационният номер на търговец API Login е предвидено в търговския интерфейс на%s"
4342
-
4343
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:127
4344
- msgid "Transaction Key"
4345
- msgstr "Ключ за транзакцията"
4346
-
4347
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:131
4348
- #, php-format
4349
- msgid "This parameter have to assigned to you by %s"
4350
- msgstr "Този параметър трябва да ви е даден от %s"
4351
-
4352
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:140
4353
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:328
4354
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:146
4355
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:132
4356
- msgid "Chose payment mode"
4357
- msgstr "Изберете нетода за разплащане"
4358
-
4359
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:144
4360
- msgid "Developer Test"
4361
- msgstr "Тест за разработчици"
4362
-
4363
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:145
4364
- msgid "Live Test"
4365
- msgstr "Live тест"
4366
-
4367
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:146
4368
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:332
4369
- msgid "Live"
4370
- msgstr "На живо"
4371
-
4372
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:148
4373
- msgid ""
4374
- "Select \"Live test\" or \"Live\" environment for using Merchant account or \"Developer Test\" "
4375
- "for using Developer account."
4376
- msgstr ""
4377
- "Изберете \"Live тест\" или \"Live\" среда за да използвате търговски акаунт или \"Тест за "
4378
- "разработчици\" за да използвате акаунт за разработчици."
4379
-
4380
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:150
4381
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:261
4382
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:473
4383
- msgid "Note:"
4384
- msgstr "Бележка:"
4385
-
4386
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:151
4387
- msgid ""
4388
- "Transactions posted against live merchant accounts using either of the above testing methods are "
4389
- "not submitted to financial institutions for authorization and are not stored in the Merchant "
4390
- "Interface."
4391
- msgstr ""
4392
- "Транзакции изпратени към истински търговски сметки при използването на който и да е от горните "
4393
- "тестови методи, не се изпращат към финансовите институции и не се съхраняват в търговския "
4394
- "интерфейс."
4395
-
4396
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:158
4397
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:341
4398
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:162
4399
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:145
4400
- msgid "Transaction type"
4401
- msgstr "Тип на транзакцията"
4402
-
4403
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:162
4404
- msgid "Authorization and Capture"
4405
- msgstr "Оторизация и прихващане"
4406
-
4407
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:163
4408
- msgid "Authorization Only"
4409
- msgstr "Само оторизация"
4410
-
4411
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:165
4412
- msgid "Select transaction type, which supported by the payment gateway."
4413
- msgstr "Изберете тип на транзакцията, която се поддържа от платежната система"
4414
-
4415
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:172
4416
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:174
4417
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:354
4418
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:174
4419
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:157
4420
- msgid "Accepted Currency"
4421
- msgstr "Приемани валути"
4422
-
4423
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:176
4424
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:178
4425
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:359
4426
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:177
4427
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:160
4428
- msgid "U.S. Dollars"
4429
- msgstr "Американски долар"
4430
-
4431
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:177
4432
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:364
4433
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:182
4434
- msgid "Canadian Dollars"
4435
- msgstr "Канаски долар"
4436
-
4437
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:178
4438
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:179
4439
- msgid "Pounds Sterling"
4440
- msgstr "Лири стерлинги"
4441
-
4442
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:179
4443
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:360
4444
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:178
4445
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:161
4446
- msgid "Euros"
4447
- msgstr "Евро"
4448
-
4449
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:181
4450
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:206
4451
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:384
4452
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:201
4453
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:163
4454
- msgid "The currency code that gateway will process the payment in."
4455
- msgstr "Код на валутата в която платежната ситема ще обработи плащането."
4456
-
4457
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:181
4458
- msgid ""
4459
- "Setting the currency that is not supported by the payment processor will result in an error."
4460
- msgstr "Избирането на валути които не се поддържат от платежната система ще генерира грешка."
4461
-
4462
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:187
4463
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:211
4464
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:437
4465
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:206
4466
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:168
4467
- msgid "Payment button title"
4468
- msgstr "Заглавие на бутона за плащане"
4469
-
4470
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:191
4471
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:216
4472
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:440
4473
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:209
4474
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:171
4475
- msgid "Enter the title of the payment button"
4476
- msgstr "Въведете заглавие на бутона за плащане"
4477
-
4478
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:196
4479
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:223
4480
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:449
4481
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:216
4482
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:178
4483
- msgid "Show Payment description"
4484
- msgstr "Покажи описание на плащането"
4485
-
4486
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:204
4487
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:231
4488
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:457
4489
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:224
4490
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:186
4491
- msgid "Check this box to show payment description in payment form"
4492
- msgstr "Изберете този бокс за да покажете описание на плащането в платежната форма"
4493
-
4494
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:215
4495
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:242
4496
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:468
4497
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:235
4498
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:197
4499
- msgid "Payment description"
4500
- msgstr "Поисание на плащането"
4501
-
4502
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:218
4503
- msgid ""
4504
- "Format: Up to 255 characters (no symbols). Also, in order to be displayed, the View attribute "
4505
- "must be configured for this field in the Merchant Interface payment form settings."
4506
- msgstr ""
4507
- "Формат: 255 символа (заедно с интервалите). Също така за да се покаже атрибутът View трябва да е "
4508
- "конфигуриран за това поле в търговският интерфейс на платежната форма."
4509
-
4510
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:226
4511
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:253
4512
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:483
4513
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:246
4514
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:208
4515
- #, php-format
4516
- msgid "%s[bookingname]%s - inserting name of booking resource, "
4517
- msgstr "%s[bookingname]%s - въведете името на резервационния ресурс, "
4518
-
4519
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:227
4520
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:254
4521
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:484
4522
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:247
4523
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:209
4524
- #, php-format
4525
- msgid "%s[dates]%s - inserting list of reserved dates "
4526
- msgstr "%s[dates]%s - въведете списък на резервираните дати "
4527
-
4528
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:228
4529
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:255
4530
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:485
4531
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:248
4532
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:210
4533
- #, php-format
4534
- msgid "%s[datescount]%s - inserting number of reserved dates "
4535
- msgstr "%s[datescount]%s - въведете броят на резервираните дни "
4536
-
4537
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:240
4538
- msgid "Activate Relay Response"
4539
- msgstr "Активирайте Relay Response"
4540
-
4541
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:249
4542
- msgid ""
4543
- "Indicate to the payment gateway that you would like to receive the transaction response to your "
4544
- "site."
4545
- msgstr ""
4546
- "Посочете payment gateway, на който бихте искали да получите отговор на сделката към вашия сайт."
4547
-
4548
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:262
4549
- msgid ""
4550
- "You should leave empty the Relay Response URL and Receipt Link URL/Text in the Merchant "
4551
- "Interface, if a Relay Response is activated here."
4552
- msgstr ""
4553
- "Трябва да оставите Relay Response URL и Receipt Link URL/Text в търговския интерфейс, ако "
4554
- "активирате Relay Response тук."
4555
-
4556
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:267
4557
- msgid "MD5 Hash value"
4558
- msgstr "MD5 Hash value"
4559
-
4560
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:270
4561
- msgid ""
4562
- "Please enter the MD5 Hash value, which you configured in the settings of Merchant Interface."
4563
- msgstr ""
4564
- "Моля въведете MD5 Hash value, която сте конфигурирали в настройките на търговския интерфейс."
4565
-
4566
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:278
4567
- msgid "To configure MD5 Hash value in Relay Response for your transactions"
4568
- msgstr "За да конфигурирате MD5 Hash value в Relay Response за вашата транзакция"
4569
-
4570
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:281
4571
- msgid "Log on to the Merchant Interface"
4572
- msgstr "Влвз в Търговския интерфейс"
4573
-
4574
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:282
4575
- msgid "Click Settings under Account in the main menu on the left"
4576
- msgstr "Натиснете Настройки под Акаунт в главното меню в ляво"
4577
-
4578
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:283
4579
- msgid "Click MD5-Hash in the Security Settings section"
4580
- msgstr "Натиснете MD5-Hash в секцията за настройка на сигурността"
4581
-
4582
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:284
4583
- msgid "Enter this value"
4584
- msgstr "Въведете тази стойност"
4585
-
4586
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:285
4587
- msgid "Click Submit"
4588
- msgstr "Натиснете Изпрати"
4589
-
4590
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:287
4591
- #, php-format
4592
- msgid ""
4593
- "For more information about configuring Relay Response in the Merchant Interface, please see the "
4594
- "%sMerchant Integration Guide%s"
4595
- msgstr ""
4596
- "За повече информация относно конфигурирането Relay Response в търговския интерфейс, моля вижте "
4597
- "%sMerchant Integration Guide%s"
4598
-
4599
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:295
4600
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:271
4601
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:262
4602
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:224
4603
- msgid "Return URL after Successful order"
4604
- msgstr "Адрес за връщане след успешна поръчка"
4605
-
4606
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:300
4607
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:276
4608
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:267
4609
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:229
4610
- #, php-format
4611
- msgid ""
4612
- "Enter a return relative Successful URL. %s will redirect visitors to this page after Successful "
4613
- "Payment"
4614
- msgstr ""
4615
- "Въведете относителен URL адрес. %s ще пренасочите посетителите на тази страница, след успешно "
4616
- "плащане"
4617
-
4618
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:301
4619
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:312
4620
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:277
4621
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:288
4622
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:268
4623
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:279
4624
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:230
4625
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:241
4626
- msgid "Please test this URL, it must be a valid address"
4627
- msgstr "Моля изпробвайте този URL адрес, той трябва да е валиден"
4628
-
4629
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:306
4630
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:282
4631
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:273
4632
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:235
4633
- msgid "Return URL after Failed order"
4634
- msgstr "URL адрес за връщане на посетителя при неуспешна операция"
4635
-
4636
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:311
4637
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:287
4638
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:278
4639
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:240
4640
- #, php-format
4641
- msgid ""
4642
- "Enter a return relative Failed URL. %s will redirect visitors to this page after Failed Payment"
4643
- msgstr ""
4644
- "Въведете относителен URL адрес. %s ще пренасочите посетителите на тази страница, след неуспешно "
4645
- "плащане"
4646
-
4647
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:317
4648
- msgid "Automatically approve booking"
4649
- msgstr "Автоматично одобряване на резервацията"
4650
-
4651
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:325
4652
- msgid "Check this box to automatically approve booking, when visitor makes a successful payment."
4653
- msgstr ""
4654
- "Изберете този бок за автоматично одобряване на резервацията, след като потребителя е извършл "
4655
- "успешно плащане."
4656
-
4657
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:327
4658
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:585
4659
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:294
4660
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:256
4661
- msgid "This will not work, if the visitor leaves the payment page."
4662
- msgstr "Това няма да работи, ако посетителя е напуснал страницата за плащане."
4663
-
4664
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:341
4665
- msgid "Be sure that the merchant server system clock is set to the proper time and time zone."
4666
- msgstr "Уверете се, че сървъра на търговеца е с вярно настроени час и часова зона."
4667
-
4668
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:342
4669
- msgid ""
4670
- "Please configure all fields inside the Billing form fields tab at this page, when using a "
4671
- "European payment processor"
4672
- msgstr ""
4673
- "Моля конфигурирайте всички полета втаба на формата за плащане на тази страница, ако използвате "
4674
- "европейска разплащателна система."
4675
-
4676
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:715
4677
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:752
4678
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:975
4679
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:702
4680
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:707
4681
- #, php-format
4682
- msgid "Payment for booking %s on these day(s): %s"
4683
- msgstr "Плащане на резервация %s за тези дни: %s"
4684
-
4685
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:717
4686
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:747
4687
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:976
4688
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:706
4689
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:711
4690
- msgid "Pay via"
4691
- msgstr "Плати чрез"
4692
-
4693
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:23
4694
- msgid "Integration of Bank Transfer payment system"
4695
- msgstr "Интегриране на система за плащане по банков път"
4696
-
4697
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:24
4698
- msgid "Bank Transfer"
4699
- msgstr "Плащане по банков път"
4700
-
4701
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:112
4702
- msgid "Bank Transfer customization"
4703
- msgstr "Персонализиране на Плащане по банков път"
4704
-
4705
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:121
4706
- #, php-format
4707
- msgid "Allow payments by %sdirect bank / wire transfer%s"
4708
- msgstr "Позволяване на плащания %sдиректно от банката / банков превод %s"
4709
-
4710
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:127
4711
- msgid "Bank Transfer active"
4712
- msgstr "Активирай плащане по банков път"
4713
-
4714
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:134
4715
- msgid "Check this box to use Bank Transfer"
4716
- msgstr "Маркирайте, за да използвате плащане по банков път"
4717
-
4718
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:143
4719
- msgid "Account details"
4720
- msgstr "Детайли за вашата сметка"
4721
-
4722
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:182
4723
- msgid "+ Add Account"
4724
- msgstr "+ Добави сметка"
4725
-
4726
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:182
4727
- msgid "Remove selected account(s)"
4728
- msgstr "Изтрий избраните сметки"
4729
-
4730
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:321
4731
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/pay-cash.php:109
4732
- msgid "Payment method description that the customer will see on your payment page."
4733
- msgstr "Описание на начина на плащане, които клиентът ще види на страницата за плащане"
4734
-
4735
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:356
4736
- msgid "BSB"
4737
- msgstr "BSB"
4738
-
4739
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:357
4740
- msgid "Bank Transit Number"
4741
- msgstr "Bank Transit Номер"
4742
-
4743
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:358
4744
- msgid "IFSC"
4745
- msgstr "IFSC"
4746
-
4747
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:359
4748
- msgid "Branch Sort"
4749
- msgstr "Branch Sort"
4750
-
4751
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:360
4752
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:361
4753
- msgid "Bank Code"
4754
- msgstr "Код на банката"
4755
-
4756
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:362
4757
- msgid "Routing Number"
4758
- msgstr "Routing Number"
4759
-
4760
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:363
4761
- msgid "Branch Code"
4762
- msgstr "Код на клона"
4763
-
4764
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:583
4765
- msgid "Sort Code"
4766
- msgstr "Банков код (Sort Code)"
4767
-
4768
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:588
4769
- #, php-format
4770
- msgid ""
4771
- "Dear %sMake your payment %s directly into our bank account. %sPlease use your Booking ID %s as "
4772
- "the payment reference! %s %s: %s %s: %s %s: %s %s: %s"
4773
- msgstr ""
4774
- "Уважаеми %sНаправете вашето плащане%s директно в нашата банкова сметка. %sМоля, уверете се, че "
4775
- "уникалния номер%s на вашата резервация е посочен в плащането! %s %s: %s %s: %s %s: %s %s: %s"
4776
-
4777
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:594
4778
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:603
4779
- msgid "Account Number"
4780
- msgstr "Номер на сметка"
4781
-
4782
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:596
4783
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:606
4784
- msgid "IBAN"
4785
- msgstr "IBAN"
4786
-
4787
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:597
4788
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:607
4789
- msgid "BIC / Swift"
4790
- msgstr "BIC / Swift"
4791
-
4792
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:602
4793
- msgid "Account Name"
4794
- msgstr "Име на сметка"
4795
-
4796
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:604
4797
- msgid "Bank Name"
4798
- msgstr "Име на банката"
4799
-
4800
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/index.php:165
4801
- msgid "Dates:"
4802
- msgstr "Дати"
4803
-
4804
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/index.php:166
4805
- msgid "Booking Details:"
4806
- msgstr "Резервационни детаили:"
4807
-
4808
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/index.php:185
4809
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2285
4810
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2287
4811
- msgid "You can use following shortcodes in content of this template"
4812
- msgstr "Може да използвате следните shortcodes в съдържанието на шаблоните"
4813
-
4814
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/index.php:189
4815
- #, php-format
4816
- msgid "%s - inserting all bank accounts details"
4817
- msgstr "%s - въвеждане на детайли за банковата сметка"
4818
-
4819
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/index.php:192
4820
- #, php-format
4821
- msgid "%s - inserting account name"
4822
- msgstr "%s - въвеждане име на сметката"
4823
-
4824
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/index.php:195
4825
- #, php-format
4826
- msgid "%s - inserting account number"
4827
- msgstr "%s - въвеждане номер на сметката"
4828
-
4829
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/index.php:198
4830
- #, php-format
4831
- msgid "%s - inserting bank name "
4832
- msgstr "%s - въвеждане име на банката"
4833
-
4834
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/index.php:201
4835
- #, php-format
4836
- msgid "%s - inserting sort code "
4837
- msgstr "%s - въвеждане на банков код (sort code)"
4838
-
4839
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/index.php:204
4840
- #, php-format
4841
- msgid "%s - inserting IBAN "
4842
- msgstr "%s - въвеждане на IBAN"
4843
-
4844
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/index.php:207
4845
- #, php-format
4846
- msgid "%s - inserting BIC "
4847
- msgstr "%s - въвеждане на BIC"
4848
-
4849
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/index.php:211
4850
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2293
4851
- #, php-format
4852
- msgid ""
4853
- "%s - inserting data info about the booking, which you configured in the content form at Settings "
4854
- "Fields page"
4855
- msgstr ""
4856
- "%s - въвеждане на данните от информацията за резервацията, които сте конфигурирали в страницата "
4857
- "с настройки на полетата"
4858
-
4859
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/index.php:213
4860
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2295
4861
- #, php-format
4862
- msgid "%s - inserting ID of booking "
4863
- msgstr "%s - добавяне на ID на резервацията "
4864
-
4865
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/index.php:215
4866
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2297
4867
- #, php-format
4868
- msgid "%s or %s - inserting the title of the booking resource "
4869
- msgstr "%s или %s - въвеждане на заглавието на резервационния ресурс"
4870
-
4871
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/index.php:217
4872
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2299
4873
- #, php-format
4874
- msgid "%s - inserting the cost of booking "
4875
- msgstr "%s - въвеждане на цена на резервацията"
4876
-
4877
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/index.php:221
4878
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2303
4879
- #, php-format
4880
- msgid "%s - inserting the dates of booking"
4881
- msgstr "%s - въвеждане на датите на резервацията"
4882
-
4883
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/index.php:223
4884
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2305
4885
- #, php-format
4886
- msgid "%s - inserting check-in date (first day of reservation),"
4887
- msgstr "%s - въвеждане на дата на настаняване (първи ден от резервацията),"
4888
-
4889
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/index.php:225
4890
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2307
4891
- #, php-format
4892
- msgid "%s - inserting check-out date (last day of reservation),"
4893
- msgstr "%s - въвеждане на дата на напускане (последен ден от резервацията),"
4894
-
4895
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/index.php:227
4896
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2309
4897
- #, php-format
4898
- msgid "%s - inserting the number of booking dates "
4899
- msgstr "%s - въвеждане на броя резервирани дни "
4900
-
4901
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88-backend.php:44
4902
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:591
4903
- msgid "Successful payment"
4904
- msgstr "Успешно плащане"
4905
-
4906
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88-backend.php:46
4907
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:593
4908
- msgid " Parameters are incorrect,"
4909
- msgstr "Параметрите са невалидни,"
4910
-
4911
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88-backend.php:47
4912
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:594
4913
- msgid "Cannot find the record"
4914
- msgstr "Записа не може да бъде намерен"
4915
-
4916
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88-backend.php:48
4917
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:595
4918
- msgid "Amount different"
4919
- msgstr "Сумата се различава"
4920
-
4921
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88-backend.php:49
4922
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:596
4923
- msgid "Payment failed"
4924
- msgstr "Неуспешно плащане"
4925
-
4926
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88-backend.php:50
4927
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:597
4928
- msgid "Payment status updated by Mobile88 Admin(Fail)"
4929
- msgstr "Статуса на плащането е актуализиран от Mobile88 Admin(Fail)"
4930
-
4931
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88-backend.php:51
4932
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:598
4933
- msgid "Connection Error"
4934
- msgstr "Грешка във връзката"
4935
-
4936
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:22
4937
- msgid "Integration of iPay88 payment system"
4938
- msgstr "Интеграция с iPay88 платежна система"
4939
-
4940
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:23
4941
- msgid "iPay88"
4942
- msgstr "iPay88"
4943
-
4944
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:105
4945
- msgid "iPay88 customization"
4946
- msgstr "Персонализиране на iPay88"
4947
-
4948
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:113
4949
- msgid "Active iPay88"
4950
- msgstr "Активирай iPay88"
4951
-
4952
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:122
4953
- msgid " Check this box to use iPay88 payment system."
4954
- msgstr " Избери този бокс за да използвате iPay88 платежна система."
4955
-
4956
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:130
4957
- msgid "Merchant Code"
4958
- msgstr "Код на търговеца"
4959
-
4960
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:137
4961
- msgid "Enter your iPay88 Merchant Code."
4962
- msgstr "Въведете iPay88 код на търговеца"
4963
-
4964
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:143
4965
- msgid "Merchant Key"
4966
- msgstr "Ключ на търговеца"
4967
-
4968
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:149
4969
- msgid "Enter your iPay88 Merchant Key."
4970
- msgstr "Въведете вашия iPay88 търговски ключ."
4971
-
4972
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:177
4973
- msgid "Malaysian Ringgit"
4974
- msgstr "Малайзийски Рингит"
4975
-
4976
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:179
4977
- msgid "Philippines Peso"
4978
- msgstr "Филипинско Песо"
4979
-
4980
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:245
4981
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:471
4982
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:238
4983
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:200
4984
- msgid "Enter the service name or the reason for the payment here."
4985
- msgstr "Въведете името на услугата или причината за плащането тук."
4986
-
4987
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:295
4988
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:576
4989
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:284
4990
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:246
4991
- msgid "Automatically approve/cancel booking"
4992
- msgstr "Автоматично одобряване/отказване на резервация"
4993
-
4994
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:303
4995
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:292
4996
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:254
4997
- msgid ""
4998
- "Check this box to automatically approve bookings when visitor makes a successful payment, or "
4999
- "automatically cancel the booking when visitor makes a payment cancellation."
5000
- msgstr ""
5001
- "Изберете този бок за автоматично одобряване на резервацията при успешно плащане или автоматично "
5002
- "отказване, ако посетителя е отказал палщането."
5003
-
5004
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:316
5005
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:333
5006
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:295
5007
- #, php-format
5008
- msgid ""
5009
- "Please configure %s fields inside the %sBilling form fields%s TAB at this page, this is "
5010
- "necessary for the %s."
5011
- msgstr ""
5012
- "Моля, конфигурирайте %s полета в %sBilling form fields%s ТАБ на тази страница, това е необходимо "
5013
- "за %s."
5014
-
5015
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipn.php:120
5016
- msgid "Error IPN"
5017
- msgstr "Грешен IPN"
5018
-
5019
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipn.php:234
5020
- msgid "Verified IPN"
5021
- msgstr "Проверен IPN"
5022
-
5023
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipn.php:257
5024
- msgid "Invalid IPN"
5025
- msgstr "Невалиден IPN"
5026
-
5027
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/pay-cash.php:21
5028
- msgid "Integration of Pay in Cash payment system"
5029
- msgstr "Интегриране на разплащателна за плащане в брой"
5030
-
5031
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/pay-cash.php:22
5032
- msgid "Pay in Cash"
5033
- msgstr "Плащане в брой"
5034
-
5035
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/pay-cash.php:57
5036
- msgid "Pay in Cash customization"
5037
- msgstr "Персонализиране на плащане в брой"
5038
-
5039
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/pay-cash.php:66
5040
- #, php-format
5041
- msgid "If you accept %scash payment%s, you can write details about it here"
5042
- msgstr "Ако приемате %sплащане в бройt%s, можете да видите повече детайли тук"
5043
-
5044
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/pay-cash.php:73
5045
- msgid "Pay in Cash active"
5046
- msgstr "Плащане в брой е активно"
5047
-
5048
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/pay-cash.php:81
5049
- msgid "Check this box to use Pay in Cash"
5050
- msgstr "Маркирайте тази отметка, за да използвате плащане в брой."
5051
-
5052
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/pay-cash.php:276
5053
- #, php-format
5054
- msgid "Dear %sPay in cash %s for your booking %s on check in %sFor reference your booking ID: %s"
5055
- msgstr ""
5056
- "Уважаеми %sплащане в брой %s за вашата резервация %s с пристигане %sза референтен номер на "
5057
- "резервацията: %s"
5058
-
5059
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:23
5060
- msgid "Integration of Paypal payment system"
5061
- msgstr "Интеграция с платежна система PayPal"
5062
-
5063
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:24
5064
- msgid "PayPal"
5065
- msgstr "PayPal"
5066
-
5067
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:141
5068
- msgid "PayPal customization"
5069
- msgstr "Персонализиране на PayPal"
5070
-
5071
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:144
5072
- msgid "Configuration of PayPal Standard payment form"
5073
- msgstr "Конфигуриране на стандартна PayPal форма за плащане"
5074
-
5075
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:151
5076
- msgid "Paypal Standard"
5077
- msgstr "Paypal Standard"
5078
-
5079
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:157
5080
- msgid "Configuration of PayPal Pro Hosted Solution payment form"
5081
- msgstr "Конфигуриране на PayPal Pro Hosted Solution форма за плащане"
5082
-
5083
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:164
5084
- msgid "Paypal Pro Hosted Solution"
5085
- msgstr "Paypal Pro Hosted Solution"
5086
-
5087
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:170
5088
- msgid ""
5089
- "Instant Payment Notification (IPN) is a message service that notifies you of events related to "
5090
- "PayPal transactions"
5091
- msgstr ""
5092
- "Instant Payment Notification (IPN) е система за съобщения, която ви информира за всяко събитие "
5093
- "свързано с PayPal транзакциите"
5094
-
5095
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:175
5096
- msgid "IPN"
5097
- msgstr "IPN"
5098
-
5099
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:182
5100
- msgid "Sending email for verified transaction"
5101
- msgstr "Изпращане на email за проверка на транзакцията"
5102
-
5103
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:196
5104
- #, php-format
5105
- msgid "Email for getting report for %sverified%s transactions."
5106
- msgstr "Email за отчет за %sverified%s транзакции."
5107
-
5108
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:203
5109
- msgid "Sending email for invalid transaction"
5110
- msgstr "Изпращане на email за невалидна транзакция"
5111
-
5112
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:216
5113
- #, php-format
5114
- msgid "Email for getting report for %sinvalid%s transactions."
5115
- msgstr "Email за отчет за %sinvalid%s транзакции."
5116
-
5117
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:224
5118
- msgid "Sending email if error occur during verification"
5119
- msgstr "Изпращане на email, ако е открита грешка по време на верификацията"
5120
-
5121
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:237
5122
- #, php-format
5123
- msgid "Email for getting report for %ssome errors in verification process%s."
5124
- msgstr "Email за отчет при %ssome errors in verification process%s."
5125
-
5126
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:243
5127
- msgid "Use SSL connection"
5128
- msgstr "Използвай SSL връзка"
5129
-
5130
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:248
5131
- msgid "Use the SSL connection for posting data, instead of standard HTTP connection"
5132
- msgstr "Използвай SSL връзка за изпращане на информацията, вместо стандартна HTTP връзка"
5133
-
5134
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:254
5135
- msgid "Use cURL posting"
5136
- msgstr "Използвай cURL posting"
5137
-
5138
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:259
5139
- msgid "Use the cURL for posting data, instead of fsockopen() function"
5140
- msgstr "Използвай cURL за изпращане на информацията, вместо fsockopen() функция"
5141
-
5142
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:267
5143
- msgid " Follow these instructions to set up your listener at your PayPal account:"
5144
- msgstr "Използвай тези инструкции за да настроите вашия приемник в вашия PayPal акаунт"
5145
-
5146
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:269
5147
- msgid "Click Profile on the My Account tab."
5148
- msgstr "Натиснете Профил в таба Моят профил."
5149
-
5150
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:270
5151
- msgid "Click Instant Payment Notification Preferences in the Selling Preferences column."
5152
- msgstr "Натисни Instant Payment Notification Preferences в колоната Selling Preferences."
5153
-
5154
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:271
5155
- msgid "Click Choose IPN Settings to specify your listeners URL and activate the listener."
5156
- msgstr "Натисни Choose IPN Settings за да изберете URL na приемникa и да активирате връзката."
5157
-
5158
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:272
5159
- msgid "Specify the URL for your listener in the Notification URL field as:"
5160
- msgstr "Изберете URL за приемника в полето Notification URL като:"
5161
-
5162
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:273
5163
- msgid "Click Receive IPN messages (Enabled) to enable your listener."
5164
- msgstr "Натиснете Receive IPN messages (Enabled) за да активирате връзката."
5165
-
5166
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:274
5167
- msgid "Click Save."
5168
- msgstr "Натиснете Запиши."
5169
-
5170
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:275
5171
- msgid "Click Back to Profile Summary to return to the Profile after activating your listener."
5172
- msgstr ""
5173
- "Натиснете Обратно в профила за да се върнете в профила си след като сте активирали връзката."
5174
-
5175
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:286
5176
- msgid "PayPal active"
5177
- msgstr "PayPal е активен"
5178
-
5179
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:293
5180
- msgid "Check this box to use PayPal"
5181
- msgstr "Изберете този бокс за да използвате PayPal"
5182
-
5183
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:301
5184
- msgid "Secure Merchant ID"
5185
- msgstr "Secure Merchant ID"
5186
-
5187
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:307
5188
- msgid "This is the Secure Merchant ID, which can be found on the profile page"
5189
- msgstr "Това е Secure Merchant ID, който може да бъде намерен в профилната страница"
5190
-
5191
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:314
5192
- msgid "Paypal Email address to receive payments"
5193
- msgstr "Paypal Email адрес за получаване на плащанията"
5194
-
5195
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:319
5196
- msgid "This is the Paypal Email address where payments will be sent"
5197
- msgstr "Това е Paypal Email адреса на който плащанията ще бъдат изпращани"
5198
-
5199
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:333
5200
- msgid "Sandbox"
5201
- msgstr "PayPal режим за разработчици"
5202
-
5203
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:335
5204
- msgid " Select using test (Sandbox Test Environment) or live PayPal payment."
5205
- msgstr ""
5206
- "Изберете дали да използвате тестов режим (Sandbox Test Environment) или реални PayPal плащания."
5207
-
5208
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:345
5209
- msgid "Sale"
5210
- msgstr "Продажба"
5211
-
5212
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:346
5213
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:148
5214
- msgid "Authorization"
5215
- msgstr "Оторизация"
5216
-
5217
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:348
5218
- msgid ""
5219
- " Indicates whether the transaction is payment on a final sale or an authorization for a final "
5220
- "sale, to be captured later. "
5221
- msgstr " Показва кога транзакцията е реално плащане или кога е оторизация за последващо плащане."
5222
-
5223
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:361
5224
- msgid "British Pound"
5225
- msgstr "Британска лира"
5226
-
5227
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:362
5228
- msgid "Japanese Yen"
5229
- msgstr "Японска Йена"
5230
-
5231
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:363
5232
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:181
5233
- msgid "Australian Dollars"
5234
- msgstr "Австралийски долар"
5235
-
5236
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:365
5237
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:183
5238
- msgid "New Zealand Dollar"
5239
- msgstr "Ново заландски долар"
5240
-
5241
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:366
5242
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:184
5243
- msgid "Swiss Franc"
5244
- msgstr "Швейцарски франк"
5245
-
5246
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:367
5247
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:185
5248
- msgid "Hong Kong Dollar"
5249
- msgstr "Хон Конгски долар"
5250
-
5251
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:368
5252
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:186
5253
- msgid "Singapore Dollar"
5254
- msgstr "Сингапурски Долар"
5255
-
5256
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:369
5257
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:187
5258
- msgid "Swedish Krona"
5259
- msgstr "Шведска Крона"
5260
-
5261
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:370
5262
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:188
5263
- msgid "Danish Krone"
5264
- msgstr "Датска Крона"
5265
-
5266
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:371
5267
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:189
5268
- msgid "Polish Zloty"
5269
- msgstr "Полска Злота"
5270
-
5271
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:372
5272
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:190
5273
- msgid "Norwegian Krone"
5274
- msgstr "Норвежка Крона"
5275
-
5276
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:373
5277
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:191
5278
- msgid "Hungarian Forint"
5279
- msgstr "Унгарски Форинт"
5280
-
5281
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:374
5282
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:192
5283
- msgid "Czech Koruna"
5284
- msgstr "Чешка Куна"
5285
-
5286
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:375
5287
- msgid "Israeli New Shekel"
5288
- msgstr "Израелски Нов Шекел"
5289
-
5290
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:376
5291
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:194
5292
- msgid "Mexican Peso"
5293
- msgstr "Мексиканско Песо"
5294
-
5295
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:377
5296
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:195
5297
- msgid "Brazilian Real (only for Brazilian users)"
5298
- msgstr "Бразилски Реал (само за бразилски потребители)"
5299
-
5300
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:378
5301
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:196
5302
- msgid "Malaysian Ringgits (only for Malaysian users)"
5303
- msgstr "Малаизийски Рингитс (само за малайзийски потребители)"
5304
-
5305
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:379
5306
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:197
5307
- msgid "Philippine Pesos"
5308
- msgstr "Филипинско Песо"
5309
-
5310
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:380
5311
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:198
5312
- msgid "Taiwan New Dollars"
5313
- msgstr "Тайвански Нов Долар"
5314
-
5315
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:381
5316
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:199
5317
- msgid "Thai Baht"
5318
- msgstr "Тайландски Бат"
5319
-
5320
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:382
5321
- msgid "Turkish Lira (only for Turkish members)"
5322
- msgstr "Турска Лира (само за турски потребители)"
5323
-
5324
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:391
5325
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:395
5326
- msgid "Payment Button type"
5327
- msgstr "Тип на бутана за плащане"
5328
-
5329
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:422
5330
- msgid "Custom button title"
5331
- msgstr "Персонализирано заглавие на бутона"
5332
-
5333
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:474
5334
- msgid "This field support only up to 70 characters by payment system."
5335
- msgstr "Платежната система поддържа максимум до 70 символа за това поле."
5336
-
5337
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:481
5338
- msgid " Use these shortcodes for customization: "
5339
- msgstr " Използвайте тези shortcodes за персонализация:"
5340
-
5341
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:497
5342
- msgid "Show Reference Text Box"
5343
- msgstr "Покажи референтен текстов прозорец"
5344
-
5345
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:504
5346
- msgid "Check this box to show Reference Text Box"
5347
- msgstr "Изберете този бокс за да покажете референтен текстов прозорец"
5348
-
5349
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:514
5350
- msgid "Reference Text Box Title"
5351
- msgstr "Референтен текстов прозорец"
5352
-
5353
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:519
5354
- msgid ""
5355
- "Enter a title for the Reference text box (i.e. Your email address). Visitors will see this text."
5356
- msgstr ""
5357
- "Въведете заглавието на референтния текстов прозорец (например вашия email адрес). Потребителите "
5358
- "ще виждат този текст."
5359
-
5360
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:532
5361
- #, php-format
5362
- msgid "To use this feature you %smust activate auto-return link%s at your Paypal account."
5363
- msgstr ""
5364
- "За да използвате тази възможност трябва да активирате %smust activate auto-return link%s във "
5365
- "вашия Paypal account."
5366
-
5367
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:533
5368
- msgid "Follow these steps to configure it:"
5369
- msgstr "Следвайте следвщите стъпки за да го конфигурирате:"
5370
-
5371
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:535
5372
- msgid "Log in to your PayPal account."
5373
- msgstr "Влезте във вашия PayPal акаунт."
5374
-
5375
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:536
5376
- msgid "Click the Profile subtab."
5377
- msgstr "Натиснете Profile subtab."
5378
-
5379
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:537
5380
- msgid "Click Website Payment Preferences in the Seller Preferences column."
5381
- msgstr "Натиснете Website Payment Preferences в колоната Seller Preferences."
5382
-
5383
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:538
5384
- msgid "Under Auto Return for Website Payments, click the On radio button."
5385
- msgstr "Под бутон Автоматично Връщане за Плащания в сайта, натиснете радио бутона"
5386
-
5387
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:539
5388
- msgid "For the Return URL, enter the Return URL from PayPal on your site for successfull payment."
5389
- msgstr "За да се връщане на URL адрес, напишете адреса от PayPal във вашия сайт за успешно плащане"
5390
-
5391
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:547
5392
- msgid "Return URL from PayPal"
5393
- msgstr "URL за връщане от PayPal"
5394
-
5395
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:554
5396
- msgid "The URL where visitor will be redirected after completing payment."
5397
- msgstr "URL където потребителя ще бъде пренасочен след като извърши плащането."
5398
-
5399
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:555
5400
- #, php-format
5401
- msgid "For example, a URL to your site that displays a %s\"Thank you for the payment\"%s."
5402
- msgstr "Примерно, URL към вашия сайт, където се показва %s\"Благодарим Ви за плащането\"%s."
5403
-
5404
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:562
5405
- msgid "Cancel Return URL from PayPal"
5406
- msgstr "Адрес на страницата, към която ще се премине при отказ от плащане в PayPal"
5407
-
5408
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:569
5409
- msgid "The URL where the visitor will be redirected after completing payment."
5410
- msgstr "Адрес на страницата (URL), където клиентът ще бъде пренасочен след плащане."
5411
-
5412
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:570
5413
- #, php-format
5414
- msgid "For example, the URL to your website that displays a %s\"Payment Canceled\"%s page."
5415
- msgstr "Примерно, страницата от вашия сайт показва %s\"Плащането е отказано\"%s page."
5416
-
5417
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:583
5418
- msgid ""
5419
- "Check this box to automatically approve bookings, when visitor makes a successful payment, or "
5420
- "automatically cancel the booking, when visitor makes a payment cancellation."
5421
- msgstr ""
5422
- "Маркирайте тази отметка за автоматично одобряване на резервации, когато посетителят е направил "
5423
- "успешно плащане или автоматично да се анулира резервацията, когато посетителят е отказал "
5424
- "плащането."
5425
-
5426
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:859
5427
- msgid "Make payments with payPal - its fast, free and secure!"
5428
- msgstr "Платете с payPal - бързо, безплатно и сигурно!"
5429
-
5430
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:981
5431
- msgid "Enter your phone number"
5432
- msgstr "Въведете телефонния си номер"
5433
-
5434
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:33
5435
- msgid "Integration of Sage payment system"
5436
- msgstr "Интеграция с платежна система Sage"
5437
-
5438
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:34
5439
- msgid "Sage"
5440
- msgstr "Sage"
5441
-
5442
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:97
5443
- msgid "Sage payment customization"
5444
- msgstr "Персонализиране на Sage плащане"
5445
-
5446
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:99
5447
- #, php-format
5448
- msgid "If you have no account on this system, please visit %s to create one."
5449
- msgstr "Ако нямате регистрация в тази система, моля, посетете %s за да се регистрирате."
5450
-
5451
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:106
5452
- msgid "Active Sage Pay"
5453
- msgstr "Активиране на плащане с Sage"
5454
-
5455
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:113
5456
- msgid " Check this box to use Sage Pay payment."
5457
- msgstr "Маркирайте тази отметка, за да използвате Sage плащане."
5458
-
5459
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:122
5460
- msgid "Vendor Name"
5461
- msgstr "Име на търговеца"
5462
-
5463
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:126
5464
- msgid "Set this value to the Vendor Name assigned to you by Sage Pay or chosen when you applied."
5465
- msgstr ""
5466
- "В тази стойност задайте име на на продавача, които са зададени от Sage Pay или избрано от вас."
5467
-
5468
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:133
5469
- msgid "XOR Encryption password"
5470
- msgstr "XOR Криптираща парола"
5471
-
5472
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:137
5473
- msgid "Set this value to the XOR Encryption password assigned to you by Sage Pay"
5474
- msgstr "Стойността на XOR Криптиращата парола предоставена ви от Sage Pay"
5475
-
5476
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:153
5477
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:136
5478
- msgid "TEST"
5479
- msgstr "Тест"
5480
-
5481
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:154
5482
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:137
5483
- msgid "LIVE"
5484
- msgstr "В реалната среда (на живо)"
5485
-
5486
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:156
5487
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:139
5488
- msgid "Select TEST for the Test Server and LIVE in the live environment"
5489
- msgstr "Изберете TEST (ТЕСТ) за тестовия сървър и LIVE (НА ЖИВО) за реална среда"
5490
-
5491
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:165
5492
- msgid "PAYMENT"
5493
- msgstr "ПЛАЩАНЕ"
5494
-
5495
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:166
5496
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:149
5497
- msgid "DEFERRED"
5498
- msgstr "ОТСРОЧЕНО"
5499
-
5500
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:167
5501
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:150
5502
- msgid "AUTHENTICATE"
5503
- msgstr "АВТРИЗИРАНО"
5504
-
5505
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:169
5506
- msgid "This can be DEFERRED or AUTHENTICATED if your Sage Pay account supports those payment types"
5507
- msgstr ""
5508
- "Това може да бъде ОТСРОЧЕНО (DEFERRED) или АВТОРИЗИРАНО (AUTHENTICATE) ако вашата регистрация в "
5509
- "Sage Pay поддържа тези видове плащане"
5510
-
5511
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:180
5512
- msgid "Yen"
5513
- msgstr "Йена"
5514
-
5515
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:193
5516
- msgid "Israeli Shekel"
5517
- msgstr "Израелски Шекел"
5518
-
5519
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:333
5520
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:295
5521
- msgid "ALL"
5522
- msgstr "Всички"
5523
-
5524
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:567
5525
- #, php-format
5526
- msgid "Pay using %s payment service"
5527
- msgstr "Платете с %s платежнa услугa"
5528
-
5529
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:24
5530
- msgid "Integration of Sermepa payment system"
5531
- msgstr "Интеграция с платежна система Sermepa"
5532
-
5533
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:25
5534
- msgid "Sermepa"
5535
- msgstr "Sermepa"
5536
-
5537
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:86
5538
- msgid "Sermepa payment customization"
5539
- msgstr "Персонализиране на Sermepa плащане"
5540
-
5541
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:88
5542
- #, php-format
5543
- msgid ""
5544
- "If you have no account on this system, please visit %s to create one. Simulator account emulates "
5545
- "the Sermepa Pay account as well as a Test and Live account."
5546
- msgstr ""
5547
- "Ако нямате регистрация в тази система, моля, посетете %s за да се регистрирате. Симулаторната "
5548
- "Sermepa Pay сметка ще ви позволи да направите реален тест за коректността на процеса."
5549
-
5550
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:92
5551
- msgid "Active Sermepa Pay"
5552
- msgstr "Активиране на плащане Sermepa Pay"
5553
-
5554
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:99
5555
- msgid " Check this box to use Sermepa Pay payment."
5556
- msgstr "Маркирайте, за да използвате плащане Sermepa Pay"
5557
-
5558
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:108
5559
- msgid "FUC"
5560
- msgstr "FUC"
5561
-
5562
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:112
5563
- msgid "Set this value to the FUC assigned to you by Sermepa Pay or chosen when you applied."
5564
- msgstr ""
5565
- "Задайте тази стойност на FUC предоставен ви от Sermepa Pay или изпран от ва, когато сте се "
5566
- "регистрирали"
5567
-
5568
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:119
5569
- msgid "Clave"
5570
- msgstr "Clave"
5571
-
5572
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:123
5573
- msgid "Set this value to the Clave assigned to you by Sermepa Pay"
5574
- msgstr "Задайте тази стойност на Clave предоставена ви от Sermepa Pay"
5575
-
5576
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:152
5577
- msgid ""
5578
- "This can be DEFERRED or AUTHENTICATED if your Sermepa Pay account supports those payment types"
5579
- msgstr ""
5580
- "Това може да бъде ОТСРОЧЕНО (DEFERRED) или АВТОРИЗИРАНО (AUTHENTICATE) ако вашата регистрация в "
5581
- "Sermepa Pay поддържа тези видове плащане"
5582
-
5583
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/wpbc-response.php:77
5584
- msgid "Payment rejected"
5585
- msgstr "Плащането е отхвърлено"
5586
-
5587
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:128
5588
- msgid "Form / Calendar"
5589
- msgstr "От / Календар"
5590
-
5591
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:130
5592
- msgid "Insertion of booking form or availability calendar shortcodes"
5593
- msgstr "Вмъкване на кодове във формата за резервации или календар за наличностите"
5594
-
5595
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:141
5596
- msgid "Selection of form"
5597
- msgstr "Избор на форма"
5598
-
5599
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:143
5600
- msgid "Insertion selection of booking form for specific booking resource"
5601
- msgstr "Вмъкване на избор на резервационна форма за специфичен ресурс"
5602
-
5603
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:156
5604
- msgid "Insertion search form shortcode"
5605
- msgstr "Вмъкване на код във формата за търсене"
5606
-
5607
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:181
5608
- msgid "Editing of booking"
5609
- msgstr "Редакция на резервацията"
5610
-
5611
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:183
5612
- msgid "Insertion system shortcode for booking editing"
5613
- msgstr "Вмъкване на системен код за редакциа на резервацията"
5614
-
5615
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:202
5616
- #, php-format
5617
- msgid ""
5618
- "Please, read more about the shortcodes %shere%s or JavaScript customization of the specific "
5619
- "shortcodes %shere%s"
5620
- msgstr ""
5621
- "Моля, прочетете повече за кратките кодове %sтук%s или за сепцифичните JavaScript кодове %sТук%s"
5622
-
5623
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:212
5624
- #, php-format
5625
- msgid "You can use shortcode %s for showing title of booking resource "
5626
- msgstr "Можете да използвате код%s за показване на заглавието на резервационния ресурс"
5627
-
5628
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:215
5629
- #, php-format
5630
- msgid "or cost of booking resource %s"
5631
- msgstr "или цена на ресурса %s"
5632
-
5633
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:225
5634
- #, php-format
5635
- msgid ""
5636
- "This shortcode %s is used on a page, where visitors can %smodify%s their own booking(s), %scancel"
5637
- "%s or make %spayment%s after receiving an admin email payment request"
5638
- msgstr ""
5639
- "Този код %s се използва на страницата, където потребителите могат да %sмодифицират%s, %sотказват"
5640
- "%s или да направят %sплащане%s след получаване на имейл за искане за плащане"
5641
-
5642
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:226
5643
- #, php-format
5644
- msgid ""
5645
- "The content of field %sURL to edit bookings%s on the %sgeneral booking settings page%s must link "
5646
- "to this page"
5647
- msgstr ""
5648
- "Съдържанието на полето %sURL за радеакция за резервацията%s на %sосновната страница за настройки"
5649
- "%s трябва да се свърже с тази страница"
5650
-
5651
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:227
5652
- #, php-format
5653
- msgid "Email templates, which use shortcodes: %s, will be linked to this page"
5654
- msgstr "Имейл шаблони, които използват кодове: %s, ще бъдат свързани с тази страница"
5655
-
5656
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:246
5657
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:248
5658
- msgid "Select shortcode to insert"
5659
- msgstr "Изберете код за вмъкване"
5660
-
5661
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:253
5662
- msgid "Search form"
5663
- msgstr "Форма за ътрсене"
5664
-
5665
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:268
5666
- #, php-format
5667
- msgid ""
5668
- "This shortcode %s is using for showing the search results at specific page, if the search form "
5669
- "is submit showing the search results at different page"
5670
- msgstr ""
5671
- "Това код %s използва за показване на резултатите от търсенето на определена страница, ако "
5672
- "формата за търсене показва резултатите от търсенето на друга страница"
5673
-
5674
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:278
5675
- msgid "Check this box to show search results on other page"
5676
- msgstr "Маркирайте тази отметка, за да се покажат резултатите от търсенето на друга страница"
5677
-
5678
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:284
5679
- msgid "URL of search results:"
5680
- msgstr "URL на резултатите от търсенето"
5681
-
5682
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:286
5683
- msgid "Type the URL of search results page."
5684
- msgstr "Въведете URL на страницата с резултатите от търсенето"
5685
-
5686
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:292
5687
- msgid "Title of Search results:"
5688
- msgstr "Заглавие на Резултатите от търсенето"
5689
-
5690
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:294
5691
- msgid "Search results:"
5692
- msgstr "Резултатите от търсенето:"
5693
-
5694
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:295
5695
- msgid "Type the title of Search results."
5696
- msgstr "Заглавие на Резултатите от търсенето"
5697
-
5698
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:301
5699
- msgid "Nothing Found Message:"
5700
- msgstr "Съобщение, че нищо не е намерено:"
5701
-
5702
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:303
5703
- msgid "Nothing Found."
5704
- msgstr "Нищо не е намерено"
5705
-
5706
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:304
5707
- msgid "Type the message, when nothing found."
5708
- msgstr "Въведете текст за съобщение, когато нищо не е намерено:"
5709
-
5710
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:311
5711
- msgid "Search only for users:"
5712
- msgstr "Търсене само за потребители:"
5713
-
5714
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:313
5715
- msgid ""
5716
- "Type IDs of the users (separated by comma \",\") for searching availability only for these "
5717
- "users, or leave it blank for searching for all users."
5718
- msgstr ""
5719
- "Въведете ID-та на потребители (разделени със запетая \",\") за предоставяне на възможност за "
5720
- "трърсене или оставете празно за всички потребители"
5721
-
5722
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:348
5723
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-booking-select-widget.php:156
5724
- msgid ""
5725
- "Select booking resources, for showing in selectbox. Please use CTRL to select multiple booking "
5726
- "resources."
5727
- msgstr ""
5728
- "Изберете ресурси, за показване в поле за избор (selectbox). Моля, използвайте CTRL за да "
5729
- "изберете повече ресурси."
5730
-
5731
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:354
5732
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-booking-select-widget.php:162
5733
- msgid "Preselected resource"
5734
- msgstr "Предварително избран ресурс"
5735
-
5736
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:356
5737
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-booking-select-widget.php:169
5738
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:516
5739
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:929
5740
- msgid "None"
5741
- msgstr "Нищо"
5742
-
5743
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:363
5744
- msgid "Define preselected resource."
5745
- msgstr "Определете предварително избран ресурс"
5746
-
5747
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:371
5748
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:393
5749
- msgid "Visible months:"
5750
- msgstr "Видими месеци:"
5751
-
5752
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:386
5753
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:408
5754
- msgid "Select number of month to show for calendar."
5755
- msgstr "Изберете номер на месец , който ще се покаже на календара"
5756
-
5757
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:395
5758
- msgid "Please select the resource:"
5759
- msgstr "Моля, изберете ресурс:"
5760
-
5761
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:396
5762
- msgid "Title near your select box."
5763
- msgstr "Заглавие до полето за избор:"
5764
-
5765
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:402
5766
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-booking-select-widget.php:228
5767
- msgid "First option title"
5768
- msgstr "Заглавие на първата опция"
5769
-
5770
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:403
5771
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:848
5772
- msgid "Please Select"
5773
- msgstr "Моля изберете"
5774
-
5775
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:404
5776
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-booking-select-widget.php:235
5777
- msgid "First option in dropdown list."
5778
- msgstr "Първа опция от списъка"
5779
-
5780
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:405
5781
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-booking-select-widget.php:237
5782
- msgid "Please leave it empty if you want to skip it."
5783
- msgstr "Моля, оставете празно, ако искате да го пропуснете."
5784
-
5785
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:412
5786
- #, php-format
5787
- msgid ""
5788
- "This shortcode %s is using for selection of the booking form of specific booking resources in "
5789
- "selectbox"
5790
- msgstr ""
5791
- "Това код %s се използва за избор на формата за резервация на конкретни ресурси в поле за избор "
5792
- "(selectbox)"
5793
-
5794
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:498
5795
- msgid "Saved"
5796
- msgstr "Записано"
5797
-
5798
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:580
5799
- msgid "This booking resources does not exist"
5800
- msgstr "Този ресурс не съществува"
5801
-
5802
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:599
5803
- msgid "Processing..."
5804
- msgstr "Обработва се..."
5805
-
5806
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:626
5807
- msgid "Generating columns..."
5808
- msgstr "Генерират се колони..."
5809
-
5810
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:657
5811
- msgid "Exporting booking data..."
5812
- msgstr "Експортират се резервационни данни.."
5813
-
5814
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:696
5815
- msgid "Generating content of file"
5816
- msgstr "Генерира се файл"
5817
-
5818
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:738
5819
- msgid "Saving to file"
5820
- msgstr "Файлът се записва"
5821
-
5822
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:755
5823
- msgid "Export bookings"
5824
- msgstr "Експорт на резервации"
5825
-
5826
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:758
5827
- msgid "Download the CSV file of exported booking data"
5828
- msgstr "Изтегляне на CSV файл с експортирани данни за резервации"
5829
-
5830
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:766
5831
- msgid "Download"
5832
- msgstr "Изтегляне"
5833
-
5834
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:776
5835
- msgid "Done!"
5836
- msgstr "Готово!"
5837
-
5838
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1022
5839
- msgid "link"
5840
- msgstr "връзка"
5841
-
5842
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1143
5843
- msgid "Print bookings"
5844
- msgstr "Печат на резервации "
5845
-
5846
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1164
5847
- msgid "The booking was canceled by the visitor."
5848
- msgstr "Резервацията е отказана от госта"
5849
-
5850
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1178
5851
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1189
5852
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1668
5853
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1715
5854
- msgid "Wrong booking hash in URL (probably expired)"
5855
- msgstr "Грешен резервационен хеш в URL (най-вероятно изтекъл)"
5856
-
5857
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1217
5858
- msgid "The booking has been canceled successfully"
5859
- msgstr "Резервацията е отказана успешно"
5860
-
5861
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1356
5862
- msgid "Add New Booking Resource(s)"
5863
- msgstr "Добавяне на нови ресурси"
5864
-
5865
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1361
5866
- msgid "New Resource"
5867
- msgstr "Нов ресурс"
5868
-
5869
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1365
5870
- msgid "Enter title here"
5871
- msgstr "Въведете заглавие"
5872
-
5873
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1367
5874
- msgid "Enter name of booking resource"
5875
- msgstr "Име на ресурс"
5876
-
5877
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1376
5878
- msgid "Advanced Options"
5879
- msgstr "Разширени опции"
5880
-
5881
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1377
5882
- msgid "Add new resource(s)"
5883
- msgstr "Добавяне на нов ресурс(и)"
5884
-
5885
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1493
5886
- msgid "Default booking resource"
5887
- msgstr "Ресурс по подразбиране"
5888
-
5889
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1509
5890
- msgid "Select your default booking resource."
5891
- msgstr "Изберете ресурс по подразбиране"
5892
-
5893
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1513
5894
- msgid "Resources number per page"
5895
- msgstr "Брой ресурси на страница"
5896
-
5897
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1522
5898
- msgid "Select number of booking resources (single or parent) per page at Resource menu page"
5899
- msgstr ""
5900
- "Изберете брой резервационни ресурси (единични или родителски) на страница в страницата Меню с "
5901
- "ресурси"
5902
-
5903
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1536
5904
- msgid "URL to edit bookings"
5905
- msgstr "URL, за да редактирате резервациите"
5906
-
5907
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1538
5908
- #, php-format
5909
- msgid "Type URL for %svisitors%s to edit bookings. You must insert %s shortcode into this page."
5910
- msgstr ""
5911
- "Въведи URL за%svisitors%s, за да редактирате резервациите. Трябва да въведете%s shortcode в тази "
5912
- "страница."
5913
-
5914
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1556
5915
- msgid "Change hash after the booking is approved"
5916
- msgstr "Променете хеша след като резервацията е одобрена"
5917
-
5918
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1562
5919
- msgid ""
5920
- "Check this box if you want to change the booking hash after approval. When checked, visitor will "
5921
- "not be able to edit or cancel the booking."
5922
- msgstr ""
5923
- "Маркирайте тази отметка, ако искате да промените хеша за тази резервация след одобрение. Когато "
5924
- "е избрано, посетителите няма да могат да редактират или да отменят резервацията."
5925
-
5926
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1574
5927
- msgid "Configuration in several languages"
5928
- msgstr "Конфигурация на няколко езика"
5929
-
5930
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1575
5931
- #, php-format
5932
- msgid "%s - start new translation section, where %s - locale of translation"
5933
- msgstr "%s - започнете нова секция с превод, където%s - място на превода"
5934
-
5935
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1576
5936
- #, php-format
5937
- msgid "Example #1: %s - start French translation section"
5938
- msgstr "Пример # 1:%s - започнете раздел Френски превод"
5939
-
5940
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1577
5941
- #, php-format
5942
- msgid "Example #2: \"%s\" - English and French translation of some message"
5943
- msgstr "Example #2: \"%s\" - Английски и френски превод на едно и също съобщение"
5944
-
5945
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1593
5946
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2362
5947
- msgid "Customization of email template, which is sending to Admin after new booking"
5948
- msgstr ""
5949
- "Персонализиране на шаблона за email, който се изпраща на администратора след нова резервация"
5950
-
5951
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1594
5952
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2363
5953
- msgid "New for Admin"
5954
- msgstr "Ново за администратора"
5955
-
5956
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1602
5957
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2371
5958
- msgid "Customization of email template, which is sending to Visitor after new booking"
5959
- msgstr "Персонализиране на шаблона за email, който се изпраща на посетителя след нова резервация"
5960
-
5961
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1603
5962
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2372
5963
- msgid "New for Visitor"
5964
- msgstr "Ново за посетителя"
5965
-
5966
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1611
5967
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2380
5968
- msgid "Customization of email template, which is sending to Visitor after approval of booking"
5969
- msgstr ""
5970
- "Персонализиране на шаблона за email, който се изпраща на посетителя след одобрение на резервация"
5971
-
5972
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1620
5973
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2389
5974
- msgid "Customization of email template, which is sending to Visitor after Cancellation of booking"
5975
- msgstr ""
5976
- "Персонализиране на шаблона за email, който се изпраща на посетителя след отказ на резервация"
5977
-
5978
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1621
5979
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2390
5980
- msgid "Declined"
5981
- msgstr "Отхвърлено"
5982
-
5983
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1629
5984
- msgid "Customization of email template, which is sending after modification of booking"
5985
- msgstr "Персонализиране на шаблона за email, който се изпраща при редактиране на резервация"
5986
-
5987
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1630
5988
- msgid "Modified"
5989
- msgstr "Редактирано"
5990
-
5991
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1639
5992
- msgid "Customization of email template, which is sending to Visitor after payment request"
5993
- msgstr "Персонализиране на шаблона за email, който се изпраща на посетителя след искане за плащане"
5994
-
5995
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1640
5996
- msgid "Payment request"
5997
- msgstr "Искане за плащане"
5998
-
5999
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1694
6000
- msgid "Standard Form Template"
6001
- msgstr "Стандартен шаблон за форма"
6002
-
6003
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1695
6004
- msgid "2 Columns Form Template"
6005
- msgstr "Двуколонен шаблон за форма"
6006
-
6007
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1696
6008
- msgid "Wizard Form Template(several steps)"
6009
- msgstr "Съветник за шаблон за форма (в няколко стъпки)"
6010
-
6011
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1698
6012
- msgid "Payment Form Template"
6013
- msgstr "Шаблон на форма за плащане"
6014
-
6015
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1699
6016
- msgid "Time Slots Form Template"
6017
- msgstr "Шаблон за форма с времеви интервали"
6018
-
6019
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1701
6020
- msgid "Time slots for different weekends Form Template"
6021
- msgstr "Шаблон за форма с различни времеви интервали за различните дни от седмицата"
6022
-
6023
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1702
6024
- msgid "Hints Form Template"
6025
- msgstr "Шаблон за форма с подсказки"
6026
-
6027
- # трябва да се провери в контекста
6028
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1715
6029
- msgid "Reset Booking Form and Content of Booking Fields Form"
6030
- msgstr "Нулирай Резервационната форма и съдържанието за шаблона с формата за полета"
6031
-
6032
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1719
6033
- msgid "Both"
6034
- msgstr "Двете"
6035
-
6036
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1731
6037
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4002
6038
- msgid "Please configure the form for content of booking fields data!"
6039
- msgstr "Моля конфигурирайте формата със съдържанието за резервационните полета!"
6040
-
6041
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1739
6042
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4010
6043
- msgid "Please configure the form fields!"
6044
- msgstr "Моля конфигурирайте полетата във формата!"
6045
-
6046
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1772
6047
- msgid "Default title of bookings"
6048
- msgstr "Заглавие по подразбиране за резервациите"
6049
-
6050
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1774
6051
- #, php-format
6052
- msgid ""
6053
- "Type %sdefault title of bookings%s in calendar view mode at Booking Listing page (You can use "
6054
- "the shortcodes from the bottom form of Settings Fields page)."
6055
- msgstr ""
6056
- "Въведете %sdefault title of bookings%s в изгледа с календар в страницата със списъка с "
6057
- "резервациите (може да използвате shortcodes от края на формата с настройките на полетата)."
6058
-
6059
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1791
6060
- msgid "CSV data separator"
6061
- msgstr "Сепаратор за CSV данните"
6062
-
6063
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1796
6064
- msgid "semicolon"
6065
- msgstr "точка и запетая"
6066
-
6067
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1797
6068
- msgid "comma"
6069
- msgstr "запетая"
6070
-
6071
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1803
6072
- msgid "Select separator of data for export bookings to CSV."
6073
- msgstr "Изберете сепаратор за данните при експорт на резервациите в CSV."
6074
-
6075
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1816
6076
- msgid "Incorrect date format"
6077
- msgstr "Некоректен формат за данни"
6078
-
6079
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:2072
6080
- msgid "Booking Resource"
6081
- msgstr "Резервационен ресурс"
6082
-
6083
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:2082
6084
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1532
6085
- msgid "All bookings"
6086
- msgstr "Всички резервации"
6087
-
6088
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:2086
6089
- msgid "All incoming bookings"
6090
- msgstr "Всички входящи резервации"
6091
-
6092
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:2091
6093
- msgid "New reservations made today"
6094
- msgstr "Нови резервации направени днес"
6095
-
6096
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:2096
6097
- msgid "Reservations for today"
6098
- msgstr "Резервации за днес"
6099
-
6100
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:2118
6101
- msgid "Add new booking resource"
6102
- msgstr "Добави нов резервационен ресурс"
6103
-
6104
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:2921
6105
- msgid "Change your Booking"
6106
- msgstr "Променете своята резервация"
6107
-
6108
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:2923
6109
- msgid "Cancel Booking"
6110
- msgstr "Откажете резервация"
6111
-
6112
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3151
6113
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3199
6114
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-booking-new.php:148
6115
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-booking-new.php:150
6116
- msgid "Updated successfully"
6117
- msgstr "Успешна актуализация"
6118
-
6119
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3165
6120
- msgid "Warning! The resource was not changed. Current dates are already booked there."
6121
- msgstr "Внимание! Ресурсът не е променен. Настоящите дати вече са резервирани."
6122
-
6123
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3434
6124
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1932
6125
- msgid "Email to \"Admin\" after a new booking"
6126
- msgstr "Email до \"администратора\" след нова резервация"
6127
-
6128
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3456
6129
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1954
6130
- #, php-format
6131
- msgid "Type default %sadmin email%s for booking confirmation"
6132
- msgstr "Въведете %sadmin email%s по подразбиране за потвърждаване на резервация"
6133
-
6134
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3463
6135
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1961
6136
- #, php-format
6137
- msgid ""
6138
- "Type the default %sadmin email%s sending the booking confimation. You can use this %s shortcode."
6139
- msgstr ""
6140
- "Въведете %sadmin email%s по подразбиране изпращано при потвърждение на резервация. Може да "
6141
- "използвате %s shortcode."
6142
-
6143
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3470
6144
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1968
6145
- #, php-format
6146
- msgid "Type your email %ssubject%s for the booking confimation message."
6147
- msgstr "Въведете вашия email %ssubject%s за съобщението за потвърждаване на резервация."
6148
-
6149
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3491
6150
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1988
6151
- #, php-format
6152
- msgid "Type your %semail message content for checking booking%s in. "
6153
- msgstr "Въведете вашия %semail message content for checking booking%s. "
6154
-
6155
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3500
6156
- #, php-format
6157
- msgid ""
6158
- "For example: \"You have a new reservation %s on the following date(s): %s Contact information: "
6159
- "%s You can approve or edit this booking at: %s Thank you, Reservation service.\""
6160
- msgstr ""
6161
- "Например: \"Имате нова резервация %s за следните дата(и): %s Contact information: %s Може да "
6162
- "одобрите или да редактирате резервацията : %s Благодарим.\""
6163
-
6164
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3500
6165
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3573
6166
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3658
6167
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3837
6168
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:862
6169
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-functions.php:1589
6170
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1997
6171
- msgid "here"
6172
- msgstr "тук"
6173
-
6174
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3515
6175
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2012
6176
- msgid "Email to \"Person\" after they make a new reservation"
6177
- msgstr "Email до \"Човек\" след като е направил нова резервация"
6178
-
6179
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3545
6180
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2042
6181
- #, php-format
6182
- msgid "Type email subject for %svisitor after creating a new reservation%s."
6183
- msgstr "Въведете полето Относно за email за %svisitor after creating a new reservation%s."
6184
-
6185
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3546
6186
- #, php-format
6187
- msgid "Use these %s shortcodes."
6188
- msgstr "Използвайте тези %s shortcodes."
6189
-
6190
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3567
6191
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2063
6192
- #, php-format
6193
- msgid "Type your %semail message for visitor after creating a new reservation%s"
6194
- msgstr "Въведете вашия %semail message for visitor after creating a new reservation%s"
6195
-
6196
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3573
6197
- #, php-format
6198
- msgid ""
6199
- "For example: \"Your reservation %s on these date(s): %s is processing now! We will send "
6200
- "confirmation by email. %s You can edit the booking at this page: %s Thank you, Reservation "
6201
- "service.\""
6202
- msgstr ""
6203
- "Например: \"Имате резервация %s за тези дата(и): %s която се обработва в момента! Ще Ви изпратим "
6204
- "потвърждение по email. %s Може да редактирате резервацията на тази страница: %s Благодарим.\""
6205
-
6206
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3587
6207
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2085
6208
- msgid "Email to \"Person\" after booking is approved"
6209
- msgstr "Email до \"Човек\" след одобряване на резервация"
6210
-
6211
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3630
6212
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2128
6213
- #, php-format
6214
- msgid "Type your email subject for the %sapproved booking%s."
6215
- msgstr "Въведете полето Относно за email за %sapproved booking%s."
6216
-
6217
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3650
6218
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2148
6219
- #, php-format
6220
- msgid "Type your %semail message for the approved booking%s from the website"
6221
- msgstr "Въведете вашия %semail message for the approved booking%s от уебсайта"
6222
-
6223
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3658
6224
- #, php-format
6225
- msgid ""
6226
- "For example: \"Your reservation %s on these date(s): %s has been approved.%s You can edit this "
6227
- "booking on this page: %s . Thank you, Reservation service.\""
6228
- msgstr ""
6229
- "Например: \"Вашата резервация %s за тази дата(и): %s has been approved.%s Може да редактирате "
6230
- "резервациятя на тази страница: %s . Благодарим.\""
6231
-
6232
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3672
6233
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2172
6234
- msgid "Email to \"Person\" after their booking has been denied"
6235
- msgstr "Email до \"Човек\" след отказване на резервация"
6236
-
6237
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3717
6238
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2217
6239
- #, php-format
6240
- msgid "Type your email subject for the %sdenied booking%s."
6241
- msgstr "Въведете полето Относно за email за %sdenied booking%s."
6242
-
6243
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3737
6244
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2237
6245
- #, php-format
6246
- msgid "Type your %semail message for the denied booking%s from the website"
6247
- msgstr "Въведете вашия %semail message for the denied booking%s от уебсайта"
6248
-
6249
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3746
6250
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2247
6251
- #, php-format
6252
- msgid ""
6253
- "For example: \"Your reservation %s on these date(s): %s has been canceled. Please contact us for "
6254
- "more information. %s Thank you, Reservation service.\""
6255
- msgstr ""
6256
- "Например: \"Вашата резервация %s за тази дата(и): %s е отказана Моля свържете се с нас за повече "
6257
- "информация.%s Благодарим.\""
6258
-
6259
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3762
6260
- msgid "Email to \"Person\" after booking is modified"
6261
- msgstr "Email до \"Човек\" след редактиране на резервация"
6262
-
6263
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3807
6264
- #, php-format
6265
- msgid "Type your email subject for the %smodified booking%s. "
6266
- msgstr "Въведете полето Относно за email за %smodified booking%s. "
6267
-
6268
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3827
6269
- #, php-format
6270
- msgid "Type your %semail message for the modified booking%s from the website"
6271
- msgstr "Въведете вашия %semail message for the modified booking%s от уебсайта"
6272
-
6273
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3837
6274
- #, php-format
6275
- msgid ""
6276
- "For example: \"The reservation %s on these date(s): %s has been modified. %s You can edit this "
6277
- "booking on this page: %s . Thank you, Reservation service.\""
6278
- msgstr ""
6279
- "Например: \"Вашата резервация %s за тази дата(и): %s е редактирана.%s Може да редактирате "
6280
- "резервациятя на тази страница: %s . Благодарим.\""
6281
-
6282
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3919
6283
- msgid "Form fields"
6284
- msgstr "Полета на формата"
6285
-
6286
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3961
6287
- #, php-format
6288
- msgid "Content of booking fields data for email templates (%s-shortcode) and booking listing page"
6289
- msgstr ""
6290
- "Съдържание на полетата с резервацията за email шаблона (%s-shortcode) и страницата със списъка с "
6291
- "резервации"
6292
-
6293
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3983
6294
- #, php-format
6295
- msgid "%s - inserting data from fields of booking form"
6296
- msgstr "%s - въвеждане на данните от полетата от резервационната форма"
6297
-
6298
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3984
6299
- #, php-format
6300
- msgid "%s - inserting new line"
6301
- msgstr "%s - Добавете нова линия"
6302
-
6303
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3985
6304
- msgid "Use any other HTML tags (carefully)."
6305
- msgstr "Използвайте всички други HTML тагове (внимателно)."
6306
-
6307
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4079
6308
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4090
6309
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4105
6310
- msgid "First Name"
6311
- msgstr "Име"
6312
-
6313
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4080
6314
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4091
6315
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4106
6316
- msgid "Last Name"
6317
- msgstr "Фамилия"
6318
-
6319
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4081
6320
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4092
6321
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4107
6322
- msgid "Email"
6323
- msgstr "Email"
6324
-
6325
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4089
6326
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4104
6327
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:220
6328
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:559
6329
- msgid "Times"
6330
- msgstr "Време"
6331
-
6332
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4109
6333
- msgid "Address"
6334
- msgstr "Адрес"
6335
-
6336
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4110
6337
- msgid "City"
6338
- msgstr "Град"
6339
-
6340
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4111
6341
- msgid "Post code"
6342
- msgstr "Пощенски код"
6343
-
6344
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4164
6345
- msgid "Please, reserve an apartment with fresh flowers."
6346
- msgstr "Моля резервирайте един апартамент със свежи цветя."
6347
-
6348
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4270
6349
- msgid "The reservation has been modified"
6350
- msgstr "Резервацията е променена"
6351
-
6352
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4271
6353
- #, php-format
6354
- msgid ""
6355
- "The reservation %s for: %s has been modified. %sYou can edit this booking on this page: %s "
6356
- "Thank you, %s"
6357
- msgstr ""
6358
- "Резервациата %s за: %s е редактирана. %sМоже да редактирате тази резервация на следната "
6359
- "страница: %s Благодарим, %s"
6360
-
6361
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4324
6362
- msgid "Sending request..."
6363
- msgstr "Изпращане на искане..."
6364
-
6365
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4351
6366
- msgid "Order number"
6367
- msgstr "Номер на поръчка"
6368
-
6369
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4354
6370
- msgid "Register"
6371
- msgstr "Регистрация"
6372
-
6373
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4356
6374
- msgid ""
6375
- "Please, enter order number of your purchased version, which you received to your billing email."
6376
- msgstr "Моля въведете номера на поръчката, която сте получили в email-а за плащане."
6377
-
6378
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4360
6379
- #, php-format
6380
- msgid "If you will get any difficulties or have a questions, please contact by email %s"
6381
- msgstr "Ако срещате някакви затруднения или имате въпроси свържете се с нас на email %s"
6382
-
6383
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/sync/wpbc-sync-gcal-api.php:41
6384
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:184
6385
- msgid "Google Calendar"
6386
- msgstr "Google календар"
6387
-
6388
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/sync/wpbc-sync-gcal-api.php:41
6389
- msgid "API"
6390
- msgstr "API"
6391
-
6392
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/sync/wpbc-sync-gcal-api.php:42
6393
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:185
6394
- msgid "Customization of synchronization with Google Calendar"
6395
- msgstr "Персонализиране на синхронизацията с Google календар"
6396
-
6397
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/sync/wpbc-sync-gcal-api.php:75
6398
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:716
6399
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1154
6400
- msgid "General Settings"
6401
- msgstr "Основни настройки"
6402
-
6403
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/sync/wpbc-sync-gcal-feed.php:60
6404
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/sync/wpbc-sync-gcal-feed.php:81
6405
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:391
6406
- msgid "Google Calendar ID"
6407
- msgstr "Google календар ID"
6408
-
6409
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/sync/wpbc-sync-gcal-feed.php:97
6410
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-booking-select-widget.php:134
6411
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-widget.php:101
6412
- msgid "Booking resource"
6413
- msgstr "Резервационен ресурс"
6414
-
6415
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/sync/wpbc-sync-gcal-feed.php:107
6416
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:381
6417
- msgid "Select booking resource"
6418
- msgstr "Изберете резервационен ресурс"
6419
-
6420
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-booking-select-widget.php:38
6421
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1893
6422
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-widget.php:26
6423
- msgid "You need to use special shortcode [bookingedit] for booking editing."
6424
- msgstr "Трябва да използвате специален код [bookingedit] за радакция на резервация."
6425
-
6426
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-booking-select-widget.php:182
6427
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-widget.php:118
6428
- msgid "Visible months"
6429
- msgstr "Видими месеци"
6430
-
6431
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-booking-select-widget.php:244
6432
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-widget.php:142
6433
- #, php-format
6434
- msgid ""
6435
- "%sImportant!!!%s Please note, if you show booking calendar (inserted into post/page) with widget "
6436
- "at the same page, then the last will not be visible."
6437
- msgstr ""
6438
- "%sВажно!!!%s Моля, обърнете внимание, ако се покаже календарът (поставен в пост/страница) с "
6439
- "джаджа на една и съща страница, последната няма да е видима"
6440
-
6441
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-check-updates.php:178
6442
- #, php-format
6443
- msgid ""
6444
- "There is a new version of %1$s available. <a href=\"%2$s\" target=\"_blank\" title=\"%3$s\">View "
6445
- "version %4$s details</a>. <em>Automatic update is unavailable for this plugin.</em>"
6446
- msgstr ""
6447
- "Има нова версия на %1$s . <a href=\"%2$s\" target=\"_blank\" title=\"%3$s\">Виж версията %4$s "
6448
- "details</a>. <em>Автоматичното обновяване не е налично за този plugin.</em>"
6449
-
6450
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-check-updates.php:184
6451
- #, php-format
6452
- msgid "You can request the new update of plugin on %1$sthis page%2$s."
6453
- msgstr "Може да поръчате ново обновление на този plugin на %1$sthis page%2$s."
6454
-
6455
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-check-updates.php:191
6456
- msgid "Upgrade Notice"
6457
- msgstr "Upgrade Notice"
6458
-
6459
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-check-updates.php:231
6460
- #, php-format
6461
- msgid "Version %s By %s"
6462
- msgstr "Version %s By %s"
6463
-
6464
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-check-updates.php:235
6465
- msgid "View details"
6466
- msgstr "Виж подробности"
6467
-
6468
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpdev-booking-search-widget.php:55
6469
- msgid "Search availability"
6470
- msgstr "Търси налични"
6471
-
6472
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpdev-booking-search-widget.php:63
6473
- msgid "Nothing found."
6474
- msgstr "Нищо не е намерено"
6475
-
6476
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpdev-booking-search-widget.php:67
6477
- msgid "Search results."
6478
- msgstr "Резултати от търсенето."
6479
-
6480
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpdev-booking-search-widget.php:73
6481
- msgid "Title of search widget"
6482
- msgstr "Заглавие на търсената джажджа"
6483
-
6484
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpdev-booking-search-widget.php:81
6485
- msgid "Title of search results"
6486
- msgstr "Заглавие на резултатите от търсенето"
6487
-
6488
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpdev-booking-search-widget.php:86
6489
- #, php-format
6490
- msgid "Please type the %sTitle of search results%s."
6491
- msgstr "Моля въведете %sTitle of search results%s."
6492
-
6493
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpdev-booking-search-widget.php:90
6494
- msgid "Nothing found message"
6495
- msgstr "Нищо не е намерено"
6496
-
6497
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpdev-booking-search-widget.php:95
6498
- #, php-format
6499
- msgid "Please type the %smessage ,what is showing, when nothing found%s."
6500
- msgstr "Моля въведете %smessage ,what is showing, when nothing found%s."
6501
-
6502
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpdev-booking-search-widget.php:99
6503
- msgid "URL of Search Results"
6504
- msgstr "URL на резултатите от търсенето"
6505
-
6506
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpdev-booking-search-widget.php:104
6507
- #, php-format
6508
- msgid ""
6509
- "Please type the URL of the page %s(with %s shortcode in content)%s, where search results will "
6510
- "show."
6511
- msgstr ""
6512
- "Моля въведете URL на страницата %s(with %s shortcode in content)%s, където резултатите от "
6513
- "търсенето ще се покажат."
6514
-
6515
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-ajax.php:30
6516
- #, php-format
6517
- msgid ""
6518
- "%sError!%s Request do not pass security check! Please refresh the page and try one more time."
6519
- msgstr ""
6520
- "%sError!%s Заявката не премина проверката за сигурност! Моля обнвете страницата и пробвайте "
6521
- "отново."
6522
-
6523
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-ajax.php:109
6524
- msgid "Set as Read"
6525
- msgstr "Отбележи като прочетено"
6526
-
6527
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-ajax.php:109
6528
- msgid "Set as Unread"
6529
- msgstr "Отбележи като непрочетено"
6530
-
6531
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-ajax.php:166
6532
- msgid "Set as Approved"
6533
- msgstr "Отбележи като одобрено"
6534
-
6535
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-ajax.php:166
6536
- msgid "Set as Pending"
6537
- msgstr "Отбележи като чакащо"
6538
-
6539
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-ajax.php:184
6540
- msgid "Reason for cancellation here"
6541
- msgstr "Причина за отказа"
6542
-
6543
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-ajax.php:185
6544
- msgid "Reason of cancellation here"
6545
- msgstr "Причина за отказа"
6546
-
6547
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-booking-new.php:37
6548
- msgid "The code you entered is incorrect"
6549
- msgstr "Кода който въведахте е невалиден"
6550
-
6551
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-booking-new.php:562
6552
- msgid "Error!"
6553
- msgstr "Грешка!"
6554
-
6555
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-booking-new.php:563
6556
- msgid ""
6557
- "Probably these date(s) just was booking by other visitor. Please reload this page and make "
6558
- "booking again."
6559
- msgstr ""
6560
- "Най-вероятно тези дати са били току що резервирани от друг посетител. Моля презаредете "
6561
- "страницата и направете отново нова резервация."
6562
-
6563
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-class-dismiss.php:80
6564
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-welcome.php:1355
6565
- msgid "Dismiss"
6566
- msgstr "Отхвърли"
6567
-
6568
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:293
6569
- msgid "Importing Feed"
6570
- msgstr "Импортиране на полета"
6571
-
6572
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:309
6573
- msgid "Data Parsing"
6574
- msgstr "Data Parsing"
6575
-
6576
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:416
6577
- msgid ""
6578
- "Some data was retrieved, but could not be parsed successfully. Please ensure your feed URL is "
6579
- "correct."
6580
- msgstr ""
6581
- "Получени са данни, но не могат да бъдат вкарани успешно. Моля проверете дали URL адреса на "
6582
- "хранилката е коректен."
6583
-
6584
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:422
6585
- msgid "The feed could not be found (404). Please ensure your feed URL is correct."
6586
- msgstr ""
6587
- "Хранилката не може да бъде намерена (404). Моля проверете дали URL адреса на хранилката е "
6588
- "коректен."
6589
-
6590
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:425
6591
- msgid ""
6592
- "Access to this feed was denied (403). Please ensure you have public sharing enabled for your "
6593
- "calendar."
6594
- msgstr ""
6595
- "Достъпа до хранилката е отказан (403). Моля проверете, че разполагате с разрешено публично "
6596
- "споделяне на вашия календар."
6597
-
6598
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:428
6599
- #, php-format
6600
- msgid ""
6601
- "The feed data could not be retrieved. Error code: %s. Please ensure your feed URL is correct."
6602
- msgstr ""
6603
- "Данните от хранилката не могат да бъдат изтеглени. Код на грешката: %s. Моля проверете дали URL "
6604
- "адреса на хранилката е коректен."
6605
-
6606
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:444
6607
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:102
6608
- msgid "Done"
6609
- msgstr "Готово"
6610
-
6611
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:580
6612
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:625
6613
- msgid "GID"
6614
- msgstr "GID"
6615
-
6616
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:604
6617
- msgid "Location:"
6618
- msgstr "Направление:"
6619
-
6620
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:632
6621
- msgid "Reload page"
6622
- msgstr "Презареди страницата"
6623
-
6624
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:636
6625
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1693
6626
- msgid "Do you really want to delete selected booking(s) ?"
6627
- msgstr "Наистина ли искате да изтриете избраните резервации?"
6628
-
6629
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:644
6630
- msgid "Delete selected booking(s)"
6631
- msgstr "Изтрий избраните резервации"
6632
-
6633
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:103
6634
- msgid "Imported 0 events."
6635
- msgstr "Импортирани са 0 събития."
6636
-
6637
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:170
6638
- msgid "Sync"
6639
- msgstr "Синхронизирай"
6640
-
6641
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:171
6642
- msgid "Synchronization Bookings Settings"
6643
- msgstr "Синхронизация на настройките на резервации"
6644
-
6645
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:184
6646
- msgid "Events Import"
6647
- msgstr "Импортиране на събития"
6648
-
6649
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:312
6650
- msgid "Assign events fields to specific booking form field"
6651
- msgstr "Асоциирай събития към поле от конкретна резервационна форма"
6652
-
6653
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:332
6654
- msgid "Auto import events"
6655
- msgstr "Автоматично импортиране на събития"
6656
-
6657
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:350
6658
- msgid "Google Calendar - General Settings"
6659
- msgstr "Google календар - Основни настройки"
6660
-
6661
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:377
6662
- msgid "Default settings for retrieving events"
6663
- msgstr "Настройки по подразбиране за получаване на събития"
6664
-
6665
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:421
6666
- msgid "Google Calendar - Help Info"
6667
- msgstr "Google календар - Помощна информация"
6668
-
6669
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:430
6670
- msgid "To get Google Calendar API key please follow this instruction"
6671
- msgstr "За да ключ за Google календар API, моля следвайте тези инструкции"
6672
-
6673
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:432
6674
- #, php-format
6675
- msgid "Go to Google Developer Console: %s."
6676
- msgstr "Отидете на конзолата Google Developer Console: %s."
6677
-
6678
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:433
6679
- msgid "Give your project a name and click \"Create\"."
6680
- msgstr "Задайте име на проекта и натиснете \"Създай\"."
6681
-
6682
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:434
6683
- msgid "In the sidebar click on \"APIs & auth\"."
6684
- msgstr "В страничната лента натиснете на \"APIs & auth\"."
6685
-
6686
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:435
6687
- msgid "Click APIs and make sure \"Calendar API\" is set to ON."
6688
- msgstr "Натиснете APIs и се уверете, че \"Calendar API\" е включено."
6689
-
6690
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:436
6691
- msgid "Now click on \"Credentials\" in the sidebar."
6692
- msgstr "Сега натиснете \"Акредитивни писма\" от страничната лента"
6693
-
6694
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:437
6695
- msgid "Under the section \"Public API access\" click the button \"Create new Key\"."
6696
- msgstr "Под секцията \"Публичен API достъп\" натиснете бутона \"Създай нов Ключ\"."
6697
-
6698
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:438
6699
- msgid "On the popup click the button \"Server Key\" and click \"Create\"."
6700
- msgstr "На прозореца, който ще се покаже натиснете \"Ключ за Сървъра\" и натиснете \"Създаване\"."
6701
-
6702
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:439
6703
- #, php-format
6704
- msgid ""
6705
- "You will now see a table loaded with the top item being the API Key. Copy this and paste it into "
6706
- "%sGoogle API Key%s field at this page."
6707
- msgstr ""
6708
- "Сега ще видите таблица със зареден най-горе API ключа. Копирайте този ключ и го поставете в "
6709
- "%sGoogle API Key%s полето от тази страница."
6710
-
6711
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:445
6712
- msgid "Set Your Calendar to Public"
6713
- msgstr "Направете вашия календар публичен"
6714
-
6715
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:447
6716
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:455
6717
- msgid "Navigate to your Google calendars."
6718
- msgstr "Отидете във вашите Google календари"
6719
-
6720
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:448
6721
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:456
6722
- msgid "Open the settings for the calendar."
6723
- msgstr "Отворете основните настройки на календара."
6724
-
6725
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:449
6726
- msgid "Click the \"Share this Calendar\" link."
6727
- msgstr "Натиснете връзката \"Сподели този календар\"."
6728
-
6729
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:450
6730
- msgid "Click the checkbox to make calendar public. Do not check the other option."
6731
- msgstr "Маркирайте, за да направите календара публичен. Не избирайте друга опция."
6732
-
6733
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:453
6734
- msgid "Find Your Calendar ID"
6735
- msgstr "Намерете ID-то на вашия календар"
6736
-
6737
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:457
6738
- #, php-format
6739
- msgid ""
6740
- "Now copy the Calendar ID to use in the plugin settings in your WordPress admin. Make sure to "
6741
- "%suse the Calendar ID only, not the entire XML feed URL%s."
6742
- msgstr ""
6743
- "Сега копирайте ID-то на календара, за да го използвате в настройките на хранилка в "
6744
- "административната секцията на WordPress . Уверете се, че %sизползвате само ID-то на календара, а "
6745
- "не целия XML %s."
6746
-
6747
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:557
6748
- #, php-format
6749
- msgid "Select field for assigning to %sevent property%s"
6750
- msgstr "Изберете поле което да се асоцеира с %sevent property%s"
6751
-
6752
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:567
6753
- msgid "Event Title"
6754
- msgstr "Заглавие на събитието"
6755
-
6756
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:568
6757
- msgid "Event Description (optional field)"
6758
- msgstr "Описание на събитието (опционално поле)"
6759
-
6760
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:569
6761
- msgid "Location"
6762
- msgstr "Местонахождение"
6763
-
6764
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:594
6765
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:658
6766
- msgid "Now"
6767
- msgstr "Сега"
6768
-
6769
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:595
6770
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:659
6771
- msgid "00:00 today"
6772
- msgstr "00:00 днес"
6773
-
6774
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:596
6775
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:660
6776
- msgid "Start of current week"
6777
- msgstr "Начало на текущата седмица"
6778
-
6779
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:597
6780
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:661
6781
- msgid "Start of current month"
6782
- msgstr "Начало на текущия месец"
6783
-
6784
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:598
6785
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:662
6786
- msgid "End of current month"
6787
- msgstr "Край на текущия месец"
6788
-
6789
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:599
6790
- msgid "The start of time"
6791
- msgstr "Начало на периода"
6792
-
6793
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:600
6794
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:664
6795
- msgid "Specific date / time"
6796
- msgstr "Конкретен ден/час"
6797
-
6798
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:607
6799
- msgid "Select option, when to start retrieving events."
6800
- msgstr "Изберете опция, кога да зопочне получаването на събития"
6801
-
6802
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:609
6803
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:673
6804
- msgid "Offset"
6805
- msgstr "Отместване"
6806
-
6807
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:609
6808
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:673
6809
- msgid "Enter date / time"
6810
- msgstr "Въведете дата/час"
6811
-
6812
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:615
6813
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:679
6814
- msgid "seconds"
6815
- msgstr "секунди"
6816
-
6817
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:616
6818
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:680
6819
- msgid "minutes"
6820
- msgstr "минути"
6821
-
6822
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:625
6823
- msgid ""
6824
- "You can specify an additional offset from you chosen start point. The offset can be negative."
6825
- msgstr ""
6826
- "Може да изберете специфично отместване на началната точка. Отместването може да е отрицателно."
6827
-
6828
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:628
6829
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:692
6830
- #, php-format
6831
- msgid "Type your date in format %s. Example: %s"
6832
- msgstr "Въведете вашата дата в следния формат %s. Пример: %s"
6833
-
6834
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:645
6835
- msgid "Until"
6836
- msgstr "Единици"
6837
-
6838
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:663
6839
- msgid "The end of time"
6840
- msgstr "Край на периода"
6841
-
6842
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:671
6843
- msgid "Select option, when to stop retrieving events."
6844
- msgstr "Изберете опция, кога да се прекрати полчаването на събития"
6845
-
6846
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:689
6847
- msgid "You can specify an additional offset from you chosen end point. The offset can be negative."
6848
- msgstr ""
6849
- "Може да изберете специфично отместване на крайната точка. Отместването може да е отрицателно."
6850
-
6851
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:705
6852
- msgid "Maximum number"
6853
- msgstr "Максимален брой"
6854
-
6855
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:708
6856
- msgid "You can specify the maximum number of events to import during one session."
6857
- msgstr "Може да зададете максималния брой събития, които да се получават в рамките на една сесия."
6858
-
6859
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:719
6860
- msgid "Google API Key"
6861
- msgstr "Ключ за Google API"
6862
-
6863
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:721
6864
- msgid "Please enter your Google API key. This field required to import events."
6865
- msgstr "Моля, въведене ключа за Google API. Това поле е задължително, за да се импортират събития."
6866
-
6867
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:723
6868
- #, php-format
6869
- msgid "You can check in this %sinstruction how to generate and use your Google API key%s."
6870
- msgstr "Можете да поглднете %sинструкцията как се генерира Google API ключ %s"
6871
-
6872
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:737
6873
- msgid "Timezone"
6874
- msgstr "Часова зона"
6875
-
6876
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:771
6877
- msgid "Select a city in your required timezone, if you are having problems with dates and times."
6878
- msgstr "Изберете град в желаната часова зона, ако имате проблем с датите и часа."
6879
-
6880
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:781
6881
- msgid "Activate auto import"
6882
- msgstr "Активирайте автоматичното импортиране"
6883
-
6884
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:787
6885
- #, php-format
6886
- msgid "Check this box to %sactivate%s auto import events and creation bookings from them"
6887
- msgstr ""
6888
- "Изберете този бокс за да %sactivate%s автоматичното импортиране на събития и създаването на "
6889
- "ерзервации за тях"
6890
-
6891
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:794
6892
- msgid "Import events every"
6893
- msgstr "Импортирай събития всеки "
6894
-
6895
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:812
6896
- msgid "Select time duration of import requests."
6897
- msgstr "Изберете продължителност на заявката за импортиране."
6898
-
6899
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:855
6900
- msgid "Retrieve Google Calendar Events "
6901
- msgstr "Получаване на събития от Google календар"
6902
-
6903
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:861
6904
- msgid "Please configure settings for import Google Calendar events"
6905
- msgstr "Моля конфигурирайте настройките за импортиране на събития от Google календар"
6906
-
6907
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:889
6908
- msgid "Configure"
6909
- msgstr "Конфигуриране"
6910
-
6911
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:899
6912
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:905
6913
- msgid "Import Google Calendar Events"
6914
- msgstr "Импортиране на събития от Google календар"
6915
-
6916
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:912
6917
- msgid "Import"
6918
- msgstr "Импортиране"
6919
-
6920
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-notices.php:26
6921
- #, php-format
6922
- msgid ""
6923
- "Probabaly you updated your paid version of Booking Calendar by free version or update process "
6924
- "failed. You can request the new update of your paid version at %1sthis page%2s."
6925
- msgstr ""
6926
- "Вероятно сте актуализирали своя платена версия на Booking Calendar от безплатната версия или "
6927
- "процеса на актуализация се епровалил. Можете да направите заявка за нова актуализация на вашата "
6928
- "платена версия на %1sthis page%2s."
6929
-
6930
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-scripts.php:56
6931
- msgid "This field is required"
6932
- msgstr "Полето е задължително"
6933
-
6934
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-scripts.php:57
6935
- msgid "This checkbox must be checked"
6936
- msgstr "Този чекбокс трябва да е избран"
6937
-
6938
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-scripts.php:58
6939
- msgid "At least one option must be selected"
6940
- msgstr "Поне една опция трябва да е избрана"
6941
-
6942
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-scripts.php:59
6943
- msgid "Incorrect email field"
6944
- msgstr "Некоректно поле email"
6945
-
6946
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-scripts.php:60
6947
- msgid "Your emails do not the same"
6948
- msgstr "Вашие emai-и не съвпадат"
6949
-
6950
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-scripts.php:61
6951
- msgid "Please, select booking date(s) at Calendar."
6952
- msgstr "Моля изберете дата(и) за резервация от календара."
6953
-
6954
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-welcome.php:744
6955
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-welcome.php:1193
6956
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:372
6957
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1305
6958
- msgid "Purchase"
6959
- msgstr "Поръчай"
6960
-
6961
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-welcome.php:744
6962
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-welcome.php:1193
6963
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:679
6964
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:372
6965
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1305
6966
- msgid "Upgrade Now"
6967
- msgstr "Актуализирай сега"
6968
-
6969
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-welcome.php:1371
6970
- msgid "We&#8217;ve assembled some links to get you started:"
6971
- msgstr "Ние сме събрали някой връзки за начало:"
6972
-
6973
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-welcome.php:1375
6974
- msgid "Get Started"
6975
- msgstr "Започни сега"
6976
-
6977
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-welcome.php:1379
6978
- #, php-format
6979
- msgid "Insert booking form %sshortcode%s into your %sPost%s or %sPage%s"
6980
- msgstr "Поставете %sshortcode%s на резервационната форма във вашия %sPost%s или %sPage%s"
6981
-
6982
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-welcome.php:1388
6983
- #, php-format
6984
- msgid "or add booking calendar %sWidget%s to your sidebar."
6985
- msgstr "или поставете календара за резервации %sWidget%s в слайдбара."
6986
-
6987
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-welcome.php:1395
6988
- #, php-format
6989
- msgid "Check %show todo%s that and what %sshortcodes%s are available."
6990
- msgstr "Проверете %show todo%s къде и какви %sshortcodes%s са налични."
6991
-
6992
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-welcome.php:1402
6993
- #, php-format
6994
- msgid "Add new booking from your post/page or from %sAdmin Panel%s."
6995
- msgstr "Добави нова резервация от вашия пост/страница или от %sAdmin Panel%s."
6996
-
6997
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-welcome.php:1410
6998
- msgid "Next Steps"
6999
- msgstr "Следваща стъпка"
7000
-
7001
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-welcome.php:1414
7002
- #, php-format
7003
- msgid "Check %sBooking Listing%s page for new bookings."
7004
- msgstr "Провери страницата %sBooking Listing%s за нови резервации."
7005
-
7006
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-welcome.php:1421
7007
- #, php-format
7008
- msgid "Configure booking %sSettings%s."
7009
- msgstr "Конфигурирай резервациите %sSettings%s."
7010
-
7011
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-welcome.php:1426
7012
- #, php-format
7013
- msgid "Configure predefined set of your %sForm Fields%s."
7014
- msgstr "Конфигурирай предефинирания набор от полета %sForm Fields%s."
7015
-
7016
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-welcome.php:1432
7017
- #, php-format
7018
- msgid "Configure your predefined %sEmail Templates%s."
7019
- msgstr "Конфигурирай предефинираня шаблон за %sEmail Templates%s."
7020
-
7021
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-welcome.php:1440
7022
- msgid "Have a questions?"
7023
- msgstr "Имате въпроси?"
7024
-
7025
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-welcome.php:1444
7026
- #, php-format
7027
- msgid "Check out our %sHelp%s"
7028
- msgstr "Проверете %sHelp%s"
7029
-
7030
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-welcome.php:1449
7031
- #, php-format
7032
- msgid "See %sFAQ%s."
7033
- msgstr "Вижте %sFAQ%s."
7034
-
7035
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-welcome.php:1454
7036
- #, php-format
7037
- msgid "Still having questions? Contact %sSupport%s."
7038
- msgstr "Все още имате въпроси? Свържете се с %sSupport%s."
7039
-
7040
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-welcome.php:1463
7041
- #, php-format
7042
- msgid "Need even more functionality? Check %s higher versions %s"
7043
- msgstr "Трябват ви повече функционалности? Проверете %s higher versions %s"
7044
-
7045
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:30
7046
- msgid "Insert booking calendar"
7047
- msgstr "Постави календара за резервации"
7048
-
7049
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:31
7050
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:636
7051
- msgid "Booking calendar"
7052
- msgstr "Календар за резервации"
7053
-
7054
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:143
7055
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:165
7056
- msgid "Ok"
7057
- msgstr "ОК"
7058
-
7059
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:414
7060
- msgid "Start month:"
7061
- msgstr "Начален месец:"
7062
-
7063
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:424
7064
- msgid "Select start month of calendar"
7065
- msgstr "Избери началния месец от календара"
7066
-
7067
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:431
7068
- msgid "Show in the page:"
7069
- msgstr "Покажи в страницата:"
7070
-
7071
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:437
7072
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-widget.php:91
7073
- msgid "Booking form with calendar"
7074
- msgstr "Резервационна форма с календар"
7075
-
7076
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:438
7077
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-widget.php:92
7078
- msgid "Only availability calendar"
7079
- msgstr "Само Календар"
7080
-
7081
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:439
7082
- msgid "Only booking form"
7083
- msgstr "Само форма за резервации"
7084
-
7085
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:444
7086
- msgid "for"
7087
- msgstr "за"
7088
-
7089
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:447
7090
- msgid "date"
7091
- msgstr "дата"
7092
-
7093
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:451
7094
- msgid "Select to show the entire booking form or the availability calendar only."
7095
- msgstr "Изберете, за да покаже целия резервационна форма или само календар."
7096
-
7097
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:466
7098
- msgid "Show advanced settings"
7099
- msgstr "Разширени настройки"
7100
-
7101
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:467
7102
- msgid "Hide advanced settings"
7103
- msgstr "Скриване на разширените настройки"
7104
-
7105
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:471
7106
- #, php-format
7107
- msgid "Setting advanced parameters of the calendar. %sLike width, height and structure %s"
7108
- msgstr "Настройка на разширените параметри на календара.%sКато широчина, дължина и структура %s"
7109
-
7110
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:473
7111
- #, php-format
7112
- msgid "%s or minimum and fixed number of days selection for the specific day of week or season.%s"
7113
- msgstr "%s или избор на минимум и определен брой дни за специфичен ден от седмицата или сезона. %s"
7114
-
7115
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:479
7116
- #, php-format
7117
- msgid "Please read more about the possible customizations of these %soptions%s %shere%s"
7118
- msgstr "Моля, прочетете повече за възможните настройки на тези %sопции%s %sтук%s"
7119
-
7120
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:480
7121
- msgid "Options:"
7122
- msgstr "Опции:"
7123
-
7124
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:483
7125
- msgid "Specify the full width of calendar, height of date cell and number of months in one row. "
7126
- msgstr ""
7127
- "Задайте цялата ширина на календара, височината на клетката за дат и броя на месеците в един ред."
7128
-
7129
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:486
7130
- msgid ""
7131
- "Calendar have 2 months in a row, the cell height is 30px and calendar full width 568px (possible "
7132
- "to use percentage for width: 100%)"
7133
- msgstr ""
7134
- "Календарът има 2 месеца в един ред, височината на клетката е 30px и пълната ширина календара е "
7135
- "568px (може да се използва процент за ширина: 100 %)"
7136
-
7137
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:487
7138
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:495
7139
- msgid "Code Example"
7140
- msgstr "Пример за код:"
7141
-
7142
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:491
7143
- msgid ""
7144
- "Specify that during certain seasons (or days of week), the specific minimum number of days must "
7145
- "be booked. "
7146
- msgstr ""
7147
- "Посочете, че през определени сезони (или дни от седмицата), определен минимален брой дни трябва "
7148
- "да се резервира."
7149
-
7150
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:494
7151
- msgid ""
7152
- "Visitor can select only 4 days starting at Monday, 3 or 7 days – Friday, 2 days – Saturday, etc…"
7153
- msgstr ""
7154
- "Гостът може да изберете само 4 дни, считано от Понеделник, 3 или 7 дни - Петък, 2 дни - Събота и "
7155
- "т.н ..."
7156
-
7157
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:298
7158
- msgid "week"
7159
- msgstr "седмица"
7160
-
7161
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:299
7162
- msgid "weeks"
7163
- msgstr "седмици"
7164
-
7165
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:300
7166
- msgid "month"
7167
- msgstr "месец"
7168
-
7169
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:301
7170
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:302
7171
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:303
7172
- msgid "months"
7173
- msgstr "месеци"
7174
-
7175
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:304
7176
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2214
7177
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:732
7178
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:738
7179
- msgid "Year"
7180
- msgstr "Година"
7181
-
7182
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:307
7183
- msgid "Current dates"
7184
- msgstr "Настоящи дати"
7185
-
7186
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:308
7187
- msgid "Today"
7188
- msgstr "Днес"
7189
-
7190
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:309
7191
- msgid "Previous dates"
7192
- msgstr "Минали дати"
7193
-
7194
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:310
7195
- msgid "All dates"
7196
- msgstr "Всички дати"
7197
-
7198
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:311
7199
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:424
7200
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2072
7201
- msgid "Next"
7202
- msgstr "Напред"
7203
-
7204
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:312
7205
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:447
7206
- msgid "Prior"
7207
- msgstr "Назад"
7208
-
7209
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:314
7210
- msgid "Check In - Tomorrow"
7211
- msgstr "Настаняване - Утре"
7212
-
7213
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:315
7214
- msgid "Check Out - Tomorrow"
7215
- msgstr "Напускане - Утре"
7216
-
7217
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:472
7218
- msgid "Check-in"
7219
- msgstr "Настаняване"
7220
-
7221
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:482
7222
- msgid "Check-out"
7223
- msgstr "Напускане"
7224
-
7225
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:505
7226
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:567
7227
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:623
7228
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1463
7229
- msgid "Apply"
7230
- msgstr "Прилагане"
7231
-
7232
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:605
7233
- msgid "Start Date"
7234
- msgstr "Начална дата"
7235
-
7236
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:646
7237
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:44
7238
- msgid "Booking Listing"
7239
- msgstr "Списък с резервации"
7240
-
7241
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:650
7242
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:703
7243
- msgid "Calendar Overview"
7244
- msgstr "Преглед на календара"
7245
-
7246
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:659
7247
- msgid "Booking Calendar - Overview"
7248
- msgstr "Преглед на календара за резервации"
7249
-
7250
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:667
7251
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:675
7252
- msgid "Help"
7253
- msgstr "Помощ"
7254
-
7255
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:673
7256
- msgid "About Booking Calendar"
7257
- msgstr "Повеча за календара за резервации"
7258
-
7259
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:676
7260
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:462
7261
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1217
7262
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1219
7263
- msgid "FAQ"
7264
- msgstr "Често задавани въпроси"
7265
-
7266
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:677
7267
- msgid "Technical Support"
7268
- msgstr "Техническа поддръжка"
7269
-
7270
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1364
7271
- msgid "Filter"
7272
- msgstr "Филтър"
7273
-
7274
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1409
7275
- msgid "Expand Advanced Filter"
7276
- msgstr "Покажи разширен филтър"
7277
-
7278
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1410
7279
- msgid "Collapse Advanced Filter"
7280
- msgstr "Скрий разширен филтър"
7281
-
7282
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1427
7283
- msgid "Send email notification to customer after approval, cancellation or deletion of bookings"
7284
- msgstr "Изпрати имейл на клиента след одобрение, отказ или изтриване на резервации"
7285
-
7286
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1428
7287
- msgid "Emails sending"
7288
- msgstr "Изпращане на имейли"
7289
-
7290
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1451
7291
- msgid "Booking ID"
7292
- msgstr "ID на резервацията"
7293
-
7294
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1460
7295
- msgid "Refresh booking listing"
7296
- msgstr "Обнови списъка с резервации"
7297
-
7298
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1464
7299
- msgid "Reset filter to default values"
7300
- msgstr "Възстановяване на първоначалните стойности на филтъра"
7301
-
7302
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1505
7303
- msgid "Any"
7304
- msgstr "Който и да е"
7305
-
7306
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1533
7307
- msgid "New bookings"
7308
- msgstr "Нови резервации"
7309
-
7310
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1536
7311
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-widget.php:87
7312
- msgid "Show"
7313
- msgstr "Покажи"
7314
-
7315
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1548
7316
- msgid "Creation"
7317
- msgstr "Създавабе"
7318
-
7319
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1582
7320
- msgid "Order by"
7321
- msgstr "Подреди по"
7322
-
7323
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1596
7324
- msgid ""
7325
- "Save filter settings as default template (Please, click Apply filter button, before saving!)"
7326
- msgstr ""
7327
- "Запазване на настройките на филтъра като шаблон по подразбиране (Моля, кликнете върху бутона "
7328
- "Приложи филтър, преди да запазите!)"
7329
-
7330
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1599
7331
- msgid "Save as Default"
7332
- msgstr "Запиши като стойност по подразбиране"
7333
-
7334
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1604
7335
- msgid "Delete your previously saved default filer template!"
7336
- msgstr "Изтриване на записания по-рано шаблон по подразбиране за филтър!"
7337
-
7338
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1607
7339
- msgid "Delete template"
7340
- msgstr "Изтрий шаблона"
7341
-
7342
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1678
7343
- msgid "Approve selected bookings"
7344
- msgstr "Одобри избраните резервации"
7345
-
7346
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1682
7347
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1989
7348
- msgid "Approve"
7349
- msgstr "Одобри"
7350
-
7351
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1683
7352
- msgid "Set selected bookings as pending"
7353
- msgstr "Отбележи избраните резервации като чакащи"
7354
-
7355
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1685
7356
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1993
7357
- msgid "Do you really want to set booking as pending ?"
7358
- msgstr "Наистина ли искате да смените тези резервации на чакащи?"
7359
-
7360
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1688
7361
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1994
7362
- msgid "Reject"
7363
- msgstr "Отказ"
7364
-
7365
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1691
7366
- msgid "Delete selected bookings"
7367
- msgstr "Изтрий избраните резервации"
7368
-
7369
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1698
7370
- msgid "Reason of cancellation"
7371
- msgstr "Причина за анулиране"
7372
-
7373
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1703
7374
- msgid "Mark as read all bookings"
7375
- msgstr "Маркирай всички резервации като прочетени"
7376
-
7377
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1707
7378
- msgid "Read All"
7379
- msgstr "Прочети всички"
7380
-
7381
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1708
7382
- msgid "Mark as read selected bookings"
7383
- msgstr "Маркирай като прочетени избраните резервации"
7384
-
7385
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1712
7386
- msgid "Read"
7387
- msgstr "Прочетен"
7388
-
7389
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1713
7390
- msgid "Mark as Unread selected bookings"
7391
- msgstr "Маркирай като непрочетени избраните резервации"
7392
-
7393
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1717
7394
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1931
7395
- msgid "Unread"
7396
- msgstr "Непрочетен"
7397
-
7398
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1762
7399
- msgid "Booking Data"
7400
- msgstr "Данни за резервация"
7401
-
7402
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1763
7403
- msgid "Booking Dates"
7404
- msgstr "Дати за резервация"
7405
-
7406
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1768
7407
- msgid "Show ALL dates of booking"
7408
- msgstr "Покажи ВСИЧКИ дати на резервацията."
7409
-
7410
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1773
7411
- msgid "Show only check in/out dates"
7412
- msgstr "Покажи само датите на настаняване/напускане"
7413
-
7414
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1780
7415
- msgid "Nothing found!"
7416
- msgstr "Нищо не е намерено"
7417
-
7418
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1814
7419
- msgid "Resource not exist"
7420
- msgstr "Този ресурс не съществува"
7421
-
7422
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1931
7423
- msgid "Mark"
7424
- msgstr "Маркирай"
7425
-
7426
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1998
7427
- msgid "Do you really want to delete this booking ?"
7428
- msgstr "Наистина ли искате да изтриете избраната резервация?"
7429
-
7430
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2054
7431
- msgid "Prev"
7432
- msgstr "Предишен"
7433
-
7434
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2203
7435
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2235
7436
- msgid "Show month"
7437
- msgstr "Покажи месец"
7438
-
7439
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2206
7440
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2238
7441
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:727
7442
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:736
7443
- msgid "Month"
7444
- msgstr "Месец"
7445
-
7446
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2207
7447
- msgid "Show 3 months"
7448
- msgstr "Покажи 3 месеца"
7449
-
7450
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2210
7451
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:731
7452
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:737
7453
- msgid "3 Months"
7454
- msgstr "3 Месеца"
7455
-
7456
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2211
7457
- msgid "Show year"
7458
- msgstr "Покажи година"
7459
-
7460
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2220
7461
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2254
7462
- msgid "Calendar view mode"
7463
- msgstr "Изглед Календар"
7464
-
7465
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2227
7466
- msgid "Show day"
7467
- msgstr "Покажи ден"
7468
-
7469
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2230
7470
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:724
7471
- msgid "Day"
7472
- msgstr "Ден"
7473
-
7474
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2231
7475
- msgid "Show week"
7476
- msgstr "Покажи седмица"
7477
-
7478
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2234
7479
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:725
7480
- msgid "Week"
7481
- msgstr "Седмица"
7482
-
7483
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2239
7484
- msgid "Show 2 months"
7485
- msgstr "Покажи 2 месеца"
7486
-
7487
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2242
7488
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:729
7489
- msgid "2 Months"
7490
- msgstr "2 Месеца"
7491
-
7492
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2280
7493
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2294
7494
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2341
7495
- msgid "Previous 4 weeks"
7496
- msgstr "Предишни 4 седмици"
7497
-
7498
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2281
7499
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2295
7500
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2342
7501
- msgid "Previous week"
7502
- msgstr "Предишна седмица"
7503
-
7504
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2282
7505
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2296
7506
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2343
7507
- msgid "Current week"
7508
- msgstr "Текуща седмица"
7509
-
7510
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2283
7511
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2297
7512
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2344
7513
- msgid "Next week"
7514
- msgstr "Седваща седмица"
7515
-
7516
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2284
7517
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2298
7518
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2345
7519
- msgid "Next 4 weeks"
7520
- msgstr "Следващи 4 седмици"
7521
-
7522
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2308
7523
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2358
7524
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2373
7525
- msgid "Previous 3 months"
7526
- msgstr "Предишни 3 месеца"
7527
-
7528
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2309
7529
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2359
7530
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2374
7531
- msgid "Previous month"
7532
- msgstr "Миналия месец"
7533
-
7534
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2310
7535
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2360
7536
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2375
7537
- msgid "Current month"
7538
- msgstr "Текущ месец"
7539
-
7540
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2311
7541
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2361
7542
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2376
7543
- msgid "Next month"
7544
- msgstr "Следващ месец"
7545
-
7546
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2312
7547
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2362
7548
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2377
7549
- msgid "Next 3 months"
7550
- msgstr "Следващите 3 месеца"
7551
-
7552
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2326
7553
- msgid "Previous 7 days"
7554
- msgstr "Предните 7 дни"
7555
-
7556
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2327
7557
- msgid "Previous day"
7558
- msgstr "Предния ден"
7559
-
7560
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2328
7561
- msgid "Current day"
7562
- msgstr "Текущия ден"
7563
-
7564
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2329
7565
- msgid "Next day"
7566
- msgstr "Следващия ден"
7567
-
7568
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2330
7569
- msgid "Next 7 days"
7570
- msgstr "Следващите 7 дни"
7571
-
7572
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2401
7573
- msgid "Calendar Navigation"
7574
- msgstr "Навигация на каледнара"
7575
-
7576
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:116
7577
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:146
7578
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:153
7579
- msgid "M"
7580
- msgstr "М"
7581
-
7582
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:116
7583
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:146
7584
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:153
7585
- msgid "W"
7586
- msgstr "Ж"
7587
-
7588
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:116
7589
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:146
7590
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:153
7591
- msgid "F"
7592
- msgstr "Ж"
7593
-
7594
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:122
7595
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:159
7596
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:447
7597
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:453
7598
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:459
7599
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:465
7600
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:481
7601
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:487
7602
- msgid "Mon"
7603
- msgstr "Пон"
7604
-
7605
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:122
7606
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:159
7607
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:447
7608
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:453
7609
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:459
7610
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:465
7611
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:481
7612
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:487
7613
- msgid "Tue"
7614
- msgstr "Вт"
7615
-
7616
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:122
7617
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:159
7618
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:447
7619
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:453
7620
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:459
7621
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:465
7622
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:481
7623
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:487
7624
- msgid "Wed"
7625
- msgstr "Ср"
7626
-
7627
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:122
7628
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:159
7629
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:447
7630
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:453
7631
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:459
7632
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:465
7633
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:481
7634
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:487
7635
- msgid "Thu"
7636
- msgstr "Чет"
7637
-
7638
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:122
7639
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:159
7640
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:447
7641
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:453
7642
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:459
7643
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:465
7644
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:481
7645
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:487
7646
- msgid "Fri"
7647
- msgstr "Пет"
7648
-
7649
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:122
7650
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:159
7651
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:447
7652
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:453
7653
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:459
7654
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:465
7655
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:481
7656
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:487
7657
- msgid "Sat"
7658
- msgstr "Съб"
7659
-
7660
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:122
7661
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:159
7662
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:447
7663
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:453
7664
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:459
7665
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:465
7666
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:481
7667
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:487
7668
- msgid "Sun"
7669
- msgstr "Нед"
7670
-
7671
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:146
7672
- msgid "T"
7673
- msgstr "Ч"
7674
-
7675
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:146
7676
- msgid "S"
7677
- msgstr "С"
7678
-
7679
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:138
7680
- msgid "Booking Calendar"
7681
- msgstr "Календар за резервации"
7682
-
7683
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:334
7684
- msgid "Statistic"
7685
- msgstr "Статистика"
7686
-
7687
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:338
7688
- msgid "New (unverified) booking(s)"
7689
- msgstr "Нови (нерповерени) резервации"
7690
-
7691
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:342
7692
- msgid "Pending booking(s)"
7693
- msgstr "Чакащи резервации"
7694
-
7695
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:348
7696
- msgid "Agenda"
7697
- msgstr "Дневен ред"
7698
-
7699
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:352
7700
- msgid "New booking(s) made today"
7701
- msgstr "Нови резервации направени днес"
7702
-
7703
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:356
7704
- msgid "Bookings for today"
7705
- msgstr "Резервации за днес"
7706
-
7707
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:370
7708
- msgid "Upgrade to higher versions"
7709
- msgstr "Обнови до по-високи версии"
7710
-
7711
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:387
7712
- msgid "Current version"
7713
- msgstr "Настояща версия"
7714
-
7715
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:390
7716
- msgid "Version"
7717
- msgstr "Версия"
7718
-
7719
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:406
7720
- msgid "Type"
7721
- msgstr "Тип"
7722
-
7723
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:410
7724
- msgid "Used for"
7725
- msgstr "Използван за"
7726
-
7727
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:419
7728
- msgid "websites"
7729
- msgstr "уебсайтове"
7730
-
7731
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:421
7732
- msgid "website"
7733
- msgstr "уебсайт"
7734
-
7735
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:427
7736
- msgid "Release date"
7737
- msgstr "Дата на пускане"
7738
-
7739
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:437
7740
- msgid "Check Premium Features"
7741
- msgstr "Маркирайте Premium възможностите"
7742
-
7743
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:439
7744
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1186
7745
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1187
7746
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1195
7747
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1196
7748
- msgid "Upgrade"
7749
- msgstr "Актуализиране"
7750
-
7751
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:441
7752
- msgid "Explore Premium Features"
7753
- msgstr "Покажи Premium възможностите"
7754
-
7755
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:450
7756
- msgid "Support"
7757
- msgstr "Поддръжка"
7758
-
7759
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:455
7760
- msgid "Getting Started"
7761
- msgstr "Започни сега"
7762
-
7763
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:465
7764
- msgid "Contact email"
7765
- msgstr "За контакти"
7766
-
7767
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:468
7768
- msgid "Rate plugin (thanks:)"
7769
- msgstr "Оцени приложението (благодаря:)"
7770
-
7771
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:531
7772
- msgid "Warning !!!"
7773
- msgstr "Внимание!!!"
7774
-
7775
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:532
7776
- msgid "All booking data will be deleted when the plugin is deactivated."
7777
- msgstr "Всички данни за резервации ще бъдат изтрити, когато плъгина е деактивиран."
7778
-
7779
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:533
7780
- #, php-format
7781
- msgid ""
7782
- "If you want to save your booking data, please uncheck the %s\"Delete booking data\"%s at the"
7783
- msgstr ""
7784
- "Ако искате да запазите вашите резервации, моля размаркиракте %s\"Изтрий данните за резервации"
7785
- "\"%s на"
7786
-
7787
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:534
7788
- msgid "settings page"
7789
- msgstr "Страница за настройки"
7790
-
7791
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:584
7792
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:663
7793
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-functions.php:2284
7794
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1207
7795
- msgid "Settings"
7796
- msgstr "Настройки"
7797
-
7798
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:588
7799
- msgid "Check new functionality in this plugin update."
7800
- msgstr "Погледнете новата функционалност след актуализацията на този плъгин."
7801
-
7802
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:588
7803
- msgid "What's New"
7804
- msgstr "Какво ново"
7805
-
7806
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:626
7807
- msgid "Booking"
7808
- msgstr "Резервация"
7809
-
7810
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:663
7811
- msgid "Booking Calendar Settings"
7812
- msgstr "Настройки на календара за резервации"
7813
-
7814
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:673
7815
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-functions.php:2252
7816
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1166
7817
- msgid "Bookings"
7818
- msgstr "Резервации"
7819
-
7820
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:704
7821
- msgid "Bookings listing"
7822
- msgstr "Списък с резервации"
7823
-
7824
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1074
7825
- msgid "Send email notification to customer about this operation"
7826
- msgstr "Изпрати имейл на клиента за тази операция"
7827
-
7828
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1153
7829
- msgid "General"
7830
- msgstr "Основно"
7831
-
7832
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1158
7833
- msgid "Fields"
7834
- msgstr "Полета"
7835
-
7836
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1159
7837
- msgid "Fields Settings"
7838
- msgstr "Настройки на полетата"
7839
-
7840
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1162
7841
- msgid "Emails"
7842
- msgstr "Имейли"
7843
-
7844
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1163
7845
- msgid "Emails Settings"
7846
- msgstr "Настройки на имейл"
7847
-
7848
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1170
7849
- msgid "Payments"
7850
- msgstr "Плащания"
7851
-
7852
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1171
7853
- msgid "Payments Settings"
7854
- msgstr "Настройки"
7855
-
7856
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1176
7857
- msgid "Search Settings"
7858
- msgstr "Настройки за търсене"
7859
-
7860
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1181
7861
- msgid "Users Settings"
7862
- msgstr "Потребителски настройки"
7863
-
7864
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1217
7865
- msgid "Features"
7866
- msgstr "Възможности"
7867
-
7868
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1217
7869
- msgid "Live Demos"
7870
- msgstr "Демонстрации на живо"
7871
-
7872
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1217
7873
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1219
7874
- msgid "Contact"
7875
- msgstr "Контакт"
7876
-
7877
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1217
7878
- msgid "Buy"
7879
- msgstr "Купи"
7880
-
7881
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1496
7882
- msgid "Calendar is loading..."
7883
- msgstr "Календарът се зарежда..."
7884
-
7885
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1676
7886
- msgid "Booking resource type is not defined. Its can be, when at the URL is wrong booking hash."
7887
- msgstr ""
7888
- "Типа на ресурс не е определен. Той може да бъде, когато в URL е грешни или има грешен хеш на "
7889
- "резервацията."
7890
-
7891
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1805
7892
- #, php-format
7893
- msgid ""
7894
- "%sWarning! Booking calendar for this booking resource are already at the page, please check more "
7895
- "about this issue at %sthis page%s"
7896
- msgstr ""
7897
- "%sВнимание! Резервационния календар за този ресурс е вече на страницата, моля, проверете повече "
7898
- "по този въпрос на %sтази страница%s"
7899
-
7900
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1988
7901
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1990
7902
- msgid "Wrong booking hash in URL. Probably hash is expired."
7903
- msgstr "Грешен хеш на резервацията в URL. Може би хешът вече не е валиден"
7904
-
7905
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1994
7906
- msgid "You do not set any parameters for booking editing"
7907
- msgstr "Вие не ста задали никакви параметри за редактиране на резервацията"
7908
-
7909
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:2113
7910
- #, php-format
7911
- msgid ""
7912
- "Thank you for your online booking. %s We will send confirmation of your booking as soon as "
7913
- "possible."
7914
- msgstr ""
7915
- "Благодарим за вашата резервация. %s Ние ще ви изпратим имейл за потвърждение възможно най-скоро."
7916
-
7917
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:2193
7918
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:2198
7919
- msgid "New booking"
7920
- msgstr "Нова резервация"
7921
-
7922
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:2194
7923
- #, php-format
7924
- msgid ""
7925
- "You need to approve a new booking %s for: %s Person detail information:%s Currently a new "
7926
- "booking is waiting for approval. Please visit the moderation panel%sThank you, %s"
7927
- msgstr ""
7928
- "Трябва да потвърдите новатеща резервация %s за: %s Персонална информация:%s В момента новата "
7929
- "резервация чака одобрение. Моля, посетете панела за модериране%sБлафгодарим Ви, %s"
7930
-
7931
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:2200
7932
- #, php-format
7933
- msgid ""
7934
- "Your reservation %s for: %s is processing now! We will send confirmation by email. %sYou can "
7935
- "edit this booking at this page: %s Thank you, %s"
7936
- msgstr ""
7937
- "Вашата резервация%s за:%s се обработва сега! Ние ще ви изпратим потвърждение по електронната "
7938
- "поща. %sВие можете да редактирате резервацията на тази страница:%s Благодаря ви,%s"
7939
-
7940
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:2202
7941
- #, php-format
7942
- msgid ""
7943
- "Your reservation %s for: %s is processing now! We will send confirmation by email. %s Thank you, "
7944
- "%s"
7945
- msgstr ""
7946
- "Вашата резервация%s за:%s се обработва сега! Ние ще ви изпратим потвърждение по електронната "
7947
- "поща. %s Благодаря ви,%s"
7948
-
7949
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:2207
7950
- msgid "Your booking has been approved"
7951
- msgstr "Вашата резервация е одобрена"
7952
-
7953
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:2209
7954
- #, php-format
7955
- msgid ""
7956
- "Your reservation %s for: %s has been approved.%sYou can edit the booking on this page: %s Thank "
7957
- "you, %s"
7958
- msgstr ""
7959
- "Вашата резервация%s за:%s е одобрена%sВие можете да променяте резервацията на тази страница:.%s "
7960
- "Благодаря ви,%s"
7961
-
7962
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:2210
7963
- #, php-format
7964
- msgid "Your booking %s for: %s has been approved.%sThank you, %s"
7965
- msgstr "Вашата резервация%s за:%s е одобрена%sБлагодарим ви,%s."
7966
-
7967
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:2213
7968
- msgid "Your booking has been declined"
7969
- msgstr "Вашата резервация е отхвърлена"
7970
-
7971
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:2214
7972
- #, php-format
7973
- msgid "Your booking %s for: %s has been canceled. %sThank you, %s"
7974
- msgstr "Вашата резервация%s за:%s е била отменена. %sБлагодарим ви,%s"
7975
-
7976
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:2224
7977
- msgid "Booking form"
7978
- msgstr "Форма за резервации"
7979
-
7980
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:2235
7981
- msgid "Available"
7982
- msgstr "Наличен"
7983
-
7984
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:2239
7985
- msgid "Booked"
7986
- msgstr "Резервиран"
7987
-
7988
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:2242
7989
- msgid "Partially booked"
7990
- msgstr "Чаастично резервиран"
7991
-
7992
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:2983
7993
- msgid "Technical support section"
7994
- msgstr "Секция техническа поддръжка"
7995
-
7996
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:2987
7997
- msgid "Reindex booking data"
7998
- msgstr "Реиндексиране на данните за резервация"
7999
-
8000
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:2989
8001
- msgid "Reindex"
8002
- msgstr "Реиндексиране"
8003
-
8004
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:2995
8005
- msgid ""
8006
- " Click, if you want to reindex booking data by booking dates sort field (Your installation/"
8007
- "update of the plugin must be successful)."
8008
- msgstr ""
8009
- "Натиснете, ако искате да се раиндексират резевационните данни по дата (Вашата инсталация/"
8010
- "актуализация на плъгина трябва да са успешни)"
8011
-
8012
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:3040
8013
- #, php-format
8014
- msgid "%s Found %s not indexed bookings %s"
8015
- msgstr "%sНамерени са %s неидекснирани резервации %s"
8016
-
8017
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:3055
8018
- #, php-format
8019
- msgid "%s Finish getting sort dates. %s"
8020
- msgstr "%s Завършете работата си с датите за сортирате %s"
8021
-
8022
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:3064
8023
- #, php-format
8024
- msgid "Updated booking: %s"
8025
- msgstr "Актуализирани резервации: %s"
8026
-
8027
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-functions.php:326
8028
- msgid "no"
8029
- msgstr "не"
8030
-
8031
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-functions.php:1218
8032
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-functions.php:1608
8033
- msgid "Booking system"
8034
- msgstr "Резервационна система"
8035
-
8036
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-functions.php:2392
8037
- msgid "Warning! Some error occur, during sending registration request."
8038
- msgstr "Внимание ! Възникна грешка ,при изпращането на заявката за регистрация ."
8039
-
8040
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-functions.php:2397
8041
- msgid ""
8042
- "Please refresh this page and if the same error appear again contact support by email (with info "
8043
- "about order number and website) for finishing the registrations"
8044
- msgstr ""
8045
- "Моля, опреснете страницата и ако се появи същата грешка отново се свържете с поддръжката по "
8046
- "електронна поща ( с информация за номер на поръчката и уебсайт ) за приключване на регистрацияте"
8047
-
8048
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-functions.php:2457
8049
- msgid "version"
8050
- msgstr "Версия"
8051
-
8052
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-functions.php:2459
8053
- #, php-format
8054
- msgid "Add your %s on %swordpress.org%s, if you enjoyed by this plugin."
8055
- msgstr "Добавете вашата %s на %s wordpress.org %s, ако сте харесали тази приствка (плъгин)"
8056
-
8057
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-widget.php:133
8058
- msgid "Footer"
8059
- msgstr "Долна част (Footer)"
8060
-
8061
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-widget.php:138
8062
- #, php-format
8063
- msgid "Example: %sMake booking here%s"
8064
- msgstr "Пример: %sНаправете вашата резервация тук%s"
8065
-
8066
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-widget.php:146
8067
- #, php-format
8068
- msgid "%sSeveral widgets are supported at %spaid versions%s."
8069
- msgstr "%s Повече джаджи се поддържат на %sзакипените версии %s"
8070
-
8071
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:41
8072
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:573
8073
- msgid "Form"
8074
- msgstr "Форма"
8075
-
8076
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:53
8077
- msgid "Auto cancellation / approval"
8078
- msgstr "Автоматично анулиране/одобрение"
8079
-
8080
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:63
8081
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:923
8082
- msgid "Advanced"
8083
- msgstr "Разширени"
8084
-
8085
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:67
8086
- msgid "Menu access"
8087
- msgstr "Достъп де меню"
8088
-
8089
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:70
8090
- msgid "Uninstall"
8091
- msgstr "Деинсталиране"
8092
-
8093
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:73
8094
- msgid "Technical"
8095
- msgstr "Технически"
8096
-
8097
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:362
8098
- msgid "Settings saved"
8099
- msgstr "Настройките са запазени"
8100
-
8101
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:392
8102
- msgid "Calendar Skin"
8103
- msgstr "Ефект на фона на календара"
8104
-
8105
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:416
8106
- msgid "Select the skin of the booking calendar"
8107
- msgstr "Изберете ефект на фона на календара"
8108
-
8109
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:421
8110
- msgid "Number of months"
8111
- msgstr "Брой месеци"
8112
-
8113
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:426
8114
- msgid "month(s)"
8115
- msgstr "месец(и)"
8116
-
8117
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:431
8118
- msgid "year(s)"
8119
- msgstr "годин(и)"
8120
-
8121
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:434
8122
- msgid "Select the maximum number of months to show (scroll)"
8123
- msgstr "Изберете максималния брой месеци, които ще се покажат (списък"
8124
-
8125
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:439
8126
- msgid "Start Day of the week"
8127
- msgstr "Първи ден от седмицата"
8128
-
8129
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:450
8130
- msgid "Select your start day of the week"
8131
- msgstr "Изберете първи ден от седмицата"
8132
-
8133
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:457
8134
- msgid "Unavailable days from today"
8135
- msgstr "Дните считани от днес не са налични"
8136
-
8137
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:464
8138
- msgid "Select number of unavailable days in calendar start from today."
8139
- msgstr "Изберете от календара броя на неналични дни, които започват от днес."
8140
-
8141
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:470
8142
- msgid "Unavailable week days"
8143
- msgstr "Неналични дни от седмицата"
8144
-
8145
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:500
8146
- msgid "Check unavailable days in calendars. This option will overwrite all other settings."
8147
- msgstr ""
8148
- "маркирайте неналичните в календара. Тази опция е по-силна и прави невалидни другите настройки."
8149
-
8150
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:510
8151
- msgid "Type of days selection in calendar"
8152
- msgstr "Тип на избора на дни в календара"
8153
-
8154
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:513
8155
- msgid "Type of days selection"
8156
- msgstr "Тип на избора на дни"
8157
-
8158
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:526
8159
- msgid "Single day"
8160
- msgstr "Един единствен ден"
8161
-
8162
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:536
8163
- msgid "Multiple days"
8164
- msgstr "Няколко дни"
8165
-
8166
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:547
8167
- msgid "Range days"
8168
- msgstr "Диапазон на дните"
8169
-
8170
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:588
8171
- msgid "Check the box to activate CAPTCHA inside the booking form."
8172
- msgstr "Маркирайте, за да активирате CAPTCHA във формата за резервация"
8173
-
8174
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:595
8175
- msgid "Auto-fill fields"
8176
- msgstr "Автоматично попълване на полетата"
8177
-
8178
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:598
8179
- msgid "Check the box to activate auto-fill form fields for logged in users."
8180
- msgstr ""
8181
- "Маркирайте, за да активирате автоматичното попълване на полетата от формата за регистрираните "
8182
- "потребители, които са влязли в системата."
8183
-
8184
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:605
8185
- msgid "Use CSS BootStrap"
8186
- msgstr "Използване на CSS BootStrap"
8187
-
8188
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:610
8189
- msgid "Using BootStrap CSS for the form fields"
8190
- msgstr "Използване на CSS BootStrap в полетата на формата"
8191
-
8192
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:613
8193
- msgid "You must not deactivate loading BootStrap files at advanced section of these settings!"
8194
- msgstr ""
8195
- "Не трябва да деактивирате зареждането на BootStrap файловете в разширената секцията на тези "
8196
- "настройки"
8197
-
8198
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:630
8199
- msgid "Action after booking is done"
8200
- msgstr "Действие след като е направена резервацията"
8201
-
8202
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:638
8203
- msgid "Show \"Thank You\" message"
8204
- msgstr "Показване на съобщение \"Благодаря Ви\""
8205
-
8206
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:645
8207
- msgid "Redirect visitor to a new \"Thank You\" page"
8208
- msgstr "Препращане към страницата със съобщение \"Благодаря Ви\""
8209
-
8210
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:649
8211
- msgid "This action will have no effect, if the payment form(s) is active!"
8212
- msgstr "Това действие няма да има ефект, ако формите на плащане са активни!"
8213
-
8214
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:658
8215
- msgid "Message title"
8216
- msgstr "Заглавие на съобщението"
8217
-
8218
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:661
8219
- #, php-format
8220
- msgid "Type title of message %safter booking has done by user%s"
8221
- msgstr "Въведете заглавие на съобщението %sслед като резервацията е направена от потребител%s"
8222
-
8223
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:666
8224
- msgid "Time of message showing"
8225
- msgstr "Време за което събщението ще се покаже"
8226
-
8227
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:669
8228
- msgid "Set duration of time (milliseconds) to show this message"
8229
- msgstr "Задайте времето (в милисекунди) за което събщението ще се покаже"
8230
-
8231
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:676
8232
- msgid "URL of \"thank you\" page"
8233
- msgstr "URL на страницата със собщение \"благодаря\""
8234
-
8235
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:681
8236
- #, php-format
8237
- msgid "Type URL of %s\"Thank You\" page%s"
8238
- msgstr "Въведете URL на %s\"благодаря страницата\" %s"
8239
-
8240
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:696
8241
- msgid "Listing of bookings"
8242
- msgstr "Списък с резервации"
8243
-
8244
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:699
8245
- msgid "Default booking admin page"
8246
- msgstr "Административна страница за резрервации по подразбиране"
8247
-
8248
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:702
8249
- msgid "Bookings Listing"
8250
- msgstr "Списък с резервации"
8251
-
8252
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:710
8253
- msgid "Select your default view mode of bookings at the booking listing page"
8254
- msgstr "Изберете вашия режим на показване на резервации в листата на резервация"
8255
-
8256
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:720
8257
- msgid "Default calendar view mode"
8258
- msgstr "Изглед на календара по подразбиране"
8259
-
8260
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:772
8261
- msgid "Select your default calendar view mode at booking calendar overview page"
8262
- msgstr ""
8263
- "Изберете вашия режим по подразбиране на това как ще изглежда календара в страницата за преглед "
8264
- "резервации"
8265
-
8266
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:782
8267
- msgid "Default toolbar tab"
8268
- msgstr "Табулация по подразнбиране в лентата с инструменти"
8269
-
8270
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:784
8271
- msgid "Filter tab"
8272
- msgstr "Табулация на филтрите"
8273
-
8274
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:785
8275
- msgid "Actions tab"
8276
- msgstr "Табулация на действията"
8277
-
8278
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:792
8279
- msgid "Select your default opened tab in toolbar at booking listing page"
8280
- msgstr ""
8281
- "Изберете отворената табулация по подразбиране в в лентата с инструменти и спискъка с резервации"
8282
-
8283
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:797
8284
- msgid "Bookings number per page"
8285
- msgstr "Брой резервации на страница"
8286
-
8287
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:806
8288
- msgid "Select number of bookings per page in booking listing"
8289
- msgstr "Изберетя броя резервации на страница в списъка с резервациии"
8290
-
8291
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:812
8292
- msgid "Bookings default order"
8293
- msgstr "Критерий по подразбиране за сортиране за резервациите"
8294
-
8295
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:815
8296
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:817
8297
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:827
8298
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:832
8299
- msgid "ASC"
8300
- msgstr "ВЪЗХОДЯЩ"
8301
-
8302
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:816
8303
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:818
8304
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:828
8305
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:833
8306
- msgid "DESC"
8307
- msgstr "НИЗХОДЯЩ"
8308
-
8309
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:841
8310
- msgid "Select your default order of bookings in the booking listing"
8311
- msgstr "Изберете реда по подразбиране на резервациите в списъка с резервации"
8312
-
8313
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:852
8314
- msgid "Date Format"
8315
- msgstr "Форам на Дата"
8316
-
8317
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:856
8318
- msgid "F j, Y"
8319
- msgstr "F j, Y"
8320
-
8321
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:878
8322
- #, php-format
8323
- msgid ""
8324
- "Type your date format for emails and the booking table. %sDocumentation on date formatting%s"
8325
- msgstr ""
8326
- "Въведете формата на датата за имейлите и за таблицата с резервации. %sДокументация за форматите "
8327
- "за дата%s"
8328
-
8329
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:886
8330
- msgid "Dates view"
8331
- msgstr "Представяне на датите"
8332
-
8333
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:889
8334
- msgid "Short days view"
8335
- msgstr "Кратко представяне на датите"
8336
-
8337
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:890
8338
- msgid "Wide days view"
8339
- msgstr "Разширено представяне на датите"
8340
-
8341
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:892
8342
- msgid "Select the default view for dates on the booking tables"
8343
- msgstr "Изберете как да се показват датите в таблиците с резервации"
8344
-
8345
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:900
8346
- msgid "Show / hide hints"
8347
- msgstr "Покажи/скрии подсказки"
8348
-
8349
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:906
8350
- msgid "Check this box if you want to show help hints on the admin panel."
8351
- msgstr "Маркирайте, ако искате да се показват подсказки на административния панел"
8352
-
8353
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:937
8354
- msgid "Checking to prevent double booking, during submitting booking"
8355
- msgstr "Проверка за избягване дублирането на резервация, по време на запис."
8356
-
8357
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:944
8358
- msgid "This feature can impact to speed of submitting booking. Do you really want to do this?"
8359
- msgstr ""
8360
- "Тази функция може да се отрази на скоростта на подаване на резервацията. Наистина ли искате да "
8361
- "направите това?"
8362
-
8363
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:946
8364
- #, php-format
8365
- msgid ""
8366
- "Check this box, if you want to %sre-check if the selected dates available during submitting "
8367
- "booking%s."
8368
- msgstr ""
8369
- "Маркирайте, ако да %sе провери отново, по време на записа на резервацията, дали избраните дати "
8370
- "са налични%s."
8371
-
8372
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:950
8373
- msgid ""
8374
- "This feature useful to prevent double booking of the same date(s) or time(s), if several "
8375
- "visitors try to book the same date(s) in same calendar during the same time."
8376
- msgstr ""
8377
- "Тази функция е полезна за избягване на дублиране на резервации, в случаите когато няколко "
8378
- "посетителите се опитват да резервират на една и съща дата (и) в един и същ същата календар по "
8379
- "едно и също време."
8380
-
8381
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:953
8382
- msgid "This feature does not work for booking resources with capacity higher than one."
8383
- msgstr "Тази възможност не работи за резервационни ресурси с капацитет по-голям от едно"
8384
-
8385
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:962
8386
- msgid "Allow unlimited bookings per same day(s)"
8387
- msgstr "Позволи неограничен борй резервации за едни и същи дни"
8388
-
8389
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:969
8390
- msgid ""
8391
- "You allow unlimited number of bookings per same dates, its can be a reason of double bookings on "
8392
- "the same date. Do you really want to do this?"
8393
- msgstr ""
8394
- "Ако се позволи неограничен борй резервации за едни и същи дати, това може да бъде причина за "
8395
- "дублиране на резервации за една и съща дата. Наистина ли искате да направите това?"
8396
-
8397
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:971
8398
- #, php-format
8399
- msgid ""
8400
- "Check this box, if you want to %sset any days as available%s in calendar. Your visitors will be "
8401
- "able to make %sunlimited bookings per same date(s) in calendar and do not see any booked "
8402
- "date(s)%s of other visitors."
8403
- msgstr ""
8404
- "Маркирайте, ако искате да %sнаправите някои дни налични%s в календара. Вашите гости ще могат да "
8405
- "правят %sнеограничен брой резервации за едни и същи дати ит календара и да не виждат датите%s на "
8406
- "резервация на другите посетители."
8407
-
8408
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:987
8409
- msgid "Show advanced settings of JavaScript loading"
8410
- msgstr "Покажи разширени настройки за JavaScript зареждане"
8411
-
8412
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:988
8413
- msgid "Hide advanced settings of JavaScript loading"
8414
- msgstr "Скрии разширени настройки за JavaScript зареждане"
8415
-
8416
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:997
8417
- msgid "Disable Bootstrap loading on Front-End"
8418
- msgstr "Забрана на Bootstrap зареждане във Front-End"
8419
-
8420
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1003
8421
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1018
8422
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1035
8423
- msgid ""
8424
- "You are need to be sure what you are doing. You are disable of loading some JavaScripts Do you "
8425
- "really want to do this?"
8426
- msgstr ""
8427
- "Вие трябва да бъдете сигурни какво правите. Вие сте забраняване на зареждане на някои "
8428
- "JavaScripts функции. Наистина ли искате да направите това?"
8429
-
8430
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1005
8431
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1020
8432
- msgid ""
8433
- " If your theme or some other plugin is load the BootStrap JavaScripts, you can disable loading "
8434
- "of this script by this plugin."
8435
- msgstr ""
8436
- "Ако вашата тема или някакъв друг плъгин иска да зареди JavaScripts фърмуера, можете да забраните "
8437
- "зареждането на този скрипт чрез плъгина."
8438
-
8439
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1012
8440
- msgid "Disable Bootstrap loading on Back-End"
8441
- msgstr "Забрана Bootstrap зареждане във бекенд-а"
8442
-
8443
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1029
8444
- msgid "Load JS and CSS files only on specific pages"
8445
- msgstr "Зареждане на JS и CSS файлове на специфични страници"
8446
-
8447
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1037
8448
- msgid "Activate loading of CSS and JavaScript files of plugin only at specific pages."
8449
- msgstr "Активиране на зареждането на JS и CSS файлове от плъгина само на специфични страници"
8450
-
8451
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1051
8452
- msgid "Relative URLs of pages, where to load plugin CSS and JS files"
8453
- msgstr "Релативни URLs адреси на страниците, където ще се заредят CSS и JS файловете"
8454
-
8455
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1056
8456
- #, php-format
8457
- msgid ""
8458
- "Enter relative URLs of pages, where you have Booking Calendar elements (booking forms or "
8459
- "availability calendars). Please enter one URL per line. Example: %s"
8460
- msgstr ""
8461
- "Въведете относителни URL адреси на страниците, в които имате елементи на Календара за "
8462
- "резервации (форми за резервация или календари за наличностите). Моля, въведете един URL на ред. "
8463
- "Пример:%s"
8464
-
8465
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1074
8466
- msgid "Show settings of powered by notice"
8467
- msgstr "Покажи съобщение Поддържан от"
8468
-
8469
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1075
8470
- msgid "Hide settings of powered by notice"
8471
- msgstr "Скрии съобщение Поддържан от"
8472
-
8473
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1083
8474
- msgid "Powered by notice"
8475
- msgstr "Съобщение Поддържан от"
8476
-
8477
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1088
8478
- msgid " Turn On/Off powered by \"Booking Calendar\" notice under the calendar."
8479
- msgstr "Пусни/Спри съобщението поддържан от \"Booking Calendar\" след календара"
8480
-
8481
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1098
8482
- msgid "Help and info notices"
8483
- msgstr "Съобщения за помощ и информация"
8484
-
8485
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1104
8486
- msgid " Turn On/Off version notice and help info links at booking admin panel."
8487
- msgstr "Пусни/Спри съобщението за версията, както и връзките към помощ на администратирския панел"
8488
-
8489
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1133
8490
- msgid "Information"
8491
- msgstr "Информация"
8492
-
8493
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1162
8494
- msgid "User permissions for plugin menu pages"
8495
- msgstr "Потребителски разрешения за страниците на менюто на плъгина"
8496
-
8497
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1222
8498
- msgid "Select user access level for the menu pages of plugin"
8499
- msgstr "Изберете нивото на достъп на потребителите до страниците на менюто на плъгина"
8500
-
8501
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1232
8502
- msgid "Uninstall / deactivation"
8503
- msgstr "Деинсталиране/деактивиране"
8504
-
8505
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1236
8506
- msgid "Delete booking data, when plugin deactivated"
8507
- msgstr "Изтриване на данните за резерваци след деактивиране"
8508
-
8509
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1241
8510
- msgid ""
8511
- "If you check this option, all booking data will be deleted when you uninstall this plugin. Do "
8512
- "you really want to do this?"
8513
- msgstr ""
8514
- "Ако изберет тази опция, когато деинсталирате този плъгин, всички данни за резервации ще бъдат "
8515
- "изтрити завинаги. Наистина ли искате да направите това?"
8516
-
8517
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1243
8518
- msgid "Check this box to delete all booking data when you uninstal this plugin."
8519
- msgstr "Маркирайте за изтриване на данните за резерваци след деинсталиране на този плъгин."
8520
-
8521
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1363
8522
- msgid "Show legend below calendar"
8523
- msgstr "Показване на легенда под календара"
8524
-
8525
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1371
8526
- msgid "Check this box to display a legend of dates below the booking calendar."
8527
- msgstr "Маркирай за показване на легенда за датите под календара"
8528
-
8529
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1381
8530
- msgid "Available item"
8531
- msgstr "Наличен"
8532
-
8533
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1387
8534
- #, php-format
8535
- msgid "Activate and type your %stitle of available%s item in legend"
8536
- msgstr "Активирайте и въведете вашето %sзаглавие за наличен%s легендата"
8537
-
8538
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1393
8539
- msgid "Pending item"
8540
- msgstr "Чакащ"
8541
-
8542
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1399
8543
- #, php-format
8544
- msgid "Activate and type your %stitle of pending%s item in legend"
8545
- msgstr "Активирайте и въведете вашето %sзаглавие за чакащ%s легендата"
8546
-
8547
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1405
8548
- msgid "Approved item"
8549
- msgstr "Одобрен"
8550
-
8551
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1411
8552
- #, php-format
8553
- msgid "Activate and type your %stitle of approved%s item in legend"
8554
- msgstr "Активирайте и въведете вашето %sзаглавие за одобрен%s в легендата"
8555
-
8556
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1417
8557
- msgid "Partially booked item"
8558
- msgstr "Частично резервиран"
8559
-
8560
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1423
8561
- #, php-format
8562
- msgid "Activate and type your %stitle of partially booked%s item in legend"
8563
- msgstr "Активирайте и въведете вашето %sзаглавие за частично резервиран%s легендата"
8564
-
8565
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1424
8566
- msgid "Partially booked item - day, which is booked for the specific time-slot(s)."
8567
- msgstr "Частично резервиран - ден, в който има резервация за специфичен интервал от време"
8568
-
8569
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1448
8570
- msgid "Form fields labels"
8571
- msgstr "Етикети на полетата във формата"
8572
-
8573
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1472
8574
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1515
8575
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1660
8576
- msgid "Field Label"
8577
- msgstr "Етикет на полето"
8578
-
8579
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1489
8580
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1532
8581
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1577
8582
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1623
8583
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1677
8584
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1720
8585
- msgid "Required"
8586
- msgstr "Задължително"
8587
-
8588
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1492
8589
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1535
8590
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1635
8591
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1680
8592
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1723
8593
- msgid "Activate or deactivate field and change the label title"
8594
- msgstr "Етикет за включване или изключване на полето и промяна заглавието"
8595
-
8596
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1560
8597
- msgid "Email Label"
8598
- msgstr "Етикет за имейл"
8599
-
8600
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1580
8601
- msgid "Change the label title of this field. Email is obligatory field in booking form."
8602
- msgstr "Променете етикета на това поле. Имейл е задължително поле във формата за резервация."
8603
-
8604
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1606
8605
- msgid "Selectbox Label"
8606
- msgstr "Етикет за Selectbox (списък са възможност за избор)"
8607
-
8608
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1629
8609
- msgid "Selectbox Values"
8610
- msgstr "Стойности на Selectbox (списък са възможност за избор)"
8611
-
8612
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1636
8613
- msgid "Enter dropdown options. One option per line."
8614
- msgstr "Опции за dropdown (падащ списък са възможност за избор). Една опция на ред."
8615
-
8616
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1703
8617
- msgid "Textarea Label"
8618
- msgstr "Етикет за пълно-текстово поле"
8619
-
8620
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1997
8621
- #, php-format
8622
- msgid ""
8623
- "For example: \"You have a new reservation %s on the following date(s): %s Contact information: "
8624
- "%s You can approve or cancel this booking at: %s Thank you, Reservation service.\""
8625
- msgstr ""
8626
- "Пример: \"Вие имате нова резервация %s на следнита дати : %s Информация за контакт: %s Вир "
8627
- "можете да одобрите или да откажете тази резервация на: %s Благодарим Ви, отдел резервации .\""
8628
-
8629
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2071
8630
- #, php-format
8631
- msgid ""
8632
- "For example: \"Your reservation %s on these date(s): %s is processing now! We will send "
8633
- "confirmation by email. %s Thank you, Reservation service.\""
8634
- msgstr ""
8635
- "Пример: \"Вашата резервация %s на тези дата(и): %s се обработва в момента! Ще ви изпратим "
8636
- "потвърдителен имейл. %s Благодарим Ви, Отдел резервации. \""
8637
-
8638
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2157
8639
- #, php-format
8640
- msgid ""
8641
- "For example: \"Your reservation %s on these date(s): %s has been approved.%s Thank you, "
8642
- "Reservation service.\""
8643
- msgstr ""
8644
- "Пример: \"Вашита резервации %s за тези дата(и): %s бяха одобрени.%s Благодарим Ви, Отдел "
8645
- "резервации.\""
8646
-
8647
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2283
8648
- msgid ""
8649
- "You can use (in subject and content of email template) any shortcodes, which you used in the "
8650
- "booking form. Use the shortcodes in the same way as you used them in the content form at "
8651
- "Settings Fields page."
8652
- msgstr ""
8653
- "Можете да използвате (в полето относно на имейл шаблона) всички кодове, които сте използвали във "
8654
- "формата за резерввации. Използвайте тези кодове по същия начин и със същия смисъл, както сте ги "
8655
- "използвали във формата."
8656
-
8657
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2291
8658
- #, php-format
8659
- msgid "%s - inserting data info about the booking"
8660
- msgstr "%s - въвеждане на данните от информацията за резервацията"
8661
-
8662
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2313
8663
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2321
8664
- #, php-format
8665
- msgid "%s - inserting your site URL "
8666
- msgstr "%s - въведете URL на вашия сайт"
8667
-
8668
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2314
8669
- #, php-format
8670
- msgid "%s - inserting IP address of the user who made this action "
8671
- msgstr "%s - въвеждане на IP адреса на потребителя който извършва това действие "
8672
-
8673
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2315
8674
- #, php-format
8675
- msgid ""
8676
- "%s - inserting contents of the User-Agent: header from the current request, if there is one "
8677
- msgstr "%s - вмъкване на съдържанието на User-Agent: заглавие на текущата заявка, ако има такава"
8678
-
8679
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2316
8680
- #, php-format
8681
- msgid "%s - inserting address of the page (if any), where visitor make this action "
8682
- msgstr "%s - вмъкване на адрес на страницата (ако има), когато потребителят извърши това действие"
8683
-
8684
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2317
8685
- #, php-format
8686
- msgid "%s - inserting date of this action "
8687
- msgstr "%s - вмъкване дата на действието"
8688
-
8689
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2318
8690
- #, php-format
8691
- msgid "%s - inserting time of this action "
8692
- msgstr "%s - вмъкване време на действието"
8693
-
8694
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2325
8695
- #, php-format
8696
- msgid "%s - inserting moderate link of new booking "
8697
- msgstr "%s - вмъкване връзка за забавяне на нова резервация"
8698
-
8699
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2329
8700
- #, php-format
8701
- msgid ""
8702
- "%s - inserting link to the page where visitor can edit the reservation, (possible to use the %s "
8703
- "parameter for setting different %s of this page. Example: %s )"
8704
- msgstr ""
8705
- "%s - вмъкване на връзка към страницата, където посетителите могат да редактират резервацията, "
8706
- "(може да се използва %s параметър за определяне на различни %s от тази страница. Пример: %s)"
8707
-
8708
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2331
8709
- #, php-format
8710
- msgid ""
8711
- "%s - inserting link to the page where visitor can cancel the reservation, (possible to use the "
8712
- "%s parameter for setting different %s of this page. Example: %s )"
8713
- msgstr ""
8714
- "%s - вмъкване на връзка към страницата, където посетителите могат да анулират резервацията, "
8715
- "(може да се използва %s параметър за определяне на различни %s от тази страница. Пример: %s)"
8716
-
8717
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2333
8718
- #, php-format
8719
- msgid ""
8720
- "%s - inserting link to payment page where visitor can pay for the reservation (possible to use "
8721
- "the %s parameter for setting different %s of this page. Example: %s )"
8722
- msgstr ""
8723
- "%s - вмъкване на връзка към страницата, където посетителите могат да плащат резервацията, (може "
8724
- "да се използва %s параметър за определяне на различни %s на тази страница. Пример: %s )"
8725
-
8726
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2337
8727
- #, php-format
8728
- msgid "%s - add the reason for booking payment, you can enter it before sending email, "
8729
- msgstr ""
8730
- "%s - добавете причина за плащане на резервацията, можете да го добавите преди да изпратите мейла,"
8731
-
8732
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2341
8733
- #, php-format
8734
- msgid "%s - add the reason booking was cancelled, you can enter it before sending email, "
8735
- msgstr ""
8736
- "%s - добавете причина за анулиране на резервацията, можете да го добавите преди да изпратите "
8737
- "мейла,"
8738
-
8739
- #~ msgid ""
8740
- #~ "You can reset your active form template by selecting default %sform template%s at the top "
8741
- #~ "toolbar. \n"
8742
- #~ " Please select the form template "
8743
- #~ "and click on %sReset%s button for resetting only active form (Booking Form or Content of "
8744
- #~ "Booking Fields form).\n"
8745
- #~ " Click on %sBoth%s button if you "
8746
- #~ "want to reset both forms: Booking Form and Content of Booking Fields form."
8747
- #~ msgstr ""
8748
- #~ "Можете да възстановите шаблона на активната форма, като изберете %sшаблона на формата%s "
8749
- #~ "подразбиране в горната лента с инструменти. \n"
8750
- #~ " Моля изберете шаблона на на "
8751
- #~ "формата и натиснете %sВъзстанови%s бутона, за да се възстанови само активната форма "
8752
- #~ "(Резевационната форма или съдържанието на полетата). \n"
8753
- #~ " Натиснете бутона %sДвете%s ако "
8754
- #~ "искате да възстановите и двете форми: Формата за резервации и Съдържанието на полетата от "
8755
- #~ "формата."
8756
-
8757
- #~ msgid ""
8758
- #~ "If you have no account on this system, please visit %s to create one. Simulator account "
8759
- #~ "emulates the Sage Pay account as well as a Test and Live account."
8760
- #~ msgstr ""
8761
- #~ "Ако нямате регистрация в тази система, моля, посетете %s за да се регистрирате. Симулаторната "
8762
- #~ "Sage сметка ще ви позволи да направите тест за коректността на процеса."
8763
-
8764
- #~ msgid "SIMULATOR"
8765
- #~ msgstr "Симулатор"
8766
-
8767
- #~ msgid ""
8768
- #~ "Select SIMULATOR for the Simulator expert system, TEST for the Test Server and LIVE in the "
8769
- #~ "live environment"
8770
- #~ msgstr ""
8771
- #~ "Изберете СИМУЛАТОР за Симулаторна експертна система, ТЕСТ на Тестовия Сървър и на РЕАЛНАТА "
8772
- #~ "среда"
8773
-
8774
- #~ msgid ""
8775
- #~ "Now copy the Calendar ID to use in the Feed Settings in your WordPress admin. Make sure to "
8776
- #~ "%suse the Calendar ID only, not the entire XML feed URL%s."
8777
- #~ msgstr ""
8778
- #~ "Сега копирайте ID-то на календара, за да го използвате в настройките на хранилка в "
8779
- #~ "административната секцията на WordPress . Уверете се, че %sизползвате само ID-то на "
8780
- #~ "календара, а не целия XML %s."
8781
-
8782
- #~ msgid "Events"
8783
- #~ msgstr "Събития"
8784
-
8785
- #~ msgid "Title:"
8786
- #~ msgstr "Заглавие:"
8787
-
8788
- #~ msgid "Set Google Calendar Address similar to this: %s or this %s"
8789
- #~ msgstr "Настройте адреса на Google календар подобно на този: %s или този %s"
8790
-
8791
- #~ msgid ""
8792
- #~ "Go to Google Calendar by clicking %s. Login to your Google account if you are not already "
8793
- #~ "logged in."
8794
- #~ msgstr ""
8795
- #~ "Идете в Google календар като натиснете %s. Влвзте в акаунта си в Google ако все още не сте "
8796
- #~ "влезли."
8797
-
8798
- #~ msgid ""
8799
- #~ "At the left side near specific calendar click expand (down arrow) icon to show menu and "
8800
- #~ "select Calendar Settings."
8801
- #~ msgstr ""
8802
- #~ "В лявата част до съответния календар натиснете иконата отвори (стрелка надолу) за да видите "
8803
- #~ "менюто и да изберете настройки на календара."
8804
-
8805
- #~ msgid "Find \"Calendar Address\" or \"Private Address\" and copy XML URL of specific calendar."
8806
- #~ msgstr ""
8807
- #~ "Намерете \"Calendar Address\" или \"Private Address\" и копирайте XML URL за конкретния "
8808
- #~ "календар."
8809
-
8810
- #~ msgid "Set the deposit payment required for the payment form"
8811
- #~ msgstr "Задай необходимият за плащане депозит във формата за плащане"
8812
-
8813
- #~ msgid "Activate this feature at the cost section of general booking settings page, firstly."
8814
- #~ msgstr "Първо активирайте тази функция в раздела за разходи в общите настройки на резервациите."
8815
-
8816
- #~ msgid "Feed URL"
8817
- #~ msgstr "Feed URL"
8818
-
8819
- #~ msgid "Feeds"
8820
- #~ msgstr "Зареждане"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/wpdev-booking-ca.mo ADDED
Binary file
languages/wpdev-booking-cs_CZ.mo CHANGED
Binary file
languages/wpdev-booking-cs_CZ.po DELETED
@@ -1,8407 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: wpdev-booking\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-05-09 10:32+0200\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: wpdevelop <info@wpdevelop.com>\n"
8
- "Language-Team: ... <...>\n"
9
- "Language: cz\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-SourceCharset: UTF-8\n"
14
- "X-Poedit-KeywordsList: __;_e\n"
15
- "X-Poedit-Basepath: w:\\www\\home\\dev\\www\\wp-content\\plugins\\booking\\.\n"
16
- "X-Generator: Poedit 1.7.1\n"
17
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
- "X-Poedit-SearchPath-0: w:\\www\\home\\dev\\www\\wp-content\\plugins\\booking\\.\n"
19
-
20
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:123 w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:241
21
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:254 w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:258
22
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:375 w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:302
23
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:307
24
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:579
25
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:610
26
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1516
27
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1573
28
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1576
29
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:756
30
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:817
31
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:818
32
- msgid "Dates"
33
- msgstr "Termín"
34
-
35
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:124 w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:242
36
- msgid "Full cost of the booking"
37
- msgstr "Plné náklady na rezervaci"
38
-
39
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:126 w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:244
40
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:108
41
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4027
42
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4041
43
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4059
44
- msgid "First Name (required)"
45
- msgstr "Jméno *"
46
-
47
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:127 w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:245
48
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:109
49
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4028
50
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4042
51
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4060
52
- msgid "Last Name (required)"
53
- msgstr "Příjmení *"
54
-
55
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:128 w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:246
56
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:110
57
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4029
58
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4043
59
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4061
60
- msgid "Email (required)"
61
- msgstr "Email *"
62
-
63
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:129 w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:247
64
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:111
65
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1412
66
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:316
67
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4030
68
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4044
69
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4062
70
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4082
71
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4093
72
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4108
73
- msgid "Phone"
74
- msgstr "Telefon"
75
-
76
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:130 w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:248
77
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:112
78
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4063
79
- msgid "Address (required)"
80
- msgstr "Adresa *"
81
-
82
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:131 w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:249
83
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:113
84
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4064
85
- msgid "City (required)"
86
- msgstr "Město *"
87
-
88
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:132 w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:250
89
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:114
90
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4065
91
- msgid "Post code (required)"
92
- msgstr "PSČ *"
93
-
94
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:133 w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:251
95
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:115
96
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4066
97
- msgid "Country (required)"
98
- msgstr "Země *"
99
-
100
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:134
101
- msgid "Visitors"
102
- msgstr "Návštěvníci"
103
-
104
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:135 w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:253
105
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:117
106
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4032
107
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4046
108
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4068
109
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4085
110
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4096
111
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4115
112
- msgid "Details"
113
- msgstr "Detaily"
114
-
115
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:136
116
- msgid "Coupon"
117
- msgstr "Poukaz"
118
-
119
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:137 w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:254
120
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:118
121
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4033
122
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4047
123
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4069
124
- msgid "I Accept term and conditions"
125
- msgstr "Souhlasím s podmínkami"
126
-
127
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:139 w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:256
128
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:120
129
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:2909
130
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4035
131
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4049
132
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4071
133
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1625
134
- msgid "Send"
135
- msgstr "Rezervovat"
136
-
137
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:173
138
- msgid "Try selecting fewer visitors. The number of visitors may be more than the number of available units on selected day(s)!"
139
- msgstr "Zkuste vybrat méně návštěvníků. Počet návštěvníků může být větší než počet dostupných pokojů na vybraný den (dny)!"
140
-
141
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:319
142
- msgid "coupon"
143
- msgstr "poukaz"
144
-
145
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:321
146
- msgid "discount"
147
- msgstr "sleva"
148
-
149
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:695
150
- msgid "Nothing found"
151
- msgstr "Nenalezeno"
152
-
153
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:696
154
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:259
155
- msgid "Search results"
156
- msgstr "Výsledky hledání"
157
-
158
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:828
159
- msgid "Book now"
160
- msgstr "Rezervuj teď"
161
-
162
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:972
163
- msgid "Please select check-in and check-out days!"
164
- msgstr "Vyber prosím datum příjezdu a odjezdu!"
165
-
166
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:1172
167
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:1185
168
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:154
169
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:1175
170
- msgid "Search"
171
- msgstr "Hledání"
172
-
173
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:2097
174
- #, php-format
175
- msgid ""
176
- "Sorry, the reservation was not made because these days are already booked!!! %s (Its not possible to store this sequence of the dates "
177
- "into the one resource.) %s Please %srefresh%s the page and try other days."
178
- msgstr ""
179
- "Omlouváme se, ale rezervace nemohla být provedena, protože v těchto dnech je již vše rezervované !!! %s (Není možné uložit tuto "
180
- "posloupnost dnů do jedné rezervace.)%s Prosím, proveďte %s refresh %s stránky a zkuste provést rezervaci v jiné dny."
181
-
182
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:2608
183
- #, php-format
184
- msgid "The folowing pending booking(s): %s deleted."
185
- msgstr "Následující čekající rezervace: %s byly vymazány."
186
-
187
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:2648
188
- msgid "Maximum available booking resource items"
189
- msgstr "Maximální počet dostupných položek "
190
-
191
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:2789
192
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4019
193
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2537
194
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3151
195
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4562
196
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4741
197
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4837
198
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4900
199
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1514
200
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2255
201
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1352
202
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:346
203
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:341
204
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:320
205
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/pay-cash.php:126
206
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:596
207
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:337
208
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:299
209
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1398
210
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1457
211
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1647
212
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1742
213
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3854
214
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3995
215
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-class-settings.php:46
216
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:75
217
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1257
218
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1742
219
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2269
220
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2396
221
- msgid "Save Changes"
222
- msgstr "Uložit změny"
223
-
224
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:2891
225
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3069
226
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3488
227
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3718
228
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3774
229
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3827
230
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3925
231
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4568
232
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:841
233
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1353
234
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1996
235
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2121
236
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:100
237
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:111
238
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:104
239
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/pay-cash.php:56
240
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:140
241
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:96
242
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:85
243
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1355
244
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3433
245
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3514
246
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3586
247
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3671
248
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3761
249
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3918
250
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3960
251
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/sync/wpbc-sync-gcal-api.php:74
252
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:311
253
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:331
254
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:349
255
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:420
256
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:2982
257
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:387
258
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:572
259
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:695
260
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:922
261
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1132
262
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1161
263
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1231
264
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1447
265
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1931
266
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2011
267
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2084
268
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2171
269
- msgid "Click to toggle"
270
- msgstr "Klikněte pro přepnutí"
271
-
272
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:2892
273
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:722
274
- msgid "Booking resources management"
275
- msgstr "Nová rezervace"
276
-
277
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:2897
278
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3599
279
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3639
280
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4271
281
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4292
282
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4851
283
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4867
284
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-text.php:211
285
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:253 w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:257
286
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:372 w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:301
287
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:306
288
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1248
289
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1411
290
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1426
291
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-br-table-for-settings.php:76
292
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-br-table-for-settings.php:93
293
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:576
294
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:594
295
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1572
296
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1575
297
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1952
298
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:815
299
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:816
300
- msgid "ID"
301
- msgstr "ID"
302
-
303
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:2899
304
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4098
305
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4852
306
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1412
307
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1428
308
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-br-table-for-settings.php:77
309
- msgid "Resource name"
310
- msgstr "Jméno zdrojů"
311
-
312
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:2901
313
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4043
314
- msgid "Number of resource items inside of parent resource"
315
- msgstr "Počet položek pod hlavní kapacitou"
316
-
317
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:2901
318
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4043
319
- msgid "Capacity"
320
- msgstr "Kapacita"
321
-
322
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:2902
323
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3006
324
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4044
325
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4170
326
- msgid "Parent"
327
- msgstr "Nadřízený"
328
-
329
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:2903
330
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3013
331
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4045
332
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4180
333
- msgid "Priority"
334
- msgstr "Priorita"
335
-
336
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:2905
337
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4047
338
- msgid "Maximum number of visitors for resource"
339
- msgstr "Maximální počet návštěvníků pro zdroje"
340
-
341
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:2905
342
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4047
343
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1787
344
- msgid "Max"
345
- msgstr "Maximum"
346
-
347
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:2905
348
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4047
349
- msgid "visitors"
350
- msgstr "hosté"
351
-
352
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:2907
353
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3605
354
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4049
355
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4274
356
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1252
357
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1374
358
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1761
359
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1776
360
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:2137
361
- msgid "Actions"
362
- msgstr "Akce"
363
-
364
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:2985
365
- msgid "Add"
366
- msgstr "Přidat"
367
-
368
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:2994
369
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:882
370
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4301
371
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4304
372
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4835
373
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1396
374
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1697
375
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1999
376
- msgid "Delete"
377
- msgstr "Smazat"
378
-
379
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3004
380
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-booking-select-widget.php:121
381
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:577
382
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:596
383
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-widget.php:79
384
- msgid "Title"
385
- msgstr "Nadpis"
386
-
387
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3021
388
- msgid "Add new resource"
389
- msgstr "Přidat nový zdroj"
390
-
391
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3028
392
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3167
393
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3716
394
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3964
395
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:448
396
- msgid "Save"
397
- msgstr "Uložit"
398
-
399
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3070
400
- msgid "Advanced Settings"
401
- msgstr "Pokročilé nastavení"
402
-
403
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3085
404
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3209
405
- msgid "Set capacity based on number of visitors"
406
- msgstr "Nastavit kapacitu založenou n počtu návštěvníků"
407
-
408
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3091
409
- #, php-format
410
- msgid "Check this box if you want total availability (daily capacity) to depend on the number of selected visitors %s."
411
- msgstr "Zaškrtněte tuto volbu, pokud chcete celkovou dostupnost (denní kapacitu), závislou na počtu zvolených návštěvníků% s."
412
-
413
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3092
414
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3219
415
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1539
416
- #, php-format
417
- msgid "Please read more info about configuration of this parameter %shere%s"
418
- msgstr "Prosím, přečtěte si více informací o konfiguraci tohoto parametru %s zde %s"
419
-
420
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3106
421
- #, php-format
422
- msgid ""
423
- "Add tooltip on calendar(s) to show availability based on the number of available booking resource items remaining for each day. %sBe "
424
- "sure to match the maximum number of visitors for the %sone booking resource%s with the number of visitors specified on the booking "
425
- "form."
426
- msgstr ""
427
- "Přidat popisek na kalendář pro zobrazení dostupnosti na základě počtu dostupného počtu rezervace zdrojů zbývající pro každý den. %s "
428
- "Buď si jist - aby odpovídal maximální počet návštěvníků %s jednoho zdroje rezervace %s a s počtem návštěvníků uvedenými na rezervačním "
429
- "formuláři."
430
-
431
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3114
432
- #, php-format
433
- msgid ""
434
- "Display tooltip on calendar(s) to show availability based on total (fixed) number of visitors for the resource, which can be at free "
435
- "booking resource items. %sBe sure to match the maximum number of visitors for %sall booking resources%s with the number of visitors "
436
- "specified on the booking form."
437
- msgstr ""
438
- "Zobraz nástroj na kalendáři (-ích) pro zobrazení dostupnosti založené na celkovém (pevném) počtu návštěvníků na zdrojích, které mohou "
439
- "být na volné předměty rezervace zdrojů. % s Ujistěte se, aby odpovídala maximální počet návštěvníků pro% s všechny rezervační zdroje"
440
- "% s s počtem návštěvníků uvedenými na rezervačním formuláři."
441
-
442
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3129
443
- msgid "Show availability"
444
- msgstr "Zobraz dostupnost"
445
-
446
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3136
447
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3356
448
- msgid ""
449
- "Check this box to display the available number of booking resources with a tooltip, when mouse hovers over each day on the calendar(s)."
450
- msgstr ""
451
- "Zaškrtněte tuto položku, pokud chcete zobrazit počet dostupných rezervací všech zdrojů s popiskem, když je myš nad dnem v kalendáři."
452
-
453
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3144
454
- msgid "Availability description"
455
- msgstr "Popis dostupnosti"
456
-
457
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3146
458
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3367
459
- #, php-format
460
- msgid "Type your %savailability%s description"
461
- msgstr "Zadejte Váš popis %s dostupnosti %s"
462
-
463
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3156
464
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3255
465
- msgid "Disable bookings in different booking resources"
466
- msgstr "Zakázat rezervace v různých rezervacích zdrojů"
467
-
468
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3160
469
- msgid ""
470
- "Check this box to dissable reservations, which can be stored in different booking resources. When checked, all reserved days must be "
471
- "at same booking resource otherwise error message will show."
472
- msgstr ""
473
- "Zaškrtněte, pokud chcete vypnout výhrady, které mohou být uloženy v různých rezervaci zdrojů. Pokud je zaškrtnuto, jsou všechny "
474
- "vyhrazené dny ve stejné rezervaci zdrojů, jinak se zobrazí chybové hlášení."
475
-
476
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3216
477
- msgid "Check this box if you want total availability (daily capacity) to depend on the number of selected visitors."
478
- msgstr "Zaškrtněte tuto volbu, pokud chcete, celkovou dostupnost (denní kapacitu), závislou na počtu vybraných návštěvníků."
479
-
480
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3219
481
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:117
482
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:126
483
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:136
484
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:197
485
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:228
486
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:230
487
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:278
488
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:291
489
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:303
490
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:305
491
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:341
492
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:343
493
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:380
494
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:382
495
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:497
496
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:515
497
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:644
498
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:658
499
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:315
500
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:332
501
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:294
502
- msgid "Important!"
503
- msgstr "Důležité!"
504
-
505
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3234
506
- msgid "Add tooltip on calendar(s) to show availability based on the number of available booking resource items remaining for each day."
507
- msgstr ""
508
- "Přidat popisek na kalendáři (-ích) pro zobrazení dostupnosti na základě počtu dostupných počtů rezervace zdrojů zbývajících pro každý "
509
- "den."
510
-
511
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3236
512
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3245
513
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3849
514
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2959
515
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4706
516
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:613
517
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:649
518
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:949
519
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1424
520
- msgid "Note"
521
- msgstr "Poznámka"
522
-
523
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3236
524
- #, php-format
525
- msgid ""
526
- "Be sure to match the maximum number of visitors for the %sone booking resource%s with the number of visitors specified on the booking "
527
- "form."
528
- msgstr ""
529
- "Ujistěte se, aby odpovídal maximální počet návštěvníků pro %s jeden rezervační zdroj %s s počtem návštěvníků uvedenými na rezervačním "
530
- "formuláři."
531
-
532
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3243
533
- msgid ""
534
- "Display tooltip on calendar(s) to show availability based on total (fixed) number of visitors for the resource, which can be at free "
535
- "booking resource items."
536
- msgstr ""
537
- "Zobraz popisek na kalendáři (-ích) pro zobrazení dostupnosti založené na celkovém (pevném) počtu návštěvníků na zdroje, které mohou "
538
- "být na volné při rezervaci zdrojů."
539
-
540
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3245
541
- #, php-format
542
- msgid ""
543
- "Be sure to match the maximum number of visitors for %sall booking resources%s with the number of visitors specified on the booking "
544
- "form."
545
- msgstr ""
546
- "Ujistěte se, aby odpovídal maximální počet návštěvníků pro %s všechny rezervační zdroje %s s počtem návštěvníků uvedenými na "
547
- "rezervačním formuláři."
548
-
549
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3260
550
- msgid "Check this box to dissable reservations, which can be stored in different booking resources."
551
- msgstr "Zaškrtněte, pokud chcete vypnout rezervace, které mohou být uloženy v různých rezervačních zdrojích."
552
-
553
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3263
554
- msgid "When checked, all reserved days must be at same booking resource otherwise error message will show."
555
- msgstr "Pokud je zaškrtnuto, jsou všechny rezervované dny ve stejné rezervaci zdrojů, jinak se zobrazí chybové hlášení."
556
-
557
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3292
558
- msgid "Use pending days as available"
559
- msgstr "Použijte, když jsou čekající dny k dispozici."
560
-
561
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3301
562
- msgid "Check this box if you want to show the pending days as available in calendars"
563
- msgstr "Zaškrtněte toto políčko, pokud chcete ukázat čekající dnů, jak je k dispozici v kalendářích"
564
-
565
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3318
566
- msgid ""
567
- "Warning!!! After you approved the specific booking(s), all your pending bookings of the same booking resource as an approved booking "
568
- "for the dates, which are intersect with dates of approved booking, will be automatically canceled!"
569
- msgstr ""
570
- "Varování !!! Poté, co schválíte zvláštní rezervaci (-e), všechny vaše čekající rezervace stejného rezervovaného zdroje jako "
571
- "schváleného rezervací pro data, která se protínají s daty schválené rezervace budou automaticky zrušeny!"
572
-
573
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3320
574
- msgid "Auto Cancel all pending bookings for the specific date(s), if some booking is approved for these date(s)"
575
- msgstr "Auto Zrušení všech čekajících rezervací za určitý den (-y), pokud některé rezervace jsou schválena pro tyto dny"
576
-
577
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3349
578
- msgid "Show availability in tooltip"
579
- msgstr "Ukázat dostupnost v poznámce"
580
-
581
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3365
582
- msgid "Availability Title"
583
- msgstr "Název dostupnosti"
584
-
585
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3402
586
- msgid "Use \"Check In\" date as available in calendar for booking resources with capacity higher then 1 for search results"
587
- msgstr "Použijte \"Příjezd \", hned jak je k dispozici v kalendáři s kapacitou vyšší než 1 ve výsledcích vyhledávání"
588
-
589
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3409
590
- msgid "Use \"Check Out\" date as available in calendar for booking resources with capacity higher then 1 search results"
591
- msgstr "Použijte termín \"Odhlášení \", hned jak je k dispozici v kalendáři s kapacitou vyšší než 1 výsledcích vyhledávání"
592
-
593
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3435
594
- msgid "Coupon Deleted"
595
- msgstr "Poukaz vymazán"
596
-
597
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3481
598
- msgid "Coupon created"
599
- msgstr "Poukaz vytvořen"
600
-
601
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3489
602
- msgid "Add New Discount Coupon"
603
- msgstr "Vložit Nový slevový poukaz"
604
-
605
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3496
606
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3600
607
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3641
608
- msgid "Coupon Code"
609
- msgstr "Kód kupónu"
610
-
611
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3499
612
- msgid "Enter coupon code."
613
- msgstr "Vlož kód kupónu"
614
-
615
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3504
616
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3601
617
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3644
618
- msgid "Savings"
619
- msgstr "Ukládání"
620
-
621
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3508
622
- msgid "Fixed Amount"
623
- msgstr "Pevná částka"
624
-
625
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3509
626
- msgid "Percentage Off"
627
- msgstr "Procento slevy"
628
-
629
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3512
630
- msgid "Enter number of fixed or percentage savings."
631
- msgstr "Vložte pevnou částku nebo procentuální slevu."
632
-
633
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3517
634
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3603
635
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3655
636
- msgid "Expiration Date"
637
- msgstr "Datum vypršení"
638
-
639
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3525
640
- msgid "Select Expiration Date of the coupon."
641
- msgstr "Zadejte Datum expirace kuponu"
642
-
643
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3531
644
- msgid "Minimum Booking Cost"
645
- msgstr "Minimální rezervační náklady"
646
-
647
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3534
648
- msgid "Enter minimum booking cost, when coupon is applicable."
649
- msgstr "Vlož minimální rezervační náklady pro použití kupónu."
650
-
651
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3545
652
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3604
653
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3657
654
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4943
655
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1251
656
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:755
657
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:654
658
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1193
659
- msgid "Resources"
660
- msgstr "Zdroje"
661
-
662
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3548
663
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3625
664
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:335
665
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/sync/wpbc-sync-gcal-feed.php:100
666
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-booking-select-widget.php:144
667
- msgid "All"
668
- msgstr "Vše"
669
-
670
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3561
671
- msgid "Select booking resources, where is possible to apply this coupon code."
672
- msgstr "Vyberte zdroje pro rezervaci, kde je možné použít tento kód kuponu."
673
-
674
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3568
675
- msgid "Add New Coupon"
676
- msgstr "Přidat nový kupón"
677
-
678
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3600
679
- msgid "The coupon code your customers will be using to receive the discount."
680
- msgstr "Kód kupónu budou vaši zákazníci používat pro čerpání slevy."
681
-
682
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3601
683
- msgid "The amount which will be saved. Enter only digits."
684
- msgstr "Částka, která se ušetří. Zadejte pouze čísla."
685
-
686
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3602
687
- msgid "The minimum total cost required to use the coupon"
688
- msgstr "Minimální totální náklady požadované pro použití kupónu"
689
-
690
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3602
691
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3650
692
- msgid "Minimum Purchase"
693
- msgstr "Minimální nákup"
694
-
695
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3603
696
- msgid "The date your coupon will expire"
697
- msgstr "Datum, kdy kupón bude expirovat"
698
-
699
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3604
700
- msgid "Resource list, which supports this coupon"
701
- msgstr "Zdrojový seznam, které kupóny jsou podporovány"
702
-
703
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3661
704
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1937
705
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:327
706
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:585
707
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:294
708
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:256
709
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:944
710
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:969
711
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1003
712
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1018
713
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1035
714
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1241
715
- msgid "Warning"
716
- msgstr "Varování"
717
-
718
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3661
719
- msgid "Do you really want to delete this item?"
720
- msgstr "Opravdu chcete tuto položku smazat?"
721
-
722
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3676
723
- #, php-format
724
- msgid "%s - coupon field, "
725
- msgstr "%s - pole pro kupón"
726
-
727
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3677
728
- #, php-format
729
- msgid "Example: %s "
730
- msgstr "Příklad: %s"
731
-
732
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3719
733
- msgid "Search Availability Form"
734
- msgstr "Hledat dostupný formulář"
735
-
736
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3724
737
- msgid "Inlinee Search Form Template"
738
- msgstr "V řádku vyhledávací formulář"
739
-
740
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3725
741
- msgid "Horizontal Search Form Template"
742
- msgstr "Horizontální vyhledávání formulář šablony"
743
-
744
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3726
745
- msgid "Standard Search Form Template"
746
- msgstr "Standardní vyhledávací formulář šablony"
747
-
748
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3728
749
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1707
750
- msgid "Reset current Form"
751
- msgstr "Vymaž aktuální formulář"
752
-
753
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3733
754
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3720
755
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3968
756
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1714
757
- msgid "Reset"
758
- msgstr "Vymaž"
759
-
760
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3754
761
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3799
762
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:225
763
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:252
764
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:245
765
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sermepa.php:207
766
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3982
767
- msgid "Use these shortcodes for customization: "
768
- msgstr "Používejte tyto krátké kódy úpravu:"
769
-
770
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3755
771
- #, php-format
772
- msgid "%s - search inside posts/pages which are part of this category, "
773
- msgstr "%s - hledej uvnitř komentářů/stránek, které jsou částí této kategorie,"
774
-
775
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3756
776
- #, php-format
777
- msgid "%s - search inside posts/pages which have this tag, "
778
- msgstr "%s - vyhledávání uvnitř komentářů/stránek, které mají tento tag,"
779
-
780
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3757
781
- #, php-format
782
- msgid "%s - check-in date, "
783
- msgstr "%s - Přihlášení"
784
-
785
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3758
786
- #, php-format
787
- msgid "%s - check-out date, "
788
- msgstr "%s - Odhlášení"
789
-
790
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3759
791
- #, php-format
792
- msgid "%s - default selection number of visitors, "
793
- msgstr "%s - výchozí výběr počet návštěvníků,"
794
-
795
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3760
796
- #, php-format
797
- msgid "Example: %s - custom number of visitor selections\""
798
- msgstr "Příklad: %s - počet návštěvníků ve výběru\""
799
-
800
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3761
801
- #, php-format
802
- msgid "%s - search button, "
803
- msgstr "%s - vyhledávací tlačítko,"
804
-
805
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3763
806
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3816
807
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/index.php:232
808
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2344
809
- msgid "HTML tags is accepted."
810
- msgstr "HTML tagy jsou schváleny"
811
-
812
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3775
813
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4009
814
- msgid "Search Results"
815
- msgstr "Výsledky hledání"
816
-
817
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3778
818
- msgid "Reset to default form"
819
- msgstr "Vymazat výchozí formulář"
820
-
821
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3800
822
- #, php-format
823
- msgid "%s - resource title, "
824
- msgstr "%s - zdrojový název"
825
-
826
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3801
827
- #, php-format
828
- msgid "%s - link to the page with booking form, "
829
- msgstr "%s - odkaz na stránku s rezervačním formulářem"
830
-
831
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3802
832
- #, php-format
833
- msgid "%s - availability of booking resource, "
834
- msgstr "%s - dostupnost rezervačních zdrojů,"
835
-
836
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3803
837
- #, php-format
838
- msgid "%s - maximum number of visitors for the booking resource, "
839
- msgstr "%s - maximální počet návštěvníků pro rezervaci zdrojů,"
840
-
841
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3804
842
- #, php-format
843
- msgid "%s - cost of booking the resource, "
844
- msgstr "%s - cena rezervace zdrojů"
845
-
846
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3805
847
- #, php-format
848
- msgid "%s - featured image, taken from the featured image associated with the post, "
849
- msgstr "% s - uváděný snímek pořízený z představoval obrazu souvisejícího s poštou,"
850
-
851
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3806
852
- #, php-format
853
- msgid "%s - booking info, taken from the excerpt associated with the post, "
854
- msgstr "%s - informace o rezervaci převzaté z výpisu spojené s poštou"
855
-
856
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3808
857
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:676
858
- msgid "Full cost of the booking."
859
- msgstr "Plné náklady za rezervaci."
860
-
861
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3809
862
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:678
863
- msgid "Cost of the booking for the selected dates only."
864
- msgstr "Náklady za rezervaci pro vybrané datumy."
865
-
866
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3810
867
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:680
868
- msgid "Additional cost, which depends on the fields selection in the form."
869
- msgstr "Přídavné náklady, které jsou závislé na výběru polí ve formuláři."
870
-
871
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3811
872
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:682
873
- msgid "The deposit cost of the booking."
874
- msgstr "Záloha nákladů za rezervaci."
875
-
876
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3812
877
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:684
878
- msgid "Balance cost of the booking - difference between deposit and full cost."
879
- msgstr "Rozdíl nákladů za rezervaci - rozdíl mezi zálohou a plnými náklady."
880
-
881
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3828
882
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4015
883
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:459
884
- msgid "Help Info"
885
- msgstr "Nápověda informace"
886
-
887
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3844
888
- msgid "CSS customization of search form and search results you can make at this file"
889
- msgstr "přizpůsobení vyhledávacího formuláře a výsledky hledání můžete provést v tomto souboru CSS"
890
-
891
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3850
892
- #, php-format
893
- msgid "If you do not see search results at front-end side of your website, please check troubleshooting instruction %shere%s"
894
- msgstr "Pokud nevidíte výsledky vyhledávání na této části webových stránek, prosím zkontrolujte návod řešení problémů %s zde%s"
895
-
896
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3867
897
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3877
898
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3885
899
- msgid "Check in"
900
- msgstr "Přihlášení"
901
-
902
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3868
903
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3878
904
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3886
905
- msgid "Check out"
906
- msgstr "Odhlášení"
907
-
908
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3869
909
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3879
910
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3887
911
- msgid "Guests"
912
- msgstr "Návštěvníci"
913
-
914
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3899
915
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2293
916
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2354
917
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4965
918
- msgid "Availability"
919
- msgstr "Dostupnost"
920
-
921
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3899
922
- msgid "Max. persons"
923
- msgstr "Maximální počet osob"
924
-
925
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3926
926
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4012
927
- msgid "Search Cache"
928
- msgstr "Cache vyhledávání"
929
-
930
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3929
931
- msgid "Reset Search Cache"
932
- msgstr "Resetovat vyhledávací cache"
933
-
934
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3935
935
- msgid "Cache expiration"
936
- msgstr "Expirace cache"
937
-
938
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3941
939
- msgid "hour(s)"
940
- msgstr "hodina/y"
941
-
942
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3946
943
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3203
944
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3391
945
- msgid "day(s)"
946
- msgstr "den/y"
947
-
948
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3950
949
- msgid "Select time of cache expiration"
950
- msgstr "Urči čas pro expiraci cache"
951
-
952
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3958
953
- msgid "Cache will expire:"
954
- msgstr "Cache expiruje:"
955
-
956
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:3986
957
- #, php-format
958
- msgid "Found: %s booking forms inside of posts or pages "
959
- msgstr "Nalezeno:% s rezervační formuláře uvnitř příspěvků nebo stránek"
960
-
961
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4006
962
- msgid "Search Form"
963
- msgstr "Vyhledávací formulář"
964
-
965
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4085
966
- msgid "Parent Resource"
967
- msgstr "Rodičovský zdroj"
968
-
969
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4110
970
- msgid "Max visitors"
971
- msgstr "Max návštěvníků"
972
-
973
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4157
974
- msgid "Capacity: "
975
- msgstr "Kapacita:"
976
-
977
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4176
978
- msgid "Select parent resource, if you want that parent resource to increase capacity."
979
- msgstr "Vyber rodičovský zdroj, když chceš tomuto rodičovskému zdroji zvýšit kapacitu."
980
-
981
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4187
982
- msgid "Set priority of resource - resource with higher priority will be reserved firstly."
983
- msgstr "Nastav prioritu zdrojů - zdroje s vyšší prioritou budou rezervovány dříve."
984
-
985
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4198
986
- msgid "Resources count"
987
- msgstr "Počet zdrojů"
988
-
989
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4205
990
- msgid "Create several booking resources for one time"
991
- msgstr "Vytvoř několik rezervačních zdrojů v jednu chvíli"
992
-
993
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4219
994
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2366
995
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-booking-select-widget.php:207
996
- msgid "Default form"
997
- msgstr "Výchozí formulář"
998
-
999
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4224
1000
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4428
1001
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4434
1002
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4482
1003
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:854
1004
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:1061
1005
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:1105
1006
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2368
1007
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4538
1008
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-booking-select-widget.php:211
1009
- msgid "Standard"
1010
- msgstr "Standard"
1011
-
1012
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4229
1013
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-booking-select-widget.php:219
1014
- msgid "Select default custom booking form"
1015
- msgstr "Vyberte výchozí rezervační formulář"
1016
-
1017
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4321
1018
- msgid "Available: "
1019
- msgstr "Dostupné:"
1020
-
1021
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4428
1022
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:653
1023
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4158
1024
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:742
1025
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1806
1026
- msgid "Default"
1027
- msgstr "Výchozí"
1028
-
1029
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4429
1030
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4435
1031
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4470
1032
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4471
1033
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4483
1034
- msgid "Superior"
1035
- msgstr "Superior"
1036
-
1037
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4429
1038
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2427
1039
- msgid "Resource #1"
1040
- msgstr "Zdroj #1"
1041
-
1042
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4430
1043
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4436
1044
- msgid "Presidential Suite"
1045
- msgstr "Prezidentské apartmá"
1046
-
1047
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4430
1048
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2428
1049
- msgid "Resource #2"
1050
- msgstr "Zdroj #2"
1051
-
1052
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4431
1053
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4437
1054
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1432
1055
- msgid "Royal Villa"
1056
- msgstr "Královská vila"
1057
-
1058
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_l.php:4431
1059
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2429
1060
- msgid "Resource #3"
1061
- msgstr "Zdroj #3"
1062
-
1063
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:241
1064
- msgid "night(s)"
1065
- msgstr "noc (-i)"
1066
-
1067
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:252 w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:116
1068
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4031
1069
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4045
1070
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4067
1071
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4083
1072
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4094
1073
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4113
1074
- msgid "Adults"
1075
- msgstr "Dospělí"
1076
-
1077
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:252 w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:116
1078
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4031
1079
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4045
1080
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4067
1081
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4084
1082
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4095
1083
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4114
1084
- msgid "Children"
1085
- msgstr "Děti"
1086
-
1087
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:281 w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:310
1088
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3022
1089
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3065
1090
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3107
1091
- msgid "per 1 day"
1092
- msgstr "za 1 den"
1093
-
1094
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:282 w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:311
1095
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3066
1096
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3106
1097
- msgid "from the cost of 1 day "
1098
- msgstr "z nákladu na 1 den"
1099
-
1100
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:283 w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:312
1101
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3067
1102
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3108
1103
- #, php-format
1104
- msgid "Additional cost in %s per 1 day"
1105
- msgstr "Další náklady v %s za 1 den"
1106
-
1107
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:284 w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:313
1108
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:314
1109
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3071
1110
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3072
1111
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3114
1112
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3115
1113
- msgid " for all days!"
1114
- msgstr " pro všechny dny\""
1115
-
1116
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:285
1117
- msgid "for all days!"
1118
- msgstr "pro všechny dny!"
1119
-
1120
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:851 w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:856
1121
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4534
1122
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4540
1123
- msgid "Custom Form"
1124
- msgstr "Zákaznický formulář"
1125
-
1126
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:866
1127
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4555
1128
- msgid "Load selected booking form"
1129
- msgstr "Načíst vybraný rezervační formulář"
1130
-
1131
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:868
1132
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4557
1133
- msgid "Load"
1134
- msgstr "Načíst"
1135
-
1136
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:876
1137
- msgid "Delete selected booking form"
1138
- msgstr "Smazat vybraný rezervační formulář"
1139
-
1140
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:879
1141
- msgid "Do you really want to delete selected booking form ?"
1142
- msgstr "Opravdu chcete vymazat vybranou rezervaci?"
1143
-
1144
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:886
1145
- msgid "Add new custom form"
1146
- msgstr "Vytvořit nový formulář"
1147
-
1148
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:887
1149
- msgid "Add New Custom Form"
1150
- msgstr "Vytvořit Nový Formulář"
1151
-
1152
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:892
1153
- msgid "Type the name of booking form"
1154
- msgstr "Zadej název rezervačního formuláře"
1155
-
1156
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:895
1157
- msgid "Create new form"
1158
- msgstr "Vytvořit nový formulář"
1159
-
1160
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:898
1161
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3714
1162
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3962
1163
- msgid "Create"
1164
- msgstr "Vytvořit"
1165
-
1166
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:900
1167
- msgid "Delete form"
1168
- msgstr "Smazat formulář"
1169
-
1170
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:904 w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:451
1171
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:491
1172
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:144
1173
- msgid "Cancel"
1174
- msgstr "Zrušit"
1175
-
1176
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:934
1177
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:511
1178
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-ajax.php:213
1179
- msgid "Deleted"
1180
- msgstr "Smazáno"
1181
-
1182
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:941
1183
- msgid "There are no extended booking forms"
1184
- msgstr "Nejsou žádné rozšířené rezervační formuláře"
1185
-
1186
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:1059
1187
- msgid "Booking form type:"
1188
- msgstr "Rezervační formulář:"
1189
-
1190
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:1066
1191
- msgid "Select type of booking form"
1192
- msgstr "Vyberte typ rezervačního formuláře"
1193
-
1194
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:1100
1195
- msgid "Booking Form"
1196
- msgstr "Rezervační formulář"
1197
-
1198
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:1180
1199
- msgid "Standard booking resource cost"
1200
- msgstr "Standardní náklady rezervačních zdrojů"
1201
-
1202
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:1181
1203
- msgid "Total booking resource cost"
1204
- msgstr "Celkové náklady na rezervační zdroje"
1205
-
1206
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:1525
1207
- #, php-format
1208
- msgid "%s - show cost hint for full booking in real time, depending on number of days selected and form elements."
1209
- msgstr "%s - ukaž náklady nápověda pro plné rezervaci v reálném čase, v závislosti na počtu zvolených dní a formulářových prvků."
1210
-
1211
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:1526
1212
- #, php-format
1213
- msgid "Example: %sThe full cost of payment: %s"
1214
- msgstr "Příklad: %s Plné náklady za platby: %s"
1215
-
1216
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:1527
1217
- #, php-format
1218
- msgid "%s - show hint of original booking cost without additional costs for full booking in real time, depends only from days selection."
1219
- msgstr ""
1220
- "%s - ukaž nápovědu k rezervační náklady bez dalších nákladů pro plnou rezervaci v aktuálním čase, v závislosti jen na vybraných dnech."
1221
-
1222
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:1528
1223
- #, php-format
1224
- msgid "Example: %sThe original cost for payment: %s "
1225
- msgstr "Example: %s Originální náklady za platby: %s"
1226
-
1227
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:1529
1228
- #, php-format
1229
- msgid "%s - show cost hint of additional booking cost, which depends from selection of form elements."
1230
- msgstr "%s - ukaž náklady za další rezervační náklady, které závisí z výběru elementu formuláře."
1231
-
1232
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:1530
1233
- #, php-format
1234
- msgid "Example: %sThe additional cost for payment: %s "
1235
- msgstr "Example: %s Další náklady za platby: %s"
1236
-
1237
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:1531
1238
- #, php-format
1239
- msgid "%s - enter direct cost at admin panel at page: "
1240
- msgstr "%s - vlož přímé náklady v administračním panelu na stránce:"
1241
-
1242
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:1531
1243
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:643
1244
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-class.php:710
1245
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1179
1246
- msgid "Add booking"
1247
- msgstr "Přidat rezervaci"
1248
-
1249
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:1532
1250
- #, php-format
1251
- msgid "Example: %s"
1252
- msgstr "Příklad: %s"
1253
-
1254
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2086
1255
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-booking-functions.php:322
1256
- msgid "yes"
1257
- msgstr "ano"
1258
-
1259
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2288
1260
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2292
1261
- msgid "Setting rate or cost, which is depend from number of selected days for the resource"
1262
- msgstr "Nastavení sazby nebo ceny, která je závislá od počtu zvolených dní za zdroj"
1263
-
1264
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2289
1265
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2326
1266
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2637
1267
- msgid "Rates"
1268
- msgstr "Sazby"
1269
-
1270
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2289
1271
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2331
1272
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2335
1273
- msgid "Valuation days"
1274
- msgstr "Oceněné dny"
1275
-
1276
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2289
1277
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:444
1278
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:454
1279
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:766
1280
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:551
1281
- msgid "Deposit"
1282
- msgstr "Depozit"
1283
-
1284
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2297
1285
- msgid "Setting the default form for the specific resource"
1286
- msgstr "Nastavení výchozí formulář pro konkrétní zdroj"
1287
-
1288
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2298
1289
- msgid "Default Form"
1290
- msgstr "Výchozí formulář"
1291
-
1292
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2334
1293
- msgid "Set the cost based on the number of days selected for the reservation"
1294
- msgstr "Nastavení nákladů zaležených na počtu vybraných dnů pro rezervaci"
1295
-
1296
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2335
1297
- msgid "Activation of this feature is require setting cost per day or cost per night"
1298
- msgstr "Aktivace této možnosti je doporučeným nastavením nákladů za den nebo nákladů za noc"
1299
-
1300
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2342
1301
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3364
1302
- msgid "Deposit amount"
1303
- msgstr "Částka v depozitu"
1304
-
1305
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2478
1306
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2489
1307
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2494
1308
- msgid "unavailable"
1309
- msgstr "nedostupný"
1310
-
1311
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2479
1312
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2490
1313
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2493
1314
- msgid "available"
1315
- msgstr "dostupný"
1316
-
1317
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2481
1318
- msgid "Availability booking type"
1319
- msgstr "Dostupná rezervační možnost"
1320
-
1321
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2486
1322
- #, php-format
1323
- msgid "All days for %s"
1324
- msgstr "Všechny dny za %s"
1325
-
1326
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2496
1327
- #, php-format
1328
- msgid "Select %s days by activating specific season filter below or %sadd new season filter%s"
1329
- msgstr "Vyberte %s dny aktivací specifické sezóně filtru nižší nebo%s přidej nový filtr sezony%s"
1330
-
1331
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2507
1332
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2529
1333
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4272
1334
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4293
1335
- msgid "Season Filter Name"
1336
- msgstr "Jméno sezonního filtru"
1337
-
1338
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2508
1339
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2530
1340
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2640
1341
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2711
1342
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4294
1343
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:418
1344
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:564
1345
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/bank-transfer.php:302
1346
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/pay-cash.php:90
1347
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:485
1348
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-edit-toolbar-buttons.php:493
1349
- msgid "Description"
1350
- msgstr "Popis"
1351
-
1352
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2526
1353
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2667
1354
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2995
1355
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3046
1356
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3176
1357
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3357
1358
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:856
1359
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:107
1360
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:191
1361
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:211
1362
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:232
1363
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3448
1364
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3530
1365
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3601
1366
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3687
1367
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3777
1368
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/sync/wpbc-sync-gcal-api.php:91
1369
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1482
1370
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1525
1371
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1570
1372
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1616
1373
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1670
1374
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1713
1375
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1946
1376
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2027
1377
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2099
1378
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2187
1379
- msgid "Active"
1380
- msgstr "Aktivovat"
1381
-
1382
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2529
1383
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2710
1384
- msgid "Edit season filter"
1385
- msgstr "Uprav sezonní filtry"
1386
-
1387
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2617
1388
- msgid "Seasonal rates of booking resource"
1389
- msgstr "Sezónní sazby z rezervačního zdroje"
1390
-
1391
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2623
1392
- #, php-format
1393
- msgid ""
1394
- "Enter seasonal rate(s) (cost diference in %s from standard cost %s or a fixed cost) of the booking resource (%s) or %sAdd a new "
1395
- "seasonal filter%s"
1396
- msgstr ""
1397
- "Zadejte sezónní kurz(y) (rozdíl v nákladech v %s od standardních nákladů %s nebo fixní náklady) rezervačního zdroje (%s), nebo %s "
1398
- "Přidat nový sezónní filtr %s"
1399
-
1400
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2638
1401
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2691
1402
- msgid "Final cost"
1403
- msgstr "Celkové náklady"
1404
-
1405
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2639
1406
- msgid "Season Filter"
1407
- msgstr "Sezonní Filtr"
1408
-
1409
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2672
1410
- msgid "Rate"
1411
- msgstr "Sazba"
1412
-
1413
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2681
1414
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2701
1415
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2005
1416
- msgid "for 1 day"
1417
- msgstr "za 1 den"
1418
-
1419
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2682
1420
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2702
1421
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2006
1422
- msgid "for 1 night"
1423
- msgstr "za 1 noc"
1424
-
1425
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2683
1426
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2703
1427
- msgid "fixed deposit"
1428
- msgstr "fixní depozit"
1429
-
1430
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2684
1431
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2704
1432
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2008
1433
- msgid "for 1 hour"
1434
- msgstr "za 1 hodinu"
1435
-
1436
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2710
1437
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3704
1438
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3952
1439
- msgid "Filter Name"
1440
- msgstr "Název filtru"
1441
-
1442
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2718
1443
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2958
1444
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3453
1445
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:340
1446
- msgid "Note!"
1447
- msgstr "Poznámka!"
1448
-
1449
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2718
1450
- msgid "Check boxe(s) at left side if you want to activate specific cost."
1451
- msgstr "Zkontrolujte box(y) na levé straně, pokud chcete aktivovat specifické náklady."
1452
-
1453
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2722
1454
- msgid "Update Rates"
1455
- msgstr "Aktualizovat sazby"
1456
-
1457
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2957
1458
- msgid "Set cost of booking resource based on the number of days selected"
1459
- msgstr "Sada nákladů na rezervaci zdrojů na základě počtu vybraných dnů"
1460
-
1461
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2958
1462
- #, php-format
1463
- msgid "If you add costs here, %srates%s for this booking resource will not take effect !!!"
1464
- msgstr "Když přidáte náklady zde %s náklady %s nebude to mít vliv na rezervační zdroje!!!"
1465
-
1466
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2962
1467
- #, php-format
1468
- msgid "Cost setings at %stop have higher priority%s than other costs of same type at the %sbottom%s of the list."
1469
- msgstr "Nastavení náklady v %s zastavit mají vyšší prioritu %s než s dalšími náklady stejného typu %s dolním%s seznamu."
1470
-
1471
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2963
1472
- #, php-format
1473
- msgid "Please create all %s terms firstly %s(from higher priority to lower)%s, then terms %s and after terms %s"
1474
- msgstr "Prosím vytvořte nejdříve všechny %s podmínky %s (od nejvyšší priority k nejnižší) %s, poté podmínky %s a poté podmínky %s"
1475
-
1476
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2963
1477
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2965
1478
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3078
1479
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3189
1480
- msgid "Together"
1481
- msgstr "Společně"
1482
-
1483
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2963
1484
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2965
1485
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3002
1486
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3076
1487
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3187
1488
- msgid "For"
1489
- msgstr "Pro"
1490
-
1491
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2963
1492
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2965
1493
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3077
1494
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3188
1495
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3534
1496
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:877
1497
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3461
1498
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3536
1499
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3621
1500
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3708
1501
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3798
1502
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:581
1503
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1959
1504
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2033
1505
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2119
1506
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2208
1507
- msgid "From"
1508
- msgstr "Z"
1509
-
1510
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2963
1511
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2965
1512
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3454
1513
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1952
1514
- msgid "To"
1515
- msgstr "Komu"
1516
-
1517
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2965
1518
- #, php-format
1519
- msgid "%s and %s terms have higher priority than a range %s days."
1520
- msgstr "%s a %s podmínky mají vyšší prioritu než rozsah %s dní."
1521
-
1522
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2968
1523
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:853
1524
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-notices.php:25
1525
- msgid "Warning!"
1526
- msgstr "Varování!"
1527
-
1528
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2969
1529
- msgid ""
1530
- "Specific cost will take affect, only if it active (the box at the left side is checked) and if \"Check In\" (start) date belong to "
1531
- "selected season filter or if set \"Any days\"."
1532
- msgstr ""
1533
- "Konkrétní náklady se projeví pouze v případě, že je aktivní (box na levé straně je zaškrtnut), a je-li \"Příjezd \" (start) datum "
1534
- "patří k vybranému období filtru, nebo je-li nastavena \"Jakékoliv dny, \"."
1535
-
1536
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2978
1537
- msgid "Number of Days"
1538
- msgstr "Počet dní"
1539
-
1540
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2979
1541
- msgid "Cost Settings"
1542
- msgstr "Nastavení nákladů"
1543
-
1544
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:2980
1545
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3027
1546
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3124
1547
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3218
1548
- msgid "Season Filter of Check In date"
1549
- msgstr "Sezonní filtr z termínu příjezdu"
1550
-
1551
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3004
1552
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3080
1553
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3192
1554
- msgid "Day Number(s)"
1555
- msgstr "Počet dní"
1556
-
1557
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3010
1558
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3086
1559
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3198
1560
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3534
1561
- msgid "to"
1562
- msgstr "do"
1563
-
1564
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3014
1565
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3092
1566
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2176
1567
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:805
1568
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:292
1569
- msgid "day"
1570
- msgstr "den"
1571
-
1572
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3018
1573
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3099
1574
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3208
1575
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:344 w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:378
1576
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_p.php:376 w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:282
1577
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:304 w:\www\home\dev\www\wp-content\plugins\booking\./inc/lib_s.php:309
1578
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/authorizenet.php:445
1579
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:455
1580
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/paypal.php:767
1581
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/sage.php:552
1582
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:832
1583
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:833
1584
- msgid "Cost"
1585
- msgstr "Náklady"
1586
-
1587
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3029
1588
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3126
1589
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3220
1590
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3407
1591
- msgid "Any days"
1592
- msgstr "Jakékoliv dny"
1593
-
1594
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3093
1595
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2179
1596
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:618
1597
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:682
1598
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:808
1599
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:293
1600
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:294
1601
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:295
1602
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:296
1603
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:297
1604
- msgid "days"
1605
- msgstr "dny"
1606
-
1607
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3137
1608
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3231
1609
- msgid "Remove"
1610
- msgstr "Odstranit"
1611
-
1612
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3150
1613
- msgid "Add new cost"
1614
- msgstr "Přidat nové náklady"
1615
-
1616
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3186
1617
- msgid "for all days"
1618
- msgstr "Pro všechny dny"
1619
-
1620
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3330
1621
- msgid "Set amount of deposit payment"
1622
- msgstr "Nastavení množství zaplacení platby"
1623
-
1624
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3339
1625
- msgid "Deposit payment total"
1626
- msgstr "Celková platba"
1627
-
1628
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3342
1629
- msgid "Deposit payment is not active for booking resource"
1630
- msgstr "Platba není aktivní pro rezervované zdroje"
1631
-
1632
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3349
1633
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:847
1634
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3439
1635
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3521
1636
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3592
1637
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3679
1638
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3768
1639
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/sync/wpbc-sync-gcal-api.php:82
1640
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1507
1641
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1937
1642
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2018
1643
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2090
1644
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2179
1645
- msgid "Status"
1646
- msgstr "Status"
1647
-
1648
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3358
1649
- msgid "deposit payment for booking resource"
1650
- msgstr "záloha platba za rezervaci zdrojů"
1651
-
1652
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3373
1653
- msgid "fixed total in"
1654
- msgstr "celkový součet v"
1655
-
1656
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3374
1657
- msgid "of payment"
1658
- msgstr "Tatplatby"
1659
-
1660
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3380
1661
- msgid "Conditions"
1662
- msgstr "Podmínky"
1663
-
1664
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3383
1665
- #, php-format
1666
- msgid "Show deposit payment form, only if difference between %sToday%s and %sCheck In%s days more than"
1667
- msgstr "Zobrazit zaplacení zálohy formu, pouze tehdy, pokud rozdíl mezi %s dnes %s a %s příjezd %s dny je více než"
1668
-
1669
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3404
1670
- #, php-format
1671
- msgid "Show deposit payment form, only if %sCheck In%s day inside of this %sSeason Filter%s"
1672
- msgstr "Zobrazit formulář placení depozitu jen když %sSezonní Filtr%s obsahuje %sPřihlášení%s"
1673
-
1674
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3423
1675
- msgid "Update Deposit"
1676
- msgstr "Aktualizovat zálohu"
1677
-
1678
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3447
1679
- msgid "Deposit payment"
1680
- msgstr "Zálohová platba"
1681
-
1682
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3452
1683
- #, php-format
1684
- msgid ""
1685
- "Check this box if you want to use the %sdeposit%s total %spayment%s on the payment form, instead of the full total of the booking."
1686
- msgstr "Zaškrtněte toto políčko, pokud chcete použít %s vklad%s celkem %s platbu %s na platební formuláře, namísto plné rezervace."
1687
-
1688
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3453
1689
- #, php-format
1690
- msgid " You can configure the deposit payment for your booking resources %shere%s."
1691
- msgstr "Zálohovou platbu za Vaše rezervační zdroje můžete upravit %s zde %s ."
1692
-
1693
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3471
1694
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3751
1695
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:116
1696
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:153
1697
- msgid "Su"
1698
- msgstr "Ned"
1699
-
1700
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3471
1701
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3751
1702
- msgid "Mo"
1703
- msgstr "Pon"
1704
-
1705
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3471
1706
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3751
1707
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:116
1708
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:153
1709
- msgid "Tu"
1710
- msgstr "Úte"
1711
-
1712
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3471
1713
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3751
1714
- msgid "We"
1715
- msgstr "Stř"
1716
-
1717
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3471
1718
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3751
1719
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:116
1720
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:153
1721
- msgid "Th"
1722
- msgstr "Čtv"
1723
-
1724
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3471
1725
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3751
1726
- msgid "Fr"
1727
- msgstr "Pát"
1728
-
1729
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3471
1730
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3751
1731
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:116
1732
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:153
1733
- msgid "Sa"
1734
- msgstr "Sob"
1735
-
1736
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3472
1737
- msgid "Jan"
1738
- msgstr "Led"
1739
-
1740
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3472
1741
- msgid "Feb"
1742
- msgstr "Úno"
1743
-
1744
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3472
1745
- msgid "Mar"
1746
- msgstr "Bře"
1747
-
1748
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3472
1749
- msgid "Apr"
1750
- msgstr "Dub"
1751
-
1752
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3472
1753
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4127
1754
- msgid "May"
1755
- msgstr "Kvě"
1756
-
1757
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3472
1758
- msgid "Jun"
1759
- msgstr "Črn"
1760
-
1761
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3472
1762
- msgid "Jul"
1763
- msgstr "Čvc"
1764
-
1765
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3472
1766
- msgid "Aug"
1767
- msgstr "Srp"
1768
-
1769
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3472
1770
- msgid "Sep"
1771
- msgstr "Zář"
1772
-
1773
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3472
1774
- msgid "Oct"
1775
- msgstr "Říj"
1776
-
1777
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3472
1778
- msgid "Nov"
1779
- msgstr "Lis"
1780
-
1781
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3472
1782
- msgid "Dec"
1783
- msgstr "Pro"
1784
-
1785
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3531
1786
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3550
1787
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3570
1788
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3591
1789
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3608
1790
- msgid "No days"
1791
- msgstr "Žádné dny"
1792
-
1793
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3534
1794
- msgid "time"
1795
- msgstr "čas"
1796
-
1797
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3552
1798
- msgid "Every"
1799
- msgstr "Každý"
1800
-
1801
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3567
1802
- msgid "Each day "
1803
- msgstr "Každý den"
1804
-
1805
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3568
1806
- msgid "on each day "
1807
- msgstr "na každý den"
1808
-
1809
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3572
1810
- msgid "On each "
1811
- msgstr "Na každý"
1812
-
1813
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3573
1814
- msgid "on each "
1815
- msgstr "na každý"
1816
-
1817
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3589
1818
- msgid "of every month "
1819
- msgstr "Každý měsíc"
1820
-
1821
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3593
1822
- msgid "of"
1823
- msgstr "z"
1824
-
1825
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3662
1826
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3901
1827
- msgid "Filter saved"
1828
- msgstr "Uložený filtr"
1829
-
1830
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3698
1831
- msgid "Specific Dates Filter"
1832
- msgstr "Specifický datumový filtr"
1833
-
1834
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3707
1835
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3955
1836
- msgid "Type filter name"
1837
- msgstr "Vlož název filtru"
1838
-
1839
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3712
1840
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3818
1841
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3960
1842
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4219
1843
- msgid "Create new season filter"
1844
- msgstr "Vytvoř nový sezónní filtr"
1845
-
1846
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3818
1847
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4219
1848
- msgid "Create New Season Filter"
1849
- msgstr "Vytvořit Nový Sezónní Filter"
1850
-
1851
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3818
1852
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4219
1853
- msgid "Save changes"
1854
- msgstr "Uložit změny"
1855
-
1856
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3946
1857
- msgid "Conditional Dates Filter"
1858
- msgstr "Podmíněný Datový Filtr"
1859
-
1860
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3980
1861
- msgid "Days of week"
1862
- msgstr "Dny v týdnu"
1863
-
1864
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3988
1865
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1753
1866
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1842
1867
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:451
1868
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:597
1869
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:110
1870
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:134
1871
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:135
1872
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:140
1873
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:440
1874
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:475
1875
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:442
1876
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:474
1877
- msgid "Sunday"
1878
- msgstr "Neděle"
1879
-
1880
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:3994
1881
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1755
1882
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1846
1883
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:452
1884
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:598
1885
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:110
1886
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:134
1887
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:135
1888
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:140
1889
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:440
1890
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:475
1891
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:443
1892
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:478
1893
- msgid "Monday"
1894
- msgstr "Pondělí"
1895
-
1896
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4000
1897
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1757
1898
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1850
1899
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:453
1900
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:599
1901
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:110
1902
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:134
1903
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:135
1904
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:140
1905
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:440
1906
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:475
1907
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:444
1908
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:482
1909
- msgid "Tuesday"
1910
- msgstr "Úterý"
1911
-
1912
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4006
1913
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1759
1914
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1854
1915
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:454
1916
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:600
1917
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:110
1918
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:134
1919
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:135
1920
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:140
1921
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:440
1922
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:475
1923
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:445
1924
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:486
1925
- msgid "Wednesday"
1926
- msgstr "Středa"
1927
-
1928
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4012
1929
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1761
1930
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1858
1931
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:455
1932
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:601
1933
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:110
1934
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:134
1935
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:135
1936
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:140
1937
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:440
1938
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:475
1939
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:446
1940
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:490
1941
- msgid "Thursday"
1942
- msgstr "Čtvrtek"
1943
-
1944
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4018
1945
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1763
1946
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1862
1947
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:456
1948
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:602
1949
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:110
1950
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:134
1951
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:135
1952
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:140
1953
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:440
1954
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:475
1955
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:447
1956
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:494
1957
- msgid "Friday"
1958
- msgstr "Pátek"
1959
-
1960
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4024
1961
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1765
1962
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1866
1963
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:457
1964
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:603
1965
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:110
1966
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:134
1967
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:135
1968
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:140
1969
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:440
1970
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-timeline.php:475
1971
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:448
1972
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:498
1973
- msgid "Saturday"
1974
- msgstr "Sobota"
1975
-
1976
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4036
1977
- msgid "Days of month"
1978
- msgstr "Dny v měsíci"
1979
-
1980
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4116
1981
- msgid "Months"
1982
- msgstr "Měsíce"
1983
-
1984
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4123
1985
- msgid "January"
1986
- msgstr "Leden"
1987
-
1988
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4124
1989
- msgid "February"
1990
- msgstr "Únor"
1991
-
1992
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4125
1993
- msgid "March"
1994
- msgstr "Březen"
1995
-
1996
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4126
1997
- msgid "April"
1998
- msgstr "Duben"
1999
-
2000
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4128
2001
- msgid "June"
2002
- msgstr "Červen"
2003
-
2004
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4147
2005
- msgid "July"
2006
- msgstr "Červenec"
2007
-
2008
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4148
2009
- msgid "August"
2010
- msgstr "Srpen"
2011
-
2012
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4149
2013
- msgid "September"
2014
- msgstr "Září"
2015
-
2016
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4150
2017
- msgid "October"
2018
- msgstr "Říjen"
2019
-
2020
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4151
2021
- msgid "November"
2022
- msgstr "Listopad"
2023
-
2024
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4152
2025
- msgid "December"
2026
- msgstr "Prosinec"
2027
-
2028
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4176
2029
- msgid "Years"
2030
- msgstr "Roky"
2031
-
2032
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4246
2033
- msgid "Filter deleted successfully"
2034
- msgstr "Filtr byl úspěšně vymazán"
2035
-
2036
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4254
2037
- msgid "Create dates filter"
2038
- msgstr "Vytvoř datový filtr"
2039
-
2040
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4257
2041
- msgid "Create conditional days filter"
2042
- msgstr "Vytvořit filtr - podmíněné dny"
2043
-
2044
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4266
2045
- msgid "Listing of season filters"
2046
- msgstr "Seznam rezervací"
2047
-
2048
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4273
2049
- msgid "Filters"
2050
- msgstr "Filtry"
2051
-
2052
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4297
2053
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4299
2054
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4834
2055
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1395
2056
- msgid "Edit"
2057
- msgstr "Upravit"
2058
-
2059
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4302
2060
- msgid "Do you really want to delete?"
2061
- msgstr "Opravdu to chcete smazat?"
2062
-
2063
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4343
2064
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:634
2065
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-notices.php:104
2066
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:936
2067
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1028
2068
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1604
2069
- msgid "Hide"
2070
- msgstr "Ukázat/skrýt"
2071
-
2072
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4344
2073
- msgid "Showing cost in date cell"
2074
- msgstr "Ukázat cenu v datumové buňce"
2075
-
2076
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4355
2077
- #, php-format
2078
- msgid " Check this box to display the %sdaily cost at the date cells%s in the calendar(s)."
2079
- msgstr "Zaškrtněte pro zobrazení %s denní náklady na datu buněk %s v kalendáři."
2080
-
2081
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4363
2082
- msgid "Currency symbol"
2083
- msgstr "Formát měny"
2084
-
2085
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4387
2086
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1599
2087
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:547
2088
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:597
2089
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:870
2090
- msgid "Custom"
2091
- msgstr "Vlastní"
2092
-
2093
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4392
2094
- #, php-format
2095
- msgid "Type your %scurrency symbol%s to display near daily cost in date cells. %sDocumentation on currency symbols%s"
2096
- msgstr "Zadejte Váš %s symbol měny %s k zobrazení u denních nákladů na data buňkách. %s dokumentace k symbolů měn%s"
2097
-
2098
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4404
2099
- msgid "Showing cost in tooltip"
2100
- msgstr "Zobrazení nákladů v poznámce"
2101
-
2102
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4415
2103
- msgid " Check this box to display the daily cost with a tooltip when mouse hovers over each day on the calendar(s)."
2104
- msgstr "Zaškrtněte, pokud chcete zobrazit denní náklady s bublině, kdy myši nad každý den v kalendáři."
2105
-
2106
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4423
2107
- msgid "Cost Title"
2108
- msgstr "Název nákladů"
2109
-
2110
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4425
2111
- #, php-format
2112
- msgid "Type your %scost%s description"
2113
- msgstr "Vložte popis Vašich %s náklad %s"
2114
-
2115
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4569
2116
- msgid "Advanced cost management"
2117
- msgstr "Pokročilé nastavení nákladů"
2118
-
2119
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4588
2120
- msgid "Configure Additional cost for the form"
2121
- msgstr "Upravit další náklady za formuláři"
2122
-
2123
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4631
2124
- msgid "Additional cost for"
2125
- msgstr "Přídavné náklady za"
2126
-
2127
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4702
2128
- msgid ""
2129
- "Check this box if you want that specific additional cost, which configured as percentage for some option, apply to other additional "
2130
- "fixed costs and not only to original booking cost."
2131
- msgstr ""
2132
- "Zaškrtněte toto políčko, pokud chcete, aby konkrétní dodatečné náklady, které jsou nakonfigurované jako procentní podíl na nějaké "
2133
- "možnost, použít i pro jiné dodatečné fixní náklady, a to nejen na původní rezervace cenu."
2134
-
2135
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4708
2136
- msgid "Configure additional cost, which depend from selection of selectbox(es) and checkbox(es)."
2137
- msgstr "Nastavte další náklady, které závisí na výběru polí (selectbox a checkbox)."
2138
-
2139
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4711
2140
- #, php-format
2141
- msgid "Fields %s(selectbox(es) and checkbox(es))%s are shown here automatically if they exist in the %sbooking form%s."
2142
- msgstr "Pole %s (selectbox a checkbox) %s jsou automaticky zobrazovány, pokud existují v %s rezervačním formuláři %s."
2143
-
2144
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4718
2145
- msgid "Enter additional cost in formats:"
2146
- msgstr "Vložte další náklady ve formátech:"
2147
-
2148
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4719
2149
- #, php-format
2150
- msgid "For example, if the original cost of the booking is %s, then after applying additional costs the total cost will be folowing"
2151
- msgstr "Například, pokud se původní náklady na rezervace jsou %s, pak po použití dodatečných nákladů celkové náklady budou následující"
2152
-
2153
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4722
2154
- msgid "Enter fixed cost"
2155
- msgstr "Vložte pevné náklady"
2156
-
2157
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4722
2158
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4725
2159
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4731
2160
- #, php-format
2161
- msgid "%s, then total cost will be %s"
2162
- msgstr "%s , když celkové náklady budou %s"
2163
-
2164
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4725
2165
- msgid "Enter percentage of the entire booking"
2166
- msgstr "Zadejte procento z celé rezervace"
2167
-
2168
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4728
2169
- msgid "Enter fixed amount for each selected day"
2170
- msgstr "Zadejte fixní částku za každý vybraný den"
2171
-
2172
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4728
2173
- #, php-format
2174
- msgid "%s, then total cost will be (if selected 3 days) %s"
2175
- msgstr "%s, pak celkové náklady budou (pokud je vybrán 3 dnů) %s"
2176
-
2177
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4728
2178
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:279
2179
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:292
2180
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:306
2181
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:344
2182
- msgid "or"
2183
- msgstr "nebo"
2184
-
2185
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4731
2186
- msgid "Enter percentage as additional sum, which is based only on original cost and not full sum"
2187
- msgstr "Zadejte procento jako dodatečnou částku, která je založena pouze na původních nákladech a ne celou částku"
2188
-
2189
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4735
2190
- #, php-format
2191
- msgid "Please check more info about configuration of this cost settings on this %spage%s."
2192
- msgstr "Zkontrolujte prosím více informací o konfiguraci tohoto nastavení nákladů na této %s stránce %s."
2193
-
2194
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4808
2195
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1337
2196
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-br-table-for-settings.php:33
2197
- msgid "Resource ID or Title"
2198
- msgstr "Zdrojové ID nebo Název"
2199
-
2200
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4810
2201
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1339
2202
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-br-table-for-settings.php:35
2203
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:1452
2204
- msgid "Go"
2205
- msgstr "Jdi"
2206
-
2207
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4833
2208
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1394
2209
- msgid "Bulk Actions"
2210
- msgstr "Hromadná akce"
2211
-
2212
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4854
2213
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4880
2214
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1414
2215
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1439
2216
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-br-table-for-settings.php:79
2217
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-br-table-for-settings.php:105
2218
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:578
2219
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:600
2220
- msgid "Info"
2221
- msgstr "Informace"
2222
-
2223
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4866
2224
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1425
2225
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-br-table-for-settings.php:92
2226
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal-class.php:593
2227
- msgid "Selection"
2228
- msgstr "Výběr"
2229
-
2230
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4869
2231
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/wpbc-br-table-for-settings.php:95
2232
- msgid "Resource Name"
2233
- msgstr "Název zdroje"
2234
-
2235
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4946
2236
- msgid "Resources Settings"
2237
- msgstr "Nastavení zdrojů"
2238
-
2239
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4946
2240
- msgid "Resources management"
2241
- msgstr "Řízení zdrojů"
2242
-
2243
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4948
2244
- msgid "Costs and Rates"
2245
- msgstr "Náklady a sazby"
2246
-
2247
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4951
2248
- msgid "Costs and Rates Settings"
2249
- msgstr "Nastavení zdrojů a nákladů"
2250
-
2251
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4951
2252
- msgid "Customization of rates, valuation days cost and deposit amount "
2253
- msgstr "Přizpůsobení sazeb, oceňování dní nákladů a výše vkladu"
2254
-
2255
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4953
2256
- msgid "Advanced Cost"
2257
- msgstr "Pokročilé náklady"
2258
-
2259
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4956
2260
- msgid "Advanced Cost Settings"
2261
- msgstr "Nastavení pokročilých nákladů"
2262
-
2263
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4956
2264
- msgid "Customization of additional cost, which depend from form fields"
2265
- msgstr "Nastavení dalších nákladů, které jsou závislé na formulářových polích"
2266
-
2267
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4959
2268
- msgid "Coupons"
2269
- msgstr "Kupony"
2270
-
2271
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4962
2272
- msgid "Coupons Settings"
2273
- msgstr "Nastavení kupónů"
2274
-
2275
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4962
2276
- msgid "Setting coupons for discount"
2277
- msgstr "Nastavení kupónů pro slevu"
2278
-
2279
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4968
2280
- msgid "Availability Settings"
2281
- msgstr "Dostupné nastavení"
2282
-
2283
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4968
2284
- msgid "Customization of availability settings"
2285
- msgstr "Úprava dostupných nastavení"
2286
-
2287
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4970
2288
- msgid "Season Filters"
2289
- msgstr "Sezónní filtry"
2290
-
2291
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4973
2292
- msgid "Season Filters Settings"
2293
- msgstr "Nastavení sezonních filtrů"
2294
-
2295
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:4973
2296
- msgid "Customization of season filters settings"
2297
- msgstr "Úprava nastavení sezonních filtrů"
2298
-
2299
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:5017
2300
- msgid "Cost: "
2301
- msgstr "Náklady"
2302
-
2303
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:5051
2304
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:659
2305
- msgid "Weekend"
2306
- msgstr "Víkend"
2307
-
2308
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_m.php:5098
2309
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:661
2310
- msgid "High season"
2311
- msgstr "Plná sezóna"
2312
-
2313
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:107
2314
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4040
2315
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4058
2316
- msgid "Select Times"
2317
- msgstr "Výběr časů"
2318
-
2319
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:343
2320
- msgid "Setting cost for the resource"
2321
- msgstr "Nastavení nákladů pro zdroje"
2322
-
2323
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:346
2324
- msgid "/ day"
2325
- msgstr "/ den"
2326
-
2327
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:347
2328
- msgid "/ night"
2329
- msgstr "/ noc"
2330
-
2331
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:348
2332
- msgid "fixed"
2333
- msgstr "pevné"
2334
-
2335
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:349
2336
- msgid "/ hour"
2337
- msgstr "/ hodina"
2338
-
2339
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:416
2340
- msgid "Start Time is invalid. The date or time may be booked, or already in the past! Please choose another date or time."
2341
- msgstr "Počáteční čas je neplatný. Datum a čas byl možná už objednán nebo je již v minulosti! Prosím, vyberte jiné datum nebo čas."
2342
-
2343
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:417
2344
- msgid ""
2345
- "End Time is invalid. The date or time may be booked, or already in the past. The End Time may also be earlier that the start time, if "
2346
- "only 1 day was selected! Please choose another date or time."
2347
- msgstr ""
2348
- "Koncový čas je neplatný. Datum a čas byl už možná objednán nebo je již v minulosti. Koncový datum nemůže být dříve, než počáteční , "
2349
- "pokud byl vybrán jen 1 den! Prosím, vyberte jiné datum nebo čas."
2350
-
2351
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:418 w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:419
2352
- msgid "The time(s) may be booked, or already in the past!"
2353
- msgstr "Tento čas byl už objednán nebo je v minulosti!"
2354
-
2355
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:583
2356
- msgid "Cost saved successfully"
2357
- msgstr "Náklady úspěšně uloženy"
2358
-
2359
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:590
2360
- msgid "Cost is not correct. It must be greater than 0"
2361
- msgstr "Náklady nejsou správně. Musí být větší než 0"
2362
-
2363
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:606
2364
- msgid "Send payment request to customer"
2365
- msgstr "Poslat požadavek o zaplacení zákazníkovi"
2366
-
2367
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:610
2368
- #, php-format
2369
- msgid "Type your %sreason for payment%s request"
2370
- msgstr "Zadejte Váš požadavek %s důvod platby %s"
2371
-
2372
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:618
2373
- msgid "Send Request"
2374
- msgstr "Poslat požadavek"
2375
-
2376
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:619
2377
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:768
2378
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:1141
2379
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:901
2380
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:508
2381
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:571
2382
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-bk-lib.php:627
2383
- msgid "Close"
2384
- msgstr "Zavřít"
2385
-
2386
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:760
2387
- msgid "Request has been sent"
2388
- msgstr "Požadavek byl zaslán"
2389
-
2390
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:766
2391
- msgid "Request has failed"
2392
- msgstr "Selhání požadavku"
2393
-
2394
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:791
2395
- msgid "The payment status is changed successfully"
2396
- msgstr "Status platby je úspěšně změněn"
2397
-
2398
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:798
2399
- msgid "The changing of payment status is failed"
2400
- msgstr "Změna statusu platby neproběhla"
2401
-
2402
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:842
2403
- msgid "Email to \"Person\" with payment request"
2404
- msgstr "Email to \"Person\" s platebním požadavkem"
2405
-
2406
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:862
2407
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3607
2408
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3693
2409
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3783
2410
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2105
2411
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2193
2412
- msgid "Send to Admin"
2413
- msgstr "Poslat administrátorovi"
2414
-
2415
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:870
2416
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3615
2417
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3701
2418
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3791
2419
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2113
2420
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2201
2421
- msgid "Check this box to send copy of this email to Admin"
2422
- msgstr "Zaškrtnutím tohoto pole se zašle tento mail Administrátorovi"
2423
-
2424
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:879
2425
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3538
2426
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3623
2427
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3710
2428
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3800
2429
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2035
2430
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2121
2431
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2210
2432
- #, php-format
2433
- msgid "Type the default %sadmin email%s sending the booking confimation"
2434
- msgstr "Vlož výchozí %s admin email %spro zasílání rezervačních potvrzení"
2435
-
2436
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:884
2437
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3468
2438
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3543
2439
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3628
2440
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3715
2441
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3805
2442
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1966
2443
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2040
2444
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2126
2445
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2215
2446
- msgid "Subject"
2447
- msgstr "Předmět"
2448
-
2449
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:886
2450
- #, php-format
2451
- msgid "Type email subject for %spayment request%s."
2452
- msgstr "Vlož předmět emailu pro %s platební instrukce %s"
2453
-
2454
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:891
2455
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3475
2456
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3552
2457
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3635
2458
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3722
2459
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:3812
2460
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:1973
2461
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2048
2462
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2133
2463
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:2222
2464
- msgid "Content"
2465
- msgstr "Obsah"
2466
-
2467
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:906
2468
- #, php-format
2469
- msgid "Type your %semail message for payment request%s"
2470
- msgstr "Vložte Vaše %s emailovou zprávu pro platební instrukce %s"
2471
-
2472
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:915
2473
- #, php-format
2474
- msgid "You need to make payment %s for booking %s at %s. %s You can make payment at this %s Thank you, booking service."
2475
- msgstr "Zaplaťte prosím %s za rezervaci %s v %s . %s Ty můžeš zaplatit v %s Děkujeme. Zákaznický servis"
2476
-
2477
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:915
2478
- msgid "page"
2479
- msgstr "stránka"
2480
-
2481
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1191
2482
- msgid "deposit"
2483
- msgstr "záloha"
2484
-
2485
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1192
2486
- msgid "Total cost"
2487
- msgstr "Celkové náklady"
2488
-
2489
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1193
2490
- msgid "balance"
2491
- msgstr "stav"
2492
-
2493
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1254
2494
- msgid "Auto-fill form"
2495
- msgstr "Auto-vyplňující formulář"
2496
-
2497
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1354
2498
- msgid "Billing form fields customization"
2499
- msgstr "Úprava polí platebního formuláře"
2500
-
2501
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1366
2502
- msgid "Please select a field from your booking form. This field will be automatically assigned to the current field in the billing form."
2503
- msgstr "Prosím vyberte pole z rezervačního formuláře. Toto pole bude automaticky přiřazeno tomuto poli na platebním formulář."
2504
-
2505
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1372
2506
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:316
2507
- msgid "Customer Email"
2508
- msgstr "Email zákazníka"
2509
-
2510
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1385
2511
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:316
2512
- msgid "First Name(s)"
2513
- msgstr "Jméno *"
2514
-
2515
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1398
2516
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/payments/ipay88.php:316
2517
- msgid "Last name"
2518
- msgstr "Příjmení"
2519
-
2520
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1432
2521
- msgid "Billing Address"
2522
- msgstr "Adresa *"
2523
-
2524
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1445
2525
- msgid "Billing City"
2526
- msgstr "Město *"
2527
-
2528
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1458
2529
- msgid "Post Code"
2530
- msgstr " PSČ"
2531
-
2532
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1471
2533
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4112
2534
- msgid "Country"
2535
- msgstr "Země *"
2536
-
2537
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1490
2538
- msgid "State"
2539
- msgstr "Stát"
2540
-
2541
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1507
2542
- #, php-format
2543
- msgid "Configuring these %sfields is required for the some payment%s systems!"
2544
- msgstr "Úprava těchto %s polí je požadováno pro platební %s systémy!"
2545
-
2546
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1562
2547
- msgid "Title of booked timeslot(s)"
2548
- msgstr "Název rezervačního časového úseku"
2549
-
2550
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1566
2551
- #, php-format
2552
- msgid "Type your %stitle%s, what will show in mouseover tooltip near booked timeslot(s)"
2553
- msgstr "Vložte Váš %s název %s , který ukáže poznámku, jakmile bude myš blízko časového úseku"
2554
-
2555
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1584
2556
- msgid "Time Format"
2557
- msgstr "Formát času"
2558
-
2559
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1607
2560
- #, php-format
2561
- msgid "Type your time format for emails and the booking table. %sDocumentation on time formatting%s"
2562
- msgstr "Zadejte Váš časový formát pro emaily a rezervační tabulku. %s Dokumentace na formátování času %s"
2563
-
2564
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1695
2565
- #, php-format
2566
- msgid "Select a %sFIXED%s number of days with %s1 mouse click%s"
2567
- msgstr "Vyberte %s pevné %s počet dnů %s jedním klikem %s"
2568
-
2569
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1703
2570
- #, php-format
2571
- msgid "Select a %sDYNAMIC%s range of days with %s2 mouse clicks%s"
2572
- msgstr "Vyberte %s delší %s rozsah dnů %s dvojklikem myši %s"
2573
-
2574
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1711
2575
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1777
2576
- msgid "Days selection number"
2577
- msgstr "Počet vybraných dnů"
2578
-
2579
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1718
2580
- #, php-format
2581
- msgid "Type your %snumber of days for range selection%s"
2582
- msgstr "Vložte Váš %s počet dnů %s"
2583
-
2584
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1725
2585
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1813
2586
- msgid "Start day of range"
2587
- msgstr "První den rozsahu"
2588
-
2589
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1734
2590
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1822
2591
- msgid "Any day of week"
2592
- msgstr "Jakýkoli den v týdnu"
2593
-
2594
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1745
2595
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1833
2596
- msgid "Specific day(s) of week"
2597
- msgstr "Specifický den/dny v týdnu"
2598
-
2599
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1767
2600
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1869
2601
- msgid "Select your start day of range selection at week"
2602
- msgstr "Vyberte počáteční den Vašeho rozsahu v týdnu"
2603
-
2604
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1779
2605
- msgid "Min"
2606
- msgstr "Minimálně"
2607
-
2608
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1793
2609
- #, php-format
2610
- msgid "Select your %sminimum and maximum number of days for range selection%s"
2611
- msgstr "Vyberte Váš %s minimální a maximální počet dní pro výběr %s"
2612
-
2613
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1799
2614
- msgid "Specific days selections"
2615
- msgstr "Výběr specifických dnů"
2616
-
2617
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1803
2618
- #, php-format
2619
- msgid ""
2620
- "Type your %sspecific%s days, which can be selected by visitors, or leave this value empty. It can be several days separated by comma "
2621
- "(example: %s) or by dash (example: %s, its the same like this: %s) or combination (example:%s, its the same like this: %s)"
2622
- msgstr ""
2623
- "Sem napište %s specifické %s dny, které mohou být vybrány návštěvníky nebo nechte tuto hodnotu prázdnou. To může být několik dní, "
2624
- "oddělené čárkou (příklad: %s ) nebo pomlčkou (příklad: %s stejně jako je tento: %s ) nebo kombinace (příklad: %s stejně jako je tento: "
2625
- "%s)"
2626
-
2627
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1912
2628
- msgid "Use time selections as recurrent time slots"
2629
- msgstr "Použít výběr času pro opakovaný časový rozsah"
2630
-
2631
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1923
2632
- msgid ""
2633
- "Check this box if you want to use recurrent time to reserve several days. This means that middle days will be partially booked by "
2634
- "actual times, otherwise the time in the booking form will be used as check-in/check-out time for the first and last day of the "
2635
- "reservation."
2636
- msgstr ""
2637
- "Zaškrtněte toto políčko, pokud chcete použít opakující se čas pro rezervaci několika dní. To znamená, že střední dny bude částečně "
2638
- "rezervovat prostřednictvím skutečných časů, jinak čas v rezervačním formuláři, budou použity jako check-in / check-out čas pro první a "
2639
- "poslední den rezervace."
2640
-
2641
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1930
2642
- msgid "Use check in/out time"
2643
- msgstr "Použij as příjezdu a odjezdu"
2644
-
2645
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1937
2646
- msgid "This option will overwrite any times selection in your booking form."
2647
- msgstr "Tato možno přepíše všechny časové výběry na Vašem rezervačním formuláři."
2648
-
2649
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1942
2650
- msgid "Check this option, to use check in/out time during booking process. "
2651
- msgstr "Vyber tuto volbu k užití času příjezdu / odjezdu během rezervačního procesu."
2652
-
2653
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1945
2654
- #, php-format
2655
- msgid "%s Important!%s This will overwrite any times selection in your booking form."
2656
- msgstr "%s Důležité! %s Toto přepíše všechny časové výběry na rezervačním formuláři."
2657
-
2658
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1954
2659
- msgid "Check-in time"
2660
- msgstr "Čas příjezdu"
2661
-
2662
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1954
2663
- #, php-format
2664
- msgid "%sstart booking time%s"
2665
- msgstr "%s Začátek rezervačního času %s"
2666
-
2667
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1956
2668
- #, php-format
2669
- msgid "Type your %sCheck-in%s time of booking"
2670
- msgstr "Vložte Váš %s příjezdový čas %s rezervace"
2671
-
2672
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1961
2673
- msgid "Check-Out time"
2674
- msgstr "Čas odjezdu"
2675
-
2676
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1961
2677
- #, php-format
2678
- msgid "%send booking time%s"
2679
- msgstr "%s Konec času rezervace %s"
2680
-
2681
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1963
2682
- #, php-format
2683
- msgid "Type your %sCheck-Out%s time of booking"
2684
- msgstr "Vložte Váš %s čas odjezdu %s rezervace"
2685
-
2686
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:1997
2687
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:50
2688
- msgid "Costs"
2689
- msgstr "Náklady"
2690
-
2691
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2002
2692
- msgid "Set the cost"
2693
- msgstr "Nastavit cenu"
2694
-
2695
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2007
2696
- msgid "fixed sum"
2697
- msgstr "Plná částka"
2698
-
2699
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2010
2700
- msgid " Select your cost configuration."
2701
- msgstr "Vyberte Vaší konfiguraci nákladů"
2702
-
2703
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2015
2704
- msgid "Currency format"
2705
- msgstr "Formát měny"
2706
-
2707
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2018
2708
- msgid "Number of decimal points"
2709
- msgstr "Počet desetinných míst"
2710
-
2711
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2025
2712
- msgid "Separator for the decimal point"
2713
- msgstr "Oddělovač desetinných míst"
2714
-
2715
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2029
2716
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2043
2717
- msgid "No separator"
2718
- msgstr "Žádný oddělovač"
2719
-
2720
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2030
2721
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2044
2722
- msgid "Space"
2723
- msgstr "Mezera"
2724
-
2725
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2031
2726
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2045
2727
- msgid "Dot"
2728
- msgstr "Tečka"
2729
-
2730
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2032
2731
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2046
2732
- msgid "Comma"
2733
- msgstr "Čárka"
2734
-
2735
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2039
2736
- msgid "Thousands separator"
2737
- msgstr "Oddělovač tisíců"
2738
-
2739
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2057
2740
- msgid "Time impact to cost"
2741
- msgstr "Časový dopad na náklady"
2742
-
2743
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2062
2744
- #, php-format
2745
- msgid "Check this box if you want the %stime selection%s on the booking form %sapplied to the cost calculation%s."
2746
- msgstr "Zaškrtněte toto políčko, pokud chcete, aby %s čas výběru %s na rezervačním formuláři %s požadováno k výpočtu nákladů %s."
2747
-
2748
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2071
2749
- msgid "Show booking details in payment form"
2750
- msgstr "Ukaž detaily rezervace v platebním formuláři"
2751
-
2752
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2077
2753
- #, php-format
2754
- msgid " Check this checkbox if you want to show the %sbooking details summary%s above the payment form"
2755
- msgstr "Zaškrtněte toto políčko, pokud chcete zobrazit podrobnosti %s souhrnné rezervace %s nad platební požadavek"
2756
-
2757
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2122
2758
- msgid "Auto cancellation / auto approval of bookings"
2759
- msgstr "Auto zrušení / auto schválení rezervací"
2760
-
2761
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2128
2762
- msgid "Auto approve all new bookings"
2763
- msgstr "Auto-schválení všech nových rezervací"
2764
-
2765
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2137
2766
- #, php-format
2767
- msgid "Check this checkbox to %sactivate%s auto approve of all new pending bookings."
2768
- msgstr "Zaškrtněte toto pole pro %s aktivaci %s automatické povolení všech nových rezervací."
2769
-
2770
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2144
2771
- msgid "Auto-cancel bookings"
2772
- msgstr "Auto-zrušení rezervací"
2773
-
2774
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2154
2775
- #, php-format
2776
- msgid "Check this box to %sactivate%s auto-cancellation for pending, unpaid bookings."
2777
- msgstr "Zaškrtněte toto pole %s k aktivaci %s automatickému zrušení pro čekající, nezaplacené rezervace."
2778
-
2779
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2165
2780
- msgid "Cancel bookings older"
2781
- msgstr "Zrušit starší rezervace"
2782
-
2783
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2170
2784
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:799
2785
- msgid "hour"
2786
- msgstr "hodina"
2787
-
2788
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2173
2789
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:617
2790
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:681
2791
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpbc-gcal.php:802
2792
- msgid "hours"
2793
- msgstr "hodiny"
2794
-
2795
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2183
2796
- msgid "Cancel only pending, unpaid bookings, which are older than this selection."
2797
- msgstr "Zrušit jen čekající, nezaplacených rezervací, které jsou starší než tento výběr."
2798
-
2799
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2188
2800
- msgid "Cancellation email sent"
2801
- msgstr "Zamítací e-mail"
2802
-
2803
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2193
2804
- #, php-format
2805
- msgid "Check this box to %ssend%s cancellation email for this resource."
2806
- msgstr "Zaškrtněte toto pole pro zaslání %s konec %s zamítacího email pro tento zdroj"
2807
-
2808
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2205
2809
- msgid "Reason for cancellation"
2810
- msgstr "Důvod zamítnutí"
2811
-
2812
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2207
2813
- #, php-format
2814
- msgid "Type the reason for %scancellation%s for the email template."
2815
- msgstr "Vložte důvod pro %s zamítnutí %s do šablony emailu."
2816
-
2817
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2252
2818
- msgid "Customization of billing fields, which automatically assign from booking form to billing form"
2819
- msgstr "Přizpůsobení fakturace polí, které se automaticky připisují z rezervačního formuláře do zúčtovacího formuláře"
2820
-
2821
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2253
2822
- msgid "Billing form fields"
2823
- msgstr "Pole platebního formuláře"
2824
-
2825
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2279
2826
- msgid "Booked Times:"
2827
- msgstr "Rezervovaný čas:"
2828
-
2829
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2302
2830
- msgid "This booking canceled because we did not receive payment and the administrator did not approve it."
2831
- msgstr "Tato rezervace byla zrušena, jelikož jsme neobdrželi platbu a administrátor to nedovolil."
2832
-
2833
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2321
2834
- msgid "You need to make payment for this reservation"
2835
- msgstr "Pro tuto rezervaci je nutné zaplatit."
2836
-
2837
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2323
2838
- #, php-format
2839
- msgid "You need to make payment %s for reservation %s at %s. %s Please make payment on this page: %s Thank you, %s"
2840
- msgstr "Pro tuto %s rezervaci %s je nutné zaplatit v %s . %s Prosím proveďte platbu na této straně: %s Děkujeme, %s"
2841
-
2842
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2427
2843
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1434
2844
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4159
2845
- msgid "Apartment#1"
2846
- msgstr "Apartmá #1"
2847
-
2848
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2428
2849
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/multiuser.php:1435
2850
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4160
2851
- msgid "Apartment#2"
2852
- msgstr "Apartmá #2"
2853
-
2854
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/biz_s.php:2429
2855
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:4161
2856
- msgid "Apartment#3"
2857
- msgstr "Apartmá #3"
2858
-
2859
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-button.php:73
2860
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/personal.php:394
2861
- msgid "Label"
2862
- msgstr "popisek"
2863
-
2864
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-button.php:73
2865
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-checkbox.php:128
2866
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-checkbox.php:164
2867
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-radio.php:85
2868
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-select.php:78
2869
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-select.php:129
2870
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-text.php:194
2871
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-text.php:211
2872
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-text.php:228
2873
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-text.php:247
2874
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-text.php:264
2875
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-text.php:281
2876
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-textarea.php:94
2877
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-textarea.php:111
2878
- msgid "optional"
2879
- msgstr "voltelně"
2880
-
2881
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-checkbox.php:90
2882
- #, php-format
2883
- msgid "Wrap each item with %s tag"
2884
- msgstr "Připojit každou položku s %s dnem"
2885
-
2886
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-checkbox.php:104
2887
- msgid "Put a label before field"
2888
- msgstr "Dát štítek před polem"
2889
-
2890
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-checkbox.php:118
2891
- #, php-format
2892
- msgid "Make it %sexclusive%s"
2893
- msgstr "Vytvořit %s exkluzivně %s"
2894
-
2895
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-checkbox.php:128
2896
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-radio.php:85
2897
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-select.php:78
2898
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-text.php:194
2899
- msgid "Default value"
2900
- msgstr "Výchozí hodnota"
2901
-
2902
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-checkbox.php:136
2903
- #, php-format
2904
- msgid "One Value from %sOptions%s list or term %s for selection of all checkboxes"
2905
- msgstr "Jedna hodnota z %s Možností %s seznamu nebo termínu %s pro výběr všech zaškrtávacích políček"
2906
-
2907
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-checkbox.php:146
2908
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-select.php:111
2909
- msgid "Options"
2910
- msgstr "Možnosti"
2911
-
2912
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-checkbox.php:146
2913
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-select.php:111
2914
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-text.php:177
2915
- msgid "required"
2916
- msgstr "vyžadováno"
2917
-
2918
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-checkbox.php:154
2919
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-select.php:119
2920
- msgid "One option per line"
2921
- msgstr "Jedna možnost na řádek"
2922
-
2923
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-checkbox.php:164
2924
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-select.php:129
2925
- msgid "Titles of options"
2926
- msgstr "Názvy možností"
2927
-
2928
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-checkbox.php:172
2929
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-select.php:137
2930
- msgid "One title per line"
2931
- msgstr "Jeden název na řádek"
2932
-
2933
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-radio.php:93
2934
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-select.php:86
2935
- #, php-format
2936
- msgid "One Value from %sOptions%s list"
2937
- msgstr "Jedna hodnota z %s možností %s seznamu"
2938
-
2939
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-select.php:101
2940
- #, php-format
2941
- msgid "Allow %smultiple%s selections"
2942
- msgstr "Povolit %s vícenásobné %s výběry"
2943
-
2944
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-text.php:167
2945
- #, php-format
2946
- msgid "Set as %srequired%s"
2947
- msgstr "Nastavit jako %s vyžadované %s"
2948
-
2949
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-text.php:177
2950
- msgid "Name"
2951
- msgstr "Jméno"
2952
-
2953
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-text.php:228
2954
- msgid "Placeholder"
2955
- msgstr "Držitel"
2956
-
2957
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-text.php:247
2958
- msgid "Class"
2959
- msgstr "Třída"
2960
-
2961
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-text.php:264
2962
- msgid "Size"
2963
- msgstr "Velikost"
2964
-
2965
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-text.php:281
2966
- msgid "Maxlength"
2967
- msgstr "Maximální délka"
2968
-
2969
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-text.php:298
2970
- msgid "Copy and paste this shortcode into the form at left side"
2971
- msgstr "Kopírovat a vložit tento krátký kód do formuláře na levé straně"
2972
-
2973
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-text.php:313
2974
- #, php-format
2975
- msgid "Put this code in %sContent of Booking Fields%s and in %sEmail Templates%s"
2976
- msgstr "Vložte tento kód do %s Obsah Rezervačních polí %s a %s e-mailových šablon %s"
2977
-
2978
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-textarea.php:94
2979
- msgid "Rows"
2980
- msgstr "Řádky"
2981
-
2982
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-field-help-textarea.php:111
2983
- msgid "Columns"
2984
- msgstr "Sloupky"
2985
-
2986
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:86
2987
- msgid "General Information"
2988
- msgstr "Základní informace"
2989
-
2990
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:88
2991
- msgid "Shortcodes"
2992
- msgstr "Krátkékódy"
2993
-
2994
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:89
2995
- msgid "You can generate the form fields for your form (at the left side) by selection specific field in the above selectbox."
2996
- msgstr "Můžete vytvářet pole formuláře pro formuláře (na levé straně), podle konkrétní oblasti výběru nad selectboxy."
2997
-
2998
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:90
2999
- #, php-format
3000
- msgid "Please read more about the booking form fields configuration %shere%s."
3001
- msgstr "Prosím, přečtěte si %s zde %s více o konfiguraci polí na rezervačním formuláři."
3002
-
3003
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:92
3004
- msgid "HTML"
3005
- msgstr "HTML"
3006
-
3007
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:93
3008
- #, php-format
3009
- msgid ""
3010
- "You can use any %sHTML tags%s in the booking form. Please use the HTML tags carefully. Be sure, that all \"open\" tags (like %s) are "
3011
- "closed (like this %s)."
3012
- msgstr ""
3013
- "Můžete jakékoliv %s HTML tagy %s v rezervačním formuláři. Prosím používejte HTML tagy opatrně. Buďte si jisti, že všechny \"otevřené\" "
3014
- "tagy (jako %s ) jsou zavřené (jako tento %s )."
3015
-
3016
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:99
3017
- msgid "Default Form Templates"
3018
- msgstr "Výchozí formulář šablon"
3019
-
3020
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:100
3021
- #, php-format
3022
- msgid ""
3023
- "You can reset your active form template by selecting default %sform template%s at the top toolbar. Please select the form template and "
3024
- "click on %sReset%s button for resetting only active form (Booking Form or Content of Booking Fields form). Click on %sBoth%s button "
3025
- "if you want to reset both forms: Booking Form and Content of Booking Fields form."
3026
- msgstr ""
3027
- "Můžete obnovit aktivní šablonu formuláře výběrem výchozí %s formulář šablony %s na horní liště. Vyberte šablonu formuláře a klikněte "
3028
- "na tlačítko %s Reset %s pro resetování pouze aktivního formuláře (on-line formulář nebo obsah on-line polí formuláře). Klikněte na "
3029
- "tlačítko %s Oba %s Chcete-li obnovit obě formy: ve formě a obsahu ve polí formuláře."
3030
-
3031
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:109
3032
- msgid "Required Fields in Booking Form"
3033
- msgstr "Požadované pole na rezervačním formuláři"
3034
-
3035
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:115
3036
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:38
3037
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:388
3038
- msgid "Calendar"
3039
- msgstr "Kalendář"
3040
-
3041
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:117
3042
- #, php-format
3043
- msgid "You must to have this shortcode:%s in the form."
3044
- msgstr "Musíš mít tento krátkýkód: %s ve formuláři."
3045
-
3046
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:119
3047
- msgid ""
3048
- "You can insert several calendars of different resources into the form allowing you to book several resources during one booking "
3049
- "process."
3050
- msgstr "Můžete vložit několik kalendářů z různých zdrojů do formuláře, to Vám umožní více zdrojů během jednoho rezervačního procesu."
3051
-
3052
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:120
3053
- #, php-format
3054
- msgid "Example: %s."
3055
- msgstr "Příklad: %s"
3056
-
3057
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:121
3058
- #, php-format
3059
- msgid "where %s – default calendar %s (you can select desired resource of calendar by inserting shortcode into page)%s"
3060
- msgstr "kde %s - výchozí kalendář %s (můžete vybrat požadovaný zdroj kalendáře vložením zkráceného kódu do stránky) %s"
3061
-
3062
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:122
3063
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:123
3064
- #, php-format
3065
- msgid "%s – calendar of booking resource with %s"
3066
- msgstr "%s - kalendář rezervačních zdrojů s %s"
3067
-
3068
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:124
3069
- #, php-format
3070
- msgid "Please check more about this feature %shere%s."
3071
- msgstr "Zkontrolujte prosím více informací o této funkci %s zde %s."
3072
-
3073
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:126
3074
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:197
3075
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:230
3076
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:278
3077
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:291
3078
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:305
3079
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:343
3080
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:382
3081
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:515
3082
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:644
3083
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:658
3084
- #, php-format
3085
- msgid "You can %suse this shortcode only once%s in the form."
3086
- msgstr "Můžete %s použít tento krátký kód jen jednou %s na tomto formuláři."
3087
-
3088
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:135
3089
- msgid "Email Field"
3090
- msgstr "Pole pro email"
3091
-
3092
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:136
3093
- #, php-format
3094
- msgid "You must have this shortcode:%s in the booking form."
3095
- msgstr "Musíte mít tento krátkýkód: %s pro rezervační formulář."
3096
-
3097
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:136
3098
- msgid "This is the primary email field, which is used for sending emails to visitors."
3099
- msgstr "Toto je primární pole pro email, které bude používáno pro posílání emailů návštěvníkům."
3100
-
3101
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:141
3102
- msgid "Standard Fields"
3103
- msgstr "Standardní pole"
3104
-
3105
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:147
3106
- msgid "Text"
3107
- msgstr "Text"
3108
-
3109
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:156
3110
- msgid "Textarea"
3111
- msgstr "Textová oblast"
3112
-
3113
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:163
3114
- msgid "Drop Down"
3115
- msgstr "Posuň dolů"
3116
-
3117
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:175
3118
- msgid "Checkbox(es)"
3119
- msgstr "Zaškrtávací pole"
3120
-
3121
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:182
3122
- msgid "Radio Button(s)"
3123
- msgstr "Radio butony"
3124
-
3125
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:194
3126
- #: w:\www\home\dev\www\wp-content\plugins\booking\./lib/wpdev-settings-general.php:585
3127
- msgid "CAPTCHA"
3128
- msgstr "CAPTCHA"
3129
-
3130
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:196
3131
- #, php-format
3132
- msgid "Insert %s shortcode to prevent SPAM bookings."
3133
- msgstr "Vložte %s krátký kód jako ochranu proti SPAMu"
3134
-
3135
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:206
3136
- msgid "Submit Button"
3137
- msgstr "Potvrzovací tlačítko"
3138
-
3139
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:214
3140
- msgid "Times Fields"
3141
- msgstr "Pole pro čas"
3142
-
3143
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:220
3144
- msgid "Time Slot List"
3145
- msgstr "Seznam časových termínů"
3146
-
3147
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:222
3148
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:302
3149
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:340
3150
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:379
3151
- #, php-format
3152
- msgid "Select the %s using the predefined %sTime List%s."
3153
- msgstr "Vyber %s užíváním předdefinovaného %s Seznam časů %s ."
3154
-
3155
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:222
3156
- msgid "Time Slot"
3157
- msgstr "Časový úsek"
3158
-
3159
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:223
3160
- #, php-format
3161
- msgid ""
3162
- "Please note, %sthe use of the time shortcode%s. If you select a date with some booked time slots, this time field will %sdisable "
3163
- "booked times slots%s (set them as grayed)."
3164
- msgstr ""
3165
- "Vezměte prosím na vědomí,%s využití časového zkráceného kódu %s. Pokud zvolíte datum s některým z rezervovaných časových úseků, toto "
3166
- "časové pole bude %s zakázat rezervování časového úseku %s (nastaveno jako šedé)."
3167
-
3168
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:224
3169
- #, php-format
3170
- msgid "It works only in %ssingle day selection%s mode."
3171
- msgstr "Pracuje to jen v módu %s jednodenní výběr %s ."
3172
-
3173
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:225
3174
- msgid "Also some early versions of the IE do not support disabling of the options in the selectboxes."
3175
- msgstr "Také některé předchozí verze IE nepodporují zablokování možnosti v výběrových polí."
3176
-
3177
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:226
3178
- msgid "Even if visitor selects the booked timeslot, system will not allow them to make the booking."
3179
- msgstr "I když návštěvník vybere rezervovaný časový interval, systém jim nedovolí, aby vytvořili rezervaci."
3180
-
3181
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:229
3182
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:342
3183
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:381
3184
- #, php-format
3185
- msgid "Please note, in the %sOptions list%s you can use times in military time format %s(24 Hour Time)%s only."
3186
- msgstr "Vezměte prosím na vědomí, že v seznamu %s seznam voleb %s, můžete použít časy s vojenským formátem času %s (24 hodin) %s ."
3187
-
3188
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:231
3189
- #, php-format
3190
- msgid "If you use this shortcode, %syou can not use any other time shortcodes%s in the form."
3191
- msgstr "Pokud používáte tento krátký kód, %s nemůžete použít jiný krátký kód %s ve formuláři."
3192
-
3193
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:273
3194
- msgid "Start Time - Text field"
3195
- msgstr "Počáteční čas - textové pole"
3196
-
3197
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:275
3198
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:288
3199
- #, php-format
3200
- msgid "Enter %s in text field."
3201
- msgstr "Vložte %s v textovém poli."
3202
-
3203
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:275
3204
- #: w:\www\home\dev\www\wp-content\plugins\booking\./inc/form/class-wpbc-form-help.php:292
3205
- #: w:\www\home\dev\www\wp-content