bukazu-portal-react 3.1.9 → 3.1.10
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.
- package/package.json +2 -2
- package/src/components/CalendarPage/CalendarParts/RenderCells.tsx +10 -7
- package/src/locales/de.json +126 -125
- package/src/locales/en.json +126 -125
- package/src/locales/es.json +121 -120
- package/src/locales/fr.json +121 -120
- package/src/locales/it.json +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bukazu-portal-react",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.10",
|
|
4
4
|
"description": "A package for loading the calendar and search module from bukazu loading into a react app.",
|
|
5
5
|
"repository": "https://github.com/BUKAZU/React-portal",
|
|
6
6
|
"scripts": {
|
|
@@ -95,4 +95,4 @@
|
|
|
95
95
|
"jsx-a11y"
|
|
96
96
|
]
|
|
97
97
|
}
|
|
98
|
-
}
|
|
98
|
+
}
|
|
@@ -7,14 +7,9 @@ import {
|
|
|
7
7
|
startOfWeek,
|
|
8
8
|
subDays,
|
|
9
9
|
isBefore,
|
|
10
|
-
|
|
11
|
-
differenceInCalendarDays,
|
|
12
|
-
addMonths,
|
|
13
|
-
isSameMonth,
|
|
14
|
-
parse,
|
|
15
|
-
isSameDay
|
|
10
|
+
parse
|
|
16
11
|
} from 'date-fns';
|
|
17
|
-
import { FormatIntl
|
|
12
|
+
import { FormatIntl } from '../../../_lib/date_helper';
|
|
18
13
|
import DayClasses from './DayClasses';
|
|
19
14
|
import { HouseType } from '../../../types';
|
|
20
15
|
import { CalendarContext, CalendarContextDispatch } from './CalendarContext';
|
|
@@ -69,6 +64,14 @@ function RenderCells({
|
|
|
69
64
|
role="button"
|
|
70
65
|
tabIndex={0}
|
|
71
66
|
onClick={() => {
|
|
67
|
+
if (
|
|
68
|
+
isBefore(
|
|
69
|
+
parse(cloneDay.date, 'yyyy-MM-dd', new Date()),
|
|
70
|
+
new Date()
|
|
71
|
+
)
|
|
72
|
+
) {
|
|
73
|
+
return;
|
|
74
|
+
}
|
|
72
75
|
dispatch({
|
|
73
76
|
type: 'clicked',
|
|
74
77
|
day: cloneDay,
|
package/src/locales/de.json
CHANGED
|
@@ -1,126 +1,127 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
2
|
+
"next": "Nächste",
|
|
3
|
+
"previous": "Vorherige",
|
|
4
|
+
"view_details": "Details anzeigen",
|
|
5
|
+
"reviews_note": "",
|
|
6
|
+
"price": "Preis",
|
|
7
|
+
"calculate": "Nächst",
|
|
8
|
+
"book": "Buchen",
|
|
9
|
+
"booked": "Gebucht",
|
|
10
|
+
"booking": "Buchung",
|
|
11
|
+
"last_minute_discount": "Last Minute Rabatt",
|
|
12
|
+
"option": "Option",
|
|
13
|
+
"choose_for_option": "Machen Sie eine kostenlose Option",
|
|
14
|
+
"included_in_price": "inklusive",
|
|
15
|
+
"rent_price": "Reisepreis",
|
|
16
|
+
"discount": "Rabatt",
|
|
17
|
+
"extra_costs_included": "Nebenkosten enthalten",
|
|
18
|
+
"optional_costs": "Zusätzliche Optionen",
|
|
19
|
+
"price_after_discount": "Mietpreis inkl. Rabatt",
|
|
20
|
+
"booking_from_til": "Buchungsdaten",
|
|
21
|
+
"total": "Gesamt",
|
|
22
|
+
"stay_details": "Reisegruppe",
|
|
23
|
+
"babies": "Babys",
|
|
24
|
+
"babies_from": "(bis einschl. {babies} Jahre)",
|
|
25
|
+
"adults": "Erwachsene",
|
|
26
|
+
"adults_from": "(ab {age} Jahre)",
|
|
27
|
+
"children": "Kinder",
|
|
28
|
+
"children_from": "(von {from} bis einschl. {til} Jahre)",
|
|
29
|
+
"house.arrival_date": "Anreisedatum",
|
|
30
|
+
"house.departure_date": "Abreisedatum",
|
|
31
|
+
"house.arrival": "Ankunft",
|
|
32
|
+
"house.departure": "Abreise",
|
|
33
|
+
"tent.arrival_date": "Anreisedatum",
|
|
34
|
+
"tent.departure_date": "Abreisedatum",
|
|
35
|
+
"tent.arrival": "Ankunft",
|
|
36
|
+
"tent.departure": "Abreise",
|
|
37
|
+
"extra_costs_bookable": "Zusätzliche Optionen",
|
|
38
|
+
"costs_on_site": "Zusätzliche Kosten vor Ort:",
|
|
39
|
+
"insurances": "Versicherungen",
|
|
40
|
+
"at_least_1_adult": "Wählen Sie mindestens einen Erwachsenen aus.",
|
|
41
|
+
"max_persons_reached": "Es wurden zu viele Personen ausgewählt.",
|
|
42
|
+
"personal_details": "Ihre Daten",
|
|
43
|
+
"required": "Dieses Feld wird benötigt.",
|
|
44
|
+
"cancel_insurance_all_risk": "Allrisk",
|
|
45
|
+
"cancel_insurance_normal": "Standard",
|
|
46
|
+
"none": "Keine",
|
|
47
|
+
"cancel_insurance": "Reiserücktrittsversicherung",
|
|
48
|
+
"insurance_costs": "Policekosten",
|
|
49
|
+
"choose": "Wählen",
|
|
50
|
+
"yes": "Ja",
|
|
51
|
+
"booking_details": "Buchungsdetails",
|
|
52
|
+
"based_on_one_person": "Basierend auf {persons} Personen",
|
|
53
|
+
"return_to_calendar": "Zurück zum Kalender",
|
|
54
|
+
"close": "Schließen",
|
|
55
|
+
"cancel_insurance_normal_long": "Standard-Reiserücktrittsversicherung",
|
|
56
|
+
"cancel_insurance_normal_desc": "Mit der Standard-Reiserücktrittsversicherung sind Sie gut versichert, wenn Sie Ihre Reise stornieren müssen. Neben den Stornokosten sind auch die Kosten der ungenutzten Reisetage versichert. Sie können einen Teil Ihrer Reise nicht antreten, da Sie früher nach Hause müssen? Dann erhalten Sie eine Erstattung für jeden Urlaubstag, den Sie nicht genießen konnten.",
|
|
57
|
+
"cancel_insurance_all_risk_long": "Allrisk-Reiserücktrittsversicherung",
|
|
58
|
+
"cancel_insurance_desc": "Es können sich leider Umstände ergeben, die einen dazu zwingen, den Urlaub abzusagen. Oder Sie müssen später anreisen oder früher wieder abreisen. Mit einer Reiserücktrittsversicherung müssen Sie nicht selbst für diese Kosten aufkommen. Nur Einwohner aus den Niederlanden, Belgien und Deutschland können die Versicherung abschließen. Sie haben die Wahl zwischen zwei Typen von Reiserücktrittsversicherungen:",
|
|
59
|
+
"cancel_insurance_all_risk_desc": "Bei der All-Risk-Reiserücktrittsversicherung werden Ihnen 100% der Stornierungskosten erstattet, wenn Sie aus einem normalen Grund stornieren, z. B. wegen einer Krankheit, die Sie am Reisen hindert. Oder der Tod eines Großelternteils. Möchten Sie aus einem anderen Grund stornieren, der Ihnen persönlich wichtig ist? Dann werden Ihnen 75% der Stornierungskosten erstattet.\n Aber Vorsicht: Diese Versicherung legt einige Bedingungen für die Stornierung fest. Zum Beispiel muss der Grund für die Stornierung 'unvorhergesehen' und 'unverschuldet' sein. Die Versicherung bietet daher keinen Versicherungsschutz für Stornierungsgründe, die Sie bereits vor Abschluss der Versicherung kannten (nicht unvorhergesehen) oder die Sie möglicherweise gegen sich selbst hätten tun können (nicht durch Ihr eigenes Verschulden). Konsultieren Sie die Bedingungen für die Ausnahmen.",
|
|
60
|
+
"terms_and_costs": "Prämie und Bedingungen",
|
|
61
|
+
"costs_normal_cancel_insurance": "Prämie Standard-Reiserücktrittsversicherung:",
|
|
62
|
+
"costs_allrisk_cancel_insurance": "Prämie Allrisk-Reiserücktrittsversicherung:",
|
|
63
|
+
"666_costs": "6.66% der Reisekosten",
|
|
64
|
+
"847_costs": "8.47% der Reisekosten",
|
|
65
|
+
"more_information": "Weitere Informationen:",
|
|
66
|
+
"show_terms": "Siehe Bedingungen",
|
|
67
|
+
"terms": "Terms",
|
|
68
|
+
"remark": "Anmerkung",
|
|
69
|
+
"9persons_9addresses": "Die Versicherung ist gültig für maximal 9 Personen, die am 9 verschiedene Adressen wohnen,",
|
|
70
|
+
"or": "oder",
|
|
71
|
+
"9persons_4addresses": "Die Versicherung ist gültig für eine unbegrenzte Anzahl von Personen, die an maximal 4 verschiedenen Adressen wohnen.",
|
|
72
|
+
"poliscosts": "Police Kosten",
|
|
73
|
+
"poliscosts_are": "Es gibt einmalig € 6,95 Police-Kosten für die Bearbeitung der Versicherungen. Egal ob Sie 1 oder mehrere Versicherungen abschließen.",
|
|
74
|
+
"youwillrecieve": "Sie erhalten nach der Buchungsbestätigung im Anschluss an Ihre Buchung die Versicherungsbedingungen per E-Mail. Die Versicherung tritt mit der Ihrer Anzahlung in Kraft.",
|
|
75
|
+
"thank_you_for_your_request": "Vielen Dank für Ihre Buchungs/Options-Anfrage.",
|
|
76
|
+
"we_sent_confirmation_check_email": "Eine Kopie Ihrer Anfrage wurde an Ihre E-Mail-Adresse gesendet. Wenn Sie keine E-Mail von uns erhalten haben, befindet sich diese möglicherweise in Ihrer Spam-Box.",
|
|
77
|
+
"something_went_wrong_please_try_again": "Ups, es ist ein Fehler aufgetreten. Bitte versuchen Sie es später erneut.",
|
|
78
|
+
"persons": "Personen",
|
|
79
|
+
"bedrooms": "Schlafzimmer",
|
|
80
|
+
"minimum_week_price": "min. Wochenpreis",
|
|
81
|
+
"no_results": "Keine Ergebnisse",
|
|
82
|
+
"agree_with": "Indem Sie auf 'Buchen' klicken, akzeptieren Sie die",
|
|
83
|
+
"discount_reason": "Grund für Rabatt",
|
|
84
|
+
"results": "Ergebnisse",
|
|
85
|
+
"bathrooms": "Badezimmer",
|
|
86
|
+
"you_need_to_give_reason": "Sie müssen einen gültigen Rabattgrund angeben",
|
|
87
|
+
"camper.arrival_date": "Abholdatum",
|
|
88
|
+
"camper.departure_date": "Rückgabedatum",
|
|
89
|
+
"camper.arrival": "Abholen",
|
|
90
|
+
"camper.departure": "Rückgabe",
|
|
91
|
+
"boat.arrival_date": "Abholdatum",
|
|
92
|
+
"boat.departure_date": "Rückgabedatum",
|
|
93
|
+
"boat.arrival": "Abholen",
|
|
94
|
+
"boat.departure": "Rückgabe",
|
|
95
|
+
"caravan.arrival_date": "Anreisedatum",
|
|
96
|
+
"caravan.departure_date": "Abreisedatum",
|
|
97
|
+
"caravan.arrival": "Ankunft",
|
|
98
|
+
"caravan.departure": "Abreise",
|
|
99
|
+
"filters": "Filter",
|
|
100
|
+
"comply_insurance_card": "Ich bin damit einverstanden, dass die Versicherungskarte der Reiserücktrittsversicherung digital ausgestellt wird. Ich erhalte diese mit meiner Buchungsbestätigung.",
|
|
101
|
+
"house.you_picked_arrival_date": "Ihre Ankunft ist",
|
|
102
|
+
"house.pick_your_departure_in_the_calendar": "Wählen Sie ein Abreisedatum",
|
|
103
|
+
"house.you_picked_departure_date": "Ihr Abreisedatum ist",
|
|
104
|
+
"house.pick_your_arrivaldate_in_the_calendar": "Wählen Sie das Ankunftsdatum",
|
|
105
|
+
"tent.you_picked_arrival_date": "Ihre Ankunft ist",
|
|
106
|
+
"tent.pick_your_departure_in_the_calendar": "Wählen Sie ein Abreisedatum",
|
|
107
|
+
"tent.you_picked_departure_date": "Ihr Abreisedatum ist",
|
|
108
|
+
"tent.pick_your_arrivaldate_in_the_calendar": "Wählen Sie das Ankunftsdatum",
|
|
109
|
+
"camper.you_picked_arrival_date": "Ihr Abholdatum ist",
|
|
110
|
+
"camper.pick_your_departure_in_the_calendar": "Wählen Sie ein Rückgabedatum",
|
|
111
|
+
"camper.you_picked_departure_date": "Ihr Rückgabedatum ist",
|
|
112
|
+
"camper.pick_your_arrivaldate_in_the_calendar": "Wählen Sie einen Abholtermin",
|
|
113
|
+
"boat.you_picked_arrival_date": "Ihr Abholdatum ist",
|
|
114
|
+
"boat.pick_your_departure_in_the_calendar": "Wählen Sie ein Rückgabedatum",
|
|
115
|
+
"boat.you_picked_departure_date": "Ihr Rückgabedatum ist",
|
|
116
|
+
"boat.pick_your_arrivaldate_in_the_calendar": "Wählen Sie einen Abholtermin",
|
|
117
|
+
"no": "Nein",
|
|
118
|
+
"insurance_company_needs_date_of_birth": "Für den Abschluss einer Versicherung wird ein Geburtsdatum benötigt",
|
|
119
|
+
"extra_fields.date_of_birth": "Geburtsdatum",
|
|
120
|
+
"no_discount_code_found": "Kein Rabatt mit eingegebenem Code gefunden",
|
|
121
|
+
"discount_code": "Rabatt-Code",
|
|
122
|
+
"minimum_nights": "Mindestens {minimum} Nächte",
|
|
123
|
+
"can_only_take_insurance_in_de_be_nl": "Sie können sich nur versichern, wenn Sie in den Niederlanden, Deutschland oder Belgien wohnen.",
|
|
124
|
+
"price_from": "Preis von",
|
|
125
|
+
"reviews": "Bewertungen",
|
|
126
|
+
"reviews_note_link": "Das BUKAZU Buchungssystem unterhält unabhängige Bewertungen. Diese Bewertungen werden nach dem Aufenthalt der Gäste in der Unterkunft gesammelt. Es gibt eine Überprüfung der Kombination von Buchungsnummer und E-Mail-Adresse."
|
|
127
|
+
}
|
package/src/locales/en.json
CHANGED
|
@@ -1,126 +1,127 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
2
|
+
"next": "Next",
|
|
3
|
+
"previous": "Previous",
|
|
4
|
+
"view_details": "View details",
|
|
5
|
+
"price": "Price",
|
|
6
|
+
"calculate": "Next",
|
|
7
|
+
"book": "Book",
|
|
8
|
+
"booked": "Booked",
|
|
9
|
+
"booking": "Booking",
|
|
10
|
+
"last_minute_discount": "Last minute discount",
|
|
11
|
+
"discount": "Discount",
|
|
12
|
+
"option": "Option",
|
|
13
|
+
"choose_for_option": "Make a short reservation for this period ",
|
|
14
|
+
"included_in_price": "including",
|
|
15
|
+
"rent_price": "Rental price",
|
|
16
|
+
"extra_costs_included": "Extra costs included",
|
|
17
|
+
"optional_costs": "Extra options",
|
|
18
|
+
"price_after_discount": "Rental price incl. discount",
|
|
19
|
+
"booking_from_til": "Booking dates",
|
|
20
|
+
"total": "Total",
|
|
21
|
+
"stay_details": "Travel group",
|
|
22
|
+
"babies": "Babies",
|
|
23
|
+
"babies_from": "(up to the age of {babies})",
|
|
24
|
+
"adults": "Adults",
|
|
25
|
+
"adults_from": "(from the age of {age})",
|
|
26
|
+
"children": "Children",
|
|
27
|
+
"children_from": "(from {from} to {til} years inclusive)",
|
|
28
|
+
"house.arrival_date": "Arrival date",
|
|
29
|
+
"house.departure_date": "Departure date",
|
|
30
|
+
"house.arrival": "Arrival",
|
|
31
|
+
"house.departure": "Departure",
|
|
32
|
+
"tent.arrival_date": "Arrival date",
|
|
33
|
+
"tent.departure_date": "Departure date",
|
|
34
|
+
"tent.arrival": "Arrival",
|
|
35
|
+
"tent.departure": "Departure",
|
|
36
|
+
"extra_costs_bookable": "Extra options",
|
|
37
|
+
"costs_on_site": "Additional costs on the spot:",
|
|
38
|
+
"insurances": "Insurances",
|
|
39
|
+
"at_least_1_adult": "Choose at least 1 adult.",
|
|
40
|
+
"max_persons_reached": "Too many people have been selected.",
|
|
41
|
+
"personal_details": "Your information",
|
|
42
|
+
"required": "This field is required.",
|
|
43
|
+
"cancel_insurance_all_risk": "All Risk",
|
|
44
|
+
"cancel_insurance_normal": "Standard",
|
|
45
|
+
"none": "None",
|
|
46
|
+
"cancel_insurance": "Cancellation insurance",
|
|
47
|
+
"insurance_costs": "Insurance Costs",
|
|
48
|
+
"choose": "Choose",
|
|
49
|
+
"yes": "Yes",
|
|
50
|
+
"booking_details": "Booking details",
|
|
51
|
+
"based_on_one_person": "Based on {persons} persons",
|
|
52
|
+
"return_to_calendar": "Back to calendar",
|
|
53
|
+
"close": "Close",
|
|
54
|
+
"cancel_insurance_normal_long": "Standard Cancellation Insurance",
|
|
55
|
+
"cancel_insurance_normal_desc": "Our standard cancellation insurance means that you are properly insured if you have to cancel your trip. In addition to the cancellation charges, the costs of any unused travel days are also covered. If you miss any part of your trip, because you have to go home earlier for example, you will receive an allowance for each day missed.",
|
|
56
|
+
"cancel_insurance_all_risk_long": "All Risk Cancellation Insurance",
|
|
57
|
+
"cancel_insurance_desc": "Unfortunately, circumstances may arise which can force you to cancel your holiday. It might also be necessary to leave or return earlier. Cancellation insurance means you do not have to bear the costs involved. Only residents from the Netherlands, Belgium and Germany can take out the insurance. We offer a choice of two types of cancellation insurance:",
|
|
58
|
+
"cancel_insurance_all_risk_desc": "With All-Risk Cancellation, you will be reimbursed 100% of the cancellation costs if you cancel for a standard reason, such as an illness that prevents you from traveling. Or the death of a grandparent. Do you want to cancel for another reason that is important to you personally? Then you will be reimbursed 75% of the cancellation costs. But beware: this insurance does set a few conditions for canceling. For example, the reason for cancellation must be 'unforeseen' and 'through no fault of your own'. The insurance therefore does not provide cover for cancellation reasons of which you were already aware before taking out the insurance (not unforeseen) or which you could have done yourself (not through your own fault). Consult the conditions for the exceptions.",
|
|
59
|
+
"terms_and_costs": "Premiums and Conditions",
|
|
60
|
+
"costs_normal_cancel_insurance": "Standard Cancellation Insurance Premium:",
|
|
61
|
+
"costs_allrisk_cancel_insurance": "All Risk Cancellation Insurance Premium:",
|
|
62
|
+
"666_costs": "6.66% of the travel costs",
|
|
63
|
+
"847_costs": "8.47% of the travel costs",
|
|
64
|
+
"more_information": "More information:",
|
|
65
|
+
"show_terms": "Show conditions",
|
|
66
|
+
"terms": "Terms",
|
|
67
|
+
"remark": "Remark",
|
|
68
|
+
"9persons_9addresses": "The Insurance will pay for up to 9 persons, who live at 9 different addresses,",
|
|
69
|
+
"or": "or",
|
|
70
|
+
"9persons_4addresses": "The insurance pays out for an unlimited number of people who live at a maximum of 4 different addresses.",
|
|
71
|
+
"poliscosts": "Policy fee",
|
|
72
|
+
"poliscosts_are": "The cost for an insurance policy is a one-time charge of € 6,95. No matter if you have one or two insuran",
|
|
73
|
+
"youwillrecieve": "You will receive the insurance terms separate from you booking confirmation per email. The insurance starts as soon as the (first) payment has been made.",
|
|
74
|
+
"thank_you_for_your_request": "Thank you very much for your request.",
|
|
75
|
+
"we_sent_confirmation_check_email": "A copy of your request has been sent to your e-mail address. If you have not received any mail from us, it may be that it is in your spam box.",
|
|
76
|
+
"something_went_wrong_please_try_again": "Oops, something went wrong, please try again later.",
|
|
77
|
+
"persons": "persons",
|
|
78
|
+
"bedrooms": "bedrooms",
|
|
79
|
+
"minimum_week_price": "min. weekly price",
|
|
80
|
+
"no_results": "No results",
|
|
81
|
+
"agree_with": "By clicking on 'Book', you agree to the",
|
|
82
|
+
"discount_reason": "Reason discount.",
|
|
83
|
+
"results": "results",
|
|
84
|
+
"bathrooms": "bathrooms",
|
|
85
|
+
"you_need_to_give_reason": "You must indicate a valid discount reason",
|
|
86
|
+
"camper.arrival_date": "Start date",
|
|
87
|
+
"camper.departure_date": "End date",
|
|
88
|
+
"camper.arrival": "Start date",
|
|
89
|
+
"camper.departure": "End date",
|
|
90
|
+
"boat.arrival_date": "Start date",
|
|
91
|
+
"boat.departure_date": "End date",
|
|
92
|
+
"boat.arrival": "Start date",
|
|
93
|
+
"boat.departure": "End date",
|
|
94
|
+
"caravan.arrival_date": "Arrival date",
|
|
95
|
+
"caravan.departure_date": "Departure date",
|
|
96
|
+
"caravan.arrival": "Arrival",
|
|
97
|
+
"caravan.departure": "Departure",
|
|
98
|
+
"filters": "Filters",
|
|
99
|
+
"comply_insurance_card": "I agree that the cancellation insurance insurance card will be digitally issued to me. I receive this card with my booking confirmation.",
|
|
100
|
+
"house.you_picked_arrival_date": "Your arrival date is",
|
|
101
|
+
"house.pick_your_departure_in_the_calendar": "Select a departure date",
|
|
102
|
+
"house.you_picked_departure_date": "Your departure date is",
|
|
103
|
+
"house.pick_your_arrivaldate_in_the_calendar": "Choose an arrival date",
|
|
104
|
+
"tent.you_picked_arrival_date": "Your arrival date is",
|
|
105
|
+
"tent.pick_your_departure_in_the_calendar": "Select a departure date",
|
|
106
|
+
"tent.you_picked_departure_date": "Your departure date is",
|
|
107
|
+
"tent.pick_your_arrivaldate_in_the_calendar": "Choose an arrival date",
|
|
108
|
+
"camper.you_picked_arrival_date": "Your pickup date is",
|
|
109
|
+
"camper.pick_your_departure_in_the_calendar": "Select a return date",
|
|
110
|
+
"camper.you_picked_departure_date": "Your return date is",
|
|
111
|
+
"camper.pick_your_arrivaldate_in_the_calendar": "Choose a pickup date",
|
|
112
|
+
"boat.you_picked_arrival_date": "Your pickup date is",
|
|
113
|
+
"boat.pick_your_departure_in_the_calendar": "Select a return date",
|
|
114
|
+
"boat.you_picked_departure_date": "Your return date is",
|
|
115
|
+
"boat.pick_your_arrivaldate_in_the_calendar": "Choose a pickup date",
|
|
116
|
+
"no": "No",
|
|
117
|
+
"no_house_found": "No object found for this combination of PortalCode and ObjectCode",
|
|
118
|
+
"insurance_company_needs_date_of_birth": "A date of birth is required for taking out insurance",
|
|
119
|
+
"extra_fields.date_of_birth": "Date of birth",
|
|
120
|
+
"no_discount_code_found": "No discount found with entered code",
|
|
121
|
+
"discount_code": "Discount code",
|
|
122
|
+
"minimum_nights": "At least {minimum} nights",
|
|
123
|
+
"can_only_take_insurance_in_de_be_nl": "You can only take out insurance if you live in the Netherlands, Germany or Belgium.",
|
|
124
|
+
"price_from": "Price from",
|
|
125
|
+
"reviews": "Reviews",
|
|
126
|
+
"reviews_note_link": "BUKAZU Booking System maintains independent reviews. These reviews are collected after guests stay in the accommodation. There is verification of the combination of booking number and email address."
|
|
127
|
+
}
|
package/src/locales/es.json
CHANGED
|
@@ -1,121 +1,122 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
2
|
+
"next": "Siguiente",
|
|
3
|
+
"previous": "Anterior",
|
|
4
|
+
"view_details": "Ver detalles",
|
|
5
|
+
"price": "Precio",
|
|
6
|
+
"calculate": "Próximo",
|
|
7
|
+
"book": "Reservar",
|
|
8
|
+
"booked": "Reservado",
|
|
9
|
+
"booking": "Reserva",
|
|
10
|
+
"last_minute_discount": "Descuento de ultimo minuto",
|
|
11
|
+
"option": "Opción",
|
|
12
|
+
"choose_for_option": "Tome una opción para este período",
|
|
13
|
+
"included_in_price": "Incluido",
|
|
14
|
+
"rent_price": "Precio de alquiler",
|
|
15
|
+
"discount": "Reducción",
|
|
16
|
+
"extra_costs_included": "Costes extras incluidos",
|
|
17
|
+
"optional_costs": "Opciones extra",
|
|
18
|
+
"price_after_discount": "Precio de alquiler con descuento.",
|
|
19
|
+
"booking_from_til": "Fechas de reserva",
|
|
20
|
+
"total": "Total",
|
|
21
|
+
"stay_details": "Grupo de viaje",
|
|
22
|
+
"babies": "Numero de bebes",
|
|
23
|
+
"babies_from": "(hasta {babies} años)",
|
|
24
|
+
"adults": "Numero de adultos",
|
|
25
|
+
"adults_from": "(a partir de {age} años)",
|
|
26
|
+
"children": "Numero de niños",
|
|
27
|
+
"children_from": "(de {from} a {til} años)",
|
|
28
|
+
"house.arrival_date": "Fecha de llegada",
|
|
29
|
+
"house.departure_date": "Fecha de salida",
|
|
30
|
+
"house.arrival": "llegada",
|
|
31
|
+
"house.departure": "Salida",
|
|
32
|
+
"tent.arrival_date": "Fecha de llegada",
|
|
33
|
+
"tent.departure_date": "Fecha de salida",
|
|
34
|
+
"tent.arrival": "llegada",
|
|
35
|
+
"tent.departure": "Salida",
|
|
36
|
+
"extra_costs_bookable": "Opciones extra",
|
|
37
|
+
"costs_on_site": "Costos adicionales en el lugar:",
|
|
38
|
+
"insurances": "Insurances",
|
|
39
|
+
"at_least_1_adult": "Elige al menos 1 adulto.",
|
|
40
|
+
"max_persons_reached": "Demasiadas personas han sido seleccionadas.",
|
|
41
|
+
"personal_details": "Tus datos",
|
|
42
|
+
"required": "Este campo es requerido.",
|
|
43
|
+
"cancel_insurance_all_risk": "All Risk",
|
|
44
|
+
"cancel_insurance_normal": "Standard",
|
|
45
|
+
"none": "None",
|
|
46
|
+
"cancel_insurance": "Cancellation insurance",
|
|
47
|
+
"insurance_costs": "Insurance Costs",
|
|
48
|
+
"choose": "Choose",
|
|
49
|
+
"yes": "Yes",
|
|
50
|
+
"booking_details": "Detalles de la reserva",
|
|
51
|
+
"based_on_one_person": "Basado en {persons} personas",
|
|
52
|
+
"return_to_calendar": "Volver al calendario",
|
|
53
|
+
"close": "Cerrar",
|
|
54
|
+
"cancel_insurance_normal_long": "Standard Cancellation Insurance",
|
|
55
|
+
"cancel_insurance_normal_desc": "Our standard cancellation insurance means that you are properly insured if you have to cancel your trip. In addition to the cancellation charges, the costs of any unused travel days are also covered. If you miss any part of your trip, because you have to go home earlier for example, you will receive an allowance for each day missed.",
|
|
56
|
+
"cancel_insurance_all_risk_long": "All Risk Cancellation Insurance",
|
|
57
|
+
"cancel_insurance_desc": "Unfortunately, circumstances may arise which can force you to cancel your holiday. It might also be necessary to leave or return earlier. Cancellation insurance means you do not have to bear the costs involved. Only residents from the Netherlands, Belgium and Germany can take out the insurance. We offer a choice of two types of cancellation insurance:",
|
|
58
|
+
"cancel_insurance_all_risk_desc": "With All-Risk Cancellation, you will be reimbursed 100% of the cancellation costs if you cancel for a standard reason, such as an illness that prevents you from traveling. Or the death of a grandparent. Do you want to cancel for another reason that is important to you personally? Then you will be reimbursed 75% of the cancellation costs. But beware: this insurance does set a few conditions for canceling. For example, the reason for cancellation must be 'unforeseen' and 'through no fault of your own'. The insurance therefore does not provide cover for cancellation reasons of which you were already aware before taking out the insurance (not unforeseen) or which you could have done yourself (not through your own fault). Consult the conditions for the exceptions.",
|
|
59
|
+
"terms_and_costs": "Premiums and Conditions",
|
|
60
|
+
"costs_normal_cancel_insurance": "Standard Cancellation Insurance Premium:",
|
|
61
|
+
"costs_allrisk_cancel_insurance": "All Risk Cancellation Insurance Premium:",
|
|
62
|
+
"666_costs": "6.66% of the travel costs",
|
|
63
|
+
"847_costs": "8.47% of the travel costs",
|
|
64
|
+
"more_information": "More information:",
|
|
65
|
+
"show_terms": "Show conditions",
|
|
66
|
+
"terms": "Terms",
|
|
67
|
+
"remark": "Observación",
|
|
68
|
+
"9persons_9addresses": "The Insurance will pay for up to 9 persons, who live at 9 different addresses,",
|
|
69
|
+
"or": "or",
|
|
70
|
+
"9persons_4addresses": "The insurance pays out for an unlimited number of people who live at a maximum of 4 different addresses.",
|
|
71
|
+
"poliscosts": "Policy fee",
|
|
72
|
+
"poliscosts_are": "The cost for an insurance policy is a one-time charge of € 6,95. No matter if you have one or two insuran",
|
|
73
|
+
"youwillrecieve": "You will receive the insurance terms separate from you booking confirmation per email. The insurance starts as soon as the (first) payment has been made.",
|
|
74
|
+
"thank_you_for_your_request": "Muchas gracias por su solicitud.",
|
|
75
|
+
"we_sent_confirmation_check_email": "Se ha enviado una copia de su solicitud a su dirección de correo electrónico. Si no ha recibido ningún correo de nuestra parte, es posible que esté en su buzón de correo no deseado.",
|
|
76
|
+
"something_went_wrong_please_try_again": "Vaya, algo salió mal, inténtalo de nuevo más tarde.",
|
|
77
|
+
"persons": "personas",
|
|
78
|
+
"bedrooms": "dormitorios",
|
|
79
|
+
"minimum_week_price": "min. precio semanal",
|
|
80
|
+
"no_results": "Sin resultados",
|
|
81
|
+
"agree_with": "Al hacer clic en ‘Reservar’, acepta los Términos y condiciones",
|
|
82
|
+
"discount_reason": "Razón de descuento.",
|
|
83
|
+
"results": "resultados",
|
|
84
|
+
"bathrooms": "baños",
|
|
85
|
+
"you_need_to_give_reason": "Vous devez indiquer un motif de réduction valide",
|
|
86
|
+
"camper.arrival_date": "Fecha de recogida",
|
|
87
|
+
"camper.departure_date": "Fecha de regreso",
|
|
88
|
+
"camper.arrival": "Recoger",
|
|
89
|
+
"camper.departure": "Entregar",
|
|
90
|
+
"boat.arrival_date": "Fecha de recogida",
|
|
91
|
+
"boat.departure_date": "Fecha de regreso",
|
|
92
|
+
"boat.arrival": "Recoger",
|
|
93
|
+
"boat.departure": "Entregar",
|
|
94
|
+
"caravan.arrival_date": "Fecha de llegada",
|
|
95
|
+
"caravan.departure_date": "Fecha de salida",
|
|
96
|
+
"caravan.arrival": "llegada",
|
|
97
|
+
"caravan.departure": "Salida",
|
|
98
|
+
"filters": "Filtros",
|
|
99
|
+
"comply_insurance_card": "Estoy de acuerdo en que la tarjeta de seguro de cancelación será emitida digitalmente para mí. Recibo esto con mi confirmación de reserva.",
|
|
100
|
+
"house.you_picked_arrival_date": "Su fecha de llegada es",
|
|
101
|
+
"house.pick_your_departure_in_the_calendar": "Seleccione una fecha de salida",
|
|
102
|
+
"house.you_picked_departure_date": "Su fecha de salida es",
|
|
103
|
+
"house.pick_your_arrivaldate_in_the_calendar": "Elija una fecha de llegada",
|
|
104
|
+
"tent.you_picked_arrival_date": "Su fecha de llegada es",
|
|
105
|
+
"tent.pick_your_departure_in_the_calendar": "Seleccione una fecha de salida",
|
|
106
|
+
"tent.you_picked_departure_date": "Su fecha de salida es",
|
|
107
|
+
"tent.pick_your_arrivaldate_in_the_calendar": "Elija una fecha de llegada",
|
|
108
|
+
"camper.you_picked_arrival_date": "Su fecha de recogida es",
|
|
109
|
+
"camper.pick_your_departure_in_the_calendar": "Seleccione una fecha de regreso",
|
|
110
|
+
"camper.you_picked_departure_date": "Su fecha de retorno es",
|
|
111
|
+
"camper.pick_your_arrivaldate_in_the_calendar": "Elija una fecha de recogida",
|
|
112
|
+
"boat.you_picked_arrival_date": "Your pickup date is",
|
|
113
|
+
"boat.pick_your_departure_in_the_calendar": "Select a return date",
|
|
114
|
+
"boat.you_picked_departure_date": "Your return date is",
|
|
115
|
+
"boat.pick_your_arrivaldate_in_the_calendar": "Choose a pickup date",
|
|
116
|
+
"no": "No",
|
|
117
|
+
"minimum_nights": "Al menos {minimum} noches",
|
|
118
|
+
"can_only_take_insurance_in_de_be_nl": "Solo puede contratar un seguro si vive en los Países Bajos, Alemania o Bélgica.",
|
|
119
|
+
"price_from": "Precio de",
|
|
120
|
+
"reviews": "Comentarios",
|
|
121
|
+
"reviews_note_link": "BUKAZU Booking System mantiene opiniones independientes. Estas opiniones se recogen después de la estancia de los huéspedes en el alojamiento. Se verifica la combinación del número de reserva y la dirección de correo electrónico."
|
|
122
|
+
}
|
package/src/locales/fr.json
CHANGED
|
@@ -1,121 +1,122 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
2
|
+
"next": "Suivant",
|
|
3
|
+
"previous": "Précédent",
|
|
4
|
+
"view_details": "Voir les détails",
|
|
5
|
+
"price": "Prix",
|
|
6
|
+
"calculate": "Suivante",
|
|
7
|
+
"book": "Réserver",
|
|
8
|
+
"booked": "Réservé",
|
|
9
|
+
"booking": "Réservation",
|
|
10
|
+
"last_minute_discount": "Réduction de dernière minute",
|
|
11
|
+
"option": "Option",
|
|
12
|
+
"choose_for_option": "Prendre une option pour cette période",
|
|
13
|
+
"included_in_price": "frais",
|
|
14
|
+
"rent_price": "Prix de location",
|
|
15
|
+
"discount": "Réduction",
|
|
16
|
+
"extra_costs_included": "Frais supplémentaires inclus",
|
|
17
|
+
"optional_costs": "Options supplémentaires",
|
|
18
|
+
"price_after_discount": "Prix de location incl.",
|
|
19
|
+
"booking_from_til": "Dates de réservation",
|
|
20
|
+
"total": "Total",
|
|
21
|
+
"stay_details": "Composition du groupe",
|
|
22
|
+
"babies": "Nombre de bébés",
|
|
23
|
+
"babies_from": "(jusqu'a {babies} ans)",
|
|
24
|
+
"adults": "Nombre d'adults",
|
|
25
|
+
"adults_from": "(à partir de {age} ans)",
|
|
26
|
+
"children": "Nombre d'enfants",
|
|
27
|
+
"children_from": "(de {from} à {til} ans)",
|
|
28
|
+
"house.arrival_date": "Date d'arrivée",
|
|
29
|
+
"house.departure_date": "Date de départ",
|
|
30
|
+
"house.arrival": "Arrivée",
|
|
31
|
+
"house.departure": "Départ",
|
|
32
|
+
"tent.arrival_date": "Date d'arrivée",
|
|
33
|
+
"tent.departure_date": "Date de départ",
|
|
34
|
+
"tent.arrival": "Arrivée",
|
|
35
|
+
"tent.departure": "Départ",
|
|
36
|
+
"extra_costs_bookable": "Options supplémentaires",
|
|
37
|
+
"costs_on_site": "Frais supplémentaires sur place:",
|
|
38
|
+
"insurances": "Insurances",
|
|
39
|
+
"at_least_1_adult": "Choisissez au moins 1 adulte.",
|
|
40
|
+
"max_persons_reached": "Trop de personnes ont été sélectionnées.",
|
|
41
|
+
"personal_details": "Vos données",
|
|
42
|
+
"required": "Ce champ est requis.",
|
|
43
|
+
"cancel_insurance_all_risk": "All Risk",
|
|
44
|
+
"cancel_insurance_normal": "Standard",
|
|
45
|
+
"none": "None",
|
|
46
|
+
"cancel_insurance": "Cancellation insurance",
|
|
47
|
+
"insurance_costs": "Insurance Costs",
|
|
48
|
+
"choose": "Choose",
|
|
49
|
+
"yes": "Yes",
|
|
50
|
+
"booking_details": "Détails de la réservation",
|
|
51
|
+
"based_on_one_person": "Base {persons} personnes",
|
|
52
|
+
"return_to_calendar": "Retour au calendrier",
|
|
53
|
+
"close": "Fermer",
|
|
54
|
+
"cancel_insurance_normal_long": "Standard Cancellation Insurance",
|
|
55
|
+
"cancel_insurance_normal_desc": "Our standard cancellation insurance means that you are properly insured if you have to cancel your trip. In addition to the cancellation charges, the costs of any unused travel days are also covered. If you miss any part of your trip, because you have to go home earlier for example, you will receive an allowance for each day missed.",
|
|
56
|
+
"cancel_insurance_all_risk_long": "All Risk Cancellation Insurance",
|
|
57
|
+
"cancel_insurance_desc": "Unfortunately, circumstances may arise which can force you to cancel your holiday. It might also be necessary to leave or return earlier. Cancellation insurance means you do not have to bear the costs involved. Only residents from the Netherlands, Belgium and Germany can take out the insurance. We offer a choice of two types of cancellation insurance:",
|
|
58
|
+
"cancel_insurance_all_risk_desc": "With All-Risk Cancellation, you will be reimbursed 100% of the cancellation costs if you cancel for a standard reason, such as an illness that prevents you from traveling. Or the death of a grandparent. Do you want to cancel for another reason that is important to you personally? Then you will be reimbursed 75% of the cancellation costs. But beware: this insurance does set a few conditions for canceling. For example, the reason for cancellation must be 'unforeseen' and 'through no fault of your own'. The insurance therefore does not provide cover for cancellation reasons of which you were already aware before taking out the insurance (not unforeseen) or which you could have done yourself (not through your own fault). Consult the conditions for the exceptions.",
|
|
59
|
+
"terms_and_costs": "Premiums and Conditions",
|
|
60
|
+
"costs_normal_cancel_insurance": "Standard Cancellation Insurance Premium:",
|
|
61
|
+
"costs_allrisk_cancel_insurance": "All Risk Cancellation Insurance Premium:",
|
|
62
|
+
"666_costs": "6.66% of the travel costs",
|
|
63
|
+
"847_costs": "8.47% of the travel costs",
|
|
64
|
+
"more_information": "More information:",
|
|
65
|
+
"show_terms": "Show conditions",
|
|
66
|
+
"terms": "Terms",
|
|
67
|
+
"remark": "Remarque",
|
|
68
|
+
"9persons_9addresses": "The Insurance will pay for up to 9 persons, who live at 9 different addresses,",
|
|
69
|
+
"or": "or",
|
|
70
|
+
"9persons_4addresses": "The insurance pays out for an unlimited number of people who live at a maximum of 4 different addresses.",
|
|
71
|
+
"poliscosts": "Policy fee",
|
|
72
|
+
"poliscosts_are": "The cost for an insurance policy is a one-time charge of € 6,95. No matter if you have one or two insuran",
|
|
73
|
+
"youwillrecieve": "You will receive the insurance terms separate from you booking confirmation per email. The insurance starts as soon as the (first) payment has been made.",
|
|
74
|
+
"thank_you_for_your_request": "Merci beaucoup pour votre demande.",
|
|
75
|
+
"we_sent_confirmation_check_email": "Une copie de votre demande a été envoyée à votre adresse e-mail. Si vous n'avez pas reçu de courrier de notre part, il se peut qu'il soit dans votre boîte de courrier indésirable.",
|
|
76
|
+
"something_went_wrong_please_try_again": "Oups, quelque chose s'est mal passé, veuillez réessayer plus tard.",
|
|
77
|
+
"persons": "les gens",
|
|
78
|
+
"bedrooms": "chambres a coucher",
|
|
79
|
+
"minimum_week_price": "min. prix hebdomadaire",
|
|
80
|
+
"no_results": "Aucun résultat",
|
|
81
|
+
"agree_with": "En cliquant maintenant sur 'Réserver', vous adhérez aux",
|
|
82
|
+
"discount_reason": "Raison réduction.",
|
|
83
|
+
"results": "résultats",
|
|
84
|
+
"bathrooms": "salle de bain",
|
|
85
|
+
"you_need_to_give_reason": "Debe indicar un motivo de descuento válido.",
|
|
86
|
+
"camper.arrival_date": "Date de collecte",
|
|
87
|
+
"camper.departure_date": "Date de retour",
|
|
88
|
+
"camper.arrival": "Ramasser",
|
|
89
|
+
"camper.departure": "Remettre",
|
|
90
|
+
"boat.arrival_date": "Date de collecte",
|
|
91
|
+
"boat.departure_date": "Date de retour",
|
|
92
|
+
"boat.arrival": "Ramasser",
|
|
93
|
+
"boat.departure": "Remettre",
|
|
94
|
+
"caravan.arrival_date": "Date d'arrivée",
|
|
95
|
+
"caravan.departure_date": "Date de départ",
|
|
96
|
+
"caravan.arrival": "Arrivée",
|
|
97
|
+
"caravan.departure": "Départ",
|
|
98
|
+
"filters": "Les filtres",
|
|
99
|
+
"comply_insurance_card": "Je conviens que la carte d’assurance annulation me sera délivrée numériquement. Je reçois ceci avec ma confirmation de réservation.",
|
|
100
|
+
"house.you_picked_arrival_date": "Votre date d'arrivée est",
|
|
101
|
+
"house.pick_your_departure_in_the_calendar": "Sélectionnez une date de départ",
|
|
102
|
+
"house.you_picked_departure_date": "Votre date de départ est",
|
|
103
|
+
"house.pick_your_arrivaldate_in_the_calendar": "Choisissez une date d'arrivée",
|
|
104
|
+
"tent.you_picked_arrival_date": "Votre date d'arrivée est",
|
|
105
|
+
"tent.pick_your_departure_in_the_calendar": "Sélectionnez une date de départ",
|
|
106
|
+
"tent.you_picked_departure_date": "Votre date de départ est",
|
|
107
|
+
"tent.pick_your_arrivaldate_in_the_calendar": "Choisissez une date d'arrivée",
|
|
108
|
+
"camper.you_picked_arrival_date": "Votre date pick-up est",
|
|
109
|
+
"camper.pick_your_departure_in_the_calendar": "Sélectionnez une date de retour",
|
|
110
|
+
"camper.you_picked_departure_date": "Votre date de retour est",
|
|
111
|
+
"camper.pick_your_arrivaldate_in_the_calendar": "Choisissez une date de pick-up",
|
|
112
|
+
"boat.you_picked_arrival_date": "Your pickup date is",
|
|
113
|
+
"boat.pick_your_departure_in_the_calendar": "Select a return date",
|
|
114
|
+
"boat.you_picked_departure_date": "Your return date is",
|
|
115
|
+
"boat.pick_your_arrivaldate_in_the_calendar": "Choose a pickup date",
|
|
116
|
+
"no": "Non",
|
|
117
|
+
"minimum_nights": "Au moins {minimum} nuits",
|
|
118
|
+
"can_only_take_insurance_in_de_be_nl": "Vous ne pouvez souscrire une assurance que si vous résidez aux Pays-Bas, en Allemagne ou en Belgique.",
|
|
119
|
+
"price_from": "Le prix de",
|
|
120
|
+
"reviews": "Critiques",
|
|
121
|
+
"reviews_note_link": "Le système de réservation BUKAZU conserve des avis indépendants. Ces avis sont recueillis après que les clients ont séjourné dans le logement. La combinaison du numéro de réservation et de l'adresse électronique est vérifiée."
|
|
122
|
+
}
|
package/src/locales/it.json
CHANGED
|
@@ -117,5 +117,6 @@
|
|
|
117
117
|
"minimum_nights": "Almeno {minimum} notti",
|
|
118
118
|
"can_only_take_insurance_in_de_be_nl": "Puoi stipulare un'assicurazione solo se vivi nei Paesi Bassi, in Germania o in Belgio.",
|
|
119
119
|
"price_from": "Prezzo da",
|
|
120
|
-
"reviews": "Recensioni"
|
|
120
|
+
"reviews": "Recensioni",
|
|
121
|
+
"reviews_note_link": "Il sistema di prenotazione BUKAZU mantiene recensioni indipendenti. Queste recensioni vengono raccolte dopo il soggiorno degli ospiti nella struttura. Viene verificata la combinazione di numero di prenotazione e indirizzo e-mail."
|
|
121
122
|
}
|