PluginProbe
VikBooking Hotel Booking Engine & PMS / trunk
VikBooking Hotel Booking Engine & PMS vtrunk
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 / adminsys.php

adminsys.php in VikBooking Hotel Booking Engine & PMS trunk, at libraries/language/adminsys.php

684 lines 31.2 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 common languages.
18 *
19 * @since 1.0
20 */
21 class VikBookingLanguageAdminSys 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 * Do not touch the first definition as it gives the title to the pages of the back-end
43 */
44 case 'COM_VIKBOOKING':
45 $result = __('Vik Booking', 'vikbooking');
46 break;
47
48 /**
49 * Definitions
50 */
51 case 'COM_VIKBOOKING_MENU':
52 $result = __('VikBooking', 'vikbooking');
53 break;
54 case 'COM_VIKBOOKING_VIKBOOKING_VIEW_DEFAULT_TITLE':
55 $result = __('Search Form', 'vikbooking');
56 break;
57 case 'COM_VIKBOOKING_VIKBOOKING_VIEW_DEFAULT_DESC':
58 $result = __('Global search form to start the booking process', 'vikbooking');
59 break;
60 case 'COM_VIKBOOKING_ROOMSLIST_VIEW_DEFAULT_TITLE':
61 $result = __('Rooms List', 'vikbooking');
62 break;
63 case 'COM_VIKBOOKING_ROOMSLIST_VIEW_DEFAULT_DESC':
64 $result = __('A page that lists various room-types', 'vikbooking');
65 break;
66 case 'COM_VIKBOOKING_CATEGORY_FIELD_SELECT_TITLE':
67 $result = __('Category', 'vikbooking');
68 break;
69 case 'COM_VIKBOOKING_CATEGORY_FIELD_SELECT_TITLE_DESC':
70 $result = __('Select a rooms category', 'vikbooking');
71 break;
72 case 'COM_VIKBOOKING_LOCATIONSLIST_VIEW_DEFAULT_TITLE':
73 $result = __('Locations List', 'vikbooking');
74 break;
75 case 'COM_VIKBOOKING_LOCATIONSLIST_VIEW_DEFAULT_DESC':
76 $result = __('VikBooking Locations List', 'vikbooking');
77 break;
78 case 'COM_VIKBOOKING_ORDERSLIST_VIEW_DEFAULT_TITLE':
79 $result = __('Bookings List', 'vikbooking');
80 break;
81 case 'COM_VIKBOOKING_ORDERSLIST_VIEW_DEFAULT_DESC':
82 $result = __('Allows the guests to look for their bookings by entering their PIN code or Confirmation Number', 'vikbooking');
83 break;
84 case 'COM_VIKBOOKING_SORTBY_FIELD_SELECT_TITLE':
85 $result = __('Order Rooms By', 'vikbooking');
86 break;
87 case 'COM_VIKBOOKING_SORTTYPE_FIELD_SELECT_TITLE':
88 $result = __('Sort Type', 'vikbooking');
89 break;
90 case 'COM_VIKBOOKING_RESLIM_FIELD_SELECT_TITLE':
91 $result = __('Results per page', 'vikbooking');
92 break;
93 case 'COM_VIKBOOKING_ROOMDETAILS_VIEW_DEFAULT_TITLE':
94 $result = __('Room Details', 'vikbooking');
95 break;
96 case 'COM_VIKBOOKING_ROOMDETAILS_VIEW_DEFAULT_DESC':
97 $result = __('Shows the details of one specific room-type', 'vikbooking');
98 break;
99 case 'COM_VIKBOOKING_ROOMID_FIELD_SELECT_TITLE':
100 $result = __('Room/Apartment', 'vikbooking');
101 break;
102 case 'COM_VIKBOOKING_ROOMID_FIELD_SELECT_TITLE_DESC':
103 $result = __('Select a room/apartment from the list', 'vikbooking');
104 break;
105 case 'COM_VIKBOOKING_PROMOTIONS_VIEW_DEFAULT_TITLE':
106 $result = __('Promotions', 'vikbooking');
107 break;
108 case 'COM_VIKBOOKING_PROMOTIONS_VIEW_DEFAULT_DESC':
109 $result = __('Shows a list of all the Special Prices marked as -Promotion-', 'vikbooking');
110 break;
111 case 'COM_VIKBOOKING_PROMOSHOWCARS_FIELD_TITLE':
112 $result = __('Show Rooms', 'vikbooking');
113 break;
114 case 'COM_VIKBOOKING_PROMOSHOWCARS_FIELD_TITLE_DESC':
115 $result = __('Choose whether the rooms, for which the promotion is valid, should be displayed', 'vikbooking');
116 break;
117 case 'COM_VIKBOOKING_PROMOMAXDATE_FIELD_TITLE':
118 $result = __('Max date in the future', 'vikbooking');
119 break;
120 case 'COM_VIKBOOKING_PROMOMAXDATE_FIELD_TITLE_DESC':
121 $result = __('Choose if the promotions should be displayed if they are 3, 6 or 12 months in advance from today', 'vikbooking');
122 break;
123 case 'COM_VIKBOOKING_PROMOMAXDATE_FIELD_THREEM':
124 $result = __('3 Months', 'vikbooking');
125 break;
126 case 'COM_VIKBOOKING_PROMOMAXDATE_FIELD_SIXM':
127 $result = __('6 Months', 'vikbooking');
128 break;
129 case 'COM_VIKBOOKING_PROMOMAXDATE_FIELD_YEAR':
130 $result = __('1 Year', 'vikbooking');
131 break;
132 case 'COM_VIKBOOKING_PROMOTIONSLIM_FIELD_TITLE':
133 $result = __('Max Promotions', 'vikbooking');
134 break;
135 case 'COM_VIKBOOKING_AVAILABILITY_VIEW_DEFAULT_TITLE':
136 $result = __('Rooms Availability', 'vikbooking');
137 break;
138 case 'COM_VIKBOOKING_AVAILABILITY_VIEW_DEFAULT_DESC':
139 $result = __('Shows the monthly availability of one or more rooms', 'vikbooking');
140 break;
141 case 'COM_VIKBOOKING_ROOMIDS_FIELD_SELECT_TITLE':
142 $result = __('Rooms', 'vikbooking');
143 break;
144 case 'COM_VIKBOOKING_ROOMIDS_FIELD_SELECT_TITLE_DESC':
145 $result = __('Choose the rooms to display. Leave empty to display all rooms.', 'vikbooking');
146 break;
147 case 'COM_VIKBOOKING_AVSHOWTYPE_FIELD_SELECT_TITLE':
148 $result = __('Rooms Units', 'vikbooking');
149 break;
150 case 'COM_VIKBOOKING_AVSHOWTYPE_NONE':
151 $result = __('Show Available Days with no numbers', 'vikbooking');
152 break;
153 case 'COM_VIKBOOKING_AVSHOWTYPE_REMAINING':
154 $result = __('Show Number of Remaining Units', 'vikbooking');
155 break;
156 case 'COM_VIKBOOKING_AVSHOWTYPE_BOOKED':
157 $result = __('Show Number of Units Booked', 'vikbooking');
158 break;
159 case 'COM_VIKBOOKING_CONFIGURATION':
160 $result = __('Vik Booking - Access Levels', 'vikbooking');
161 break;
162 case 'VBOACTION_GLOBAL':
163 $result = __('Global Settings Management', 'vikbooking');
164 break;
165 case 'VBOACTION_GLOBAL_DESC':
166 $result = __('Configuration, Payment Methods and Custom Fields', 'vikbooking');
167 break;
168 case 'VBOACTION_RATEPLANS':
169 $result = __('Rate Plans Management', 'vikbooking');
170 break;
171 case 'VBOACTION_RATEPLANS_DESC':
172 $result = __('Tax Rates, Types of Price, Coupon Codes', 'vikbooking');
173 break;
174 case 'VBOACTION_ROOMS':
175 $result = __('Rooms Management', 'vikbooking');
176 break;
177 case 'VBOACTION_ROOMS_DESC':
178 $result = __('Rooms, Categories, Characteristics', 'vikbooking');
179 break;
180 case 'VBOACTION_PRICING':
181 $result = __('Pricing Management', 'vikbooking');
182 break;
183 case 'VBOACTION_PRICING_DESC':
184 $result = __('Rates, Seasonal Prices, Promotions, Restrictions, Options', 'vikbooking');
185 break;
186 case 'VBOACTION_BOOKINGS':
187 $result = __('Bookings Management', 'vikbooking');
188 break;
189 case 'VBOACTION_BOOKINGS_DESC':
190 $result = __('View Bookings, Create new Bookings', 'vikbooking');
191 break;
192 case 'VBOACTION_AVAILABILITY':
193 $result = __('Availability Management', 'vikbooking');
194 break;
195 case 'VBOACTION_AVAILABILITY_DESC':
196 $result = __('Availability Overview and Calendar', 'vikbooking');
197 break;
198 case 'VBOACTION_MANAGEMENT':
199 $result = __('Management Operations', 'vikbooking');
200 break;
201 case 'VBOACTION_MANAGEMENT_DESC':
202 $result = __('Graphs and Statistics, Cron Jobs, Translations, Customers', 'vikbooking');
203 break;
204 case 'VBOACTION_PMS':
205 $result = __('PMS Access', 'vikbooking');
206 break;
207 case 'VBOACTION_PMS_DESC':
208 $result = __('Reports and all the related PMS functions', 'vikbooking');
209 break;
210 case 'COM_VIKBOOKING_PACKAGESLIST_VIEW_DEFAULT_TITLE':
211 $result = __('Packages List', 'vikbooking');
212 break;
213 case 'COM_VIKBOOKING_PACKAGESLIST_VIEW_DEFAULT_DESC':
214 $result = __('Packages and Offers List', 'vikbooking');
215 break;
216 case 'COM_VIKBOOKING_PACKAGEDETAILS_VIEW_DEFAULT_TITLE':
217 $result = __('Package Details', 'vikbooking');
218 break;
219 case 'COM_VIKBOOKING_PACKAGEDETAILS_VIEW_DEFAULT_DESC':
220 $result = __('Package Details page', 'vikbooking');
221 break;
222 case 'COM_VIKBOOKING_PKGDET_FIELD_SELECT_TITLE':
223 $result = __('Select Package', 'vikbooking');
224 break;
225 case 'COM_VIKBOOKING_BOOKING_VIEW_DEFAULT_TITLE':
226 $result = __('Booking Details', 'vikbooking');
227 break;
228 case 'COM_VIKBOOKING_BOOKING_VIEW_DEFAULT_DESC':
229 $result = __('This type of Shortcode should be used on a hidden Post/Page for the plugin to use the permalink to rewrite the URLs of the booking details page. This Shortcode will produce no content, use the Bookings List instead.', 'vikbooking');
230 break;
231 case 'COM_VIKBOOKING_OPERATORS_VIEW_DEFAULT_TITLE':
232 $result = __('Operators Login', 'vikbooking');
233 break;
234 case 'COM_VIKBOOKING_OPERATORS_VIEW_DEFAULT_DESC':
235 $result = __('Dashboard page for the operators', 'vikbooking');
236 break;
237 case 'COM_VIKBOOKING_CATEGORY_FIELD_FORCE_TITLE':
238 $result = __('Force Category', 'vikbooking');
239 break;
240 case 'COM_VIKBOOKING_CATEGORY_FIELD_FORCE_TITLE_DESC':
241 $result = __('If you would like the results to be taken only from a specific category, set this filter to an existing category where some of the rooms should be assigned.', 'vikbooking');
242 break;
243 case 'COM_VIKBOOKING_LAYOUT_STYLE':
244 $result = __('Layout style', 'vikbooking');
245 break;
246 case 'COM_VIKBOOKING_LAYOUT_GRID':
247 $result = __('Grid', 'vikbooking');
248 break;
249 case 'COM_VIKBOOKING_LAYOUT_LIST':
250 $result = __('List', 'vikbooking');
251 break;
252 case 'COM_VIKBOOKING_TINYURL_VIEW_DEFAULT_TITLE':
253 $result = __('Tiny URL', 'vikbooking');
254 break;
255 case 'COM_VIKBOOKING_TINYURL_VIEW_DEFAULT_DESC':
256 $result = __('Turns long URLs into tiny URLs. Useful to shorten booking details or similar URLs.', 'vikbooking');
257 break;
258 case 'COM_VIKBOOKING_CHAT_VIEW_DEFAULT_TITLE':
259 $result = __('Chat Session', 'vikbooking');
260 break;
261 case 'COM_VIKBOOKING_CHAT_VIEW_DEFAULT_DESC':
262 $result = __('Allows users to start or resume a chat session with an AI agent or administrators.', 'vikbooking');
263 break;
264 case 'COM_VIKBOOKING_QUOTE_VIEW_DEFAULT_TITLE':
265 $result = __('Quote Details', 'vikbooking');
266 break;
267 case 'COM_VIKBOOKING_QUOTE_VIEW_DEFAULT_DESC':
268 $result = __('This type of Shortcode should be used on a hidden Post/Page for the plugin to use the permalink to rewrite the URLs of the quote details page. This Shortcode will produce no content, it is only useful for friendly URL purposes.', 'vikbooking');
269 break;
270
271 /**
272 * @wponly Definitions for the Views "Gotopro" and "Getpro"
273 */
274 case 'VBMAINGOTOPROTITLE':
275 $result = __('Vik Booking - Upgrade to Pro', 'vikbooking');
276 break;
277 case 'VBOLICKEYVALIDUNTIL':
278 $result = __('License Key valid until %s', 'vikbooking');
279 break;
280 case 'VBOLICKEYEXPIREDON':
281 $result = __('Your License Key expired on %s', 'vikbooking');
282 break;
283 case 'VBOEMPTYLICKEY':
284 $result = __('Please enter a valid License Key', 'vikbooking');
285 break;
286 case 'VBONOPROERROR':
287 $result = __('No valid and active License Key found.', 'vikbooking');
288 break;
289 case 'VBMAINGETPROTITLE':
290 $result = __('Vik Booking - Downloading Pro version', 'vikbooking');
291 break;
292 case 'VBOUPDCOMPLOKCLICK':
293 $result = __('Update Completed. Please click here', 'vikbooking');
294 break;
295 case 'VBOUPDCOMPLNOKCLICK':
296 $result = __('Update Failed. Please click here', 'vikbooking');
297 break;
298 case 'VBOPROPLWAIT':
299 $result = __('Please wait', 'vikbooking');
300 break;
301 case 'VBOPRODLINGPKG':
302 $result = __('Downloading the package...', 'vikbooking');
303 break;
304 case 'VBOPROTHANKSUSE':
305 $result = __('Thanks for using the Pro version', 'vikbooking');
306 break;
307 case 'VBOPROTHANKSLIC':
308 $result = __('Make sure to keep your License Key active in order to be able to receive future updates with all the new features.', 'vikbooking');
309 break;
310 case 'VBOPROGETRENEWLICFROM':
311 $result = __('Get or renew your License Key from VikWP.com', 'vikbooking');
312 break;
313 case 'VBOPROGETRENEWLIC':
314 $result = __('Renew your licence', 'vikbooking');
315 break;
316 case 'VBOPROVALNUPD':
317 $result = __('Validate and Update', 'vikbooking');
318 break;
319 case 'VBOPROALREADYHAVEKEY':
320 $result = __('Already have Vik Booking PRO? <br /> <small>Enter your licence key here</small>', 'vikbooking');
321 break;
322 case 'VBOPROWHYUPG':
323 $result = __('Why Upgrade to Pro?', 'vikbooking');
324 break;
325 case 'VBOPROTRUEVBOPRO':
326 $result = __('The true Vik Booking is Pro. Unleash the power of the only certified Booking Engine plugin for accomodations!', 'vikbooking');
327 break;
328 case 'VBOPROGETLICNUPG':
329 $result = __('Get your License Key and Upgrade to PRO', 'vikbooking');
330 break;
331 case 'VBOPROWHYRATES':
332 $result = __('Flexible Rates & Smart Restrictions', 'vikbooking');
333 break;
334 case 'VBOPROWHYRATESDESC':
335 $result = __('Master your revenue strategy. Set seasonal rates, weekend surcharges, or custom prices for holidays in seconds. Apply stay restrictions (Min/Max stay) to optimize your occupancy and maximize profit during peak dates.', 'vikbooking');
336 break;
337 case 'VBOPROWHYBOOKINGS':
338 $result = __('Create and Modify Bookings via back-end', 'vikbooking');
339 break;
340 case 'VBOPROWHYBOOKINGSDESC':
341 $result = __('The page Bookings Calendar will let you create new reservations manually, maybe to register walk-in customers or offline reservations. Modify the dates and switch, add or remove rooms of certain reservations.', 'vikbooking');
342 break;
343 case 'VBOPROWHYCHMANAGER':
344 $result = __('Channels Management Capabilities', 'vikbooking');
345 break;
346 case 'VBOPROWHYCHMANAGERDESC':
347 $result = __('<p>With Vik Booking Pro and Vik Channel Manager working together, your website becomes a complete hospitality management solution.</p><p>Transform your site into a complete booking solution, combining a powerful Booking Engine, PMS, and Channel Manager to effortlessly sync availability, rates, and reservations with the world’s top booking channels.</p>', 'vikbooking');
348 break;
349 case 'VBOPROWHYUNLOCKF':
350 $result = __('Unlock over 50 must-have features', 'vikbooking');
351 break;
352 case 'VBOPROWHYCUSTOMERS':
353 $result = __('Customers Management', 'vikbooking');
354 break;
355 case 'VBOPROWHYCUSTOMERSDESC':
356 $result = __('Keep track of the information of your guests without sharing such details with external systems', 'vikbooking');
357 break;
358 case 'VBOPROWHYPMSREP':
359 $result = __('PMS Reports', 'vikbooking');
360 break;
361 case 'VBOPROWHYPMSREPDESC':
362 $result = __('Reports for Revenue, Tourist Taxes and country-specific integrations for local authorities', 'vikbooking');
363 break;
364 case 'VBOPROWHYPROMOTIONS':
365 $result = __('Promotions and Packages', 'vikbooking');
366 break;
367 case 'VBOPROWHYPROMOTIONSDESC':
368 $result = __('Set charges/discounts with absolute/percent values. Create packages with services included', 'vikbooking');
369 break;
370 case 'VBOPROWHYPACKAGES':
371 $result = __('Packages and Offers', 'vikbooking');
372 break;
373 case 'VBOPROWHYINVOICES':
374 $result = __('Invoices', 'vikbooking');
375 break;
376 case 'VBOPROWHYINVOICESDESC':
377 $result = __('Generate invoices, manually or automatically, and send them to your customers via email', 'vikbooking');
378 break;
379 case 'VBOPROWHYCHECKIN':
380 $result = __('Online Check-in and Registration', 'vikbooking');
381 break;
382 case 'VBOPROWHYCHECKINDESC':
383 $result = __('Guests registration supporting signature pads for check-in and check-out', 'vikbooking');
384 break;
385 case 'VBOPROWHYGRAPHS':
386 $result = __('Graphs and Statistics', 'vikbooking');
387 break;
388 case 'VBOPROWHYGRAPHSDESC':
389 $result = __('Monitor your business trends thanks to the Graphs & Report functions', 'vikbooking');
390 break;
391 case 'VBOPROWHYCRONS':
392 $result = __('Automatise Email and SMS', 'vikbooking');
393 break;
394 case 'VBOPROWHYCRONSDESC':
395 $result = __('Schedule the automated sending of certain reminders to your guests', 'vikbooking');
396 break;
397 case 'VBOPROWHYSMS':
398 $result = __('SMS Gateways', 'vikbooking');
399 break;
400 case 'VBOPROWHYPAYMENTS':
401 $result = __('Payment Methods', 'vikbooking');
402 break;
403 case 'VBOPROWHYPAYMENTSDESC':
404 $result = __('PayPal, Offline Credit Card and Bank Transfer pre-installed', 'vikbooking');
405 break;
406 case 'VBOPROREADYTOUPG':
407 $result = __('Ready to upgrade?', 'vikbooking');
408 break;
409 case 'VBOPROGETNEWLICFROM':
410 $result = __('Get Vik Booking PRO and start now.', 'vikbooking');
411 break;
412 case 'VBOPROGETNEWLIC':
413 $result = __('Get your License Key', 'vikbooking');
414 break;
415 case 'VBOPROVALNINST':
416 $result = __('Upgrade Now', 'vikbooking');
417 break;
418 case 'VBOGOTOPROBTN':
419 $result = __('Upgrade to PRO', 'vikbooking');
420 break;
421 case 'VBOISPROBTN':
422 $result = __('PRO Version', 'vikbooking');
423 break;
424 case 'VBOLICKEYVALIDVCM':
425 $result = __('Active License Key', 'vikbooking');
426 break;
427 case 'VBOPROVCMADTITLE':
428 $result = __('Worried about overbookings?', 'vikbooking');
429 break;
430 case 'VBOPROVCMADDESCR':
431 $result = __('Vik Booking + Vik Channel Manager is the only native WordPress suite officially certified as a <strong>Premier Connectivity Partner of Booking.com and Airbnb.</strong>', 'vikbooking');
432 break;
433 case 'VBOPROVCMADMOREINFO':
434 $result = __('More information', 'vikbooking');
435 break;
436 case 'VBOPROVCMTRIAL':
437 $result = __('Free 30-day Trial >', 'vikbooking');
438 break;
439 case 'VBOPROVCTRIALTITLE':
440 $result = __('Experience the Benefits – Free for 30 Days!', 'vikbooking');
441 break;
442 case 'VBOPROVCTRIALQUESTION':
443 $result = __('Test real-time updates, automate reservations, and optimize your pricing with ease—all without any upfront cost.', 'vikbooking');
444 break;
445 case 'VBOPROVCMADSOMECHAV':
446 $result = __('Trusted in hospitality', 'vikbooking');
447 break;
448 case 'VBOPROVCMADCHANDMANY':
449 $result = __('and many others...', 'vikbooking');
450 break;
451 case 'VBOPROVCMADDONTSHOW':
452 $result = __('Don\'t show again', 'vikbooking');
453 break;
454 case 'VBOPROWHYEXTRASERVICES':
455 $result = __('Service Upsells & Taxes', 'vikbooking');
456 break;
457 case 'VBOPROWHYEXTRASERVICESDESC':
458 $result = __('Increase your average booking value. Offer optional extras like breakfast, airport transfers, or parking. Easily manage mandatory costs like cleaning fees or tourist taxes, ensuring transparent pricing for your guests.', 'vikbooking');
459 break;
460 case 'VBOPROWHYREPORT':
461 $result = __('Occupancy Ranking report to analyse every detail', 'vikbooking');
462 break;
463 case 'VBOPROWHYREPORTDESC':
464 $result = __('Get to monitor your future occupancy through the Occupancy Ranking report. Filter the targets by dates and analyse the data by day, week or month. The report will provide the information about the occupancy, the total number of rooms sold, nights booked, revenues and more.', 'vikbooking');
465 break;
466 case 'VBOPROWHYCRONJOB':
467 $result = __('Automated Notifications', 'vikbooking');
468 break;
469 case 'VBOPROWHYCRONJOBDESC':
470 $result = __('<p>Save hours of manual work. Send professional email and SMS reminders for check-ins, request reviews after checkout, and automate invoice delivery. <br /><strong>Ready for more?</strong> Connect <strong>e4jConnect</strong> to unlock <strong>WhatsApp AI communication.</strong></p>', 'vikbooking');
471 break;
472 case 'VBOPROWHYMOREEXTRA':
473 $result = __('and much more...', 'vikbooking');
474 break;
475 case 'VBOPROREADYTOINCREASE':
476 $result = __('Ready to increase your bookings?', 'vikbooking');
477 break;
478 case 'VBOPROALREADYHAVEPRO':
479 $result = __('Already have Vik Booking PRO? Upgrade to the PRO version <a href="#upgrade">here</a>.', 'vikbooking');
480 break;
481 case 'VBOPROCOLLECTDIRECTBOOK':
482 $result = __('Stop giving away your margins. Take full control of your property.', 'vikbooking');
483 break;
484 case 'VBOPROBOOKINGENGINEPMS':
485 $result = __('Transform your WordPress site into a professional Booking Engine. Scale your revenue with Vik Booking PRO and sync with the world through e4jConnect.', 'vikbooking');
486 break;
487 case 'VBOPROADVONE':
488 $result = __('<strong>Zero OTA Commissions:</strong> Keep 100% of your room revenue', 'vikbooking');
489 break;
490 case 'VBOPROADVTWO':
491 $result = __('<strong>Total Autonomy:</strong> Own your data, your guests, and your rules', 'vikbooking');
492 break;
493 case 'VBOPROADVTHREE':
494 $result = __('<strong>Pro Guest Tools:</strong> Built-in Invoicing, Email, and SMS notifications', 'vikbooking');
495 break;
496 case 'VBOPROADVTRUST':
497 $result = __('Trusted by 9,000+ Accommodations Worldwide', 'vikbooking');
498 break;
499 case 'VBOPROCOLLECTDIRCTBOOKTITLE':
500 $result = __('1<span>.</span> Start collect<br />direct bookings', 'vikbooking');
501 break;
502 case 'VBOPROCOLLECTDIRCTBOOKTITLEDESC':
503 $result = __('<p>Increase your reputation, receive and manage all the bookings through your website.</p><p>Collect payments through your preferred bank (PayPal is included for free).</p>', 'vikbooking');
504 break;
505 case 'VBOPROSAVEOTASFEESTITLE':
506 $result = __('2<span>.</span> Save on<br />OTA commissions', 'vikbooking');
507 break;
508 case 'VBOPROSAVEOTASFEESTITLEDESC':
509 $result = __('<p>OTAs, such as Booking.com or Expedia, charge your property high fees for every booking.</p><p>Power up your website to create competition, and to reduce the costs.</p>', 'vikbooking');
510 break;
511 case 'VBOPROBECAMEINDEPENDENTTITLE':
512 $result = __('3<span>.</span> Become truly<br />independent', 'vikbooking');
513 break;
514 case 'VBOPROBECAMEINDEPENDENTTITLEDESC':
515 $result = __('<p>A Booking Engine fully integrated with your website with no monthly fees or commissions.</p><p>Stop &quot;renting&quot; external systems and increase your revenue.</p>', 'vikbooking');
516 break;
517 case 'VBOPROSYNCHNEWBOOKINGS':
518 $result = __('Keep your availability and rates always up to date with automatic synchronization across OTAs.', 'vikbooking');
519 break;
520 case 'VBOPROVCMSYNCHEVERYTHING':
521 $result = __('Vik Channel Manager seamlessly syncs new bookings in real-time, so you never have to adjust availability manually.', 'vikbooking');
522 break;
523 /**
524 * @wponly - First Setup Dashboard
525 */
526 case 'VBFIRSTSETSHORTCODES':
527 $result = __('Shortcodes in Pages/Posts', 'vikbooking');
528 break;
529 /**
530 * @wponly - Free version texts
531 */
532 case 'VBOFREEPAYMENTSDESCR':
533 $result = __('Allow your guests to pay their bookings online through your preferred bank gateway. The Pro version comes with an integration for PayPal Standard and two more payment solutions, but the framework could be extended by installing apposite payment plugins for Vik Booking for your preferred bank.', 'vikbooking');
534 break;
535 case 'VBOFREECOUPONSDESCR':
536 $result = __('Thanks to the coupon codes you can give your clients some dedicated discounts for their reservations.', 'vikbooking');
537 break;
538 case 'VBOFREEPACKAGESDESCR':
539 $result = __('The Packages will let you create some particular booking solutions with some benefits and restrictions. For example, you could offer a stay for a particular weekend with the access to the SPA if booked N days in advance.', 'vikbooking');
540 break;
541 case 'VBOFREEOPTIONSDESCR':
542 $result = __('Allow your guests to book some extra services, either they are optional or mandatory. This function can be used to create services or fees like tourist taxes, breakfast, transfers and anything else that could be booked with the rooms.', 'vikbooking');
543 break;
544 case 'VBOFREESEASONSDESCR':
545 $result = __('This function will let you create seasonal prices, promotions or special rates for the weekends or any other day of the week. Those who are used to work with seasonal rates will find this feature fundamental.', 'vikbooking');
546 break;
547 case 'VBOFREERESTRSDESCR':
548 $result = __('The booking restrictions will let you define a minimum or maximum number of nights of stay for specific rooms and dates of the year. You could also allow or deny the arrival/departure on some specific days of the week.', 'vikbooking');
549 break;
550 case 'VBOFREECUSTOMERSDESCR':
551 $result = __('Here you can manage all of your customers information, send specific email or SMS messages, and manage their documents.', 'vikbooking');
552 break;
553 case 'VBOFREEINVOICESDESCR':
554 $result = __('Manage all the invoices generated for the various bookings or services.', 'vikbooking');
555 break;
556 case 'VBOFREESTATSDESCR':
557 $result = __('This page will display graphs and charts by showing important information and statistics about your reservations, occupancy and revenue.', 'vikbooking');
558 break;
559 case 'VBOFREECRONSDESCR':
560 $result = __('Cron Jobs are essentials to automatize certain functions, such as to send email/SMS reminders to your clients before the check-in, after the check-out, remaing balance payments and much more.', 'vikbooking');
561 break;
562 case 'VBOFREEOPERATORSDESCR':
563 $result = __('This function will let you manage the operator accounts to access certain functions via front-end, such as the Tableaux to see the next arrivals or departures.', 'vikbooking');
564 break;
565 case 'VBOFREEREPORTSDESCR':
566 $result = __('Reports are essentials to obtain and/or export data. You can use them to calculate your revenue on some dates, your occupancy, or to generate documents for your local authorities. This framework is also extendable with custom PMS reports.', 'vikbooking');
567 break;
568 case 'VBOFREEEINVDESCR':
569 $result = __('Some countries may require the invoices to be generated in electronic format (XML) for transmitting them to the local authorities. This framework could be extended to meet your country requirements.', 'vikbooking');
570 break;
571 /**
572 * @wponly Definitions for the View Import Bookings From Third Party Plugins (importbftpp)
573 */
574 case 'VBOMAINIMPORTBFTPPTITLE':
575 $result = __('Vik Booking - Import reservations from third party plugins', 'vikbooking');
576 break;
577 case 'VBO_IMPBFTPP_NOVBOROOMS':
578 $result = __('There are no rooms in Vik Booking yet. Please create some room-types before importing the reservations from third party plugins into Vik Booking.', 'vikbooking');
579 break;
580 case 'VBO_IMPBFTPP_DISCLAIMER':
581 $result = __('This tool is provided as-is, with no warranty of any kind. Third party plugins may change their structure or the data they contain may be unwanted. Please use this tool carefully, and consider uninstalling for then re-installing Vik Booking in case you do not obtain the desired result. If some reservations can be imported from a third party plugin, you may uninstall the third party plugin after the import, to continue with the setup of Vik Booking.', 'vikbooking');
582 break;
583 case 'VBO_IMPBFTPP_AVAILPLUGINS':
584 $result = __('Third party plugins installed for importing the reservations', 'vikbooking');
585 break;
586 case 'VBO_IMPBFTPP_NOPLUGINS':
587 $result = __('No supported third party plugins found, or no third party plugins have some reservations that could be imported into Vik Booking.', 'vikbooking');
588 break;
589 case 'VBO_IMPBFTPP_READBFROMP':
590 $result = __('Load reservations from third party plugin', 'vikbooking');
591 break;
592 case 'VBO_IMPBFTPP_READBFROMP_SHORT':
593 $result = __('Load reservations', 'vikbooking');
594 break;
595 case 'VBO_IMPBFTPP_NORESINTPP':
596 $result = __('No valid reservations found for import from the selected third party plugin.', 'vikbooking');
597 break;
598 case 'VBO_IMPBFTPP_TOTRESFOUND':
599 $result = __('Reservations found for import: %d', 'vikbooking');
600 break;
601 case 'VBO_IMPBFTPP_MAKERMAPPING':
602 $result = __('Please select the corresponding room-type of Vik Booking for each room found in the third party plugin. In case of room-types with multiple sub-units, just select the corresponding room-type in Vik Booking for each sub-unit of the third party plugin. If some rooms of the third party plugin will not have a corresponding room-type in Vik Booking, those reservations will not be imported. Make sure to make the right selections, as this will affect the availability in Vik Booking after importing the reservations.', 'vikbooking');
603 break;
604 case 'VBO_IMPBFTPP_MAKERMAPPING_SHORT':
605 $result = __('Select the corresponding rooms in Vik Booking', 'vikbooking');
606 break;
607 case 'VBO_IMPBFTPP_SELTPPROOM':
608 $result = __('Third party plugin room', 'vikbooking');
609 break;
610 case 'VBO_IMPBFTPP_SELVBOROOM':
611 $result = __('Corresponding room in Vik Booking', 'vikbooking');
612 break;
613 case 'VBO_IMPBFTPP_DOIMPORT':
614 $result = __('Import selected reservations into Vik Booking', 'vikbooking');
615 break;
616 case 'VBO_IMPBFTPP_DOIMPORT_SHORT':
617 $result = __('Import reservations', 'vikbooking');
618 break;
619 case 'VBO_IMPBFTPP_DOIMPORT_CONF':
620 $result = __('All the selected reservations will be imported. Continue?', 'vikbooking');
621 break;
622 case 'VBO_IMPBFTPP_IMPORT_TOTRES':
623 $result = __('Total reservations imported from third party plugin: %d', 'vikbooking');
624 break;
625 case 'VBO_IMPBFTPP_ALREADY_IMPORTED':
626 $result = __('Already imported on %s', 'vikbooking');
627 break;
628 case 'VBO_IMPBFTPP_BOOKHIST_DESCR':
629 $result = __('Booking imported from third party plugin', 'vikbooking');
630 break;
631 case 'VBO_IMPBFTPP_SELRES_SHORT':
632 $result = __('Select the reservations you wish to import', 'vikbooking');
633 break;
634 case 'VBO_IMPBFTPP_WANTTO':
635 $result = __('Want to import the reservations from other plugins?', 'vikbooking');
636 break;
637 case 'VBO_IMPBFROM_INTO_VBO':
638 $result = __('Import reservations from %s into Vik Booking', 'vikbooking');
639 break;
640 /**
641 * @wponly Definitions for the Shortcodes view
642 */
643 case 'VBO_SC_VIEWFRONT':
644 $result = __('View page in front site', 'vikbooking');
645 break;
646 case 'VBO_SC_ADDTOPAGE':
647 $result = __('Create page', 'vikbooking');
648 break;
649 case 'VBO_SC_VIEWTRASHPOSTS':
650 $result = __('View trashed posts', 'vikbooking');
651 break;
652 case 'VBO_SC_ADDTOPAGE_HELP':
653 $result = __('You can always create a custom page or post manually and use this Shortcode text inside it. By proceeding, a page containing this Shortcode will be created automatically.', 'vikbooking');
654 break;
655 case 'VBO_SC_ADDTOPAGE_OK':
656 $result = __('The Shortcode was successfully added to a new page of your website. Visit the new page in the front site to see the content (if any).', 'vikbooking');
657 break;
658 /**
659 * @wponly - Sample Data texts
660 */
661 case 'VBODASHINSTSAMPLEDTXT':
662 $result = __('Alternatively, you can install one Sample Data package to skip the initial setup steps.', 'vikbooking');
663 break;
664 case 'VBODASHINSTSAMPLEDBTN':
665 $result = __('Select Sample Data', 'vikbooking');
666 break;
667 case 'VBO_SAMPLEDATA_MENU_TITLE':
668 $result = __('Vik Booking - Install Sample Data', 'vikbooking');
669 break;
670 case 'VBO_SAMPLEDATA_INSTALL':
671 $result = __('Install Sample Data', 'vikbooking');
672 break;
673 case 'VBO_SAMPLEDATA_INTRO_DESCR':
674 $result = __('Choose the type of Sample Data you would like to install. This operation will populate the plugin with some demo contents to complete the first configuration.', 'vikbooking');
675 break;
676 case 'VBO_SAMPLEDATA_INTRO_SUBDESCR':
677 $result = __('To undo the installation of the sample data, you can deactivate and delete the plugin for then re-installing it. Otherwise, you can modify or remove some demo contents according to your needs.', 'vikbooking');
678 break;
679 }
680
681 return $result;
682 }
683 }
684