bukazu-portal-react 3.2.1 → 3.2.2
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/build/portal.es.js +2084 -2061
- package/build/portal.umd.js +39 -39
- package/package.json +1 -1
- package/src/components/CalendarPage/formParts/CancelInsuranceText.tsx +14 -1
- package/src/components/ReviewsPage/Score.tsx +5 -1
- package/src/locales/de.json +3 -1
- package/src/locales/en.json +3 -1
- package/src/locales/es.json +3 -1
- package/src/locales/fr.json +3 -1
- package/src/locales/it.json +3 -1
- package/src/locales/nl.json +3 -1
package/package.json
CHANGED
|
@@ -5,6 +5,15 @@ import { AppContext } from '../../AppContext';
|
|
|
5
5
|
const CancelInsuranceText = () => {
|
|
6
6
|
const { locale } = useContext(AppContext);
|
|
7
7
|
|
|
8
|
+
const links = {
|
|
9
|
+
nl: 'https://recreatieverzekeringen.nl/veelgestelde-vragen',
|
|
10
|
+
de: 'https://recreatieverzekeringen.nl/de/haufig-gestellte-fragen',
|
|
11
|
+
en: 'https://recreatieverzekeringen.nl/en/frequently-asked-questions',
|
|
12
|
+
fr: 'https://recreatieverzekeringen.nl/en/frequently-asked-questions',
|
|
13
|
+
es: 'https://recreatieverzekeringen.nl/en/frequently-asked-questions',
|
|
14
|
+
it: 'https://recreatieverzekeringen.nl/en/frequently-asked-questions'
|
|
15
|
+
};
|
|
16
|
+
|
|
8
17
|
return (
|
|
9
18
|
<>
|
|
10
19
|
<h2>
|
|
@@ -37,7 +46,11 @@ const CancelInsuranceText = () => {
|
|
|
37
46
|
<FM id="cancel_insurance_questions" />
|
|
38
47
|
</h3>
|
|
39
48
|
<p>
|
|
40
|
-
<FM id="
|
|
49
|
+
<FM id="cancel_insurance_questions_explain_1" />
|
|
50
|
+
<a href={links[locale]} target="_blank">
|
|
51
|
+
<FM id="cancel_insurance_questions_explain_link" />
|
|
52
|
+
</a>
|
|
53
|
+
<FM id="cancel_insurance_questions_explain_2" />
|
|
41
54
|
</p>
|
|
42
55
|
<h3>
|
|
43
56
|
<FM id="terms" />
|
|
@@ -16,7 +16,11 @@ function Score({ rating, name }: Props) {
|
|
|
16
16
|
}
|
|
17
17
|
return (
|
|
18
18
|
<div className="bu_score">
|
|
19
|
-
|
|
19
|
+
{rating && (
|
|
20
|
+
<div className={`bu_score__rating bu_card ${color}`}>
|
|
21
|
+
{rating.toFixed(1)}
|
|
22
|
+
</div>
|
|
23
|
+
)}
|
|
20
24
|
<div>{name}</div>
|
|
21
25
|
</div>
|
|
22
26
|
);
|
package/src/locales/de.json
CHANGED
|
@@ -65,7 +65,9 @@
|
|
|
65
65
|
"cancel_insurance_for_whom": "Für wen?",
|
|
66
66
|
"cancel_insurance_for_whom_explain": "Diese Versicherung gilt für bis zu 4 Familien oder 9 Mitreisende (keine Familienmitglieder).",
|
|
67
67
|
"cancel_insurance_questions": "Häufig gestellte Fragen ",
|
|
68
|
-
"
|
|
68
|
+
"cancel_insurance_questions_explain_1": "Klicken Sie ",
|
|
69
|
+
"cancel_insurance_questions_explain_link": "hier",
|
|
70
|
+
"cancel_insurance_questions_explain_2": " für die häufig gestellte Fragen.",
|
|
69
71
|
"show_terms": "Siehe Bedingungen",
|
|
70
72
|
"terms": "Bedingungen",
|
|
71
73
|
"remark": "Anmerkung",
|
package/src/locales/en.json
CHANGED
|
@@ -64,7 +64,9 @@
|
|
|
64
64
|
"cancel_insurance_for_whom": "For whom?",
|
|
65
65
|
"cancel_insurance_for_whom_explain": "This insurance is for a maximum of 4 families or 9 travel companions (no family members).",
|
|
66
66
|
"cancel_insurance_questions": "Frequently Asked Questions",
|
|
67
|
-
"
|
|
67
|
+
"cancel_insurance_questions_explain_1": "Click ",
|
|
68
|
+
"cancel_insurance_questions_explain_link": "here",
|
|
69
|
+
"cancel_insurance_questions_explain_2": " to find the Frequently Asked Questions.",
|
|
68
70
|
"show_terms": "Show conditions",
|
|
69
71
|
"terms": "Terms",
|
|
70
72
|
"remark": "Remark",
|
package/src/locales/es.json
CHANGED
|
@@ -64,7 +64,9 @@
|
|
|
64
64
|
"cancel_insurance_for_whom": "For whom?",
|
|
65
65
|
"cancel_insurance_for_whom_explain": "This insurance is for a maximum of 4 families or 9 travel companions (no family members).",
|
|
66
66
|
"cancel_insurance_questions": "Frequently Asked Questions",
|
|
67
|
-
"
|
|
67
|
+
"cancel_insurance_questions_explain_1": "Click ",
|
|
68
|
+
"cancel_insurance_questions_explain_link": "here",
|
|
69
|
+
"cancel_insurance_questions_explain_2": " to find the Frequently Asked Questions.",
|
|
68
70
|
"show_terms": "Show conditions",
|
|
69
71
|
"terms": "Terms",
|
|
70
72
|
"remark": "Observación",
|
package/src/locales/fr.json
CHANGED
|
@@ -64,7 +64,9 @@
|
|
|
64
64
|
"cancel_insurance_for_whom": "For whom?",
|
|
65
65
|
"cancel_insurance_for_whom_explain": "This insurance is for a maximum of 4 families or 9 travel companions (no family members).",
|
|
66
66
|
"cancel_insurance_questions": "Frequently Asked Questions",
|
|
67
|
-
"
|
|
67
|
+
"cancel_insurance_questions_explain_1": "Click ",
|
|
68
|
+
"cancel_insurance_questions_explain_link": "here",
|
|
69
|
+
"cancel_insurance_questions_explain_2": " to find the Frequently Asked Questions.",
|
|
68
70
|
"show_terms": "Show conditions",
|
|
69
71
|
"terms": "Terms",
|
|
70
72
|
"remark": "Remarque",
|
package/src/locales/it.json
CHANGED
|
@@ -60,7 +60,9 @@
|
|
|
60
60
|
"cancel_insurance_for_whom": "For whom?",
|
|
61
61
|
"cancel_insurance_for_whom_explain": "This insurance is for a maximum of 4 families or 9 travel companions (no family members).",
|
|
62
62
|
"cancel_insurance_questions": "Frequently Asked Questions",
|
|
63
|
-
"
|
|
63
|
+
"cancel_insurance_questions_explain_1": "Click ",
|
|
64
|
+
"cancel_insurance_questions_explain_link": "here",
|
|
65
|
+
"cancel_insurance_questions_explain_2": " to find the Frequently Asked Questions.",
|
|
64
66
|
"show_terms": "Show conditions",
|
|
65
67
|
"terms": "Terms",
|
|
66
68
|
"remark": "Osservazione",
|
package/src/locales/nl.json
CHANGED
|
@@ -60,7 +60,9 @@
|
|
|
60
60
|
"cancel_insurance_for_whom": "Voor wie?",
|
|
61
61
|
"cancel_insurance_for_whom_explain": "Deze verzekering is voor maximaal 4 gezinnen of 9 reisgenoten (geen gezinsleden)",
|
|
62
62
|
"cancel_insurance_questions": "Veelgestelde vragen",
|
|
63
|
-
"
|
|
63
|
+
"cancel_insurance_questions_explain_link": "hier",
|
|
64
|
+
"cancel_insurance_questions_explain_1": "Klik ",
|
|
65
|
+
"cancel_insurance_questions_explain_2": " om de veelgestelde vragen te vinden.",
|
|
64
66
|
"show_terms": "Bekijk de voorwaarden",
|
|
65
67
|
"terms": "Voorwaarden",
|
|
66
68
|
"reviews_note_link": "BUKAZU Boekingssysteem houdt onafhankelijk reviews bij. Deze reviews zijn verzameld na het verblijf van de gasten in de accommodatie. Er is controle op de combinatie boekingsnummer en e-mailadres.",
|