@devtravelcode/widget-native 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (208) hide show
  1. package/LICENSE +18 -0
  2. package/dist/App.d.ts +10 -0
  3. package/dist/App.js +192 -0
  4. package/dist/TravelHubWidget.d.ts +12 -0
  5. package/dist/TravelHubWidget.js +58 -0
  6. package/dist/components/ErrorBoundary.d.ts +18 -0
  7. package/dist/components/ErrorBoundary.js +63 -0
  8. package/dist/components/ui/Modal.d.ts +11 -0
  9. package/dist/components/ui/Modal.js +66 -0
  10. package/dist/components/ui/Skeleton.d.ts +8 -0
  11. package/dist/components/ui/Skeleton.js +33 -0
  12. package/dist/components/ui/badge.d.ts +11 -0
  13. package/dist/components/ui/badge.js +54 -0
  14. package/dist/components/ui/button.d.ts +14 -0
  15. package/dist/components/ui/button.js +101 -0
  16. package/dist/components/ui/card.d.ts +16 -0
  17. package/dist/components/ui/card.js +51 -0
  18. package/dist/components/ui/input.d.ts +8 -0
  19. package/dist/components/ui/input.js +61 -0
  20. package/dist/components/ui/label.d.ts +8 -0
  21. package/dist/components/ui/label.js +17 -0
  22. package/dist/context/WidgetContext.d.ts +29 -0
  23. package/dist/context/WidgetContext.js +64 -0
  24. package/dist/icons/CarIcon.d.ts +4 -0
  25. package/dist/icons/CarIcon.js +3 -0
  26. package/dist/icons/CloseIcon.d.ts +7 -0
  27. package/dist/icons/CloseIcon.js +3 -0
  28. package/dist/icons/FlightIcon.d.ts +4 -0
  29. package/dist/icons/FlightIcon.js +3 -0
  30. package/dist/icons/HotelIcon.d.ts +4 -0
  31. package/dist/icons/HotelIcon.js +3 -0
  32. package/dist/index.d.ts +2 -0
  33. package/dist/index.js +1 -0
  34. package/dist/lib/utils.d.ts +2 -0
  35. package/dist/lib/utils.js +3 -0
  36. package/dist/locales/widgetTranslations.d.ts +1 -0
  37. package/dist/locales/widgetTranslations.js +732 -0
  38. package/dist/modules/hooks/useAirportSearch.d.ts +21 -0
  39. package/dist/modules/hooks/useAirportSearch.js +48 -0
  40. package/dist/modules/hooks/useCarOffers.d.ts +7 -0
  41. package/dist/modules/hooks/useCarOffers.js +47 -0
  42. package/dist/modules/hooks/useCountriesByCodes.d.ts +4 -0
  43. package/dist/modules/hooks/useCountriesByCodes.js +60 -0
  44. package/dist/modules/hooks/useCountriesSearch.d.ts +11 -0
  45. package/dist/modules/hooks/useCountriesSearch.js +55 -0
  46. package/dist/modules/hooks/useDefaultHotelLocation.d.ts +7 -0
  47. package/dist/modules/hooks/useDefaultHotelLocation.js +44 -0
  48. package/dist/modules/hooks/useDetectNationality.d.ts +1 -0
  49. package/dist/modules/hooks/useDetectNationality.js +20 -0
  50. package/dist/modules/hooks/useFlightSearch.d.ts +20 -0
  51. package/dist/modules/hooks/useFlightSearch.js +243 -0
  52. package/dist/modules/hooks/useHotelDetails.d.ts +7 -0
  53. package/dist/modules/hooks/useHotelDetails.js +80 -0
  54. package/dist/modules/hooks/useHotelLocations.d.ts +5 -0
  55. package/dist/modules/hooks/useHotelLocations.js +42 -0
  56. package/dist/modules/hooks/useHotelMapData.d.ts +12 -0
  57. package/dist/modules/hooks/useHotelMapData.js +78 -0
  58. package/dist/modules/hooks/useHotelOffers.d.ts +11 -0
  59. package/dist/modules/hooks/useHotelOffers.js +122 -0
  60. package/dist/modules/hooks/useHotelSearchSSE.d.ts +18 -0
  61. package/dist/modules/hooks/useHotelSearchSSE.js +411 -0
  62. package/dist/modules/hooks/useSearchExpiration.d.ts +6 -0
  63. package/dist/modules/hooks/useSearchExpiration.js +35 -0
  64. package/dist/modules/hooks/useTranslationsHub.d.ts +5 -0
  65. package/dist/modules/hooks/useTranslationsHub.js +48 -0
  66. package/dist/modules/navbar/Navbar.d.ts +8 -0
  67. package/dist/modules/navbar/Navbar.js +69 -0
  68. package/dist/modules/search-form/AgeSelector.d.ts +9 -0
  69. package/dist/modules/search-form/AgeSelector.js +109 -0
  70. package/dist/modules/search-form/CustomSelect.d.ts +14 -0
  71. package/dist/modules/search-form/CustomSelect.js +94 -0
  72. package/dist/modules/search-form/FiltersSkeleton.d.ts +6 -0
  73. package/dist/modules/search-form/FiltersSkeleton.js +35 -0
  74. package/dist/modules/search-form/NationalityInput.d.ts +18 -0
  75. package/dist/modules/search-form/NationalityInput.js +172 -0
  76. package/dist/modules/search-form/Pagination.d.ts +8 -0
  77. package/dist/modules/search-form/Pagination.js +84 -0
  78. package/dist/modules/search-form/SearchExpiredPopup.d.ts +10 -0
  79. package/dist/modules/search-form/SearchExpiredPopup.js +91 -0
  80. package/dist/modules/search-form/SkeletonWidget.d.ts +2 -0
  81. package/dist/modules/search-form/SkeletonWidget.js +33 -0
  82. package/dist/modules/search-form/TimePicker.d.ts +9 -0
  83. package/dist/modules/search-form/TimePicker.js +182 -0
  84. package/dist/modules/search-form/cars/CarEmptyState.d.ts +6 -0
  85. package/dist/modules/search-form/cars/CarEmptyState.js +42 -0
  86. package/dist/modules/search-form/cars/CarFiltersSkeleton.d.ts +6 -0
  87. package/dist/modules/search-form/cars/CarFiltersSkeleton.js +35 -0
  88. package/dist/modules/search-form/cars/CarOffersList.d.ts +43 -0
  89. package/dist/modules/search-form/cars/CarOffersList.js +214 -0
  90. package/dist/modules/search-form/cars/CarResults.d.ts +25 -0
  91. package/dist/modules/search-form/cars/CarResults.js +116 -0
  92. package/dist/modules/search-form/cars/CarSearchForm.d.ts +19 -0
  93. package/dist/modules/search-form/cars/CarSearchForm.js +173 -0
  94. package/dist/modules/search-form/cars/CarSkeleton.d.ts +6 -0
  95. package/dist/modules/search-form/cars/CarSkeleton.js +46 -0
  96. package/dist/modules/search-form/cars/CarTopOffersSlider.d.ts +20 -0
  97. package/dist/modules/search-form/cars/CarTopOffersSlider.js +100 -0
  98. package/dist/modules/search-form/cars/car-filters/CarFilters.d.ts +8 -0
  99. package/dist/modules/search-form/cars/car-filters/CarFilters.js +318 -0
  100. package/dist/modules/search-form/cars/car-filters/FilterSection.d.ts +9 -0
  101. package/dist/modules/search-form/cars/car-filters/FilterSection.js +30 -0
  102. package/dist/modules/search-form/cars/car-filters/index.d.ts +6 -0
  103. package/dist/modules/search-form/cars/car-filters/index.js +3 -0
  104. package/dist/modules/search-form/cars/car-filters/useCarFilters.d.ts +24 -0
  105. package/dist/modules/search-form/cars/car-filters/useCarFilters.js +121 -0
  106. package/dist/modules/search-form/flight/AirlinesSelector.d.ts +8 -0
  107. package/dist/modules/search-form/flight/AirlinesSelector.js +235 -0
  108. package/dist/modules/search-form/flight/CabinClassSelector.d.ts +9 -0
  109. package/dist/modules/search-form/flight/CabinClassSelector.js +63 -0
  110. package/dist/modules/search-form/flight/DatePicker.d.ts +12 -0
  111. package/dist/modules/search-form/flight/DatePicker.js +536 -0
  112. package/dist/modules/search-form/flight/FlightSearchForm.d.ts +18 -0
  113. package/dist/modules/search-form/flight/FlightSearchForm.js +147 -0
  114. package/dist/modules/search-form/flight/LocationInput.d.ts +11 -0
  115. package/dist/modules/search-form/flight/LocationInput.js +294 -0
  116. package/dist/modules/search-form/flight/PassengersPicker.d.ts +16 -0
  117. package/dist/modules/search-form/flight/PassengersPicker.js +203 -0
  118. package/dist/modules/search-form/flight/SwitchLocationBtn.d.ts +9 -0
  119. package/dist/modules/search-form/flight/SwitchLocationBtn.js +48 -0
  120. package/dist/modules/search-form/flight/flight-filters/FiltersContent.d.ts +21 -0
  121. package/dist/modules/search-form/flight/flight-filters/FiltersContent.js +145 -0
  122. package/dist/modules/search-form/flight/flight-filters/FlightFiltersDynamic.d.ts +11 -0
  123. package/dist/modules/search-form/flight/flight-filters/FlightFiltersDynamic.js +213 -0
  124. package/dist/modules/search-form/flight/flight-filters/RangeBlock.d.ts +22 -0
  125. package/dist/modules/search-form/flight/flight-filters/RangeBlock.js +164 -0
  126. package/dist/modules/search-form/flight/flight-filters/index.d.ts +1 -0
  127. package/dist/modules/search-form/flight/flight-filters/index.js +1 -0
  128. package/dist/modules/search-form/flight/flight-results/FlightAdditionalInfo.d.ts +16 -0
  129. package/dist/modules/search-form/flight/flight-results/FlightAdditionalInfo.js +229 -0
  130. package/dist/modules/search-form/flight/flight-results/FlightBaggageToggle.d.ts +15 -0
  131. package/dist/modules/search-form/flight/flight-results/FlightBaggageToggle.js +110 -0
  132. package/dist/modules/search-form/flight/flight-results/FlightCard.d.ts +14 -0
  133. package/dist/modules/search-form/flight/flight-results/FlightCard.js +436 -0
  134. package/dist/modules/search-form/flight/flight-results/FlightInfo.d.ts +12 -0
  135. package/dist/modules/search-form/flight/flight-results/FlightInfo.js +48 -0
  136. package/dist/modules/search-form/flight/flight-results/FlightPriceBlock.d.ts +11 -0
  137. package/dist/modules/search-form/flight/flight-results/FlightPriceBlock.js +36 -0
  138. package/dist/modules/search-form/flight/flight-results/FlightResults.d.ts +22 -0
  139. package/dist/modules/search-form/flight/flight-results/FlightResults.js +109 -0
  140. package/dist/modules/search-form/flight/flight-results/FlightSegments.d.ts +40 -0
  141. package/dist/modules/search-form/flight/flight-results/FlightSegments.js +162 -0
  142. package/dist/modules/search-form/flight/flight-results/FlightsSkeleton.d.ts +6 -0
  143. package/dist/modules/search-form/flight/flight-results/FlightsSkeleton.js +52 -0
  144. package/dist/modules/search-form/flight/flight-results/ProvidersLoader.d.ts +9 -0
  145. package/dist/modules/search-form/flight/flight-results/ProvidersLoader.js +242 -0
  146. package/dist/modules/search-form/hotel/DatePicker.d.ts +1 -0
  147. package/dist/modules/search-form/hotel/DatePicker.js +1 -0
  148. package/dist/modules/search-form/hotel/GuestSelector.d.ts +13 -0
  149. package/dist/modules/search-form/hotel/GuestSelector.js +272 -0
  150. package/dist/modules/search-form/hotel/GuestSelectorMobilePopup.d.ts +2 -0
  151. package/dist/modules/search-form/hotel/GuestSelectorMobilePopup.js +1 -0
  152. package/dist/modules/search-form/hotel/HotelLocation.d.ts +17 -0
  153. package/dist/modules/search-form/hotel/HotelLocation.js +178 -0
  154. package/dist/modules/search-form/hotel/HotelLocationMobilePopup.d.ts +2 -0
  155. package/dist/modules/search-form/hotel/HotelLocationMobilePopup.js +1 -0
  156. package/dist/modules/search-form/hotel/HotelResults.d.ts +21 -0
  157. package/dist/modules/search-form/hotel/HotelResults.js +333 -0
  158. package/dist/modules/search-form/hotel/HotelSearchForm.d.ts +13 -0
  159. package/dist/modules/search-form/hotel/HotelSearchForm.js +130 -0
  160. package/dist/modules/search-form/hotel/HotelsSkeleton.d.ts +6 -0
  161. package/dist/modules/search-form/hotel/HotelsSkeleton.js +40 -0
  162. package/dist/modules/search-form/hotel/PassengersPicker.d.ts +2 -0
  163. package/dist/modules/search-form/hotel/PassengersPicker.js +1 -0
  164. package/dist/modules/search-form/hotel/components/HotelCard.d.ts +11 -0
  165. package/dist/modules/search-form/hotel/components/HotelCard.js +180 -0
  166. package/dist/modules/search-form/hotel/components/HotelEmptyState.d.ts +6 -0
  167. package/dist/modules/search-form/hotel/components/HotelEmptyState.js +34 -0
  168. package/dist/modules/search-form/hotel/components/HotelGallery.d.ts +6 -0
  169. package/dist/modules/search-form/hotel/components/HotelGallery.js +77 -0
  170. package/dist/modules/search-form/hotel/components/HotelList.d.ts +9 -0
  171. package/dist/modules/search-form/hotel/components/HotelList.js +12 -0
  172. package/dist/modules/search-form/hotel/components/HotelMap.d.ts +26 -0
  173. package/dist/modules/search-form/hotel/components/HotelMap.js +707 -0
  174. package/dist/modules/search-form/hotel/components/HotelPin.d.ts +7 -0
  175. package/dist/modules/search-form/hotel/components/HotelPin.js +1 -0
  176. package/dist/modules/search-form/hotel/hotel-filters/HotelFilters.d.ts +29 -0
  177. package/dist/modules/search-form/hotel/hotel-filters/HotelFilters.js +339 -0
  178. package/dist/modules/search-form/hotel/hotel-filters/HotelFiltersBar.d.ts +3 -0
  179. package/dist/modules/search-form/hotel/hotel-filters/HotelFiltersBar.js +2 -0
  180. package/dist/modules/search-form/hotel/hotel-filters/HotelFiltersContent.d.ts +2 -0
  181. package/dist/modules/search-form/hotel/hotel-filters/HotelFiltersContent.js +1 -0
  182. package/dist/modules/search-form/hotel/hotel-filters/HotelFiltersDynamic.d.ts +2 -0
  183. package/dist/modules/search-form/hotel/hotel-filters/HotelFiltersDynamic.js +1 -0
  184. package/dist/modules/search-form/hotel/hotel-filters/HotelFiltersMobilePopup.d.ts +2 -0
  185. package/dist/modules/search-form/hotel/hotel-filters/HotelFiltersMobilePopup.js +1 -0
  186. package/dist/modules/search-form/hotel/hotel-filters/RangeBlock.d.ts +1 -0
  187. package/dist/modules/search-form/hotel/hotel-filters/RangeBlock.js +1 -0
  188. package/dist/modules/search-form/hotel/hotel-filters/index.d.ts +1 -0
  189. package/dist/modules/search-form/hotel/hotel-filters/index.js +1 -0
  190. package/dist/modules/tabs/FlightsTab.d.ts +1 -0
  191. package/dist/modules/tabs/FlightsTab.js +1 -0
  192. package/dist/modules/tabs/HotelsTab.d.ts +1 -0
  193. package/dist/modules/tabs/HotelsTab.js +1 -0
  194. package/dist/store/index.d.ts +22 -0
  195. package/dist/store/index.js +19 -0
  196. package/dist/theme/colors.d.ts +56 -0
  197. package/dist/theme/colors.js +56 -0
  198. package/dist/theme/formStyles.d.ts +76 -0
  199. package/dist/theme/formStyles.js +78 -0
  200. package/dist/utils/applyWidgetColors.d.ts +1 -0
  201. package/dist/utils/applyWidgetColors.js +2 -0
  202. package/dist/utils/dateTime.d.ts +2 -0
  203. package/dist/utils/dateTime.js +23 -0
  204. package/dist/utils/fetchSSE.d.ts +23 -0
  205. package/dist/utils/fetchSSE.js +104 -0
  206. package/dist/utils/getToken.d.ts +3 -0
  207. package/dist/utils/getToken.js +12 -0
  208. package/package.json +64 -0
@@ -0,0 +1,732 @@
1
+ export const defaultTranslations = {
2
+ en: {
3
+ widget_title: "Super widget",
4
+ search_flights: "Find the Cheapest Flights",
5
+ search_hotels: "Book Your Ideal Hotel",
6
+ search_cars: "Search and rent cars",
7
+ search_button: "Search",
8
+ clear_filters: "Clear filters",
9
+ show_results: "Show results",
10
+ loading: "Loading...",
11
+ no_results: "Nothing found",
12
+ try_change_filters: "Try changing your filters or search parameters.",
13
+ back_to_top: "Back to top",
14
+ tab_flights: "Flights",
15
+ tab_hotels: "Hotels",
16
+ tab_cars: "Cars",
17
+ tab_transfers: "Transfers",
18
+ tab_tours: "Tours",
19
+ from_label_flight: "From",
20
+ to_label_flight: "To",
21
+ departure_date: "Departure date",
22
+ return_date: "Return date",
23
+ passenger: "Passenger",
24
+ passengers: "Passengers",
25
+ passengers_label: "Passengers",
26
+ passenger_label: "Passenger",
27
+ adults_label: "Adults (12+)",
28
+ children_label: "Children (2–12)",
29
+ infants_label: "Infants (0–2)",
30
+ adults: "Adults",
31
+ children: "Children",
32
+ infants: "Infants",
33
+ class: "Class",
34
+ cabin_economy: "Economy",
35
+ cabin_business: "Business",
36
+ cabin_premium: "Premium economy",
37
+ direct_flights: "Direct flights only",
38
+ cabin_class_flight: "Cabin class",
39
+ airlines_label: "Airlines",
40
+ all_airlines_placeholder: "All airlines",
41
+ popular_airlines: "Popular airlines",
42
+ remove_airline: "Remove airline",
43
+ destination: "Destination",
44
+ checkin: "Check-in",
45
+ checkout: "Check-out",
46
+ guests: "Guests",
47
+ rooms: "Rooms",
48
+ price_per_night: "Price per night",
49
+ rating: "Rating",
50
+ book_now: "Book now",
51
+ pickup_location: "Pick-up location",
52
+ dropoff_location: "Drop-off location",
53
+ pickup_date: "Pick-up date",
54
+ dropoff_date: "Drop-off date",
55
+ driver_age: "Driver age",
56
+ select_car: "Select car",
57
+ rent_now: "Rent now",
58
+ cars_not_found_title: "No cars found",
59
+ cars_not_found_hint: "Try changing your search parameters or filters:",
60
+ cars_not_found_option_1: "Remove some selected options",
61
+ cars_not_found_option_2: "Choose different rental dates",
62
+ cars_not_found_option_3: "Try another pick-up location",
63
+ error_loading: "Error loading data",
64
+ loading_filters: "Loading filters",
65
+ results_found: "Found",
66
+ flight_singular: "flight",
67
+ flight_few: "flights",
68
+ flight_many: "flights",
69
+ search_btn_label: 'Search',
70
+ search_btn_label_start: 'Search...',
71
+ search_update_result_label: "Updating results...",
72
+ hours_label: "h",
73
+ minutes_label: "m",
74
+ departure_placeholder: "Departure",
75
+ return_placeholder: "Return",
76
+ no_return_ticket: "One-way only",
77
+ with_return: "Add return trip",
78
+ popular_locations: "Popular destinations",
79
+ loading_locations: "Loading...",
80
+ no_locations_found: "Nothing found",
81
+ loader_flights_title: "Searching flights",
82
+ loader_flights_prefix: "from",
83
+ loader_cars_title: "Finding cars",
84
+ loader_cars_prefix: "from",
85
+ loader_hotels_title: "Searching hotels",
86
+ loader_hotels_prefix: "in",
87
+ flights_not_found_title: "No flights found",
88
+ flights_not_found_hint: "Try adjusting your search parameters:",
89
+ flights_not_found_option_1: "Change departure or return dates",
90
+ flights_not_found_option_2: "Choose a different cabin class",
91
+ flights_not_found_option_3: "Check nearby airports",
92
+ flights_not_found_option_4: "Modify your filters",
93
+ filters_title: "Filters",
94
+ filter_price: "Price",
95
+ filter_baggage: "Luggage options",
96
+ filter_baggage_any: "Any",
97
+ filter_baggage_with: "With baggage",
98
+ filter_baggage_without: "Without baggage",
99
+ filter_transfer_outbound: "Stopovers (Outbound flight)",
100
+ filter_transfer_return: "Stopovers (Return flight)",
101
+ filter_any: "Any",
102
+ filter_nonstop: "Non-stop",
103
+ filter_stop: "stop",
104
+ filter_stops: "stops",
105
+ filter_charter: "Charter",
106
+ filter_charter_toggle: "Charter",
107
+ filter_no_airport_change: "No airport change",
108
+ filter_airlines: "Airlines",
109
+ clear_all: "Clear all",
110
+ filter_departure_outbound: "Departure time (Outbound flight)",
111
+ filter_arrival_outbound: "Arrival time (Outbound flight)",
112
+ filter_departure_return: "Departure time (Return flight)",
113
+ filter_arrival_return: "Arrival time (Return flight)",
114
+ filter_stop_duration_outbound: "Stopover time (Outbound)",
115
+ filter_stop_duration_inbound: "Stopover time (Return)",
116
+ filter_total_stop_duration: "Total layover time",
117
+ filter_reset_btn: "Reset",
118
+ filter_apply_btn: "Apply",
119
+ buy_for: "Buy for",
120
+ remaining: "Remaining",
121
+ seats: "seats",
122
+ charter: "Charter",
123
+ company_tariff: "Company fare",
124
+ special_fare: "Special fare",
125
+ special_fare_tooltip: "Special fare available only on TravelHub",
126
+ violates_policy: "Violates travel policy",
127
+ night_transfer: "Night transfer",
128
+ change_airport: "Change of airport",
129
+ long_transfer: "Long layover",
130
+ in_flight: "In flight",
131
+ transfers: "stopovers",
132
+ direct_flight: "direct",
133
+ no_segments: "No segment data",
134
+ baggage_toggle_included: "Luggage included",
135
+ baggage_toggle_not_included: "No luggage",
136
+ departure_from: "Departure from",
137
+ arrival_to: "Arrival to",
138
+ at_local_time: "at local time",
139
+ at_airport: "at airport",
140
+ flight: "Flight",
141
+ transfer: "Transfer",
142
+ total_duration: "Total duration",
143
+ baggage_included: "Baggage included",
144
+ no_baggage: "No baggage",
145
+ unknown_airline: "Unknown airline",
146
+ location_popup_placeholder: "Enter city or airport",
147
+ location_popup_popular_title: "Popular destinations",
148
+ location_popup_no_results: "Nothing found",
149
+ location_popup_loading: "Loading...",
150
+ location_popup_close_alt: "Close",
151
+ location_popup_search_alt: "Search",
152
+ passengers_popup_title: "Passengers and cabin class",
153
+ adults_label_full: "Adults (12+)",
154
+ children_label_full: "Children (2–12)",
155
+ infants_label_full: "Infants (0–2)",
156
+ cabin_label: "Cabin class",
157
+ cabin_economy_label: "Economy",
158
+ cabin_premium_label: "Premium economy",
159
+ cabin_business_label: "Business",
160
+ save_button: "Save",
161
+ passenger_singular: "Passenger",
162
+ passenger_plural: "Passengers",
163
+ airlines_popup_placeholder: "Enter airline name",
164
+ airlines_popup_popular_title: "Popular airlines",
165
+ airlines_popup_selected: "Selected",
166
+ airlines_popup_no_results: "Nothing found",
167
+ airlines_popup_loading: "Loading...",
168
+ airlines_popup_close_alt: "Close",
169
+ airlines_popup_search_alt: "Search",
170
+ car_form_same_location: "Return to same location",
171
+ car_form_pickup_location: "Pick-up location",
172
+ car_form_dropoff_location: "Drop-off location",
173
+ car_form_nationality: "Nationality",
174
+ car_form_driver_age: "Driver age",
175
+ car_form_search: "Search",
176
+ car_form_searching: "Searching...",
177
+ car_form_error_pickup: "Please select a pick-up location",
178
+ car_form_error_dropoff: "Please select a drop-off location",
179
+ car_form_error_date: "Please choose rental dates",
180
+ nationality_placeholder: "Country",
181
+ nationality_popular_title: "Popular countries",
182
+ nationality_loading: "Loading...",
183
+ nationality_no_results: "Nothing found",
184
+ nationality_popup_placeholder: "Enter country",
185
+ nationality_popup_popular_title: "Popular countries",
186
+ nationality_popup_no_results: "Nothing found",
187
+ nationality_popup_close_alt: "Close",
188
+ nationality_popup_search_alt: "Search",
189
+ age_selector_label: "Driver age",
190
+ age_selector_placeholder: "Select age range",
191
+ age_selector_mobile_title: "Select driver age",
192
+ car_filters_transmission: "Transmission",
193
+ car_filters_transmission_auto: "Automatic",
194
+ car_filters_transmission_manual: "Manual",
195
+ car_filters_seats: "Number of seats",
196
+ car_filters_options: "Included options",
197
+ car_filters_fuel_policy: "Fuel policy",
198
+ car_filters_fuel_policy_full_to_full_title: "Full to full",
199
+ car_filters_fuel_policy_full_to_full_desc: "The car will have a full tank — return it with a full tank to avoid extra charges.",
200
+ car_filters_fuel_policy_same_to_same_title: "Same to same",
201
+ car_filters_fuel_policy_same_to_same_desc: "Return the car with the same fuel level as when picked up to avoid extra charges.",
202
+ car_filters_mileage: "Mileage",
203
+ car_filters_mileage_unlimited_title: "Unlimited",
204
+ car_filters_mileage_unlimited_desc: "You can drive as much as you like — no mileage limit.",
205
+ car_filters_mileage_limited_title: "Limited",
206
+ car_filters_mileage_limited_desc: "There is a limit on kilometers — extra payment applies for exceeding it.",
207
+ car_filters_brand: "Car brand",
208
+ car_filters_suppliers: "Suppliers",
209
+ car_offers_not_found: "No cars found",
210
+ car_offers_no_name: "No name",
211
+ car_offers_seats: "seats",
212
+ car_offers_bags: "bags",
213
+ car_offers_transmission_auto: "Automatic",
214
+ car_offers_transmission_manual: "Manual",
215
+ car_offers_show_more: "Show more",
216
+ car_offers_hide_options: "Hide",
217
+ car_offers_price_for: "Price for",
218
+ car_offers_taxes_included: "(taxes and fees included)",
219
+ car_offers_book_now: "Book now",
220
+ car_offers_day_singular: "day",
221
+ car_offers_day_plural: "days",
222
+ car_top_offers_small: "Mini",
223
+ car_top_offers_medium: "Medium",
224
+ car_top_offers_suv: "SUV",
225
+ car_top_offers_large: "Large",
226
+ car_top_offers_vans: "Van",
227
+ car_top_offers_premium: "Premium",
228
+ car_top_offers_estate: "Estate",
229
+ car_top_offers_convertible: "Convertible",
230
+ hotel_locations_hotels: "Hotels",
231
+ hotel_locations_regions: "Regions",
232
+ hotel_locations_popular: "Popular destinations",
233
+ no_hotel_locations_found: "No results found",
234
+ loading_hotel_locations: "Loading...",
235
+ hotel_form_city: "City or hotel",
236
+ hotel_form_nationality: "Nationality",
237
+ hotel_form_search: "Search",
238
+ hotel_form_searching: "Search...",
239
+ hotel_form_error_location: "Select a city or hotel",
240
+ hotel_form_error_date: "Select check-in and check-out dates",
241
+ hotel_form_error_nationality: "Select nationality",
242
+ hotel_form_guests: "Guests",
243
+ hotel_form_rooms: "Rooms",
244
+ hotel_form_checkin: "Check-in",
245
+ hotel_form_checkout: "Check-out",
246
+ hotel_adults_text: "adults",
247
+ hotel_children_text: "children",
248
+ hotel_rooms_text: "room",
249
+ hotel_adults_title: "Adults",
250
+ hotel_children_title: "Children",
251
+ hotel_add_room: "Add room",
252
+ hotel_remove_room: "Remove room",
253
+ hotel_save_button: "Save",
254
+ hotels_not_found_title: "No hotels found",
255
+ hotels_not_found_hint: "Try changing your search parameters:",
256
+ hotels_not_found_option_1: "Change check-in or check-out dates",
257
+ hotels_not_found_option_2: "Select another city or hotel",
258
+ hotels_not_found_option_3: "Remove some filters",
259
+ hotels_map_loading: "Loading map...",
260
+ hotels_open_in_maps: "Open in Google Maps",
261
+ hotels_hide_description: "Hide",
262
+ hotels_show_description: "Show more",
263
+ hotels_only_1_room: "Only 1 room left at this price",
264
+ hotels_only_few_rooms: "Only {availableRooms} rooms left at this price",
265
+ hotels_price_per_night: "per night",
266
+ hotels_total_price: "Total:",
267
+ hotels_taxes_included: "(taxes and fees included)",
268
+ hotels_refundable: "Free cancellation",
269
+ hotels_view_button: "View",
270
+ hotel_singular: "hotel",
271
+ hotel_few: "hotels",
272
+ hotel_many: "hotels",
273
+ timepicker_pickup_label: "Pick-up time",
274
+ timepicker_dropoff_label: "Drop-off time",
275
+ timepicker_placeholder: "Select time",
276
+ car_not_found_title: "No cars found",
277
+ car_not_found_hint: "Try changing your search parameters:",
278
+ car_not_found_option_1: "Change departure or arrival dates",
279
+ car_not_found_option_2: "Select another location",
280
+ car_not_found_option_3: "Remove some filters",
281
+ car_form_error_nationality: "Please select nationality",
282
+ car_form_error_time_pickup: "Please select pick-up time",
283
+ car_form_error_time_dropoff: "Please select drop-off time",
284
+ hotel_form_error_max_nights: "Stay cannot more 28 nights",
285
+ hotel_children_age_title: "Please indicate the current age of the children",
286
+ check_in: "Check-in",
287
+ check_out: "Check-out",
288
+ category_regions: "Regions",
289
+ category_hotels: "Hotels",
290
+ filter_all_inclusive: "All inclusive",
291
+ filter_breakfast: "Breakfast",
292
+ filter_from_4_stars: "From 4★",
293
+ filter_full_refund: "Full refund",
294
+ filters_main: "Filters",
295
+ filter_stars: "Number of stars",
296
+ filter_stars_suffix: "stars",
297
+ filter_payments: "Payment",
298
+ filter_meals: "Meals",
299
+ filter_no_preference: "No preference",
300
+ filter_breakfast_included: "Breakfast included",
301
+ filter_lunch_included: "Lunch included",
302
+ filter_dinner_included: "Dinner included",
303
+ filter_full_board: "Full board",
304
+ filter_half_board: "Half board",
305
+ map_hotels: "hotels",
306
+ map_hotel: "hotel",
307
+ hotels_non_refundable: "Non refundable",
308
+ hotels_total_for_stay: "Total for stay",
309
+ hotels_price_per_night_2: "Per night",
310
+ map_loader: "Loading map...",
311
+ car_option_unlimited_mileage: "Unlimited mileage",
312
+ car_option_modifications: "Modifications",
313
+ car_option_airport_surcharge: "Airport Tax",
314
+ car_option_additional_driver: "Additional Driver",
315
+ car_option_gps_navigation_system: "GPS Navigation system",
316
+ car_option_hotel_delivery_charge: "Hotel delivery charge",
317
+ car_option_vat_local_tax: "VAT Local Tax",
318
+ car_option_road_fund_tax: "Road Fund Tax",
319
+ car_option_collision_damage_waiver: "Collision Damage Waiver",
320
+ car_option_theft_protection_tp: "Theft protection (TP)",
321
+ car_option_third_party_liability_protection_tpl_tpi: "Third Party Liability Protection (TPL/TPI)",
322
+ car_option_loss_damage_waiver: "Loss Damage Waiver",
323
+ car_option_zero_excess_insurance: "Zero excess insurance",
324
+ car_option_low_excess_insurance: "Low excess insurance",
325
+ car_option_cancellation: "Cancellation",
326
+ car_option_first_additional_driver: "First additional driver",
327
+ car_option_one_way_drop_off: "One way drop off",
328
+ car_option_out_of_hours_service: "Out of hours service",
329
+ car_option_airport_out_of_hours_service: "Airport out of hours service",
330
+ car_option_child_booster_baby_seats: "Child Booster Baby Seats",
331
+ car_option_breakdown_assistance: "Breakdown Assistance",
332
+ car_option_young_driver_fee: "Young driver fee",
333
+ car_option_winter_tyres: "Winter Tyres",
334
+ car_option_winter_snow_chains: "Winter snow chains",
335
+ car_option_winter_package: "Winter Package",
336
+ car_option_crossing_borders: "Crossing borders",
337
+ car_option_license_plate_fee: "License Plate Fee",
338
+ car_option_limited_mileage: "Limited mileage",
339
+ car_option_windscreen_insurance: "Windscreen insurance",
340
+ car_option_highway_toll_sticker: "Highway/Toll Sticker",
341
+ car_option_chauffeur_service: "Chauffeur Service",
342
+ car_option_mobile_tablet: "Mobile Tablet",
343
+ car_option_wi_fi: "Wi-Fi",
344
+ car_option_premium_location_fee: "Premium Location Fee",
345
+ car_option_environmental_charge: "Environmental Charge",
346
+ car_option_contract_fee: "Contract Fee",
347
+ car_option_tourism_levy: "Tourism Levy",
348
+ car_option_energy_recovery_fee: "Energy Recovery Fee",
349
+ car_option_supplemental_liability_insurance_sli: "Supplemental Liability Insurance (SLI)",
350
+ car_option_personal_accident_insurance_pai: "Personal Accident Insurance (PAI)",
351
+ car_option_mobile_phone: "Mobile Phone",
352
+ car_option_public_liability_insurance_pli: "Public Liability Insurance (PLI)",
353
+ car_option_toll_fee_device: "Toll fee device",
354
+ car_option_child_seat: "Child seat",
355
+ car_option_extended_protection_cover_ecp_ep: "Extended protection cover (ECP/EP)",
356
+ car_option_tyre_glass_insurance: "Tyre & glass insurance",
357
+ car_option_renters_liability_protection_rlp: "Renters Liability Protection (RLP)",
358
+ car_option_full_damage_waiver: "Full Damage Waiver",
359
+ car_option_express_service: "Express Service",
360
+ travel_time: "Travel time",
361
+ },
362
+ ru: {
363
+ widget_title: "Супер виджет",
364
+ search_flights: "Поиск авиабилетов",
365
+ search_hotels: "Поиск отелей",
366
+ search_cars: "Аренда автомобилей",
367
+ search_button: "Найти",
368
+ clear_filters: "Очистить фильтры",
369
+ show_results: "Показать результаты",
370
+ loading: "Загрузка...",
371
+ no_results: "Ничего не найдено",
372
+ try_change_filters: "Попробуйте изменить фильтры или параметры поиска.",
373
+ back_to_top: "Наверх",
374
+ tab_flights: "Авиабилеты",
375
+ tab_hotels: "Отели",
376
+ tab_cars: "Авто",
377
+ tab_transfers: "Трансферы",
378
+ tab_tours: "Туры",
379
+ from_label_flight: "Откуда",
380
+ to_label_flight: "Куда",
381
+ departure_date: "Когда",
382
+ return_date: "Обратно",
383
+ passenger: "Пассажир",
384
+ passengers: "Пассажиры",
385
+ passengers_label: "Пассажиры",
386
+ passenger_label: "Пассажир",
387
+ adults_label: "Взрослые (12+)",
388
+ children_label: "Дети (2–12)",
389
+ infants_label: "Младенцы (0–2)",
390
+ adults: "Взрослые",
391
+ children: "Дети",
392
+ infants: "Младенцы",
393
+ class: "Класс",
394
+ cabin_economy: "Эконом",
395
+ cabin_business: "Бизнес",
396
+ cabin_premium: "Премиум эконом",
397
+ direct_flights: "Только прямые рейсы",
398
+ cabin_class_flight: "Класс кабины",
399
+ airlines_label: "Авиакомпании",
400
+ all_airlines_placeholder: "Все авиакомпании",
401
+ popular_airlines: "Популярные авиакомпании",
402
+ remove_airline: "Удалить авиакомпанию",
403
+ destination: "Направление",
404
+ checkin: "Заезд",
405
+ checkout: "Выезд",
406
+ guests: "Гости",
407
+ rooms: "Номера",
408
+ price_per_night: "Цена за ночь",
409
+ rating: "Рейтинг",
410
+ book_now: "Забронировать",
411
+ pickup_location: "Место получения",
412
+ dropoff_location: "Место возврата",
413
+ pickup_date: "Дата получения",
414
+ dropoff_date: "Дата возврата",
415
+ driver_age: "Возраст водителя",
416
+ select_car: "Выбрать авто",
417
+ rent_now: "Арендовать",
418
+ cars_not_found_title: "Машины не найдены",
419
+ cars_not_found_hint: "Попробуйте изменить параметры поиска или фильтры:",
420
+ cars_not_found_option_1: "Уберите часть выбранных опций",
421
+ cars_not_found_option_2: "Выберите другие даты аренды",
422
+ cars_not_found_option_3: "Попробуйте другое место получения",
423
+ error_loading: "Ошибка загрузки данных",
424
+ loading_filters: "Загружаем фильтры",
425
+ results_found: "Найдено",
426
+ flight_singular: "рейс",
427
+ flight_few: "рейса",
428
+ flight_many: "рейсов",
429
+ search_btn_label: 'Поиск',
430
+ search_btn_label_start: 'Поиск...',
431
+ search_update_result_label: "Обновляем результаты...",
432
+ hours_label: "ч",
433
+ minutes_label: "м",
434
+ departure_placeholder: "Когда",
435
+ return_placeholder: "Обратно",
436
+ no_return_ticket: "Обратный билет не нужен",
437
+ with_return: "Сделать с возвратом",
438
+ popular_locations: "Популярные направления",
439
+ loading_locations: "Загрузка...",
440
+ no_locations_found: "Ничего не найдено",
441
+ loader_flights_title: "Ищем билеты",
442
+ loader_flights_prefix: "в",
443
+ loader_cars_title: "Подбираем авто",
444
+ loader_cars_prefix: "у",
445
+ loader_hotels_title: "Ищем отели",
446
+ loader_hotels_prefix: "в",
447
+ flights_not_found_title: "Рейсы не найдены",
448
+ flights_not_found_hint: "Попробуйте изменить параметры поиска:",
449
+ flights_not_found_option_1: "Измените даты вылета и возвращения",
450
+ flights_not_found_option_2: "Выберите другой класс обслуживания",
451
+ flights_not_found_option_3: "Проверьте соседние аэропорты",
452
+ flights_not_found_option_4: "Измените фильтры",
453
+ filters_title: "Фильтры",
454
+ filter_price: "Цена",
455
+ filter_baggage: "Багаж",
456
+ filter_baggage_any: "Любое",
457
+ filter_baggage_with: "С багажом",
458
+ filter_baggage_without: "Без багажа",
459
+ filter_transfer_outbound: "Пересадки туда",
460
+ filter_transfer_return: "Пересадки обратно",
461
+ filter_any: "Любое",
462
+ filter_nonstop: "Без пересадок",
463
+ filter_stop: "пересадка",
464
+ filter_stops: "пересадки",
465
+ filter_charter: "Чартер",
466
+ filter_charter_toggle: "Чартер",
467
+ filter_no_airport_change: "Без смены аэропорта",
468
+ filter_airlines: "Авиакомпании",
469
+ clear_all: "Снять всё",
470
+ filter_departure_outbound: "Время вылета туда",
471
+ filter_arrival_outbound: "Время прилета туда",
472
+ filter_departure_return: "Время вылета обратно",
473
+ filter_arrival_return: "Время прилета обратно",
474
+ filter_stop_duration_outbound: "Длительность пересадки туда",
475
+ filter_stop_duration_inbound: "Длительность пересадки обратно",
476
+ filter_total_stop_duration: "Общая длительность пересадки",
477
+ filter_reset_btn: "Сбросить",
478
+ filter_apply_btn: "Применить",
479
+ buy_for: "Купить за",
480
+ remaining: "Осталось",
481
+ seats: "мест",
482
+ charter: "Чартер",
483
+ company_tariff: "Тариф компании",
484
+ special_fare: "Специальный тариф",
485
+ special_fare_tooltip: "Специальный тариф, доступный только в TravelHub",
486
+ violates_policy: "Нарушает тревел-политику",
487
+ night_transfer: "Ночная пересадка",
488
+ change_airport: "Смена аэропорта",
489
+ long_transfer: "Долгая пересадка",
490
+ in_flight: "В пути",
491
+ transfers: "пересадки",
492
+ direct_flight: "прямой",
493
+ no_segments: "Нет данных о сегментах",
494
+ baggage_toggle_included: "Багаж включен",
495
+ baggage_toggle_not_included: "Без багажа",
496
+ departure_from: "Вылет из аэропорта",
497
+ arrival_to: "Прилёт в аэропорт",
498
+ at_local_time: "по местному времени",
499
+ at_airport: "в аэропорту",
500
+ flight: "Рейс",
501
+ transfer: "Пересадка",
502
+ total_duration: "Время в пути",
503
+ baggage_included: "Багаж включен",
504
+ no_baggage: "Без багажа",
505
+ unknown_airline: "Неизвестная авиакомпания",
506
+ location_popup_placeholder: "Введите город или аэропорт",
507
+ location_popup_popular_title: "Популярные направления",
508
+ location_popup_no_results: "Ничего не найдено",
509
+ location_popup_loading: "Загрузка...",
510
+ location_popup_close_alt: "Закрыть",
511
+ location_popup_search_alt: "Поиск",
512
+ passengers_popup_title: "Пассажиры и класс",
513
+ adults_label_full: "Взрослые (12+)",
514
+ children_label_full: "Дети (2–12)",
515
+ infants_label_full: "Младенцы (0–2)",
516
+ cabin_label: "Класс",
517
+ cabin_economy_label: "Эконом",
518
+ cabin_premium_label: "Премиум эконом",
519
+ cabin_business_label: "Бизнес",
520
+ save_button: "Сохранить",
521
+ passenger_singular: "Пассажир",
522
+ passenger_plural: "Пассажиров",
523
+ airlines_popup_placeholder: "Введите авиакомпанию",
524
+ airlines_popup_popular_title: "Популярные авиакомпании",
525
+ airlines_popup_selected: "Выбрано",
526
+ airlines_popup_no_results: "Ничего не найдено",
527
+ airlines_popup_loading: "Загрузка...",
528
+ airlines_popup_close_alt: "Закрыть",
529
+ airlines_popup_search_alt: "Поиск",
530
+ car_form_same_location: "Возврат там же",
531
+ car_form_pickup_location: "Место получения",
532
+ car_form_dropoff_location: "Место возврата",
533
+ car_form_nationality: "Гражданство",
534
+ car_form_driver_age: "Возраст водителя",
535
+ car_form_search: "Поиск",
536
+ car_form_searching: "Поиск...",
537
+ car_form_error_pickup: "Укажите место получения",
538
+ car_form_error_dropoff: "Укажите место возврата",
539
+ car_form_error_date: "Выберите даты аренды",
540
+ nationality_placeholder: "Страна",
541
+ nationality_popular_title: "Популярные страны",
542
+ nationality_loading: "Загрузка...",
543
+ nationality_no_results: "Ничего не найдено",
544
+ nationality_popup_placeholder: "Введите страну",
545
+ nationality_popup_popular_title: "Популярные страны",
546
+ nationality_popup_no_results: "Ничего не найдено",
547
+ nationality_popup_close_alt: "Закрыть",
548
+ nationality_popup_search_alt: "Поиск",
549
+ age_selector_label: "Возраст водителя",
550
+ age_selector_placeholder: "Выберите возраст",
551
+ age_selector_mobile_title: "Выберите возраст водителя",
552
+ car_filters_transmission: "Коробка передач",
553
+ car_filters_transmission_auto: "Автомат",
554
+ car_filters_transmission_manual: "Механика",
555
+ car_filters_seats: "Количество мест",
556
+ car_filters_options: "Опции",
557
+ car_filters_fuel_policy: "Топливная политика",
558
+ car_filters_fuel_policy_full_to_full_title: "Получение и возврат с полным баком",
559
+ car_filters_fuel_policy_full_to_full_desc: "В автомобиле будет полный бак топлива — верните его с полным баком, чтобы избежать дополнительных расходов.",
560
+ car_filters_fuel_policy_same_to_same_title: "Получение и возврат с одинаковым уровнем топлива",
561
+ car_filters_fuel_policy_same_to_same_desc: "Верните автомобиль с тем же количеством топлива, что и при получении, чтобы избежать дополнительных расходов.",
562
+ car_filters_mileage: "Пробег",
563
+ car_filters_mileage_unlimited_title: "Неограниченный",
564
+ car_filters_mileage_unlimited_desc: "Вы можете проехать сколько угодно — без ограничений по пробегу.",
565
+ car_filters_mileage_limited_title: "Ограничено",
566
+ car_filters_mileage_limited_desc: "Есть ограничение на количество километров — дополнительная оплата за превышение.",
567
+ car_filters_brand: "Марка автомобиля",
568
+ car_filters_suppliers: "Поставщики",
569
+ car_offers_not_found: "Ничего не найдено",
570
+ car_offers_no_name: "Без названия",
571
+ car_offers_seats: "мест",
572
+ car_offers_bags: "сумок",
573
+ car_offers_transmission_auto: "Автомат",
574
+ car_offers_transmission_manual: "Механика",
575
+ car_offers_show_more: "Показать больше",
576
+ car_offers_hide_options: "Скрыть",
577
+ car_offers_price_for: "Цена за",
578
+ car_offers_taxes_included: "(включая налоги и сборы)",
579
+ car_offers_book_now: "Забронировать",
580
+ car_offers_day_1: "день",
581
+ car_offers_day_2_4: "дня",
582
+ car_offers_day_5: "дней",
583
+ car_top_offers_small: "Мини",
584
+ car_top_offers_medium: "Средний",
585
+ car_top_offers_suv: "Внедорожник",
586
+ car_top_offers_large: "Большой",
587
+ car_top_offers_vans: "Фургон",
588
+ car_top_offers_premium: "Премиум",
589
+ car_top_offers_estate: "Универсал",
590
+ car_top_offers_convertible: "Кабриолет",
591
+ hotel_locations_hotels: "Отели",
592
+ hotel_locations_regions: "Регионы",
593
+ hotel_locations_popular: "Популярные направления",
594
+ no_hotel_locations_found: "Ничего не найдено",
595
+ loading_hotel_locations: "Загрузка...",
596
+ hotel_form_city: "Город или отель",
597
+ hotel_form_nationality: "Гражданство",
598
+ hotel_form_search: "Поиск",
599
+ hotel_form_searching: "Поиск...",
600
+ hotel_form_error_location: "Выберите город или отель",
601
+ hotel_form_error_date: "Выберите даты проживания",
602
+ hotel_form_error_nationality: "Укажите гражданство",
603
+ hotel_form_guests: "Гости",
604
+ hotel_form_rooms: "Номера",
605
+ hotel_form_checkin: "Заезд",
606
+ hotel_form_checkout: "Выезд",
607
+ hotel_adults_text: "взрослых",
608
+ hotel_children_text: "детей",
609
+ hotel_rooms_text: "номер",
610
+ hotel_adults_title: "Взрослые",
611
+ hotel_children_title: "Дети",
612
+ hotel_add_room: "Добавить комнату",
613
+ hotel_remove_room: "Удалить комнату",
614
+ hotel_save_button: "Сохранить",
615
+ hotels_not_found_title: "Отели не найдены",
616
+ hotels_not_found_hint: "Попробуйте изменить параметры поиска:",
617
+ hotels_not_found_option_1: "Измените даты проживания",
618
+ hotels_not_found_option_2: "Выберите другой город или отель",
619
+ hotels_not_found_option_3: "Уберите некоторые фильтры",
620
+ hotels_map_loading: "Загрузка карты...",
621
+ hotels_open_in_maps: "Открыть на Google Maps",
622
+ hotels_hide_description: "Скрыть",
623
+ hotels_show_description: "Показать больше",
624
+ hotels_only_1_room: "Остался всего 1 номер по этой цене",
625
+ hotels_only_few_rooms: "Осталось всего {availableRooms} номера по этой цене",
626
+ hotels_price_per_night: "за ночь",
627
+ hotels_total_price: "Всего:",
628
+ hotels_taxes_included: "(включая налоги и сборы)",
629
+ hotels_refundable: "Полный возврат",
630
+ hotels_view_button: "Посмотреть",
631
+ hotel_singular: "отель",
632
+ hotel_few: "отеля",
633
+ hotel_many: "отелей",
634
+ timepicker_pickup_label: "Время получения",
635
+ timepicker_dropoff_label: "Время возврата",
636
+ timepicker_placeholder: "Выберите время",
637
+ car_not_found_title: "Машины не найдены",
638
+ car_not_found_hint: "Попробуйте изменить параметры поиска:",
639
+ car_not_found_option_1: "Измените даты",
640
+ car_not_found_option_2: "Выберите другую локацию",
641
+ car_not_found_option_3: "Уберите некоторые фильтры",
642
+ car_form_error_nationality: "Укажите гражданство",
643
+ car_form_error_time_pickup: "Укажите время получения",
644
+ car_form_error_time_dropoff: "Укажите время возврата",
645
+ hotel_form_error_max_nights: "Период проживания не может превышать 28 дней",
646
+ hotel_children_age_title: "Укажите возраст детей на сегодняшний день",
647
+ check_in: "Заезд",
648
+ check_out: "Выезд",
649
+ category_regions: "Регионы",
650
+ category_hotels: "Отели",
651
+ filter_all_inclusive: "Всё включено",
652
+ filter_breakfast: "Завтрак",
653
+ filter_from_4_stars: "От 4★",
654
+ filter_full_refund: "Полный возврат",
655
+ filters_main: "Фильтры",
656
+ filter_stars: "Количество звёзд",
657
+ filter_stars_suffix: "звёзд",
658
+ filter_payments: "Оплата",
659
+ filter_meals: "Питание",
660
+ filter_no_preference: "Без предпочтений",
661
+ filter_breakfast_included: "Включён завтрак",
662
+ filter_lunch_included: "Включён обед",
663
+ filter_dinner_included: "Включён ужин",
664
+ filter_full_board: "Полный пансион",
665
+ filter_half_board: "Полупансион",
666
+ map_hotels: "отелей",
667
+ map_hotel: "отеля",
668
+ hotels_non_refundable: "Без возврата",
669
+ hotels_total_for_stay: "Итого за проживание",
670
+ hotels_price_per_night_2: "За ночь",
671
+ map_loader: "Загрузка карты...",
672
+ car_option_unlimited_mileage: "Безлимитный пробег",
673
+ car_option_modifications: "Изменения",
674
+ car_option_airport_surcharge: "Аэропортный сбор",
675
+ car_option_additional_driver: "Дополнительный водитель",
676
+ car_option_gps_navigation_system: "GPS навигация",
677
+ car_option_hotel_delivery_charge: "Доставка к отелю",
678
+ car_option_vat_local_tax: "НДС / местный налог",
679
+ car_option_road_fund_tax: "Дорожный сбор",
680
+ car_option_collision_damage_waiver: "Страховка от повреждений (CDW)",
681
+ car_option_theft_protection_tp: "Защита от угона (TP)",
682
+ car_option_third_party_liability_protection_tpl_tpi: "Страховка ответственности перед третьими лицами (TPL/TPI)",
683
+ car_option_loss_damage_waiver: "Отказ от ответственности за ущерб",
684
+ car_option_zero_excess_insurance: "Страховка без франшизы",
685
+ car_option_low_excess_insurance: "Страховка с низкой франшизой",
686
+ car_option_cancellation: "Бесплатная отмена",
687
+ car_option_first_additional_driver: "Доп. водитель",
688
+ car_option_one_way_drop_off: "Возврат в другой точке",
689
+ car_option_out_of_hours_service: "Обслуживание вне часов работы",
690
+ car_option_airport_out_of_hours_service: "Обслуживание в аэропорту вне часов работы",
691
+ car_option_child_booster_baby_seats: "Детские кресла",
692
+ car_option_breakdown_assistance: "Техпомощь",
693
+ car_option_young_driver_fee: "Сбор за молодого водителя",
694
+ car_option_winter_tyres: "Зимние шины",
695
+ car_option_winter_snow_chains: "Зимние цепи",
696
+ car_option_winter_package: "Зимний пакет",
697
+ car_option_crossing_borders: "Пересечение границ",
698
+ car_option_license_plate_fee: "Сбор за номерной знак",
699
+ car_option_limited_mileage: "Ограниченный пробег",
700
+ car_option_windscreen_insurance: "Страховка лобового стекла",
701
+ car_option_highway_toll_sticker: "Наклейка на платную дорогу",
702
+ car_option_chauffeur_service: "Услуги водителя",
703
+ car_option_mobile_tablet: "Планшет",
704
+ car_option_wi_fi: "Wi-Fi",
705
+ car_option_premium_location_fee: "Сбор за премиум-локацию",
706
+ car_option_environmental_charge: "Экологический сбор",
707
+ car_option_contract_fee: "Сбор за контракт",
708
+ car_option_tourism_levy: "Туристический налог",
709
+ car_option_energy_recovery_fee: "Сбор за энергопотребление",
710
+ car_option_supplemental_liability_insurance_sli: "Дополнительная ответственность (SLI)",
711
+ car_option_personal_accident_insurance_pai: "Страховка от несчастных случаев (PAI)",
712
+ car_option_mobile_phone: "Мобильный телефон",
713
+ car_option_public_liability_insurance_pli: "Гражданская ответственность (PLI)",
714
+ car_option_toll_fee_device: "Устройство для оплаты дорог",
715
+ car_option_child_seat: "Детское сиденье",
716
+ car_option_extended_protection_cover_ecp_ep: "Расширенная страховка (ECP/EP)",
717
+ car_option_tyre_glass_insurance: "Страховка шин и стекол",
718
+ car_option_renters_liability_protection_rlp: "Защита ответственности арендатора (RLP)",
719
+ car_option_full_damage_waiver: "Полная страховка от ущерба",
720
+ car_option_express_service: "Ускоренное обслуживание",
721
+ car_category_small: "Мини",
722
+ car_category_medium: "Средний",
723
+ car_category_suv: "Внедорожник",
724
+ car_category_estate: "Универсал",
725
+ car_category_large: "Большой",
726
+ car_category_premium: "Премиум",
727
+ car_category_vans: "Фургон",
728
+ car_category_convertible: "Кабриолет",
729
+ car_category_commercial: "Грузовой",
730
+ travel_time: "Время в пути",
731
+ },
732
+ };