PluginProbe
VikBooking Hotel Booking Engine & PMS / 1.8.6
VikBooking Hotel Booking Engine & PMS v1.8.6
1.8.15 1.8.14 1.8.13 1.8.12 1.8.11 1.8.10 1.8.9 1.8.6 1.8.7 1.8.8 trunk 1.6.0 1.6.1 1.6.2 1.6.3 1.6.4 1.6.5 1.6.6 1.6.7 1.6.8 1.6.9 1.7.0 1.7.1 1.7.2 1.7.3 All 36 releases
vikbooking / libraries / language / admin.php

admin.php in VikBooking Hotel Booking Engine & PMS 1.8.6, at libraries/language/admin.php

8,472 lines 319.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * @package VikBooking - Libraries
4 * @subpackage language
5 * @author E4J s.r.l.
6 * @copyright Copyright (C) 2018 E4J s.r.l. All Rights Reserved.
7 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
8 * @link https://vikwp.com
9 */
10
11 // No direct access
12 defined('ABSPATH') or die('No script kiddies please!');
13
14 JLoader::import('adapter.language.handler');
15
16 /**
17 * Switcher class to translate the VikBooking plugin admin languages.
18 *
19 * @since 1.0
20 */
21 class VikBookingLanguageAdmin implements JLanguageHandler
22 {
23 /**
24 * Checks if exists a translation for the given string.
25 *
26 * @param string $string The string to translate.
27 *
28 * @return string The translated string, otherwise null.
29 */
30 public function translate($string)
31 {
32 $result = null;
33
34 /**
35 * Translations go here.
36 * @tip Use 'TRANSLATORS:' comment to attach a description of the language.
37 */
38
39 switch ($string)
40 {
41 /**
42 * Definitions
43 */
44 case 'VBSAVE':
45 $result = __('Save', 'vikbooking');
46 break;
47 case 'VBANNULLA':
48 $result = __('Cancel', 'vikbooking');
49 break;
50 case 'VBELIMINA':
51 $result = __('Delete', 'vikbooking');
52 break;
53 case 'VBBACK':
54 $result = __('Back', 'vikbooking');
55 break;
56 case 'VBCONFIRMED':
57 $result = __('Confirmed', 'vikbooking');
58 break;
59 case 'VBSTANDBY':
60 $result = __('Standby', 'vikbooking');
61 break;
62 case 'VBLEFT':
63 $result = __('Left', 'vikbooking');
64 break;
65 case 'VBRIGHT':
66 $result = __('Right', 'vikbooking');
67 break;
68 case 'VBBOTTOMCENTER':
69 $result = __('Bottom, Center', 'vikbooking');
70 break;
71 case 'VBSTATUS':
72 $result = __('Status', 'vikbooking');
73 break;
74 case 'VBMAINDEAFULTTITLE':
75 $result = __('Vik Booking - Rooms List', 'vikbooking');
76 break;
77 case 'VBMAINDEFAULTDEL':
78 $result = __('Delete Room', 'vikbooking');
79 break;
80 case 'VBMAINDEFAULTEDITC':
81 $result = __('Edit Room', 'vikbooking');
82 break;
83 case 'VBMAINDEFAULTEDITT':
84 $result = __('Edit/View Rates', 'vikbooking');
85 break;
86 case 'VBMAINDEFAULTCAL':
87 $result = __('Rooms Calendar', 'vikbooking');
88 break;
89 case 'VBMAINDEFAULTNEW':
90 $result = __('New Room', 'vikbooking');
91 break;
92 case 'VBMAINIVATITLE':
93 $result = __('Vik Booking - Tax Rates List', 'vikbooking');
94 break;
95 case 'VBMAINIVADEL':
96 $result = __('Delete Tax Rate', 'vikbooking');
97 break;
98 case 'VBMAINIVAEDIT':
99 $result = __('Edit Tax Rate', 'vikbooking');
100 break;
101 case 'VBMAINIVANEW':
102 $result = __('New Tax Rate', 'vikbooking');
103 break;
104 case 'VBMAINCATTITLE':
105 $result = __('Vik Booking - Categories List', 'vikbooking');
106 break;
107 case 'VBMAINCATDEL':
108 $result = __('Delete Categories', 'vikbooking');
109 break;
110 case 'VBMAINCATEDIT':
111 $result = __('Edit Category', 'vikbooking');
112 break;
113 case 'VBMAINCATNEW':
114 $result = __('New Category', 'vikbooking');
115 break;
116 case 'VBMAINCARATTITLE':
117 $result = __('Vik Booking - Characteristics List', 'vikbooking');
118 break;
119 case 'VBMAINCARATDEL':
120 $result = __('Delete Characteristics', 'vikbooking');
121 break;
122 case 'VBMAINCARATEDIT':
123 $result = __('Edit Characteristic', 'vikbooking');
124 break;
125 case 'VBMAINCARATNEW':
126 $result = __('New Characteristic', 'vikbooking');
127 break;
128 case 'VBMAINOPTTITLE':
129 $result = __('Vik Booking - Options List', 'vikbooking');
130 break;
131 case 'VBMAINOPTDEL':
132 $result = __('Delete Options', 'vikbooking');
133 break;
134 case 'VBMAINOPTEDIT':
135 $result = __('Edit Option', 'vikbooking');
136 break;
137 case 'VBMAINOPTNEW':
138 $result = __('New Option', 'vikbooking');
139 break;
140 case 'VBMAINPRICETITLE':
141 $result = __('Vik Booking - Types of Price', 'vikbooking');
142 break;
143 case 'VBMAINPRICEDEL':
144 $result = __('Delete Prices', 'vikbooking');
145 break;
146 case 'VBMAINPRICEEDIT':
147 $result = __('Edit Price', 'vikbooking');
148 break;
149 case 'VBMAINPRICENEW':
150 $result = __('New Price', 'vikbooking');
151 break;
152 case 'VBMAINIVATITLENEW':
153 $result = __('Vik Booking - New Tax Rate', 'vikbooking');
154 break;
155 case 'VBMAINIVATITLEEDIT':
156 $result = __('Vik Booking - Edit Tax Rate', 'vikbooking');
157 break;
158 case 'VBMAINPRICETITLENEW':
159 $result = __('Vik Booking - New Price', 'vikbooking');
160 break;
161 case 'VBMAINPRICETITLEEDIT':
162 $result = __('Vik Booking - Edit Price', 'vikbooking');
163 break;
164 case 'VBMAINCATTITLENEW':
165 $result = __('Vik Booking - New Category', 'vikbooking');
166 break;
167 case 'VBMAINCATTITLEEDIT':
168 $result = __('Vik Booking - Edit Category', 'vikbooking');
169 break;
170 case 'VBMAINCARATTITLENEW':
171 $result = __('Vik Booking - New Characteristic', 'vikbooking');
172 break;
173 case 'VBMAINCARATTITLEEDIT':
174 $result = __('Vik Booking - Edit Characteristic', 'vikbooking');
175 break;
176 case 'VBMAINOPTTITLENEW':
177 $result = __('Vik Booking - New Option', 'vikbooking');
178 break;
179 case 'VBMAINOPTTITLEEDIT':
180 $result = __('Vik Booking - Edit Option', 'vikbooking');
181 break;
182 case 'VBMAINROOMTITLENEW':
183 $result = __('Vik Booking - New Room', 'vikbooking');
184 break;
185 case 'VBMAINROOMTITLEEDIT':
186 $result = __('Vik Booking - Edit Room', 'vikbooking');
187 break;
188 case 'VBMAINTARIFFETITLE':
189 $result = __('Vik Booking - Rooms Base Rates', 'vikbooking');
190 break;
191 case 'VBMAINTARIFFEDEL':
192 $result = __('Delete Rates', 'vikbooking');
193 break;
194 case 'VBMAINTARIFFEBACK':
195 $result = __('Quit Inserting', 'vikbooking');
196 break;
197 case 'VBMAINORDERTITLE':
198 $result = __('Vik Booking - Bookings List', 'vikbooking');
199 break;
200 case 'VBMAINORDERDEL':
201 $result = __('Remove Bookings', 'vikbooking');
202 break;
203 case 'VBMAINORDEREDIT':
204 $result = __('Booking Details', 'vikbooking');
205 break;
206 case 'VBMAINORDERTITLEEDIT':
207 $result = __('Vik Booking - Booking Details', 'vikbooking');
208 break;
209 case 'VBMAINCALTITLE':
210 $result = __('Vik Booking - Bookings Calendar', 'vikbooking');
211 break;
212 case 'VBMAINCHOOSEBUSY':
213 $result = __('Reservations for', 'vikbooking');
214 break;
215 case 'VBMAINEBUSYTITLE':
216 $result = __('Vik Booking - Edit Reservation', 'vikbooking');
217 break;
218 case 'VBMAINEBUSYDEL':
219 $result = __('Delete Reservation', 'vikbooking');
220 break;
221 case 'VBMAINCONFIGTITLE':
222 $result = __('Vik Booking - Global Configuration', 'vikbooking');
223 break;
224 case 'VBMAINPAYMENTSTITLE':
225 $result = __('Vik Booking - Payment Methods', 'vikbooking');
226 break;
227 case 'VBMAINPAYMENTSDEL':
228 $result = __('Remove', 'vikbooking');
229 break;
230 case 'VBMAINPAYMENTSEDIT':
231 $result = __('Edit', 'vikbooking');
232 break;
233 case 'VBMAINPAYMENTSNEW':
234 $result = __('New', 'vikbooking');
235 break;
236 case 'VBMAINPAYMENTTITLENEW':
237 $result = __('Vik Booking - New Payment Method', 'vikbooking');
238 break;
239 case 'VBMAINPAYMENTTITLEEDIT':
240 $result = __('Vik Booking - Edit Payment Method', 'vikbooking');
241 break;
242 case 'VBMAINOVERVIEWTITLE':
243 $result = __('Vik Booking - Availability Overview', 'vikbooking');
244 break;
245 case 'VBPANELONE':
246 $result = __('Main Settings', 'vikbooking');
247 break;
248 case 'VBPANELTWO':
249 $result = __('Prices and Payments', 'vikbooking');
250 break;
251 case 'VBPANELTHREE':
252 $result = __('Views and Layout', 'vikbooking');
253 break;
254 case 'VBPANELFOUR':
255 $result = __('Company and Reservations', 'vikbooking');
256 break;
257 case 'VBMESSDELBUSY':
258 $result = __('Reservation Deleted', 'vikbooking');
259 break;
260 case 'VBROOMNOTCONSTO':
261 $result = __('to', 'vikbooking');
262 break;
263 case 'VBROOMNOTRIT':
264 $result = __('Room is not available from', 'vikbooking');
265 break;
266 case 'ERRPREV':
267 $result = __('Check-out date is previous than Check-in', 'vikbooking');
268 break;
269 case 'ERRROOMLOCKED':
270 $result = __('The room is not available in the days requested. The Room is waiting for the payment to confirm the reservation', 'vikbooking');
271 break;
272 case 'RESUPDATED':
273 $result = __('Reservation Updated', 'vikbooking');
274 break;
275 case 'VBSETTINGSAVED':
276 $result = __('Settings Saved. Click the button Renew Session to apply the new configuration settings immediately.', 'vikbooking');
277 break;
278 case 'VBPAYMENTSAVED':
279 $result = __('Payment method saved', 'vikbooking');
280 break;
281 case 'ERRINVFILEPAYMENT':
282 $result = __('File Class is already used in another payment method', 'vikbooking');
283 break;
284 case 'VBPAYMENTUPDATED':
285 $result = __('Payment method updated', 'vikbooking');
286 break;
287 case 'VBRENTALORD':
288 $result = __('Reservation', 'vikbooking');
289 break;
290 case 'VBCOMPLETED':
291 $result = __('Completed', 'vikbooking');
292 break;
293 case 'ERRCONFORDERROOMNA':
294 $result = __('Error, the Room is no longer available. Reservation was set to confirmed', 'vikbooking');
295 break;
296 case 'VBORDERSETASCONF':
297 $result = __('Booking successfully set to Confirmed', 'vikbooking');
298 break;
299 case 'VBOVERVIEWNOROOMS':
300 $result = __('No Room Found', 'vikbooking');
301 break;
302 case 'VBFOOTER':
303 $result = __('VikBooking v.%s - Powered by', 'vikbooking');
304 break;
305 case 'VBINSERTFEE':
306 $result = __('Insert base rates', 'vikbooking');
307 break;
308 case 'VBMSGONE':
309 $result = __('No Prices Found, Insert Prices from', 'vikbooking');
310 break;
311 case 'VBHERE':
312 $result = __('Here', 'vikbooking');
313 break;
314 case 'VBMSGTWO':
315 $result = __('Days Field is empty', 'vikbooking');
316 break;
317 case 'VBDAYS':
318 $result = __('Nights', 'vikbooking');
319 break;
320 case 'VBDAYSFROM':
321 $result = __('from', 'vikbooking');
322 break;
323 case 'VBDAYSTO':
324 $result = __('to', 'vikbooking');
325 break;
326 case 'VBDAILYPRICES':
327 $result = __('Price(s) per Night', 'vikbooking');
328 break;
329 case 'VBDAY':
330 $result = __('Night', 'vikbooking');
331 break;
332 case 'VBINSERT':
333 $result = __('Insert', 'vikbooking');
334 break;
335 case 'VBMODRES':
336 $result = __('Edit Reservation', 'vikbooking');
337 break;
338 case 'VBQUICKBOOK':
339 $result = __('Quick Reservation', 'vikbooking');
340 break;
341 case 'VBBOOKMADE':
342 $result = __('Reservation Saved', 'vikbooking');
343 break;
344 case 'VBBOOKNOTMADE':
345 $result = __('Unable to save the reservation, room not available', 'vikbooking');
346 break;
347 case 'VBMSGTHREE':
348 $result = __('Check-in Field is empty', 'vikbooking');
349 break;
350 case 'VBMSGFOUR':
351 $result = __('Check-out Field is empty', 'vikbooking');
352 break;
353 case 'VBDATEPICKUP':
354 $result = __('Check-in Date and Time', 'vikbooking');
355 break;
356 case 'VBAT':
357 $result = __('at', 'vikbooking');
358 break;
359 case 'VBDATERELEASE':
360 $result = __('Check-out Date and Time', 'vikbooking');
361 break;
362 case 'VBCUSTINFO':
363 $result = __('Customer Information', 'vikbooking');
364 break;
365 case 'VBMAKERESERV':
366 $result = __('Save Booking', 'vikbooking');
367 break;
368 case 'VBNOFUTURERES':
369 $result = __('No Future Reservations', 'vikbooking');
370 break;
371 case 'VBVIEW':
372 $result = __('View Mode', 'vikbooking');
373 break;
374 case 'VBTHREEMONTHS':
375 $result = __('3 Months', 'vikbooking');
376 break;
377 case 'VBSIXMONTHS':
378 $result = __('6 Months', 'vikbooking');
379 break;
380 case 'VBTWELVEMONTHS':
381 $result = __('1 Year', 'vikbooking');
382 break;
383 case 'VBSUN':
384 $result = __('Sun', 'vikbooking');
385 break;
386 case 'VBMON':
387 $result = __('Mon', 'vikbooking');
388 break;
389 case 'VBTUE':
390 $result = __('Tue', 'vikbooking');
391 break;
392 case 'VBWED':
393 $result = __('Wed', 'vikbooking');
394 break;
395 case 'VBTHU':
396 $result = __('Thu', 'vikbooking');
397 break;
398 case 'VBFRI':
399 $result = __('Fri', 'vikbooking');
400 break;
401 case 'VBSAT':
402 $result = __('Sat', 'vikbooking');
403 break;
404 case 'VBPICKUPAT':
405 $result = __('Check-in', 'vikbooking');
406 break;
407 case 'VBRELEASEAT':
408 $result = __('Check-out', 'vikbooking');
409 break;
410 case 'VBNOROOMSFOUND':
411 $result = __('No rooms found', 'vikbooking');
412 break;
413 case 'VBJSDELROOM':
414 $result = __('Every selected Room will be removed with its own contents. Confirm', 'vikbooking');
415 break;
416 case 'VBPVIEWROOMONE':
417 $result = __('Name', 'vikbooking');
418 break;
419 case 'VBPVIEWROOMTWO':
420 $result = __('Category', 'vikbooking');
421 break;
422 case 'VBPVIEWROOMTHREE':
423 $result = __('Characteristics', 'vikbooking');
424 break;
425 case 'VBPVIEWROOMFOUR':
426 $result = __('Options', 'vikbooking');
427 break;
428 case 'VBPVIEWROOMSIX':
429 $result = __('Available', 'vikbooking');
430 break;
431 case 'VBPVIEWROOMSEVEN':
432 $result = __('Units', 'vikbooking');
433 break;
434 case 'VBMAKENOTAVAIL':
435 $result = __('Make Not Available', 'vikbooking');
436 break;
437 case 'VBMAKEAVAIL':
438 $result = __('Make Available', 'vikbooking');
439 break;
440 case 'VBANYTHING':
441 $result = __('Any', 'vikbooking');
442 break;
443 case 'VBNOORDERSFOUND':
444 $result = __('No bookings found', 'vikbooking');
445 break;
446 case 'VBJSDELORDER':
447 $result = __('Every selected booking will be removed with its reservation. Confirm', 'vikbooking');
448 break;
449 case 'VBPVIEWORDERSONE':
450 $result = __('Date', 'vikbooking');
451 break;
452 case 'VBPVIEWORDERSTWO':
453 $result = __('Customer Information', 'vikbooking');
454 break;
455 case 'VBPVIEWORDERSTHREE':
456 $result = __('Rooms', 'vikbooking');
457 break;
458 case 'VBPVIEWORDERSPEOPLE':
459 $result = __('Guests', 'vikbooking');
460 break;
461 case 'VBPVIEWORDERSFOUR':
462 $result = __('Check-in', 'vikbooking');
463 break;
464 case 'VBPVIEWORDERSFIVE':
465 $result = __('Check-out', 'vikbooking');
466 break;
467 case 'VBPVIEWORDERSSIX':
468 $result = __('Nights', 'vikbooking');
469 break;
470 case 'VBPVIEWORDERSSEVEN':
471 $result = __('Total', 'vikbooking');
472 break;
473 case 'VBPVIEWORDERSEIGHT':
474 $result = __('Status', 'vikbooking');
475 break;
476 case 'VBPVIEWPLACESONE':
477 $result = __('Name', 'vikbooking');
478 break;
479 case 'VBNOIVAFOUND':
480 $result = __('No Tax rates Found', 'vikbooking');
481 break;
482 case 'VBJSDELIVA':
483 $result = __('Remove every selected Tax Rate', 'vikbooking');
484 break;
485 case 'VBPVIEWIVAONE':
486 $result = __('Name', 'vikbooking');
487 break;
488 case 'VBPVIEWIVATWO':
489 $result = __('tax Rate', 'vikbooking');
490 break;
491 case 'VBNOCATEGORIESFOUND':
492 $result = __('No Categories found', 'vikbooking');
493 break;
494 case 'VBJSDELCATEGORIES':
495 $result = __('Remove every selected Category', 'vikbooking');
496 break;
497 case 'VBPVIEWCATEGORIESONE':
498 $result = __('Category Name', 'vikbooking');
499 break;
500 case 'VBNOCARATFOUND':
501 $result = __('No Characteristics found', 'vikbooking');
502 break;
503 case 'VBJSDELCARAT':
504 $result = __('Remove every selected Characteristic', 'vikbooking');
505 break;
506 case 'VBPVIEWCARATONE':
507 $result = __('Characteristic Name', 'vikbooking');
508 break;
509 case 'VBPVIEWCARATTWO':
510 $result = __('Icon', 'vikbooking');
511 break;
512 case 'VBPVIEWCARATTHREE':
513 $result = __('Text', 'vikbooking');
514 break;
515 case 'VBNOOPTIONALSFOUND':
516 $result = __('No Options found', 'vikbooking');
517 break;
518 case 'VBJSDELOPTIONALS':
519 $result = __('Remove every selected Option', 'vikbooking');
520 break;
521 case 'VBPVIEWOPTIONALSONE':
522 $result = __('Name', 'vikbooking');
523 break;
524 case 'VBPVIEWOPTIONALSTWO':
525 $result = __('Description', 'vikbooking');
526 break;
527 case 'VBPVIEWOPTIONALSTHREE':
528 $result = __('Price', 'vikbooking');
529 break;
530 case 'VBPVIEWOPTIONALSFOUR':
531 $result = __('Tax Rate', 'vikbooking');
532 break;
533 case 'VBPVIEWOPTIONALSFIVE':
534 $result = __('Per Night', 'vikbooking');
535 break;
536 case 'VBPVIEWOPTIONALSSIX':
537 $result = __('Allowed Quantity', 'vikbooking');
538 break;
539 case 'VBPVIEWOPTIONALSSEVEN':
540 $result = __('Image', 'vikbooking');
541 break;
542 case 'VBPVIEWOPTIONALSEIGHT':
543 $result = __('Maximum Cost', 'vikbooking');
544 break;
545 case 'VBNOPRICESFOUND':
546 $result = __('No Prices Found', 'vikbooking');
547 break;
548 case 'VBJSDELPRICES':
549 $result = __('Remove every selected Price ? Each Tax Rate with one of these prices will become null.', 'vikbooking');
550 break;
551 case 'VBPVIEWPRICESONE':
552 $result = __('Price Name', 'vikbooking');
553 break;
554 case 'VBPVIEWPRICESTWO':
555 $result = __('Price Attributes', 'vikbooking');
556 break;
557 case 'VBPVIEWPRICESTHREE':
558 $result = __('Tax Rate', 'vikbooking');
559 break;
560 case 'VBJSDELBUSY':
561 $result = __('Delete Reservation', 'vikbooking');
562 break;
563 case 'VBPEDITBUSYONE':
564 $result = __('Reservation not found', 'vikbooking');
565 break;
566 case 'VBPEDITBUSYTWO':
567 $result = __('Booking Date', 'vikbooking');
568 break;
569 case 'VBPEDITBUSYTHREE':
570 $result = __('Reservation for', 'vikbooking');
571 break;
572 case 'VBPEDITBUSYFOUR':
573 $result = __('Check-in date', 'vikbooking');
574 break;
575 case 'VBPEDITBUSYFIVE':
576 $result = __('At H:M', 'vikbooking');
577 break;
578 case 'VBPEDITBUSYSIX':
579 $result = __('Check-out date', 'vikbooking');
580 break;
581 case 'VBPEDITBUSYSEVEN':
582 $result = __('Price Type', 'vikbooking');
583 break;
584 case 'VBPEDITBUSYEIGHT':
585 $result = __('Options/Taxes/Fees', 'vikbooking');
586 break;
587 case 'VBEDITORDERONE':
588 $result = __('Booking Date', 'vikbooking');
589 break;
590 case 'VBEDITORDERTWO':
591 $result = __('Customer Info', 'vikbooking');
592 break;
593 case 'VBEDITORDERTHREE':
594 $result = __('Room', 'vikbooking');
595 break;
596 case 'VBEDITORDERFOUR':
597 $result = __('Nights', 'vikbooking');
598 break;
599 case 'VBEDITORDERFIVE':
600 $result = __('Check-in', 'vikbooking');
601 break;
602 case 'VBEDITORDERSIX':
603 $result = __('Check-out', 'vikbooking');
604 break;
605 case 'VBEDITORDERSEVEN':
606 $result = __('Rate', 'vikbooking');
607 break;
608 case 'VBEDITORDEREIGHT':
609 $result = __('Options', 'vikbooking');
610 break;
611 case 'VBEDITORDERNINE':
612 $result = __('Total', 'vikbooking');
613 break;
614 case 'VBEDITORDERROOMSNUM':
615 $result = __('Rooms', 'vikbooking');
616 break;
617 case 'VBEDITORDERADULTS':
618 $result = __('Adults', 'vikbooking');
619 break;
620 case 'VBEDITORDERCHILDREN':
621 $result = __('Children', 'vikbooking');
622 break;
623 case 'VBNEWIVAONE':
624 $result = __('Tax Rate Name', 'vikbooking');
625 break;
626 case 'VBNEWIVATWO':
627 $result = __('Tax Rate', 'vikbooking');
628 break;
629 case 'VBNEWPRICEONE':
630 $result = __('Price Name', 'vikbooking');
631 break;
632 case 'VBNEWPRICETWO':
633 $result = __('Price Attributes', 'vikbooking');
634 break;
635 case 'VBNEWPRICETHREE':
636 $result = __('Tax Rate', 'vikbooking');
637 break;
638 case 'VBNEWCATONE':
639 $result = __('Category Name', 'vikbooking');
640 break;
641 case 'VBNEWCARATONE':
642 $result = __('Characteristic Name', 'vikbooking');
643 break;
644 case 'VBNEWCARATTWO':
645 $result = __('Characteristic Image', 'vikbooking');
646 break;
647 case 'VBNEWCARATTHREE':
648 $result = __('Tooltip Text or Font Icon HTML', 'vikbooking');
649 break;
650 case 'VBNEWOPTONE':
651 $result = __('Option Name', 'vikbooking');
652 break;
653 case 'VBNEWOPTTWO':
654 $result = __('Option Description', 'vikbooking');
655 break;
656 case 'VBNEWOPTTHREE':
657 $result = __('Option Price', 'vikbooking');
658 break;
659 case 'VBNEWOPTFOUR':
660 $result = __('Tax Rate', 'vikbooking');
661 break;
662 case 'VBNEWOPTFIVE':
663 $result = __('Cost per Night', 'vikbooking');
664 break;
665 case 'VBNEWOPTSIX':
666 $result = __('Selectable Quantity', 'vikbooking');
667 break;
668 case 'VBNEWOPTSEVEN':
669 $result = __('Option Image', 'vikbooking');
670 break;
671 case 'VBNEWOPTEIGHT':
672 $result = __('Maximum Cost', 'vikbooking');
673 break;
674 case 'VBNEWOPTNINE':
675 $result = __('Resize Image', 'vikbooking');
676 break;
677 case 'VBNEWOPTTEN':
678 $result = __('If Larger than', 'vikbooking');
679 break;
680 case 'VBNEWROOMONE':
681 $result = __('Room Category', 'vikbooking');
682 break;
683 case 'VBNEWROOMTHREE':
684 $result = __('Room Characteristics', 'vikbooking');
685 break;
686 case 'VBNEWROOMFOUR':
687 $result = __('Room Options', 'vikbooking');
688 break;
689 case 'VBNEWROOMFIVE':
690 $result = __('Room Name', 'vikbooking');
691 break;
692 case 'VBNEWROOMSIX':
693 $result = __('Room Main Image', 'vikbooking');
694 break;
695 case 'VBNEWROOMSEVEN':
696 $result = __('Room Description', 'vikbooking');
697 break;
698 case 'VBNEWROOMEIGHT':
699 $result = __('Room Published/Available', 'vikbooking');
700 break;
701 case 'VBNEWROOMNINE':
702 $result = __('Room Units', 'vikbooking');
703 break;
704 case 'VBNOTARFOUND':
705 $result = __('No Rates found', 'vikbooking');
706 break;
707 case 'VBJSDELTAR':
708 $result = __('Remove every selected Rate', 'vikbooking');
709 break;
710 case 'VBPVIEWTARONE':
711 $result = __('Rate for nights', 'vikbooking');
712 break;
713 case 'VBPVIEWTARTWO':
714 $result = __('Update Rates', 'vikbooking');
715 break;
716 case 'VBCONFIGONETHREE':
717 $result = __('Check-out time', 'vikbooking');
718 break;
719 case 'VBCONFIGONEFIVE':
720 $result = __('Booking Enabled', 'vikbooking');
721 break;
722 case 'VBCONFIGONESIX':
723 $result = __('Booking Disabled Message', 'vikbooking');
724 break;
725 case 'VBCONFIGONESEVEN':
726 $result = __('Check-in time', 'vikbooking');
727 break;
728 case 'VBCONFIGONEEIGHT':
729 $result = __('Hours of Extended Gratuity Period', 'vikbooking');
730 break;
731 case 'VBCONFIGONENINE':
732 $result = __('Checked-out room is available after', 'vikbooking');
733 break;
734 case 'VBCONFIGONEELEVEN':
735 $result = __('Check-in/out Date Format', 'vikbooking');
736 break;
737 case 'VBCONFIGONETWELVE':
738 $result = __('DD/MM/YYYY', 'vikbooking');
739 break;
740 case 'VBCONFIGONETENTHREE':
741 $result = __('YYYY/MM/DD', 'vikbooking');
742 break;
743 case 'VBCONFIGONETENFOUR':
744 $result = __('Choose Rooms Category', 'vikbooking');
745 break;
746 case 'VBCONFIGONETENFIVE':
747 $result = __('Token Form Booking Submit', 'vikbooking');
748 break;
749 case 'VBCONFIGONETENSIX':
750 $result = __('Admin e-Mail', 'vikbooking');
751 break;
752 case 'VBCONFIGONETENSEVEN':
753 $result = __('Minutes of Waiting for the Payment', 'vikbooking');
754 break;
755 case 'VBCONFIGONETENEIGHT':
756 $result = __('hours', 'vikbooking');
757 break;
758 case 'VBCONFIGTWOONE':
759 $result = __('Enable Paypal', 'vikbooking');
760 break;
761 case 'VBCONFIGTWOTWO':
762 $result = __('Payments Account<br/><small>(for Gateways like Paypal)</small>', 'vikbooking');
763 break;
764 case 'VBCONFIGTWOTHREE':
765 $result = __('Pay Entire Amount', 'vikbooking');
766 break;
767 case 'VBCONFIGTWOFOUR':
768 $result = __('Leave a deposit of ', 'vikbooking');
769 break;
770 case 'VBCONFIGTWOFIVE':
771 $result = __('Prices Tax Included', 'vikbooking');
772 break;
773 case 'VBCONFIGTWOSIX':
774 $result = __('Payment Transaction Name', 'vikbooking');
775 break;
776 case 'VBCONFIGTHREEONE':
777 $result = __('Company Name', 'vikbooking');
778 break;
779 case 'VBCONFIGTHREETWO':
780 $result = __('Front Title Tag', 'vikbooking');
781 break;
782 case 'VBCONFIGTHREETHREE':
783 $result = __('Front Title Tag Class', 'vikbooking');
784 break;
785 case 'VBCONFIGTHREEFOUR':
786 $result = __('Search Button Text', 'vikbooking');
787 break;
788 case 'VBCONFIGTHREEFIVE':
789 $result = __('Search Button Class', 'vikbooking');
790 break;
791 case 'VBCONFIGTHREESIX':
792 $result = __('Show VikBooking Footer', 'vikbooking');
793 break;
794 case 'VBCONFIGTHREESEVEN':
795 $result = __('Opening Page Text', 'vikbooking');
796 break;
797 case 'VBCONFIGTHREEEIGHT':
798 $result = __('Closing Page Text', 'vikbooking');
799 break;
800 case 'VBCONFIGFOURONE':
801 $result = __('Enable Removed Bookings Saving', 'vikbooking');
802 break;
803 case 'VBCONFIGFOURTWO':
804 $result = __('Enable Search Statistics', 'vikbooking');
805 break;
806 case 'VBCONFIGFOURTHREE':
807 $result = __('Send Searches Notifies to Admin', 'vikbooking');
808 break;
809 case 'VBCONFIGFOURFOUR':
810 $result = __('Disclaimer', 'vikbooking');
811 break;
812 case 'VBCONFIGFOURLOGO':
813 $result = __('Company Logo', 'vikbooking');
814 break;
815 case 'VBCONFIGFOURORDMAILFOOTER':
816 $result = __('Footer Text Reservation eMail', 'vikbooking');
817 break;
818 case 'NESSUNAIVA':
819 $result = __('No Tax Rates Found', 'vikbooking');
820 break;
821 case 'ASKFISCCODE':
822 $result = __('Ask Italian Fiscal Code', 'vikbooking');
823 break;
824 case 'VBCONFIGTHREECURNAME':
825 $result = __('Currency Name', 'vikbooking');
826 break;
827 case 'VBCONFIGTHREECURSYMB':
828 $result = __('Currency Symbol', 'vikbooking');
829 break;
830 case 'VBCONFIGTHREECURCODEPP':
831 $result = __('Transactions Currency Code', 'vikbooking');
832 break;
833 case 'VBPCHOOSEBUSYORDATE':
834 $result = __('Reservation Date', 'vikbooking');
835 break;
836 case 'VBPCHOOSEBUSYCAVAIL':
837 $result = __('Units Available', 'vikbooking');
838 break;
839 case 'VBYES':
840 $result = __('Yes', 'vikbooking');
841 break;
842 case 'VBNO':
843 $result = __('No', 'vikbooking');
844 break;
845 case 'VBMAINSEASONSTITLE':
846 $result = __('Vik Booking - Special Prices', 'vikbooking');
847 break;
848 case 'VBMAINSEASONSDEL':
849 $result = __('Delete', 'vikbooking');
850 break;
851 case 'VBMAINSEASONSEDIT':
852 $result = __('Edit', 'vikbooking');
853 break;
854 case 'VBMAINSEASONSNEW':
855 $result = __('New Special Price', 'vikbooking');
856 break;
857 case 'VBMAINSEASONTITLENEW':
858 $result = __('Vik Booking - New Special Price', 'vikbooking');
859 break;
860 case 'VBMAINSEASONTITLEEDIT':
861 $result = __('Vik Booking - Edit Special Price', 'vikbooking');
862 break;
863 case 'VBSETORDCONFIRMED':
864 $result = __('Set to Confirmed', 'vikbooking');
865 break;
866 case 'VBPAYMENTMETHOD':
867 $result = __('Method of Payment', 'vikbooking');
868 break;
869 case 'VBUSEJUTILITY':
870 $result = __('Send emails with JUtility', 'vikbooking');
871 break;
872 case 'VBCONFIGTHREENINE':
873 $result = __('Show Partially Reserved Days', 'vikbooking');
874 break;
875 case 'VBCONFIGTHREETEN':
876 $result = __('Number of Months to Show', 'vikbooking');
877 break;
878 case 'VBLIBONE':
879 $result = __('Reservation Received on the', 'vikbooking');
880 break;
881 case 'VBLIBTWO':
882 $result = __('Customer Info', 'vikbooking');
883 break;
884 case 'VBLIBTHREE':
885 $result = __('Rooms Reserved', 'vikbooking');
886 break;
887 case 'VBLIBFOUR':
888 $result = __('Check-in date', 'vikbooking');
889 break;
890 case 'VBLIBFIVE':
891 $result = __('Check-out date', 'vikbooking');
892 break;
893 case 'VBLIBSIX':
894 $result = __('Total', 'vikbooking');
895 break;
896 case 'VBLIBSEVEN':
897 $result = __('Booking Status', 'vikbooking');
898 break;
899 case 'VBLIBEIGHT':
900 $result = __('Booking Date', 'vikbooking');
901 break;
902 case 'VBLIBNINE':
903 $result = __('Personal Details', 'vikbooking');
904 break;
905 case 'VBLIBTEN':
906 $result = __('Rooms Booked', 'vikbooking');
907 break;
908 case 'VBLIBELEVEN':
909 $result = __('Check-in date', 'vikbooking');
910 break;
911 case 'VBLIBTWELVE':
912 $result = __('Check-out date', 'vikbooking');
913 break;
914 case 'VBLIBTENTHREE':
915 $result = __('To see your booking details, visit the following page', 'vikbooking');
916 break;
917 case 'VBMONTHONE':
918 $result = __('January', 'vikbooking');
919 break;
920 case 'VBMONTHTWO':
921 $result = __('February', 'vikbooking');
922 break;
923 case 'VBMONTHTHREE':
924 $result = __('March', 'vikbooking');
925 break;
926 case 'VBMONTHFOUR':
927 $result = __('April', 'vikbooking');
928 break;
929 case 'VBMONTHFIVE':
930 $result = __('May', 'vikbooking');
931 break;
932 case 'VBMONTHSIX':
933 $result = __('June', 'vikbooking');
934 break;
935 case 'VBMONTHSEVEN':
936 $result = __('July', 'vikbooking');
937 break;
938 case 'VBMONTHEIGHT':
939 $result = __('August', 'vikbooking');
940 break;
941 case 'VBMONTHNINE':
942 $result = __('September', 'vikbooking');
943 break;
944 case 'VBMONTHTEN':
945 $result = __('October', 'vikbooking');
946 break;
947 case 'VBMONTHELEVEN':
948 $result = __('November', 'vikbooking');
949 break;
950 case 'VBMONTHTWELVE':
951 $result = __('December', 'vikbooking');
952 break;
953 case 'VBNOSEASONS':
954 $result = __('No Special Prices found', 'vikbooking');
955 break;
956 case 'VBJSDELSEASONS':
957 $result = __('Confirm', 'vikbooking');
958 break;
959 case 'VBPSHOWSEASONSONE':
960 $result = __('From', 'vikbooking');
961 break;
962 case 'VBPSHOWSEASONSTWO':
963 $result = __('To', 'vikbooking');
964 break;
965 case 'VBPSHOWSEASONSTHREE':
966 $result = __('Type', 'vikbooking');
967 break;
968 case 'VBPSHOWSEASONSFOUR':
969 $result = __('Value', 'vikbooking');
970 break;
971 case 'VBPSHOWSEASONSFIVE':
972 $result = __('Charge', 'vikbooking');
973 break;
974 case 'VBPSHOWSEASONSSIX':
975 $result = __('Discount', 'vikbooking');
976 break;
977 case 'VBNOROOMSFOUNDSEASONS':
978 $result = __('No Rooms found', 'vikbooking');
979 break;
980 case 'VBNEWSEASONONE':
981 $result = __('From', 'vikbooking');
982 break;
983 case 'VBNEWSEASONTWO':
984 $result = __('To', 'vikbooking');
985 break;
986 case 'VBNEWSEASONTHREE':
987 $result = __('Type', 'vikbooking');
988 break;
989 case 'VBNEWSEASONFOUR':
990 $result = __('Value', 'vikbooking');
991 break;
992 case 'VBNEWSEASONFIVE':
993 $result = __('Rooms', 'vikbooking');
994 break;
995 case 'VBNEWSEASONSIX':
996 $result = __('Charge', 'vikbooking');
997 break;
998 case 'VBNEWSEASONSEVEN':
999 $result = __('Discount', 'vikbooking');
1000 break;
1001 case 'ERRINVDATESEASON':
1002 $result = __('Invalid Dates', 'vikbooking');
1003 break;
1004 case 'ERRINVDATEROOMSLOCSEASON':
1005 $result = __('Season with same dates and rooms already exists', 'vikbooking');
1006 break;
1007 case 'VBSEASONSAVED':
1008 $result = __('Special Price Saved', 'vikbooking');
1009 break;
1010 case 'VBSEASONUPDATED':
1011 $result = __('Updated', 'vikbooking');
1012 break;
1013 case 'VBSEASONANY':
1014 $result = __('Any', 'vikbooking');
1015 break;
1016 case 'VBNOPAYMENTS':
1017 $result = __('No Payment Methods found', 'vikbooking');
1018 break;
1019 case 'VBJSDELPAYMENTS':
1020 $result = __('Confirm', 'vikbooking');
1021 break;
1022 case 'VBPSHOWPAYMENTSONE':
1023 $result = __('Name', 'vikbooking');
1024 break;
1025 case 'VBPSHOWPAYMENTSTWO':
1026 $result = __('File', 'vikbooking');
1027 break;
1028 case 'VBPSHOWPAYMENTSTHREE':
1029 $result = __('Notes', 'vikbooking');
1030 break;
1031 case 'VBPSHOWPAYMENTSFOUR':
1032 $result = __('Cost', 'vikbooking');
1033 break;
1034 case 'VBPSHOWPAYMENTSFIVE':
1035 $result = __('Published', 'vikbooking');
1036 break;
1037 case 'VBNEWPAYMENTONE':
1038 $result = __('Payment Name', 'vikbooking');
1039 break;
1040 case 'VBNEWPAYMENTTWO':
1041 $result = __('File Class', 'vikbooking');
1042 break;
1043 case 'VBNEWPAYMENTTHREE':
1044 $result = __('Published', 'vikbooking');
1045 break;
1046 case 'VBNEWPAYMENTFOUR':
1047 $result = __('Cost', 'vikbooking');
1048 break;
1049 case 'VBNEWPAYMENTFIVE':
1050 $result = __('Notes', 'vikbooking');
1051 break;
1052 case 'VBNEWPAYMENTSIX':
1053 $result = __('Yes', 'vikbooking');
1054 break;
1055 case 'VBNEWPAYMENTSEVEN':
1056 $result = __('No', 'vikbooking');
1057 break;
1058 case 'VBLIBPAYNAME':
1059 $result = __('Payment method', 'vikbooking');
1060 break;
1061 case 'VBNEWPAYMENTEIGHT':
1062 $result = __('Auto-Set Booking Confirmed', 'vikbooking');
1063 break;
1064 case 'VBNEWPAYMENTNINE':
1065 $result = __('Always Show Notes', 'vikbooking');
1066 break;
1067 case 'VBNOFIELDSFOUND':
1068 $result = __('No Custom Fields Found', 'vikbooking');
1069 break;
1070 case 'VBPVIEWCUSTOMFONE':
1071 $result = __('Name', 'vikbooking');
1072 break;
1073 case 'VBPVIEWCUSTOMFTWO':
1074 $result = __('Type', 'vikbooking');
1075 break;
1076 case 'VBPVIEWCUSTOMFTHREE':
1077 $result = __('Required', 'vikbooking');
1078 break;
1079 case 'VBPVIEWCUSTOMFFOUR':
1080 $result = __('Ordering', 'vikbooking');
1081 break;
1082 case 'VBPVIEWCUSTOMFFIVE':
1083 $result = __('e-Mail', 'vikbooking');
1084 break;
1085 case 'VBNEWCUSTOMFONE':
1086 $result = __('Field Name', 'vikbooking');
1087 break;
1088 case 'VBNEWCUSTOMFTWO':
1089 $result = __('Type', 'vikbooking');
1090 break;
1091 case 'VBNEWCUSTOMFTHREE':
1092 $result = __('Text', 'vikbooking');
1093 break;
1094 case 'VBNEWCUSTOMFFOUR':
1095 $result = __('Dropdown Select', 'vikbooking');
1096 break;
1097 case 'VBNEWCUSTOMFFIVE':
1098 $result = __('Checkbox', 'vikbooking');
1099 break;
1100 case 'VBNEWCUSTOMFSIX':
1101 $result = __('Required', 'vikbooking');
1102 break;
1103 case 'VBNEWCUSTOMFSEVEN':
1104 $result = __('is e-Mail', 'vikbooking');
1105 break;
1106 case 'VBNEWCUSTOMFEIGHT':
1107 $result = __('Popup Link', 'vikbooking');
1108 break;
1109 case 'VBNEWCUSTOMFNINE':
1110 $result = __('Add Answer', 'vikbooking');
1111 break;
1112 case 'VBNEWCUSTOMFTEN':
1113 $result = __('Textarea', 'vikbooking');
1114 break;
1115 case 'VBMAINCUSTOMFTITLE':
1116 $result = __('Vik Booking - Custom Fields', 'vikbooking');
1117 break;
1118 case 'VBMAINCUSTOMFDEL':
1119 $result = __('Remove', 'vikbooking');
1120 break;
1121 case 'VBMAINCUSTOMFEDIT':
1122 $result = __('Edit', 'vikbooking');
1123 break;
1124 case 'VBMAINCUSTOMFNEW':
1125 $result = __('New', 'vikbooking');
1126 break;
1127 case 'VBMENUONE':
1128 $result = __('Reservations', 'vikbooking');
1129 break;
1130 case 'VBMENUTWO':
1131 $result = __('Rooms', 'vikbooking');
1132 break;
1133 case 'VBMENUTHREE':
1134 $result = __('Bookings', 'vikbooking');
1135 break;
1136 case 'VBMENUFOUR':
1137 $result = __('Global', 'vikbooking');
1138 break;
1139 case 'VBMENUFIVE':
1140 $result = __('Types of Price', 'vikbooking');
1141 break;
1142 case 'VBMENUSIX':
1143 $result = __('Categories', 'vikbooking');
1144 break;
1145 case 'VBMENUSEVEN':
1146 $result = __('All Bookings', 'vikbooking');
1147 break;
1148 case 'VBMENUEIGHT':
1149 $result = __('Search Statistics', 'vikbooking');
1150 break;
1151 case 'VBMENUNINE':
1152 $result = __('Tax Rates', 'vikbooking');
1153 break;
1154 case 'VBMENUTEN':
1155 $result = __('Rooms List', 'vikbooking');
1156 break;
1157 case 'VBMENUTWELVE':
1158 $result = __('Configuration', 'vikbooking');
1159 break;
1160 case 'VBMENUTENFOUR':
1161 $result = __('Characteristics', 'vikbooking');
1162 break;
1163 case 'VBMENUTENFIVE':
1164 $result = __('Options/Extras', 'vikbooking');
1165 break;
1166 case 'VBMENUTENSEVEN':
1167 $result = __('Special Prices', 'vikbooking');
1168 break;
1169 case 'VBMENUTENEIGHT':
1170 $result = __('Payment methods', 'vikbooking');
1171 break;
1172 case 'VBMENUTENNINE':
1173 $result = __('Availability Overview', 'vikbooking');
1174 break;
1175 case 'VBMENUTENTEN':
1176 $result = __('Custom Fields', 'vikbooking');
1177 break;
1178 case 'ORDER_NAME':
1179 $result = __('Name', 'vikbooking');
1180 break;
1181 case 'ORDER_LNAME':
1182 $result = __('Last Name', 'vikbooking');
1183 break;
1184 case 'ORDER_EMAIL':
1185 $result = __('e-Mail', 'vikbooking');
1186 break;
1187 case 'ORDER_PHONE':
1188 $result = __('Phone', 'vikbooking');
1189 break;
1190 case 'ORDER_ADDRESS':
1191 $result = __('Address', 'vikbooking');
1192 break;
1193 case 'ORDER_ZIP':
1194 $result = __('Zip Code', 'vikbooking');
1195 break;
1196 case 'ORDER_CITY':
1197 $result = __('City', 'vikbooking');
1198 break;
1199 case 'ORDER_STATE':
1200 $result = __('Country', 'vikbooking');
1201 break;
1202 case 'ORDER_DBIRTH':
1203 $result = __('Date of Birth', 'vikbooking');
1204 break;
1205 case 'ORDER_FLIGHTNUM':
1206 $result = __('Flight Number', 'vikbooking');
1207 break;
1208 case 'ORDER_NOTES':
1209 $result = __('Notes', 'vikbooking');
1210 break;
1211 case 'COM_VIKBOOKING_MENU':
1212 $result = __('VikBooking', 'vikbooking');
1213 break;
1214 case 'VBMOREIMAGES':
1215 $result = __('Extra Images', 'vikbooking');
1216 break;
1217 case 'VBADDIMAGES':
1218 $result = __('Add Upload Field', 'vikbooking');
1219 break;
1220 case 'VBRESIZEIMAGES':
1221 $result = __('Resize Images', 'vikbooking');
1222 break;
1223 case 'VBCONFIGREQUIRELOGIN':
1224 $result = __('Require Login', 'vikbooking');
1225 break;
1226 case 'VBSEASON':
1227 $result = __('Season', 'vikbooking');
1228 break;
1229 case 'VBWEEKDAYS':
1230 $result = __('Week Days', 'vikbooking');
1231 break;
1232 case 'VBSEASONDAYS':
1233 $result = __('Days of the Week', 'vikbooking');
1234 break;
1235 case 'VBSUNDAY':
1236 $result = __('Sunday', 'vikbooking');
1237 break;
1238 case 'VBMONDAY':
1239 $result = __('Monday', 'vikbooking');
1240 break;
1241 case 'VBTUESDAY':
1242 $result = __('Tuesday', 'vikbooking');
1243 break;
1244 case 'VBWEDNESDAY':
1245 $result = __('Wednesday', 'vikbooking');
1246 break;
1247 case 'VBTHURSDAY':
1248 $result = __('Thursday', 'vikbooking');
1249 break;
1250 case 'VBFRIDAY':
1251 $result = __('Friday', 'vikbooking');
1252 break;
1253 case 'VBSATURDAY':
1254 $result = __('Saturday', 'vikbooking');
1255 break;
1256 case 'VBSPRICESHELP':
1257 $result = __('Insert a starting and an ending date (Season) or select one or more days of the week (Week Days). Only one filter is required. Provide a Season and Week Days to combine the filters', 'vikbooking');
1258 break;
1259 case 'VBSPRICESHELPTITLE':
1260 $result = __('Seasons and Week Days', 'vikbooking');
1261 break;
1262 case 'VBSPNAME':
1263 $result = __('Special Price Name', 'vikbooking');
1264 break;
1265 case 'VBPSHOWSEASONSPNAME':
1266 $result = __('Name', 'vikbooking');
1267 break;
1268 case 'VBPSHOWSEASONSWDAYS':
1269 $result = __('Week Days', 'vikbooking');
1270 break;
1271 case 'VBPLACELAT':
1272 $result = __('Latitude', 'vikbooking');
1273 break;
1274 case 'VBPLACELNG':
1275 $result = __('Longitude', 'vikbooking');
1276 break;
1277 case 'VBPLACEDESCR':
1278 $result = __('Description', 'vikbooking');
1279 break;
1280 case 'VBDAILYFARES':
1281 $result = __('Add Rates per Night', 'vikbooking');
1282 break;
1283 case 'VBNEWCUSTOMFSEPARATOR':
1284 $result = __('Separator', 'vikbooking');
1285 break;
1286 case 'VBSEPDRIVERD':
1287 $result = __('Billing Information', 'vikbooking');
1288 break;
1289 case 'VBCONFIGONEJQUERY':
1290 $result = __('Load jQuery Library', 'vikbooking');
1291 break;
1292 case 'VBCONFIGONECALENDAR':
1293 $result = __('Calendar Type', 'vikbooking');
1294 break;
1295 case 'VBORDERNUMBER':
1296 $result = __('Booking Number', 'vikbooking');
1297 break;
1298 case 'VBORDERDETAILS':
1299 $result = __('Booking Details', 'vikbooking');
1300 break;
1301 case 'VBNEWCATDESCR':
1302 $result = __('Description', 'vikbooking');
1303 break;
1304 case 'VBPVIEWCATEGORIESDESCR':
1305 $result = __('Description', 'vikbooking');
1306 break;
1307 case 'VBPAYMENTSHELPCONFIRMTXT':
1308 $result = __('Auto-Set Reservation to Confirmed', 'vikbooking');
1309 break;
1310 case 'VBPAYMENTSHELPCONFIRM':
1311 $result = __('If enabled, the status of the booking will be set to Confirmed upon the selection of this payment option, by skipping any transaction. This setting should always be disabled for payment gateways that require a validation of the credit card transaction. It could be turned on for payment methods like Cash, Pay on Arrival or Bank Transfer.', 'vikbooking');
1312 break;
1313 case 'VBNEWPAYMENTCHARGEORDISC':
1314 $result = __('Charge/Discount', 'vikbooking');
1315 break;
1316 case 'VBNEWPAYMENTCHARGEPLUS':
1317 $result = __('Charge +', 'vikbooking');
1318 break;
1319 case 'VBNEWPAYMENTDISCMINUS':
1320 $result = __('Discount -', 'vikbooking');
1321 break;
1322 case 'VBPSHOWPAYMENTSCHARGEORDISC':
1323 $result = __('Charge/Discount', 'vikbooking');
1324 break;
1325 case 'VBPLACEOPENTIME':
1326 $result = __('Opening Time', 'vikbooking');
1327 break;
1328 case 'VBPLACEOPENTIMETXT':
1329 $result = __('The opening time for Check-in and-or Check-out. If empty, the global opening time of the configuration will be applied', 'vikbooking');
1330 break;
1331 case 'VBPLACEOPENTIMEFROM':
1332 $result = __('From', 'vikbooking');
1333 break;
1334 case 'VBPLACEOPENTIMETO':
1335 $result = __('To', 'vikbooking');
1336 break;
1337 case 'VBSPONLYPICKINCL':
1338 $result = __('Check-in Date must be after the beginning of the Season', 'vikbooking');
1339 break;
1340 case 'VBSELVEHICLE':
1341 $result = __('Select Room', 'vikbooking');
1342 break;
1343 case 'VBNEWOPTFORCESEL':
1344 $result = __('Always Selected', 'vikbooking');
1345 break;
1346 case 'VBNEWOPTFORCEVALT':
1347 $result = __('Quantity', 'vikbooking');
1348 break;
1349 case 'VBNEWOPTFORCEVALTPDAY':
1350 $result = __('per Night of Journey', 'vikbooking');
1351 break;
1352 case 'VBCONFIGONECOUPONS':
1353 $result = __('Enable Coupons', 'vikbooking');
1354 break;
1355 case 'VBNOCOUPONSFOUND':
1356 $result = __('No coupon found', 'vikbooking');
1357 break;
1358 case 'VBPVIEWCOUPONSONE':
1359 $result = __('Code', 'vikbooking');
1360 break;
1361 case 'VBPVIEWCOUPONSTWO':
1362 $result = __('Type', 'vikbooking');
1363 break;
1364 case 'VBPVIEWCOUPONSTHREE':
1365 $result = __('Valid Dates', 'vikbooking');
1366 break;
1367 case 'VBPVIEWCOUPONSFOUR':
1368 $result = __('Rooms', 'vikbooking');
1369 break;
1370 case 'VBPVIEWCOUPONSFIVE':
1371 $result = __('Min. Booking Total', 'vikbooking');
1372 break;
1373 case 'VBCOUPONTYPEPERMANENT':
1374 $result = __('Permanent', 'vikbooking');
1375 break;
1376 case 'VBCOUPONTYPEGIFT':
1377 $result = __('Gift', 'vikbooking');
1378 break;
1379 case 'VBCOUPONALWAYSVALID':
1380 $result = __('Always Valid', 'vikbooking');
1381 break;
1382 case 'VBCOUPONALLVEHICLES':
1383 $result = __('All Rooms', 'vikbooking');
1384 break;
1385 case 'VBNEWCOUPONONE':
1386 $result = __('Coupon Code', 'vikbooking');
1387 break;
1388 case 'VBNEWCOUPONTWO':
1389 $result = __('Coupon Type', 'vikbooking');
1390 break;
1391 case 'VBNEWCOUPONTHREE':
1392 $result = __('Percent or Total', 'vikbooking');
1393 break;
1394 case 'VBNEWCOUPONFOUR':
1395 $result = __('Value', 'vikbooking');
1396 break;
1397 case 'VBNEWCOUPONFIVE':
1398 $result = __('Rooms', 'vikbooking');
1399 break;
1400 case 'VBNEWCOUPONSIX':
1401 $result = __('Validity Dates', 'vikbooking');
1402 break;
1403 case 'VBNEWCOUPONSEVEN':
1404 $result = __('Min. Booking Total', 'vikbooking');
1405 break;
1406 case 'VBNEWCOUPONEIGHT':
1407 $result = __('All', 'vikbooking');
1408 break;
1409 case 'VBNEWCOUPONNINE':
1410 $result = __('If no dates specified, the coupon will be always valid', 'vikbooking');
1411 break;
1412 case 'VBCOUPONEXISTS':
1413 $result = __('Error, the coupon code already exists', 'vikbooking');
1414 break;
1415 case 'VBCOUPONSAVEOK':
1416 $result = __('Coupon Successfully Saved', 'vikbooking');
1417 break;
1418 case 'VBMENUFARES':
1419 $result = __('Pricing', 'vikbooking');
1420 break;
1421 case 'VBMENUDASHBOARD':
1422 $result = __('Dashboard', 'vikbooking');
1423 break;
1424 case 'VBMENUPRICESTABLE':
1425 $result = __('Rates Table', 'vikbooking');
1426 break;
1427 case 'VBMENUQUICKRES':
1428 $result = __('Calendar', 'vikbooking');
1429 break;
1430 case 'VBMENUCOUPONS':
1431 $result = __('Coupons', 'vikbooking');
1432 break;
1433 case 'VBMAINCOUPONTITLE':
1434 $result = __('Vik Booking - Coupons', 'vikbooking');
1435 break;
1436 case 'VBMAINCOUPONNEW':
1437 $result = __('New', 'vikbooking');
1438 break;
1439 case 'VBMAINCOUPONEDIT':
1440 $result = __('Edit', 'vikbooking');
1441 break;
1442 case 'VBMAINCOUPONDEL':
1443 $result = __('Remove', 'vikbooking');
1444 break;
1445 case 'VBMAINDASHBOARDTITLE':
1446 $result = __('Vik Booking - Dashboard', 'vikbooking');
1447 break;
1448 case 'VBDASHUPCRES':
1449 $result = __('Upcoming Reservations', 'vikbooking');
1450 break;
1451 case 'VBDASHALLPLACES':
1452 $result = __('Any', 'vikbooking');
1453 break;
1454 case 'VBDASHUPRESONE':
1455 $result = __('ID', 'vikbooking');
1456 break;
1457 case 'VBDASHUPRESTWO':
1458 $result = __('Rooms', 'vikbooking');
1459 break;
1460 case 'VBDASHUPRESTHREE':
1461 $result = __('Check-in', 'vikbooking');
1462 break;
1463 case 'VBDASHUPRESFOUR':
1464 $result = __('Check-out', 'vikbooking');
1465 break;
1466 case 'VBDASHUPRESFIVE':
1467 $result = __('Status', 'vikbooking');
1468 break;
1469 case 'VBDASHUPRESSIX':
1470 $result = __('Adults', 'vikbooking');
1471 break;
1472 case 'VBDASHSTATS':
1473 $result = __('Configuration Status', 'vikbooking');
1474 break;
1475 case 'VBDASHNOPRICES':
1476 $result = __('Types of Price', 'vikbooking');
1477 break;
1478 case 'VBDASHNOCATEGORIES':
1479 $result = __('Categories', 'vikbooking');
1480 break;
1481 case 'VBDASHNOROOMS':
1482 $result = __('Rooms', 'vikbooking');
1483 break;
1484 case 'VBDASHNODAILYFARES':
1485 $result = __('Costs/Pricing', 'vikbooking');
1486 break;
1487 case 'VBDASHTOTRESCONF':
1488 $result = __('Confirmed Reservations', 'vikbooking');
1489 break;
1490 case 'VBDASHTOTRESPEND':
1491 $result = __('Standby Reservations', 'vikbooking');
1492 break;
1493 case 'VBCOUPON':
1494 $result = __('Coupon', 'vikbooking');
1495 break;
1496 case 'VBCONFIGTHEME':
1497 $result = __('Theme', 'vikbooking');
1498 break;
1499 case 'VBNEWOPTPERPERSON':
1500 $result = __('Cost per Person', 'vikbooking');
1501 break;
1502 case 'VBPVIEWOPTIONALSPERPERS':
1503 $result = __('Per Person', 'vikbooking');
1504 break;
1505 case 'VBNEWROOMADULTS':
1506 $result = __('Adults', 'vikbooking');
1507 break;
1508 case 'VBNEWROOMCHILDREN':
1509 $result = __('Children', 'vikbooking');
1510 break;
1511 case 'VBNEWROOMMIN':
1512 $result = __('Min.', 'vikbooking');
1513 break;
1514 case 'VBNEWROOMMAX':
1515 $result = __('Max.', 'vikbooking');
1516 break;
1517 case 'VBPVIEWROOMADULTS':
1518 $result = __('Adults', 'vikbooking');
1519 break;
1520 case 'VBPVIEWROOMCHILDREN':
1521 $result = __('Children', 'vikbooking');
1522 break;
1523 case 'VBADULTSDIFFNUM':
1524 $result = __('#%s Adult(s) Usage', 'vikbooking');
1525 break;
1526 case 'VBADULTSDIFFCHDISCONE':
1527 $result = __('Charge +', 'vikbooking');
1528 break;
1529 case 'VBADULTSDIFFCHDISCTWO':
1530 $result = __('Discount -', 'vikbooking');
1531 break;
1532 case 'VBNEWROOMADULTSDIFF':
1533 $result = __('Adults Charges/Discounts', 'vikbooking');
1534 break;
1535 case 'VBNEWROOMADULTSDIFFHELP':
1536 $result = __('With this function you can set charges or discounts based on the Adults Occupancy of the room. The standard room price(s) are meant for the maximum or minimum number of adults that this room allows. For example a double room for maximum 2 adults can be given also to a single adult, in this case you might want to set a discount or a charge for the single usage of the double room. The price(s) for 2 adults are the Prices per Night that this room has defined in the Rates Table (in case the Rates Table is meant for the maximum occupancy of the room).', 'vikbooking');
1537 break;
1538 case 'VBNEWROOMNOTCHANGENUMMESS':
1539 $result = __('You have changed the minimum and the maximum number of adults for this room, please save the changes and enter this page again for adding Charges or Discounts based on the Adults Occupancy.', 'vikbooking');
1540 break;
1541 case 'VBNEWROOMADULTSDIFFBEFSAVE':
1542 $result = __('After saving, if the maximum number of adults is greater than 1 and the minimum numb. of adults is less than the maximum, you will be able to set charges or discounts based on the Adults Occupancy of the room.', 'vikbooking');
1543 break;
1544 case 'VBUPDROOMADCHDISCSAVED':
1545 $result = __('Adults Charges/Discounts Successfully Saved', 'vikbooking');
1546 break;
1547 case 'VBCONFIGSHOWCHILDREN':
1548 $result = __('Show Number of Children', 'vikbooking');
1549 break;
1550 case 'VBERRNOFAREFOUND':
1551 $result = __('Error, rate not found', 'vikbooking');
1552 break;
1553 case 'VBNEWROOMSMALLDESC':
1554 $result = __('Short Description', 'vikbooking');
1555 break;
1556 case 'VBMAILROOMNUM':
1557 $result = __('Room #', 'vikbooking');
1558 break;
1559 case 'VBMAILADULTS':
1560 $result = __('Adults', 'vikbooking');
1561 break;
1562 case 'VBMAILCHILDREN':
1563 $result = __('Children', 'vikbooking');
1564 break;
1565 case 'VBMAILADULT':
1566 $result = __('Adult', 'vikbooking');
1567 break;
1568 case 'VBMAILCHILD':
1569 $result = __('Child', 'vikbooking');
1570 break;
1571 case 'VBERRCONFORDERNOTAVROOM':
1572 $result = __('Error, the following rooms are no longer available:', 'vikbooking');
1573 break;
1574 case 'VBUNABLESETRESCONF':
1575 $result = __('The reservation cannot be set to confirmed', 'vikbooking');
1576 break;
1577 case 'VBPEDITBUSYERRNOFARES':
1578 $result = __('No Rates found for these rooms and for this number of nights of stay. Unable to edit the reservation.', 'vikbooking');
1579 break;
1580 case 'VBPEDITBUSYTOTPAID':
1581 $result = __('Total Paid', 'vikbooking');
1582 break;
1583 case 'VBQUICKADULTS':
1584 $result = __('Adults', 'vikbooking');
1585 break;
1586 case 'VBQUICKCHILDREN':
1587 $result = __('Children', 'vikbooking');
1588 break;
1589 case 'VBNEWOPTFORCEVALPERCHILD':
1590 $result = __('per Child', 'vikbooking');
1591 break;
1592 case 'VBNEWOPTIFCHILDREN':
1593 $result = __('Only for Children', 'vikbooking');
1594 break;
1595 case 'VBNEWOPTMAXQUANTSEL':
1596 $result = __('Max Quantity Selectable', 'vikbooking');
1597 break;
1598 case 'VBNEWOPTFORCESUMMARY':
1599 $result = __('Show Only in Reservation Summary', 'vikbooking');
1600 break;
1601 case 'VBSPECIALPRICEVALHELP':
1602 $result = __('This value will be added to or deducted from the average cost of every night of stay affected by this Special Price', 'vikbooking');
1603 break;
1604 case 'VBNEWSEASONVALUEOVERRIDE':
1605 $result = __('Value Overrides', 'vikbooking');
1606 break;
1607 case 'VBNEWSEASONNIGHTSOVR':
1608 $result = __('Nights', 'vikbooking');
1609 break;
1610 case 'VBNEWSEASONVALUESOVR':
1611 $result = __('Value', 'vikbooking');
1612 break;
1613 case 'VBNEWSEASONVALUEOVERRIDEHELP':
1614 $result = __('The default absolute or percentage value can be different depending on the nights of stay. For example you can override the default value of the Special Price for 7 Nights of stay and set it to a lower charge or to a higher decrease. Do not override the default value for always applying the same charge or decrease regardless the length of stay in the days affected by this Special Price.', 'vikbooking');
1615 break;
1616 case 'VBNEWSEASONADDOVERRIDE':
1617 $result = __('Add Value Override', 'vikbooking');
1618 break;
1619 case 'VBMENURESTRICTIONS':
1620 $result = __('Restrictions', 'vikbooking');
1621 break;
1622 case 'VBNORESTRICTIONSFOUND':
1623 $result = __('No Restrictions found', 'vikbooking');
1624 break;
1625 case 'VBPVIEWRESTRICTIONSONE':
1626 $result = __('Name', 'vikbooking');
1627 break;
1628 case 'VBPVIEWRESTRICTIONSTWO':
1629 $result = __('Month', 'vikbooking');
1630 break;
1631 case 'VBPVIEWRESTRICTIONSTHREE':
1632 $result = __('Arrival Week Day', 'vikbooking');
1633 break;
1634 case 'VBPVIEWRESTRICTIONSFOUR':
1635 $result = __('Min Num of Nights', 'vikbooking');
1636 break;
1637 case 'VBPVIEWRESTRICTIONSFIVE':
1638 $result = __('Max Num of Nights', 'vikbooking');
1639 break;
1640 case 'VBRESTRICTIONSHELPTITLE':
1641 $result = __('Restrictions', 'vikbooking');
1642 break;
1643 case 'VBRESTRICTIONSSHELP':
1644 $result = __('With the restrictions you can limit the minimum length of stay for a specific month of the Year or for a certain range of dates and optionally force the arrival Day of the Week. For example you can create a restriction for your apartment in August, forcing the arrival day to Saturday and the minimum length of stay to 7 nights, 14 nights etc.. The minimum number of nights will be set to 1 in case it is left empty.', 'vikbooking');
1645 break;
1646 case 'VBNEWRESTRICTIONONE':
1647 $result = __('Month', 'vikbooking');
1648 break;
1649 case 'VBNEWRESTRICTIONWDAY':
1650 $result = __('Force Arrival Week Day', 'vikbooking');
1651 break;
1652 case 'VBNEWRESTRICTIONNAME':
1653 $result = __('Restriction Name', 'vikbooking');
1654 break;
1655 case 'VBNEWRESTRICTIONMINLOS':
1656 $result = __('Min Num of Nights', 'vikbooking');
1657 break;
1658 case 'VBNEWRESTRICTIONMULTIPLYMINLOS':
1659 $result = __('Multiply Min Num of Nights', 'vikbooking');
1660 break;
1661 case 'VBNEWRESTRICTIONMULTIPLYMINLOSHELP':
1662 $result = __('If this setting is enabled the minimum number of nights will be multiplied every time this is passed. For example if you want to force the Arrival day to Saturday and the Departure day must still be on Saturday, you have to set the Minimum Number of Nights to 7 and if this setting is enabled, 8, 9, 10, 11, 12 and 13 nights of stay will not be allowed but only 14, 21, 28 etc. nights will be allowed. This is useful if you want to give your rooms only for weeks. The Maximum number of Nights is automatically calculated from the Rates Table of each room, infact, if a room does not have a rate for 28 nights, this room will not show up in the results so it will not be available. In case you want the calendar to force the Maximum Number of Nights for this month, set a number of MaxLOS below.', 'vikbooking');
1663 break;
1664 case 'VBUSELESSRESTRICTION':
1665 $result = __('Error, the restriction would be useless without an Arrival Week Day, without the CTA or CTD and the Minimum Num of Nights as 1 which is the default MinLOS', 'vikbooking');
1666 break;
1667 case 'VBRESTRICTIONSAVED':
1668 $result = __('Restriction Saved Successfully', 'vikbooking');
1669 break;
1670 case 'VBMAINRESTRICTIONSTITLE':
1671 $result = __('Vik Booking - Restrictions', 'vikbooking');
1672 break;
1673 case 'VBMAINRESTRICTIONDEL':
1674 $result = __('Remove', 'vikbooking');
1675 break;
1676 case 'VBMAINRESTRICTIONEDIT':
1677 $result = __('Edit', 'vikbooking');
1678 break;
1679 case 'VBMAINRESTRICTIONNEW':
1680 $result = __('New Restriction', 'vikbooking');
1681 break;
1682 case 'VBRESTRICTIONMONTHEXISTS':
1683 $result = __('Error, a restriction for the selected month already exists.', 'vikbooking');
1684 break;
1685 case 'VBNEWRESTRICTIONMAXLOS':
1686 $result = __('Max Num of Nights', 'vikbooking');
1687 break;
1688 case 'VBCONFIRMNUMB':
1689 $result = __('Confirmation Number', 'vikbooking');
1690 break;
1691 case 'VBPVIEWORDERSSEARCHSUBM':
1692 $result = __('Filter Bookings', 'vikbooking');
1693 break;
1694 case 'VBADULTSDIFFONPERNIGHT':
1695 $result = __('per Night', 'vikbooking');
1696 break;
1697 case 'VBADULTSDIFFONTOTAL':
1698 $result = __('Total', 'vikbooking');
1699 break;
1700 case 'VBPVIEWOPTIONALSORDERING':
1701 $result = __('Ordering', 'vikbooking');
1702 break;
1703 case 'VBNEWCUSTOMFDATETYPE':
1704 $result = __('Date', 'vikbooking');
1705 break;
1706 case 'VBRESENDORDEMAIL':
1707 $result = __('Re-send Email', 'vikbooking');
1708 break;
1709 case 'VBORDEREMAILRESENT':
1710 $result = __('Booking Email sent to %s', 'vikbooking');
1711 break;
1712 case 'VBCUSTEMAIL':
1713 $result = __('Customer e-Mail', 'vikbooking');
1714 break;
1715 case 'VBCONFIGSEARCHPARAMS':
1716 $result = __('Search Parameters', 'vikbooking');
1717 break;
1718 case 'VBCONFIGSEARCHPNUMROOM':
1719 $result = __('Number of Rooms', 'vikbooking');
1720 break;
1721 case 'VBCONFIGSEARCHPNUMADULTS':
1722 $result = __('Number of Adults', 'vikbooking');
1723 break;
1724 case 'VBCONFIGSEARCHPNUMCHILDREN':
1725 $result = __('Number of Children', 'vikbooking');
1726 break;
1727 case 'VBCONFIGSEARCHPFROM':
1728 $result = __('From', 'vikbooking');
1729 break;
1730 case 'VBCONFIGSEARCHPTO':
1731 $result = __('To', 'vikbooking');
1732 break;
1733 case 'VBMAXTOTPEOPLE':
1734 $result = __('Total People', 'vikbooking');
1735 break;
1736 case 'VBMAXTOTPEOPLEDESC':
1737 $result = __('Max. Numb. of Adults + Children', 'vikbooking');
1738 break;
1739 case 'VBCONFIGONEMDY':
1740 $result = __('MM/DD/YYYY', 'vikbooking');
1741 break;
1742 case 'VBCLOSEROOM':
1743 $result = __('Close room in these dates', 'vikbooking');
1744 break;
1745 case 'VBDBTEXTROOMCLOSED':
1746 $result = __('Room Closed', 'vikbooking');
1747 break;
1748 case 'VBSUBMCLOSEROOM':
1749 $result = __('Close Room', 'vikbooking');
1750 break;
1751 case 'VBCANCELLED':
1752 $result = __('Cancelled', 'vikbooking');
1753 break;
1754 case 'VBCSVEXPORT':
1755 $result = __('CSV Report Export', 'vikbooking');
1756 break;
1757 case 'VBCSVEXPFILTDATES':
1758 $result = __('Check-in Date Range', 'vikbooking');
1759 break;
1760 case 'VBCSVEXPFILTBSTATUS':
1761 $result = __('Booking Status', 'vikbooking');
1762 break;
1763 case 'VBCSVSTATUSCONFIRMED':
1764 $result = __('Confirmed', 'vikbooking');
1765 break;
1766 case 'VBCSVSTATUSSTANDBY':
1767 $result = __('Stand-By', 'vikbooking');
1768 break;
1769 case 'VBCSVSTATUSCANCELLED':
1770 $result = __('Cancelled', 'vikbooking');
1771 break;
1772 case 'VBCSVGENERATE':
1773 $result = __('Generate and Download CSV', 'vikbooking');
1774 break;
1775 case 'VBCSVEXPNORECORDS':
1776 $result = __('No records to export', 'vikbooking');
1777 break;
1778 case 'VBCSVCHECKIN':
1779 $result = __('Check-in', 'vikbooking');
1780 break;
1781 case 'VBCSVCHECKOUT':
1782 $result = __('Check-out', 'vikbooking');
1783 break;
1784 case 'VBCSVNIGHTS':
1785 $result = __('Nights', 'vikbooking');
1786 break;
1787 case 'VBCSVROOM':
1788 $result = __('Room', 'vikbooking');
1789 break;
1790 case 'VBCSVPEOPLE':
1791 $result = __('People', 'vikbooking');
1792 break;
1793 case 'VBCSVCUSTINFO':
1794 $result = __('Customer Information', 'vikbooking');
1795 break;
1796 case 'VBCSVCUSTMAIL':
1797 $result = __('Customer eMail', 'vikbooking');
1798 break;
1799 case 'VBCSVPAYMENTMETHOD':
1800 $result = __('Payment method', 'vikbooking');
1801 break;
1802 case 'VBCSVORDIDCONFNUMB':
1803 $result = __('ID - Confirmation Number', 'vikbooking');
1804 break;
1805 case 'VBCSVTOTAL':
1806 $result = __('Total', 'vikbooking');
1807 break;
1808 case 'VBCSVTOTPAID':
1809 $result = __('Total Paid', 'vikbooking');
1810 break;
1811 case 'VBCSVCHILDREN':
1812 $result = __('Children', 'vikbooking');
1813 break;
1814 case 'VBNEWOPTIFAGEINTERVAL':
1815 $result = __('In case of Charges per Children Age, add Age Intervals and Costs (fixed or percentage values of adults tariffs)', 'vikbooking');
1816 break;
1817 case 'VBADDAGEINTERVAL':
1818 $result = __('Add Age Interval Charge', 'vikbooking');
1819 break;
1820 case 'VBNEWAGEINTERVALFROM':
1821 $result = __('From Age', 'vikbooking');
1822 break;
1823 case 'VBNEWAGEINTERVALTO':
1824 $result = __('To Age', 'vikbooking');
1825 break;
1826 case 'VBNEWAGEINTERVALCOST':
1827 $result = __('Charge', 'vikbooking');
1828 break;
1829 case 'VBCONFIGSEARCHDEFNIGHTS':
1830 $result = __('Minimum Number of Nights', 'vikbooking');
1831 break;
1832 case 'VIKLOADING':
1833 $result = __('Loading...', 'vikbooking');
1834 break;
1835 case 'VBPAYMENTPARAMETERS':
1836 $result = __('Parameters', 'vikbooking');
1837 break;
1838 case 'VBNEWSEASONVALUESOVREMORE':
1839 $result = __('and more', 'vikbooking');
1840 break;
1841 case 'VBNEWSEASONROUNDCOST':
1842 $result = __('Round to Integer', 'vikbooking');
1843 break;
1844 case 'VBNEWSEASONROUNDCOSTNO':
1845 $result = __('- disabled -', 'vikbooking');
1846 break;
1847 case 'VBNEWSEASONROUNDCOSTUP':
1848 $result = __('Round Up', 'vikbooking');
1849 break;
1850 case 'VBNEWSEASONROUNDCOSTDOWN':
1851 $result = __('Round Down', 'vikbooking');
1852 break;
1853 case 'VBCONFIGNUMDECIMALS':
1854 $result = __('Number of Decimals', 'vikbooking');
1855 break;
1856 case 'VBCONFIGNUMDECSEPARATOR':
1857 $result = __('Decimal Separator', 'vikbooking');
1858 break;
1859 case 'VBCONFIGNUMTHOSEPARATOR':
1860 $result = __('Thousand Separator', 'vikbooking');
1861 break;
1862 case 'VBNEWRESTRICTIONOR':
1863 $result = __('or', 'vikbooking');
1864 break;
1865 case 'VBNEWRESTRICTIONDATERANGE':
1866 $result = __('Date Range', 'vikbooking');
1867 break;
1868 case 'VBNEWRESTRICTIONDFROMRANGE':
1869 $result = __('From Date', 'vikbooking');
1870 break;
1871 case 'VBNEWRESTRICTIONDTORANGE':
1872 $result = __('To Date', 'vikbooking');
1873 break;
1874 case 'VBRESTRICTIONERRDRANGE':
1875 $result = __('Error: restrictions must have a month or a range of dates, from and to.', 'vikbooking');
1876 break;
1877 case 'VBRESTRICTIONSDRANGE':
1878 $result = __('Date Range', 'vikbooking');
1879 break;
1880 case 'VBMAINNEWRESTRICTIONTITLE':
1881 $result = __('Vik Booking - New Restriction', 'vikbooking');
1882 break;
1883 case 'VBMAINEDITRESTRICTIONTITLE':
1884 $result = __('Vik Booking - Edit Restriction', 'vikbooking');
1885 break;
1886 case 'VBNEWRESTRICTIONALLCOMBO':
1887 $result = __('Forced Combinations:', 'vikbooking');
1888 break;
1889 case 'VBNEWRESTRICTIONALLCOMBOHELP':
1890 $result = __('if none selected, any check-out week day in accordance with the max and min number of nights will be accepted', 'vikbooking');
1891 break;
1892 case 'VBNEWRESTRICTIONALLROOMS':
1893 $result = __('Apply to all rooms', 'vikbooking');
1894 break;
1895 case 'VBNEWRESTRICTIONROOMSAFF':
1896 $result = __('Rooms affected by this restriction', 'vikbooking');
1897 break;
1898 case 'VBRESTRLISTROOMS':
1899 $result = __('Rooms', 'vikbooking');
1900 break;
1901 case 'VBRESTRALLROOMS':
1902 $result = __('ALL', 'vikbooking');
1903 break;
1904 case 'VBPAYMENTLOGTOGGLE':
1905 $result = __('Payments Log', 'vikbooking');
1906 break;
1907 case 'VBMINTOTPEOPLE':
1908 $result = __('Min. Total People', 'vikbooking');
1909 break;
1910 case 'VBMINTOTPEOPLEDESC':
1911 $result = __('Min. Numb. of Adults + Children', 'vikbooking');
1912 break;
1913 case 'VBPVIEWROOMTOTPEOPLE':
1914 $result = __('Total People', 'vikbooking');
1915 break;
1916 case 'VBADMINNOTESTOGGLE':
1917 $result = __('Administrator Notes', 'vikbooking');
1918 break;
1919 case 'VBADMINNOTESUPD':
1920 $result = __('Update', 'vikbooking');
1921 break;
1922 case 'VBCONFIGMINDAYSADVANCE':
1923 $result = __('Days in Advance for bookings', 'vikbooking');
1924 break;
1925 case 'VBNEWROOMPARAMS':
1926 $result = __('Room Parameters', 'vikbooking');
1927 break;
1928 case 'VBPARAMLASTAVAIL':
1929 $result = __('Show how many units are still available when less than', 'vikbooking');
1930 break;
1931 case 'VBPARAMLASTAVAILHELP':
1932 $result = __('if greater than zero, the rooms displayed in the search results will say something like "Last 2 available".', 'vikbooking');
1933 break;
1934 case 'VBPARAMCUSTPRICE':
1935 $result = __('Custom Starting From Price', 'vikbooking');
1936 break;
1937 case 'VBPARAMCUSTPRICEHELP':
1938 $result = __('the Views Rooms List and Room Details will display this price. If empty, the price displayed will be taken from the page Rates Table.', 'vikbooking');
1939 break;
1940 case 'VBPARAMCUSTPRICETEXT':
1941 $result = __('Custom Price Label', 'vikbooking');
1942 break;
1943 case 'VBPARAMCUSTPRICETEXTHELP':
1944 $result = __('this text can be something like Per Night, Per Weekend, Per Week etc..if empty the system will display Per Night.', 'vikbooking');
1945 break;
1946 case 'VBCALBOOKINGSTATUS':
1947 $result = __('Booking Status', 'vikbooking');
1948 break;
1949 case 'VBCALBOOKINGPAYMENT':
1950 $result = __('Method of payment', 'vikbooking');
1951 break;
1952 case 'VBPAYMUNDEFINED':
1953 $result = __('::Not Relevant::', 'vikbooking');
1954 break;
1955 case 'VBQUICKRESWARNSTANDBY':
1956 $result = __('Booking Status: Waiting for the payment. Choose one type of price and eventually some of the Options. Then click on Save to complete the Standby - Quick Reservation.', 'vikbooking');
1957 break;
1958 case 'VBCHANGEPAYLABEL':
1959 $result = __('::Change method of payment::', 'vikbooking');
1960 break;
1961 case 'VBCHANGEPAYCONFIRM':
1962 $result = __('Change method of payment to ', 'vikbooking');
1963 break;
1964 case 'VBAMOUNTPAID':
1965 $result = __('Amount Paid', 'vikbooking');
1966 break;
1967 case 'VBAPPLYDISCOUNT':
1968 $result = __('Apply Discount', 'vikbooking');
1969 break;
1970 case 'VBAPPLYDISCOUNTSAVE':
1971 $result = __('Save', 'vikbooking');
1972 break;
1973 case 'VBADMINDISCOUNT':
1974 $result = __('Discount', 'vikbooking');
1975 break;
1976 case 'VBICSEXPORT':
1977 $result = __('ICS Report Export', 'vikbooking');
1978 break;
1979 case 'VBICSGENERATE':
1980 $result = __('Generate and Download ICS File', 'vikbooking');
1981 break;
1982 case 'VBICSEXPNORECORDS':
1983 $result = __('No records to export', 'vikbooking');
1984 break;
1985 case 'VBICSEXPSUMMARY':
1986 $result = __('Check-in @ %s', 'vikbooking');
1987 break;
1988 case 'VBICSEXPDESCRIPTION':
1989 $result = __('Booking ID: %sPeople: %sNights: %sReservation Total: %sCustomer Details:%s', 'vikbooking');
1990 break;
1991 case 'VBPARAMPRICECALENDAR':
1992 $result = __('Availability Calendars with Prices', 'vikbooking');
1993 break;
1994 case 'VBPARAMPRICECALENDARDISABLED':
1995 $result = __('Disabled', 'vikbooking');
1996 break;
1997 case 'VBPARAMPRICECALENDARENABLED':
1998 $result = __('Enabled', 'vikbooking');
1999 break;
2000 case 'VBPARAMPRICECALENDARHELP':
2001 $result = __('if enabled, the View Room Details will display the cost for each day in the availability calendars', 'vikbooking');
2002 break;
2003 case 'VBPARAMDEFCALCOST':
2004 $result = __('Default Cost per Night', 'vikbooking');
2005 break;
2006 case 'VBPARAMDEFCALCOSTHELP':
2007 $result = __('This price will be used as default cost per night. The Special Prices will then be applied to this cost', 'vikbooking');
2008 break;
2009 case 'VBVIEWORDFRONT':
2010 $result = __('View in front site', 'vikbooking');
2011 break;
2012 case 'VBPARAMSHOWPEOPLE':
2013 $result = __('Show # Adults/Children', 'vikbooking');
2014 break;
2015 case 'VBPARAMSHOWPEOPLENO':
2016 $result = __('Disabled', 'vikbooking');
2017 break;
2018 case 'VBPARAMSHOWPEOPLEADU':
2019 $result = __('Min-Max # of Adults', 'vikbooking');
2020 break;
2021 case 'VBPARAMSHOWPEOPLECHI':
2022 $result = __('Min-Max # of Children', 'vikbooking');
2023 break;
2024 case 'VBPARAMSHOWPEOPLEADUTOT':
2025 $result = __('Min-Max # of Adults and Total People', 'vikbooking');
2026 break;
2027 case 'VBPARAMSHOWPEOPLECHITOT':
2028 $result = __('Min-Max # of Children and Total People', 'vikbooking');
2029 break;
2030 case 'VBPARAMSHOWPEOPLEALLTOT':
2031 $result = __('Min-Max # of Adults, Children and Total People', 'vikbooking');
2032 break;
2033 case 'VBCONFIGMULTIPAY':
2034 $result = __('Allow Multiple Payments for one Reservation', 'vikbooking');
2035 break;
2036 case 'VBCONFIGFLUSHSESSION':
2037 $result = __('Renew Session', 'vikbooking');
2038 break;
2039 case 'VBCONFIGFLUSHSESSIONCONF':
2040 $result = __('The PHP Session will be renewed and the new settings will be applied but any logged in user will be logged out. Proceed?', 'vikbooking');
2041 break;
2042 case 'VBNEWCUSTOMFCOUNTRY':
2043 $result = __('Country', 'vikbooking');
2044 break;
2045 case 'VBPVIEWORDERCHANNEL':
2046 $result = __('From', 'vikbooking');
2047 break;
2048 case 'VBORDFROMSITE':
2049 $result = __('Website', 'vikbooking');
2050 break;
2051 case 'VBNEWOPTISCITYTAX':
2052 $result = __('It\'s a city tax', 'vikbooking');
2053 break;
2054 case 'VBNEWOPTISFEE':
2055 $result = __('It\'s a fixed fee', 'vikbooking');
2056 break;
2057 case 'VBOPTHELPCITYTAXFEE':
2058 $result = __('For mandatory costs, the system needs to know whether this option is a tourist tax or a fixed fee (such as cleaning or linen costs) to be paid at the time of booking. Leave these settings disabled if the option is not a tax or a fixed fee, but simply an optional extra service.', 'vikbooking');
2059 break;
2060 case 'VBTOTALVAT':
2061 $result = __('Taxes (VAT)', 'vikbooking');
2062 break;
2063 case 'VBTOTALCITYTAX':
2064 $result = __('City Taxes', 'vikbooking');
2065 break;
2066 case 'VBTOTALFEES':
2067 $result = __('Fees', 'vikbooking');
2068 break;
2069 case 'VBNEWPRICEBREAKFAST':
2070 $result = __('Breakfast Included', 'vikbooking');
2071 break;
2072 case 'VBNEWPRICEFREECANC':
2073 $result = __('Refundable', 'vikbooking');
2074 break;
2075 case 'VBNEWPRICEFREECANCDLINE':
2076 $result = __('Up to n days before arrival', 'vikbooking');
2077 break;
2078 case 'VBNEWPRICEFREECANCDLINETIP':
2079 $result = __('Up to %d days before arrival', 'vikbooking');
2080 break;
2081 case 'VBCONFIGTAXSUMMARY':
2082 $result = __('Show Tax in Summary Only', 'vikbooking');
2083 break;
2084 case 'VBSPYEARTIED':
2085 $result = __('Tied to the Year', 'vikbooking');
2086 break;
2087 case 'VBTWOYEARS':
2088 $result = __('2 Years', 'vikbooking');
2089 break;
2090 case 'VBCONFIGSEARCHPSMARTSEARCH':
2091 $result = __('Availability for Multiple-rooms search', 'vikbooking');
2092 break;
2093 case 'VBCONFIGSEARCHPSMARTSEARCHDYN':
2094 $result = __('Dynamic', 'vikbooking');
2095 break;
2096 case 'VBCONFIGSEARCHPSMARTSEARCHAUTO':
2097 $result = __('Automatic', 'vikbooking');
2098 break;
2099 case 'VBCONFIGSEARCHPMAXDATEFUT':
2100 $result = __('Maximum Date in the Future from today', 'vikbooking');
2101 break;
2102 case 'VBCONFIGSEARCHPMAXDATEDAYS':
2103 $result = __('Days', 'vikbooking');
2104 break;
2105 case 'VBCONFIGSEARCHPMAXDATEWEEKS':
2106 $result = __('Weeks', 'vikbooking');
2107 break;
2108 case 'VBCONFIGSEARCHPMAXDATEMONTHS':
2109 $result = __('Months', 'vikbooking');
2110 break;
2111 case 'VBCONFIGSEARCHPMAXDATEYEARS':
2112 $result = __('Years', 'vikbooking');
2113 break;
2114 case 'VBCONFIGFIRSTWDAY':
2115 $result = __('Calendars first day of the week', 'vikbooking');
2116 break;
2117 case 'VBROOMFILTER':
2118 $result = __('Filter by Room', 'vikbooking');
2119 break;
2120 case 'VBIMGCAPTION':
2121 $result = __('Image Caption', 'vikbooking');
2122 break;
2123 case 'VBIMGUPDATE':
2124 $result = __('Save Changes', 'vikbooking');
2125 break;
2126 case 'VBREMOVEIMG':
2127 $result = __('Remove Image', 'vikbooking');
2128 break;
2129 case 'VBORDERCHILDAGES':
2130 $result = __('(%s years old)', 'vikbooking');
2131 break;
2132 case 'VBPEDITBUSYTRAVELERINFO':
2133 $result = __('Traveler Details', 'vikbooking');
2134 break;
2135 case 'VBTRAVELERNAME':
2136 $result = __('First Name', 'vikbooking');
2137 break;
2138 case 'VBTRAVELERLNAME':
2139 $result = __('Last Name', 'vikbooking');
2140 break;
2141 case 'VBMENUCHANNELMANAGER':
2142 $result = __('Channel Manager', 'vikbooking');
2143 break;
2144 case 'VBBACKVCM':
2145 $result = __('Back to Channel Manager', 'vikbooking');
2146 break;
2147 case 'VBSWROOMOCC':
2148 $result = __('%s Adults', 'vikbooking');
2149 break;
2150 case 'VBSWITCHRWITH':
2151 $result = __('Switch Room', 'vikbooking');
2152 break;
2153 case 'VBSWITCHRERR':
2154 $result = __('Error: the room %s cannot be switched to the %s on these dates.', 'vikbooking');
2155 break;
2156 case 'VBSWITCHROK':
2157 $result = __('The room %s has been switched to the %s. Choose Rates and Options for all the Rooms then click the Save button again.', 'vikbooking');
2158 break;
2159 case 'VBDELCONFIRM':
2160 $result = __('Some records will be deleted. Proceed?', 'vikbooking');
2161 break;
2162 case 'VBSAVECLOSE':
2163 $result = __('Save &amp; Close', 'vikbooking');
2164 break;
2165 case 'VBSAVENEW':
2166 $result = __('Save &amp; New', 'vikbooking');
2167 break;
2168 case 'VBOADDTAXBKDWN':
2169 $result = __('Add Tax Breakdown', 'vikbooking');
2170 break;
2171 case 'VBOTAXNAMEBKDWN':
2172 $result = __('Tax Type/Name', 'vikbooking');
2173 break;
2174 case 'VBOTAXNAMEBKDWNEX':
2175 $result = __('i.e. Federal Taxes', 'vikbooking');
2176 break;
2177 case 'VBOTAXRATEBKDWN':
2178 $result = __('% Rate', 'vikbooking');
2179 break;
2180 case 'VBOTAXBKDWNCOUNT':
2181 $result = __('Tax Breakdown', 'vikbooking');
2182 break;
2183 case 'VBOTAXBKDWNERRNOMATCH':
2184 $result = __('The Tax Breakdown was saved successfully but the sum of the sub-taxes in not equal to the parent tax rate.', 'vikbooking');
2185 break;
2186 case 'VBOSELECTALL':
2187 $result = __('Select All', 'vikbooking');
2188 break;
2189 case 'VBOSPTYPESPRICE':
2190 $result = __('Types of Price', 'vikbooking');
2191 break;
2192 case 'VBOISPROMOTION':
2193 $result = __('Promotion', 'vikbooking');
2194 break;
2195 case 'VBOPROMOVALIDITY':
2196 $result = __('Promotion valid up to', 'vikbooking');
2197 break;
2198 case 'VBOPROMOVALIDITYDAYSADV':
2199 $result = __('days in advance from Start Date', 'vikbooking');
2200 break;
2201 case 'VBOPROMOTEXT':
2202 $result = __('Promotion Text', 'vikbooking');
2203 break;
2204 case 'VBPARAMSEASONCALENDAR':
2205 $result = __('Show Seasons Calendar', 'vikbooking');
2206 break;
2207 case 'VBPARAMSEASONCALENDARDISABLED':
2208 $result = __('Disabled', 'vikbooking');
2209 break;
2210 case 'VBPARAMSEASONCALENDARENABLED':
2211 $result = __('Enabled', 'vikbooking');
2212 break;
2213 case 'VBPARAMSEASONCALENDARENABLEDALL':
2214 $result = __('Charges, Discounts and Promotions', 'vikbooking');
2215 break;
2216 case 'VBPARAMSEASONCALENDARENABLEDCHARGEDISC':
2217 $result = __('Charges and Discounts', 'vikbooking');
2218 break;
2219 case 'VBPARAMSEASONCALENDARENABLEDCHARGE':
2220 $result = __('Charges Only', 'vikbooking');
2221 break;
2222 case 'VBPARAMSEASONCALNIGHTS':
2223 $result = __('Number of Nights', 'vikbooking');
2224 break;
2225 case 'VBPARAMSEASONCALNIGHTSHELP':
2226 $result = __('The prices will be displayed in the various Seasons for this length of stay', 'vikbooking');
2227 break;
2228 case 'VBPARAMSEASONCALENDARPRICES':
2229 $result = __('Types of Price', 'vikbooking');
2230 break;
2231 case 'VBPARAMSEASONCALENDARPRICESANY':
2232 $result = __('Show all', 'vikbooking');
2233 break;
2234 case 'VBPARAMSEASONCALENDARPRICESLOW':
2235 $result = __('Show lowest', 'vikbooking');
2236 break;
2237 case 'VBPARAMSEASONCALENDARLOS':
2238 $result = __('Length of Stay', 'vikbooking');
2239 break;
2240 case 'VBPARAMSEASONCALENDARLOSSHOW':
2241 $result = __('Show', 'vikbooking');
2242 break;
2243 case 'VBPARAMSEASONCALENDARLOSHIDE':
2244 $result = __('Hide', 'vikbooking');
2245 break;
2246 case 'VBPARAMROOMMULTIUNITS':
2247 $result = __('Book Multiple Units', 'vikbooking');
2248 break;
2249 case 'VBPARAMROOMMULTIUNITSDISABLE':
2250 $result = __('Disabled', 'vikbooking');
2251 break;
2252 case 'VBPARAMROOMMULTIUNITSENABLE':
2253 $result = __('Enabled', 'vikbooking');
2254 break;
2255 case 'VBPARAMROOMMULTIUNITSHELP':
2256 $result = __('if enabled, the details page of this room will let the users choose the number of units they would like to book.', 'vikbooking');
2257 break;
2258 case 'VBOSEASONAFFECTEDROOMS':
2259 $result = __('Rooms Affected', 'vikbooking');
2260 break;
2261 case 'VBMENURATESOVERVIEW':
2262 $result = __('Rates Overview', 'vikbooking');
2263 break;
2264 case 'VBRATESOVWROOM':
2265 $result = __('Room', 'vikbooking');
2266 break;
2267 case 'VBOSEASONCALNUMNIGHT':
2268 $result = __('%d Night', 'vikbooking');
2269 break;
2270 case 'VBOSEASONCALNUMNIGHTS':
2271 $result = __('%d Nights', 'vikbooking');
2272 break;
2273 case 'VBOSEASONSCALOFFSEASONPRICES':
2274 $result = __('Off-Season Prices', 'vikbooking');
2275 break;
2276 case 'VBORESTRMINLOS':
2277 $result = __('Min. Nights', 'vikbooking');
2278 break;
2279 case 'VBORESTRMAXLOS':
2280 $result = __('Max. Nights', 'vikbooking');
2281 break;
2282 case 'VBORESTRARRIVWDAY':
2283 $result = __('Arrival Week Day', 'vikbooking');
2284 break;
2285 case 'VBORESTRARRIVWDAYS':
2286 $result = __('Arrival Week Days', 'vikbooking');
2287 break;
2288 case 'VBWEEKDAYZERO':
2289 $result = __('Sunday', 'vikbooking');
2290 break;
2291 case 'VBWEEKDAYONE':
2292 $result = __('Monday', 'vikbooking');
2293 break;
2294 case 'VBWEEKDAYTWO':
2295 $result = __('Tuesday', 'vikbooking');
2296 break;
2297 case 'VBWEEKDAYTHREE':
2298 $result = __('Wednesday', 'vikbooking');
2299 break;
2300 case 'VBWEEKDAYFOUR':
2301 $result = __('Thursday', 'vikbooking');
2302 break;
2303 case 'VBWEEKDAYFIVE':
2304 $result = __('Friday', 'vikbooking');
2305 break;
2306 case 'VBWEEKDAYSIX':
2307 $result = __('Saturday', 'vikbooking');
2308 break;
2309 case 'VBRATESOVWNUMNIGHTSACT':
2310 $result = __('Length of Stay', 'vikbooking');
2311 break;
2312 case 'VBRATESOVWAPPLYLOS':
2313 $result = __('Apply', 'vikbooking');
2314 break;
2315 case 'VBMAINRATESOVERVIEWTITLE':
2316 $result = __('Vik Booking - Rates Overview', 'vikbooking');
2317 break;
2318 case 'VBRATESOVWRATESCALCULATOR':
2319 $result = __('Rates Calculator', 'vikbooking');
2320 break;
2321 case 'VBRATESOVWRATESCALCNUMNIGHTS':
2322 $result = __('Nights', 'vikbooking');
2323 break;
2324 case 'VBRATESOVWRATESCALCNUMADULTS':
2325 $result = __('Adults', 'vikbooking');
2326 break;
2327 case 'VBRATESOVWRATESCALCNUMCHILDREN':
2328 $result = __('Children', 'vikbooking');
2329 break;
2330 case 'VBRATESOVWRATESCALCULATORCALC':
2331 $result = __('Calculate', 'vikbooking');
2332 break;
2333 case 'VBRATESOVWRATESCALCULATORCALCING':
2334 $result = __('Calculating...', 'vikbooking');
2335 break;
2336 case 'VBCALCRATESROOMNOTAVAILCOMBO':
2337 $result = __('The room is not available from %s to %s or has no rates for this combination of adults/children.', 'vikbooking');
2338 break;
2339 case 'VBCALCRATESNET':
2340 $result = __('Net', 'vikbooking');
2341 break;
2342 case 'VBCALCRATESTAX':
2343 $result = __('Taxes', 'vikbooking');
2344 break;
2345 case 'VBCALCRATESCITYTAX':
2346 $result = __('City Taxes', 'vikbooking');
2347 break;
2348 case 'VBCALCRATESFEES':
2349 $result = __('Fees', 'vikbooking');
2350 break;
2351 case 'VBCALCRATESTOT':
2352 $result = __('Total', 'vikbooking');
2353 break;
2354 case 'VBCALCRATESSPAFFDAYS':
2355 $result = __('Nights modified by Special Prices:', 'vikbooking');
2356 break;
2357 case 'VBCALCRATESADUOCCUPANCY':
2358 $result = __('%d Adults Occupancy:', 'vikbooking');
2359 break;
2360 case 'VBAFFANYROOM':
2361 $result = __('Any Room', 'vikbooking');
2362 break;
2363 case 'VBSHORTMONTHONE':
2364 $result = __('Jan', 'vikbooking');
2365 break;
2366 case 'VBSHORTMONTHTWO':
2367 $result = __('Feb', 'vikbooking');
2368 break;
2369 case 'VBSHORTMONTHTHREE':
2370 $result = __('Mar', 'vikbooking');
2371 break;
2372 case 'VBSHORTMONTHFOUR':
2373 $result = __('Apr', 'vikbooking');
2374 break;
2375 case 'VBSHORTMONTHFIVE':
2376 $result = __('May', 'vikbooking');
2377 break;
2378 case 'VBSHORTMONTHSIX':
2379 $result = __('Jun', 'vikbooking');
2380 break;
2381 case 'VBSHORTMONTHSEVEN':
2382 $result = __('Jul', 'vikbooking');
2383 break;
2384 case 'VBSHORTMONTHEIGHT':
2385 $result = __('Aug', 'vikbooking');
2386 break;
2387 case 'VBSHORTMONTHNINE':
2388 $result = __('Sep', 'vikbooking');
2389 break;
2390 case 'VBSHORTMONTHTEN':
2391 $result = __('Oct', 'vikbooking');
2392 break;
2393 case 'VBSHORTMONTHELEVEN':
2394 $result = __('Nov', 'vikbooking');
2395 break;
2396 case 'VBSHORTMONTHTWELVE':
2397 $result = __('Dec', 'vikbooking');
2398 break;
2399 case 'VBMDAYFRIST':
2400 $result = __('st', 'vikbooking');
2401 break;
2402 case 'VBMDAYSECOND':
2403 $result = __('nd', 'vikbooking');
2404 break;
2405 case 'VBMDAYTHIRD':
2406 $result = __('rd', 'vikbooking');
2407 break;
2408 case 'VBMDAYNUMGEN':
2409 $result = __('th', 'vikbooking');
2410 break;
2411 case 'VBCONFIGROUTER':
2412 $result = __('SEF Router', 'vikbooking');
2413 break;
2414 case 'VBCHANNELFILTER':
2415 $result = __('Filter by Channel', 'vikbooking');
2416 break;
2417 case 'VBPARAMPAGETITLE':
2418 $result = __('Custom Page Title', 'vikbooking');
2419 break;
2420 case 'VBPARAMPAGETITLEBEFORECUR':
2421 $result = __('Add it Before the Current Page Title', 'vikbooking');
2422 break;
2423 case 'VBPARAMPAGETITLEAFTERCUR':
2424 $result = __('Add it After the Current Page Title', 'vikbooking');
2425 break;
2426 case 'VBPARAMPAGETITLEREPLACECUR':
2427 $result = __('Replace the Current Page Title', 'vikbooking');
2428 break;
2429 case 'VBPARAMKEYWORDSMETATAG':
2430 $result = __('Keywords Meta Tag', 'vikbooking');
2431 break;
2432 case 'VBPARAMDESCRIPTIONMETATAG':
2433 $result = __('Description Meta Tag', 'vikbooking');
2434 break;
2435 case 'VBROOMSEFALIAS':
2436 $result = __('SEF Alias', 'vikbooking');
2437 break;
2438 case 'VBCONFIGTODAYBOOKINGS':
2439 $result = __('Bookings for today at any time', 'vikbooking');
2440 break;
2441 case 'VBSEASONANYYEARS':
2442 $result = __('Valid any Year', 'vikbooking');
2443 break;
2444 case 'VBSEASONBASEDLOS':
2445 $result = __('Based on Length of Stay', 'vikbooking');
2446 break;
2447 case 'VBSEASONPERNIGHT':
2448 $result = __('per night', 'vikbooking');
2449 break;
2450 case 'VBOVERVIEWUBOOKEDFILT':
2451 $result = __('Show Units Booked', 'vikbooking');
2452 break;
2453 case 'VBOVERVIEWULEFTFILT':
2454 $result = __('Show Units Remaining', 'vikbooking');
2455 break;
2456 case 'VBOVERVIEWLEGEND':
2457 $result = __('Legend:', 'vikbooking');
2458 break;
2459 case 'VBOVERVIEWLEGRED':
2460 $result = __('No Availability', 'vikbooking');
2461 break;
2462 case 'VBOVERVIEWLEGYELLOW':
2463 $result = __('Partially Available', 'vikbooking');
2464 break;
2465 case 'VBOVERVIEWLEGGREEN':
2466 $result = __('Check-in', 'vikbooking');
2467 break;
2468 case 'VBOCPARAMBOOKING':
2469 $result = __('Booking', 'vikbooking');
2470 break;
2471 case 'VBOCPARAMSYSTEM':
2472 $result = __('System', 'vikbooking');
2473 break;
2474 case 'VBOCPARAMCURRENCY':
2475 $result = __('Currency', 'vikbooking');
2476 break;
2477 case 'VBOCPARAMTAXPAY':
2478 $result = __('Tax and Payments', 'vikbooking');
2479 break;
2480 case 'VBOCPARAMLAYOUT':
2481 $result = __('Appearance and Texts', 'vikbooking');
2482 break;
2483 case 'VBOCPARAMCOMPANY':
2484 $result = __('Company', 'vikbooking');
2485 break;
2486 case 'VBCONFIGMULTILANG':
2487 $result = __('Enable Multi-Language', 'vikbooking');
2488 break;
2489 case 'VBMENUTRANSLATIONS':
2490 $result = __('Translations', 'vikbooking');
2491 break;
2492 case 'VBMAINTRANSLATIONSTITLE':
2493 $result = __('Vik Booking - Translations', 'vikbooking');
2494 break;
2495 case 'VBOGETTRANSLATIONS':
2496 $result = __('Load Translations', 'vikbooking');
2497 break;
2498 case 'VBTRANSLATIONERRONELANG':
2499 $result = __('There is only one content-language enabled for this Wordpress-site so translations cannot be created.', 'vikbooking');
2500 break;
2501 case 'VBTANSLATIONSCHANGESCONF':
2502 $result = __('Some changes were made to the translations. Proceed without Saving?', 'vikbooking');
2503 break;
2504 case 'VBTRANSLATIONSELTABLEMESS':
2505 $result = __('No Contents Selected for Translation', 'vikbooking');
2506 break;
2507 case 'VBTRANSLATIONDEFLANG':
2508 $result = __('Default Language', 'vikbooking');
2509 break;
2510 case 'VBTRANSLATIONERRINVTABLE':
2511 $result = __('Error: Invalid or Empty Table Set for Translation', 'vikbooking');
2512 break;
2513 case 'VBOTRANSLSAVEDOK':
2514 $result = __('Translations Saved!', 'vikbooking');
2515 break;
2516 case 'ORDER_SPREQUESTS':
2517 $result = __('Special Requests', 'vikbooking');
2518 break;
2519 case 'VBTRANSLATIONINISTATUS':
2520 $result = __('Status', 'vikbooking');
2521 break;
2522 case 'VBOINIMISSINGFILE':
2523 $result = __('Missing Translation File', 'vikbooking');
2524 break;
2525 case 'VBOINIDEFINITIONS':
2526 $result = __('Definitions', 'vikbooking');
2527 break;
2528 case 'VBOINIPATH':
2529 $result = __('Path', 'vikbooking');
2530 break;
2531 case 'VBORDERING':
2532 $result = __('Ordering', 'vikbooking');
2533 break;
2534 case 'VBTOTALREMAINING':
2535 $result = __('Remaining Balance', 'vikbooking');
2536 break;
2537 case 'VBSENDCANCORDEMAIL':
2538 $result = __('Send Cancellation eMail', 'vikbooking');
2539 break;
2540 case 'VBCANCORDEREMAILSENT':
2541 $result = __('Booking Cancellation Email sent to %s', 'vikbooking');
2542 break;
2543 case 'VBDASHTODAYCHECKIN':
2544 $result = __('Arriving Today', 'vikbooking');
2545 break;
2546 case 'VBDASHTODAYCHECKOUT':
2547 $result = __('Departing Today', 'vikbooking');
2548 break;
2549 case 'VBCUSTOMERNOMINATIVE':
2550 $result = __('Customer Name', 'vikbooking');
2551 break;
2552 case 'VBDASHWEEKGLOBAVAIL':
2553 $result = __('This Week\'s Bookings', 'vikbooking');
2554 break;
2555 case 'VBDASHNEXTREFRESH':
2556 $result = __('Next Refresh in', 'vikbooking');
2557 break;
2558 case 'VBTODAY':
2559 $result = __('Today', 'vikbooking');
2560 break;
2561 case 'VBISNOMINATIVE':
2562 $result = __('Nominative', 'vikbooking');
2563 break;
2564 case 'VBCSVOPTIONS':
2565 $result = __('Options', 'vikbooking');
2566 break;
2567 case 'VBLOADBOOTSTRAP':
2568 $result = __('Load Bootstrap CSS', 'vikbooking');
2569 break;
2570 case 'VBFILLCUSTFIELDS':
2571 $result = __('Assign Customer', 'vikbooking');
2572 break;
2573 case 'VBAPPLY':
2574 $result = __('Apply', 'vikbooking');
2575 break;
2576 case 'VBISPHONENUMBER':
2577 $result = __('Phone Number', 'vikbooking');
2578 break;
2579 case 'ORDER_TERMSCONDITIONS':
2580 $result = __('I agree to the terms and conditions', 'vikbooking');
2581 break;
2582 case 'VBCSVTOTTAXES':
2583 $result = __('Total Taxes', 'vikbooking');
2584 break;
2585 case 'VBDASHROOMSLOCKED':
2586 $result = __('Rooms Locked - Waiting for Confirmation', 'vikbooking');
2587 break;
2588 case 'VBDASHROOMNAME':
2589 $result = __('Room', 'vikbooking');
2590 break;
2591 case 'VBDASHLOCKUNTIL':
2592 $result = __('Locked Until', 'vikbooking');
2593 break;
2594 case 'VBDASHBOOKINGID':
2595 $result = __('Booking ID', 'vikbooking');
2596 break;
2597 case 'VBDASHUNLOCK':
2598 $result = __('Unlock', 'vikbooking');
2599 break;
2600 case 'VBSPMAINSETTINGS':
2601 $result = __('Pricing Rule', 'vikbooking');
2602 break;
2603 case 'VBSPPROMOTIONLABEL':
2604 $result = __('Promotion', 'vikbooking');
2605 break;
2606 case 'VBPROMOFORCEMINLOS':
2607 $result = __('Force minimum length of stay', 'vikbooking');
2608 break;
2609 case 'VBMENURATEPLANS':
2610 $result = __('Rate Plans', 'vikbooking');
2611 break;
2612 case 'VBMENUCUSTOMERS':
2613 $result = __('Customers', 'vikbooking');
2614 break;
2615 case 'VBNOCUSTOMERS':
2616 $result = __('No Customers found', 'vikbooking');
2617 break;
2618 case 'VBCUSTOMERFIRSTNAME':
2619 $result = __('First Name', 'vikbooking');
2620 break;
2621 case 'VBCUSTOMERLASTNAME':
2622 $result = __('Last Name', 'vikbooking');
2623 break;
2624 case 'VBCUSTOMEREMAIL':
2625 $result = __('eMail', 'vikbooking');
2626 break;
2627 case 'VBCUSTOMERPHONE':
2628 $result = __('Phone', 'vikbooking');
2629 break;
2630 case 'VBCUSTOMERCOUNTRY':
2631 $result = __('Country', 'vikbooking');
2632 break;
2633 case 'VBCUSTOMERPIN':
2634 $result = __('PIN', 'vikbooking');
2635 break;
2636 case 'VBCUSTOMERGENERATEPIN':
2637 $result = __('Generate PIN', 'vikbooking');
2638 break;
2639 case 'VBMAINCUSTOMERSTITLE':
2640 $result = __('Vik Booking - Customers', 'vikbooking');
2641 break;
2642 case 'VBMAINCUSTOMERNEW':
2643 $result = __('New', 'vikbooking');
2644 break;
2645 case 'VBMAINCUSTOMEREDIT':
2646 $result = __('Edit', 'vikbooking');
2647 break;
2648 case 'VBMAINCUSTOMERDEL':
2649 $result = __('Remove', 'vikbooking');
2650 break;
2651 case 'VBMAINMANAGECUSTOMERTITLE':
2652 $result = __('Vik Booking - Customer Details', 'vikbooking');
2653 break;
2654 case 'VBERRCUSTOMEREMAILEXISTS':
2655 $result = __('Customer with the same email address already exists', 'vikbooking');
2656 break;
2657 case 'VBCUSTOMERSAVED':
2658 $result = __('Customer Saved Successfully', 'vikbooking');
2659 break;
2660 case 'VBCONFIGENABLECUSTOMERPIN':
2661 $result = __('Enable Customers PIN Code', 'vikbooking');
2662 break;
2663 case 'VBCUSTOMERTOTBOOKINGS':
2664 $result = __('Total Bookings', 'vikbooking');
2665 break;
2666 case 'VBYOURPIN':
2667 $result = __('PIN Code', 'vikbooking');
2668 break;
2669 case 'VBUPDROOMOK':
2670 $result = __('Room Updated Successfully', 'vikbooking');
2671 break;
2672 case 'VBOXMLTRANSLATEROOMS':
2673 $result = __('Rooms', 'vikbooking');
2674 break;
2675 case 'VBOXMLTRANSLATEOPTIONS':
2676 $result = __('Options, Taxes, Fees', 'vikbooking');
2677 break;
2678 case 'VBOXMLTRANSLATECATEGORIES':
2679 $result = __('Categories', 'vikbooking');
2680 break;
2681 case 'VBOXMLTRANSLATESPECIALPRICES':
2682 $result = __('Special Prices', 'vikbooking');
2683 break;
2684 case 'VBOXMLTRANSLATETYPESPRICE':
2685 $result = __('Types of Price', 'vikbooking');
2686 break;
2687 case 'VBOXMLTRANSLATEPAYMENTS':
2688 $result = __('Payment methods', 'vikbooking');
2689 break;
2690 case 'VBOXMLTRANSLATECFIELDS':
2691 $result = __('Custom Fields', 'vikbooking');
2692 break;
2693 case 'VBOXMLTRANSLATECHARACTERISTICS':
2694 $result = __('Characteristics', 'vikbooking');
2695 break;
2696 case 'VBINIEXPLCOM_VIKBOOKING_FRONT':
2697 $result = __('Component Front-End', 'vikbooking');
2698 break;
2699 case 'VBINIEXPLCOM_VIKBOOKING_ADMIN':
2700 $result = __('Component Back-End', 'vikbooking');
2701 break;
2702 case 'VBINIEXPLCOM_VIKBOOKING_ADMIN_SYS':
2703 $result = __('Component Back-End SYS', 'vikbooking');
2704 break;
2705 case 'VBINIEXPLMOD_VIKBOOKING_SEARCH':
2706 $result = __('Search Module', 'vikbooking');
2707 break;
2708 case 'VBINIEXPLMOD_VIKBOOKING_HORIZONTALSEARCH':
2709 $result = __('Horizontal Search Module', 'vikbooking');
2710 break;
2711 case 'VBOXMLTRANSLATETEXTS':
2712 $result = __('Texts', 'vikbooking');
2713 break;
2714 case 'VBOXMLCONTENT':
2715 $result = __('Content', 'vikbooking');
2716 break;
2717 case 'VBOXMLTRANSLATEPACKAGES':
2718 $result = __('Packages/Offers', 'vikbooking');
2719 break;
2720 case 'VBOXMLTRANSLATECRONJOBS':
2721 $result = __('Scheduled Actions', 'vikbooking');
2722 break;
2723 case 'VBCHANNELMANAGERRESULTOK':
2724 $result = __('The Channel Manager has successfully notified the Channels!', 'vikbooking');
2725 break;
2726 case 'VBCHANNELMANAGERRESULTKO':
2727 $result = __('The Channel Manager did not notify any channel either because none needed to be updated or an error occurred.', 'vikbooking');
2728 break;
2729 case 'VBCHANNELMANAGEROPEN':
2730 $result = __('Go to Channel Manager', 'vikbooking');
2731 break;
2732 case 'VBCHANNELMANAGERINVOKEASK':
2733 $result = __('Would you like to invoke the Channel Manager to notify the changes to the Channels?', 'vikbooking');
2734 break;
2735 case 'VBCHANNELMANAGERSENDRQ':
2736 $result = __('Send Update Request', 'vikbooking');
2737 break;
2738 case 'GETFULLCARDDETAILS':
2739 $result = __('Get full Credit Card Details', 'vikbooking');
2740 break;
2741 case 'VBOROOMOCCUPANCYPRNOTSUPP':
2742 $result = __('Occupancy Pricing not supported.', 'vikbooking');
2743 break;
2744 case 'VBSEASONOCCUPANCYPR':
2745 $result = __('Occupancy Pricing Overrides', 'vikbooking');
2746 break;
2747 case 'VBSENDEREMAIL':
2748 $result = __('Sender e-Mail', 'vikbooking');
2749 break;
2750 case 'VBOROOMLEGUNITOCC':
2751 $result = __('Units and Occupancy', 'vikbooking');
2752 break;
2753 case 'VBOROOMLEGPHOTODESC':
2754 $result = __('Photos and Descriptions', 'vikbooking');
2755 break;
2756 case 'VBOROOMLEGCARATCATOPT':
2757 $result = __('Categories, Characteristics and Options', 'vikbooking');
2758 break;
2759 case 'VBOSELORDRAGFILES':
2760 $result = __('Select or Drag & Drop Files', 'vikbooking');
2761 break;
2762 case 'VBOUPLOADFILEDONE':
2763 $result = __('Done', 'vikbooking');
2764 break;
2765 case 'VBOBULKUPLOAD':
2766 $result = __('Bulk Upload', 'vikbooking');
2767 break;
2768 case 'VBORMALLPHOTOS':
2769 $result = __('Remove all Photos', 'vikbooking');
2770 break;
2771 case 'VBOROOMSAVEOK':
2772 $result = __('Room created successfully!', 'vikbooking');
2773 break;
2774 case 'VBOGOTORATES':
2775 $result = __('Go to Rates Table page', 'vikbooking');
2776 break;
2777 case 'VBOBULKUPLOADAFTERSAVE':
2778 $result = __('Bulk Upload available after saving', 'vikbooking');
2779 break;
2780 case 'VBORPARAMREQINFO':
2781 $result = __('Enable Request Information', 'vikbooking');
2782 break;
2783 case 'VBOROOMUNITSDISTFEAT':
2784 $result = __('Units Distinctive Features', 'vikbooking');
2785 break;
2786 case 'VBOROOMUNITSDISTFEATTOGGLE':
2787 $result = __('Toggle Distinctive Features', 'vikbooking');
2788 break;
2789 case 'VBODEFAULTDISTFEATUREONE':
2790 $result = __('Room Number', 'vikbooking');
2791 break;
2792 case 'VBODEFAULTDISTFEATURETWO':
2793 $result = __('Room Code', 'vikbooking');
2794 break;
2795 case 'VBODISTFEATURETXT':
2796 $result = __('Feature', 'vikbooking');
2797 break;
2798 case 'VBODISTFEATUREVAL':
2799 $result = __('Value', 'vikbooking');
2800 break;
2801 case 'VBODISTFEATURERUNIT':
2802 $result = __('Room Unit #', 'vikbooking');
2803 break;
2804 case 'VBODISTFEATUREADD':
2805 $result = __('Add Feature', 'vikbooking');
2806 break;
2807 case 'VBOFEATASSIGNUNIT':
2808 $result = __('Assign Unit #', 'vikbooking');
2809 break;
2810 case 'VBOFEATASSIGNUNITEMPTY':
2811 $result = __('Not Specified', 'vikbooking');
2812 break;
2813 case 'VBOFEATUNITASSIGNED':
2814 $result = __('Room Unit Assigned', 'vikbooking');
2815 break;
2816 case 'VBDASHTODROCC':
2817 $result = __('Today\'s Room Occupancy', 'vikbooking');
2818 break;
2819 case 'VBCONFIGAUTODISTFEATURE':
2820 $result = __('Auto-Assign Room Units', 'vikbooking');
2821 break;
2822 case 'VBCONFIGAUTODISTFEATUREHELP':
2823 $result = __('The room types (with more than 1 unit) using the Units Distinctive Features, can automatically assign the first available room unit to the bookings. For example: new bookings can be automatically assigned to the room number #101, #102, #103 etc..', 'vikbooking');
2824 break;
2825 case 'VBOCONFIGEDITTMPLFILE':
2826 $result = __('Edit Template File', 'vikbooking');
2827 break;
2828 case 'VBOCONFIGEMAILTEMPLATE':
2829 $result = __('Customer Email', 'vikbooking');
2830 break;
2831 case 'VBOUPDTMPLFILEERR':
2832 $result = __('Error: empty or invalid Template File Path', 'vikbooking');
2833 break;
2834 case 'VBOUPDTMPLFILENOBYTES':
2835 $result = __('Error: 0 bytes written on file', 'vikbooking');
2836 break;
2837 case 'VBOUPDTMPLFILEOK':
2838 $result = __('Template File Successfully Updated', 'vikbooking');
2839 break;
2840 case 'VBOEDITTMPLFILE':
2841 $result = __('Edit Template File Source Code', 'vikbooking');
2842 break;
2843 case 'VBOTMPLFILENOTREAD':
2844 $result = __('Error reading the source code of the file', 'vikbooking');
2845 break;
2846 case 'VBOSAVETMPLFILE':
2847 $result = __('Save & Write Source Code', 'vikbooking');
2848 break;
2849 case 'VBMENUPACKAGES':
2850 $result = __('Packages &amp; Offers', 'vikbooking');
2851 break;
2852 case 'VBNOPACKAGES':
2853 $result = __('No Packages found', 'vikbooking');
2854 break;
2855 case 'VBPACKAGESNAME':
2856 $result = __('Package Name', 'vikbooking');
2857 break;
2858 case 'VBPACKAGESDROM':
2859 $result = __('From Date', 'vikbooking');
2860 break;
2861 case 'VBPACKAGESDTO':
2862 $result = __('To Date', 'vikbooking');
2863 break;
2864 case 'VBPACKAGESCOST':
2865 $result = __('Price', 'vikbooking');
2866 break;
2867 case 'VBPACKAGESROOMSCOUNT':
2868 $result = __('Rooms Affected', 'vikbooking');
2869 break;
2870 case 'VBMAINPACKAGESTITLE':
2871 $result = __('Vik Booking - Packages & Offers', 'vikbooking');
2872 break;
2873 case 'VBMAINPACKAGENEW':
2874 $result = __('New', 'vikbooking');
2875 break;
2876 case 'VBMAINPACKAGEEDIT':
2877 $result = __('Edit', 'vikbooking');
2878 break;
2879 case 'VBMAINPACKAGEDEL':
2880 $result = __('Remove', 'vikbooking');
2881 break;
2882 case 'VBNEWPKGNAME':
2883 $result = __('Package Name', 'vikbooking');
2884 break;
2885 case 'VBNEWPKGALIAS':
2886 $result = __('SEF Alias', 'vikbooking');
2887 break;
2888 case 'VBNEWPKGIMG':
2889 $result = __('Main Image', 'vikbooking');
2890 break;
2891 case 'VBNEWPKGDFROM':
2892 $result = __('Validity Start Date', 'vikbooking');
2893 break;
2894 case 'VBNEWPKGDTO':
2895 $result = __('Validity End Date', 'vikbooking');
2896 break;
2897 case 'VBNEWPKGEXCLDATES':
2898 $result = __('Excluded Dates', 'vikbooking');
2899 break;
2900 case 'VBNEWPKGMINLOS':
2901 $result = __('Min. Number of Nights', 'vikbooking');
2902 break;
2903 case 'VBNEWPKGMAXLOS':
2904 $result = __('Max. Number of Nights', 'vikbooking');
2905 break;
2906 case 'VBNEWPKGCOST':
2907 $result = __('Package Cost', 'vikbooking');
2908 break;
2909 case 'VBNEWPKGCOSTTYPE':
2910 $result = __('Cost Type', 'vikbooking');
2911 break;
2912 case 'VBNEWPKGCOSTTYPEPNIGHT':
2913 $result = __('Per Night', 'vikbooking');
2914 break;
2915 case 'VBNEWPKGCOSTTYPETOTAL':
2916 $result = __('Total', 'vikbooking');
2917 break;
2918 case 'VBNEWPKGCOSTTYPEPPERSON':
2919 $result = __('Cost Per Person', 'vikbooking');
2920 break;
2921 case 'VBNEWPKGSHOWOPT':
2922 $result = __('Display Rooms Options', 'vikbooking');
2923 break;
2924 case 'VBNEWPKGSHOWOPTALL':
2925 $result = __('Display all the assigned Rooms Options', 'vikbooking');
2926 break;
2927 case 'VBNEWPKGSHOWOPTOBL':
2928 $result = __('Apply just the mandatory Options (i.e. City Taxes)', 'vikbooking');
2929 break;
2930 case 'VBNEWPKGHIDEOPT':
2931 $result = __('Hide all Rooms Options', 'vikbooking');
2932 break;
2933 case 'VBNEWPKGDESCR':
2934 $result = __('Package Description', 'vikbooking');
2935 break;
2936 case 'VBNEWPKGSHORTDESCR':
2937 $result = __('Package Short Description', 'vikbooking');
2938 break;
2939 case 'VBNEWPKGBENEFITS':
2940 $result = __('Benefits', 'vikbooking');
2941 break;
2942 case 'VBNEWPKGCONDS':
2943 $result = __('Conditions', 'vikbooking');
2944 break;
2945 case 'VBNEWPKGBENEFITSHELP':
2946 $result = __('i.e. Save xx% and get free xyz.', 'vikbooking');
2947 break;
2948 case 'VBNEWPKGROOMS':
2949 $result = __('Available Rooms', 'vikbooking');
2950 break;
2951 case 'VBOEXCLWEEKD':
2952 $result = __('Exclude Week Days', 'vikbooking');
2953 break;
2954 case 'VBOPKGSAVED':
2955 $result = __('Package Saved Successfully!', 'vikbooking');
2956 break;
2957 case 'VBOPKGUPDATED':
2958 $result = __('Package Updated Successfully!', 'vikbooking');
2959 break;
2960 case 'VBOROOMCUSTRATEPLAN':
2961 $result = __('Room Rate', 'vikbooking');
2962 break;
2963 case 'VBOROOMCUSTRATEPLANADD':
2964 $result = __('Set Custom Rate', 'vikbooking');
2965 break;
2966 case 'VBOROOMCUSTRATETAXHELP':
2967 $result = __('Custom Rates should always be inclusive of taxes', 'vikbooking');
2968 break;
2969 case 'VBORESRATESUPDATED':
2970 $result = __('Reservation and Rates Updated', 'vikbooking');
2971 break;
2972 case 'VBOSEARCHCUSTBY':
2973 $result = __('Search by PIN or Name', 'vikbooking');
2974 break;
2975 case 'VBOOPTASSTOXROOMS':
2976 $result = __('This option is assigned to %d rooms over %d.', 'vikbooking');
2977 break;
2978 case 'VBCONFIGCLOSINGDATES':
2979 $result = __('Closing Dates', 'vikbooking');
2980 break;
2981 case 'VBCONFIGCLOSINGDATEFROM':
2982 $result = __('From Date', 'vikbooking');
2983 break;
2984 case 'VBCONFIGCLOSINGDATETO':
2985 $result = __('To Date', 'vikbooking');
2986 break;
2987 case 'VBCONFIGCLOSINGDATEADD':
2988 $result = __('Add', 'vikbooking');
2989 break;
2990 case 'VBTOTALCOMMISSIONS':
2991 $result = __('Commissions', 'vikbooking');
2992 break;
2993 case 'VBMENUMANAGEMENT':
2994 $result = __('Management', 'vikbooking');
2995 break;
2996 case 'VBMENUSTATS':
2997 $result = __('Graphs &amp; Statistics', 'vikbooking');
2998 break;
2999 case 'VBMENUCRONS':
3000 $result = __('Scheduled Actions', 'vikbooking');
3001 break;
3002 case 'VBOIBECHANNEL':
3003 $result = __('Website/IBE', 'vikbooking');
3004 break;
3005 case 'VBNOBOOKINGSTATS':
3006 $result = __('No bookings found for these dates. Reports cannot be generated.', 'vikbooking');
3007 break;
3008 case 'VBOSTATSFOR':
3009 $result = __('%d Confirmed Bookings over %d days - coming from %d Channels', 'vikbooking');
3010 break;
3011 case 'VBSTATSOTACOMMISSIONS':
3012 $result = __('OTA Commissions', 'vikbooking');
3013 break;
3014 case 'VBOSTATSTOPCOUNTRIES':
3015 $result = __('Top Countries', 'vikbooking');
3016 break;
3017 case 'VBOSTATSTOTINCOME':
3018 $result = __('Total Gross Income', 'vikbooking');
3019 break;
3020 case 'VBOSTATSTOTINCOMELESSCMMS':
3021 $result = __('Total After Commissions', 'vikbooking');
3022 break;
3023 case 'VBOSTATSTOTINCOMELESSTAX':
3024 $result = __('Total Net Income', 'vikbooking');
3025 break;
3026 case 'VBOSTATSTOTINCOMELESSTAXHELP':
3027 $result = __('Total Net Income After Commissions, Taxes, City Taxes and Fees', 'vikbooking');
3028 break;
3029 case 'VBMAINSTATSTITLE':
3030 $result = __('Vik Booking - Graphs &amp; Statistics', 'vikbooking');
3031 break;
3032 case 'VBPANELFIVE':
3033 $result = __('SMS Gateway', 'vikbooking');
3034 break;
3035 case 'VBOCPARAMSMS':
3036 $result = __('SMS APIs', 'vikbooking');
3037 break;
3038 case 'VBCONFIGSMSCLASS':
3039 $result = __('SMS API File', 'vikbooking');
3040 break;
3041 case 'VBCONFIGSMSAUTOSEND':
3042 $result = __('Enable Auto-Sending', 'vikbooking');
3043 break;
3044 case 'VBCONFIGSMSSENDTO':
3045 $result = __('Send SMS To', 'vikbooking');
3046 break;
3047 case 'VBCONFIGSMSSENDTOADMIN':
3048 $result = __('Administrator', 'vikbooking');
3049 break;
3050 case 'VBCONFIGSMSSENDTOCUSTOMER':
3051 $result = __('Customer', 'vikbooking');
3052 break;
3053 case 'VBCONFIGSMSSADMINPHONE':
3054 $result = __('Administrator Phone Number', 'vikbooking');
3055 break;
3056 case 'VBCONFIGSMSPARAMETERS':
3057 $result = __('Gateway Parameters', 'vikbooking');
3058 break;
3059 case 'VBCONFIGSMSREMAINBAL':
3060 $result = __('Remaining Balance', 'vikbooking');
3061 break;
3062 case 'VBCONFIGSMSESTCREDIT':
3063 $result = __('Estimate Credit', 'vikbooking');
3064 break;
3065 case 'VBCONFIGSMSADMTPL':
3066 $result = __('Administrator SMS Template', 'vikbooking');
3067 break;
3068 case 'VBCONFIGSMSCUSTOTPL':
3069 $result = __('Customer SMS Template', 'vikbooking');
3070 break;
3071 case 'VBSENDSMSACTION':
3072 $result = __('Send Custom SMS', 'vikbooking');
3073 break;
3074 case 'VBSENDSMSCUSTCONT':
3075 $result = __('Message', 'vikbooking');
3076 break;
3077 case 'VBSENDSMSERRMISSDATA':
3078 $result = __('Empty Phone Number or Message', 'vikbooking');
3079 break;
3080 case 'VBSENDSMSERRMISSAPI':
3081 $result = __('No SMS APIs Configured', 'vikbooking');
3082 break;
3083 case 'VBSENDSMSOK':
3084 $result = __('SMS Successfully Sent!', 'vikbooking');
3085 break;
3086 case 'VBOSENDSMSERRMAILSUBJ':
3087 $result = __('Error Sending the SMS', 'vikbooking');
3088 break;
3089 case 'VBOSENDADMINSMSERRMAILTXT':
3090 $result = __('An error occurred while sending the SMS to the Administrator. Below is the provider response.', 'vikbooking');
3091 break;
3092 case 'VBOSENDCUSTOMERSMSERRMAILTXT':
3093 $result = __('An error occurred while sending the SMS to the Customer. Below is the provider response.', 'vikbooking');
3094 break;
3095 case 'VBMAKEORDERPAYABLE':
3096 $result = __('Make payable from front site', 'vikbooking');
3097 break;
3098 case 'VBCONFIGCRONKEY':
3099 $result = __('Cron Jobs Secret Key', 'vikbooking');
3100 break;
3101 case 'VBMAILYOURBOOKING':
3102 $result = __('Your Booking', 'vikbooking');
3103 break;
3104 case 'VBMAINCRONSTITLE':
3105 $result = __('Vik Booking - Scheduled Actions', 'vikbooking');
3106 break;
3107 case 'VBMAINCRONNEW':
3108 $result = __('New Cron Job', 'vikbooking');
3109 break;
3110 case 'VBMAINCRONEDIT':
3111 $result = __('Edit', 'vikbooking');
3112 break;
3113 case 'VBMAINCRONDEL':
3114 $result = __('Remove', 'vikbooking');
3115 break;
3116 case 'VBNOCRONS':
3117 $result = __('No Cron Jobs currently set up or scheduled.', 'vikbooking');
3118 break;
3119 case 'VBCRONNAME':
3120 $result = __('Cron Job Name', 'vikbooking');
3121 break;
3122 case 'VBCRONCLASS':
3123 $result = __('Class File', 'vikbooking');
3124 break;
3125 case 'VBCRONLASTEXEC':
3126 $result = __('Last Execution', 'vikbooking');
3127 break;
3128 case 'VBCRONPUBLISHED':
3129 $result = __('Published', 'vikbooking');
3130 break;
3131 case 'VBOCRONSAVED':
3132 $result = __('Cron Job Saved!', 'vikbooking');
3133 break;
3134 case 'VBOCRONUPDATED':
3135 $result = __('Cron Job Updated!', 'vikbooking');
3136 break;
3137 case 'VBCRONLOGS':
3138 $result = __('Execution Logs', 'vikbooking');
3139 break;
3140 case 'VBCRONACTIONS':
3141 $result = __('Actions', 'vikbooking');
3142 break;
3143 case 'VBCRONACTION':
3144 $result = __('Execute', 'vikbooking');
3145 break;
3146 case 'VBCRONEXECRESULT':
3147 $result = __('Cron Job Result', 'vikbooking');
3148 break;
3149 case 'VBCRONPARAMS':
3150 $result = __('Parameters', 'vikbooking');
3151 break;
3152 case 'VBCRONGETCMD':
3153 $result = __('Get Command', 'vikbooking');
3154 break;
3155 case 'VBCRONGETCMDHELP':
3156 $result = __('This cron job could be executed automatically by your server at regular intervals. The cron can also be executed manually by an administrator but letting the server do it, will be effortless and fully functional. Only servers supporting a Cron utility like crontab will be able of executing this cron job.', 'vikbooking');
3157 break;
3158 case 'VBCRONGETCMDINSTSTEPS':
3159 $result = __('Installation Steps', 'vikbooking');
3160 break;
3161 case 'VBCRONGETCMDINSTSTEPONE':
3162 $result = __('Download the executable PHP file for this cron job onto a local folder of your computer.', 'vikbooking');
3163 break;
3164 case 'VBCRONGETCMDINSTSTEPTWO':
3165 $result = __('Upload the downloaded file onto a directory of your server, either before, in or after the root directory of the web-server.', 'vikbooking');
3166 break;
3167 case 'VBCRONGETCMDINSTSTEPTHREE':
3168 $result = __('Log in to your server control panel and add a new job for your Cron Utility. Your hosting company should help you use this tool.', 'vikbooking');
3169 break;
3170 case 'VBCRONGETCMDINSTSTEPFOUR':
3171 $result = __('Cron Jobs require the execution interval and the command to execute. Set the necessary interval and the proper command to execute this cron job repetitively.', 'vikbooking');
3172 break;
3173 case 'VBCRONGETCMDINSTPATH':
3174 $result = __('Assuming that the executable PHP file was uploaded onto the root directory of your web-server, the command you should set in the Cron Utility should look similar to the one below. In this example, the path to the PHP interpreter has been set to <em>/usr/bin/php</em> but this may differ for your server.', 'vikbooking');
3175 break;
3176 case 'VBCRONGETCMDINSTURL':
3177 $result = __('Please be aware that PHP files in or after the root directory of the web-server can be executed at a public URL. This may not be secure if you do not want anyone to be able to launch the cron job except for the server. If the file was in the root directory, it would be callable at the URL below.', 'vikbooking');
3178 break;
3179 case 'VBCRONGETCMDGETFILE':
3180 $result = __('Download Executable File', 'vikbooking');
3181 break;
3182 case 'VBOCRONSMSREMPARAMCTYPE':
3183 $result = __('Reminder Type', 'vikbooking');
3184 break;
3185 case 'VBOCRONSMSREMPARAMCTYPEA':
3186 $result = __('Check-in Reminder', 'vikbooking');
3187 break;
3188 case 'VBOCRONSMSREMPARAMCTYPEB':
3189 $result = __('Remaining Balance Payment Reminder', 'vikbooking');
3190 break;
3191 case 'VBOCRONSMSREMPARAMCTYPEC':
3192 $result = __('After Check-out Message', 'vikbooking');
3193 break;
3194 case 'VBOCRONSMSREMPARAMCTYPECHELP':
3195 $result = __('If type = After Check-out Message or Leave Review, this will be the number of days after the check-out. If reservation date, this will target those who booked N days ago, where 0 means today. Number of days before the check-in otherwise.', 'vikbooking');
3196 break;
3197 case 'VBOCRONSMSREMPARAMBEFD':
3198 $result = __('Days in Advance', 'vikbooking');
3199 break;
3200 case 'VBOCRONEMAILREMPARAMSUBJECT':
3201 $result = __('eMail Subject', 'vikbooking');
3202 break;
3203 case 'VBOCRONSMSREMPARAMTEXT':
3204 $result = __('Message', 'vikbooking');
3205 break;
3206 case 'VBOCRONSMSREMPARAMTEST':
3207 $result = __('Test Mode', 'vikbooking');
3208 break;
3209 case 'VBOCRONSMSREMPARAMTESTHELP':
3210 $result = __('if enabled, the cron will not actually send the SMS', 'vikbooking');
3211 break;
3212 case 'VBOCRONEMAILREMPARAMTESTHELP':
3213 $result = __('if enabled, the cron will not actually send the eMail', 'vikbooking');
3214 break;
3215 case 'VBOCRONSMSREMHELP':
3216 $result = __('This cron job should be scheduled to run at regular intervals of one time per day. Executing the cron job once per day, at the preferred time, will guarantee the best result.', 'vikbooking');
3217 break;
3218 case 'VBOCRONINVGENPARAMCWHEN':
3219 $result = __('Generate Invoices', 'vikbooking');
3220 break;
3221 case 'VBOCRONINVGENPARAMCWHENA':
3222 $result = __('After the Check-in date', 'vikbooking');
3223 break;
3224 case 'VBOCRONINVGENPARAMCWHENB':
3225 $result = __('Whenever the booking status is Confirmed', 'vikbooking');
3226 break;
3227 case 'VBOCRONINVGENPARAMCWHENC':
3228 $result = __('After the Check-out date', 'vikbooking');
3229 break;
3230 case 'VBOCRONINVGENPARAMSKIPOTAS':
3231 $result = __('Skip OTAs Bookings', 'vikbooking');
3232 break;
3233 case 'VBOCRONINVGENPARAMDGEN':
3234 $result = __('Use Generation Date', 'vikbooking');
3235 break;
3236 case 'VBOCRONINVGENPARAMSKIPOTASHELP':
3237 $result = __('if enabled, all the bookings transmitted by the channel manager will be ignored', 'vikbooking');
3238 break;
3239 case 'VBOCRONINVGENPARAMEMAILSEND':
3240 $result = __('Send Invoices via eMail', 'vikbooking');
3241 break;
3242 case 'VBOCRONINVGENPARAMTEST':
3243 $result = __('Test Mode', 'vikbooking');
3244 break;
3245 case 'VBOCRONINVGENPARAMTESTHELP':
3246 $result = __('if enabled, the cron will not actually generate the invoices, nor it will send them via eMail to the customers', 'vikbooking');
3247 break;
3248 case 'VBOCRONINVGENPARAMTEXT':
3249 $result = __('eMail message with PDF attached', 'vikbooking');
3250 break;
3251 case 'VBOCRONINVGENHELP':
3252 $result = __('This cron job should be scheduled to run once per day. Remember to create at least one invoice manually from the back-end before running this cron. This is to set the invoices starting number and other details.', 'vikbooking');
3253 break;
3254 case 'VBCONFIGTHREECHECKINOUTSTAT':
3255 $result = __('Show Status Only Check-in/out', 'vikbooking');
3256 break;
3257 case 'VBOCONFIGCUSTCSSTPL':
3258 $result = __('Custom CSS Overrides', 'vikbooking');
3259 break;
3260 case 'VBOCONFIGINVOICETEMPLATE':
3261 $result = __('Invoices', 'vikbooking');
3262 break;
3263 case 'VBQUICKRESGUESTS':
3264 $result = __('Guests', 'vikbooking');
3265 break;
3266 case 'VBOGENINVOICES':
3267 $result = __('Generate Invoices', 'vikbooking');
3268 break;
3269 case 'VBINVSTARTNUM':
3270 $result = __('Invoices Starting Number', 'vikbooking');
3271 break;
3272 case 'VBINVNUMSUFFIX':
3273 $result = __('Invoices Number Suffix', 'vikbooking');
3274 break;
3275 case 'VBINVUSEDATE':
3276 $result = __('Invoices Date', 'vikbooking');
3277 break;
3278 case 'VBINVUSEDATEBOOKING':
3279 $result = __('Use Booking Date', 'vikbooking');
3280 break;
3281 case 'VBINVCOMPANYINFO':
3282 $result = __('Company Information Header', 'vikbooking');
3283 break;
3284 case 'VBINVSENDVIAMAIL':
3285 $result = __('Send Invoices via eMail', 'vikbooking');
3286 break;
3287 case 'VBOINVNUM':
3288 $result = __('Invoice Number', 'vikbooking');
3289 break;
3290 case 'VBOINVDATE':
3291 $result = __('Date', 'vikbooking');
3292 break;
3293 case 'VBOINVCOLDESCR':
3294 $result = __('Description', 'vikbooking');
3295 break;
3296 case 'VBOINVCOLNETPRICE':
3297 $result = __('Net', 'vikbooking');
3298 break;
3299 case 'VBOINVCOLTAX':
3300 $result = __('Taxes', 'vikbooking');
3301 break;
3302 case 'VBOINVCOLPRICE':
3303 $result = __('Price', 'vikbooking');
3304 break;
3305 case 'VBOINVCOLCUSTINFO':
3306 $result = __('Customer Information', 'vikbooking');
3307 break;
3308 case 'VBOINVCOLBOOKINGDETS':
3309 $result = __('Booking Details', 'vikbooking');
3310 break;
3311 case 'VBOINVCHECKIN':
3312 $result = __('Check-in', 'vikbooking');
3313 break;
3314 case 'VBOINVCHECKOUT':
3315 $result = __('Check-out', 'vikbooking');
3316 break;
3317 case 'VBOINVTOTGUESTS':
3318 $result = __('Guests', 'vikbooking');
3319 break;
3320 case 'VBOINVTOTNIGHTS':
3321 $result = __('Number of nights', 'vikbooking');
3322 break;
3323 case 'VBOINVTOTADULTS':
3324 $result = __('Adults', 'vikbooking');
3325 break;
3326 case 'VBOINVTOTCHILDREN':
3327 $result = __('Children', 'vikbooking');
3328 break;
3329 case 'VBOINVCOLTOTAL':
3330 $result = __('Total', 'vikbooking');
3331 break;
3332 case 'VBOINVCOLGRANDTOTAL':
3333 $result = __('Grand Total', 'vikbooking');
3334 break;
3335 case 'VBOGENINVERRNOBOOKINGS':
3336 $result = __('Unable to generate the invoices: no confirmed bookings with a total amount greater than zero.', 'vikbooking');
3337 break;
3338 case 'VBOGENINVERRBOOKING':
3339 $result = __('Error generating the invoice for the Booking ID %d', 'vikbooking');
3340 break;
3341 case 'VBOTOTINVOICESGEND':
3342 $result = __('Invoices Generated: %d - Invoices sent via eMail: %d', 'vikbooking');
3343 break;
3344 case 'VBOINVDOWNLOAD':
3345 $result = __('Download Invoice', 'vikbooking');
3346 break;
3347 case 'VBOEMAILINVOICEATTACHSUBJ':
3348 $result = __('Invoice for your reservation', 'vikbooking');
3349 break;
3350 case 'VBOEMAILINVOICEATTACHTXT':
3351 $result = __("Dear Customer, \nattached to this message you will find the invoice for your reservation. \nThank you!", 'vikbooking');
3352 break;
3353 case 'VBMENUINVOICES':
3354 $result = __('Invoices', 'vikbooking');
3355 break;
3356 case 'VBTOTINVOICES':
3357 $result = __('Total Invoices', 'vikbooking');
3358 break;
3359 case 'VBNOINVOICESFOUND':
3360 $result = __('No Invoices found.', 'vikbooking');
3361 break;
3362 case 'VBOINVCREATIONDATE':
3363 $result = __('Created on', 'vikbooking');
3364 break;
3365 case 'VBOINVBOOKINGID':
3366 $result = __('Booking ID', 'vikbooking');
3367 break;
3368 case 'VBOINVEMAILED':
3369 $result = __('Emailed to', 'vikbooking');
3370 break;
3371 case 'VBOINVEMAILNOW':
3372 $result = __('Send via eMail', 'vikbooking');
3373 break;
3374 case 'VBOINVREEMAIL':
3375 $result = __('Re-Send via eMail', 'vikbooking');
3376 break;
3377 case 'VBOINVOPEN':
3378 $result = __('View', 'vikbooking');
3379 break;
3380 case 'VBOINVDOWNLOAD':
3381 $result = __('Download', 'vikbooking');
3382 break;
3383 case 'VBINVSELECTALL':
3384 $result = __('Select All', 'vikbooking');
3385 break;
3386 case 'VBINVDESELECTALL':
3387 $result = __('Deselect All', 'vikbooking');
3388 break;
3389 case 'VBOINVAPPLYFILTER':
3390 $result = __('Apply Filter', 'vikbooking');
3391 break;
3392 case 'VBOINVREMOVEFILTER':
3393 $result = __('Remove Filter', 'vikbooking');
3394 break;
3395 case 'VBOTOTINVOICESRMVD':
3396 $result = __('Invoices Removed: %d', 'vikbooking');
3397 break;
3398 case 'VBMAININVOICESTITLE':
3399 $result = __('Vik Booking - Invoices', 'vikbooking');
3400 break;
3401 case 'VBMAININVOICESDOWNLOAD':
3402 $result = __('Download Selected Invoices', 'vikbooking');
3403 break;
3404 case 'VBMAININVOICESRESEND':
3405 $result = __('Send Selected Invoices via eMail', 'vikbooking');
3406 break;
3407 case 'VBMAININVOICESDEL':
3408 $result = __('Remove Selected Invoices', 'vikbooking');
3409 break;
3410 case 'VBOINVBOOKDETAILS':
3411 $result = __('Booking Details', 'vikbooking');
3412 break;
3413 case 'VBOPRINT':
3414 $result = __('Print', 'vikbooking');
3415 break;
3416 case 'VBRATESOVWTABLOS':
3417 $result = __('Length of Stay Pricing Overview', 'vikbooking');
3418 break;
3419 case 'VBRATESOVWTABCALENDAR':
3420 $result = __('Calendar Pricing Overview', 'vikbooking');
3421 break;
3422 case 'VBAFFANYPRICE':
3423 $result = __('Any Type of Price', 'vikbooking');
3424 break;
3425 case 'VBRATESOVWPRICETYPE':
3426 $result = __('Type of Price', 'vikbooking');
3427 break;
3428 case 'VBRATESOVWAFFALLPRICETYPE':
3429 $result = __('All', 'vikbooking');
3430 break;
3431 case 'VBRATESOVWSETNEWRATE':
3432 $result = __('Set New Rate', 'vikbooking');
3433 break;
3434 case 'VBRATESOVWERRNEWRATE':
3435 $result = __('Error while setting new rates. Missing data', 'vikbooking');
3436 break;
3437 case 'VBRATESOVWERRNORATES':
3438 $result = __('Error while setting new rates. No rates', 'vikbooking');
3439 break;
3440 case 'VBRATESOVWERRNORATESMOD':
3441 $result = __('Error: no changes needed for the selected rates', 'vikbooking');
3442 break;
3443 case 'VBOGOTOROVERVCAL':
3444 $result = __('Go to Calendar Rates Overview', 'vikbooking');
3445 break;
3446 case 'VBRATESOVWOPENSPL':
3447 $result = __('Special Price rule #%d', 'vikbooking');
3448 break;
3449 case 'VBRECORDSREMOVED':
3450 $result = __('Records Removed: %d', 'vikbooking');
3451 break;
3452 case 'VBCUSTOMERADDRESS':
3453 $result = __('Address', 'vikbooking');
3454 break;
3455 case 'VBCUSTOMERCITY':
3456 $result = __('City', 'vikbooking');
3457 break;
3458 case 'VBCUSTOMERZIP':
3459 $result = __('ZIP', 'vikbooking');
3460 break;
3461 case 'VBCUSTOMERDOCTYPE':
3462 $result = __('ID Type', 'vikbooking');
3463 break;
3464 case 'VBCUSTOMERDOCNUM':
3465 $result = __('ID Number', 'vikbooking');
3466 break;
3467 case 'VBCUSTOMERDOCIMG':
3468 $result = __('ID Scan Image', 'vikbooking');
3469 break;
3470 case 'VBCUSTOMERNOTES':
3471 $result = __('Notes', 'vikbooking');
3472 break;
3473 case 'VBOTAKESNAPCAM':
3474 $result = __('Take Webcam Snapshot', 'vikbooking');
3475 break;
3476 case 'VBOTAKESNAPCAMCONFIGURE':
3477 $result = __('Configure Webcam', 'vikbooking');
3478 break;
3479 case 'VBOTAKESNAPCAMTAKEIT':
3480 $result = __('Take Snapshot!', 'vikbooking');
3481 break;
3482 case 'VBOSNAPCAMNOTALLOWED':
3483 $result = __('You must allow the script to use your camera before taking the snapshot', 'vikbooking');
3484 break;
3485 case 'VBOTAKESNAPCAMLOADING':
3486 $result = __('Uploading Snapshot...Please Wait', 'vikbooking');
3487 break;
3488 case 'VBOSTATSALLROOMS':
3489 $result = __('- All Rooms', 'vikbooking');
3490 break;
3491 case 'VBOFILTERBYDATES':
3492 $result = __('Filter by Date', 'vikbooking');
3493 break;
3494 case 'VBOFILTERDATEBOOK':
3495 $result = __('Reservation Date', 'vikbooking');
3496 break;
3497 case 'VBOFILTERDATEIN':
3498 $result = __('Check-in date', 'vikbooking');
3499 break;
3500 case 'VBOFILTERDATEOUT':
3501 $result = __('Check-out date', 'vikbooking');
3502 break;
3503 case 'VBOCSVEXPCUSTOMERS':
3504 $result = __('CSV Export', 'vikbooking');
3505 break;
3506 case 'VBOCSVEXPCUSTOMERSGET':
3507 $result = __('Download CSV Export', 'vikbooking');
3508 break;
3509 case 'VBOANYCOUNTRY':
3510 $result = __('-- Any Country --', 'vikbooking');
3511 break;
3512 case 'VBOCUSTOMEREXPSEL':
3513 $result = __('Export Information about %d selected Customers', 'vikbooking');
3514 break;
3515 case 'VBOCUSTOMEREXPALL':
3516 $result = __('Export Customers Information', 'vikbooking');
3517 break;
3518 case 'VBMAINEXPCUSTOMERSTITLE':
3519 $result = __('Vik Booking - Export Customers Information', 'vikbooking');
3520 break;
3521 case 'VBOCUSTOMEREXPNOTES':
3522 $result = __('Include Notes', 'vikbooking');
3523 break;
3524 case 'VBOCUSTOMEREXPSCANIMG':
3525 $result = __('Include ID Image Scan URL', 'vikbooking');
3526 break;
3527 case 'VBOCUSTOMEREXPPIN':
3528 $result = __('Include PIN Code', 'vikbooking');
3529 break;
3530 case 'VBONORECORDSCSVCUSTOMERS':
3531 $result = __('No customer records to export', 'vikbooking');
3532 break;
3533 case 'VBOVIEWBOOKINGDET':
3534 $result = __('View Details', 'vikbooking');
3535 break;
3536 case 'VBISADDRESS':
3537 $result = __('Address', 'vikbooking');
3538 break;
3539 case 'VBISCITY':
3540 $result = __('City', 'vikbooking');
3541 break;
3542 case 'VBISZIP':
3543 $result = __('ZIP', 'vikbooking');
3544 break;
3545 case 'VBPEDITBUSYEXTRACOSTS':
3546 $result = __('Extra Services', 'vikbooking');
3547 break;
3548 case 'VBPEDITBUSYADDEXTRAC':
3549 $result = __('Add', 'vikbooking');
3550 break;
3551 case 'VBPEDITBUSYEXTRACNAME':
3552 $result = __('Service Name', 'vikbooking');
3553 break;
3554 case 'VBNEWAGEINTERVALCOSTPCENT':
3555 $result = __('% (Adults Rate)', 'vikbooking');
3556 break;
3557 case 'VBOCPARAMDEPOSITPAY':
3558 $result = __('Deposit', 'vikbooking');
3559 break;
3560 case 'VBOCONFDEPONLYIFDADV':
3561 $result = __('Deposit option not available when booked less than n days in advance', 'vikbooking');
3562 break;
3563 case 'VBOCONFDEPCUSTCHOICE':
3564 $result = __('Let the customers choose to leave a deposit', 'vikbooking');
3565 break;
3566 case 'VBCONFIGDATESEP':
3567 $result = __('Dates Separator', 'vikbooking');
3568 break;
3569 case 'VBOCCLOGDATAREMOVEDPCIDSS':
3570 $result = __('--- Credit Card details removed for PCI-DSS reasons ---', 'vikbooking');
3571 break;
3572 case 'VBRATESOVWCLOSEOPENRRP':
3573 $result = __('Close/Open Room Rate Plan', 'vikbooking');
3574 break;
3575 case 'VBRATESOVWCLOSERRP':
3576 $result = __('Close Rate Plan', 'vikbooking');
3577 break;
3578 case 'VBRATESOVWOPENRRP':
3579 $result = __('Open Rate Plan', 'vikbooking');
3580 break;
3581 case 'VBRATESOVWERRMODRPLANS':
3582 $result = __('Error while modifying rate plans. Missing data', 'vikbooking');
3583 break;
3584 case 'VBRATESOVWVCMRCHANGED':
3585 $result = __('Channel Manager - Rates Modification Count: %d', 'vikbooking');
3586 break;
3587 case 'VBRATESOVWVCMRCHANGEDOPEN':
3588 $result = __('Launch Channel Manager', 'vikbooking');
3589 break;
3590 case 'VBOVWNUMMONTHS':
3591 $result = __('Months:', 'vikbooking');
3592 break;
3593 case 'VBOVWDNDERRNOTENCELLS':
3594 $result = __('Error: landed date has %s free nights, while booking moved is %d nights long', 'vikbooking');
3595 break;
3596 case 'VBOVWDNDMOVINGBID':
3597 $result = __('Modifying Booking ID %d', 'vikbooking');
3598 break;
3599 case 'VBOVWDNDMOVINGROOM':
3600 $result = __('Switching room to %s', 'vikbooking');
3601 break;
3602 case 'VBOVWDNDMOVINGDATES':
3603 $result = __('Modifying dates to %s', 'vikbooking');
3604 break;
3605 case 'VBOVWALTBKERRMISSDATA':
3606 $result = __('Error, missing data for modifying the booking.', 'vikbooking');
3607 break;
3608 case 'VBOVWALTBKSWITCHROK':
3609 $result = __('The room %s has been switched to the %s.', 'vikbooking');
3610 break;
3611 case 'VBOVERVIEWLEGDND':
3612 $result = __('Drag &amp; Drop', 'vikbooking');
3613 break;
3614 case 'VBOVWGETBKERRMISSDATA':
3615 $result = __('Error, missing data for getting the booking information', 'vikbooking');
3616 break;
3617 case 'VBNEWRESTRICTIONSETCTA':
3618 $result = __('Set Days Closed to Arrival (CTA)', 'vikbooking');
3619 break;
3620 case 'VBNEWRESTRICTIONSETCTD':
3621 $result = __('Set Days Closed to Departure (CTD)', 'vikbooking');
3622 break;
3623 case 'VBNEWRESTRICTIONWDAYSCTA':
3624 $result = __('Week days closed to arrival', 'vikbooking');
3625 break;
3626 case 'VBNEWRESTRICTIONWDAYSCTD':
3627 $result = __('Week days closed to departure', 'vikbooking');
3628 break;
3629 case 'VBPVIEWRESTRICTIONSCTA':
3630 $result = __('CTA Week Days', 'vikbooking');
3631 break;
3632 case 'VBPVIEWRESTRICTIONSCTD':
3633 $result = __('CTD Week Days', 'vikbooking');
3634 break;
3635 case 'VBORESTRWDAYSCTA':
3636 $result = __('Week Days Closed to Arrival', 'vikbooking');
3637 break;
3638 case 'VBORESTRWDAYSCTD':
3639 $result = __('Week Days Closed to Departure', 'vikbooking');
3640 break;
3641 case 'VBOCONFIGWARNDIFFCHECKINOUT':
3642 $result = __('Warning: the check-in and check-out times have changed and there are future bookings saved with the old times. This may cause issues with the availability. Consider updating all the future reservations manually to avoid problems.', 'vikbooking');
3643 break;
3644 case 'VBPARAMCUSTPRICESUBTEXT':
3645 $result = __('Custom Price Sub-Text', 'vikbooking');
3646 break;
3647 case 'VBPARAMCUSTPRICESUBTEXTHELP':
3648 $result = __('this text can be displayed below the label \'per night\' to include additional information like the cost per occupancy. HTML is allowed in this text', 'vikbooking');
3649 break;
3650 case 'VBBOOKINGINVNOTES':
3651 $result = __('Booking Invoice Notes', 'vikbooking');
3652 break;
3653 case 'VBBOOKINGINVNOTESHELP':
3654 $result = __('You can use this text-area field to enter some additional information related to this booking for the invoice. Example: a booking reference number for third parties that should be included in the invoice.', 'vikbooking');
3655 break;
3656 case 'VBOGENBOOKINGINVOICE':
3657 $result = __('Generate Invoice', 'vikbooking');
3658 break;
3659 case 'VBCONFIGVCMAUTOUPD':
3660 $result = __('Channel Manager Auto-Sync', 'vikbooking');
3661 break;
3662 case 'VBCONFIGVCMAUTOUPDHELP':
3663 $result = __('If enabled, the availability update requests for all new bookings, booking modifications, confirmations and cancellations made through the Administrator section, will be automatically sent to the channel manager in background. For the bookings generated via front-end, the channel manager update requests can be automated from the page Settings of Vik Channel Manager (Auto-Sync). Recommended value for this setting: Enabled.', 'vikbooking');
3664 break;
3665 case 'VBCONFIGVCMAUTOUPDMISS':
3666 $result = __('Vik Channel Manager is not installed.', 'vikbooking');
3667 break;
3668 case 'VBWAITINGFORPAYMENT':
3669 $result = __('Waiting for the Payment', 'vikbooking');
3670 break;
3671 case 'VBLEAVEDEPOSIT':
3672 $result = __('Leave a deposit of ', 'vikbooking');
3673 break;
3674 case 'VBCONFIGSMSSENDWHEN':
3675 $result = __('Send SMS When', 'vikbooking');
3676 break;
3677 case 'VBCONFIGSMSSENDWHENCONF':
3678 $result = __('Reservation is Confirmed', 'vikbooking');
3679 break;
3680 case 'VBCONFIGSMSSENDWHENCONFPEND':
3681 $result = __('Reservation is Pending or Confirmed', 'vikbooking');
3682 break;
3683 case 'VBCONFIGSMSADMTPLPEND':
3684 $result = __('Admin SMS Template (Pending)', 'vikbooking');
3685 break;
3686 case 'VBCONFIGSMSCUSTOTPLPEND':
3687 $result = __('Customer SMS Template (Pending)', 'vikbooking');
3688 break;
3689 case 'VBINVEDITBINFO':
3690 $result = __('Modify Information/Rates', 'vikbooking');
3691 break;
3692 case 'VBSAVEANDDOINV':
3693 $result = __('Save &amp; Invoice', 'vikbooking');
3694 break;
3695 case 'VBCONFIRMGENINV':
3696 $result = __('The invoice will be generated. Proceed?', 'vikbooking');
3697 break;
3698 case 'VBSENDEMAILACTION':
3699 $result = __('Send Custom Email', 'vikbooking');
3700 break;
3701 case 'VBSENDEMAILCUSTSUBJ':
3702 $result = __('Subject', 'vikbooking');
3703 break;
3704 case 'VBSENDEMAILCUSTCONT':
3705 $result = __('Message', 'vikbooking');
3706 break;
3707 case 'VBSENDEMAILCUSTATTCH':
3708 $result = __('Attachment', 'vikbooking');
3709 break;
3710 case 'VBSENDEMAILCUSTFROM':
3711 $result = __('From Address', 'vikbooking');
3712 break;
3713 case 'VBSENDEMAILERRMISSDATA':
3714 $result = __('Missing required data for sending the email message.', 'vikbooking');
3715 break;
3716 case 'VBSENDEMAILOK':
3717 $result = __('The message was sent successfully', 'vikbooking');
3718 break;
3719 case 'VBEMAILCUSTFROMTPL':
3720 $result = __('- Load text from Template -', 'vikbooking');
3721 break;
3722 case 'VBEMAILCUSTFROMTPLUSE':
3723 $result = __('Use Template', 'vikbooking');
3724 break;
3725 case 'VBEMAILCUSTFROMTPLRM':
3726 $result = __('Remove Template', 'vikbooking');
3727 break;
3728 case 'VBOCPARAMBOOKTAGS':
3729 $result = __('Bookings Color-Tags', 'vikbooking');
3730 break;
3731 case 'VBOCOLORTAGADD':
3732 $result = __('Add Color Tag', 'vikbooking');
3733 break;
3734 case 'VBOCOLORTAGRMALL':
3735 $result = __('Reset Color Tags', 'vikbooking');
3736 break;
3737 case 'VBOCOLORTAGADDPLCHLD':
3738 $result = __('Color Tag Name', 'vikbooking');
3739 break;
3740 case 'VBOCOLORTAGRULECUSTOMCOLOR':
3741 $result = __('Custom Color Rule', 'vikbooking');
3742 break;
3743 case 'VBOCOLORTAGRULECONFTWO':
3744 $result = __('Confirmed (No Rates)', 'vikbooking');
3745 break;
3746 case 'VBOCOLORTAGRULECONFTHREE':
3747 $result = __('To be Paid', 'vikbooking');
3748 break;
3749 case 'VBOCOLORTAGRULECONFFOUR':
3750 $result = __('Partially Paid', 'vikbooking');
3751 break;
3752 case 'VBOCOLORTAGRULECONFFIVE':
3753 $result = __('Fully Paid', 'vikbooking');
3754 break;
3755 case 'VBOCOLORTAGRULEINVONE':
3756 $result = __('Invoiced', 'vikbooking');
3757 break;
3758 case 'VBOCOLORTAGRULEINVTWO':
3759 $result = __('Invoice Paid', 'vikbooking');
3760 break;
3761 case 'VBOAVOVWBMODECLASSIC':
3762 $result = __('Classic View', 'vikbooking');
3763 break;
3764 case 'VBOAVOVWBMODETAGS':
3765 $result = __('Tags View', 'vikbooking');
3766 break;
3767 case 'VBOAVOVWBMODETAGSLBL':
3768 $result = __('Tags:', 'vikbooking');
3769 break;
3770 case 'VBOVERVIEWSTICKYTHEADON':
3771 $result = __('Sticky Date Headers ON', 'vikbooking');
3772 break;
3773 case 'VBOVERVIEWSTICKYTHEADOFF':
3774 $result = __('Sticky Date Headers OFF', 'vikbooking');
3775 break;
3776 case 'VBOVERVIEWTOGGLESUBROOM':
3777 $result = __('Toggle Availability by Units', 'vikbooking');
3778 break;
3779 case 'VBOFILTERBYPAYMENT':
3780 $result = __('Filter by Payment', 'vikbooking');
3781 break;
3782 case 'VBOFILTCONFNUMCUST':
3783 $result = __('Booking ID/Confirmation Number', 'vikbooking');
3784 break;
3785 case 'VBCONFIGLOGOBACKEND':
3786 $result = __('Back-end Logo (180px)', 'vikbooking');
3787 break;
3788 case 'VBOCONFIGCUSTBACKCSSTPL':
3789 $result = __('Back-end Custom CSS', 'vikbooking');
3790 break;
3791 case 'VBCONFIGSENDEMAILWHEN':
3792 $result = __('Send Emails When', 'vikbooking');
3793 break;
3794 case 'VBOCUSTOMERDETAILS':
3795 $result = __('Customer Details', 'vikbooking');
3796 break;
3797 case 'VBOCUSTOMERSALESCHANNEL':
3798 $result = __('Sales Channel', 'vikbooking');
3799 break;
3800 case 'VBOCUSTOMERISCHANNEL':
3801 $result = __('Is a Sales Channel', 'vikbooking');
3802 break;
3803 case 'VBOCUSTOMERCOMMISSION':
3804 $result = __('Commissions per booking', 'vikbooking');
3805 break;
3806 case 'VBOCUSTOMERCMMSON':
3807 $result = __('Calculate Commissions on', 'vikbooking');
3808 break;
3809 case 'VBOCUSTOMERCMMSONTOTAL':
3810 $result = __('Booking Total Amount', 'vikbooking');
3811 break;
3812 case 'VBOCUSTOMERCMMSONRRATES':
3813 $result = __('Rooms Rates only', 'vikbooking');
3814 break;
3815 case 'VBOCUSTOMERCMMSONTAX':
3816 $result = __('Apply Commissions on', 'vikbooking');
3817 break;
3818 case 'VBOCUSTOMERCMMSONTAXINCL':
3819 $result = __('Amount Tax Included', 'vikbooking');
3820 break;
3821 case 'VBOCUSTOMERCMMSONTAXEXCL':
3822 $result = __('Amount Tax Excluded', 'vikbooking');
3823 break;
3824 case 'VBOCUSTOMERCMMSNAME':
3825 $result = __('Sales Channel Name', 'vikbooking');
3826 break;
3827 case 'VBOCUSTOMERCMMSCOLOR':
3828 $result = __('Sales Channel Color', 'vikbooking');
3829 break;
3830 case 'VBOSTATSMODETS':
3831 $result = __('Data based on bookings creation date', 'vikbooking');
3832 break;
3833 case 'VBOSTATSMODENIGHTS':
3834 $result = __('Data based on booked dates', 'vikbooking');
3835 break;
3836 case 'VBOGRAPHTOTSALES':
3837 $result = __('Total Sales', 'vikbooking');
3838 break;
3839 case 'VBOGRAPHTOTNIGHTS':
3840 $result = __('Total nights booked: %d', 'vikbooking');
3841 break;
3842 case 'VBOGRAPHAVGVALUES':
3843 $result = __('Average Values may be applied when the booked dates are not included in the dates filter', 'vikbooking');
3844 break;
3845 case 'VBOGRAPHTOTNIGHTSLBL':
3846 $result = __('Nights Booked', 'vikbooking');
3847 break;
3848 case 'VBOGRAPHTOTOCCUPANCY':
3849 $result = __('Total Occupancy: %s%%', 'vikbooking');
3850 break;
3851 case 'VBOGRAPHTOTOCCUPANCYLBL':
3852 $result = __('Total Occupancy', 'vikbooking');
3853 break;
3854 case 'VBOGRAPHTOTUNITSLBL':
3855 $result = __('Total Units', 'vikbooking');
3856 break;
3857 case 'VBCUSTOMERCOMPANY':
3858 $result = __('Company Name', 'vikbooking');
3859 break;
3860 case 'VBCUSTOMERCOMPANYVAT':
3861 $result = __('VAT ID', 'vikbooking');
3862 break;
3863 case 'VBISCOMPANY':
3864 $result = __('Company Name', 'vikbooking');
3865 break;
3866 case 'VBISVAT':
3867 $result = __('VAT ID', 'vikbooking');
3868 break;
3869 case 'VBCSVEXPDATESRANGE':
3870 $result = __('Date Range', 'vikbooking');
3871 break;
3872 case 'VBOPREVROOMMOVED':
3873 $result = __('Previous room %s was switched on %s', 'vikbooking');
3874 break;
3875 case 'VBOBOOKINGCREATEDBY':
3876 $result = __('Booking created by User ID %s', 'vikbooking');
3877 break;
3878 case 'VBOFILTERBYSTATUS':
3879 $result = __('Filter by Status', 'vikbooking');
3880 break;
3881 case 'VBCSVCREATEDBY':
3882 $result = __('Created by', 'vikbooking');
3883 break;
3884 case 'VBMAINTITLEUPDATEPROGRAM':
3885 $result = __('Vik Booking - Software Update', 'vikbooking');
3886 break;
3887 case 'VBCHECKINGVERSION':
3888 $result = __('Checking Version...', 'vikbooking');
3889 break;
3890 case 'VBDOWNLOADUPDATEBTN1':
3891 $result = __('Download Update & Install', 'vikbooking');
3892 break;
3893 case 'VBDOWNLOADUPDATEBTN0':
3894 $result = __('Download & Re-Install', 'vikbooking');
3895 break;
3896 case 'VBCONFIGMINAUTOREMOVE':
3897 $result = __('Minutes of Waiting for Auto Removing Unpaid Reservations', 'vikbooking');
3898 break;
3899 case 'VBOMANAGECHECKSINOUT':
3900 $result = __('Customer Check-in/Check-Out Management', 'vikbooking');
3901 break;
3902 case 'VBOMANAGECHECKIN':
3903 $result = __('Registration', 'vikbooking');
3904 break;
3905 case 'VBOMANAGECHECKOUT':
3906 $result = __('Check-out', 'vikbooking');
3907 break;
3908 case 'VBOGUESTSDETAILS':
3909 $result = __('Guest Details', 'vikbooking');
3910 break;
3911 case 'VBOGUESTNUM':
3912 $result = __('Guest #%d', 'vikbooking');
3913 break;
3914 case 'VBOGUESTEXTRANOTES':
3915 $result = __('Extra notes', 'vikbooking');
3916 break;
3917 case 'VBOCHECKEDSTATUS':
3918 $result = __('Registration', 'vikbooking');
3919 break;
3920 case 'VBOCHECKEDSTATUSIN':
3921 $result = __('Checked-in', 'vikbooking');
3922 break;
3923 case 'VBOCHECKEDSTATUSOUT':
3924 $result = __('Checked-out', 'vikbooking');
3925 break;
3926 case 'VBOCHECKEDSTATUSNOS':
3927 $result = __('No Show', 'vikbooking');
3928 break;
3929 case 'VBOCHECKEDSTATUSZERO':
3930 $result = __('none', 'vikbooking');
3931 break;
3932 case 'VBOSETCHECKEDSTATUSIN':
3933 $result = __('Check-in', 'vikbooking');
3934 break;
3935 case 'VBOSETCHECKEDSTATUSOUT':
3936 $result = __('Check-out', 'vikbooking');
3937 break;
3938 case 'VBOSETCHECKEDSTATUSNOS':
3939 $result = __('No Show', 'vikbooking');
3940 break;
3941 case 'VBOSETCHECKEDSTATUSZERO':
3942 $result = __('Cancel Registration', 'vikbooking');
3943 break;
3944 case 'VBONEWAMOUNTPAID':
3945 $result = __('New Amount Paid', 'vikbooking');
3946 break;
3947 case 'VBOTOGGLECHECKINNOTES':
3948 $result = __('Check-in Notes (internal only)', 'vikbooking');
3949 break;
3950 case 'VBOCHECKINTIMEOVER':
3951 $result = __('The check-out date is in the past.', 'vikbooking');
3952 break;
3953 case 'VBOCHECKINACTCONFGUESTS':
3954 $result = __('Some guest details are missing. Proceed?', 'vikbooking');
3955 break;
3956 case 'VBOCHECKINERRNOCUSTOMER':
3957 $result = __('No customer assigned to this booking yet. Please create a new customer.', 'vikbooking');
3958 break;
3959 case 'VBOCHECKINSTATUSUPDATED':
3960 $result = __('Information saved successfully', 'vikbooking');
3961 break;
3962 case 'VBOCHECKINUPDATEBTN':
3963 $result = __('Update Information', 'vikbooking');
3964 break;
3965 case 'VBONORESULTS':
3966 $result = __('No results', 'vikbooking');
3967 break;
3968 case 'VBONOCHECKINSTODAY':
3969 $result = __('No arrivals for today.', 'vikbooking');
3970 break;
3971 case 'VBONOCHECKOUTSTODAY':
3972 $result = __('No departures for today.', 'vikbooking');
3973 break;
3974 case 'VBODASHSEARCHKEYS':
3975 $result = __('Search', 'vikbooking');
3976 break;
3977 case 'VBOGENCHECKINDOC':
3978 $result = __('Generate Check-in Document', 'vikbooking');
3979 break;
3980 case 'VBODWNLCHECKINDOC':
3981 $result = __('Download Check-in Document', 'vikbooking');
3982 break;
3983 case 'VBOSIGNATURESHARE':
3984 $result = __('Share Link', 'vikbooking');
3985 break;
3986 case 'VBOSIGNATURESKIP':
3987 $result = __('Skip Signature', 'vikbooking');
3988 break;
3989 case 'VBOSIGNATURESIGNABOVE':
3990 $result = __('Sign above', 'vikbooking');
3991 break;
3992 case 'VBOSIGNATURESAVE':
3993 $result = __('Save', 'vikbooking');
3994 break;
3995 case 'VBOSIGNATURECLEAR':
3996 $result = __('Clear', 'vikbooking');
3997 break;
3998 case 'VBOSIGNATUREISEMPTY':
3999 $result = __('No Signature Provided!', 'vikbooking');
4000 break;
4001 case 'VBONOSIGNATURECONF':
4002 $result = __('Proceed without the signature?', 'vikbooking');
4003 break;
4004 case 'VBOSIGNSHAREEMAIL':
4005 $result = __('Send Signature Link via eMail', 'vikbooking');
4006 break;
4007 case 'VBOSIGNSHARESMS':
4008 $result = __('Send Signature Link via SMS', 'vikbooking');
4009 break;
4010 case 'VBOSIGNSENDLINK':
4011 $result = __('Send Link', 'vikbooking');
4012 break;
4013 case 'VBOSIGNSHAREEMPTY':
4014 $result = __('Please enter a value', 'vikbooking');
4015 break;
4016 case 'VBOSIGNSHARESUBJECT':
4017 $result = __('Check-in Signature', 'vikbooking');
4018 break;
4019 case 'VBOSIGNSHAREMESSAGE':
4020 $result = __("Dear %s,\n\nHere is the link to sign the Check-in Document for your stay:\n%s\n\nKind Regards,\n%s", 'vikbooking');
4021 break;
4022 case 'VBOSIGNSHAREMESSAGESMS':
4023 $result = __("Dear %s,\n\nLink for Signature:\n%s", 'vikbooking');
4024 break;
4025 case 'VBORELOADING':
4026 $result = __('Reloading', 'vikbooking');
4027 break;
4028 case 'VBOERRSTORESIGNFILE':
4029 $result = __('Error saving the signature', 'vikbooking');
4030 break;
4031 case 'VBOCURRENTSIGNATURE':
4032 $result = __('Customer Signature Available', 'vikbooking');
4033 break;
4034 case 'VBOSIGNATUREAGAIN':
4035 $result = __('New Signature', 'vikbooking');
4036 break;
4037 case 'VBOTERMSCONDS':
4038 $result = __('Terms and Conditions', 'vikbooking');
4039 break;
4040 case 'VBOTERMSCONDSIACCEPT':
4041 $result = __('I accept the Terms and Conditions', 'vikbooking');
4042 break;
4043 case 'VBOTERMSCONDSACCCLOSE':
4044 $result = __('I have read and agree to the terms and conditions', 'vikbooking');
4045 break;
4046 case 'VBOSIGNMUSTACCEPT':
4047 $result = __('You must accept the Terms and Conditions.', 'vikbooking');
4048 break;
4049 case 'VBOTERMSCONDSDEFTEXT':
4050 $result = __("1. Check-in time is from %s and check-out time is until %s.\n2. The guest acknowledge joint and several liability for all services rendered until full settlement of bills.\n3. Guests will be held responsible for any loss or damage to the rooms caused by themselves, their friends or any person for whom they are responsible.\n4. Hotel Management is not responsible for your personal belongings and valuables like money, jewellery or any other valuables left by guests in the rooms.\n5. Complimentary safe deposit boxes, subject to the terms and conditions for use are available in rooms.\n6. Regardless of charge instructions, I acknowledge that I am personally liable for the payment of all charges incurred by me during my stay.", 'vikbooking');
4051 break;
4052 case 'VBOCHECKINDOCTITLE':
4053 $result = __('Check-in Document', 'vikbooking');
4054 break;
4055 case 'VBOCHECKINDOCARRVDT':
4056 $result = __('Arrival Date', 'vikbooking');
4057 break;
4058 case 'VBOCHECKINDOCDEPADT':
4059 $result = __('Departure Date', 'vikbooking');
4060 break;
4061 case 'VBOCHECKINDOCTODAYDT':
4062 $result = __('Date', 'vikbooking');
4063 break;
4064 case 'VBOCHECKINDOCGUESTSIGN':
4065 $result = __('Guest Signature', 'vikbooking');
4066 break;
4067 case 'VBOERRGENCHECKINDOC':
4068 $result = __('Could not generate the PDF file', 'vikbooking');
4069 break;
4070 case 'VBOGENCHECKINDOCSUCCESS':
4071 $result = __('Check-in Document generated successfully', 'vikbooking');
4072 break;
4073 case 'VBOCONFIGCHECKINTEMPLATE':
4074 $result = __('Check-in Document', 'vikbooking');
4075 break;
4076 case 'VBOCONFDEPOSITOVRDS':
4077 $result = __('Deposit Amount Overrides', 'vikbooking');
4078 break;
4079 case 'VBOCONFDEPOSITOVRDSMORE':
4080 $result = __('(and more)', 'vikbooking');
4081 break;
4082 case 'VBOSHOWQUICKRES':
4083 $result = __('New Reservation', 'vikbooking');
4084 break;
4085 case 'VBOBOOKINGLANG':
4086 $result = __('Language', 'vikbooking');
4087 break;
4088 case 'VBOBOOKADDROOM':
4089 $result = __('Add Room', 'vikbooking');
4090 break;
4091 case 'VBOBOOKCANTADDROOM':
4092 $result = __('The room cannot be added to the booking', 'vikbooking');
4093 break;
4094 case 'VBOBOOKADDROOMERR':
4095 $result = __('%s is not available from %s to %s', 'vikbooking');
4096 break;
4097 case 'VBOBOOKRMROOMCONFIRM':
4098 $result = __('Do you want to remove this room from the reservation?', 'vikbooking');
4099 break;
4100 case 'VBOCONFIGSHOWSEARCHSUGG':
4101 $result = __('Suggest solutions when no availability', 'vikbooking');
4102 break;
4103 case 'VBOYESWITHAVAILABILITY':
4104 $result = __('Yes, with units available', 'vikbooking');
4105 break;
4106 case 'VBOYESNOAVAILABILITY':
4107 $result = __('Yes, without units available', 'vikbooking');
4108 break;
4109 case 'VBOLOADFA':
4110 $result = __('Load Font Awesome', 'vikbooking');
4111 break;
4112 case 'VBOCONFNODEPNONREFUND':
4113 $result = __('Pay Entire Amount if Non-Refundable Rates', 'vikbooking');
4114 break;
4115 case 'VBOCONFNODEPNONREFUNDHELP':
4116 $result = __('If enabled, and at least one non-refundable rate plan is selected for the rooms reservation, then no deposit will be available. Customers will be asked to pay the 100% of the reservation. This parameter, if the criteria is met, has higher priority than any other.', 'vikbooking');
4117 break;
4118 case 'VBOPAYMENTHIDENONREF':
4119 $result = __('Hide for Non-Refundable Rates', 'vikbooking');
4120 break;
4121 case 'VBOPAYMENTHIDENONREFHELP':
4122 $result = __('If enabled, and at least one non-refundable rate plan is selected for the rooms reservation, then this payment method will not be available to complete the booking.', 'vikbooking');
4123 break;
4124 case 'VBOBOOKDETTABDETAILS':
4125 $result = __('Booking Details', 'vikbooking');
4126 break;
4127 case 'VBOBOOKDETTABADMIN':
4128 $result = __('Administration', 'vikbooking');
4129 break;
4130 case 'VBOMISSPRTYPEROOMH':
4131 $result = __('The rooms of this reservation have no rates defined. Make sure to set a rate for each room booked, or the reservation will be incomplete.', 'vikbooking');
4132 break;
4133 case 'VBOREMOVEROOM':
4134 $result = __('Remove Room', 'vikbooking');
4135 break;
4136 case 'VBCONFIGCLOSINGDATESHELP':
4137 $result = __('The property closing dates are settings defined at account-level for the booking engine of the website. The closed dates will not be selectable from the calendars in the front-end. However, these settings will NOT apply to the channels connected through the Channel Manager (unless you submit the Bulk Action). You should rather close the rooms from the page Calendar if you wanted the Channel Manager to immediately close the availability on the OTAs as well.', 'vikbooking');
4138 break;
4139 case 'VBOROOMNORATE':
4140 $result = __('- no rate plan assigned', 'vikbooking');
4141 break;
4142 case 'VBOCUSTOMER':
4143 $result = __('Customer', 'vikbooking');
4144 break;
4145 case 'VBOUPDRATESONCHANNELS':
4146 $result = __('Update Rates on Channels', 'vikbooking');
4147 break;
4148 case 'VBOUPDRATESONCHANNELSHELP':
4149 $result = __('If enabled, the new rate you are setting will be transmitted automatically to all channels connected. The Channel Manager will transmit the rates to the channels by following the rules already configured in the system. Rules are taken from the previous execution of the function Bulk Actions - Rates Upload. For example, if you have previously transmitted your rates increased by n% to channels like Booking.com or Expedia, the Channel Manager will transmit these rates by using the same rules you have already used.', 'vikbooking');
4150 break;
4151 case 'VBOVCMRATESRES':
4152 $result = __('Channel Manager Update Response', 'vikbooking');
4153 break;
4154 case 'VBOROVWSELPERIOD':
4155 $result = __('Select Period', 'vikbooking');
4156 break;
4157 case 'VBOROVWSELPERIODFROM':
4158 $result = __('From', 'vikbooking');
4159 break;
4160 case 'VBOROVWSELPERIODTO':
4161 $result = __('To', 'vikbooking');
4162 break;
4163 case 'VBOBCOMREPORTNOSHOW':
4164 $result = __('Report to Booking.com as No-Show', 'vikbooking');
4165 break;
4166 case 'VBOBCOMREPORTNOSHOWCONF':
4167 $result = __('Do you really want to report the reservation to Booking.com as No-Show?', 'vikbooking');
4168 break;
4169 case 'VBOPRINTRECEIPT':
4170 $result = __('Print Receipt', 'vikbooking');
4171 break;
4172 case 'VBOCONFIGALLOWMODCANC':
4173 $result = __('Bookings Modification/Cancellation', 'vikbooking');
4174 break;
4175 case 'VBOCONFIGMODCANC0':
4176 $result = __('Disabled', 'vikbooking');
4177 break;
4178 case 'VBOCONFIGMODCANC1':
4179 $result = __('Disabled, with Request', 'vikbooking');
4180 break;
4181 case 'VBOCONFIGMODCANC2':
4182 $result = __('Modification Enabled, Cancellation Disabled', 'vikbooking');
4183 break;
4184 case 'VBOCONFIGMODCANC3':
4185 $result = __('Cancellation Enabled, Modification Disabled', 'vikbooking');
4186 break;
4187 case 'VBOCONFIGMODCANC4':
4188 $result = __('Enabled', 'vikbooking');
4189 break;
4190 case 'VBOCONFIGMODCANCMINDAYS':
4191 $result = __('Min. Days in Advance', 'vikbooking');
4192 break;
4193 case 'VBOCONFIGALLOWMODCANCHELP':
4194 $result = __('Choose whether the customers should be allowed to modify or cancel their reservations via front-end. If Disabled, with Request, customers will only be able to contact the property by sending a message. It is also possible to define a minimum number of days in advance to make a modification or a cancellation. The refundable settings of the selected Types of Price will be always applied, regardless of this limit.', 'vikbooking');
4195 break;
4196 case 'VBOPRICEATTRHELP':
4197 $result = __('The attribute is an additional information you can pass to the Type of Price for any number of nights of stay. It is NOT a mandatory field and it can be left empty. An example of attribute could be &quot;Cancellation Fees&quot;. From the page Rates Table, you will be able to specify the value for the attribute for any number of nights of stay. For example, from 1 to 7 nights: &quot;deposit non refundable&quot;. From 8 to 14 nights: &quot;50% deposit refund&quot;. The attribute will be visible to the customer during the reservation process.', 'vikbooking');
4198 break;
4199 case 'VBNEWPRICECANCPOLICY':
4200 $result = __('Cancellation Policy', 'vikbooking');
4201 break;
4202 case 'VBNEWPRICECANCPOLICYHELP':
4203 $result = __('The cancellation policy text will be displayed to the customers that would like to cancel their refundable reservation. With this text you can give extra details about what will be refunded, how and when. This text should NOT replace or define your general Terms and Conditions.', 'vikbooking');
4204 break;
4205 case 'VBOROVWSELRPLAN':
4206 $result = __('Rate Plan', 'vikbooking');
4207 break;
4208 case 'VBOBOOKMODLOGSTR':
4209 $result = __("Booking modified on %s.\nPrevious dates booked: %s.\nPrevious rooms booked: %s.\nPrevious Total: %s.", 'vikbooking');
4210 break;
4211 case 'VBOPRICETYPEMINLOS':
4212 $result = __('Minimum Nights of Stay', 'vikbooking');
4213 break;
4214 case 'VBOPRICETYPEMINLOSHELP':
4215 $result = __('The minimum number of nights of stay required for this type of price to be available for selection. This setting defines a restriction at rate plan level. In order to apply restrictions at room level, use the apposite function &quot;Restrictions&quot;.', 'vikbooking');
4216 break;
4217 case 'VBOSEARCHEXISTCUST':
4218 $result = __('Existing Customer', 'vikbooking');
4219 break;
4220 case 'VBOCONFIGTHUMBSIZE':
4221 $result = __('Thumbnails Size px', 'vikbooking');
4222 break;
4223 case 'VBOPRICETYPEMINHADV':
4224 $result = __('Minimum Hours in Advance', 'vikbooking');
4225 break;
4226 case 'VBOPRICETYPEMINHADVHELP':
4227 $result = __('Define the minimum number of hours in advance from the booking date and the check-in date for this Rate Plan to be available. For example, if you don\'t want to display this Rate Plan if there are less than 48 hours to the arrival date and time, set it to 48. Leave it empty (to 0 hours) if you always want to display this Type of Price.', 'vikbooking');
4228 break;
4229 case 'VBOPRICETYPESRESTR':
4230 $result = __('Restrictions', 'vikbooking');
4231 break;
4232 case 'VBOAGEINTVALBCOSTPCENT':
4233 $result = __('% (Room Rate)', 'vikbooking');
4234 break;
4235 case 'VBOSUCCUPDOPTION':
4236 $result = __('Room Option updated successfully', 'vikbooking');
4237 break;
4238 case 'VBOFISCRECEIPT':
4239 $result = __('Receipt', 'vikbooking');
4240 break;
4241 case 'VBOFISCRECEIPTNUM':
4242 $result = __('Number', 'vikbooking');
4243 break;
4244 case 'VBOFISCRECEIPTDATE':
4245 $result = __('Date', 'vikbooking');
4246 break;
4247 case 'VBORECEIPTNOTESDEF':
4248 $result = __('Additional Notes for the Receipt...', 'vikbooking');
4249 break;
4250 case 'VBOCOLORTAGRULERCPONE':
4251 $result = __('Receipt Issued', 'vikbooking');
4252 break;
4253 case 'VBCUSTOMERGENDER':
4254 $result = __('Gender', 'vikbooking');
4255 break;
4256 case 'VBCUSTOMERGENDERM':
4257 $result = __('Male', 'vikbooking');
4258 break;
4259 case 'VBCUSTOMERGENDERF':
4260 $result = __('Female', 'vikbooking');
4261 break;
4262 case 'VBCUSTOMERBDATE':
4263 $result = __('Date of Birth', 'vikbooking');
4264 break;
4265 case 'VBCUSTOMERPBIRTH':
4266 $result = __('Place of Birth', 'vikbooking');
4267 break;
4268 case 'VBCUSTOMERMISSIMPDET':
4269 $result = __('Important Details Missing', 'vikbooking');
4270 break;
4271 case 'VBCUSTOMERMISSIMPDETHELP':
4272 $result = __('Some important details are missing for this customer. Other functions may require this information, so make sure to complete the customer profile.', 'vikbooking');
4273 break;
4274 case 'VBOBOOKHISTORYTAB':
4275 $result = __('Booking History', 'vikbooking');
4276 break;
4277 case 'VBOBOOKHISTORYLBLTYPE':
4278 $result = __('Event', 'vikbooking');
4279 break;
4280 case 'VBOBOOKHISTORYLBLDATE':
4281 $result = __('Date', 'vikbooking');
4282 break;
4283 case 'VBOBOOKHISTORYLBLDESC':
4284 $result = __('Description', 'vikbooking');
4285 break;
4286 case 'VBOBOOKHISTORYLBLTPAID':
4287 $result = __('Total Paid', 'vikbooking');
4288 break;
4289 case 'VBOBOOKHISTORYLBLTOT':
4290 $result = __('Booking Total', 'vikbooking');
4291 break;
4292 case 'VBOBOOKHISTORYTNC':
4293 $result = __('New Confirmed Booking', 'vikbooking');
4294 break;
4295 case 'VBOBOOKHISTORYTMW':
4296 $result = __('Booking Modified by Customer', 'vikbooking');
4297 break;
4298 case 'VBOBOOKHISTORYTMB':
4299 $result = __('Administrator Booking Modification', 'vikbooking');
4300 break;
4301 case 'VBOBOOKHISTORYTNP':
4302 $result = __('New Stand-by Booking', 'vikbooking');
4303 break;
4304 case 'VBOBOOKHISTORYTP0':
4305 $result = __('Payment Received', 'vikbooking');
4306 break;
4307 case 'VBOBOOKHISTORYTPN':
4308 $result = __('Other Payment Received', 'vikbooking');
4309 break;
4310 case 'VBOBOOKHISTORYTCR':
4311 $result = __('Customer Request', 'vikbooking');
4312 break;
4313 case 'VBOBOOKHISTORYTCW':
4314 $result = __('Booking Cancelled by Customer', 'vikbooking');
4315 break;
4316 case 'VBOBOOKHISTORYTCA':
4317 $result = __('Booking Auto Cancellation', 'vikbooking');
4318 break;
4319 case 'VBOBOOKHISTORYTCB':
4320 $result = __('Administrator Booking Cancellation', 'vikbooking');
4321 break;
4322 case 'VBOBOOKHISTORYTRA':
4323 $result = __('Cancel Booking Registration', 'vikbooking');
4324 break;
4325 case 'VBOBOOKHISTORYTRB':
4326 $result = __('Check-in', 'vikbooking');
4327 break;
4328 case 'VBOBOOKHISTORYTRC':
4329 $result = __('Check-out', 'vikbooking');
4330 break;
4331 case 'VBOBOOKHISTORYTRZ':
4332 $result = __('No-Show', 'vikbooking');
4333 break;
4334 case 'VBOBOOKHISTORYTTC':
4335 $result = __('Administrator Booking Confirmation', 'vikbooking');
4336 break;
4337 case 'VBOBOOKHISTORYTMC':
4338 $result = __('Booking Modified from Channel', 'vikbooking');
4339 break;
4340 case 'VBOBOOKHISTORYTCC':
4341 $result = __('Booking Cancelled from Channel', 'vikbooking');
4342 break;
4343 case 'VBOBOOKHISTORYTNO':
4344 $result = __('New Booking from Channel', 'vikbooking');
4345 break;
4346 case 'VBOBOOKHISTORYTAC':
4347 $result = __('Booking Confirmed via App', 'vikbooking');
4348 break;
4349 case 'VBOBOOKHISTORYTAR':
4350 $result = __('Booking Cancelled via App', 'vikbooking');
4351 break;
4352 case 'VBOBOOKHISTORYTAM':
4353 $result = __('Booking Modified via App', 'vikbooking');
4354 break;
4355 case 'VBOBOOKHISTORYTAN':
4356 $result = __('Booking Created via App', 'vikbooking');
4357 break;
4358 case 'VBOBOOKHISTORYTNB':
4359 $result = __('Booking Created by Administrator', 'vikbooking');
4360 break;
4361 case 'VBOBOOKHISTORYTBR':
4362 $result = __('Booking Receipt Issued', 'vikbooking');
4363 break;
4364 case 'VBOBOOKHISTORYTBI':
4365 $result = __('Booking Invoice Issued', 'vikbooking');
4366 break;
4367 case 'VBOBOOKHISTORYTRP':
4368 $result = __('Reporting', 'vikbooking');
4369 break;
4370 case 'VBOBOOKHISTORYTCE':
4371 $result = __('Email to Client', 'vikbooking');
4372 break;
4373 case 'VBOBOOKHISTORYTCS':
4374 $result = __('SMS to Client', 'vikbooking');
4375 break;
4376 case 'VBMAINPMSREPORTSTITLE':
4377 $result = __('Vik Booking - PMS Reports', 'vikbooking');
4378 break;
4379 case 'VBMENUPMS':
4380 $result = __('PMS', 'vikbooking');
4381 break;
4382 case 'VBMENUPMSREPORTS':
4383 $result = __('Reports', 'vikbooking');
4384 break;
4385 case 'VBOREPORTSELECT':
4386 $result = __('- Select Report Type -', 'vikbooking');
4387 break;
4388 case 'VBOREPORTLOAD':
4389 $result = __('Load Report Data', 'vikbooking');
4390 break;
4391 case 'VBOREPORTREVENUE':
4392 $result = __('Revenue', 'vikbooking');
4393 break;
4394 case 'VBOREPORTSDATEFROM':
4395 $result = __('Date From', 'vikbooking');
4396 break;
4397 case 'VBOREPORTSDATETO':
4398 $result = __('Date To', 'vikbooking');
4399 break;
4400 case 'VBOREPORTSROOMFILT':
4401 $result = __('Room Filter', 'vikbooking');
4402 break;
4403 case 'VBOREPORTSERRNODATES':
4404 $result = __('Please select the desired dates for the Report.', 'vikbooking');
4405 break;
4406 case 'VBOREPORTSERRNORESERV':
4407 $result = __('No bookings found with the parameters specified.', 'vikbooking');
4408 break;
4409 case 'VBOREPORTCSVEXPORT':
4410 $result = __('Export as CSV', 'vikbooking');
4411 break;
4412 case 'VBOREPORTREVENUEDAY':
4413 $result = __('Date', 'vikbooking');
4414 break;
4415 case 'VBOREPORTREVENUERSOLD':
4416 $result = __('Rooms Sold', 'vikbooking');
4417 break;
4418 case 'VBOREPORTREVENUETOTB':
4419 $result = __('Total Bookings', 'vikbooking');
4420 break;
4421 case 'VBOREPORTREVENUEPOCC':
4422 $result = __('% Occupancy', 'vikbooking');
4423 break;
4424 case 'VBOREPORTREVENUEREVWEB':
4425 $result = __('IBE Revenue', 'vikbooking');
4426 break;
4427 case 'VBOREPORTREVENUEREVOTA':
4428 $result = __('OTA Revenue', 'vikbooking');
4429 break;
4430 case 'VBOREPORTREVENUEADR':
4431 $result = __('ADR', 'vikbooking');
4432 break;
4433 case 'VBOREPORTREVENUEADRHELP':
4434 $result = __('The &quot;Average Daily Rate&quot; is calculated by dividing the Total Revenue by the number of Rooms Sold.', 'vikbooking');
4435 break;
4436 case 'VBOREPORTREVENUEREVPAR':
4437 $result = __('RevPAR', 'vikbooking');
4438 break;
4439 case 'VBOREPORTREVENUEREVPARH':
4440 $result = __('The &quot;Revenue Per Available Room&quot; is calculated by dividing the Total Revenue by the total number of Rooms Available.', 'vikbooking');
4441 break;
4442 case 'VBOREPORTREVENUETAX':
4443 $result = __('Taxes/Fees', 'vikbooking');
4444 break;
4445 case 'VBOREPORTREVENUEREV':
4446 $result = __('Revenue', 'vikbooking');
4447 break;
4448 case 'VBOREPORTSTOTALROW':
4449 $result = __('Total', 'vikbooking');
4450 break;
4451 case 'VBOREPORTTOPCOUNTRIES':
4452 $result = __('Top Countries', 'vikbooking');
4453 break;
4454 case 'VBOREPORTTOPCOUNTRIESC':
4455 $result = __('Country', 'vikbooking');
4456 break;
4457 case 'VBOREPORTTOPCUNKNC':
4458 $result = __('Unknown', 'vikbooking');
4459 break;
4460 case 'VBOREPORTTOURISTTAXES':
4461 $result = __('Tourist Taxes', 'vikbooking');
4462 break;
4463 case 'VBOREPORTOURISTTAXCUSTOMER':
4464 $result = __('Customer Name', 'vikbooking');
4465 break;
4466 case 'VBOREPORTOURISTTAXTOT':
4467 $result = __('Taxes', 'vikbooking');
4468 break;
4469 case 'VBOREPORTOPTIONSEXTRAS':
4470 $result = __('Options/Extras', 'vikbooking');
4471 break;
4472 case 'VBOREPORTOPTIONSEXTRASHELP':
4473 $result = __('The values for the Options/Extras are tax included. The amount is calculated by subtracting the amount of City Taxes and Room Costs from the Booking Total. It\'s the sum of all costs excluding the City Taxes and the costs of the rooms. It may include costs per children based on their age.', 'vikbooking');
4474 break;
4475 case 'VBOREPORTFILTALLOPTS':
4476 $result = __('- All Options', 'vikbooking');
4477 break;
4478 case 'VBOREPORTALLOGGIATIPOLIZIA':
4479 $result = __('Italian Police: Guest Details', 'vikbooking');
4480 break;
4481 case 'JSEARCH_TOOLS':
4482 $result = __('Search Tools', 'vikbooking');
4483 break;
4484 case 'VBCONFIGSMSADMTPLCANC':
4485 $result = __('Admin SMS Template (Cancelled)', 'vikbooking');
4486 break;
4487 case 'VBCONFIGSMSCUSTOTPLCANC':
4488 $result = __('Customer SMS Template (Cancelled)', 'vikbooking');
4489 break;
4490 case 'VBDASHFIRSTSETTITLE':
4491 $result = __('Initial Setup', 'vikbooking');
4492 break;
4493 case 'VBDASHFIRSTSETSUBTITLE':
4494 $result = __('Complete the configuration of the following tasks to get started.', 'vikbooking');
4495 break;
4496 case 'VBCONFIGURETASK':
4497 $result = __('Configure', 'vikbooking');
4498 break;
4499 case 'VBMENUTRACKINGS':
4500 $result = __('Statistics Tracking', 'vikbooking');
4501 break;
4502 case 'VBMAINTRACKINGSTITLE':
4503 $result = __('Vik Booking - Statistics Tracking', 'vikbooking');
4504 break;
4505 case 'VBNOTRACKINGS':
4506 $result = __('No data available.', 'vikbooking');
4507 break;
4508 case 'VBTRKLASTDT':
4509 $result = __('Last Visit', 'vikbooking');
4510 break;
4511 case 'VBTRKFIRSTDT':
4512 $result = __('First Visit', 'vikbooking');
4513 break;
4514 case 'VBTRKPUBLISHED':
4515 $result = __('Tracking Status', 'vikbooking');
4516 break;
4517 case 'VBTRKGEOINFO':
4518 $result = __('Geo Info', 'vikbooking');
4519 break;
4520 case 'VBTRKMAKEAVAIL':
4521 $result = __('Enable tracking for this visitor', 'vikbooking');
4522 break;
4523 case 'VBTRKMAKENOTAVAIL':
4524 $result = __('Disable tracking for this visitor', 'vikbooking');
4525 break;
4526 case 'VBOANONYMOUS':
4527 $result = __('Anonymous', 'vikbooking');
4528 break;
4529 case 'VBTRKDEVICE':
4530 $result = __('Device', 'vikbooking');
4531 break;
4532 case 'VBTRKTRACKTIME':
4533 $result = __('Tracking Time', 'vikbooking');
4534 break;
4535 case 'VBTRKBOOKINGDATES':
4536 $result = __('Booking Dates', 'vikbooking');
4537 break;
4538 case 'VBTRKROOMSRATES':
4539 $result = __('Rooms and Rates', 'vikbooking');
4540 break;
4541 case 'VBTRKTGLPUBLISHED':
4542 $result = __('Invert Tracking Status', 'vikbooking');
4543 break;
4544 case 'VBTRKFILTTRKDATES':
4545 $result = __('Tracking Dates', 'vikbooking');
4546 break;
4547 case 'VBTRKFILTRES':
4548 $result = __('Filter Results', 'vikbooking');
4549 break;
4550 case 'VBCOUNTRYFILTER':
4551 $result = __('Filter by Country', 'vikbooking');
4552 break;
4553 case 'VBTRKDIFFSECS':
4554 $result = __('seconds', 'vikbooking');
4555 break;
4556 case 'VBTRKDIFFMINS':
4557 $result = __('minutes', 'vikbooking');
4558 break;
4559 case 'VBTRKSETTINGS':
4560 $result = __('Tracking Settings', 'vikbooking');
4561 break;
4562 case 'VBTRKENABLED':
4563 $result = __('Tracking Enabled', 'vikbooking');
4564 break;
4565 case 'VBTRKDISABLED':
4566 $result = __('Tracking is disabled', 'vikbooking');
4567 break;
4568 case 'VBMAINTRKSETTSTITLE':
4569 $result = __('Vik Booking - Tracking Settings', 'vikbooking');
4570 break;
4571 case 'VBTRKCOOKIERFRDUR':
4572 $result = __('Referrer Cookie Duration', 'vikbooking');
4573 break;
4574 case 'VBTRKCOOKIERFRDURHELP':
4575 $result = __('The Referrer is the system that redirects/sends the visitor to your website. It could be a search engine, a social network or a marketing campaign. This value is not always available and it may be empty. The duration of the cookie defines for how long the visitor should be assigned to a certain referrer for any eventual conversion made after the first visit. The minimum duration should be greater than zero.', 'vikbooking');
4576 break;
4577 case 'VBTRKCAMPAIGNS':
4578 $result = __('Tracking Campaigns', 'vikbooking');
4579 break;
4580 case 'VBTRKCAMPAIGNSHELP':
4581 $result = __('You can add custom tracking campaigns to obtain a specific referrer for each tracking. This is useful to keep track of the provenience of a specific visitor. For example, if you are sending newsletters or marketing emails to your customers, you can include such instructions in the links and track who clicked on them and then searched for a room. The same function can be used to track other kind of marketing campaigns, such as ones from social networks or analytics techniques used by search engines. To set up a custom campaign rule you need to specify a request key (make sure to not use preserved request keys, numbers are always better), optionally a request value fort the key, and the name of the campaign that will be used as referrer for the trackings.', 'vikbooking');
4582 break;
4583 case 'VBTRKADDCAMPAIGN':
4584 $result = __('Add Campaign', 'vikbooking');
4585 break;
4586 case 'VBTRKCAMPAIGNKEY':
4587 $result = __('Request Key', 'vikbooking');
4588 break;
4589 case 'VBTRKCAMPAIGNVAL':
4590 $result = __('Request Key Value', 'vikbooking');
4591 break;
4592 case 'VBTRKCAMPAIGNNAME':
4593 $result = __('Referrer Name', 'vikbooking');
4594 break;
4595 case 'VBREFERRERFILTER':
4596 $result = __('Filter by Referrer', 'vikbooking');
4597 break;
4598 case 'VBTRKBOOKCONV':
4599 $result = __('Booking Conversion', 'vikbooking');
4600 break;
4601 case 'VBTRKREFERRER':
4602 $result = __('Referrer', 'vikbooking');
4603 break;
4604 case 'VBTRKVISITORS':
4605 $result = __('Visitors', 'vikbooking');
4606 break;
4607 case 'VBTRKCONVRATES':
4608 $result = __('Conversion Rates', 'vikbooking');
4609 break;
4610 case 'VBTRKREQSNUM':
4611 $result = __('Request(s)', 'vikbooking');
4612 break;
4613 case 'VBTRKVISSNUM':
4614 $result = __('Visitor(s)', 'vikbooking');
4615 break;
4616 case 'VBTRKMOSTDEMNIGHTS':
4617 $result = __('Most Demanded Nights', 'vikbooking');
4618 break;
4619 case 'VBTRKAVGVALS':
4620 $result = __('Average Values', 'vikbooking');
4621 break;
4622 case 'VBTRKTOTVISS':
4623 $result = __('Total Visitors', 'vikbooking');
4624 break;
4625 case 'VBTRKAVGCONVRATE':
4626 $result = __('Average Conversion Rate', 'vikbooking');
4627 break;
4628 case 'VBTRKAVGCONVRATEHELP':
4629 $result = __('This percentage value is calculated proportionally by taking into account the total number of visitors and the total numbers of bookings. It shows how many visitors completed the reservation process by generating a booking.', 'vikbooking');
4630 break;
4631 case 'VBTRKAVGLOS':
4632 $result = __('Average Nights of Stay', 'vikbooking');
4633 break;
4634 case 'VBTRKBESTREFERRERS':
4635 $result = __('Best Referrers', 'vikbooking');
4636 break;
4637 case 'VBTRKCOOKIEEXPL':
4638 $result = __('The Statistics Tracking functions use cookies to store information about the visitor\'s fingerprint and referrer. These cookies are sent to the visitors with the sole purpose of knowing the dates/rooms/rate plans they search on this website. The cookies do not contain any personal information. By default, such cookies are not shared with any third party system. It may be necessary to inform your visitors of the usage you make of these internal tracking cookies.', 'vikbooking');
4639 break;
4640 case 'VBOMINIMUMSTAY':
4641 $result = __('Minimum Stay', 'vikbooking');
4642 break;
4643 case 'VBOMINIMUMSTAYSET':
4644 $result = __('Set Minimum Stay', 'vikbooking');
4645 break;
4646 case 'VBORPHANSFOUND':
4647 $result = __('Orphan dates found', 'vikbooking');
4648 break;
4649 case 'VBORPHANSFOUNDSHELP':
4650 $result = __('The orphan dates are nights that cannot be booked by any customer due to some booking restrictions. If you are willing to sell those nights, then you should adjust the minimum number of nights of stay to allow bookings.', 'vikbooking');
4651 break;
4652 case 'VBOBTNKEEPREMIND':
4653 $result = __('Okay, keep reminding.', 'vikbooking');
4654 break;
4655 case 'VBOBTNDONTREMIND':
4656 $result = __('Okay, do not remind again.', 'vikbooking');
4657 break;
4658 case 'VBORPHANSCHECKBTN':
4659 $result = __('Check Orphans', 'vikbooking');
4660 break;
4661 case 'VBMENUTABLEAUX':
4662 $result = __('Tableaux', 'vikbooking');
4663 break;
4664 case 'VBMAINTABLEAUXTITLE':
4665 $result = __('Vik Booking - Tableaux', 'vikbooking');
4666 break;
4667 case 'VBMENUOPERATORS':
4668 $result = __('Operators', 'vikbooking');
4669 break;
4670 case 'VBMENUOPERATORSTITLE':
4671 $result = __('Vik Booking - Operators', 'vikbooking');
4672 break;
4673 case 'VBNOOPERATORS':
4674 $result = __('No Operators found', 'vikbooking');
4675 break;
4676 case 'VBOCODEOPERATOR':
4677 $result = __('Authentication Code', 'vikbooking');
4678 break;
4679 case 'VBOCODEOPERATORSHELP':
4680 $result = __('Operators can log in through their authentication code or through their website account if you select a user. You can combine the login methods or you can set just one.', 'vikbooking');
4681 break;
4682 case 'VBMAINMANAGEOPERATORTITLE':
4683 $result = __('Vik Booking - Operator Details', 'vikbooking');
4684 break;
4685 case 'VBOOPERATORDETS':
4686 $result = __('Operator Details', 'vikbooking');
4687 break;
4688 case 'VBOCODEOPERATORGEN':
4689 $result = __('Generate Code', 'vikbooking');
4690 break;
4691 case 'VBOOPERATORPERMS':
4692 $result = __('Permissions', 'vikbooking');
4693 break;
4694 case 'VBOOPERPERMTABLEAUX':
4695 $result = __('Tableaux', 'vikbooking');
4696 break;
4697 case 'VBERROPERATOREXISTS':
4698 $result = __('Operator with the same details already exists', 'vikbooking');
4699 break;
4700 case 'VBOPERATORSAVED':
4701 $result = __('Operator Saved', 'vikbooking');
4702 break;
4703 case 'VBERROPERATORDATA':
4704 $result = __('Name, eMail and Authentication Code or Website User are mandatory fields', 'vikbooking');
4705 break;
4706 case 'VBOPERMSOPERATORS':
4707 $result = __('Operators Permissions', 'vikbooking');
4708 break;
4709 case 'VBOPERMSOPERATORSSHELP':
4710 $result = __('This window lets you manage the permissions of the various operators for accessing the Tableaux via front-end.', 'vikbooking');
4711 break;
4712 case 'VBOOPERATOR':
4713 $result = __('Operator', 'vikbooking');
4714 break;
4715 case 'VBOPERMTBLXDAYS':
4716 $result = __('Visible Days', 'vikbooking');
4717 break;
4718 case 'VBOPERMTBLXROOMS':
4719 $result = __('Visible Rooms', 'vikbooking');
4720 break;
4721 case 'VBOADDOPERATORPERM':
4722 $result = __('Add operator permission', 'vikbooking');
4723 break;
4724 case 'VBOPERMSUPDOPEROK':
4725 $result = __('Permissions Updated', 'vikbooking');
4726 break;
4727 case 'VBMENUEINVOICING':
4728 $result = __('e-Invoicing', 'vikbooking');
4729 break;
4730 case 'VBMAINEINVOICINGTITLE':
4731 $result = __('Vik Booking - e-Invoicing', 'vikbooking');
4732 break;
4733 case 'VBODRIVERLOAD':
4734 $result = __('Load Data', 'vikbooking');
4735 break;
4736 case 'VBODRIVERSELECT':
4737 $result = __('- Select e-Invoicing Driver -', 'vikbooking');
4738 break;
4739 case 'VBODRIVERSETTINGS':
4740 $result = __('Driver Settings', 'vikbooking');
4741 break;
4742 case 'VBCUSTOMERFISCCODE':
4743 $result = __('Personal Number', 'vikbooking');
4744 break;
4745 case 'VBCUSTOMERFISCCODEHELP':
4746 $result = __('Depending on the country of residence of the customer, this can be their Personal Identification Number, the Fiscal Code, the Social Secutiry Number or the National Insurance Number. This code may be required for issuing invoices or electronic invoices.', 'vikbooking');
4747 break;
4748 case 'VBCUSTOMERPEC':
4749 $result = __('Certified eMail Address', 'vikbooking');
4750 break;
4751 case 'VBCUSTOMERPECHELP':
4752 $result = __('The Certified eMail Address may be required for issuing electronic invoices depending on your country.', 'vikbooking');
4753 break;
4754 case 'VBCUSTOMERRECIPCODE':
4755 $result = __('Company Identification Code', 'vikbooking');
4756 break;
4757 case 'VBCUSTOMERRECIPCODEHELP':
4758 $result = __('The Company Identification Code may be required for issuing electronic invoices depending on your country. It is different than the Company VAT ID, and can be left empty if not needed.', 'vikbooking');
4759 break;
4760 case 'VBNEWCUSTOMFFLAG':
4761 $result = __('Type Flag', 'vikbooking');
4762 break;
4763 case 'VBNEWCUSTOMFFLAGHELP':
4764 $result = __('There are several sub-types of fields that tell the system what kind of information was collected from the customer. Choose the appropriate type and remember to only create one field of type eMail that will be used for the notifications.', 'vikbooking');
4765 break;
4766 case 'VBODRIVERGENERATEINVS':
4767 $result = __('Generate e-Invoices', 'vikbooking');
4768 break;
4769 case 'VBODRIVERSETTSUPD':
4770 $result = __('Settings saved!', 'vikbooking');
4771 break;
4772 case 'VBNEWOPTALWAYSAV':
4773 $result = __('Always available', 'vikbooking');
4774 break;
4775 case 'VBOPROMOVALIDITYHELP':
4776 $result = __('If this value is set to a number greater than zero, this promotion will be valid only for early bookings. If you need to apply the promotion only to those who book N days in advance, then you should set the number of days in advance from the apposite input field. Otherwise, you should keep this setting to 0. This setting is not for Last Minute promotions, but rather for Early Bird promotions.', 'vikbooking');
4777 break;
4778 case 'VBOPROMOLASTMINUTE':
4779 $result = __('Last Minute validity', 'vikbooking');
4780 break;
4781 case 'VBOPROMOLASTMINUTEHELP':
4782 $result = __('If you are willing to apply discounts only to last minute bookings, then you should provide a number of days and/or hours for the validity of the promotion. If the time remaining to the arrival from the booking date is less than the limit you defined, the promotion will be applied.', 'vikbooking');
4783 break;
4784 case 'VBOPTPCENTROOMFEE':
4785 $result = __('% room total fee', 'vikbooking');
4786 break;
4787 case 'VBOPTPCENTROOMFEEHELP':
4788 $result = __('The price of this service can be an absolute value in your currency, or a percentage value of the room final price comprehensive of any modifications for the occupancy. The percentage costs are usually needed in some countries to calculate special tourist tax or tourism levy.', 'vikbooking');
4789 break;
4790 case 'VBOCALCLOSEOTHERROOMS':
4791 $result = __('Close other rooms', 'vikbooking');
4792 break;
4793 case 'VBOCALCLOSEALLROOMSDT':
4794 $result = __('Close all other rooms', 'vikbooking');
4795 break;
4796 case 'VBOASSIGNNEWCUST':
4797 $result = __('Assign new customer', 'vikbooking');
4798 break;
4799 case 'VBOCREATENEWCUST':
4800 $result = __('Create new customer', 'vikbooking');
4801 break;
4802 case 'VBOASSIGNNEWCUSTCONF':
4803 $result = __('Do you want to assign this new customer to the booking?', 'vikbooking');
4804 break;
4805 case 'VBMAINMANAGEMANINVTITLE':
4806 $result = __('Vik Booking - Custom Invoice', 'vikbooking');
4807 break;
4808 case 'VBOMANUALINVOICE':
4809 $result = __('Custom invoice', 'vikbooking');
4810 break;
4811 case 'VBOMANINVDETAILS':
4812 $result = __('Invoice Details', 'vikbooking');
4813 break;
4814 case 'VBOMANINVSERVICES':
4815 $result = __('Services', 'vikbooking');
4816 break;
4817 case 'VBOMANINVSERVICENM':
4818 $result = __('Service Name', 'vikbooking');
4819 break;
4820 case 'VBOMANINVADDSRV':
4821 $result = __('Add service', 'vikbooking');
4822 break;
4823 case 'VBCONFIGCHATENABLED':
4824 $result = __('Chat Enabled', 'vikbooking');
4825 break;
4826 case 'VBCONFIGCHATENABLEDHELP':
4827 $result = __('The chatting system between the guests and the property managers can be enabled for the reservations only if the Channel Manager is installed.', 'vikbooking');
4828 break;
4829 case 'VBCONFIGCHATPARAMS':
4830 $result = __('Chat Params', 'vikbooking');
4831 break;
4832 case 'VBCONFIGCHATRESSTATALL':
4833 $result = __('Chat enabled for all reservations', 'vikbooking');
4834 break;
4835 case 'VBCONFIGCHATRESSTATCONF':
4836 $result = __('Chat enabled only for Confirmed reservations', 'vikbooking');
4837 break;
4838 case 'VBCONFIGCHATAVCHECKIN':
4839 $result = __('Chat is available after check-in for # days', 'vikbooking');
4840 break;
4841 case 'VBCONFIGCHATAVCHECKOUT':
4842 $result = __('Chat is available after check-out for # days', 'vikbooking');
4843 break;
4844 case 'VBOREPORTDAILYROOMREPORT':
4845 $result = __('Daily Room Report', 'vikbooking');
4846 break;
4847 case 'VBOTYPEARRIVAL':
4848 $result = __('Arrival', 'vikbooking');
4849 break;
4850 case 'VBOTYPEDEPARTURE':
4851 $result = __('Departure', 'vikbooking');
4852 break;
4853 case 'VBOTYPESTAYOVER':
4854 $result = __('Stayover', 'vikbooking');
4855 break;
4856 case 'VBOBOOKHISTORYTPU':
4857 $result = __('New amount paid', 'vikbooking');
4858 break;
4859 case 'VBOPREVAMOUNTPAID':
4860 $result = __('Previous amount paid %s', 'vikbooking');
4861 break;
4862 case 'VBOREPORTTRANSACTIONSREPORT':
4863 $result = __('Transactions Report', 'vikbooking');
4864 break;
4865 case 'VBCONFIGPRECHECKINENABLED':
4866 $result = __('Pre Check-in Enabled', 'vikbooking');
4867 break;
4868 case 'VBCONFIGPRECHECKINMIND':
4869 $result = __('Pre Check-in days in advance', 'vikbooking');
4870 break;
4871 case 'VBOCHECKEDSTATUSPRECHECKIN':
4872 $result = __('Pre Checked-in', 'vikbooking');
4873 break;
4874 case 'VBDASHLASTRES':
4875 $result = __('Latest Reservations', 'vikbooking');
4876 break;
4877 case 'VBNEWIVATAXCAP':
4878 $result = __('Tax cap', 'vikbooking');
4879 break;
4880 case 'VBNEWIVATAXCAPHELP':
4881 $result = __('A tax cap places an upper bound on the amount of government tax a company might be required to pay. In this case the tax is said to be capped. This function is only required for some countries, where there is a limit (maximum amount) of taxes that should be paid. Please ignore this setting if nothing similar applied to your country of residence.', 'vikbooking');
4882 break;
4883 case 'VBOFILTEISROPTIONAL':
4884 $result = __('optional', 'vikbooking');
4885 break;
4886 case 'VBOREPORTOCCUPANCYRANKING':
4887 $result = __('Occupancy Ranking', 'vikbooking');
4888 break;
4889 case 'VBOGROUPBY':
4890 $result = __('Group by', 'vikbooking');
4891 break;
4892 case 'VBOWEEK':
4893 $result = __('Week', 'vikbooking');
4894 break;
4895 case 'VBODAY':
4896 $result = __('Day', 'vikbooking');
4897 break;
4898 case 'VBOADDCUSTOMFESTTODAY':
4899 $result = __('Add new note for today', 'vikbooking');
4900 break;
4901 case 'VBOPAYMENTONLYNONREF':
4902 $result = __('Only for Non-Refundable Rates', 'vikbooking');
4903 break;
4904 case 'VBOPAYMENTONLYNONREFHELP':
4905 $result = __('If enabled, this payment method will be displayed only if at least one non-refundable rate plan is selected for the rooms reservation. If only refundable rate plans are selected for the rooms, then this payment option will not be available to complete the reservation.', 'vikbooking');
4906 break;
4907 case 'VBCONFIGATTACHICAL':
4908 $result = __('Attach iCal Reminder', 'vikbooking');
4909 break;
4910 case 'VBCONFIGATTACHICALHELP':
4911 $result = __('If enabled, a calendar reminder in iCal format will be attached to the confirmation email for the customer and/or the administrator. This is useful to save the event on any calendar application of any device.', 'vikbooking');
4912 break;
4913 case 'VBOGOTOOPPORTUNITIES':
4914 $result = __('Opportunities', 'vikbooking');
4915 break;
4916 case 'VBOCATEGORYFILTER':
4917 $result = __('Filter by Category', 'vikbooking');
4918 break;
4919 case 'VBCONFIGUPSELLINGENABLED':
4920 $result = __('Enable Upselling Extras', 'vikbooking');
4921 break;
4922 case 'VBCONFIGUPSELLINGENABLEDHELP':
4923 $result = __('If enabled, non-cancelled bookings with a check-out date in the future will allow the customers to add some options/extra services to their reservation. This way it will be possible for the customers to order extra services for the rooms booked and add them to their reservations. This is valid for all reservations, the ones coming from your website as well as the ones downloaded by the Channel Manager from the various OTAs.', 'vikbooking');
4924 break;
4925 case 'VBOBOOKHISTORYTUE':
4926 $result = __('New extras booked', 'vikbooking');
4927 break;
4928 case 'VBORESTRREPEATONWDAYS':
4929 $result = __('Repeat restriction every %s', 'vikbooking');
4930 break;
4931 case 'VBORESTRREPEATUNTIL':
4932 $result = __('Repeat until', 'vikbooking');
4933 break;
4934 case 'VBOADMINLEGENDDETAILS':
4935 $result = __('Details', 'vikbooking');
4936 break;
4937 case 'VBOADMINLEGENDSETTINGS':
4938 $result = __('Settings', 'vikbooking');
4939 break;
4940 case 'VBOMAILSUBJECT':
4941 $result = __('Your reservation at %s', 'vikbooking');
4942 break;
4943 case 'VBOWEBSITERATES':
4944 $result = __('Website Rates', 'vikbooking');
4945 break;
4946 case 'VBOROOMCALXREFSETTINGS':
4947 $result = __('Availability Calendar Settings', 'vikbooking');
4948 break;
4949 case 'VBOROOMSHARECALENDAR':
4950 $result = __('Share calendar with', 'vikbooking');
4951 break;
4952 case 'VBOROOMCALENDARSHAREDBY':
4953 $result = __('Calendar shared by', 'vikbooking');
4954 break;
4955 case 'VBOROOMSHARECALENDARHELP':
4956 $result = __('Do not make any selection if this has to be an independent room! This function is only useful for those working with certain types of room that can be booked in full or partially. For example, if you rent an apartment with 4 rooms in full, but you would also like to rent the 4 rooms separately, this function will help you sync the calendars of all rooms. In this example, by booking the apartment in full, the calendars linked for the 4 independent rooms will be reserved as well to sync the availability on the requested dates. In this same example, if one of the 4 rooms was booked, then the full apartment would no longer be available. Use this function properly to avoid problems with the remaining availability of your rooms linked.', 'vikbooking');
4957 break;
4958 case 'VBOCUSTOMERDOCUMENTS':
4959 $result = __('Customer Documents', 'vikbooking');
4960 break;
4961 case 'VBOMANUALUPLOAD':
4962 $result = __('Upload File', 'vikbooking');
4963 break;
4964 case 'VBODROPFILES':
4965 $result = __('or drag and drop files here', 'vikbooking');
4966 break;
4967 case 'VBODROPFILESSTOPREMOVING':
4968 $result = __('Press ESC from keyboard to stop deleting the files', 'vikbooking');
4969 break;
4970 case 'VBODROPFILESHINT':
4971 $result = __('Drag & drop some documents here to upload them. It is possible to remove the documents by keeping them pressed.<br />You do not need to hit the "Save" button to keep the uploaded files.', 'vikbooking');
4972 break;
4973 case 'VBOPREVIEW':
4974 $result = __('Preview', 'vikbooking');
4975 break;
4976 case 'VBOWIZARDTARIFFSMESS':
4977 $result = __('Please specify the base-cost per night for each rate plan.', 'vikbooking');
4978 break;
4979 case 'VBOWIZARDTARIFFSHELP':
4980 $result = __('This should be the cost applied for the longer period of the year for the room\'s default occupancy. You will be able to set later the occupancy based pricing, as well as some seasonal pricing or different costs for some dates of the year.', 'vikbooking');
4981 break;
4982 case 'VBOWIZARDTARIFFSWHTC':
4983 $result = __('What\'s the starting cost per night for your room?', 'vikbooking');
4984 break;
4985 case 'VBOTOGGLEWIZARD':
4986 $result = __('Open Wizard', 'vikbooking');
4987 break;
4988 case 'VBOCHANNELS':
4989 $result = __('Channels', 'vikbooking');
4990 break;
4991 case 'VBOROOMCALENDARSHARED':
4992 $result = __('Availability calendar shared with other room types', 'vikbooking');
4993 break;
4994 case 'VBOSUBUNITOVERBOOKEDERR':
4995 $result = __('Warning - the sub-unit %s of the room %s has been overbooked from %s till %s by the booking ID %d. Please double check this reservation manually to assign a different sub-unit that was not booked yet. The main room has still got some free sub-units on these dates, and so the overbooking can be resolved manually.', 'vikbooking');
4996 break;
4997 case 'VBOSUBUNITOVERBOOKEDGOTO':
4998 $result = __('Adjust room sub-unit overbooked', 'vikbooking');
4999 break;
5000 case 'VBOROOMSUBUNITCHANGEFT':
5001 $result = __('Sub-unit changed for room %s from %s to %s', 'vikbooking');
5002 break;
5003 case 'VBOWIZARDRPLANSMESS':
5004 $result = __('The types of price are the rate plans that guests can choose for booking the rooms. They identify the costs, the cancellation policies and the services included.', 'vikbooking');
5005 break;
5006 case 'VBOWIZARDRPLANSMESS2':
5007 $result = __('Standard Rate and Non-refundable Rate are two common rate plans. However, depending on your business, you can choose to set up the types of price differently, for example Breakfast Only, Half-Board, Full-Board etc.. would be a valid configuration as well. <br/>This wizard will suggest to create some default rate plans. If they do not match your needs, feel free to close this window to create your type(s) of price manually, even just one.', 'vikbooking');
5008 break;
5009 case 'VBOSTANDARDRATE':
5010 $result = __('Standard Rate', 'vikbooking');
5011 break;
5012 case 'VBONONREFRATE':
5013 $result = __('Non-refundable Rate', 'vikbooking');
5014 break;
5015 case 'VBOSUGGRATEPLANS':
5016 $result = __('Suggested rate plans', 'vikbooking');
5017 break;
5018 case 'VBOCREATERATEPLANS':
5019 $result = __('Create Rate Plans', 'vikbooking');
5020 break;
5021 case 'VBOCLOSE':
5022 $result = __('Close', 'vikbooking');
5023 break;
5024 case 'VBOTOTALS':
5025 $result = __('Totals', 'vikbooking');
5026 break;
5027 case 'VBOREPORTTOTROOMSHELP':
5028 $result = __('Total sellable rooms: %d', 'vikbooking');
5029 break;
5030 case 'VBOSHEETNCHART':
5031 $result = __('Sheet + Chart', 'vikbooking');
5032 break;
5033 case 'VBOSHEETONLY':
5034 $result = __('Sheet', 'vikbooking');
5035 break;
5036 case 'VBOCHARTONLY':
5037 $result = __('Chart', 'vikbooking');
5038 break;
5039 case 'VBONEXTWEEKND':
5040 $result = __('Next weekend', 'vikbooking');
5041 break;
5042 case 'VBOROOMSOCCUPANCY':
5043 $result = __('Rooms Occupancy', 'vikbooking');
5044 break;
5045 case 'VBOROOMSUNSOLD':
5046 $result = __('Rooms Unsold', 'vikbooking');
5047 break;
5048 case 'VBOFORECAST':
5049 $result = __('Forecast', 'vikbooking');
5050 break;
5051 case 'VBOWEEKND':
5052 $result = __('Weekend', 'vikbooking');
5053 break;
5054 case 'VBOBOOKEDATPRICE':
5055 $result = __('Booked at', 'vikbooking');
5056 break;
5057 case 'VBOBOOKEDATPRICEHELP':
5058 $result = __('Keep the checkbox ticked to maintain the original room cost that was selected at the time of booking. If you untick the checkbox, the new price at today will be applied. Alternatively, you can choose to set a custom rate.', 'vikbooking');
5059 break;
5060 case 'VBOPARAMSUGGOCC':
5061 $result = __('Suggested occupancy', 'vikbooking');
5062 break;
5063 case 'VBODASHFIRSTSETUPROOMS':
5064 $result = __('Create some room-types to enable the booking process. Your rooms will have their own calendars for the availability and rates, and your guests will be booking the room-types you have set up.', 'vikbooking');
5065 break;
5066 case 'VBODASHFIRSTSETUPTARIFFS':
5067 $result = __('It is necessary to define the basic costs per night for each room for the various rate plans you have created. Other seasonal rates can be set up later from the page Rates Overview.', 'vikbooking');
5068 break;
5069 case 'VBODASHFIRSTSETUPSHORTCODES':
5070 $result = __('Shortcodes are necessary to display the contents of the plugin into the front-end section of your website. You should create some Shortcodes of various types, and use them onto some pages of your website to publish the desired contents.', 'vikbooking');
5071 break;
5072 case 'VBOCONFIGORPHANSCALCM':
5073 $result = __('Orphan dates calculation', 'vikbooking');
5074 break;
5075 case 'VBOCONFIGORPHANSCALCMHELP':
5076 $result = __('The dates displayed as &quot;orphans&quot; are those nights that cannot be booked due to some booking restrictions that force a minimum length of stay greater than 1 night. Such orphan dates can be calculated in two ways: by only checking the bookings for the dates ahead (in the future), or by also considering the free nights before a specific date. Choose your preferred calculation method to see warning messages about the various orphan dates found, in case you would like to reduce or remove the restrictions for the minimum stay.', 'vikbooking');
5077 break;
5078 case 'VBOCONFIGORPHANSCALCMN':
5079 $result = __('Free nights ahead', 'vikbooking');
5080 break;
5081 case 'VBOCONFIGORPHANSCALCMPN':
5082 $result = __('Free nights ahead and back', 'vikbooking');
5083 break;
5084 case 'VBOCONFIGSEARCHRESTPL':
5085 $result = __('Multiple rooms booking layout', 'vikbooking');
5086 break;
5087 case 'VBOCONFIGSEARCHRESTPLCL':
5088 $result = __('Classic', 'vikbooking');
5089 break;
5090 case 'VBOCONFIGSEARCHRESTPLCM':
5091 $result = __('Compact', 'vikbooking');
5092 break;
5093 case 'VBOSPWDAYSHELP':
5094 $result = __('Selecting no week days equals to selecting all 7 week days', 'vikbooking');
5095 break;
5096 case 'VBOSPNAMEHELP':
5097 $result = __('The name of this pricing rule. Visible only if &quot;Promotion&quot; enabled. Can be left empty', 'vikbooking');
5098 break;
5099 case 'VBOSPYEARTIEDHELP':
5100 $result = __('If disabled, the pricing rule will be applied on the selected range of dates regardless of the year', 'vikbooking');
5101 break;
5102 case 'VBOSPONLCKINHELP':
5103 $result = __('If enabled, the rule will be applied only if the check-in date for the stay is included in the range of dates', 'vikbooking');
5104 break;
5105 case 'VBOSPTPROMOHELP':
5106 $result = __('Make this pricing rule a &quot;Promotion&quot; to display it in the front-end booking process', 'vikbooking');
5107 break;
5108 case 'VBOPROMOCHANNELSHELP':
5109 $result = __('Select some of the active channels supporting promotions to create it also there', 'vikbooking');
5110 break;
5111 case 'VBOPROMOTEXTHELP':
5112 $result = __('The (optional) information/description text of your promotion. Visible only on your website', 'vikbooking');
5113 break;
5114 case 'VBOPROMOWARNNODATES':
5115 $result = __('A range of dates is mandatory to create a promotion', 'vikbooking');
5116 break;
5117 case 'VBOCHPROMOSUCCESS':
5118 $result = __('Promotion created successfully', 'vikbooking');
5119 break;
5120 case 'VBOSUGGCREATEPROMOOCC':
5121 $result = __('Create Promotion', 'vikbooking');
5122 break;
5123 case 'VBOINSIGHT':
5124 $result = __('Insight', 'vikbooking');
5125 break;
5126 case 'VBOSEVLOWOCC':
5127 $result = __('Your occupancy is particularly low on these dates.', 'vikbooking');
5128 break;
5129 case 'VBOSEVMEDOCC':
5130 $result = __('You\'ve got a medium occupancy on these dates.', 'vikbooking');
5131 break;
5132 case 'VBOSEVHIGHOCC':
5133 $result = __('Your occupancy is pretty high on these dates.', 'vikbooking');
5134 break;
5135 case 'VBOSEVLOWINDAYS':
5136 $result = __('Since these dates are very near, you could create a last-minute promotion to offer a discount to max out your occupancy.', 'vikbooking');
5137 break;
5138 case 'VBOSEVMEDINDAYS':
5139 $result = __('Since these dates are not so close and not so far, you could create a basic promotion to attract more guests.', 'vikbooking');
5140 break;
5141 case 'VBOSEVHIGHINDAYS':
5142 $result = __('Since these dates are pretty far ahead, you could create an early-booker promotion to fill your rooms earlier.', 'vikbooking');
5143 break;
5144 case 'VBOPANELREVIEWS':
5145 $result = __('Guest Reviews', 'vikbooking');
5146 break;
5147 case 'VBOGUESTREVVCMNOT':
5148 $result = __('Vik Channel Manager is not installed. The Guest Reviews are handled by the Channel Manager, which must be installed on your website and configured with at least one booking channel.', 'vikbooking');
5149 break;
5150 case 'VBOCONFIGGRENABLE':
5151 $result = __('Enable Guest Reviews', 'vikbooking');
5152 break;
5153 case 'VBOCONFIGGRENABLEHELP':
5154 $result = __('If enabled, guests will be able to review their stay at your property starting from their check-out date. Reviews can be left by visiting the front-end booking details page. Only one review per reservation is allowed.', 'vikbooking');
5155 break;
5156 case 'VBOCONFIGGRMINCHARS':
5157 $result = __('Review message minimum chars', 'vikbooking');
5158 break;
5159 case 'VBOCONFIGGRMINCHARSHELP':
5160 $result = __('A minimum number of chars required for submitting the review. Set it to 0 to disable any limit. Set it to -1 for not requesting any comment', 'vikbooking');
5161 break;
5162 case 'VBOCONFIGGRAPPROVAL':
5163 $result = __('Reviews approval', 'vikbooking');
5164 break;
5165 case 'VBOCONFIGGRAPPRAUTO':
5166 $result = __('Automatic approval', 'vikbooking');
5167 break;
5168 case 'VBOCONFIGGRAPPRMANUAL':
5169 $result = __('Manual approval', 'vikbooking');
5170 break;
5171 case 'VBOCONFIGGRAPPROVALHELP':
5172 $result = __('If set to automatic, all reviews will be instantly published on any section of your website where those are displayed. Alternatively, you can choose to manually approve any new review', 'vikbooking');
5173 break;
5174 case 'VBOCONFIGGRTYPE':
5175 $result = __('Review type', 'vikbooking');
5176 break;
5177 case 'VBOCONFIGGRTYPEGLOBAL':
5178 $result = __('Global rating', 'vikbooking');
5179 break;
5180 case 'VBOCONFIGGRTYPESERVICE':
5181 $result = __('Rating per service', 'vikbooking');
5182 break;
5183 case 'VBOCONFIGGRSERVICES':
5184 $result = __('Services to be rated', 'vikbooking');
5185 break;
5186 case 'VBOGREVVALUE':
5187 $result = __('Value for money', 'vikbooking');
5188 break;
5189 case 'VBOGREVLOCATION':
5190 $result = __('Location', 'vikbooking');
5191 break;
5192 case 'VBOGREVSTAFF':
5193 $result = __('Staff', 'vikbooking');
5194 break;
5195 case 'VBOGREVCLEAN':
5196 $result = __('Clean', 'vikbooking');
5197 break;
5198 case 'VBOGREVCOMFORT':
5199 $result = __('Comfort', 'vikbooking');
5200 break;
5201 case 'VBOGREVFACILITIES':
5202 $result = __('Facilities', 'vikbooking');
5203 break;
5204 case 'VBOGUESTREVSVCMREQ':
5205 $result = __('Guest reviews require the Channel Manager to be installed and configured on your website.', 'vikbooking');
5206 break;
5207 case 'VBOSEEGUESTREVIEW':
5208 $result = __('See guest review', 'vikbooking');
5209 break;
5210 case 'VBOCRONREMTYPEREVIEW':
5211 $result = __('Leave a review', 'vikbooking');
5212 break;
5213 case 'VBOREPORTRPLANSREVENUE':
5214 $result = __('Rate Plans Revenue', 'vikbooking');
5215 break;
5216 case 'VBOROVERVOBP':
5217 $result = __('Occupancy Based Pricing Rules', 'vikbooking');
5218 break;
5219 case 'VBOCONSECUTIVEDAYS':
5220 $result = __('Consecutive days', 'vikbooking');
5221 break;
5222 case 'VBOMINGUESTSFILT':
5223 $result = __('Minimum guests filtering', 'vikbooking');
5224 break;
5225 case 'VBOIFGUESTSMORETHAN':
5226 $result = __('Apply only if guests are more than', 'vikbooking');
5227 break;
5228 case 'VBOIFGUESTSLESSTHAN':
5229 $result = __('Apply only if guests are less than', 'vikbooking');
5230 break;
5231 case 'VBOMINMAXGUESTSOPTCONFL1':
5232 $result = __('Minimum guests should always be less than maximum guests. You have a conflict with the configuration of your room option, which would never make it appear. Please resolve it by amending the minimum guests filtering.', 'vikbooking');
5233 break;
5234 case 'VBOMINMAXGUESTSOPTCONFL2':
5235 $result = __('You have a conflict between the minimum and maximum guests in the configuration of your room option, which would never make it appear. A difference of at least 2 guests is necessary between the minimum and maximum guests filtering.', 'vikbooking');
5236 break;
5237 case 'VBOROOMSASSIGNED':
5238 $result = __('Rooms assigned', 'vikbooking');
5239 break;
5240 case 'VBOMINGUESTSFILTHELP':
5241 $result = __('Applying this option only when there is a minimum number of guests may alterate the calculation of the costs per children based on their age. For example, if the minimum number of guests is set to greater than 4, by booking a room for 2 adults and 3 children this option/extra cost will be displayed as we have 5 guests in total. However, the first 4 guests will be excluded from the calculation, and so in this example only the fifth guest, which is one child, will be asked to pay. The first and the second child will not pay for any age interval, only the third child will pay the regular fees per age. This is useful to apply extra costs only for a specific number/combination of guests. The filter can be combined with the maximum number of guests, or you can leave it empty as 0.', 'vikbooking');
5242 break;
5243 case 'VBONEWOPTISDMGDEP':
5244 $result = __('It\'s a damage deposit', 'vikbooking');
5245 break;
5246 case 'VBOGUESTMISCONDUCT':
5247 $result = __('Guest misconduct', 'vikbooking');
5248 break;
5249 case 'VBOREPORTMISCONDUCT':
5250 $result = __('Report misconduct', 'vikbooking');
5251 break;
5252 case 'VBOREPGUESTMISCONDUCTTO':
5253 $result = __('Report Guest Misconduct to %s', 'vikbooking');
5254 break;
5255 case 'VBOBOOKHISTORYTGM':
5256 $result = __('Guest misconduct report', 'vikbooking');
5257 break;
5258 case 'VBOTRANSMITDMGDEPTOOTA':
5259 $result = __('Transmit damage deposit to %s', 'vikbooking');
5260 break;
5261 case 'VBOTRANSMITDMGDEPLASTDT':
5262 $result = __('Last transmission date of this damage deposit: %s', 'vikbooking');
5263 break;
5264 case 'VBOCARATIMGORICON':
5265 $result = __('Image or font-icon', 'vikbooking');
5266 break;
5267 case 'VBOCARATIMGORICONHELP':
5268 $result = __('Characteristics are better displayed with an image or with a font icon. You should choose either to upload a custom image file or to use a font icon. Font icons are scalable, and well displayed on any kind of device, so they are usually better than custom images. When creating a new characteristic, you can select one font icon from the pre-set of icons, or you can always specify your custom HTML code to render the icon.', 'vikbooking');
5269 break;
5270 case 'VBOPOSITIONORDERING':
5271 $result = __('Ordering position', 'vikbooking');
5272 break;
5273 case 'VBOPOSITIONORDERINGHELP':
5274 $result = __('Leave this field empty for letting the system calculate the ordering position automatically', 'vikbooking');
5275 break;
5276 case 'VBOFONTICNSPREINST':
5277 $result = __('Font icons pre-installed', 'vikbooking');
5278 break;
5279 case 'VBOPROMOONFINALPRICE':
5280 $result = __('Apply on rooms final cost', 'vikbooking');
5281 break;
5282 case 'VBOPROMOONFINALPRICEHELP':
5283 $result = __('This setting will determine how the promotion will be applied onto the rooms costs', 'vikbooking');
5284 break;
5285 case 'VBOPROMOONFINALPRICETXT':
5286 $result = __('All special pricing rules are applied on the rooms base costs as a cumulative charge or discount even in case of multiple rules applied on the same stay dates. This algorithm follows the OpenTravel (OTA) standards, and here is an example of how two special pricing rules are typically applied on the bases costs to obtain the final price:<br/><br/><ul><li>Room-type base cost = 80/night</li><li>Booking for 3 nights</li><li>One Special Price sets a charge of 20/night to obtain a cost of 100/night</li><li>One Last-Minute promotion applies a 10% off</li></ul><br/><strong>Calculation of final price</strong><br/><ul><li>1st night (80 + 20 - 8) = 92</li><li>2nd night (80 + 20 - 8) = 92</li><li>3rd night (80 + 20 - 8) = 92</li><li><u>Final price</u> 92 * 3 = 276</li></ul><br/>With this default calculation method, the 10% off promotion has been applied cumulatively on the room base cost for each night affected.<br/>If the parameter <i>Apply on rooms final cost</i> was enabled, the calculation would be performed with the following method:<br/><ul><li>1st night (80 + 20) = 100</li><li>2nd night (80 + 20) = 100</li><li>3rd night (80 + 20) = 100</li><li><u>Final price before promotion</u> 100 * 3 = 300</li><li><u>Promotion applied on final cost</u> 300 - 10% = 270</li></ul><br/>You should choose the calculation method that best fits your needs. Applying promotions on the final price for specific dates is usually more handy, but you can choose to adopt the default calculation method like for all the other special pricing rules.', 'vikbooking');
5287 break;
5288 case 'VBOCOUPONEXCLTAX':
5289 $result = __('Exclude Taxes/Fees', 'vikbooking');
5290 break;
5291 case 'VBOCOUPONEXCLTAXHELP':
5292 $result = __('If enabled, any percent coupon code will not discount taxes or mandatory fees/services. If you disable it, the coupon code will be applied on the entire reservation amount.', 'vikbooking');
5293 break;
5294 case 'VBOUNTIL':
5295 $result = __('Until', 'vikbooking');
5296 break;
5297 case 'VBONOTESFORROOM':
5298 $result = __('Notes for this room', 'vikbooking');
5299 break;
5300 case 'VBCUSTOMERDOCISSUE':
5301 $result = __('Document Issue Date', 'vikbooking');
5302 break;
5303 case 'VBCUSTOMERNATION':
5304 $result = __('Nationality', 'vikbooking');
5305 break;
5306 case 'VBOREPORTERRNODATA':
5307 $result = __('Data Missing! Please insert the required data to proceed.', 'vikbooking');
5308 break;
5309 case 'VBOPREFCOUNTRIESORD':
5310 $result = __('Preferred Countries Ordering', 'vikbooking');
5311 break;
5312 case 'VBOPREFCOUNTRIESORDHELP':
5313 $result = __('The Preferred Countries are used to build input fields to collect phone numbers. These countries are taken from the installed languages on your website, and they will be used to display some countries at the top of the list next to each input field of type phone number. To add custom countries or to remove some, click the edit icon and enter the comma separated alpha-2 country codes (ISO 3166-1).', 'vikbooking');
5314 break;
5315 case 'VBOBOOKHISTORYTEC':
5316 $result = __('Cancellation Email Sent', 'vikbooking');
5317 break;
5318 case 'VBO_WIDGETS_WELCOME':
5319 $result = __('Admin Widgets Customizer', 'vikbooking');
5320 break;
5321 case 'VBO_WIDGETS_WELCOME_DESC1':
5322 $result = __('<strong>Welcome to the Admin Widgets Customizer!</strong><br/>This interface will let you manage all the elements displayed in your Dashboard through <b>Sections</b>, <b>Containers</b> and <b>Widgets</b>.', 'vikbooking');
5323 break;
5324 case 'VBO_WIDGETS_WELCOME_DESC2':
5325 $result = __('Add new <b>Sections</b> to better organize your elements, and arrange their position with drag and drop actions. Add new <b>Containers</b> with a proper size to contain your <b>widgets</b>.<br/>Four sizes are available for the containers:<ul><li><b>Full Width</b> gives a <u>100%</u> width to the container. Only one container of this type will fit in one row.</li><li><b>Large</b> gives the container a <u>75%</u> width. Another small container could fit in the same row next to this size.</li><li><b>Medium</b> gives the container a <u>50%</u> width. Another medium container could fit next to it, or even two small containers.</li><li><b>Small</b> gives the container a width of <u>25%</u>. One row could fit up to 4 containers of this size.</li></ul>', 'vikbooking');
5326 break;
5327 case 'VBO_WIDGETS_CUSTWIDGETS':
5328 $result = __('Customize Widgets', 'vikbooking');
5329 break;
5330 case 'VBO_WIDGETS_AUTOSAVE':
5331 $result = __('Changes will be saved automatically', 'vikbooking');
5332 break;
5333 case 'VBO_WIDGETS_RESTDEFAULTSHORT':
5334 $result = __('Restore', 'vikbooking');
5335 break;
5336 case 'VBO_WIDGETS_RESTDEFAULT':
5337 $result = __('Restore Default Widgets Configuration', 'vikbooking');
5338 break;
5339 case 'VBO_WIDGETS_CONTSIZE':
5340 $result = __('Container Size', 'vikbooking');
5341 break;
5342 case 'VBO_WIDGETS_CONTFULL':
5343 $result = __('Full Width', 'vikbooking');
5344 break;
5345 case 'VBO_WIDGETS_CONTLARGE':
5346 $result = __('Large', 'vikbooking');
5347 break;
5348 case 'VBO_WIDGETS_CONTMEDIUM':
5349 $result = __('Medium', 'vikbooking');
5350 break;
5351 case 'VBO_WIDGETS_CONTSMALL':
5352 $result = __('Small', 'vikbooking');
5353 break;
5354 case 'VBO_WIDGETS_ADDWIDGCONT':
5355 $result = __('Add Widgets Container', 'vikbooking');
5356 break;
5357 case 'VBO_WIDGETS_SELWIDGADD':
5358 $result = __('Choose the widget to add', 'vikbooking');
5359 break;
5360 case 'VBO_WIDGETS_ADDNEWWIDG':
5361 $result = __('Add New Widget', 'vikbooking');
5362 break;
5363 case 'VBO_WIDGETS_SAVINGMAP':
5364 $result = __('Saving the widgets map', 'vikbooking');
5365 break;
5366 case 'VBO_WIDGETS_ERRSAVINGMAP':
5367 $result = __('Could not update the map. Please try again', 'vikbooking');
5368 break;
5369 case 'VBO_WIDGETS_LASTUPD':
5370 $result = __('Last update', 'vikbooking');
5371 break;
5372 case 'VBO_WIDGETS_ENTERSECTNAME':
5373 $result = __('Please enter a name for the section', 'vikbooking');
5374 break;
5375 case 'VBO_WIDGETS_NEWSECT':
5376 $result = __('New Section', 'vikbooking');
5377 break;
5378 case 'VBO_WIDGETS_CONFRMELEM':
5379 $result = __('The selected element will be removed. Proceed?', 'vikbooking');
5380 break;
5381 case 'VBO_WIDGETS_SELCONTSIZE':
5382 $result = __('Please select the size of the container', 'vikbooking');
5383 break;
5384 case 'VBO_WIDGETS_UPDWIDGCONT':
5385 $result = __('Update Widgets Container', 'vikbooking');
5386 break;
5387 case 'VBO_WIDGETS_EDITWIDGCONT':
5388 $result = __('Edit Widgets Container', 'vikbooking');
5389 break;
5390 case 'VBO_WIDGETS_ERRDISPWIDG':
5391 $result = __('Could not display the widget. Try reloading the page', 'vikbooking');
5392 break;
5393 case 'VBO_W_STICKYN_TITLE':
5394 $result = __('Sticky Notes', 'vikbooking');
5395 break;
5396 case 'VBO_W_STICKYN_DESCR':
5397 $result = __('Write down something important for all your colleagues.', 'vikbooking');
5398 break;
5399 case 'VBO_STICKYN_TITLE':
5400 $result = __('Note Title', 'vikbooking');
5401 break;
5402 case 'VBO_STICKYN_TEXT':
5403 $result = __('Write here the text of the note.', 'vikbooking');
5404 break;
5405 case 'VBO_STICKYN_TEXT2':
5406 $result = __('Use <b>shortcuts</b> to <u>format</u> the <i>text</i>.', 'vikbooking');
5407 break;
5408 case 'VBO_STICKYN_CUSTOMURI':
5409 $result = __('Enter a custom URI for the link', 'vikbooking');
5410 break;
5411 case 'VBO_W_STICKYN_HELP_TITLE':
5412 $result = __('Notes text formatting', 'vikbooking');
5413 break;
5414 case 'VBO_W_STICKYN_HELP_DESCR':
5415 $result = __('You can use the following keyboard shortcuts while typing the text of your note:<br/><br/><b>Ctrl + B</b>: makes the text selection bold.<br/><b>Ctrl + I</b>: makes the text selection italic.<br/><b>Ctrl + U</b>: underlines the text selection.<br/><b>Ctrl + S</b>: strike-through the text selection.<br/><b>Ctrl + H/T</b>: makes the current block a title/heading.<br/><b>Ctrl + P</b>: makes the current block a paragraph.<br/><b>Ctrl + L</b>: adds a new bullet list, or converts the text selection to a link.<br/><b>Ctrl + O/N</b>: adds a new numbered list.<br/><b>Ctrl + A</b>: makes the whole text selected.<br/><b>Ctrl + M</b>: converts the markup text selection to HTML.', 'vikbooking');
5416 break;
5417 case 'VBO_W_STICKYN_HELP_DESCR_MAC':
5418 $result = __('You can use the following keyboard shortcuts while typing the text of your note:<br/><br/><b>&#8984; + B</b>: makes the text selection bold.<br/><b>&#8984; + I</b>: makes the text selection italic.<br/><b>&#8984; + U</b>: underlines the text selection.<br/><b>&#8984; + S</b>: strike-through the text selection.<br/><b>&#8984; + H/T</b>: makes the current block a title/heading.<br/><b>&#8984; + P</b>: makes the current block a paragraph.<br/><b>&#8984; + L</b>: adds a new bullet list, or converts the text selection to a link.<br/><b>&#8984; + O/N</b>: adds a new numbered list.<br/><b>&#8984; + A</b>: makes the whole text selected.<br/><b>Ctrl + M</b>: converts the markup text selection to HTML.<br/><br/>Some commands may also be executed by holding <kbd>Ctrl</kbd> rather than <kbd>&#8984;</kbd>.', 'vikbooking');
5419 break;
5420 case 'VBO_W_VISITCOUNT_TITLE':
5421 $result = __('Visitors Counter', 'vikbooking');
5422 break;
5423 case 'VBO_W_VISITCOUNT_DESCR':
5424 $result = __('Counts the daily visitors that looked for a room from your website', 'vikbooking');
5425 break;
5426 case 'VBO_W_VISITCOUNT_VTODAY':
5427 $result = __('Visitors today', 'vikbooking');
5428 break;
5429 case 'VBO_W_VISITCOUNT_VTMON':
5430 $result = __('Visitors this month', 'vikbooking');
5431 break;
5432 case 'VBO_W_VISITCOUNT_VLMON':
5433 $result = __('Visitors last month', 'vikbooking');
5434 break;
5435 case 'VBO_W_VISITCOUNT_VDIFF':
5436 $result = __('Turnout', 'vikbooking');
5437 break;
5438 case 'VBO_W_ARRIVETOD_TITLE':
5439 $result = __('Arriving Today', 'vikbooking');
5440 break;
5441 case 'VBO_W_ARRIVETOD_DESCR':
5442 $result = __('A list of reservations for guests arriving today', 'vikbooking');
5443 break;
5444 case 'VBO_W_DEPARTTOD_TITLE':
5445 $result = __('Departing Today', 'vikbooking');
5446 break;
5447 case 'VBO_W_DEPARTTOD_DESCR':
5448 $result = __('A list of reservations for guests departing today', 'vikbooking');
5449 break;
5450 case 'VBO_W_LASTRES_TITLE':
5451 $result = __('Last Reservations', 'vikbooking');
5452 break;
5453 case 'VBO_W_LASTRES_DESCR':
5454 $result = __('A list of the most recent reservations received', 'vikbooking');
5455 break;
5456 case 'VBO_W_NEXTRES_TITLE':
5457 $result = __('Next Bookings', 'vikbooking');
5458 break;
5459 case 'VBO_W_NEXTRES_DESCR':
5460 $result = __('A list of the upcoming arrivals', 'vikbooking');
5461 break;
5462 case 'VBO_W_ORPHDATES_TITLE':
5463 $result = __('Orphan dates', 'vikbooking');
5464 break;
5465 case 'VBO_W_ORPHDATES_DESCR':
5466 $result = __('The future orphan dates found due to booking restrictions', 'vikbooking');
5467 break;
5468 case 'VBO_W_ROOMSLOCK_TITLE':
5469 $result = __('Rooms Locked', 'vikbooking');
5470 break;
5471 case 'VBO_W_ROOMSLOCK_DESCR':
5472 $result = __('The rooms temporary locked for bookings with pending payment', 'vikbooking');
5473 break;
5474 case 'VBO_W_TODROCC_DESCR':
5475 $result = __('A list of all occupied rooms will be displayed with the customer details. Useful to identify in which room a guest is staying', 'vikbooking');
5476 break;
5477 case 'VBO_W_WEEKLYB_TITLE':
5478 $result = __('Weekly Bookings', 'vikbooking');
5479 break;
5480 case 'VBO_W_WEEKLYB_DESCR':
5481 $result = __('Various donut charts will display your weekly overall occupancy', 'vikbooking');
5482 break;
5483 case 'VBO_W_OCCFORECAST_TITLE':
5484 $result = __('Occupancy Forecast', 'vikbooking');
5485 break;
5486 case 'VBO_W_OCCFORECAST_DESCR':
5487 $result = __('Check your occupancy for the next festivities or custom dates', 'vikbooking');
5488 break;
5489 case 'VBO_COND_TEXT_MNG_TITLE':
5490 $result = __('Vik Booking - Conditional Text', 'vikbooking');
5491 break;
5492 case 'VBO_COND_TEXTS':
5493 $result = __('Conditional Texts', 'vikbooking');
5494 break;
5495 case 'VBO_COND_TEXT_RULES':
5496 $result = __('Conditional Text Rules', 'vikbooking');
5497 break;
5498 case 'VBO_NEW_COND_TEXT':
5499 $result = __('New Conditional Text', 'vikbooking');
5500 break;
5501 case 'VBO_CONDTEXT_NAME':
5502 $result = __('Conditional Text Name', 'vikbooking');
5503 break;
5504 case 'VBO_CONDTEXT_TKN':
5505 $result = __('Special Tag', 'vikbooking');
5506 break;
5507 case 'VBO_CONDTEXT_TKN_HELP':
5508 $result = __('The special tag (token) is generated automatically from the name of the conditional text. You can use it on most messages to execute all rules.', 'vikbooking');
5509 break;
5510 case 'VBO_CONDTEXT_ADDRULE':
5511 $result = __('Add Rule', 'vikbooking');
5512 break;
5513 case 'VBO_CONDTEXT_MSG':
5514 $result = __('Conditional Message', 'vikbooking');
5515 break;
5516 case 'VBO_CONDTEXT_MSG_HELP':
5517 $result = __('If you would like these conditional rules to produce a message, enter it here. Leave it empty otherwise.', 'vikbooking');
5518 break;
5519 case 'VBO_CONDTEXT_RULE_DISABLED':
5520 $result = __('This rule is already being used', 'vikbooking');
5521 break;
5522 case 'VBO_CONDTEXT_NORULES_SEL':
5523 $result = __('Please select one rule to add', 'vikbooking');
5524 break;
5525 case 'VBO_CONDTEXT_RULE_RMCONF':
5526 $result = __('Do you want to remove this rule?', 'vikbooking');
5527 break;
5528 case 'VBO_CONDTEXT_WARN_NORULES':
5529 $result = __('No rules defined to restrict the conditional text', 'vikbooking');
5530 break;
5531 case 'VBO_CONDTEXT_RULE_SEPEMAIL':
5532 $result = __('You can separate multiple email addresses with the comma', 'vikbooking');
5533 break;
5534 case 'VBO_CONDTEXT_RULE_BCCEMAIL':
5535 $result = __('Set as BCC', 'vikbooking');
5536 break;
5537 case 'VBO_CONDTEXT_DEBUG_RULES':
5538 $result = __('Debug Rules', 'vikbooking');
5539 break;
5540 case 'VBO_CONDTEXT_DEBUG_RULES_HELP':
5541 $result = __('If enabled, the special tags will debug the execution of the rules. Use it only for testing.', 'vikbooking');
5542 break;
5543 case 'VBO_DEBUG_RULE_CONDTEXT':
5544 $result = __('[Rule %s was not compliant. Special tag %s was not applied.]', 'vikbooking');
5545 break;
5546 case 'VBO_EXPAND':
5547 $result = __('Expand', 'vikbooking');
5548 break;
5549 case 'VBO_COLLAPSE':
5550 $result = __('Collapse', 'vikbooking');
5551 break;
5552 case 'VBO_TEMPLATE_FILES':
5553 $result = __('Template Files', 'vikbooking');
5554 break;
5555 case 'VBO_CONDTEXT_TAG_ADD_HELP':
5556 $result = __('Select the position in the template file where you would like to add the special tag %s', 'vikbooking');
5557 break;
5558 case 'VBO_CONDTEXT_TAG_RM_HELP':
5559 $result = __('Do you want to remove this tag from the template file %s? You will then be able to add it again to a different position.', 'vikbooking');
5560 break;
5561 case 'VBO_CSS_EDITING_HELP':
5562 $result = __('Click the various elements on the template to edit their CSS styling properties.', 'vikbooking');
5563 break;
5564 case 'VBO_INSPECTOR_START':
5565 $result = __('Customize colors and styles', 'vikbooking');
5566 break;
5567 case 'VBO_INSP_CSS_FONTCOLOR':
5568 $result = __('Font Color', 'vikbooking');
5569 break;
5570 case 'VBO_INSP_CSS_BACKGCOLOR':
5571 $result = __('Background Color', 'vikbooking');
5572 break;
5573 case 'VBO_INSP_HTML_TAG':
5574 $result = __('HTML Tag', 'vikbooking');
5575 break;
5576 case 'VBO_INSP_CSS_BORDER':
5577 $result = __('Border', 'vikbooking');
5578 break;
5579 case 'VBO_INSP_CSS_BORDERWIDTH':
5580 $result = __('Border Width', 'vikbooking');
5581 break;
5582 case 'VBO_INSP_CSS_BORDERCOLOR':
5583 $result = __('Border Color', 'vikbooking');
5584 break;
5585 case 'VBO_FILE_FROM_MEDIAMNG':
5586 $result = __('Media Manager', 'vikbooking');
5587 break;
5588 case 'VBO_FILE_FROM_LOCALDIR':
5589 $result = __('Full Path', 'vikbooking');
5590 break;
5591 case 'VBO_FILE_FROM_LOCALDIR_HELP':
5592 $result = __('Enter the full path to the local file starting with %s', 'vikbooking');
5593 break;
5594 case 'VBO_CONDTEXT_RULE_RETCUST':
5595 $result = __('Returning Customer', 'vikbooking');
5596 break;
5597 case 'VBO_CONDTEXT_RULE_DTA':
5598 $result = __('Days to arrival', 'vikbooking');
5599 break;
5600 case 'VBO_CONDTEXT_RULE_COUNTRIES':
5601 $result = __('Countries', 'vikbooking');
5602 break;
5603 case 'VBO_CONDTEXT_RULE_ATTFILES':
5604 $result = __('Attach Files', 'vikbooking');
5605 break;
5606 case 'VBO_CONDTEXT_RULE_ATTFILES_DESCR':
5607 $result = __('Add file attachments to the email message', 'vikbooking');
5608 break;
5609 case 'VBO_CONDTEXT_RULE_BOOKDATES':
5610 $result = __('Booking Dates', 'vikbooking');
5611 break;
5612 case 'VBO_CONDTEXT_RULE_BOOKDATES_DESCR':
5613 $result = __('Restriction applied to certain booking dates', 'vikbooking');
5614 break;
5615 case 'VBO_CONDTEXT_RULE_BOOKSTAT_DESCR':
5616 $result = __('Filter by reservation statuses', 'vikbooking');
5617 break;
5618 case 'VBO_CONDTEXT_RULE_CHANNELS_DESCR':
5619 $result = __('Filter the reservations by source of provenience', 'vikbooking');
5620 break;
5621 case 'VBO_CONDTEXT_RULE_COUNTRIES_DESCR':
5622 $result = __('Restriction applied to certain countries', 'vikbooking');
5623 break;
5624 case 'VBO_CONDTEXT_RULE_DTA_DESCR':
5625 $result = __('Restriction for minimum days offset to arrival', 'vikbooking');
5626 break;
5627 case 'VBO_CONDTEXT_RULE_EXTRAMAIL':
5628 $result = __('Extra Email', 'vikbooking');
5629 break;
5630 case 'VBO_CONDTEXT_RULE_EXTRAMAIL_DESCR':
5631 $result = __('Add one or more email recipient addresses', 'vikbooking');
5632 break;
5633 case 'VBO_CONDTEXT_RULE_LANG_DESCR':
5634 $result = __('Restriction for specific booking languages', 'vikbooking');
5635 break;
5636 case 'VBO_CONDTEXT_RULE_NOG_DESCR':
5637 $result = __('Filter by number of guests', 'vikbooking');
5638 break;
5639 case 'VBO_CONDTEXT_RULE_NON_DESCR':
5640 $result = __('Filter by number of nights', 'vikbooking');
5641 break;
5642 case 'VBO_CONDTEXT_RULE_OPTS_DESCR':
5643 $result = __('Restriction applied to certain options/extras', 'vikbooking');
5644 break;
5645 case 'VBO_CONDTEXT_RULE_PAYM_DESCR':
5646 $result = __('Filter by payment method', 'vikbooking');
5647 break;
5648 case 'VBO_CONDTEXT_RULE_RPL_DESCR':
5649 $result = __('Restriction applied to certain rate plans', 'vikbooking');
5650 break;
5651 case 'VBO_CONDTEXT_RULE_RETCUST_DESCR':
5652 $result = __('The same customer must have placed other reservations before', 'vikbooking');
5653 break;
5654 case 'VBO_CONDTEXT_RULE_ROOMS_DESCR':
5655 $result = __('Restriction for specific rooms booked', 'vikbooking');
5656 break;
5657 case 'VBO_CONDTEXT_RULE_STAYDATES':
5658 $result = __('Stay Dates', 'vikbooking');
5659 break;
5660 case 'VBO_CONDTEXT_RULE_STAYDATES_DESCR':
5661 $result = __('Restriction applied to certain dates of stay', 'vikbooking');
5662 break;
5663 case 'VBO_EDITTPL_FATALERROR':
5664 $result = __('Your PHP version may not support these functions, or the source code of the template may not be compatible. Please edit the template file manually, any changes will be restored.', 'vikbooking');
5665 break;
5666 case 'VBO_GMAPS_APIKEY':
5667 $result = __('Google Maps API Key', 'vikbooking');
5668 break;
5669 case 'VBO_GEO_INFO':
5670 $result = __('Geographic Information', 'vikbooking');
5671 break;
5672 case 'VBO_GEO_UNSUPPORTED':
5673 $result = __('This function relies on the Google Maps APIs. Please enter your Google Maps API Key from the Configuration settings, then refresh this page.', 'vikbooking');
5674 break;
5675 case 'VBO_ENABLE_GEOCODING':
5676 $result = __('Enable Geocoding', 'vikbooking');
5677 break;
5678 case 'VBO_GEO_ADDRESS':
5679 $result = __('Base Address', 'vikbooking');
5680 break;
5681 case 'VBO_GEO_COORDS':
5682 $result = __('Center Coordinates', 'vikbooking');
5683 break;
5684 case 'VBO_GEO_COORDS_LAT':
5685 $result = __('Latitude', 'vikbooking');
5686 break;
5687 case 'VBO_GEO_COORDS_LNG':
5688 $result = __('Longitude', 'vikbooking');
5689 break;
5690 case 'VBO_GEO_ZOOM':
5691 $result = __('Zoom Level', 'vikbooking');
5692 break;
5693 case 'VBO_GEO_MTYPE':
5694 $result = __('Map Type', 'vikbooking');
5695 break;
5696 case 'VBO_GEO_MTYPE_ROADMAP':
5697 $result = __('Street', 'vikbooking');
5698 break;
5699 case 'VBO_GEO_MTYPE_SATELLITE':
5700 $result = __('Satellite', 'vikbooking');
5701 break;
5702 case 'VBO_GEO_MTYPE_HYBRID':
5703 $result = __('Hybrid', 'vikbooking');
5704 break;
5705 case 'VBO_GEO_MTYPE_TERRAIN':
5706 $result = __('Terrain', 'vikbooking');
5707 break;
5708 case 'VBO_GEO_MAP_HEIGHT':
5709 $result = __('Map Height', 'vikbooking');
5710 break;
5711 case 'VBO_GEO_MARKERS_ONEMULTI':
5712 $result = __('Map Markers', 'vikbooking');
5713 break;
5714 case 'VBO_GEO_MARKERS_ONEMULTI_HELP':
5715 $result = __('Choose to display in the map one marker for each sub-unit, in case your room-type has got more than one unit available located at different positions, or if one marker for the entire room-type is sufficient.', 'vikbooking');
5716 break;
5717 case 'VBO_GEO_MARKERS_ONE':
5718 $result = __('One per room-type', 'vikbooking');
5719 break;
5720 case 'VBO_GEO_MARKERS_MULTI':
5721 $result = __('One per sub-unit', 'vikbooking');
5722 break;
5723 case 'VBO_GEO_MARKERS_MULTI_ERRUNIT':
5724 $result = __('This room-type needs to have at least two units', 'vikbooking');
5725 break;
5726 case 'VBO_GEO_CUSTOMIZE_MARKER':
5727 $result = __('Customize Marker', 'vikbooking');
5728 break;
5729 case 'VBO_GEO_RMCONF_MARKER':
5730 $result = __('Do you want to remove the marker from the map?', 'vikbooking');
5731 break;
5732 case 'VBO_GEO_HIDE_FROM_MAP':
5733 $result = __('Hide from map', 'vikbooking');
5734 break;
5735 case 'VBO_GEO_MAP_GOVERLAY':
5736 $result = __('Map Ground Overlay', 'vikbooking');
5737 break;
5738 case 'VBO_GEO_MAP_GOVERLAY_HELP':
5739 $result = __('You can add an image overlay to the map, maybe to represent better a specific area of your property. This is useful for example to show the map of a camping site or a village/resort and to place the markers on their exact positions. You don\'t need this function if you simply want to show the location of your room-type.', 'vikbooking');
5740 break;
5741 case 'VBO_PLEASE_SELECT':
5742 $result = __('Please make a selection', 'vikbooking');
5743 break;
5744 case 'VBO_GEO_MAP_GOVERLAY_COORDS_HELP':
5745 $result = __('The ground overlay image requires four coordinates in order to draw a rectangle on the map by using your custom image. The rectangle is composed of two points, south-west and north-east. In order to define the best position for your ground overlay image, you will need to provide a coordinate for: the south point (first point latitude), the west point (first point longitude), the north point (second point latitude) and the east point (second point longitude). You can click the helper button to use the current map bounds as the bounds for your overlay image.', 'vikbooking');
5746 break;
5747 case 'VBO_GEO_MAP_COPYBOUNDS':
5748 $result = __('Use current map bounds', 'vikbooking');
5749 break;
5750 case 'VBO_GEO_IMPORT_FROM':
5751 $result = __('Import configuration', 'vikbooking');
5752 break;
5753 case 'VBO_GEO_IMPORT_CONF':
5754 $result = __('Do you want to import the geographic information?', 'vikbooking');
5755 break;
5756 case 'VBO_GEO_FAILED_REASON':
5757 $result = __('Geocoding failed for the following reason:', 'vikbooking');
5758 break;
5759 case 'VBO_PLEASE_FILL_FIELDS':
5760 $result = __('Please fill all required fields', 'vikbooking');
5761 break;
5762 case 'VBO_MARKER_ICN_TYPE':
5763 $result = __('Marker Icon Type', 'vikbooking');
5764 break;
5765 case 'VBO_MARKER_ICN_TYPE_GMAPS':
5766 $result = __('Google Maps Default Icon', 'vikbooking');
5767 break;
5768 case 'VBO_MARKER_ICN_TYPE_SVG':
5769 $result = __('SVG Icon', 'vikbooking');
5770 break;
5771 case 'VBO_MARKER_ICN_TYPE_IMG':
5772 $result = __('Image Icon', 'vikbooking');
5773 break;
5774 case 'VBO_ADD_NEW':
5775 $result = __('Add New', 'vikbooking');
5776 break;
5777 case 'VBO_NEW_SVG_ICN_NAME':
5778 $result = __('New SVG Icon Name', 'vikbooking');
5779 break;
5780 case 'VBO_SVG_PATH':
5781 $result = __('SVG Path', 'vikbooking');
5782 break;
5783 case 'VBO_SVG_PATH_HELP':
5784 $result = __('In order to add a new custom SVG icon it is necessary to copy its shape commands, usually contained inside the <strong>d</strong> attribute of the <strong>&lsaquo;path&rsaquo;</strong> tag. SVG icons have an HTML structure, and either if you download or generate a .svg file, by opening the file with a text-editor, you will be able to locate the shape commands inside the <strong>d</strong> attribute. This is an example of an HTML SVG tag:<br/>&lsaquo;svg&rsaquo;<br/>&nbsp;&nbsp;&lsaquo;path d=&quot;<strong>M150 0 L75 200 L225 200 Z</strong>&quot; /&rsaquo;<br/>&lsaquo;/svg&rsaquo;<br/>In this example, the path shape you want to copy and use in this tool is just <u><i>M150 0 L75 200 L225 200 Z</i></u>', 'vikbooking');
5785 break;
5786 case 'VBO_FILL_COLOR':
5787 $result = __('Fill Color', 'vikbooking');
5788 break;
5789 case 'VBO_OPACITY':
5790 $result = __('Opacity', 'vikbooking');
5791 break;
5792 case 'VBO_WIDTH':
5793 $result = __('Width', 'vikbooking');
5794 break;
5795 case 'VBO_HEIGHT':
5796 $result = __('Height', 'vikbooking');
5797 break;
5798 case 'VBO_COORD_SOUTH':
5799 $result = __('South Coordinate', 'vikbooking');
5800 break;
5801 case 'VBO_COORD_WEST':
5802 $result = __('West Coordinate', 'vikbooking');
5803 break;
5804 case 'VBO_COORD_NORTH':
5805 $result = __('North Coordinate', 'vikbooking');
5806 break;
5807 case 'VBO_COORD_EAST':
5808 $result = __('East Coordinate', 'vikbooking');
5809 break;
5810 case 'VBO_PREF_COLORS':
5811 $result = __('Preferred Colors', 'vikbooking');
5812 break;
5813 case 'VBO_PREF_COLORS_HELP':
5814 $result = __('Select your preferred colors to adjust the default front-end styles. This way, the look of the elements (titles, buttons, font color and backgrounds) of the various pages of the booking process can match with your Theme or Property design.', 'vikbooking');
5815 break;
5816 case 'VBO_PREF_COLOR_TEXTS':
5817 $result = __('Titles and Headings', 'vikbooking');
5818 break;
5819 case 'VBO_PREF_COLOR_BKGROUND':
5820 $result = __('Elements with backgrounds', 'vikbooking');
5821 break;
5822 case 'VBO_PREF_COLOR_BKGROUNDHOV':
5823 $result = __('Hovered elements', 'vikbooking');
5824 break;
5825 case 'VBO_BKGROUND_COL':
5826 $result = __('Background color', 'vikbooking');
5827 break;
5828 case 'VBO_FONT_COL':
5829 $result = __('Font color', 'vikbooking');
5830 break;
5831 case 'VBO_PREF_COLOR_EXAMPLERES':
5832 $result = __('Styles examples', 'vikbooking');
5833 break;
5834 case 'VBO_INTERACTIVE_MAP_BOOK':
5835 $result = __('Interactive Map Booking', 'vikbooking');
5836 break;
5837 case 'VBO_INTERACTIVE_MAP_BOOK_HELP':
5838 $result = __('If enabled, guests will be able to book their rooms directly through an interactive map based on Google Maps. All your room-types must have geographical information defined in order for this function to be available to guests.', 'vikbooking');
5839 break;
5840 case 'VBO_NO_EMPTY_DECIMALS':
5841 $result = __('No decimals if N.00', 'vikbooking');
5842 break;
5843 case 'VBO_FORCE_BOOKDATES':
5844 $result = __('Force Booking', 'vikbooking');
5845 break;
5846 case 'VBO_FORCE_BOOKDATES_HELP':
5847 $result = __('The room may not be available on the selected dates, and if you choose to force the booking, you may cause an overbooking. Forcing the reservation may be useful when you want to keep a room closed, but still be able to register reservations for those dates. The system will no longer check if the room is available on the selected dates, so be careful.', 'vikbooking');
5848 break;
5849 case 'VBO_FORCED_BOOKDATES':
5850 $result = __('Booking was forced due to non-availability', 'vikbooking');
5851 break;
5852 case 'VBO_BOOKING_SHOULDFORCE':
5853 $result = __('You can choose to force the booking to skip the availability check, but you may cause overbooking.', 'vikbooking');
5854 break;
5855 case 'VBO_PAYBUT_POS':
5856 $result = __('Payment &quot;button&quot; position', 'vikbooking');
5857 break;
5858 case 'VBO_PAYBUT_POS_TOP':
5859 $result = __('Top', 'vikbooking');
5860 break;
5861 case 'VBO_PAYBUT_POS_MIDDLE':
5862 $result = __('Middle', 'vikbooking');
5863 break;
5864 case 'VBO_PAYBUT_POS_BOTTOM':
5865 $result = __('Bottom', 'vikbooking');
5866 break;
5867 case 'VBO_PAYMET_LOGO':
5868 $result = __('Custom logo', 'vikbooking');
5869 break;
5870 case 'VBO_ISSUE_REFUND':
5871 $result = __('Issue a refund', 'vikbooking');
5872 break;
5873 case 'VBO_REFUND':
5874 $result = __('Refund', 'vikbooking');
5875 break;
5876 case 'VBO_AMOUNT_REFUNDED':
5877 $result = __('Amount Refunded', 'vikbooking');
5878 break;
5879 case 'VBOBOOKHISTORYTRF':
5880 $result = __('Refund transaction', 'vikbooking');
5881 break;
5882 case 'VBO_REFUND_AMOUNT':
5883 $result = __('Refund amount', 'vikbooking');
5884 break;
5885 case 'VBO_REFUND_REASON':
5886 $result = __('Reason for refund', 'vikbooking');
5887 break;
5888 case 'VBO_DOREFUND_CONFIRM':
5889 $result = __('The amount will be refunded. Continue?', 'vikbooking');
5890 break;
5891 case 'VBO_REFUND_SUCCESS':
5892 $result = __('Refund transaction was successful', 'vikbooking');
5893 break;
5894 case 'VBO_STATUS_REFUNDED':
5895 $result = __('Refunded', 'vikbooking');
5896 break;
5897 case 'VBOBOOKHISTORYTRU':
5898 $result = __('Refunded amount updated', 'vikbooking');
5899 break;
5900 case 'VBO_NEWREFUND_AMOUNT':
5901 $result = __('Refunded amount changed from %s to %s', 'vikbooking');
5902 break;
5903 case 'VBO_CUSTOMER_UPLOAD_DOCS':
5904 $result = __('Upload Documents', 'vikbooking');
5905 break;
5906 case 'VBOCUSTPLACEBIRTH':
5907 $result = __('Place of birth', 'vikbooking');
5908 break;
5909 case 'VBOCUSTNATIONALITY':
5910 $result = __('Nationality', 'vikbooking');
5911 break;
5912 case 'VBOCUSTGENDER':
5913 $result = __('Gender', 'vikbooking');
5914 break;
5915 case 'VBOCUSTGENDERM':
5916 $result = __('Male', 'vikbooking');
5917 break;
5918 case 'VBOCUSTGENDERF':
5919 $result = __('Female', 'vikbooking');
5920 break;
5921 case 'VBOCUSTDOCTYPE':
5922 $result = __('ID Type', 'vikbooking');
5923 break;
5924 case 'VBOCUSTDOCNUM':
5925 $result = __('ID Number', 'vikbooking');
5926 break;
5927 case 'VBO_CUSTOMER_UPLOAD_DOCS':
5928 $result = __('Uploaded Documents', 'vikbooking');
5929 break;
5930 case 'VBO_TOT_REFUNDS':
5931 $result = __('Refunds', 'vikbooking');
5932 break;
5933 case 'VBO_AMOUNT_PAYABLE':
5934 $result = __('Amount Payable', 'vikbooking');
5935 break;
5936 case 'VBO_AMOUNT_PAYABLE_RQ':
5937 $result = __('Request Payment', 'vikbooking');
5938 break;
5939 case 'VBO_AMOUNT_PAYABLE_CONF':
5940 $result = __('The reservation will allow the payment to be made via front-end. Make sure to inform the customer by using the re-send email button.', 'vikbooking');
5941 break;
5942 case 'VBO_NEWPAYABLE_AMOUNT':
5943 $result = __('Reservation amount payable changed to %s', 'vikbooking');
5944 break;
5945 case 'VBOBOOKHISTORYTPB':
5946 $result = __('Payable amount updated', 'vikbooking');
5947 break;
5948 case 'VBO_GUEST_MESSAGING':
5949 $result = __('Guest Messaging', 'vikbooking');
5950 break;
5951 case 'VBO_PURGERM_RESERVATION':
5952 $result = __('Remove Reservation', 'vikbooking');
5953 break;
5954 case 'VBO_VCM_SPECIAL_OFFER':
5955 $result = __('%s - Special Offer', 'vikbooking');
5956 break;
5957 case 'VBOBOOKHISTORYTCM':
5958 $result = __('Channel Manager', 'vikbooking');
5959 break;
5960 case 'VBO_REVIEW_YOUR_GUEST':
5961 $result = __('Review your guest', 'vikbooking');
5962 break;
5963 case 'VBO_WRITE_REVIEW':
5964 $result = __('Write Review', 'vikbooking');
5965 break;
5966 case 'VBO_BTYPE_INQUIRY':
5967 $result = __('Inquiry', 'vikbooking');
5968 break;
5969 case 'VBO_BTYPE_REQUEST':
5970 $result = __('Request to book', 'vikbooking');
5971 break;
5972 case 'VBO_PREAPPROVE_INQUIRY':
5973 $result = __('Pre-approve', 'vikbooking');
5974 break;
5975 case 'VBO_WITHDRAW_PREAPPROVAL':
5976 $result = __('Withdraw pre-approval', 'vikbooking');
5977 break;
5978 case 'VBO_WITHDRAW_SPOFFER':
5979 $result = __('Withdraw special offer', 'vikbooking');
5980 break;
5981 case 'VBO_W_LATESTFROMGUESTS_TITLE':
5982 $result = __('Latest from your guests', 'vikbooking');
5983 break;
5984 case 'VBO_W_LATESTFROMGUESTS_DESCR':
5985 $result = __('Latest messages and reviews from your guests. Channel Manager required.', 'vikbooking');
5986 break;
5987 case 'VBO_CONDTEXT_RULE_WDAYS_DESCR':
5988 $result = __('Filter by check-in or check-out week day.', 'vikbooking');
5989 break;
5990 case 'VBO_APPEARANCE_PREF':
5991 $result = __('Appearance', 'vikbooking');
5992 break;
5993 case 'VBO_APPEARANCE_PREF_LIGHT':
5994 $result = __('Light', 'vikbooking');
5995 break;
5996 case 'VBO_APPEARANCE_PREF_AUTO':
5997 $result = __('Auto', 'vikbooking');
5998 break;
5999 case 'VBO_APPEARANCE_PREF_DARK':
6000 $result = __('Dark', 'vikbooking');
6001 break;
6002 case 'VBOBOOKHISTORYTPO':
6003 $result = __('Payout received', 'vikbooking');
6004 break;
6005 case 'VBO_MODE_TEXTHTML':
6006 $result = __('Text/HTML', 'vikbooking');
6007 break;
6008 case 'VBO_MODE_VISUAL':
6009 $result = __('Visual', 'vikbooking');
6010 break;
6011 case 'VBO_TPL_TEXT':
6012 $result = __('Text', 'vikbooking');
6013 break;
6014 case 'VBO_CRON_DADV_LOWER':
6015 $result = __('Include less days', 'vikbooking');
6016 break;
6017 case 'VBO_CRON_DADV_LOWER_HELP':
6018 $result = __('If type = Check-in and Days in advance greater than 1, by turning on this option the Cron Job will also include the reservations with a number of days to arrival (from the booking date) lower than the option days in advance. For example, if days in advance is set to 7, but a last-minute reservation is made 2 days before the arrival, with this setting enabled this reservation will be notified.', 'vikbooking');
6019 break;
6020 case 'VBO_COPY_ORIGINAL_TN':
6021 $result = __('Copy original', 'vikbooking');
6022 break;
6023 case 'VBOYESTERDAY':
6024 $result = __('Yesterday', 'vikbooking');
6025 break;
6026 case 'VBOTOMORROW':
6027 $result = __('Tomorrow', 'vikbooking');
6028 break;
6029 case 'VBOARRIVING':
6030 $result = __('Arriving', 'vikbooking');
6031 break;
6032 case 'VBODEPARTING':
6033 $result = __('Departing', 'vikbooking');
6034 break;
6035 case 'VBONOCHECKINSYESTERDAY':
6036 $result = __('No arrivals yesterday.', 'vikbooking');
6037 break;
6038 case 'VBONOCHECKOUTSYESTERDAY':
6039 $result = __('No departures yesterday.', 'vikbooking');
6040 break;
6041 case 'VBONOCHECKINSTOMORROW':
6042 $result = __('No arrivals tomorrow.', 'vikbooking');
6043 break;
6044 case 'VBONOCHECKOUTSTOMORROW':
6045 $result = __('No departures tomorrow.', 'vikbooking');
6046 break;
6047 case 'VBOREPORTRATESFLOW':
6048 $result = __('Rates Flow', 'vikbooking');
6049 break;
6050 case 'VBOCHANNEL':
6051 $result = __('Channel', 'vikbooking');
6052 break;
6053 case 'VBO_BASE_RATE':
6054 $result = __('Base Rate', 'vikbooking');
6055 break;
6056 case 'VBO_MOBILE_APP':
6057 $result = __('App', 'vikbooking');
6058 break;
6059 case 'VBO_W_RATESFLOW_DESCR':
6060 $result = __('The changes made to your room rates', 'vikbooking');
6061 break;
6062 case 'VBO_QUARTER':
6063 $result = __('Quarter', 'vikbooking');
6064 break;
6065 case 'VBO_W_LATESTEVS_TITLE':
6066 $result = __('Latest Events', 'vikbooking');
6067 break;
6068 case 'VBO_W_LATESTEVS_DESCR':
6069 $result = __('The most recent events for your bookings', 'vikbooking');
6070 break;
6071 case 'VBO_W_CHECKAV_TITLE':
6072 $result = __('Check Availability', 'vikbooking');
6073 break;
6074 case 'VBO_W_CHECKAV_DESCR':
6075 $result = __('Calculate the rates for the available rooms', 'vikbooking');
6076 break;
6077 case 'VBO_BOOKNOW':
6078 $result = __('Book Now', 'vikbooking');
6079 break;
6080 case 'VBO_SELECT':
6081 $result = __('Select', 'vikbooking');
6082 break;
6083 case 'VBO_ALT_STAY_DATES':
6084 $result = __('Alternative stay dates', 'vikbooking');
6085 break;
6086 case 'VBO_ALT_ROOM_PARTIES':
6087 $result = __('Alternative combinations of rooms', 'vikbooking');
6088 break;
6089 case 'VBO_AV_ECODE_3':
6090 $result = __('No rooms can allocate the provided number of guests.', 'vikbooking');
6091 break;
6092 case 'VBO_AV_ECODE_7':
6093 $result = __('No rooms available for the dates requested.', 'vikbooking');
6094 break;
6095 case 'VBO_CONFIG_BACKUP':
6096 $result = __('Backup', 'vikbooking');
6097 break;
6098 case 'VBO_CONFIG_BACKUP_TYPE':
6099 $result = __('Export Type', 'vikbooking');
6100 break;
6101 case 'VBO_CONFIG_BACKUP_FOLDER':
6102 $result = __('Folder Path', 'vikbooking');
6103 break;
6104 case 'VBO_CONFIG_BACKUP_FOLDER_HELP':
6105 $result = __('Enter here the path used to store the backup archives created by VikBooking. In case the folder does not exist, the system will attempt to create it. Installation base path: %s', 'vikbooking');
6106 break;
6107 case 'VBO_CONFIG_BACKUP_MANAGE_BTN':
6108 $result = __('Manage Backups', 'vikbooking');
6109 break;
6110 case 'VBMAINBACKUPSTITLE':
6111 $result = __('Vik Booking - Backup Archives', 'vikbooking');
6112 break;
6113 case 'VBOMAINTITLENEWBACKUP':
6114 $result = __('Vik Booking - New Backup', 'vikbooking');
6115 break;
6116 case 'VBO_BACKUP_SIZE':
6117 $result = __('File Size', 'vikbooking');
6118 break;
6119 case 'VBO_BACKUP_DOWNLOAOD':
6120 $result = __('Download', 'vikbooking');
6121 break;
6122 case 'VBOBACKUPRESTORECONF1':
6123 $result = __('Do you want to restore the program data with the selected backup?', 'vikbooking');
6124 break;
6125 case 'VBOBACKUPRESTORECONF2':
6126 $result = __('Confirm that you want to proceed one last time. This action cannot be undone.', 'vikbooking');
6127 break;
6128 case 'VBOBACKUPRESTORED':
6129 $result = __('The backup has been restored successfully!', 'vikbooking');
6130 break;
6131 case 'VBO_BACKUP_ACTION_LABEL':
6132 $result = __('Action', 'vikbooking');
6133 break;
6134 case 'VBO_BACKUP_ACTION_CREATE':
6135 $result = __('Create New', 'vikbooking');
6136 break;
6137 case 'VBO_BACKUP_ACTION_UPLOAD':
6138 $result = __('Upload Existing', 'vikbooking');
6139 break;
6140 case 'VBO_CRONJOB_BACKUP_CREATOR_DESCRIPTION':
6141 $result = __('Periodically creates a backup of the contents created through VikBooking.', 'vikbooking');
6142 break;
6143 case 'VBO_CRONJOB_BACKUP_CREATOR_FIELD_MAX':
6144 $result = __('Maximum Archives', 'vikbooking');
6145 break;
6146 case 'VBO_CRONJOB_BACKUP_CREATOR_FIELD_MAX_DESC':
6147 $result = __('Choose the maximum number of backup archives that can be created. When the specified threshold is reached, the system will automatically delete the oldest backup to allow the creation of a new one.', 'vikbooking');
6148 break;
6149 case 'VBO_BACKUP_EXPORT_TYPE_FULL':
6150 $result = _x('Full', 'Backup type: "FULL"', 'vikbooking');
6151 break;
6152 case 'VBO_BACKUP_EXPORT_TYPE_FULL_DESCRIPTION':
6153 $result = __('The backup will export all the contents created through VikBooking.', 'vikbooking');
6154 break;
6155 case 'VBO_BACKUP_EXPORT_TYPE_MANAGEMENT':
6156 $result = _x('Management', 'Backup export type: "MANAGEMENT"', 'vikbooking');
6157 break;
6158 case 'VBO_BACKUP_EXPORT_TYPE_MANAGEMENT_DESCRIPTION':
6159 $result = __('The backup will export only the contents used to set up the program. The records related to the customers, such as the bookings, will be completely ignored. This is useful to copy the configuration of this website into a new one.', 'vikbooking');
6160 break;
6161 case 'VBO_CONV_RES_OTA_CURRENCY':
6162 $result = __('Do you want to convert the amounts of this reservation from %s to %s?', 'vikbooking');
6163 break;
6164 case 'VBO_CONV_RES_OTA_CURRENCY_EXC':
6165 $result = __('%s is equal to %s', 'vikbooking');
6166 break;
6167 case 'VBO_CONV_RES_OTA_CURRENCY_APPLY':
6168 $result = __('Convert currency and amounts', 'vikbooking');
6169 break;
6170 case 'VBO_CONV_RES_OTA_CURRENCY_HISTORY':
6171 $result = __('Currency and amounts converted from %s to %s', 'vikbooking');
6172 break;
6173 case 'VBOBOOKHISTORYTIR':
6174 $result = __('Inquiry reservation', 'vikbooking');
6175 break;
6176 case 'VBO_WEB_INQUIRY_ALERT':
6177 $result = __('This is a pending inquiry reservation waiting to be confirmed, modified, cancelled, or paid.', 'vikbooking');
6178 break;
6179 case 'VBO_WEB_INQUIRY_AVTYPE_1':
6180 $result = __('The rooms were available for the requested dates and guests at the time of inquiry.', 'vikbooking');
6181 break;
6182 case 'VBO_WEB_INQUIRY_AVTYPE_2':
6183 $result = __('No valid rooms were available at the time of inquiry. Alternative and near dates with enough availability have been applied.', 'vikbooking');
6184 break;
6185 case 'VBO_WEB_INQUIRY_AVTYPE_3':
6186 $result = __('No available room could fit the requested number of guests. Alternative rooms and dates have been applied.', 'vikbooking');
6187 break;
6188 case 'VBO_WEB_INQUIRY_AVTYPE_4':
6189 $result = __('No alternative dates or rooms were found at the time of inquiry. The first room has been assigned to the reservation.', 'vikbooking');
6190 break;
6191 case 'VBO_WEB_INQUIRY_SUGG':
6192 $result = __('Adjust the reservation if needed, and get in touch with the guest for their booking request.', 'vikbooking');
6193 break;
6194 case 'VBO_WEB_INQUIRY_ORIGRQ':
6195 $result = __('Original information request', 'vikbooking');
6196 break;
6197 case 'VBO_INQUIRY_PENDING':
6198 $result = __('Pending inquiry', 'vikbooking');
6199 break;
6200 case 'VBO_CONF_CHECKIN_DATA':
6201 $result = __('Check-in data collection', 'vikbooking');
6202 break;
6203 case 'VBO_CONF_CHECKIN_DATA_BASIC':
6204 $result = __('Default adults information', 'vikbooking');
6205 break;
6206 case 'VBO_CONF_CHECKIN_DATA_CUSTOM':
6207 $result = __('Custom driver: %s', 'vikbooking');
6208 break;
6209 case 'VBO_SEARCH_ADMIN_WIDGETS':
6210 $result = __('Search widgets', 'vikbooking');
6211 break;
6212 case 'VBO_W_BOOKSCAL_TITLE':
6213 $result = __('Bookings Calendar', 'vikbooking');
6214 break;
6215 case 'VBO_W_BOOKSCAL_DESCR':
6216 $result = __('Room calendars to quickly navigate across monthly availability and reservations', 'vikbooking');
6217 break;
6218 case 'VBO_CRON_OTA_RES':
6219 $result = __('Channel Manager reservations', 'vikbooking');
6220 break;
6221 case 'VBO_CRON_OTA_RES_HELP':
6222 $result = __('Choose what to do with the Channel Manager (OTA) reservations. They can be included, excluded, or you can choose to include only the OTA reservations and exclude the ones coming from the website.', 'vikbooking');
6223 break;
6224 case 'VBO_INCLUDED':
6225 $result = __('Included', 'vikbooking');
6226 break;
6227 case 'VBO_INCLUDE_ONLY':
6228 $result = __('Include only OTA bookings', 'vikbooking');
6229 break;
6230 case 'VBO_EXCLUDED':
6231 $result = __('Excluded', 'vikbooking');
6232 break;
6233 case 'VBO_W_REMINDERS_TITLE':
6234 $result = __('Reminders', 'vikbooking');
6235 break;
6236 case 'VBO_W_REMINDERS_DESCR':
6237 $result = __('Custom reminders for scheduled notifications or expiring events.', 'vikbooking');
6238 break;
6239 case 'VBO_REMINDER_TITLE':
6240 $result = __('Reminder title', 'vikbooking');
6241 break;
6242 case 'VBO_REMINDER_DUE_DATE':
6243 $result = __('Due date', 'vikbooking');
6244 break;
6245 case 'VBO_REMINDER_TIME':
6246 $result = __('Time', 'vikbooking');
6247 break;
6248 case 'VBO_SHOW_COMPLETED':
6249 $result = __('Show completed', 'vikbooking');
6250 break;
6251 case 'VBO_SHOW_EXPIRED':
6252 $result = __('Show expired', 'vikbooking');
6253 break;
6254 case 'VBO_REL_EXP_FUTURE':
6255 $result = _x('in %s', 'Future reminder due date, like "in 1 month"', 'vikbooking');
6256 break;
6257 case 'VBO_REL_EXP_PAST':
6258 $result = _x('%s ago', 'Past reminder due date, like "1 month ago"', 'vikbooking');
6259 break;
6260 case 'VBO_ASSIGN_TO_BOOKING':
6261 $result = __('Assign to this booking', 'vikbooking');
6262 break;
6263 case 'VBO_BROWSER_NOTIFS_OFF':
6264 $result = __('Browser notifications are disabled', 'vikbooking');
6265 break;
6266 case 'VBO_BROWSER_NOTIFS_OFF_HELP':
6267 $result = __("Could not enable browser notifications.\nThis feature is available only in secure contexts (HTTPS).", 'vikbooking');
6268 break;
6269 case 'VBO_BROWSER_NOTIFS_ON':
6270 $result = __('Browser notifications are enabled!', 'vikbooking');
6271 break;
6272 case 'VBO_DEF_VALUE':
6273 $result = __('Default value', 'vikbooking');
6274 break;
6275 case 'VBO_COUNTRY_DEF_VALUE_HELP':
6276 $result = __('If you would like to pre-select a specific country by default, specify here the ISO 3166-1 Alpha-3 country code (3-char code)', 'vikbooking');
6277 break;
6278 case 'VBO_DATA_CALCULATION':
6279 $result = __('Data calculation', 'vikbooking');
6280 break;
6281 case 'VBO_DATA_CALCULATION_HELP':
6282 $result = __('Choose how the report should calculate the values. By default, the system will consider only the stayed nights in the range of dates used as filter. For example, if you are querying the report for a specific month, say March, a reservation with stay dates between March and April will have its values adjusted proportionally with the amounts for March. Instead, if you wish to base the data on the check-in date, maybe to get an idea of the effective incomes, in the above example a reservation with a check-out date exceeding the end-date in the filters will still be considered in full with no average calculation.', 'vikbooking');
6283 break;
6284 case 'VBO_STAYED_NIGHTS':
6285 $result = __('Stayed nights (average values)', 'vikbooking');
6286 break;
6287 case 'VBO_FULL_STAY_VALUES':
6288 $result = __('Full values from check-in', 'vikbooking');
6289 break;
6290 case 'VBO_INSERT_CONT_WRAPPER':
6291 $result = __('Insert content wrapper', 'vikbooking');
6292 break;
6293 case 'VBO_CONT_WRAPPER':
6294 $result = __('Content Wrapper', 'vikbooking');
6295 break;
6296 case 'VBO_CONT_WRAPPER_HELP':
6297 $result = __('When you insert a content wrapper to the body of the message, this will wrap your text within the default HTML layout. It is needed to beautify some contents of your email message.', 'vikbooking');
6298 break;
6299 case 'VBO_CUSTOMER_PROF_PIC':
6300 $result = __('Profile picture', 'vikbooking');
6301 break;
6302 case 'VBO_CUSTOMER_PROF_PIC_HELP':
6303 $result = __('An optional profile picture or logo of the customer. Can be a URL or an uploaded image.', 'vikbooking');
6304 break;
6305 case 'VBO_W_CURRCONV_TITLE':
6306 $result = __('Currency Converter', 'vikbooking');
6307 break;
6308 case 'VBO_W_CURRCONV_DESCR':
6309 $result = __('Exchange rates between currencies', 'vikbooking');
6310 break;
6311 case 'VBO_CONV_FROM':
6312 $result = __('Convert from', 'vikbooking');
6313 break;
6314 case 'VBO_CONV_TO':
6315 $result = __('Convert to', 'vikbooking');
6316 break;
6317 case 'VBO_CONV_RATE':
6318 $result = __('Conversion rate', 'vikbooking');
6319 break;
6320 case 'VBO_CRON_EMAIL_REMINDER_TITLE':
6321 $result = __('Reminder - Email', 'vikbooking');
6322 break;
6323 case 'VBO_CRON_PRECHECKIN_REMINDER_TITLE':
6324 $result = __('Reminder - Pre-checkin', 'vikbooking');
6325 break;
6326 case 'VBO_CRON_BACKUP_CREATOR_TITLE':
6327 $result = __('Backup - Creator', 'vikbooking');
6328 break;
6329 case 'VBO_CRON_SMS_REMINDER_TITLE':
6330 $result = __('Reminder - SMS', 'vikbooking');
6331 break;
6332 case 'VBO_CRON_INVOICES_GENERATOR_TITLE':
6333 $result = __('Invoices - Generator', 'vikbooking');
6334 break;
6335 case 'VBO_CRON_WEBHOOK_TITLE':
6336 $result = __('Webhook Notification', 'vikbooking');
6337 break;
6338 case 'VBO_CRONJOB_WEBHOOK_DESCRIPTION':
6339 $result = __('This cron job allows to set up automated actions whenever new events related to bookings take place. This is useful to post the changes to remote URLs or to pass the data to third party plugins.', 'vikbooking');
6340 break;
6341 case 'VBO_CRONJOB_WEBHOOK_TYPE_LABEL':
6342 $result = __('Notification type', 'vikbooking');
6343 break;
6344 case 'VBO_CRONJOB_WEBHOOK_TYPE_DESC':
6345 $result = __('Choose the type of webhook notification to trigger:<br/><ul><li><strong>URL</strong> POST request with a JSON payload to a remote URL.</li><li><strong>PHP Callback</strong> Invoke a custom PHP function or a class method.</li><li><strong>WordPress Action</strong> Calls a custom event (hook) by passing the payload to the action.</li></ul>', 'vikbooking');
6346 break;
6347 case 'VBO_CRONJOB_WEBHOOK_TYPE_URL_OPTION':
6348 $result = __('URL', 'vikbooking');
6349 break;
6350 case 'VBO_CRONJOB_WEBHOOK_TYPE_CALLBACK_OPTION':
6351 $result = __('PHP Callback', 'vikbooking');
6352 break;
6353 case 'VBO_CRONJOB_WEBHOOK_TYPE_ACTION_OPTION':
6354 $result = __('WordPress Action', 'vikbooking');
6355 break;
6356 case 'VBO_CRONJOB_WEBHOOK_HANDLER_LABEL':
6357 $result = __('Handler', 'vikbooking');
6358 break;
6359 case 'VBO_CRONJOB_WEBHOOK_HANDLER_DESC':
6360 $result = __('Depending on the type of webhook notification, enter the endpoint URL, the PHP callback (syntax: <code>function_name</code> or <code>object,method</code>) or the name of the WordPress hook.', 'vikbooking');
6361 break;
6362 case 'VBO_STATUS_PAID':
6363 $result = __('Paid', 'vikbooking');
6364 break;
6365 case 'VBO_STATUS_UNPAID':
6366 $result = __('Unpaid', 'vikbooking');
6367 break;
6368 case 'VBO_INV_TAX_SUMMARY':
6369 $result = __('Tax Summary', 'vikbooking');
6370 break;
6371 case 'VBO_INV_TAX_ALIQUOTE':
6372 $result = __('Tax Rate', 'vikbooking');
6373 break;
6374 case 'VBO_INV_VATGST':
6375 $result = __('VAT/GST', 'vikbooking');
6376 break;
6377 case 'VBO_PREVIOUS_CHECKINS':
6378 $result = __('Previous registrations', 'vikbooking');
6379 break;
6380 case 'VBO_SPLIT_STAYS':
6381 $result = __('Split stays', 'vikbooking');
6382 break;
6383 case 'VBO_SPLIT_STAY':
6384 $result = __('Split stay', 'vikbooking');
6385 break;
6386 case 'VBO_BOOK_SPLIT_STAYS':
6387 $result = __('Booking split stays', 'vikbooking');
6388 break;
6389 case 'VBO_BOOK_SPLIT_STAYS_HELP':
6390 $result = __('Split stays is a feature that allows you to split longer stays between multiple room types. In case the requested dates are not available in one same room, guests can choose to book a split stay with different rooms. Some nights of the stay will be assigned to one available room, while the other nights will be assigned to different rooms. This feature aims to maximize your rooms occupancy.', 'vikbooking');
6391 break;
6392 case 'VBO_SPLIT_STAYS_RATIO':
6393 $result = __('Nights/Transfers ratio', 'vikbooking');
6394 break;
6395 case 'VBO_SPLIT_STAYS_RATIO_HELP':
6396 $result = __('The ratio will be used to determine whether booking a split stay should be suggested. Thanks to this value, the system will understand if too many room transfers, depending on the number of nights of stay, are being suggested to the customers to satisfy their request.', 'vikbooking');
6397 break;
6398 case 'VBO_SPLIT_STAY_RATIO_TEST':
6399 $result = __('According to the current ratio (%s), a stay for %d night(s) will allow up to %d room transfer(s).', 'vikbooking');
6400 break;
6401 case 'VBO_MULTITASK_PANEL':
6402 $result = __('Multitask Panel', 'vikbooking');
6403 break;
6404 case 'VBO_BOOK_SPLIT_STAY_CANNOTDRAG':
6405 $result = __('The booking ID %d is a split stay reservation for multiple rooms, and so you cannot change dates to just one room. Use the apposite page to modify the reservation instead.', 'vikbooking');
6406 break;
6407 case 'VBO_MODIFY_DATES':
6408 $result = __('Modify dates', 'vikbooking');
6409 break;
6410 case 'VBO_MODIFY_DATES_HELP':
6411 $result = __('It is possible to modify the stay dates of some rooms when multiple rooms are booked with the same reservation. However, the selectable dates are constrained by the booking global check-in and check-out dates. This function is helpful in case the guests of a room will arrive some days later or will leave some days before. It is important to note that the sole goal of this function is to free up the availability of some rooms before or after the booking check-out or check-in dates. Defining a lower number of nights of stay for a room will NOT affect the pricing, which will still be based on the total number of nights of stay of the main reservation. If you wish to adjust the pricing when a room needs to change the dates of stay, then you should remove this room from the main reservation and manually create a new booking for this room, for the same customer, by selecting the proper check-in and check-out dates. You basically need to move the room from one reservation to another.', 'vikbooking');
6412 break;
6413 case 'VBO_STATE_PROVINCE':
6414 $result = __('State/Province', 'vikbooking');
6415 break;
6416 case 'VBO_3CHAR_CODE':
6417 $result = __('3-char code', 'vikbooking');
6418 break;
6419 case 'VBO_2CHAR_CODE':
6420 $result = __('2-char code', 'vikbooking');
6421 break;
6422 case 'VBMAINSTATESTITLE':
6423 $result = __('Vik Booking - States/Provinces', 'vikbooking');
6424 break;
6425 case 'VBO_MANAGE':
6426 $result = __('Manage', 'vikbooking');
6427 break;
6428 case 'VBO_NUMBER_USES':
6429 $result = __('Number of uses', 'vikbooking');
6430 break;
6431 case 'VBO_CUSTOMERS_ASSIGNED':
6432 $result = __('Customers assigned', 'vikbooking');
6433 break;
6434 case 'VBO_CUSTOMERS_ASSIGNED_HELP':
6435 $result = __('It is possible to limit the discount to just some customers.', 'vikbooking');
6436 break;
6437 case 'VBO_APPLY_AUTOMATICALLY':
6438 $result = __('Apply automatically', 'vikbooking');
6439 break;
6440 case 'VBO_APPLY_AUTOMATICALLY_HELP':
6441 $result = __('If enabled, the discount will be applied automatically when an eligible customer is recognized.', 'vikbooking');
6442 break;
6443 case 'VBO_SEARCHING':
6444 $result = __('Searching...', 'vikbooking');
6445 break;
6446 case 'VBO_ERR_LOAD_RESULTS':
6447 $result = __('An error occurred while loading the results', 'vikbooking');
6448 break;
6449 case 'VBO_EMPTY_DATA':
6450 $result = __('Empty data', 'vikbooking');
6451 break;
6452 case 'VBO_SET_STANDBY':
6453 $result = __('Set to Pending (Standby)', 'vikbooking');
6454 break;
6455 case 'VBO_W_GUESTMESSAGES_TITLE':
6456 $result = __('Guest Messages', 'vikbooking');
6457 break;
6458 case 'VBO_W_GUESTMESSAGES_DESCR':
6459 $result = __('Navigate through all your guest messages.', 'vikbooking');
6460 break;
6461 case 'VBO_NO_REPLY_NEEDED':
6462 $result = __('No reply needed', 'vikbooking');
6463 break;
6464 case 'VBO_WANT_PROCEED':
6465 $result = __('Do you want to proceed?', 'vikbooking');
6466 break;
6467 case 'VBO_W_FINANCE_TITLE':
6468 $result = __('Finance', 'vikbooking');
6469 break;
6470 case 'VBO_W_FINANCE_DESCR':
6471 $result = __('Metrics about occupancy, revenue and commission savings.', 'vikbooking');
6472 break;
6473 case 'VBO_GROSS_BOOKING_VALUE':
6474 $result = __('Gross Booking Value', 'vikbooking');
6475 break;
6476 case 'VBO_AVG_COMMISSIONS':
6477 $result = __('Average Commissions', 'vikbooking');
6478 break;
6479 case 'VBO_COMMISSION_SAVINGS':
6480 $result = __('Commission Savings', 'vikbooking');
6481 break;
6482 case 'VBO_COMPARE_WITH_LAST_Y':
6483 $result = __('Compare with last year', 'vikbooking');
6484 break;
6485 case 'VBO_COMPARE_WITH_PREV_Q':
6486 $result = __('Compare with previous quarter', 'vikbooking');
6487 break;
6488 case 'VBO_COMPARE_WITH_PREV_M':
6489 $result = __('Compare with previous month', 'vikbooking');
6490 break;
6491 case 'VBO_COMPARE_WITH_PREV_W':
6492 $result = __('Compare with previous week', 'vikbooking');
6493 break;
6494 case 'VBO_COMPARE_WITH_PREV_D':
6495 $result = __('Compare with previous day', 'vikbooking');
6496 break;
6497 case 'VBO_VS_LAST_Y':
6498 $result = __('vs last year', 'vikbooking');
6499 break;
6500 case 'VBO_VS_PREV_Q':
6501 $result = __('vs previous quarter', 'vikbooking');
6502 break;
6503 case 'VBO_VS_PREV_M':
6504 $result = __('vs previous month', 'vikbooking');
6505 break;
6506 case 'VBO_VS_PREV_W':
6507 $result = __('vs previous week', 'vikbooking');
6508 break;
6509 case 'VBO_VS_PREV_D':
6510 $result = __('vs day before', 'vikbooking');
6511 break;
6512 case 'VBO_DAYS_AFTER_CHECKOUT':
6513 $result = __('Days after check-out', 'vikbooking');
6514 break;
6515 case 'VBO_CRON_CUSTOMER_DISCOUNTS_TITLE':
6516 $result = __('Customer discount', 'vikbooking');
6517 break;
6518 case 'VBO_MIN_BOOKINGS_DISC_HELP':
6519 $result = __('If a customer has got a number of confirmed reservations equal to, or greater than this value, the account will be assigned to the selected coupon discount.', 'vikbooking');
6520 break;
6521 case 'VBOBOOKHISTORYTPC':
6522 $result = __('Pre-checkin information received', 'vikbooking');
6523 break;
6524 case 'VBO_CANC_FEE':
6525 $result = __('Cancellation fee', 'vikbooking');
6526 break;
6527 case 'VBO_ROOM_UPGRADE':
6528 $result = __('Room Upgrade', 'vikbooking');
6529 break;
6530 case 'VBO_ROOM_UPGRADE_HELP':
6531 $result = __('If enabled, guests will be able to upgrade to "better" rooms by editing their reservations. It is necessary to select the compatible rooms for the upgrade option (i.e. upgrade from "Double Room Standard" to "Double Room Deluxe").', 'vikbooking');
6532 break;
6533 case 'VBO_ELIGIBLE_ROOMS':
6534 $result = __('Eligible rooms', 'vikbooking');
6535 break;
6536 case 'VBOBOOKHISTORYTGR':
6537 $result = __('Guest review', 'vikbooking');
6538 break;
6539 case 'VBO_HISTORY_GROUPS':
6540 $result = __('Groups', 'vikbooking');
6541 break;
6542 case 'VBO_HISTORY_GPM':
6543 $result = __('Payments', 'vikbooking');
6544 break;
6545 case 'VBOBOOKHISTORYTUR':
6546 $result = __('Room Upgrade', 'vikbooking');
6547 break;
6548 case 'VBO_ROOM_UPGRADE_CONDTEXT_H':
6549 $result = __('Matches the available upgrade options depending on the nights and rooms booked', 'vikbooking');
6550 break;
6551 case 'VBO_ROOM_UPGRADE_ADDCONTMSG':
6552 $result = __('Add upgrade details to message', 'vikbooking');
6553 break;
6554 case 'VBO_UPGRADE_CONFIRM':
6555 $result = __('Confirm upgrade', 'vikbooking');
6556 break;
6557 case 'VBO_YOU_SAVE_PCENT':
6558 $result = __('You save %s', 'vikbooking');
6559 break;
6560 case 'VBO_CRON_TESTMAIL':
6561 $result = __('Test eMail Address', 'vikbooking');
6562 break;
6563 case 'VBO_CRON_TESTMAIL_HELP':
6564 $result = __('If provided, the cron job will send the message to this email address, not to the customer. Useful for testing purposes.', 'vikbooking');
6565 break;
6566 case 'VBO_NEW_BOOKING':
6567 $result = __('New Booking', 'vikbooking');
6568 break;
6569 case 'VBO_CHILDFEES_AGEBUCKETS_HELP':
6570 $result = __('For a better compatibility with OTAs, it is recommended to define at most 3 age intervals (buckets), where the &quot;to age&quot; is inclusive, and the next from-age interval should be greater by one (i.e. from 0 to 3, from 4 to 8, from 9 to 16). Also, fixed amounts in your currency are way more compatible than percent values of the room/adults rate.', 'vikbooking');
6571 break;
6572 case 'VBO_MISSING_SUBUNIT':
6573 $result = __('Missing sub-unit', 'vikbooking');
6574 break;
6575 case 'VBO_QUICK_ACTIONS':
6576 $result = __('Quick Actions', 'vikbooking');
6577 break;
6578 case 'VBO_USEFUL_LONGSTAY_PROMOS':
6579 $result = __('Useful for long-term stay promotions', 'vikbooking');
6580 break;
6581 case 'VBO_MAX_BOOK_TOTAL':
6582 $result = __('Max. Booking Total', 'vikbooking');
6583 break;
6584 case 'VBO_WELCOME_ADMIN_USER':
6585 $result = __('Welcome back, %s!', 'vikbooking');
6586 break;
6587 case 'VBO_BOOKINGS_YESTERDAY':
6588 $result = __('Bookings collected yesterday: %d', 'vikbooking');
6589 break;
6590 case 'VBO_ADMIN_WIDGET':
6591 $result = __('Admin widget', 'vikbooking');
6592 break;
6593 case 'VBO_CONGRATS':
6594 $result = __('Congratulations!', 'vikbooking');
6595 break;
6596 case 'VBO_SHOW_CANCELLATIONS':
6597 $result = __('Show cancellations', 'vikbooking');
6598 break;
6599 case 'VBO_CANCELLATIONS':
6600 $result = __('Cancellations', 'vikbooking');
6601 break;
6602 case 'VBO_EXPORT_AS':
6603 $result = __('Export as', 'vikbooking');
6604 break;
6605 case 'VBO_AUTO_EXPORT':
6606 $result = __('Auto-Export', 'vikbooking');
6607 break;
6608 case 'VBO_AUTO_EXPORT_JSON_HELP':
6609 $result = __('The JSON Payload will automatically set dynamic and required variables for the Report to generate the file to export.', 'vikbooking');
6610 break;
6611 case 'VBO_REMOVE_LOCAL_FILE':
6612 $result = __('Remove local file', 'vikbooking');
6613 break;
6614 case 'VBO_AUTO_EXPORT_RMFILE_HELP':
6615 $result = __('If you are sending the exported file to an email address, then after testing you can choose not to keep the file locally and have it removed automatically.', 'vikbooking');
6616 break;
6617 case 'VBO_MEAL_PLANS_INCL':
6618 $result = __('Meal Plans Included', 'vikbooking');
6619 break;
6620 case 'VBO_MEAL_BREAKFAST':
6621 $result = __('Breakfast', 'vikbooking');
6622 break;
6623 case 'VBO_MEAL_LUNCH':
6624 $result = __('Lunch', 'vikbooking');
6625 break;
6626 case 'VBO_MEAL_DINNER':
6627 $result = __('Dinner', 'vikbooking');
6628 break;
6629 case 'VBO_PET':
6630 $result = __('Pet', 'vikbooking');
6631 break;
6632 case 'VBO_PETS':
6633 $result = __('Pets', 'vikbooking');
6634 break;
6635 case 'VBO_MEAL_PLAN':
6636 $result = __('Meal Plan', 'vikbooking');
6637 break;
6638 case 'VBO_MEALS':
6639 $result = __('Meals', 'vikbooking');
6640 break;
6641 case 'VBO_SHORTM_BREAKFAST':
6642 // @TRANSLATORS: Short for Breakfast
6643 $result = _x('B', 'Short for Breakfast', 'vikbooking');
6644 break;
6645 case 'VBO_SHORTM_LUNCH':
6646 // @TRANSLATORS: Short for Lunch
6647 $result = _x('L', 'Short for Lunch', 'vikbooking');
6648 break;
6649 case 'VBO_SHORTM_DINNER':
6650 // @TRANSLATORS: Short for Dinner
6651 $result = _x('D', 'Short for Dinner', 'vikbooking');
6652 break;
6653 case 'VBO_CONF_SWAP_RNUMB':
6654 // @TRANSLATORS: Confirmation for swapping a room number with another
6655 $result = _x('Do you really want to swap the room number %s with the number %s?', 'Confirmation for swapping a room number with another', 'vikbooking');
6656 break;
6657 case 'VBO_SWAP_ROOMS_LOG':
6658 // @TRANSLATORS: Room-name: unit number N was swapped with unit number N
6659 $result = _x('%s: unit number %s was swapped with unit number %s', 'Room-name: unit number N was swapped with unit number N', 'vikbooking');
6660 break;
6661 case 'VBO_DRAG_SUBUNITS_SAMEDATE':
6662 $result = __('Room sub-units cannot be moved onto a different date. You should rather modify the reservation.', 'vikbooking');
6663 break;
6664 case 'VBO_ERR_SUBUN_MOVE_SUBUN':
6665 $result = __('Only room sub-units can be moved onto a sub-unit row.', 'vikbooking');
6666 break;
6667 case 'VBO_TAKINGS':
6668 $result = __('Takings', 'vikbooking');
6669 break;
6670 case 'VBO_TOTAL_TAKINGS':
6671 $result = __('Total Takings', 'vikbooking');
6672 break;
6673 case 'VBO_IS_PET_FEE':
6674 $result = __('Pet Fee', 'vikbooking');
6675 break;
6676 case 'VBO_ASSIGN_BOOKING_TO_OTA_CONFIRM':
6677 // @TRANSLATORS: Confirm the will to assign the reservation to the selected Channel/OTA by knowing that their policies or commissions may apply
6678 $result = _x('Do you want to assign the reservation to the selected channel %s? The OTA will be notified and their policies will be applied.', 'Confirm the will to assign the reservation to the selected Channel/OTA by knowing that their policies or commissions may apply', 'vikbooking');
6679 break;
6680 case 'VBO_BOOKING_OTA_ASSIGNED':
6681 // @TRANSLATORS: The name of the Channel/OTA assigned to the reservation
6682 $result = _x('Channel assigned: %s', 'The name of the Channel/OTA assigned to the reservation', 'vikbooking');
6683 break;
6684 case 'VBO_MAX_ADV_BOOK_NOTICE':
6685 $result = __('Maximum advance booking notice', 'vikbooking');
6686 break;
6687 case 'VBO_MAX_ADV_BOOK_NOTICE_HELP':
6688 $result = __('Defines the maximum notice period allowed for booking. If not specified, the global configuration setting for the &quot;Maximum date in the future from today&quot; will be used.', 'vikbooking');
6689 break;
6690 case 'VBO_PAY_PROCESS_NO_DIRECT_CHARGE':
6691 $result = __('The active payment processor does not support direct charges over credit card numbers.', 'vikbooking');
6692 break;
6693 case 'VBO_W_VIRTUALTERMINAL_TITLE':
6694 $result = __('Virtual Terminal', 'vikbooking');
6695 break;
6696 case 'VBO_W_VIRTUALTERMINAL_DESCR':
6697 $result = __('Manually charge credit card details for your OTA reservations. Only supported by some payment processors.', 'vikbooking');
6698 break;
6699 case 'VBO_CC_AMOUNT':
6700 $result = __('Amount', 'vikbooking');
6701 break;
6702 case 'VBO_CC_NUMBER':
6703 $result = __('Card Number', 'vikbooking');
6704 break;
6705 case 'VBO_CC_EXPIRY_DT':
6706 $result = __('Expiration Date', 'vikbooking');
6707 break;
6708 case 'VBO_CC_CVV':
6709 $result = __('CVV', 'vikbooking');
6710 break;
6711 case 'VBO_CC_DOCHARGE':
6712 $result = __('Charge Credit Card', 'vikbooking');
6713 break;
6714 case 'VBO_CC_TN_ERROR':
6715 $result = __('Transaction error', 'vikbooking');
6716 break;
6717 case 'VBO_NOPROMO_UPD_CHANNELS':
6718 $result = __('The channels connected with the Channel Manager do not allow regular pricing rules to be converted into promotions. Please delete this special price and create a new one as a promotion.', 'vikbooking');
6719 break;
6720 case 'VBO_IMPORTANT':
6721 $result = __('Important', 'vikbooking');
6722 break;
6723 case 'VBO_WARN_CM_RES_MOD':
6724 $result = __('Warning: this is a Channel Manager reservation. Changes or cancellations should not be made manually. They should be made automatically by the Channel Manager itself, if requested by the guest.', 'vikbooking');
6725 break;
6726 case 'VBO_SEE_ALL':
6727 $result = __('See all', 'vikbooking');
6728 break;
6729 case 'VBO_COPY':
6730 $result = __('Copy', 'vikbooking');
6731 break;
6732 case 'VBO_COPIED':
6733 $result = __('Copied', 'vikbooking');
6734 break;
6735 case 'VBO_READ_MORE':
6736 $result = __('Read more', 'vikbooking');
6737 break;
6738 case 'VBOBOOKHISTORYTOB':
6739 $result = __('Overbooking', 'vikbooking');
6740 break;
6741 case 'VBO_BTYPE_OVERBOOKING':
6742 $result = __('Overbooking', 'vikbooking');
6743 break;
6744 case 'VBO_CONF_RM_OVERBOOKING_FLAG':
6745 $result = __('Do you want to remove the overbooking flag? The action cannot be undone.', 'vikbooking');
6746 break;
6747 case 'VBO_OVERBOOKING_FLAG_REMOVED':
6748 $result = __('The overbooking flag was removed.', 'vikbooking');
6749 break;
6750 case 'VBO_CHOOSE_CHILDREN_HELP':
6751 $result = __('If enabled, every booking form will ask the guests to choose the number of children for each room party, beside the number of adults. Turn it off if children are not allowed or if they are charged like adults.', 'vikbooking');
6752 break;
6753 case 'VBO_GUESTS_LABEL':
6754 $result = __('Guests label', 'vikbooking');
6755 break;
6756 case 'VBO_GUESTS_LABEL_HELP':
6757 $result = __('The label to use for selecting the number of guests for each room. Choosing &quot;Guests&quot; over &quot;Adults&quot; can be helpful if children are not allowed or if they are charged like adults regardless of their age.', 'vikbooking');
6758 break;
6759 case 'VBO_GUESTS_POLICY':
6760 $result = __('Guests allowed policy', 'vikbooking');
6761 break;
6762 case 'VBO_GUESTS_POLICY_HELP':
6763 $result = __('An optional text that will be displayed in the booking forms. Useful to provide information such as infants allowed, children rates, minimum guests age etc..', 'vikbooking');
6764 break;
6765 case 'VBO_MARK_UNITS_CLOSED':
6766 $result = __('Mark the units as closed?', 'vikbooking');
6767 break;
6768 case 'VBO_W_BULKMESSAGING_TITLE':
6769 $result = __('Bulk Messaging', 'vikbooking');
6770 break;
6771 case 'VBO_W_BULKMESSAGING_DESCR':
6772 $result = __('Send bulk communication messages to your guests.', 'vikbooking');
6773 break;
6774 case 'VBO_SEND':
6775 $result = __('Send', 'vikbooking');
6776 break;
6777 case 'VBO_SEND_MESSAGES':
6778 $result = __('Send Messages', 'vikbooking');
6779 break;
6780 case 'VBO_W_NOTIFSCENTER_TITLE':
6781 $result = __('Notifications Center', 'vikbooking');
6782 break;
6783 case 'VBO_W_NOTIFSCENTER_DESCR':
6784 $result = __('Shows a list of notifications.', 'vikbooking');
6785 break;
6786 case 'VBO_SECOND':
6787 // @TRANSLATORS: 1 second (singular)
6788 $result = _x('second', '1 second (singular)', 'vikbooking');
6789 break;
6790 case 'VBO_MINUTE':
6791 // @TRANSLATORS: 1 minute (singular)
6792 $result = _x('minute', '1 minute (singular)', 'vikbooking');
6793 break;
6794 case 'VBO_HOUR':
6795 // @TRANSLATORS: 1 hour (singular)
6796 $result = _x('hour', '1 hour (singular)', 'vikbooking');
6797 break;
6798 case 'VBO_NOMORE_NOTIFS':
6799 $result = __('There are no more notifications to display!', 'vikbooking');
6800 break;
6801 case 'VBO_NO_NOTIFS':
6802 $result = __('There are no notifications.', 'vikbooking');
6803 break;
6804 case 'VBO_MARK_ALL_READ':
6805 $result = __('Mark all as read', 'vikbooking');
6806 break;
6807 case 'VBO_TAKE_ACTION':
6808 // @TRANSLATORS: Click the button to visit the URL and take action
6809 $result = _x('Take action', 'Click the button to visit the URL and take action', 'vikbooking');
6810 break;
6811 case 'VBO_NOTIFS_GROUP_WEBSITE':
6812 $result = __('Website', 'vikbooking');
6813 break;
6814 case 'VBO_NOTIFS_GROUP_OTAS':
6815 // @TRANSLATORS: OTAs stands for channels, like Booking.com, Airbnb, Expedia
6816 $result = _x('OTAs', 'OTAs stands for channels, like Booking.com, Airbnb, Expedia', 'vikbooking');
6817 break;
6818 case 'VBO_NOTIFS_GROUP_CM':
6819 $result = __('Channel Manager', 'vikbooking');
6820 break;
6821 case 'VBO_NOTIFS_GROUP_GUESTS':
6822 $result = __('Guests', 'vikbooking');
6823 break;
6824 case 'VBO_NOTIFS_GROUP_OPERATORS':
6825 $result = __('Operators', 'vikbooking');
6826 break;
6827 case 'VBO_VCC_BALANCE':
6828 $result = __('Virtual Credit Card Balance', 'vikbooking');
6829 break;
6830 case 'VBO_BOOK_MOD_SUMMARY_SNG':
6831 // @TRANSLATORS: Summary of what was changed with a booking modification, singular version
6832 $result = _x('%s was modified', 'Summary of what was changed with a booking modification, singular version', 'vikbooking');
6833 break;
6834 case 'VBO_BOOK_MOD_SUMMARY_PLR':
6835 // @TRANSLATORS: Summary of what was changed with a booking modification, plural version
6836 $result = _x('%s were modified', 'Summary of what was changed with a booking modification, plural version', 'vikbooking');
6837 break;
6838 case 'VBO_MESSAGE_FROM':
6839 // @TRANSLATORS: Message from John
6840 $result = _x('Message from %s', 'Message from John', 'vikbooking');
6841 break;
6842 case 'VBO_REPLY':
6843 $result = __('Reply', 'vikbooking');
6844 break;
6845 case 'VBO_CHECK_HOW_WENT':
6846 $result = __('Check how it went!', 'vikbooking');
6847 break;
6848 case 'VBO_ONLY_UNREAD':
6849 $result = __('Only unread', 'vikbooking');
6850 break;
6851 case 'VBO_VERIFY_LISTING_INFO':
6852 $result = __('Please verify the information for the listing %s', 'vikbooking');
6853 break;
6854 case 'VBO_REPORT_STAY_CHANGE_OTA':
6855 $result = __('Report stay change to %s', 'vikbooking');
6856 break;
6857 case 'VBO_REPORT_STAY_CHANGE_OTA_ALLR_HELP':
6858 $result = __('The channel %s will be informed of the stay dates change for the whole reservation.', 'vikbooking');
6859 break;
6860 case 'VBO_REPORT_STAY_CHANGE_OTA_ONER_HELP':
6861 $result = __('The channel %s will be informed of the stay dates change for this room.', 'vikbooking');
6862 break;
6863 case 'VBO_DO_WAIVE_FEES':
6864 $result = __('Waive fees', 'vikbooking');
6865 break;
6866 case 'VBO_DONT_WAIVE_FEES':
6867 $result = __('Do not waive fees', 'vikbooking');
6868 break;
6869 case 'VBO_EVENTS':
6870 $result = __('Events', 'vikbooking');
6871 break;
6872 case 'VBO_CRONJOB_WEBHOOK_EVENTS_DESC':
6873 $result = __('Optional events to filter. If some are selected, only the most recent booking events of such types will be used to trigger a webhook action. Useful to target just OTA reservations, new bookings, modifications, cancellations etc.. Do not select any events to target any recent change to a reservation record.', 'vikbooking');
6874 break;
6875 case 'VBO_LAYOUT':
6876 $result = __('Layout', 'vikbooking');
6877 break;
6878 case 'VBO_TABLE':
6879 $result = __('Table', 'vikbooking');
6880 break;
6881 case 'VBO_SCROLL':
6882 $result = __('Scroll', 'vikbooking');
6883 break;
6884 case 'VBO_GUEST':
6885 $result = __('Guest', 'vikbooking');
6886 break;
6887 case 'VBO_PROCESSING_FEES':
6888 $result = __('Processing fees', 'vikbooking');
6889 break;
6890 case 'VBO_SENDER':
6891 $result = __('Sender', 'vikbooking');
6892 break;
6893 case 'VBO_FIRST_NAME_ACCURATE_HELP':
6894 $result = __('Searching by guest first name may be more accurate.', 'vikbooking');
6895 break;
6896 case 'VBO_MESSAGE_CONTAINS_HELP':
6897 $result = __('The text contained in the message.', 'vikbooking');
6898 break;
6899 case 'VBO_FROM_DT_HELP':
6900 $result = __('Minimum date filter.', 'vikbooking');
6901 break;
6902 case 'VBO_TO_DT_HELP':
6903 $result = __('Maximum date filter.', 'vikbooking');
6904 break;
6905 case 'VBO_PAGE_NUMBER':
6906 // @TRANSLATORS: Page 2
6907 $result = _x('Page %d', 'Page 2', 'vikbooking');
6908 break;
6909 case 'VBO_FILTERS_APPLIED':
6910 $result = __('Filters applied', 'vikbooking');
6911 break;
6912 case 'VBO_NO_RECORDS_FOUND':
6913 $result = __('No records found', 'vikbooking');
6914 break;
6915 case 'VBO_ACTIVE_PERMS':
6916 $result = __('Active permissions', 'vikbooking');
6917 break;
6918 case 'VBO_OPER_PROF_PIC_HELP':
6919 $result = __('An optional profile picture or logo of the operator. Can be a URL or an uploaded image.', 'vikbooking');
6920 break;
6921 case 'VBO_PERM_NEGATIVE_DAYS':
6922 $result = __('Negative values will allow to access past dates.', 'vikbooking');
6923 break;
6924 case 'VBO_CREDIT_CARD':
6925 $result = __('Credit Card', 'vikbooking');
6926 break;
6927 case 'VBO_NOTIFS_GROUP_AI':
6928 $result = __('AI', 'vikbooking');
6929 break;
6930 case 'VBO_AVG_BOOK_WINDOW':
6931 $result = __('Average Booking Window', 'vikbooking');
6932 break;
6933 case 'VBO_BOOK_WINDOW_DESCR':
6934 $result = __('The booking window indicates the difference in days between the booking date and the check-in date.', 'vikbooking');
6935 break;
6936 case 'VBO_IS_DERIVED_RATE':
6937 $result = __('Derived rate plan', 'vikbooking');
6938 break;
6939 case 'VBO_DERIVED_RATE_HELP':
6940 $result = __('Derived rate plans will automatically inherit any pricing modification from one parent rate plan. Useful, for example, to set up a Non-Refundable Rate that is always 10% cheaper than the Standard Rate.', 'vikbooking');
6941 break;
6942 case 'VBO_PARENT_RATE':
6943 $result = __('Parent rate plan', 'vikbooking');
6944 break;
6945 case 'VBO_MODIFICATION_MODE':
6946 $result = __('Pricing modification', 'vikbooking');
6947 break;
6948 case 'VBO_MODIFICATION_MODE_HELP':
6949 $result = __('Choose whether this rate plan should be cheaper or more expensive than the parent rate.', 'vikbooking');
6950 break;
6951 case 'VBO_MODIFICATION_TYPE':
6952 $result = __('Modification type', 'vikbooking');
6953 break;
6954 case 'VBO_PERCENT':
6955 $result = __('Percent', 'vikbooking');
6956 break;
6957 case 'VBO_ABSOLUTE':
6958 $result = __('Absolute', 'vikbooking');
6959 break;
6960 case 'VBO_FOLLOW_RESTRICTIONS':
6961 $result = __('Follow restrictions', 'vikbooking');
6962 break;
6963 case 'VBO_FOLLOW_RESTRICTIONS_HELP':
6964 $result = __('If enabled, also the restrictions will be automatically inherited from the parent rate plan.', 'vikbooking');
6965 break;
6966 case 'VBO_W_AITOOLS_TITLE':
6967 $result = __('AI - Assistant', 'vikbooking');
6968 break;
6969 case 'VBO_W_AITOOLS_DESCR':
6970 $result = __('Ask the AI assistant to perform specific tasks.', 'vikbooking');
6971 break;
6972 case 'VBO_RATES_AND_RESTR':
6973 $result = __('Rates and restrictions', 'vikbooking');
6974 break;
6975 case 'VBO_MIN_STAY_SHORT':
6976 // @TRANSLATORS: Short for "Minimum Length of Stay"
6977 $result = _x('Min. LOS', 'Short for "Minimum Length of Stay"', 'vikbooking');
6978 break;
6979 case 'VBO_CTA_SHORT':
6980 // @TRANSLATORS: Short for "Closed to Arrival"
6981 $result = _x('CTA', 'Short for "Closed to Arrival"', 'vikbooking');
6982 break;
6983 case 'VBO_CTD_SHORT':
6984 // @TRANSLATORS: Short for "Closed to Departure"
6985 $result = _x('CTD', 'Short for "Closed to Departure"', 'vikbooking');
6986 break;
6987 case 'VBO_AUTOPAY_SCHEDULED':
6988 $result = __('Automatic payment collection', 'vikbooking');
6989 break;
6990 case 'VBO_NEW_PAYSCHEDULE':
6991 $result = __('Schedule new payment', 'vikbooking');
6992 break;
6993 case 'VBO_AI_ASSISTANT_DISCLAIMER':
6994 $result = __('Operations are performed using artificial intelligence. This is an experimental technology, and results may occasionally be incorrect or misleading.', 'vikbooking');
6995 break;
6996 case 'VBO_AI_ASSISTANT_DISCOVER_HINT':
6997 $result = __('Discover what the AI can do', 'vikbooking');
6998 break;
6999 case 'VBO_AI_ASSISTANT_DISCOVER_TITLE':
7000 $result = __('AI Assistant - Capabilities', 'vikbooking');
7001 break;
7002 case 'VBO_AI_ASSISTANT_CHAT_NO_MESSAGES':
7003 $result = __('No messages yet', 'vikbooking');
7004 break;
7005 case 'VBO_AI_ASSISTANT_CHAT_MESSAGE_PLACEHOLDER':
7006 // @TRANSLATORS: The HTML entity "&#9166;" stands for the keyboard Enter symbol
7007 $result = _x('Type something and hit &#9166; (Enter) to submit a message', 'The HTML entity "&#9166;" stands for the keyboard Enter symbol', 'vikbooking');
7008 break;
7009 case 'VBO_TOTAL_RESULTS':
7010 $result = __('Total results: %d', 'vikbooking');
7011 break;
7012 case 'VBO_AITOOL_ROOM_ARI':
7013 $result = __('Inventory', 'vikbooking');
7014 break;
7015 case 'VBO_AITOOL_ROOM_RATES':
7016 $result = __('Rates', 'vikbooking');
7017 break;
7018 case 'VBO_AITOOL_SEARCH_BOOKINGS':
7019 $result = __('Search Bookings', 'vikbooking');
7020 break;
7021 case 'VBO_AITOOL_STATS':
7022 $result = __('Statistics', 'vikbooking');
7023 break;
7024 case 'VBO_CTA_SEE':
7025 $result = __('View reservation', 'vikbooking');
7026 break;
7027 case 'VBO_CTA_SEE_CLOSURE':
7028 $result = __('View closure', 'vikbooking');
7029 break;
7030 case 'VBO_CTA_SEE_NEW':
7031 $result = __('View new reservation', 'vikbooking');
7032 break;
7033 case 'VBO_CTA_SEE_MODIFY':
7034 $result = __('View modified reservation', 'vikbooking');
7035 break;
7036 case 'VBO_CTA_SEE_CANCEL':
7037 $result = __('View cancelled reservation', 'vikbooking');
7038 break;
7039 case 'VBO_AITOOL_RESERVATION':
7040 $result = __('Reservation', 'vikbooking');
7041 break;
7042 case 'VBO_AITOOL_RESERVATION_CLOSURE':
7043 $result = __('Closure', 'vikbooking');
7044 break;
7045 case 'VBO_AITOOL_RESERVATION_NEW':
7046 $result = __('Reservation created', 'vikbooking');
7047 break;
7048 case 'VBO_AITOOL_RESERVATION_MODIFY':
7049 $result = __('Reservation modified', 'vikbooking');
7050 break;
7051 case 'VBO_AITOOL_RESERVATION_CANCEL':
7052 $result = __('Reservation cancelled', 'vikbooking');
7053 break;
7054 case 'VBO_AITOOL_MODIFY_RATES_SEE':
7055 $result = __('See Rates', 'vikbooking');
7056 break;
7057 case 'VBO_TRY':
7058 $result = __('Try', 'vikbooking');
7059 break;
7060 case 'VBO_N_ADULTS':
7061 $result = __('%d adults', 'vikbooking');
7062 break;
7063 case 'VBO_N_ADULTS_1':
7064 $result = __('1 adult', 'vikbooking');
7065 break;
7066 case 'VBO_N_CHILDREN':
7067 $result = __('%d children', 'vikbooking');
7068 break;
7069 case 'VBO_N_CHILDREN_1':
7070 $result = __('1 child', 'vikbooking');
7071 break;
7072 case 'VCM_HOST_TO_GUEST_REVIEW':
7073 $result = __('Host-to-guest review submitted', 'vikbooking');
7074 break;
7075 case 'VBO_AITOOL_NOTIFICATION':
7076 $result = __('Notification', 'vikbooking');
7077 break;
7078 case 'VCM_AITOOL_NOTIFICATION_SUMMARY_EMAIL':
7079 // @TRANSLATORS: The wildcard %s will be replaced with the customer email address
7080 $result = _x('The customer was notified via email at %s.', 'The wildcard %s will be replaced with the customer email address', 'vikbooking');
7081 break;
7082 case 'VCM_AITOOL_NOTIFICATION_SUMMARY_MESSAGING':
7083 // @TRANSLATORS: The wildcard %s will be replaced with the OTA messaging service, like "Booking.com Messaging"
7084 $result = _x('The customer was notified through %s.', 'The wildcard %s will be replaced with the OTA messaging service, like "Booking.com Messaging"', 'vikbooking');
7085 break;
7086 case 'VBO_AI_AUTO_GUEST_REV_WILLRUN':
7087 $result = __('The AI tools will automatically review this guest.', 'vikbooking');
7088 break;
7089 case 'VBO_AI_AUTO_GUEST_REV_RESIGNORE':
7090 $result = __('The AI tools will not review this guest automatically.', 'vikbooking');
7091 break;
7092 case 'VBO_AI_AUTO_GUEST_REV_EXCLUDE':
7093 $result = __('Exclude from automatic review', 'vikbooking');
7094 break;
7095 case 'VBO_AI_AUTO_GUEST_REV_INCLUDE':
7096 $result = __('Enable for automatic review', 'vikbooking');
7097 break;
7098 case 'VBO_AI_DISC_FN_STATS_TITLE':
7099 // @TRANSLATORS: Section "discover the AI capabilities"
7100 $result = _x('Statistics', 'Section "discover the AI capabilities"', 'vikbooking');
7101 break;
7102 case 'VBO_AI_DISC_FN_STATS_DESCR':
7103 // @TRANSLATORS: Section "discover the AI capabilities"
7104 $result = _x('Access, calculate and compare financial statistics and various business metrics.', 'Section "discover the AI capabilities"', 'vikbooking');
7105 break;
7106 case 'VBO_AI_DISC_FN_STATS_BC_SUMM':
7107 // @TRANSLATORS: Section "discover the AI capabilities"
7108 $result = _x('Number of active bookings in a range of dates.', 'Section "discover the AI capabilities"', 'vikbooking');
7109 break;
7110 case 'VBO_AI_DISC_FN_STATS_BC_EXA':
7111 // @TRANSLATORS: Section "discover the AI capabilities"
7112 $result = _x('How many reservations have we collected this year so far?', 'Section "discover the AI capabilities"', 'vikbooking');
7113 break;
7114 case 'VBO_AI_DISC_FN_STATS_BR_SUMM':
7115 // @TRANSLATORS: Section "discover the AI capabilities"
7116 $result = _x('Total revenue for specific dates and listings.', 'Section "discover the AI capabilities"', 'vikbooking');
7117 break;
7118 case 'VBO_AI_DISC_FN_STATS_BR_EXA':
7119 // @TRANSLATORS: Section "discover the AI capabilities"
7120 $result = _x('What\'s the revenue generated last month by %s?', 'Section "discover the AI capabilities"', 'vikbooking');
7121 break;
7122 case 'VBO_AI_DISC_FN_STATS_LOS_SUMM':
7123 // @TRANSLATORS: Section "discover the AI capabilities"
7124 $result = _x('Calculate and compare the average length of stay on specific date intervals.', 'Section "discover the AI capabilities"', 'vikbooking');
7125 break;
7126 case 'VBO_AI_DISC_FN_STATS_LOS_EXA':
7127 // @TRANSLATORS: Section "discover the AI capabilities"
7128 $result = _x('How\'s the average length of stay this month? Is it higher or lower than last month?', 'Section "discover the AI capabilities"', 'vikbooking');
7129 break;
7130 case 'VBO_AI_DISC_FN_BSRCH_TITLE':
7131 // @TRANSLATORS: Section "discover the AI capabilities"
7132 $result = _x('Search Bookings', 'Section "discover the AI capabilities"', 'vikbooking');
7133 break;
7134 case 'VBO_AI_DISC_FN_BSRCH_DESCR':
7135 // @TRANSLATORS: Section "discover the AI capabilities"
7136 $result = _x('Find reservations and related details through various criteria and filters.', 'Section "discover the AI capabilities"', 'vikbooking');
7137 break;
7138 case 'VBO_AI_DISC_FN_BSRCH_IO_SUMM':
7139 // @TRANSLATORS: Section "discover the AI capabilities"
7140 $result = _x('Find who is arriving, departing or staying on specific dates.', 'Section "discover the AI capabilities"', 'vikbooking');
7141 break;
7142 case 'VBO_AI_DISC_FN_BSRCH_IO_EXA':
7143 // @TRANSLATORS: Section "discover the AI capabilities"
7144 $result = _x('Who\'s arriving today? Is anybody checking out?', 'Section "discover the AI capabilities"', 'vikbooking');
7145 break;
7146 case 'VBO_AI_DISC_FN_BSRCH_CI_SUMM':
7147 // @TRANSLATORS: Section "discover the AI capabilities"
7148 $result = _x('Search bookings by customer name, email and phone number.', 'Section "discover the AI capabilities"', 'vikbooking');
7149 break;
7150 case 'VBO_AI_DISC_FN_BSRCH_CI_EXA':
7151 // @TRANSLATORS: Section "discover the AI capabilities"
7152 $result = _x('Is there any confirmed reservation for John Smith?', 'Section "discover the AI capabilities"', 'vikbooking');
7153 break;
7154 case 'VBO_AI_DISC_FN_REMIND_TITLE':
7155 // @TRANSLATORS: Section "discover the AI capabilities"
7156 $result = _x('Reminders', 'Section "discover the AI capabilities"', 'vikbooking');
7157 break;
7158 case 'VBO_AI_DISC_FN_REMIND_DESCR':
7159 // @TRANSLATORS: Section "discover the AI capabilities"
7160 $result = _x('Quickly schedule reminders and notifications for specific dates and reservations.', 'Section "discover the AI capabilities"', 'vikbooking');
7161 break;
7162 case 'VBO_AI_DISC_FN_REMIND_GR_SUMM':
7163 // @TRANSLATORS: Section "discover the AI capabilities"
7164 $result = _x('Set a reminder for a date.', 'Section "discover the AI capabilities"', 'vikbooking');
7165 break;
7166 case 'VBO_AI_DISC_FN_REMIND_GR_EXA':
7167 // @TRANSLATORS: Section "discover the AI capabilities"
7168 $result = _x('We need to change the beds of the room %s before the guests arrive tomorrow. Please set a reminder for early in the morning.', 'Section "discover the AI capabilities"', 'vikbooking');
7169 break;
7170 case 'VBO_AI_DISC_FN_REMIND_BR_SUMM':
7171 // @TRANSLATORS: Section "discover the AI capabilities"
7172 $result = _x('Set a reminder for a booking.', 'Section "discover the AI capabilities"', 'vikbooking');
7173 break;
7174 case 'VBO_AI_DISC_FN_REMIND_BR_EXA':
7175 // @TRANSLATORS: Section "discover the AI capabilities"
7176 $result = _x('Set a reminder for the reservation of John Smith because we need to collect the outstanding balance upon their arrival.', 'Section "discover the AI capabilities"', 'vikbooking');
7177 break;
7178 case 'VBO_AI_DISC_FN_RR_TITLE':
7179 // @TRANSLATORS: Section "discover the AI capabilities"
7180 $result = _x('Room Rates', 'Section "discover the AI capabilities"', 'vikbooking');
7181 break;
7182 case 'VBO_AI_DISC_FN_RR_DESCR':
7183 // @TRANSLATORS: Section "discover the AI capabilities"
7184 $result = _x('Calculate the total cost for a stay. Apply new rates and restrictions to your website and OTA rooms.', 'Section "discover the AI capabilities"', 'vikbooking');
7185 break;
7186 case 'VBO_AI_DISC_FN_RR_RQ_SUMM':
7187 // @TRANSLATORS: Section "discover the AI capabilities"
7188 $result = _x('Get quotes for dates, guests and listings.', 'Section "discover the AI capabilities"', 'vikbooking');
7189 break;
7190 case 'VBO_AI_DISC_FN_RR_RQ_EXA':
7191 // @TRANSLATORS: Section "discover the AI capabilities"
7192 $result = _x('How much does a room for 2 guests cost for next weekend?', 'Section "discover the AI capabilities"', 'vikbooking');
7193 break;
7194 case 'VBO_AI_DISC_FN_RR_CP_SUMM':
7195 // @TRANSLATORS: Section "discover the AI capabilities"
7196 $result = _x('Calculate and apply the desired cost for your listings.', 'Section "discover the AI capabilities"', 'vikbooking');
7197 break;
7198 case 'VBO_AI_DISC_FN_RR_CP_EXA':
7199 // @TRANSLATORS: Section "discover the AI capabilities"
7200 $result = _x('Get the cost for %s for next Saturday and double it.', 'Section "discover the AI capabilities"', 'vikbooking');
7201 break;
7202 case 'VBO_AI_DISC_FN_RR_MR_SUMM':
7203 // @TRANSLATORS: Section "discover the AI capabilities"
7204 $result = _x('Modify room rates and restrictions on website and OTAs.', 'Section "discover the AI capabilities"', 'vikbooking');
7205 break;
7206 case 'VBO_AI_DISC_FN_RR_MR_EXA':
7207 // @TRANSLATORS: Section "discover the AI capabilities"
7208 $result = _x('Set the cost of %s to %s 190 for next Friday, and set a minimum stay of 2 nights.', 'Section "discover the AI capabilities"', 'vikbooking');
7209 break;
7210 case 'VBO_AI_DISC_FN_RR_LR_SUMM':
7211 // @TRANSLATORS: Section "discover the AI capabilities"
7212 $result = _x('Change room rates just for your website by excluding OTAs.', 'Section "discover the AI capabilities"', 'vikbooking');
7213 break;
7214 case 'VBO_AI_DISC_FN_RR_LR_EXA':
7215 // @TRANSLATORS: Section "discover the AI capabilities"
7216 $result = _x('Change the cost per night of %s to %s 200 only for my website direct bookings for the whole Christmas week.', 'Section "discover the AI capabilities"', 'vikbooking');
7217 break;
7218 case 'VBO_AI_DISC_FN_ARI_TITLE':
7219 // @TRANSLATORS: Section "discover the AI capabilities"
7220 $result = _x('Availability Inventory', 'Section "discover the AI capabilities"', 'vikbooking');
7221 break;
7222 case 'VBO_AI_DISC_FN_ARI_DESCR':
7223 // @TRANSLATORS: Section "discover the AI capabilities"
7224 $result = _x('Obtain and analyze information related to availability and restrictions for various listings and dates.', 'Section "discover the AI capabilities"', 'vikbooking');
7225 break;
7226 case 'VBO_AI_DISC_FN_ARI_RA_SUMM':
7227 // @TRANSLATORS: Section "discover the AI capabilities"
7228 $result = _x('Check the availability for specific dates.', 'Section "discover the AI capabilities"', 'vikbooking');
7229 break;
7230 case 'VBO_AI_DISC_FN_ARI_RA_EXA':
7231 // @TRANSLATORS: Section "discover the AI capabilities"
7232 $result = _x('Are there any rooms left for next Saturday?', 'Section "discover the AI capabilities"', 'vikbooking');
7233 break;
7234 case 'VBO_AI_DISC_FN_ARI_AV_SUMM':
7235 // @TRANSLATORS: Section "discover the AI capabilities"
7236 $result = _x('Check if a precise room/listing is available for booking.', 'Section "discover the AI capabilities"', 'vikbooking');
7237 break;
7238 case 'VBO_AI_DISC_FN_ARI_AV_EXA':
7239 // @TRANSLATORS: Section "discover the AI capabilities"
7240 $result = _x('Is the %s available next weekend for 3 nights?', 'Section "discover the AI capabilities"', 'vikbooking');
7241 break;
7242 case 'VBO_AI_DISC_FN_BOOK_TITLE':
7243 // @TRANSLATORS: Section "discover the AI capabilities"
7244 $result = _x('Room Bookings', 'Section "discover the AI capabilities"', 'vikbooking');
7245 break;
7246 case 'VBO_AI_DISC_FN_BOOK_DESCR':
7247 // @TRANSLATORS: Section "discover the AI capabilities"
7248 $result = _x('Create new bookings for a specific customer, room and dates. Close and occupy your rooms on specific dates.', 'Section "discover the AI capabilities"', 'vikbooking');
7249 break;
7250 case 'VBO_AI_DISC_FN_BOOK_MK_SUMM':
7251 // @TRANSLATORS: Section "discover the AI capabilities"
7252 $result = _x('Make a reservation for a guest.', 'Section "discover the AI capabilities"', 'vikbooking');
7253 break;
7254 case 'VBO_AI_DISC_FN_BOOK_MK_EXA':
7255 // @TRANSLATORS: Section "discover the AI capabilities"
7256 $result = _x('Mario Rossi would like to book the room %s for 3 nights and 2 guests this Thursday. Please make a reservation for %s 200 per night. They need parking.', 'Section "discover the AI capabilities"', 'vikbooking');
7257 break;
7258 case 'VBO_AI_DISC_FN_BOOK_CL_SUMM':
7259 // @TRANSLATORS: Section "discover the AI capabilities"
7260 $result = _x('Make a room occupied on specific dates to stop the reservations.', 'Section "discover the AI capabilities"', 'vikbooking');
7261 break;
7262 case 'VBO_AI_DISC_FN_BOOK_CL_EXA':
7263 // @TRANSLATORS: Section "discover the AI capabilities"
7264 $result = _x('Please close the room %s from Monday to Friday of next week.', 'Section "discover the AI capabilities"', 'vikbooking');
7265 break;
7266 case 'VBO_AI_DISC_FN_MODBOOK_TITLE':
7267 // @TRANSLATORS: Section "discover the AI capabilities"
7268 $result = _x('Booking Modification', 'Section "discover the AI capabilities"', 'vikbooking');
7269 break;
7270 case 'VBO_AI_DISC_FN_MODBOOK_DESCR':
7271 // @TRANSLATORS: Section "discover the AI capabilities"
7272 $result = _x('Quickly alter reservations by changing the stay dates, extra services and the total booking amount.', 'Section "discover the AI capabilities"', 'vikbooking');
7273 break;
7274 case 'VBO_AI_DISC_FN_MODBOOK_CS_SUMM':
7275 // @TRANSLATORS: Section "discover the AI capabilities"
7276 $result = _x('Change the stay dates for a reservation.', 'Section "discover the AI capabilities"', 'vikbooking');
7277 break;
7278 case 'VBO_AI_DISC_FN_MODBOOK_CS_EXA':
7279 // @TRANSLATORS: Section "discover the AI capabilities"
7280 $result = _x('Postpone the check-out by one night for the booking ID %d for an extra %s 150.', 'Section "discover the AI capabilities"', 'vikbooking');
7281 break;
7282 case 'VBO_AI_DISC_FN_MODBOOK_AE_SUMM':
7283 // @TRANSLATORS: Section "discover the AI capabilities"
7284 $result = _x('Add extras to existing bookings.', 'Section "discover the AI capabilities"', 'vikbooking');
7285 break;
7286 case 'VBO_AI_DISC_FN_MODBOOK_AE_EXA':
7287 // @TRANSLATORS: Section "discover the AI capabilities"
7288 $result = _x('John Smith ordered a bottle of wine that costs %s 50. Can you update their bill?', 'Section "discover the AI capabilities"', 'vikbooking');
7289 break;
7290 case 'VBO_AI_DISC_FN_DELBOOK_TITLE':
7291 // @TRANSLATORS: Section "discover the AI capabilities"
7292 $result = _x('Booking Deletion', 'Section "discover the AI capabilities"', 'vikbooking');
7293 break;
7294 case 'VBO_AI_DISC_FN_DELBOOK_DESCR':
7295 // @TRANSLATORS: Section "discover the AI capabilities"
7296 $result = _x('Let the assistant find and cancel reservations for you.', 'Section "discover the AI capabilities"', 'vikbooking');
7297 break;
7298 case 'VBO_AI_DISC_FN_DELBOOK_SD_SUMM':
7299 // @TRANSLATORS: Section "discover the AI capabilities"
7300 $result = _x('Search specific reservations and ask to cancel them.', 'Section "discover the AI capabilities"', 'vikbooking');
7301 break;
7302 case 'VBO_AI_DISC_FN_DELBOOK_SD_EXA':
7303 // @TRANSLATORS: Section "discover the AI capabilities"
7304 $result = _x('Please cancel the booking made by John Smith for tomorrow because they lost the flight.', 'Section "discover the AI capabilities"', 'vikbooking');
7305 break;
7306 case 'VBO_AI_DISC_FN_NOTIFCUST_TITLE':
7307 // @TRANSLATORS: Section "discover the AI capabilities"
7308 $result = _x('Customer Notifications', 'Section "discover the AI capabilities"', 'vikbooking');
7309 break;
7310 case 'VBO_AI_DISC_FN_NOTIFCUST_DESCR':
7311 // @TRANSLATORS: Section "discover the AI capabilities"
7312 $result = _x('Ask the assistant to generate messages and to send them to your guests.', 'Section "discover the AI capabilities"', 'vikbooking');
7313 break;
7314 case 'VBO_AI_DISC_FN_NOTIFCUST_WB_SUMM':
7315 // @TRANSLATORS: Section "discover the AI capabilities"
7316 $result = _x('Search for a specific guest reservation and ask to send a notification.', 'Section "discover the AI capabilities"', 'vikbooking');
7317 break;
7318 case 'VBO_AI_DISC_FN_NOTIFCUST_WB_EXA':
7319 // @TRANSLATORS: Section "discover the AI capabilities"
7320 $result = _x('Find the reservation from John Smith and notify him that the Wi-Fi access was changed to ABCD12345.', 'Section "discover the AI capabilities"', 'vikbooking');
7321 break;
7322 case 'VBO_AI_DISC_FN_NOTIFCUST_OT_SUMM':
7323 // @TRANSLATORS: Section "discover the AI capabilities"
7324 $result = _x('Identify an OTA reservation and send a message to the guest through their messaging API.', 'Section "discover the AI capabilities"', 'vikbooking');
7325 break;
7326 case 'VBO_AI_DISC_FN_NOTIFCUST_OT_EXA':
7327 // @TRANSLATORS: Section "discover the AI capabilities"
7328 $result = _x('Find the Airbnb reservation of John Smith and send them a message to make sure they will arrive before 9PM.', 'Section "discover the AI capabilities"', 'vikbooking');
7329 break;
7330 case 'VBO_KEYBOARD_SHORTCUT':
7331 $result = __('Keyboard shortcut', 'vikbooking');
7332 break;
7333 case 'VBO_NEW_GUEST_REVIEW':
7334 $result = __('New guest review', 'vikbooking');
7335 break;
7336 case 'VBO_NEW_GUEST_REVIEW_SUMM':
7337 // @TRANSLATORS: John Smith left a review with a score of 10/10
7338 $result = _x('%s left a review with a score of %s.', 'John Smith left a review with a score of 10/10', 'vikbooking');
7339 break;
7340 case 'VBO_REG_NEW_PAYMENT':
7341 $result = __('Register new payment', 'vikbooking');
7342 break;
7343 case 'VBO_MODIFIED_ON_SMT':
7344 // @TRANSLATORS: Modified on "2024-09-17 12:00:00"
7345 $result = _x('Modified on %s', 'Modified on "2024-09-17 12:00:00"', 'vikbooking');
7346 break;
7347 case 'VBO_UPDATE_PAYMENT':
7348 $result = __('Update payment', 'vikbooking');
7349 break;
7350 case 'VBO_CREATE_LISTING_ON_OTA':
7351 // @TRANSLATORS: Create listing on "Booking.com"
7352 $result = _x('Create listing on %s', 'Create listing on "Booking.com"', 'vikbooking');
7353 break;
7354 case 'VBO_OTA_ACCOUNT_ID':
7355 $result = __('OTA Account ID', 'vikbooking');
7356 break;
7357 case 'VBO_OTA_LISTING_ID':
7358 $result = __('OTA Listing ID', 'vikbooking');
7359 break;
7360 case 'VBO_NOTIFS_GROUP_REPORTS':
7361 $result = __('Reports', 'vikbooking');
7362 break;
7363 case 'VBO_EXAMPLES':
7364 $result = __('Examples', 'vikbooking');
7365 break;
7366 case 'VBO_REPORT_EXPORT_FORMAT':
7367 $result = __('Choose the export format or the action to execute.', 'vikbooking');
7368 break;
7369 case 'VBO_REPORT_EXPORT_PAYLOAD_HELP':
7370 $result = __('The payload is needed to let the report export dynamic information every day.', 'vikbooking');
7371 break;
7372 case 'VBO_MANDATORY_FEE':
7373 $result = __('Mandatory fee', 'vikbooking');
7374 break;
7375 case 'VBO_CUSTOM_CHECKINOUT_WARN':
7376 // @TRANSLATORS: Default booking check-in and check-out times should be kept in mind.
7377 $result = _x('By booking this option it is possible to modify the default check-in and/or check-out time of the reservation. Make sure the new check-out time to set will be before the default check-in time (%s). Same goes for the new check-in time to set, it should be after the default check-out time (%s), or issues will occur with the availability calculation (turnover day).', 'Default booking check-in and check-out times should be kept in mind.', 'vikbooking');
7378 break;
7379 case 'VBO_LATE_CHECKOUT':
7380 $result = __('Late check-out', 'vikbooking');
7381 break;
7382 case 'VBO_EARLY_CHECKIN':
7383 $result = __('Early check-in', 'vikbooking');
7384 break;
7385 case 'VBO_LATE_CHECKIN':
7386 $result = __('Late check-in', 'vikbooking');
7387 break;
7388 case 'VBO_SPAIN_MUNICIPIO_CODE':
7389 $result = _x('Spain City Code', 'Spanish city code for "Código de municipio"', 'vikbooking');
7390 break;
7391 case 'VBO_SPAIN_DOC_SUPPORT_NUMBER':
7392 $result = _x('ID Support Number', 'Spanish translation for "Número soporte documento"', 'vikbooking');
7393 break;
7394 case 'VBO_SPAIN_CHILD_RELATION':
7395 $result = _x('Child relation', 'Spanish translation for "Parentesco"', 'vikbooking');
7396 break;
7397 case 'VBO_OTHER':
7398 $result = __('Other', 'vikbooking');
7399 break;
7400 case 'VBO_PASSPORT':
7401 $result = __('Passport', 'vikbooking');
7402 break;
7403 case 'VBO_SPAIN_CHILD_REL_AB':
7404 $result = __('Grandfather/Grandmother', 'vikbooking');
7405 break;
7406 case 'VBO_SPAIN_CHILD_REL_BA':
7407 $result = __('Great-grandfather/grandmother', 'vikbooking');
7408 break;
7409 case 'VBO_SPAIN_CHILD_REL_BN':
7410 $result = __('Great-grandson/granddaughter', 'vikbooking');
7411 break;
7412 case 'VBO_SPAIN_CHILD_REL_CD':
7413 $result = __('Brother/Sister-in-law', 'vikbooking');
7414 break;
7415 case 'VBO_SPAIN_CHILD_REL_CY':
7416 $result = __('Spouse', 'vikbooking');
7417 break;
7418 case 'VBO_SPAIN_CHILD_REL_HJ':
7419 $result = __('Son/Daughter', 'vikbooking');
7420 break;
7421 case 'VBO_SPAIN_CHILD_REL_HR':
7422 $result = __('Brother/Sister', 'vikbooking');
7423 break;
7424 case 'VBO_SPAIN_CHILD_REL_NI':
7425 $result = __('Grandson/Granddaughter', 'vikbooking');
7426 break;
7427 case 'VBO_SPAIN_CHILD_REL_PM':
7428 $result = __('Father/Mother', 'vikbooking');
7429 break;
7430 case 'VBO_SPAIN_CHILD_REL_SB':
7431 $result = __('Nephew/Nephew', 'vikbooking');
7432 break;
7433 case 'VBO_SPAIN_CHILD_REL_SG':
7434 $result = __('Father/Mother-in-law', 'vikbooking');
7435 break;
7436 case 'VBO_SPAIN_CHILD_REL_TI':
7437 $result = __('Uncle/Aunt', 'vikbooking');
7438 break;
7439 case 'VBO_SPAIN_CHILD_REL_YN':
7440 $result = __('Son/Daughter-in-law', 'vikbooking');
7441 break;
7442 case 'VBO_SPAIN_CHILD_REL_TU':
7443 $result = __('Guardian', 'vikbooking');
7444 break;
7445 case 'VBO_SEARCH_SHOW_BUSY_LISTINGS':
7446 $result = __('Show occupied listings in search results', 'vikbooking');
7447 break;
7448 case 'VBO_SEARCH_LINK_ROOMDETAILS':
7449 $result = __('Link to listing details in search results', 'vikbooking');
7450 break;
7451 case 'VBO_GUEST_TYPE':
7452 $result = __('Guest type', 'vikbooking');
7453 break;
7454 case 'VBO_SINGLE_GUEST':
7455 $result = __('Single guest', 'vikbooking');
7456 break;
7457 case 'VBO_FAMILY_HEAD':
7458 $result = __('Head of family', 'vikbooking');
7459 break;
7460 case 'VBO_FAMILY_MEMBER':
7461 $result = __('Family member', 'vikbooking');
7462 break;
7463 case 'VBO_GROUP_HEAD':
7464 $result = __('Group leader', 'vikbooking');
7465 break;
7466 case 'VBO_GROUP_MEMBER':
7467 $result = __('Group member', 'vikbooking');
7468 break;
7469 case 'VBO_BIRTH_STATE':
7470 $result = __('Country of birth', 'vikbooking');
7471 break;
7472 case 'VBO_BIRTH_MUNICIPALITY':
7473 $result = __('Municipality of birth', 'vikbooking');
7474 break;
7475 case 'VBO_STAY_STATE':
7476 $result = __('Country of residence', 'vikbooking');
7477 break;
7478 case 'VBO_STAY_MUNICIPALITY':
7479 $result = __('Municipality of residence', 'vikbooking');
7480 break;
7481 case 'VBO_ID_ISSUE_PLACE':
7482 $result = __('ID issue place', 'vikbooking');
7483 break;
7484 case 'VBO_ONLY_IF_COUNTRY_EQ':
7485 // @TRANSLATORS: Only if country = Italy.
7486 $result = _x('Only if country = %s', 'e.g. Only if country = Italy', 'vikbooking');
7487 break;
7488 case 'VBO_OPTIONAL':
7489 $result = __('Optional', 'vikbooking');
7490 break;
7491 case 'VBO_SELECT_COUNTRY':
7492 $result = __('Select country', 'vikbooking');
7493 break;
7494 case 'VBO_SELECT_DOCUMENT':
7495 $result = __('Select document', 'vikbooking');
7496 break;
7497 case 'VBO_DRIVING_LICENSE':
7498 $result = __('Driving License', 'vikbooking');
7499 break;
7500 case 'VBO_IDENTITY_DOCUMENT':
7501 $result = __('Identity Document', 'vikbooking');
7502 break;
7503 case 'VBO_MESS_PER_PAGE':
7504 $result = __('Messages per page', 'vikbooking');
7505 break;
7506 case 'VBO_UNREAD_MESSAGES':
7507 $result = __('Unread messages', 'vikbooking');
7508 break;
7509 case 'VBO_AI_LABEL_DEF':
7510 // @TRANSLATORS: Operation performed through Artificial Intelligence.
7511 $result = _x('AI ✨', 'Operation performed through Artificial Intelligence.', 'vikbooking');
7512 break;
7513 case 'VBO_PRIORITY_HIGH':
7514 // @TRANSLATORS: "High" priority.
7515 $result = _x('High', '"High" priority.', 'vikbooking');
7516 break;
7517 case 'VBO_PRIORITY_MEDIUM':
7518 // @TRANSLATORS: "Medium" priority.
7519 $result = _x('Medium', '"Medium" priority.', 'vikbooking');
7520 break;
7521 case 'VBO_PRIORITY_LOW':
7522 // @TRANSLATORS: "Low" priority.
7523 $result = _x('Low', '"Low" priority.', 'vikbooking');
7524 break;
7525 case 'VBO_SORT_BY_PRIORITY':
7526 $result = __('Sort by priority', 'vikbooking');
7527 break;
7528 case 'VBO_LISTING':
7529 $result = __('Listing', 'vikbooking');
7530 break;
7531 case 'VBO_GEN_CONTENT':
7532 $result = __('Generate content', 'vikbooking');
7533 break;
7534 case 'VBO_AI_GEN_CONTENT_INFO_HELP':
7535 $result = __('Enter the information to help the AI generate a proper content.', 'vikbooking');
7536 break;
7537 case 'VBO_AITOOL_WRITER_DEF_PROMPT':
7538 // @TRANSLATORS: AI Assistant default prompt for generating the content of an email message.
7539 $result = _x('Write the body of an email message to welcome a guest that is arriving next weekend.', 'AI Assistant default prompt for generating the content of an email message.', 'vikbooking');
7540 break;
7541 case 'VBO_AITOOL_WRITER_CONTENT':
7542 $result = __('Generated content', 'vikbooking');
7543 break;
7544 case 'VBO_AITOOL_WRITER_CONTENT_USE':
7545 $result = __('Use content', 'vikbooking');
7546 break;
7547 case 'VBO_AI_DISC_WRITER_FN_TEXT_GEN_TITLE':
7548 $result = __('Generate contents', 'vikbooking');
7549 break;
7550 case 'VBO_AI_DISC_WRITER_FN_TEXT_GEN_DESCR':
7551 $result = __('Generate texts with custom information in plain-text or HTML format for any use.', 'vikbooking');
7552 break;
7553 case 'VBO_AI_DISC_WRITER_FN_TEXT_GEN_REMINDER_SUMM':
7554 $result = __('Generate reminder messages.', 'vikbooking');
7555 break;
7556 case 'VBO_AI_DISC_WRITER_FN_TEXT_GEN_REMINDER_EXA':
7557 $result = __('Write a check-in reminder message for John Smith for tomorrow, by saying that the door code will be sent via email 1 hour before the arrival time.', 'vikbooking');
7558 break;
7559 case 'VBO_AI_DISC_WRITER_FN_TEXT_GEN_MESS_SUMM':
7560 $result = __('Write messages in a precise language.', 'vikbooking');
7561 break;
7562 case 'VBO_AI_DISC_WRITER_FN_TEXT_GEN_MESS_EXA':
7563 // @TRANSLATORS: Write a message for John Smith.
7564 $result = _x('Write a message for %s.', 'Write a message for John Smith.', 'vikbooking');
7565 break;
7566 case 'VBO_AI_GEN_MESS_LANG':
7567 // @TRANSLATORS: AI Assistant instruction for generating a message in a specific language.
7568 $result = _x('The language of the message should be: %s.', 'AI Assistant instruction for generating a message in a specific language.', 'vikbooking');
7569 break;
7570 case 'VBO_AITOOL_WRITER_CRON_DEF_PROMPT':
7571 $result = __('Write a message for a guest.', 'vikbooking');
7572 break;
7573 case 'VBO_AITOOL_WRITER_USE_PLACEHOLDERS':
7574 $result = __('Use some of the following placeholder tags, if needed.', 'vikbooking');
7575 break;
7576 case 'VBPICKUPROOM':
7577 $result = __('Check-in date', 'vikbooking');
7578 break;
7579 case 'VBRETURNROOM':
7580 $result = __('Check-out date', 'vikbooking');
7581 break;
7582 case 'VBO_MIN_STAY_NIGHTS':
7583 $result = __('Minimum stay: %d nights', 'vikbooking');
7584 break;
7585 case 'VBO_CLEAR_DATES':
7586 $result = __('Clear dates', 'vikbooking');
7587 break;
7588 case 'VBO_CLOSE':
7589 $result = __('Close', 'vikbooking');
7590 break;
7591 case 'VBO_AMENITIES':
7592 $result = __('Amenities', 'vikbooking');
7593 break;
7594 case 'VBO_OPTIMIZE_DB_RECORDS':
7595 $result = __('Optimize database records', 'vikbooking');
7596 break;
7597 case 'VBO_NO_MORE_MESSAGES':
7598 $result = __('There are no more messages.', 'vikbooking');
7599 break;
7600 case 'VBO_CONF_DEP_BALANCE_NDAYS':
7601 $result = __('Remaining balance shall be paid n days before arrival', 'vikbooking');
7602 break;
7603 case 'VBO_PAYMENT':
7604 $result = __('Payment', 'vikbooking');
7605 break;
7606 case 'VBO_PAY_WITH_ROOM':
7607 $result = __('Payment with room reservation', 'vikbooking');
7608 break;
7609 case 'VBO_PAY_SEPARATELY':
7610 $result = __('Separate payment', 'vikbooking');
7611 break;
7612 case 'VBO_PAYMENT_WINDOW':
7613 $result = __('Payment window', 'vikbooking');
7614 break;
7615 case 'VBO_DAYS_BEFORE_CHECKIN':
7616 $result = __('Days before check-in', 'vikbooking');
7617 break;
7618 case 'VBO_DD_RES_MAX_LOS':
7619 $result = __('Maximum booking nights', 'vikbooking');
7620 break;
7621 case 'VBO_DD_RES_MAX_LOS_HELP':
7622 $result = __('If the booking nights exceed the limit, payment will be requested together with the room reservation.', 'vikbooking');
7623 break;
7624 case 'VBO_USE_DEFAULT':
7625 $result = __('Use default', 'vikbooking');
7626 break;
7627 case 'VBO_NEW_MESSAGES':
7628 $result = __('There are new messages.', 'vikbooking');
7629 break;
7630 case 'VBO_SKIP_DERIVED_RPLANS':
7631 $result = __('Skip derived rate plans', 'vikbooking');
7632 break;
7633 case 'VBO_LISTINGS':
7634 $result = __('Listings', 'vikbooking');
7635 break;
7636 case 'VBO_PROFILE_SETTINGS':
7637 $result = __('Profile settings', 'vikbooking');
7638 break;
7639 case 'VBO_PROFILE_SETTINGS_HELP':
7640 $result = __('This report supports multiple profiles with different settings.', 'vikbooking');
7641 break;
7642 case 'VBO_PROFILE_NAME':
7643 $result = __('Profile name', 'vikbooking');
7644 break;
7645 case 'VBO_PROFILE_NEW':
7646 $result = __('New profile', 'vikbooking');
7647 break;
7648 case 'VBO_PRECHECKIN_COMPLETED':
7649 $result = __('Pre-checkin completed', 'vikbooking');
7650 break;
7651 case 'VBO_MISSING_GFIELD_REGISTRATION':
7652 // @TRANSLATORS: Please provide the information for the guest registration field "ID Number".
7653 $result = _x('Please provide the information for the guest registration field "%s".', 'e.g. Please provide the information for the guest registration field "ID Number".', 'vikbooking');
7654 break;
7655 case 'VBO_AITOOL_ORPHAN_DATES':
7656 $result = __('Orphan dates', 'vikbooking');
7657 break;
7658 case 'VBO_DAMAGE_DEPOSIT':
7659 $result = __('Damage deposit', 'vikbooking');
7660 break;
7661 case 'VBO_TOT_DAMAGE_DEPOSITS':
7662 $result = __('Total Damage Deposits', 'vikbooking');
7663 break;
7664 case 'VBO_FOREIGN_COUNTRIES':
7665 $result = __('Foreign countries', 'vikbooking');
7666 break;
7667 case 'VBO_TASK_MANAGER':
7668 $result = __('Task Manager', 'vikbooking');
7669 break;
7670 case 'VBO_TITLE_TASK_MANAGER':
7671 $result = __('Vik Booking - Task Manager', 'vikbooking');
7672 break;
7673 case 'VBO_TASK_DRIVER_CLEANING':
7674 $result = __('Housekeeping & Cleaning', 'vikbooking');
7675 break;
7676 case 'VBO_TASK_DRIVER_MAINTENANCE':
7677 $result = __('Maintenance', 'vikbooking');
7678 break;
7679 case 'VBO_TASKS':
7680 $result = __('Tasks', 'vikbooking');
7681 break;
7682 case 'VBO_AUTO_SCHEDULING':
7683 $result = __('Automatic scheduling', 'vikbooking');
7684 break;
7685 case 'VBO_AUTO_SCHEDULING_BOOKINGS_HELP':
7686 $result = __('If enabled, for every new booking, modification or cancellation, cleaning tasks will be automatically scheduled.', 'vikbooking');
7687 break;
7688 case 'VBO_AUTO_ASSIGNMENT':
7689 $result = __('Automatic assignment', 'vikbooking');
7690 break;
7691 case 'VBO_AUTO_ASSIGNMENT_HELP':
7692 $result = __('If enabled, cleaning tasks will be automatically assigned to the first available operator, if any.', 'vikbooking');
7693 break;
7694 case 'VBO_SCHEDULING':
7695 $result = __('Scheduling', 'vikbooking');
7696 break;
7697 case 'VBO_FREQUENCY':
7698 $result = __('Frequency', 'vikbooking');
7699 break;
7700 case 'VBO_TURNOVER':
7701 $result = __('Turnover', 'vikbooking');
7702 break;
7703 case 'VBO_DAILY':
7704 $result = __('Daily', 'vikbooking');
7705 break;
7706 case 'VBO_WEEKLY':
7707 $result = __('Weekly', 'vikbooking');
7708 break;
7709 case 'VBO_MONTHLY':
7710 $result = __('Monthly', 'vikbooking');
7711 break;
7712 case 'VBO_EVERY_2_DAYS':
7713 $result = __('Every two days', 'vikbooking');
7714 break;
7715 case 'VBO_EVERY_3_DAYS':
7716 $result = __('Every three days', 'vikbooking');
7717 break;
7718 case 'VBO_HIDE_ALL':
7719 $result = __('Hide all', 'vikbooking');
7720 break;
7721 case 'VBO_PROJECT_AREA':
7722 $result = __('Project / Area', 'vikbooking');
7723 break;
7724 case 'VBO_PROJECTS_AREAS':
7725 $result = __('Projects / Areas', 'vikbooking');
7726 break;
7727 case 'VBO_TASK_DRIVER_SPRINTBOARD':
7728 $result = __('Sprint Board', 'vikbooking');
7729 break;
7730 case 'VBO_NEW_TASK':
7731 $result = __('New task', 'vikbooking');
7732 break;
7733 case 'VBO_TAGS':
7734 $result = __('Tags', 'vikbooking');
7735 break;
7736 case 'VBO_TAGS_PLACEHOLDER':
7737 $result = __('Select tags or create new ones', 'vikbooking');
7738 break;
7739 case 'VBO_TAG':
7740 $result = __('Tag', 'vikbooking');
7741 break;
7742 case 'VBO_COLOR':
7743 $result = __('Color', 'vikbooking');
7744 break;
7745 case 'VBO_TITLE':
7746 $result = __('Title', 'vikbooking');
7747 break;
7748 case 'VBO_ASSIGNEES':
7749 $result = __('Assignees', 'vikbooking');
7750 break;
7751 case 'VBO_DUE_DATE':
7752 $result = __('Due', 'vikbooking');
7753 break;
7754 case 'VBO_TASK_STATUS_GROUP_TYPE_SCHEDULED':
7755 $result = __('Scheduled', 'vikbooking');
7756 break;
7757 case 'VBO_TASK_STATUS_GROUP_TYPE_ONGOING':
7758 $result = __('Ongoing', 'vikbooking');
7759 break;
7760 case 'VBO_TASK_STATUS_GROUP_TYPE_CLOSED':
7761 $result = __('Closed', 'vikbooking');
7762 break;
7763 case 'VBO_TASK_STATUS_TYPE_PENDING':
7764 $result = __('Pending', 'vikbooking');
7765 break;
7766 case 'VBO_TASK_STATUS_TYPE_NOTSTARTED':
7767 $result = __('Not started', 'vikbooking');
7768 break;
7769 case 'VBO_TASK_STATUS_TYPE_ACCEPTED':
7770 $result = __('Accepted', 'vikbooking');
7771 break;
7772 case 'VBO_TASK_STATUS_TYPE_INPROGRESS':
7773 $result = __('In progress', 'vikbooking');
7774 break;
7775 case 'VBO_TASK_STATUS_TYPE_PAUSED':
7776 $result = __('Paused', 'vikbooking');
7777 break;
7778 case 'VBO_TASK_STATUS_TYPE_COMPLETED':
7779 $result = __('Completed', 'vikbooking');
7780 break;
7781 case 'VBO_TASK_STATUS_TYPE_CANCELLED':
7782 $result = __('Cancelled', 'vikbooking');
7783 break;
7784 case 'VBO_TASK_STATUS_TYPE_ARCHIVED':
7785 $result = __('Archived', 'vikbooking');
7786 break;
7787 case 'VBO_TASK_STATUSES':
7788 $result = __('Task statuses', 'vikbooking');
7789 break;
7790 case 'VBO_TASK_STATUSES_PLACEHOLDER':
7791 $result = __('Select some task status options', 'vikbooking');
7792 break;
7793 case 'VBO_TASK':
7794 $result = __('Task', 'vikbooking');
7795 break;
7796 case 'VBO_WORK_DAYS':
7797 $result = __('Work days', 'vikbooking');
7798 break;
7799 case 'VBO_WORK_DAYS_OFF':
7800 $result = __('Days off', 'vikbooking');
7801 break;
7802 case 'VBO_WORK_DAYS_ON':
7803 $result = __('Extra work days', 'vikbooking');
7804 break;
7805 case 'VBO_TM_SCHED_CLEANING_TURNOVER':
7806 $result = __('Turnover Cleaning', 'vikbooking');
7807 break;
7808 case 'VBO_TM_SCHED_MAINTENANCE_TURNOVER':
7809 $result = __('Turnover Maintenance', 'vikbooking');
7810 break;
7811 case 'VBO_TM_SCHED_CLEANING_DAILY':
7812 $result = __('Daily Cleaning', 'vikbooking');
7813 break;
7814 case 'VBO_TM_SCHED_MAINTENANCE_DAILY':
7815 $result = __('Daily Maintenance', 'vikbooking');
7816 break;
7817 case 'VBO_TM_SCHED_CLEANING_WEEKLY':
7818 $result = __('Weekly Cleaning', 'vikbooking');
7819 break;
7820 case 'VBO_TM_SCHED_MAINTENANCE_WEEKLY':
7821 $result = __('Weekly Maintenance', 'vikbooking');
7822 break;
7823 case 'VBO_TM_SCHED_CLEANING_MONTHLY':
7824 $result = __('Monthly Cleaning', 'vikbooking');
7825 break;
7826 case 'VBO_TM_SCHED_MAINTENANCE_MONTHLY':
7827 $result = __('Monthly Maintenance', 'vikbooking');
7828 break;
7829 case 'VBOBOOKHISTORYTTM':
7830 $result = __('Task Manager', 'vikbooking');
7831 break;
7832 case 'VBOBOOKHISTORYTNT':
7833 $result = __('Tasks created', 'vikbooking');
7834 break;
7835 case 'VBOBOOKHISTORYTMT':
7836 $result = __('Tasks modified', 'vikbooking');
7837 break;
7838 case 'VBOBOOKHISTORYTCT':
7839 $result = __('Tasks cancelled', 'vikbooking');
7840 break;
7841 case 'VBO_BOARD':
7842 $result = __('Board', 'vikbooking');
7843 break;
7844 case 'VBO_LIST':
7845 $result = __('List', 'vikbooking');
7846 break;
7847 case 'VBO_ADD_TITLE':
7848 $result = __('Add Title', 'vikbooking');
7849 break;
7850 case 'VBO_ASSIGNEE':
7851 $result = __('Assignee', 'vikbooking');
7852 break;
7853 case 'VBO_UNASSIGNED':
7854 $result = __('Unassigned', 'vikbooking');
7855 break;
7856 case 'VBO_THIS_WEEK':
7857 $result = __('This week', 'vikbooking');
7858 break;
7859 case 'VBO_THIS_MONTH':
7860 $result = __('This month', 'vikbooking');
7861 break;
7862 case 'VBO_CUSTOM':
7863 $result = __('Custom', 'vikbooking');
7864 break;
7865 case 'VBO_NO_MORE_RECORDS':
7866 $result = __('There are no more records.', 'vikbooking');
7867 break;
7868 case 'VBO_LOAD_MORE':
7869 $result = __('Load more', 'vikbooking');
7870 break;
7871 case 'VBO_DURATION':
7872 $result = __('Duration', 'vikbooking');
7873 break;
7874 case 'VBO_DEF_TASK_DURATION':
7875 $result = __('Default task duration', 'vikbooking');
7876 break;
7877 case 'VBO_DEF_TASK_DURATION_HELP':
7878 $result = __('The default duration in minutes for the tasks.', 'vikbooking');
7879 break;
7880 case 'VBO_BEGIN_DATE':
7881 $result = __('Started', 'vikbooking');
7882 break;
7883 case 'VBO_FINISH_DATE':
7884 $result = __('Finished', 'vikbooking');
7885 break;
7886 case 'VBO_ACCEPT_TASKS':
7887 $result = __('Accept tasks', 'vikbooking');
7888 break;
7889 case 'VBO_ADD_TO_QUEUE':
7890 $result = __('Add to queue', 'vikbooking');
7891 break;
7892 case 'VBO_PENDING_QUEUE':
7893 $result = __('Pending Updates', 'vikbooking');
7894 break;
7895 case 'VBO_CHAT_YOU':
7896 $result = __('You', 'vikbooking');
7897 break;
7898 case 'VBO_CHAT_TEXTAREA_PLACEHOLDER':
7899 $result = __('Type your message...', 'vikbooking');
7900 break;
7901 case 'VBO_CHAT_SENDING_ERR':
7902 $result = __('An error occurred while sending the message. Please, try again.', 'vikbooking');
7903 break;
7904 case 'VBO_ATTACH':
7905 $result = __('Attach Files', 'vikbooking');
7906 break;
7907 case 'VBO_W_OPERATORSCHAT_TITLE':
7908 $result = __('Operators Chat', 'vikbooking');
7909 break;
7910 case 'VBO_W_OPERATORSCHAT_DESCR':
7911 $result = __('The operators chat interface to handle conversations about various contexts.', 'vikbooking');
7912 break;
7913 case 'VBO_CHAT_SEE_TASK':
7914 $result = __('View task', 'vikbooking');
7915 break;
7916 case 'VBO_CHAT_THREADS_EMPTY_TITLE':
7917 $result = __('No conversation started yet.', 'vikbooking');
7918 break;
7919 case 'VBO_CHAT_THREADS_EMPTY_SUBTITLE':
7920 $result = __('You can start a new conversation from pages that support an internal chat system, such as the task management page.', 'vikbooking');
7921 break;
7922 case 'VBO_CHAT_CONV_EMPTY_SUBTITLE':
7923 $result = __('Choose a thread to open the chat.', 'vikbooking');
7924 break;
7925 case 'VBO_CHAT_MESSAGE_MAIL_NOTIFICATION_SUBJECT':
7926 $result = _x('{context} - New message from {sender}', 'Template string with placeholder tags', 'vikbooking');
7927 break;
7928 case 'VBO_CHAT_MESSAGE_MAIL_NOTIFICATION_BODY':
7929 $result = _x('<p>Hi {recipient},</p><p>{sender} left a message in the <strong>{context}</strong> conversation.</p><p>{sender} said:</p><blockquote>{message}</blockquote><br><br><p>Please respond by visiting the following link:<br><a href="{url}" target="_blank">{url}</a></p>', 'Template string with placeholder and HTML tags', 'vikbooking');
7930 break;
7931 case 'VBO_CHAT_MESSAGE_MAIL_NOTIFICATION_NOCONT':
7932 $result = __('- Blank message -', 'vikbooking');
7933 break;
7934 case 'VBO_SEARCH_TASKS':
7935 $result = __('Search Tasks', 'vikbooking');
7936 break;
7937 case 'VBO_TASK_NO_ASSIGNEES':
7938 $result = __('No assignees', 'vikbooking');
7939 break;
7940 case 'VBO_HISTORY_TRACKER_TITLE_CHANGED':
7941 $result = _x('Title changed from <strong>%s</strong> to <strong>%s</strong>.', 'Task title modified.', 'vikbooking');
7942 break;
7943 case 'VBO_HISTORY_TRACKER_DESCRIPTION_CHANGED':
7944 $result = __('Notes changed.', 'vikbooking');
7945 break;
7946 case 'VBO_HISTORY_TRACKER_STATUS_CHANGED':
7947 $result = _x('Status changed from %s to %s.', 'Task status modified.', 'vikbooking');
7948 break;
7949 case 'VBO_HISTORY_TRACKER_DUEDATE_CHANGED':
7950 $result = _x('Due date changed from <em>%s</em> to <em>%s</em>.', 'Task due date modified.', 'vikbooking');
7951 break;
7952 case 'VBO_HISTORY_TRACKER_BOOKING_ADDED':
7953 $result = _x('Assigned booking %s.', 'Assigned booking number to task.', 'vikbooking');
7954 break;
7955 case 'VBO_HISTORY_TRACKER_BOOKING_REMOVED':
7956 $result = _x('Unassigned booking %s.', 'Unassigned previous booking number from task.', 'vikbooking');
7957 break;
7958 case 'VBO_HISTORY_TRACKER_BOOKING_CHANGED':
7959 $result = _x('Booking changed from %s to %s.', 'Task booking assigned modified.', 'vikbooking');
7960 break;
7961 case 'VBO_HISTORY_TRACKER_TAG_ADDED':
7962 $result = _x('Added %s tag.', 'Added "Turnover Cleaning" tag.', 'vikbooking');
7963 break;
7964 case 'VBO_HISTORY_TRACKER_TAGS_ADDED':
7965 $result = _x('Added tags %s and %s.', 'Added tags "Turnover Cleaning", "Deep Cleaning" and "Important".', 'vikbooking');
7966 break;
7967 case 'VBO_HISTORY_TRACKER_TAG_REMOVED':
7968 $result = _x('Removed %s tag.', 'Removed "Important" tag.', 'vikbooking');
7969 break;
7970 case 'VBO_HISTORY_TRACKER_TAGS_REMOVED':
7971 $result = _x('Removed tags %s and %s.', 'Removed tags "Turnover Cleaning", "Deep Cleaning" and "Important".', 'vikbooking');
7972 break;
7973 case 'VBO_HISTORY_TRACKER_ASSIGNEE_ADDED':
7974 $result = __('Added %s to assignees.', 'Added "John Smith" to assignees.', 'vikbooking');
7975 break;
7976 case 'VBO_HISTORY_TRACKER_ASSIGNEES_ADDED':
7977 $result = _x('Added %s and %s to assignees.', 'Added "John Smith", "John Doe" and "Jane Doe" to assignees.', 'vikbooking');
7978 break;
7979 case 'VBO_HISTORY_TRACKER_ASSIGNEE_REMOVED':
7980 $result = _x('Removed %s from assignees.', 'Removed "Jane Doe" from assignees.', 'vikbooking');
7981 break;
7982 case 'VBO_HISTORY_TRACKER_ASSIGNEES_REMOVED':
7983 $result = _x('Removed %s and %s from assignees.', 'Removed "John Smith", "John Doe" and "Jane Doe" from assignees.', 'vikbooking');
7984 break;
7985 case 'VBO_HISTORY_TRACKER_ROOM_ADDED':
7986 $result = _x('Assigned listing <strong>%s</strong>.', 'Assigned listing to task.', 'vikbooking');
7987 break;
7988 case 'VBO_HISTORY_TRACKER_ROOM_REMOVED':
7989 $result = _x('Unassigned listing <strong>%s</strong>.', 'Unassigned previous listing from task.', 'vikbooking');
7990 break;
7991 case 'VBO_HISTORY_TRACKER_ROOM_CHANGED':
7992 $result = _x('Listing changed from <strong>%s</strong> to <strong>%s</strong>.', 'Task listing assigned modified.', 'vikbooking');
7993 break;
7994 case 'VBO_HISTORY_TRACKER_TASK_CREATED':
7995 $result = __('Task created.', 'vikbooking');
7996 break;
7997 case 'VBO_HISTORY_SHOW_ACTIVITIES':
7998 $result = __('Show activities', 'vikbooking');
7999 break;
8000 case 'VBO_HISTORY_HIDE_ACTIVITIES':
8001 $result = __('Hide activities', 'vikbooking');
8002 break;
8003 case 'VBO_SCHEDULED_ACTIVITY':
8004 $result = __('Scheduled activity', 'vikbooking');
8005 break;
8006 case 'VBO_AITOOL_WRITER_TM_DEF_PROMPT':
8007 $result = __('Describe the important notes for a listing cleaning task.', 'vikbooking');
8008 break;
8009 case 'VBO_TASK_STATUS_CHANGED_MESSAGE':
8010 $result = __('I\'ve changed the task status to %s.', 'vikbooking');
8011 break;
8012 case 'VBO_TM_AREAS_BLANK_TITLE':
8013 $result = __('No Projects/Areas Available', 'vikbooking');
8014 break;
8015 case 'VBO_TM_AREAS_BLANK_SUBTITLE':
8016 $result = __('Create a new project/area to start organizing your tasks.', 'vikbooking');
8017 break;
8018 case 'VBO_TM_AREAS_BLANK_ADD_BTN':
8019 $result = __('New project/area', 'vikbooking');
8020 break;
8021 case 'VBO_CRON_OPERATORS_REMINDER':
8022 $result = __('Operators reminder', 'vikbooking');
8023 break;
8024 case 'VBO_YOUR_UPCOMING_TASKS':
8025 $result = __('Your upcoming tasks', 'vikbooking');
8026 break;
8027 case 'VBO_TASK_STATUSES_DESC':
8028 $result = __('Select the eligible statuses for the tasks of this project.', 'vikbooking');
8029 break;
8030 case 'VBO_TASK_TAGS_DESC':
8031 $result = __('Tags are useful to categorize your tasks.', 'vikbooking');
8032 break;
8033 case 'VBO_TASK_OPERATORS_DESC':
8034 $result = __('Select the eligible operators for the project.', 'vikbooking');
8035 break;
8036 case 'VBO_TASK_LISTINGS_DESC':
8037 $result = __('Select the eligible listings for the project.', 'vikbooking');
8038 break;
8039 case 'VBO_TASK_AREA_PRIVATE':
8040 $result = __('Private', 'vikbooking');
8041 break;
8042 case 'VBO_TASK_AREA_PRIVATE_HELP':
8043 $result = __('Private projects are not visible to operators.', 'vikbooking');
8044 break;
8045 case 'VBO_TASK_NOTIF_SCHEDULING_UNASSIGNED_TITLE':
8046 $result = __('Task assignment failure', 'vikbooking');
8047 break;
8048 case 'VBO_TASK_NOTIF_SCHEDULING_UNASSIGNED_SUMMARY':
8049 $result = __('Could not assign task "%s" to any operator.', 'vikbooking');
8050 break;
8051 case 'VBO_OPERATOR_NO_TOOL_PERMS':
8052 $result = __('No capabilities for the current operator to access this resource. Click the save button to grant the permissions.', 'vikbooking');
8053 break;
8054 case 'VBO_DAY_OFF':
8055 $result = __('Day off', 'vikbooking');
8056 break;
8057 case 'VBO_WORKING_HOURS':
8058 $result = __('Working hours', 'vikbooking');
8059 break;
8060 case 'VBO_EXCEPTIONS':
8061 $result = __('Exceptions', 'vikbooking');
8062 break;
8063 case 'VBO_WORK_DAYS_WEEK_HELP':
8064 $result = __('Set the default weekly workdays. The number of working hours per day is used by the Task Manager to automatically assign tasks to the operator based on their estimated duration.', 'vikbooking');
8065 break;
8066 case 'VBO_WORK_DAYS_EXCEPTIONS_HELP':
8067 $result = __('Set exceptions to the default schedule by defining specific days off or additional availability for particular dates.', 'vikbooking');
8068 break;
8069 case 'VBO_CHANGE_LINENS':
8070 $result = __('Change Linens', 'vikbooking');
8071 break;
8072 case 'VBO_SUPERVISOR_REVIEW':
8073 $result = __('Supervisor Review', 'vikbooking');
8074 break;
8075 case 'VBO_DEEP_CLEANING':
8076 $result = __('Deep Cleaning', 'vikbooking');
8077 break;
8078 case 'VBO_INSPECTION_NEEDED':
8079 $result = __('Inspection Needed', 'vikbooking');
8080 break;
8081 case 'VBO_GUEST_REQUEST':
8082 $result = __('Guest Request', 'vikbooking');
8083 break;
8084 case 'VBO_MAINTENANCE_ALERT':
8085 $result = __('Maintenance Alert', 'vikbooking');
8086 break;
8087 case 'VBO_NO_SERVICE_REQUESTED':
8088 $result = __('No Service Requested', 'vikbooking');
8089 break;
8090 case 'VBO_HIGH_PRIORITY':
8091 $result = __('High Priority', 'vikbooking');
8092 break;
8093 case 'VBO_CHARGE_AUTHORIZED_CARD':
8094 $result = __('Charge Authorized Card', 'vikbooking');
8095 break;
8096 case 'VBO_TM_SCHED_CLEANING_PREARRIVAL':
8097 $result = __('Pre-arrival Cleaning', 'vikbooking');
8098 break;
8099 case 'VBO_TM_SCHED_MAINTENANCE_PREARRIVAL':
8100 $result = __('Pre-arrival Maintenance', 'vikbooking');
8101 break;
8102 case 'VBO_PREARRIVAL':
8103 $result = __('Pre-arrival', 'vikbooking');
8104 break;
8105 case 'VBO_TM_OP_ASSIGN_STRATEGY':
8106 $result = __('Tasks assignment strategy', 'vikbooking');
8107 break;
8108 case 'VBO_TM_OP_ASSIGN_STRATEGY_HELP':
8109 $result = __('Choose how new tasks are assigned to operators. Balanced: Distributes tasks evenly across all available operators. Sequential: Fills one operator\'s schedule before assigning tasks to the next.', 'vikbooking');
8110 break;
8111 case 'VBO_TM_OP_ASSIGN_STRATEGY_BALANCED':
8112 $result = __('Balanced', 'vikbooking');
8113 break;
8114 case 'VBO_TM_OP_ASSIGN_STRATEGY_SEQUENTIAL':
8115 $result = __('Sequential', 'vikbooking');
8116 break;
8117 case 'VBO_HOLDING_AREA':
8118 $result = __('Holding Area', 'vikbooking');
8119 break;
8120 case 'VBDISMISS':
8121 $result = __('Ignore', 'vikbooking');
8122 break;
8123 case 'VBO_TRY_IT':
8124 $result = __('Try it', 'vikbooking');
8125 break;
8126 case 'VBO_SCHEDULE_CRONJOB':
8127 $result = __('Schedule action', 'vikbooking');
8128 break;
8129 case 'VBO_HELP_WIZARD_GENERAL_BASE_COUNTRY':
8130 $result = __('Main country', 'vikbooking');
8131 break;
8132 case 'VBO_HELP_WIZARD_GENERAL_BASE_COUNTRY_SUMMARY':
8133 $result = __('Choose the country and the state/province (if requested) where your main property is located. This information will eventually help you configure some local integrations.', 'vikbooking');
8134 break;
8135 case 'VBO_HELP_WIZARD_GENERAL_BASE_COUNTRY_VALUE_DESC':
8136 $result = __('If you manage properties in different countries, choose only the main one.', 'vikbooking');
8137 break;
8138 case 'VBO_HELP_WIZARD_GENERAL_BASE_COUNTRY_STATE_DESC':
8139 $result = __('If you manage properties in different states/provinces, choose only the main one.', 'vikbooking');
8140 break;
8141 case 'VBO_HELP_WIZARD_GENERAL_CRON_PRECHECKIN':
8142 $result = __('Reminder - Pre-checkin', 'vikbooking');
8143 break;
8144 case 'VBO_HELP_WIZARD_GENERAL_CRON_PRECHECKIN_SUMMARY':
8145 $result = __('Configure an automated action to remind your guests to complete the pre-check-in online before their stay.', 'vikbooking');
8146 break;
8147 case 'VBO_HELP_WIZARD_GENERAL_HOUSEKEEPING':
8148 $result = __('Housekeeping management', 'vikbooking');
8149 break;
8150 case 'VBO_HELP_WIZARD_GENERAL_HOUSEKEEPING_SUMMARY':
8151 $result = __('<p>Thanks to the Task Manager, you can schedule in an efficient and organized way the housekeeping tasks for your properties. This will let you save time, and it will improve the communication with the housekeeping staff.</p><ul><li>Automatic scheduling of cleaning tasks (turnover, daily, weekly cleanings)</li><li>Built-in chat system between the managers and the operators for real-time updates</li><li>Interactive calendar to view and manage the every-day tasks</li></ul><p>Click the button below to start setting up your first area/project.</p>', 'vikbooking');
8152 break;
8153 case 'VBO_HOLDING_AREA_NO_SWAP':
8154 $result = __('Room reservations in the holding area can only be moved onto free nights.', 'vikbooking');
8155 break;
8156 case 'VBO_SELECT_BOOKING':
8157 $result = __('Select booking', 'vikbooking');
8158 break;
8159 case 'VBO_UNASSIGNED_ROW_FORBID':
8160 $result = __('Reservations cannot be moved onto this row.', 'vikbooking');
8161 break;
8162 case 'VBO_DROP_FILES_TO_UPLOAD':
8163 $result = __('Drop your files here to upload them.', 'vikbooking');
8164 break;
8165 case 'VBO_GUESTS_REGISTRATION_DATA':
8166 $result = __('Guests Registration Data', 'vikbooking');
8167 break;
8168 case 'VBO_TURNOVER_TIME_WARNING':
8169 $result = __('Check-in must be later than check-out. Otherwise, an extra turnover night will be added after each stay.', 'vikbooking');
8170 break;
8171 case 'VBO_POSITION':
8172 $result = __('Position', 'vikbooking');
8173 break;
8174 case 'VBO_CURRENCY_POS_BEFORE':
8175 $result = __('Before price', 'vikbooking');
8176 break;
8177 case 'VBO_CURRENCY_POS_AFTER':
8178 $result = __('After price', 'vikbooking');
8179 break;
8180 case 'VBO_MIN_ADV_BOOK_NOTICE':
8181 $result = __('Minimum advance booking notice', 'vikbooking');
8182 break;
8183 case 'VBO_SEARCH_FILTERS':
8184 $result = __('Search Filters', 'vikbooking');
8185 break;
8186 case 'VBO_EXPECTED_PAYOUT':
8187 $result = __('Expected payout', 'vikbooking');
8188 break;
8189 case 'VBO_REPEAT':
8190 $result = __('Repeat', 'vikbooking');
8191 break;
8192 case 'VBO_W_DOORACCESSCONTROL_TITLE':
8193 $result = __('Door Access Control', 'vikbooking');
8194 break;
8195 case 'VBO_W_DOORACCESSCONTROL_DESCR':
8196 $result = __('Manage integrations with supported smart lock and door access providers.', 'vikbooking');
8197 break;
8198 case 'VBO_PROVIDER':
8199 $result = __('Provider', 'vikbooking');
8200 break;
8201 case 'VBO_DEVICES':
8202 $result = __('Devices', 'vikbooking');
8203 break;
8204 case 'VBO_CONNECTED_LISTINGS':
8205 $result = __('Connected listings', 'vikbooking');
8206 break;
8207 case 'VBO_PASSCODE_GENERATION':
8208 $result = __('Passcode generation', 'vikbooking');
8209 break;
8210 case 'VBO_AT_TIME_BOOKING':
8211 $result = __('At the time of booking', 'vikbooking');
8212 break;
8213 case 'VBO_BEFORE_CHECKIN':
8214 $result = __('Before check-in', 'vikbooking');
8215 break;
8216 case 'VBO_SYNC':
8217 $result = __('Synchronize', 'vikbooking');
8218 break;
8219 case 'VBO_LOCK':
8220 $result = __('Lock', 'vikbooking');
8221 break;
8222 case 'VBO_LIST_PASSCODES':
8223 $result = __('List Passcodes', 'vikbooking');
8224 break;
8225 case 'VBO_SEARCH_PASSCODE':
8226 $result = __('Search Passcode', 'vikbooking');
8227 break;
8228 case 'VBO_OPT_SEARCH_KEYWORD':
8229 $result = __('Optional search keyword.', 'vikbooking');
8230 break;
8231 case 'VBO_CREATE_PASSCODE':
8232 $result = __('Create Passcode', 'vikbooking');
8233 break;
8234 case 'VBO_PASSCODE_NAME':
8235 $result = __('Passcode Name', 'vikbooking');
8236 break;
8237 case 'VBO_OPT_PASSCODE_NAME':
8238 $result = __('Optional passcode name for an easier identification.', 'vikbooking');
8239 break;
8240 case 'VBO_PASSCODE_VALID_START':
8241 $result = __('Passcode validity start date and time.', 'vikbooking');
8242 break;
8243 case 'VBO_PASSCODE_VALID_END':
8244 $result = __('Passcode validity end date and time.', 'vikbooking');
8245 break;
8246 case 'VBO_DELETE_PASSCODE':
8247 $result = __('Delete Passcode', 'vikbooking');
8248 break;
8249 case 'VBO_UNLOCK_DEVICE_HELP':
8250 $result = __('Unlock the device to grant entry.', 'vikbooking');
8251 break;
8252 case 'VBO_LOCK_DEVICE_HELP':
8253 $result = __('Lock the device to restrict entry.', 'vikbooking');
8254 break;
8255 case 'VBO_LIST_PASSCODES_HELP':
8256 $result = __('List all the device passcodes.', 'vikbooking');
8257 break;
8258 case 'VBO_CREATE_PASSCODE_HELP':
8259 $result = __('Create a random passcode for the device.', 'vikbooking');
8260 break;
8261 case 'VBO_DELETE_PASSCODE_HELP':
8262 $result = __('Delete a passcode from the device.', 'vikbooking');
8263 break;
8264 case 'VBO_CREATE_PASSCODECUST':
8265 $result = __('Create Custom Passcode', 'vikbooking');
8266 break;
8267 case 'VBO_CREATE_PASSCODECUST_HELP':
8268 $result = __('Create a custom passcode for the device.', 'vikbooking');
8269 break;
8270 case 'VBO_PASSCODE':
8271 $result = __('Passcode', 'vikbooking');
8272 break;
8273 case 'VBO_AI_SUPPORT':
8274 $result = __('AI Support', 'vikbooking');
8275 break;
8276 case 'VBO_TASK_AI_SUPPORT_HELP':
8277 $result = __('Allow AI assistants to schedule tasks from guest requests.', 'vikbooking');
8278 break;
8279 case 'VBO_NOTIFS_GROUP_DAC':
8280 $result = __('Access Control', 'vikbooking');
8281 break;
8282 case 'VBOBOOKHISTORYTND':
8283 $result = __('Access Control - New Passcode', 'vikbooking');
8284 break;
8285 case 'VBOBOOKHISTORYTMD':
8286 $result = __('Access Control - Passcode Modified', 'vikbooking');
8287 break;
8288 case 'VBOBOOKHISTORYTCD':
8289 $result = __('Access Control - Passcode Cancelled', 'vikbooking');
8290 break;
8291 case 'VBO_PASSCODE_GEN_OK_DEVICE':
8292 // @TRANSLATORS: Door Access Control framework successfully generated a passcode to open a lock.
8293 $result = _x('Passcode %s successfully generated for the device "%s".', 'Door Access Control framework successfully generated a passcode to open a lock.', 'vikbooking');
8294 break;
8295 case 'VBO_PASSCODE_DEL_OK_DEVICE':
8296 // @TRANSLATORS: Door Access Control framework successfully deleted a passcode for a lock.
8297 $result = _x('The passcode was successfully deleted from the device "%s".', 'Door Access Control framework successfully deleted a passcode for a lock.', 'vikbooking');
8298 break;
8299 case 'VBO_DAC_AI_SUPPORT_HELP':
8300 $result = __('Allow AI assistants to share access codes or unlock doors upon guest requests during their stay.', 'vikbooking');
8301 break;
8302 case 'VBO_PASSCODES':
8303 $result = __('Passcodes', 'vikbooking');
8304 break;
8305 case 'VBO_PASSCODES_QUANT_HELP':
8306 $result = __('For listings with multiple devices, you can choose to use the same passcode for all devices or generate a unique passcode for each one.', 'vikbooking');
8307 break;
8308 case 'VBO_ONE_PER_DEVICE':
8309 $result = __('One per device', 'vikbooking');
8310 break;
8311 case 'VBO_ONE_PER_BOOKING':
8312 $result = __('One per booking', 'vikbooking');
8313 break;
8314 case 'VBO_CHOOSE_DEVICE':
8315 $result = __('Choose a device from the list.', 'vikbooking');
8316 break;
8317 case 'VBO_AUTOPAY_COLLECT_HELP':
8318 $result = __('If enabled, the balance of OTA reservations paid with a Virtual Credit Card will be automatically collected on the card\'s activation date (requires an eligible payment processor).', 'vikbooking');
8319 break;
8320 case 'VBO_PASSCODE_EMPTY_HELP':
8321 $result = __('Leave empty to generate a random passcode.', 'vikbooking');
8322 break;
8323 case 'VBO_SEL_TIME_OP_RUN':
8324 $result = __('Select the time when the operation should run.', 'vikbooking');
8325 break;
8326 case 'VBO_DB_OPTIM_DURATION':
8327 // @TRANSLATORS: i.e. Database optimization completed in 20 seconds.
8328 $result = _x('Database optimization completed in %d seconds.', 'i.e. Database optimization completed in 20 seconds.', 'vikbooking');
8329 break;
8330 case 'VBO_MAINTENANCE':
8331 $result = __('Maintenance', 'vikbooking');
8332 break;
8333 case 'VBO_ACTIVITY_LOGS':
8334 $result = __('Activity Logs', 'vikbooking');
8335 break;
8336 case 'VBO_ACTIVITY_LOGS_HELP':
8337 $result = __('View all recorded activities for the device.', 'vikbooking');
8338 break;
8339 case 'VBO_NOTIFY_FIRST_ACCESS':
8340 $result = __('Notify on first access', 'vikbooking');
8341 break;
8342 case 'VBO_NOTIFY_FIRST_ACCESS_HELP':
8343 $result = __('Get notified when the generated access code is used for the first time.', 'vikbooking');
8344 break;
8345 case 'VBOBOOKHISTORYTFA':
8346 $result = __('Access Control - First Access', 'vikbooking');
8347 break;
8348 case 'VBO_VARIATION':
8349 $result = __('Variation', 'vikbooking');
8350 break;
8351 case 'VBO_RMS':
8352 $result = __('Revenue Manager', 'vikbooking');
8353 break;
8354 case 'VBO_RMS_BOOKING_PACE':
8355 $result = __('RMS - Booking Pace', 'vikbooking');
8356 break;
8357 case 'VBO_RMS_OCCUPANCY_PACE':
8358 $result = __('RMS - Occupancy Pace', 'vikbooking');
8359 break;
8360 case 'VBO_NEW_BOOKINGS':
8361 $result = __('New Bookings', 'vikbooking');
8362 break;
8363 case 'VBO_SAMET_YEARS_AGO':
8364 // @TRANSLATORS: i.e. "Same time 2 years ago" or "Same time 3 years ago"
8365 $result = _x('Same time %d years ago', 'i.e. "Same time 2 years ago" or "Same time 3 years ago"', 'vikbooking');
8366 break;
8367 case 'VBO_SAMET_LAST_YEAR':
8368 $result = __('Same time last year', 'vikbooking');
8369 break;
8370 case 'VBO_PICKUP_DATE':
8371 $result = __('Pickup date', 'vikbooking');
8372 break;
8373 case 'VBO_PICKUP_DATE_START':
8374 $result = __('Pickup date start', 'vikbooking');
8375 break;
8376 case 'VBO_PICKUP_DATE_END':
8377 $result = __('Pickup date end', 'vikbooking');
8378 break;
8379 case 'VBO_TARGET_DATE':
8380 $result = __('Target date', 'vikbooking');
8381 break;
8382 case 'VBO_TARGET_DATE_START':
8383 $result = __('Target date start', 'vikbooking');
8384 break;
8385 case 'VBO_TARGET_DATE_END':
8386 $result = __('Target date end', 'vikbooking');
8387 break;
8388 case 'VBO_COMPARE_AGAINST':
8389 $result = __('Compare against', 'vikbooking');
8390 break;
8391 case 'VBO_ALIGN_WEEKDAYS':
8392 $result = __('Align by weekday', 'vikbooking');
8393 break;
8394 case 'VBO_RATE_HISTORY':
8395 $result = __('Rate History', 'vikbooking');
8396 break;
8397 case 'VBO_PREV':
8398 // @TRANSLATORS: Short version of "Previous"
8399 $result = _x('Prev', 'Short version of "Previous"', 'vikbooking');
8400 break;
8401 case 'VBO_NEXT':
8402 // @TRANSLATORS: Can be displayed next to "Prev", so use a short form when translating
8403 $result = _x('Next', 'Can be displayed next to "Prev", so use a short form when translating', 'vikbooking');
8404 break;
8405 case 'VBO_W_AITRAININGDRAFTS_TITLE':
8406 $result = __('AI - Training Drafts', 'vikbooking');
8407 break;
8408 case 'VBO_W_AITRAININGDRAFTS_DESCR':
8409 $result = __('Review and approve AI-generated training drafts before they are used.', 'vikbooking');
8410 break;
8411 case 'VBO_REVIEW_TRAINING_DRAFT':
8412 $result = __('Review training draft', 'vikbooking');
8413 break;
8414 case 'VBO_APPROVE':
8415 $result = __('Approve', 'vikbooking');
8416 break;
8417 case 'VBO_REJECT':
8418 $result = __('Reject', 'vikbooking');
8419 break;
8420 case 'VBO_AITRAININGDRAFTS_SUMMARY_COUNT':
8421 // @TRANSLATORS: Plural form for "Review %d new training drafts created from your guest replies to enable future automated responses."
8422 $result = _x('Review %d new training drafts created from your guest replies to enable future automated responses.', 'Plural form for "Review %d new training drafts created from your guest replies to enable future automated responses."', 'vikbooking');
8423 break;
8424 case 'VBO_AITRAININGDRAFTS_SUMMARY_COUNT_1':
8425 $result = __('Review one new training draft created from your guest replies to enable future automated responses.', 'vikbooking');
8426 break;
8427 case 'VBO_CUSTOMERS_SHORT_PIN_ALERT':
8428 $result = __('Warning: some customer records are using short, numeric and insecure PIN codes.', 'vikbooking');
8429 break;
8430 case 'VBO_CANC_DATE':
8431 $result = __('Cancellation date', 'vikbooking');
8432 break;
8433 case 'VBO_SET_FIXED_RATE':
8434 $result = __('Set Fixed Rate', 'vikbooking');
8435 break;
8436 case 'VBO_INCR_DECR_RATES':
8437 $result = __('Increase/Decrease Rates', 'vikbooking');
8438 break;
8439 case 'VBO_SHOW_OTA_RATES':
8440 $result = __('Display OTA Rates', 'vikbooking');
8441 break;
8442 case 'VBO_PASSCODE_UPD_OK_DEVICE':
8443 // @TRANSLATORS: Door Access Control framework successfully updated a passcode for a lock.
8444 $result = _x('The passcode was successfully updated on the device "%s".', 'Door Access Control framework successfully updated a passcode for a lock.', 'vikbooking');
8445 break;
8446 case 'VBO_UPDATE_PASSCODE':
8447 $result = __('Update Passcode', 'vikbooking');
8448 break;
8449 case 'VBO_UPDATE_PASSCODE_HELP':
8450 $result = __('Update a passcode on the device.', 'vikbooking');
8451 break;
8452 case 'VBO_ENABLED_FOR_ALL_BOOKINGS':
8453 $result = __('Enabled for all bookings', 'vikbooking');
8454 break;
8455 case 'VBO_AUTO_PAY_COLLECT_ENABLE_CONF':
8456 $result = __('Enabling Automatic Payment Collection will schedule charges for all eligible bookings on the provided credit card at its activation date and time.', 'vikbooking');
8457 break;
8458 case 'VBO_AUTO_PAY_COLLECT_DISABLE_CONF':
8459 $result = __('Disabling Automatic Payment Collection will stop all automatic credit card charges for OTA bookings and require payments to be collected manually.', 'vikbooking');
8460 break;
8461 case 'VBO_AUTO_PAY_COLLECT_HELP':
8462 $result = __('Automatic payment collection is enabled for all bookings. Charges will be automatically scheduled upon receiving the OTA notification for the card activation date.', 'vikbooking');
8463 break;
8464 case 'VBO_INLINE_SCROLL':
8465 $result = __('Inline-Scroll', 'vikbooking');
8466 break;
8467 }
8468
8469 return $result;
8470 }
8471 }
8472