@justeattakeaway/pie-cookie-banner 0.10.2 → 0.11.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.
- package/dist/index.js +49 -47
- package/dist/react.js +8 -9
- package/locales/bg-bg.json +40 -0
- package/locales/de-de.json +40 -0
- package/locales/dk-dk.json +40 -0
- package/locales/fr-fr.json +40 -0
- package/locales/he-il.json +40 -0
- package/locales/index.js +18 -0
- package/locales/it-it.json +40 -0
- package/locales/nl-nl.json +40 -0
- package/locales/pl-pl.json +40 -0
- package/locales/sk-sk.json +40 -0
- package/package.json +5 -5
package/dist/index.js
CHANGED
|
@@ -7,7 +7,9 @@ import "@justeattakeaway/pie-icon-button";
|
|
|
7
7
|
import "@justeattakeaway/pie-link";
|
|
8
8
|
import "@justeattakeaway/pie-modal";
|
|
9
9
|
import "@justeattakeaway/pie-switch";
|
|
10
|
-
|
|
10
|
+
function _(i, e) {
|
|
11
|
+
customElements.get(i) ? console.warn(`PIE Web Component: "${i}" has already been defined. Please ensure the component is only being defined once in your application.`) : customElements.define(i, e);
|
|
12
|
+
}
|
|
11
13
|
const w = `*{margin:0}.c-cookieBanner{--cb-font-family: var(--dt-font-interactive-m-family);--cb-font-size: calc(var(--dt-font-body-l-size) * 1px);--cb-line-height: calc(var(--dt-font-body-l-line-height) * 1px);--cb-font-weight: var(--dt-font-body-l-weight);--cb-padding-inline: var(--dt-spacing-d);--cb-padding-block: var(--dt-spacing-d);--cb-offset: 0;color-scheme:only dark;background-color:var(--dt-color-background-dark);color:var(--dt-color-content-inverse);font-family:var(--cb-font-family);font-size:var(--cb-font-size);line-height:var(--cb-line-height);font-weight:var(--cb-font-weight);padding-block-start:var(--cb-padding-block);padding-block-end:var(--cb-padding-block);max-height:432px;position:fixed;bottom:var(--cb-offset);left:var(--cb-offset);right:var(--cb-offset);border-top-left-radius:var(--dt-radius-rounded-c);border-top-right-radius:var(--dt-radius-rounded-c);z-index:var(--dt-z-index-cookie-banner)}@media (min-width: 700px) and (orientation: landscape){.c-cookieBanner{--cb-padding-inline: var(--dt-spacing-f);--cb-offset: var(--dt-spacing-d);max-height:90%;border-bottom-left-radius:var(--dt-radius-rounded-c);border-bottom-right-radius:var(--dt-radius-rounded-c)}}.c-cookieBanner[isCookieBannerHidden]{display:none}.c-cookieBanner-title,.c-cookieBanner-body,.c-cookieBanner-actions{padding-inline-start:var(--cb-padding-inline);padding-inline-end:var(--cb-padding-inline)}.c-cookieBanner-title{--cb-title-font-size: var(--dt-font-heading-s-size--narrow);--cb-title-line-height: var(--dt-font-heading-s-line-height--narrow);font-size:calc(var(--cb-title-font-size) * 1px);font-weight:var(--dt-font-heading-s-weight);line-height:calc(var(--cb-title-line-height) * 1px)}@media (min-width: 700px) and (orientation: landscape){.c-cookieBanner-title{--cb-title-font-size: var(--dt-font-heading-s-size--wide);--cb-title-line-height: var(--dt-font-heading-s-line-height--wide)}}.c-cookieBanner-body{--cb-scroll-shadow-color: var(--dt-color-black);margin-block-start:var(--dt-spacing-a);max-height:200px;overflow-y:auto;background:linear-gradient(to bottom,transparent,var(--dt-color-background-dark) 75%) center bottom,linear-gradient(transparent,var(--cb-scroll-shadow-color)) center bottom;background-repeat:no-repeat;background-size:100% 48px,100% 8px;background-attachment:local,scroll}@media (min-width: 700px) and (orientation: landscape){.c-cookieBanner-body{max-height:150px}}.c-cookieBanner-actions{--cb-actions-flex-dir: column;margin-block-start:var(--dt-spacing-d);display:flex;gap:var(--dt-spacing-d);flex-direction:var(--cb-actions-flex-dir)}.c-cookieBanner-actions>pie-link{text-align:center;align-self:center}@media (min-width: 700px) and (orientation: landscape){.c-cookieBanner-actions{--cb-actions-flex-dir: row-reverse;justify-content:flex-start;align-items:center}}.c-cookieBanner-subheading{--cb-subheading-font-size: var(--dt-font-heading-s-size--narrow);--cb-subheading-line-height: var(--dt-font-heading-s-line-height--narrow);font-size:calc(var(--cb-subheading-font-size) * 1px);font-weight:var(--dt-font-heading-s-weight);line-height:calc(var(--cb-subheading-line-height) * 1px)}@media (min-width: 700px) and (orientation: landscape){.c-cookieBanner-subheading{--cb-subheading-font-size: var(--dt-font-heading-s-size--wide);--cb-subheading-line-height: var(--dt-font-heading-s-line-height--wide)}}.c-cookieBanner-description{font-size:calc(var(--dt-font-body-s-size) * 1px);line-height:calc(var(--dt-font-body-s-line-height) * 1px)}.c-cookieBanner-preference{display:flex;gap:var(--dt-spacing-d);justify-content:space-between;margin-block:var(--dt-spacing-e)}.c-cookieBanner-preference p{margin-block-start:var(--dt-spacing-b)}.c-cookieBanner-preference:last-child{margin-block-end:0}
|
|
12
14
|
`, x = "pie-cookie-banner-accept-all", C = "pie-cookie-banner-necessary-only", B = "pie-cookie-banner-manage-prefs", $ = "pie-cookie-banner-prefs-saved", A = [
|
|
13
15
|
{
|
|
@@ -34,54 +36,54 @@ const w = `*{margin:0}.c-cookieBanner{--cb-font-family: var(--dt-font-interactiv
|
|
|
34
36
|
hasDescription: !0
|
|
35
37
|
}
|
|
36
38
|
];
|
|
37
|
-
function u(
|
|
38
|
-
console.error(`[localisation-utils]: ${
|
|
39
|
+
function u(i) {
|
|
40
|
+
console.error(`[localisation-utils]: ${i}`);
|
|
39
41
|
}
|
|
40
|
-
function
|
|
41
|
-
const n = (t) => String.prototype.split.call(e, t).filter(Boolean).reduce((
|
|
42
|
-
return typeof
|
|
42
|
+
function E(i, e) {
|
|
43
|
+
const n = (t) => String.prototype.split.call(e, t).filter(Boolean).reduce((o, r) => o != null && typeof o == "object" ? o[r] : o, i), a = n(/[,[\]]+?/) || n(/[,[\].]+?/);
|
|
44
|
+
return typeof a != "string" ? "" : a;
|
|
43
45
|
}
|
|
44
|
-
function b(
|
|
45
|
-
if (!
|
|
46
|
+
function b(i, e) {
|
|
47
|
+
if (!i)
|
|
46
48
|
throw new Error('"locale" parameter cannot be empty');
|
|
47
49
|
if (!e)
|
|
48
50
|
throw new Error('"key" parameter cannot be empty');
|
|
49
|
-
const n =
|
|
51
|
+
const n = E(i, e);
|
|
50
52
|
return n || (u(`Couldn't find a value for the key "${e}", it will be used as fallback.`), e);
|
|
51
53
|
}
|
|
52
|
-
function
|
|
53
|
-
const n =
|
|
54
|
+
function O(i) {
|
|
55
|
+
const n = i.map((t) => `(<${t}.*>.*</${t}>)`).join("|");
|
|
54
56
|
return new RegExp(n, "igm");
|
|
55
57
|
}
|
|
56
|
-
function T(
|
|
58
|
+
function T(i, e) {
|
|
57
59
|
const n = Object.keys(e);
|
|
58
60
|
if (n.length === 0)
|
|
59
|
-
return [
|
|
60
|
-
const
|
|
61
|
-
return
|
|
62
|
-
if (!t.match(
|
|
61
|
+
return [i];
|
|
62
|
+
const a = O(n);
|
|
63
|
+
return i.split(a).filter((t) => !!t).map((t) => {
|
|
64
|
+
if (!t.match(a))
|
|
63
65
|
return t;
|
|
64
|
-
const
|
|
65
|
-
if (!
|
|
66
|
+
const r = t.match(/<(.*)>(.*)<\/.*>/);
|
|
67
|
+
if (!r)
|
|
66
68
|
return t;
|
|
67
|
-
const [, d, c] =
|
|
69
|
+
const [, d, c] = r;
|
|
68
70
|
return [d, c];
|
|
69
71
|
}).map((t) => {
|
|
70
72
|
if (!Array.isArray(t))
|
|
71
73
|
return t;
|
|
72
|
-
const [
|
|
73
|
-
return c || typeof c == "function" ? c(d) : (u(`Custom tag "${
|
|
74
|
+
const [r, d] = t, c = e[r];
|
|
75
|
+
return c || typeof c == "function" ? c(d) : (u(`Custom tag "${r}" does not have a matching enhancer function`), d);
|
|
74
76
|
});
|
|
75
77
|
}
|
|
76
|
-
function M(
|
|
77
|
-
if (!
|
|
78
|
+
function M(i, e, n) {
|
|
79
|
+
if (!i)
|
|
78
80
|
throw new Error('"locale" parameter cannot be empty');
|
|
79
81
|
if (!e)
|
|
80
82
|
throw new Error('"key" parameter cannot be empty');
|
|
81
83
|
if (!n)
|
|
82
84
|
throw new Error('"customTagEnhancers" parameter cannot be empty');
|
|
83
|
-
const
|
|
84
|
-
return T(
|
|
85
|
+
const a = b(i, e);
|
|
86
|
+
return T(a, n);
|
|
85
87
|
}
|
|
86
88
|
const N = {
|
|
87
89
|
title: "Cookies",
|
|
@@ -91,7 +93,7 @@ const N = {
|
|
|
91
93
|
necessaryOnly: "Necessary only",
|
|
92
94
|
acceptAll: "Accept all"
|
|
93
95
|
}
|
|
94
|
-
},
|
|
96
|
+
}, z = {
|
|
95
97
|
title: "Manage your preferences",
|
|
96
98
|
description: "You can find all the information in the <linkCookieStatement>Cookie Statement</linkCookieStatement> and <linkCookieTechList>Cookie technology list</linkCookieTechList>.",
|
|
97
99
|
all: {
|
|
@@ -119,19 +121,19 @@ const N = {
|
|
|
119
121
|
ariaLabel: ""
|
|
120
122
|
}
|
|
121
123
|
}
|
|
122
|
-
},
|
|
124
|
+
}, P = {
|
|
123
125
|
banner: N,
|
|
124
|
-
preferencesManagement:
|
|
126
|
+
preferencesManagement: z
|
|
125
127
|
};
|
|
126
|
-
var
|
|
127
|
-
for (var t =
|
|
128
|
-
(
|
|
129
|
-
return
|
|
128
|
+
var S = Object.defineProperty, R = Object.getOwnPropertyDescriptor, p = (i, e, n, a) => {
|
|
129
|
+
for (var t = a > 1 ? void 0 : a ? R(e, n) : e, o = i.length - 1, r; o >= 0; o--)
|
|
130
|
+
(r = i[o]) && (t = (a ? r(e, n, t) : r(t)) || t);
|
|
131
|
+
return a && t && S(e, n, t), t;
|
|
130
132
|
};
|
|
131
133
|
const D = "pie-cookie-banner";
|
|
132
134
|
class l extends m {
|
|
133
135
|
constructor() {
|
|
134
|
-
super(...arguments), this._isCookieBannerHidden = !1, this._isModalOpen = !1, this.hasPrimaryActionsOnly = !1, this.locale =
|
|
136
|
+
super(...arguments), this._isCookieBannerHidden = !1, this._isModalOpen = !1, this.hasPrimaryActionsOnly = !1, this.locale = P, this._customTagEnhancers = {
|
|
135
137
|
linkStatement: (e) => s`<pie-link variant="inverse">${e}</pie-link>`,
|
|
136
138
|
linkNecessaryOnly: (e) => s`<pie-link data-test-id="body-necessary-only" tag="button" variant="inverse" @click="${this._onNecessaryOnly}">${e}</pie-link>`,
|
|
137
139
|
linkManagePreferences: (e) => s`<pie-link data-test-id="body-manage-prefs" tag="button" variant="inverse" @click="${this._openManagePreferencesModal}">${e}</pie-link>`,
|
|
@@ -139,12 +141,12 @@ class l extends m {
|
|
|
139
141
|
linkCookieStatement: (e) => s`<pie-link href="#" size="small" target="_blank">${e}</pie-link>`,
|
|
140
142
|
linkCookieTechList: (e) => s`<pie-link href="#" size="small" target="_blank">${e}</pie-link>`
|
|
141
143
|
}, this._dispatchCookieBannerCustomEvent = (e, n) => {
|
|
142
|
-
const
|
|
144
|
+
const a = new CustomEvent(e, {
|
|
143
145
|
bubbles: !0,
|
|
144
146
|
composed: !0,
|
|
145
147
|
detail: n
|
|
146
148
|
});
|
|
147
|
-
this.dispatchEvent(
|
|
149
|
+
this.dispatchEvent(a);
|
|
148
150
|
}, this._onNecessaryOnly = () => {
|
|
149
151
|
this._dispatchCookieBannerCustomEvent(C), this._isCookieBannerHidden = !0;
|
|
150
152
|
}, this._onAcceptAll = () => {
|
|
@@ -152,14 +154,14 @@ class l extends m {
|
|
|
152
154
|
}, this._openManagePreferencesModal = () => {
|
|
153
155
|
this._isCookieBannerHidden = !0, this._dispatchCookieBannerCustomEvent(B), this._isModalOpen = !0;
|
|
154
156
|
}, this._handleSwitchStates = (e) => {
|
|
155
|
-
const { id: n } = e == null ? void 0 : e.currentTarget,
|
|
156
|
-
if (n ===
|
|
157
|
+
const { id: n } = e == null ? void 0 : e.currentTarget, a = [...this._preferencesNodes].find(({ id: t }) => t === "all");
|
|
158
|
+
if (n === a.id) {
|
|
157
159
|
const t = e.detail;
|
|
158
|
-
this._preferencesNodes.forEach((
|
|
159
|
-
|
|
160
|
+
this._preferencesNodes.forEach((o) => {
|
|
161
|
+
o.isChecked = o.isDisabled ? o.isChecked : t;
|
|
160
162
|
});
|
|
161
163
|
} else
|
|
162
|
-
|
|
164
|
+
a.isChecked = [...this._preferencesNodes].filter(({ id: t }) => t !== "all").every(({ isChecked: t }) => t);
|
|
163
165
|
};
|
|
164
166
|
}
|
|
165
167
|
_localiseText(e) {
|
|
@@ -186,8 +188,8 @@ class l extends m {
|
|
|
186
188
|
*/
|
|
187
189
|
_handlePreferencesSaved() {
|
|
188
190
|
let e = {};
|
|
189
|
-
[...this._preferencesNodes].filter(({ id: n }) => n !== "all").forEach(({ id: n, isChecked:
|
|
190
|
-
e = { ...e, [n]:
|
|
191
|
+
[...this._preferencesNodes].filter(({ id: n }) => n !== "all").forEach(({ id: n, isChecked: a }) => {
|
|
192
|
+
e = { ...e, [n]: a };
|
|
191
193
|
}), this._dispatchCookieBannerCustomEvent($, e), this._isModalOpen = !1, this._isCookieBannerHidden = !0;
|
|
192
194
|
}
|
|
193
195
|
/**
|
|
@@ -197,21 +199,21 @@ class l extends m {
|
|
|
197
199
|
renderPreference({
|
|
198
200
|
id: e,
|
|
199
201
|
isChecked: n,
|
|
200
|
-
isDisabled:
|
|
202
|
+
isDisabled: a,
|
|
201
203
|
hasDivider: t,
|
|
202
|
-
hasDescription:
|
|
204
|
+
hasDescription: o
|
|
203
205
|
}) {
|
|
204
|
-
const
|
|
206
|
+
const r = this._localiseText(`preferencesManagement.${e}.title`), d = `preferencesManagement.${e}.description`, c = o && this._localiseText(d);
|
|
205
207
|
return s`
|
|
206
208
|
<div class="c-cookieBanner-preference">
|
|
207
209
|
<div>
|
|
208
|
-
<h3 class="c-cookieBanner-subheading">${
|
|
210
|
+
<h3 class="c-cookieBanner-subheading">${r}</h3>
|
|
209
211
|
${c ? s`<p class="c-cookieBanner-description">${c}</p>` : h}
|
|
210
212
|
</div>
|
|
211
213
|
<pie-switch
|
|
212
214
|
id="${e}"
|
|
213
215
|
?isChecked="${n}"
|
|
214
|
-
?isDisabled="${
|
|
216
|
+
?isDisabled="${a}"
|
|
215
217
|
@pie-switch-changed="${this._handleSwitchStates}">
|
|
216
218
|
</pie-switch>
|
|
217
219
|
</div>
|
package/dist/react.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as _ from "react";
|
|
2
2
|
import { PieCookieBanner as y } from "./index.js";
|
|
3
|
-
import { ON_COOKIE_BANNER_ACCEPT_ALL as
|
|
3
|
+
import { ON_COOKIE_BANNER_ACCEPT_ALL as $, ON_COOKIE_BANNER_MANAGE_PREFS as j, ON_COOKIE_BANNER_NECESSARY_ONLY as F, ON_COOKIE_BANNER_PREFS_SAVED as H, preferences as T } from "./index.js";
|
|
4
4
|
import "lit";
|
|
5
5
|
import "lit/decorators.js";
|
|
6
6
|
import "lit/directives/repeat.js";
|
|
@@ -10,7 +10,6 @@ import "@justeattakeaway/pie-icon-button";
|
|
|
10
10
|
import "@justeattakeaway/pie-link";
|
|
11
11
|
import "@justeattakeaway/pie-modal";
|
|
12
12
|
import "@justeattakeaway/pie-switch";
|
|
13
|
-
import "@justeattakeaway/pie-webc-core";
|
|
14
13
|
/**
|
|
15
14
|
* @license
|
|
16
15
|
* Copyright 2018 Google LLC
|
|
@@ -66,7 +65,7 @@ function P(o = window.React, n, c, m, d) {
|
|
|
66
65
|
const E = r.forwardRef((p, e) => a(v, { ...p, _$Gl: e }, p == null ? void 0 : p.children));
|
|
67
66
|
return E.displayName = v.displayName, E;
|
|
68
67
|
}
|
|
69
|
-
const
|
|
68
|
+
const x = P({
|
|
70
69
|
displayName: "PieCookieBanner",
|
|
71
70
|
elementClass: y,
|
|
72
71
|
react: _,
|
|
@@ -83,10 +82,10 @@ const D = P({
|
|
|
83
82
|
}
|
|
84
83
|
});
|
|
85
84
|
export {
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
85
|
+
$ as ON_COOKIE_BANNER_ACCEPT_ALL,
|
|
86
|
+
j as ON_COOKIE_BANNER_MANAGE_PREFS,
|
|
87
|
+
F as ON_COOKIE_BANNER_NECESSARY_ONLY,
|
|
88
|
+
H as ON_COOKIE_BANNER_PREFS_SAVED,
|
|
89
|
+
x as PieCookieBanner,
|
|
90
|
+
T as preferences
|
|
92
91
|
};
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"banner": {
|
|
3
|
+
"title": "Бисквитки",
|
|
4
|
+
"description": "Използваме наши собствени бисквитки и бисквитки на трети страни и друга технология, за да усъвършенстваме и персонализираме изживяването ти като потребител, за да оптимизираме статистиката и да показваме реклами на трети страни (прочети нашата <linkStatement>декларация</linkStatement>). Винаги настройваме необходимите бисквитки. Кликни върху <linkNecessaryOnly>Само необходимите</linkNecessaryOnly>, за да продължиш, без да приемаш други. Кликни върху <linkManagePreferences>Управление на предпочитанията</linkManagePreferences>, за да споделиш своите предпочитания или <linkAcceptAll>приеми всички</linkAcceptAll>.",
|
|
5
|
+
"cta": {
|
|
6
|
+
"managePreferences": "Управление на предпочитанията",
|
|
7
|
+
"necessaryOnly": "Само необходимите",
|
|
8
|
+
"acceptAll": "Приемане на всички"
|
|
9
|
+
}
|
|
10
|
+
},
|
|
11
|
+
"preferencesManagement": {
|
|
12
|
+
"title": "Управление на предпочитанията",
|
|
13
|
+
"description": "Можеш да намериш цялата информация в <linkCookieStatement>Декларацията за бисквитки</linkCookieStatement> и Списъка с <linkCookieTechList>технологии за бисквитки</linkCookieTechList>.",
|
|
14
|
+
"all": {
|
|
15
|
+
"title": "Включи всички"
|
|
16
|
+
},
|
|
17
|
+
"necessary": {
|
|
18
|
+
"title": "Необходими",
|
|
19
|
+
"description": "Тези бисквитки са необходими, за да се гарантира правилното функциониране на уебсайта и неговите свойства. Заявените от теб услуги не могат да се предоставят без тези бисквитки."
|
|
20
|
+
},
|
|
21
|
+
"functional": {
|
|
22
|
+
"title": "Функционални",
|
|
23
|
+
"description": "Тези бисквитки позволяват на уебсайта да запомни направените от теб избори за осигуряване на по-добра функционалност и персонализирани функции."
|
|
24
|
+
},
|
|
25
|
+
"analytical": {
|
|
26
|
+
"title": "Аналитични",
|
|
27
|
+
"description": "Тези аналитични бисквитки, включително за статистически данни, се използват за разбиране начина, по който посетителите взаимодействат с уебсайта, за да можем да измерваме и подобряваме ефективността на нашия уебсайт."
|
|
28
|
+
},
|
|
29
|
+
"personalized": {
|
|
30
|
+
"title": "Персонализирани (целеви и рекламни)",
|
|
31
|
+
"description": "Тези маркетингови бисквитки се използват за персонализиране предоставянето на информация на теб въз основа на твоя интерес и за измерване на ефективността на такива реклами на нашия уебсайт и на уебсайтовете на рекламните ни партньори."
|
|
32
|
+
},
|
|
33
|
+
"cta": {
|
|
34
|
+
"save": {
|
|
35
|
+
"label": "Запази",
|
|
36
|
+
"ariaLabel": ""
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"banner": {
|
|
3
|
+
"title": "Cookies",
|
|
4
|
+
"description": "Wir nutzen unsere eigenen Cookies und die von Drittanbietern sowie andere Technologien, um dein Nutzererlebnis zu verbessern und zu personalisieren, um Analysen zur Optimierung durchzuführen und um Werbung in Partnerschaft mit Dritten zu schalten (siehe unsere <linkStatement>Hinweise</linkStatement>). Die notwendigen Cookies werden immer gesetzt. Klicke auf <linkNecessaryOnly>Nur notwendige</linkNecessaryOnly>, um fortzufahren, ohne weitere anzunehmen. Klicke auf <linkManagePreferences>Einstellungen verwalten</linkManagePreferences>, um deine Einstellungen zu aktualisieren, oder auf <linkAcceptAll>Alle annehmen</linkAcceptAll>.",
|
|
5
|
+
"cta": {
|
|
6
|
+
"managePreferences": "Einstellungen verwalten",
|
|
7
|
+
"necessaryOnly": "Nur notwendige",
|
|
8
|
+
"acceptAll": "Alle annehmen"
|
|
9
|
+
}
|
|
10
|
+
},
|
|
11
|
+
"preferencesManagement": {
|
|
12
|
+
"title": "Deine Einstellungen verwalten",
|
|
13
|
+
"description": "Alle Informationen findest du in der <linkCookieStatement>Cookie-Erklärung</linkCookieStatement> und der <linkCookieTechList>Cookie-Technologie-Liste</linkCookieTechList>.",
|
|
14
|
+
"all": {
|
|
15
|
+
"title": "Alle aktivieren"
|
|
16
|
+
},
|
|
17
|
+
"necessary": {
|
|
18
|
+
"title": "Notwendig",
|
|
19
|
+
"description": "Diese Cookies sind notwendig, um sicherzustellen, dass die Webseite und ihre Funktionen ordnungsgemäß funktionieren. Die von dir angeforderten Dienste können ohne diese Cookies nicht bereitgestellt werden."
|
|
20
|
+
},
|
|
21
|
+
"functional": {
|
|
22
|
+
"title": "Funktional",
|
|
23
|
+
"description": "Diese Cookies ermöglichen es der Webseite, sich an die von dir getroffenen Entscheidungen zu erinnern, um dir eine bessere Funktionalität und individuelle Funktionen zu bieten."
|
|
24
|
+
},
|
|
25
|
+
"analytical": {
|
|
26
|
+
"title": "Analytisch",
|
|
27
|
+
"description": "Diese analytischen Cookies, einschließlich Statistiken, werden verwendet, um zu verstehen, wie Besucher mit der Webseite interagieren, und wir können die Leistung unserer Webseite messen und verbessern."
|
|
28
|
+
},
|
|
29
|
+
"personalized": {
|
|
30
|
+
"title": "Personalisiert (Targeting und Werbung)",
|
|
31
|
+
"description": "Diese Marketing-Cookies werden verwendet, um die Übermittlung von Informationen an dich auf deine Interessen abzustimmen und um die Effektivität solcher Werbung zu messen, sowohl auf unserer Webseite als auch auf den Webseiten unserer Werbepartner."
|
|
32
|
+
},
|
|
33
|
+
"cta": {
|
|
34
|
+
"save": {
|
|
35
|
+
"label": "Speichern",
|
|
36
|
+
"ariaLabel": ""
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"banner": {
|
|
3
|
+
"title": "Cookies",
|
|
4
|
+
"description": "Vi bruger vores egne og tredjepartscookies og anden teknologi til at forbedre og tilpasse din brugeroplevelse, optimere analyser og vise annoncer med tredjeparter (læs vores <linkStatement>erklæring</linkStatement>). Vi bruger altid nødvendige cookier. Klik på <linkNecessaryOnly>Kun nødvendige</linkNecessaryOnly> for at fortsætte uden at acceptere flere. Klik på <linkManagePreferences>Administrer præferencer</linkManagePreferences> for at dele dine præferencer eller <linkAcceptAll>Accepter alle</linkAcceptAll>.",
|
|
5
|
+
"cta": {
|
|
6
|
+
"managePreferences": "Administrer præferencer",
|
|
7
|
+
"necessaryOnly": "Kun nødvendige",
|
|
8
|
+
"acceptAll": "Accepter alle"
|
|
9
|
+
}
|
|
10
|
+
},
|
|
11
|
+
"preferencesManagement": {
|
|
12
|
+
"title": "Administrer præferencer",
|
|
13
|
+
"description": "Du kan finde alle oplysningerne i <linkCookieStatement>cookie-erklæringen</linkCookieStatement> og <linkCookieTechList>cookie-teknologilisten</linkCookieTechList>.",
|
|
14
|
+
"all": {
|
|
15
|
+
"title": "Aktiver alle"
|
|
16
|
+
},
|
|
17
|
+
"necessary": {
|
|
18
|
+
"title": "Nødvendige",
|
|
19
|
+
"description": " Disse cookier er nødvendige for at sikre, at hjemmesiden og dens funktioner fungerer korrekt. Tjenester, som du har bedt om, kan ikke leveres uden disse cookier."
|
|
20
|
+
},
|
|
21
|
+
"functional": {
|
|
22
|
+
"title": "Funktionelle",
|
|
23
|
+
"description": " Disse cookier gør det muligt for hjemmesiden at huske de valg, du træffer, for at give dig bedre funktionalitet og personlige funktioner."
|
|
24
|
+
},
|
|
25
|
+
"analytical": {
|
|
26
|
+
"title": "Analytiske",
|
|
27
|
+
"description": " Disse analytiske cookier, herunder statistiske, bruges til at forstå, hvordan besøgende interagerer med hjemmesiden, og vi kan måle og forbedre vores hjemmesides ydeevne."
|
|
28
|
+
},
|
|
29
|
+
"personalized": {
|
|
30
|
+
"title": "Personlige (målretning og annoncering)",
|
|
31
|
+
"description": "Disse markedsføringscookier bruges til at skræddersy leveringen af oplysninger til dig baseret på dine interesser og til at måle effektiviteten af sådanne annoncer, både på vores hjemmeside og vores annonceringspartneres hjemmesider."
|
|
32
|
+
},
|
|
33
|
+
"cta": {
|
|
34
|
+
"save": {
|
|
35
|
+
"label": "Gem",
|
|
36
|
+
"ariaLabel": ""
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"banner": {
|
|
3
|
+
"title": "Cookies",
|
|
4
|
+
"description": "Nous utilisons nos propres cookies et ceux de tiers, ainsi que d’autres technologies, afin d’améliorer et de personnaliser votre expérience d’utilisateur, d’optimiser nos analyses et d’afficher des publicités en partenariat avec des tiers (veuillez consulter notre <linkStatement>déclaration</linkStatement>). Nous installons toujours les cookies essentiels. Cliquez sur <linkNecessaryOnly>Cookies essentiels uniquement</linkNecessaryOnly> pour continuer en acceptant uniquement les cookies indispensables. Cliquez sur <linkManagePreferences>Gérer les préférences</linkManagePreferences> pour choisir vous-même vos cookies ou sur <linkAcceptAll>Tout accepter</linkAcceptAll>.",
|
|
5
|
+
"cta": {
|
|
6
|
+
"managePreferences": "Gérer les préférences",
|
|
7
|
+
"necessaryOnly": " Cookies essentiels uniquement",
|
|
8
|
+
"acceptAll": "Tout accepter"
|
|
9
|
+
}
|
|
10
|
+
},
|
|
11
|
+
"preferencesManagement": {
|
|
12
|
+
"title": "Gérer vos préférences",
|
|
13
|
+
"description": "Vous trouverez toutes les informations dans la <linkCookieStatement>déclaration relative aux cookies</linkCookieStatement> et dans la liste des <linkCookieTechList>technologies relatives aux cookies</linkCookieTechList>.",
|
|
14
|
+
"all": {
|
|
15
|
+
"title": "Tout activer"
|
|
16
|
+
},
|
|
17
|
+
"necessary": {
|
|
18
|
+
"title": "Cookies essentiels",
|
|
19
|
+
"description": "Ces cookies sont indispensables au bon fonctionnement du site Web et de ses fonctionnalités. Les services que vous avez demandés ne peuvent être fournis sans ces cookies."
|
|
20
|
+
},
|
|
21
|
+
"functional": {
|
|
22
|
+
"title": "Cookies fonctionnels",
|
|
23
|
+
"description": "Ces cookies permettent au site Web de se souvenir de vos choix pour vous offrir de meilleures fonctionnalités et une expérience personnalisée."
|
|
24
|
+
},
|
|
25
|
+
"analytical": {
|
|
26
|
+
"title": "Cookies analytiques",
|
|
27
|
+
"description": "Les cookies analytiques, incluant des cookies statistiques, sont utilisés pour comprendre comment les visiteurs interagissent avec le site Web. Ils nous permettent d’en mesurer et d’en améliorer les performances."
|
|
28
|
+
},
|
|
29
|
+
"personalized": {
|
|
30
|
+
"title": "Cookies de ciblage (publicitaires)",
|
|
31
|
+
"description": "Ces cookies marketing sont utilisés pour adapter les informations affichées à vos centres d’intérêt et pour mesurer l’efficacité de ces publicités, à la fois sur notre site Web et sur les sites Web de nos partenaires publicitaires."
|
|
32
|
+
},
|
|
33
|
+
"cta": {
|
|
34
|
+
"save": {
|
|
35
|
+
"label": "Enregistrer",
|
|
36
|
+
"ariaLabel": ""
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"banner": {
|
|
3
|
+
"title": "קובצי Cookie",
|
|
4
|
+
"description": "אנו משתמשים בקובצי Cookie ובטכנולוגיות נוספות שלנו ושל צדדים שלישיים כדי לשפר ולהתאים אישית את חוויית המשתמש שלכם, למטב ניתוח נתונים ולהציג פרסומות עם צדדים שלישיים (קראו את <linkStatement>ההצהרה</linkStatement> שלנו). קובצי Cookie הכרחיים תמיד נמצאים בשימוש. לחצו על <linkNecessaryOnly>הכרחי בלבד</linkNecessaryOnly> כדי להמשיך בלי להסכים לסוגים אחרים. לחצו על <linkManagePreferences>ניהול העדפות</linkManagePreferences> כדי לשתף את העדפותיכם או לחצו על <linkAcceptAll>הסכם להכול</linkAcceptAll>.",
|
|
5
|
+
"cta": {
|
|
6
|
+
"managePreferences": "ניהול העדפות",
|
|
7
|
+
"necessaryOnly": "הכרחי בלבד",
|
|
8
|
+
"acceptAll": "הסכם להכול"
|
|
9
|
+
}
|
|
10
|
+
},
|
|
11
|
+
"preferencesManagement": {
|
|
12
|
+
"title": "ניהול ההעדפות של",
|
|
13
|
+
"description": "תוכל למצוא את כל המידע <linkCookieStatement>בהצהרת</linkCookieStatement> קובצי ה-Cookie וכן <linkCookieTechList>ברשימת הטכנולוגיה</linkCookieTechList> של קובצי ה-Cookie.",
|
|
14
|
+
"all": {
|
|
15
|
+
"title": "להפעלת הכול"
|
|
16
|
+
},
|
|
17
|
+
"necessary": {
|
|
18
|
+
"title": "הכרחי",
|
|
19
|
+
"description": "קובצי Cookie אלה הכרחיים כדי להבטיח שאתר האינטרנט והתכונות שלו מתפקדים כראוי. לא ניתן לספק את השירותים שביקשתם ללא קובצי Cookie אלה."
|
|
20
|
+
},
|
|
21
|
+
"functional": {
|
|
22
|
+
"title": "תפקודיים",
|
|
23
|
+
"description": "קובצי Cookie אלה מאפשרים לאתר האינטרנט לזכור את הבחירות שאתם עושים כדי לספק לכם חוויה מותאמת אישית ותפקודיות טובה יותר."
|
|
24
|
+
},
|
|
25
|
+
"analytical": {
|
|
26
|
+
"title": "ניתוח נתונים",
|
|
27
|
+
"description": "קובצי Cookie אלה לניתוח נתונים, כולל נתונים סטטיסטיים, משמשים כדי להבין כיצד מבקרים מקיימים אינטראקציה עם אתר האינטרנט וכדי לאפשר לנו למדוד ולשפר את הביצועים של אתר האינטרנט שלנו."
|
|
28
|
+
},
|
|
29
|
+
"personalized": {
|
|
30
|
+
"title": "התאמה אישית (מיקוד ופרסום)",
|
|
31
|
+
"description": "קובצי Cookie שיווקיים אלה משמשים כדי להתאים אישית את המידע הנמסר לכם על סמך תחומי העניין שלכם וכדי למדוד את היעילות של פרסומות כאלה, הן באתר האינטרנט שלנו והן באתרי האינטרנט של שותפי הפרסום שלנו."
|
|
32
|
+
},
|
|
33
|
+
"cta": {
|
|
34
|
+
"save": {
|
|
35
|
+
"label": "שמירה",
|
|
36
|
+
"ariaLabel": ""
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
package/locales/index.js
CHANGED
|
@@ -1,8 +1,26 @@
|
|
|
1
|
+
import bgBG from './bg-bg.json';
|
|
2
|
+
import deDE from './de-de.json';
|
|
3
|
+
import dkDK from './dk-dk.json';
|
|
1
4
|
import enGB from './en-gb.json';
|
|
2
5
|
import esES from './es-es.json';
|
|
6
|
+
import frFR from './fr-fr.json';
|
|
7
|
+
import heIL from './he-il.json';
|
|
8
|
+
import itIT from './it-it.json';
|
|
9
|
+
import nlNL from './nl-nl.json';
|
|
10
|
+
import plPL from './pl-pl.json';
|
|
11
|
+
import skSK from './sk-sk.json';
|
|
3
12
|
|
|
4
13
|
// TODO: Find how to tell TS each of these is of type CookieBannerLocale
|
|
5
14
|
export default {
|
|
15
|
+
bgBG,
|
|
16
|
+
deDE,
|
|
17
|
+
dkDK,
|
|
6
18
|
enGB,
|
|
7
19
|
esES,
|
|
20
|
+
frFR,
|
|
21
|
+
heIL,
|
|
22
|
+
itIT,
|
|
23
|
+
nlNL,
|
|
24
|
+
plPL,
|
|
25
|
+
skSK,
|
|
8
26
|
};
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"banner": {
|
|
3
|
+
"title": "Cookie",
|
|
4
|
+
"description": "Usiamo cookie nostri e di terze parti e altre tecnologie per migliorare e personalizzare la tua esperienza utente, ottimizzare l’analisi dei dati e mostrare annunci pubblicitari in collaborazione con terze parti (leggi la nostra <linkStatement>Informativa</linkStatement>). I cookie necessari sono sempre attivi. Premi Solo <linkNecessaryOnly>necessari</linkNecessaryOnly> per proseguire senza accettare altri cookie. Apri <linkManagePreferences>Gestisci preferenze</linkManagePreferences> per scegliere quali cookie attivare, oppure premi <linkAcceptAll>Accetta tutti</linkAcceptAll> per attivare tutti i cookie.",
|
|
5
|
+
"cta": {
|
|
6
|
+
"managePreferences": "Gestisci preferenze",
|
|
7
|
+
"necessaryOnly": " Solo necessari",
|
|
8
|
+
"acceptAll": "Accetta tutti"
|
|
9
|
+
}
|
|
10
|
+
},
|
|
11
|
+
"preferencesManagement": {
|
|
12
|
+
"title": "Gestisci le tue preferenze",
|
|
13
|
+
"description": "Tutti i dettagli sono disponibili nell’<linkCookieStatement>Informativa sui cookie</linkCookieStatement> e nell’Elenco delle <linkCookieTechList>tecnologie cookie</linkCookieTechList>.",
|
|
14
|
+
"all": {
|
|
15
|
+
"title": "Attiva tutti"
|
|
16
|
+
},
|
|
17
|
+
"necessary": {
|
|
18
|
+
"title": "Necessari",
|
|
19
|
+
"description": "Questi cookie servono a garantire che il sito web e le sue componenti funzionino correttamente. Senza i cookie necessari, i servizi da te richiesti non possono essere forniti."
|
|
20
|
+
},
|
|
21
|
+
"functional": {
|
|
22
|
+
"title": "Funzionali",
|
|
23
|
+
"description": "Questi cookie consentono al sito web di memorizzare le scelte effettuate dall’utente per offrire una migliore funzionalità e personalizzazione."
|
|
24
|
+
},
|
|
25
|
+
"analytical": {
|
|
26
|
+
"title": "Analitici",
|
|
27
|
+
"description": "Questi cookie, che includono le statistiche, ci consentono di capire come i visitatori interagiscono con il nostro sito web per misurarne e migliorarne le prestazioni."
|
|
28
|
+
},
|
|
29
|
+
"personalized": {
|
|
30
|
+
"title": "Personalizzati (targeting e pubblicità)",
|
|
31
|
+
"description": "Questi cookie, detti di profilazione, vengono usati per personalizzare le informazioni trasmesse all’utente in base ai suoi interessi e per misurare l’efficacia delle pubblicità, sia sul nostro sito web sia sui siti web dei nostri partner pubblicitari."
|
|
32
|
+
},
|
|
33
|
+
"cta": {
|
|
34
|
+
"save": {
|
|
35
|
+
"label": "Salva",
|
|
36
|
+
"ariaLabel": ""
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"banner": {
|
|
3
|
+
"title": "Cookies",
|
|
4
|
+
"description": "Wij gebruiken onze eigen cookies, cookies van derde partijen en andere technieken om jouw gebruikerservaring te verbeteren en te personaliseren, analyses te optimaliseren en om advertenties met derde partijen te laten zien (lees onze <linkStatement>privacyverklaring</linkStatement>). Wij plaatsen altijd noodzakelijke cookies. Klik op <linkNecessaryOnly>Alleen noodzakelijk</linkNecessaryOnly> om door te gaan zonder meer te accepteren. Klik op <linkManagePreferences>Beheer voorkeuren</linkManagePreferences> om je voorkeuren te delen of <linkAcceptAll>Alles accepteren</linkAcceptAll>.",
|
|
5
|
+
"cta": {
|
|
6
|
+
"managePreferences": "Beheer voorkeuren",
|
|
7
|
+
"necessaryOnly": "Alleen noodzakelijk",
|
|
8
|
+
"acceptAll": "Alles accepteren"
|
|
9
|
+
}
|
|
10
|
+
},
|
|
11
|
+
"preferencesManagement": {
|
|
12
|
+
"title": "Beheer je voorkeuren",
|
|
13
|
+
"description": "Je vindt alle informatie in de <linkCookieStatement>Cookieverklaring</linkCookieStatement> en de <linkCookieTechList>Cookietechnologielijst</linkCookieTechList>.",
|
|
14
|
+
"all": {
|
|
15
|
+
"title": "Zet alles aan"
|
|
16
|
+
},
|
|
17
|
+
"necessary": {
|
|
18
|
+
"title": "Noodzakelijk",
|
|
19
|
+
"description": " Deze cookies zijn noodzakelijk voor een goede werking van de website en alle functies. Zonder deze cookies kunnen je gevraagde diensten niet worden geleverd."
|
|
20
|
+
},
|
|
21
|
+
"functional": {
|
|
22
|
+
"title": "Functioneel",
|
|
23
|
+
"description": " Met deze cookies kan de website de keuzes die je maakt onthouden om je een betere functionaliteit en persoonlijke functies te bieden."
|
|
24
|
+
},
|
|
25
|
+
"analytical": {
|
|
26
|
+
"title": "Analytisch",
|
|
27
|
+
"description": "Deze analytische cookies, waaronder statistieken, worden gebruikt om te begrijpen hoe bezoekers de website gebruiken, zodat wij de prestaties van onze website kunnen meten en verbeteren."
|
|
28
|
+
},
|
|
29
|
+
"personalized": {
|
|
30
|
+
"title": "Gepersonaliseerd (targeting en reclame)",
|
|
31
|
+
"description": "Deze marketingcookies worden gebruikt om de informatievoorziening af te stemmen op jouw interesses en om de effectiviteit van dergelijke advertenties te meten. Zowel op onze website als op de websites van onze reclamepartners."
|
|
32
|
+
},
|
|
33
|
+
"cta": {
|
|
34
|
+
"save": {
|
|
35
|
+
"label": "Opslaan",
|
|
36
|
+
"ariaLabel": ""
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"banner": {
|
|
3
|
+
"title": "Pliki cookie",
|
|
4
|
+
"description": "Używamy własnych plików cookie, plików stron trzecich oraz innych technologii mających na celu ulepszanie i personalizowanie doświadczeń użytkownika, optymalizację analiz i wyświetlanie reklam stronom trzecim (czytaj nasze <linkStatement>Oświadczenie</linkStatement>). Zawsze umieszczamy na urządzeniu użytkownika niezbędne pliki cookie. Kliknij <linkNecessaryOnly>Tylko niezbędne</linkNecessaryOnly>, aby kontynuować bez akceptowania kolejnych. Kliknij <linkManagePreferences>Zarządzaj ustawieniami</linkManagePreferences>, aby udostępnić ustawienia lub <linkAcceptAll>akceptować wszystkie</linkAcceptAll>.",
|
|
5
|
+
"cta": {
|
|
6
|
+
"managePreferences": "Zarządzaj ustawieniami",
|
|
7
|
+
"necessaryOnly": "Tylko niezbędne",
|
|
8
|
+
"acceptAll": "Zaakceptuj wszystkie"
|
|
9
|
+
}
|
|
10
|
+
},
|
|
11
|
+
"preferencesManagement": {
|
|
12
|
+
"title": "Zarządzaj swoimi ustawieniami",
|
|
13
|
+
"description": "Wszystkie informacje można znaleźć w <linkCookieStatement>Oświadczeniu o plikach cookie</linkCookieStatement> i na liście <linkCookieTechList>technologii plików cookie</linkCookieTechList>.",
|
|
14
|
+
"all": {
|
|
15
|
+
"title": "Włącz wszystkie"
|
|
16
|
+
},
|
|
17
|
+
"necessary": {
|
|
18
|
+
"title": "Niezbędne",
|
|
19
|
+
"description": "Te pliki cookie są niezbędne do zapewnienia prawidłowego działania witryny internetowej i jej funkcji. Usługi, o które użytkownik poprosił, nie mogą być świadczone bez tych plików cookie."
|
|
20
|
+
},
|
|
21
|
+
"functional": {
|
|
22
|
+
"title": "Związane z funkcjonalnością",
|
|
23
|
+
"description": "Te pliki cookie umożliwiają witrynie zapamiętanie wyborów dokonanych przez użytkownika, aby zapewnić mu lepszą funkcjonalność i obsługę funkcji osobistych."
|
|
24
|
+
},
|
|
25
|
+
"analytical": {
|
|
26
|
+
"title": "Analityczne",
|
|
27
|
+
"description": "Te analityczne pliki cookie, w tym związane ze statystykami, są wykorzystywane do zrozumienia, w jaki sposób odwiedzający wchodzą w interakcję z witryną internetową oraz jak możemy mierzyć i poprawiać wydajność naszej witryny internetowej."
|
|
28
|
+
},
|
|
29
|
+
"personalized": {
|
|
30
|
+
"title": "Spersonalizowane (targetowanie i reklama)",
|
|
31
|
+
"description": "Te marketingowe pliki cookie są wykorzystywane w celu dostosowania dostarczania informacji użytkownikowi w oparciu o jego zainteresowania oraz w celu pomiaru skuteczności takich reklam, zarówno na naszej stronie internetowej, jak i na stronach internetowych naszych partnerów reklamowych."
|
|
32
|
+
},
|
|
33
|
+
"cta": {
|
|
34
|
+
"save": {
|
|
35
|
+
"label": "Zapisz",
|
|
36
|
+
"ariaLabel": ""
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"banner": {
|
|
3
|
+
"title": "Súbory cookie",
|
|
4
|
+
"description": "Na zlepšenie a prispôsobenie používateľského prostredia, optimalizáciu analýz a zobrazovanie reklám tretích strán používame vlastné súbory cookie a súbory cookie tretích strán (prečítajte si naše <linkStatement>Vyhlásenie</linkStatement>). Nevyhnutné súbory cookie sú nastavené vždy. Kliknutím na tlačidlo <linkNecessaryOnly>Iba nevyhnutné</linkNecessaryOnly> môžeš pokračovať bez ďalších súborov cookie. Kliknutím na <linkManagePreferences>Spravovať preferencie</linkManagePreferences> môžeš zdieľať svoje preferencie, alebo kliknúť na <linkAcceptAll>Prijať všetko</linkAcceptAll>.",
|
|
5
|
+
"cta": {
|
|
6
|
+
"managePreferences": "Spravovať preferencie",
|
|
7
|
+
"necessaryOnly": "Iba nevyhnutné",
|
|
8
|
+
"acceptAll": "Prijať všetko"
|
|
9
|
+
}
|
|
10
|
+
},
|
|
11
|
+
"preferencesManagement": {
|
|
12
|
+
"title": "Spravovať svoje preferencie",
|
|
13
|
+
"description": "Všetky informácie o našom používaní súborov cookie nájdeš vo <linkCookieStatement>Vyhlásení o súboroch cookie</linkCookieStatement> a zozname <linkCookieTechList>technológie súborov cookie</linkCookieTechList>.",
|
|
14
|
+
"all": {
|
|
15
|
+
"title": "Zapnúť všetky"
|
|
16
|
+
},
|
|
17
|
+
"necessary": {
|
|
18
|
+
"title": "Nevyhnutné",
|
|
19
|
+
"description": "Tieto súbory cookie sú potrebné na zabezpečenie správneho fungovania webovej stránky a jej funkcií. Služby, o ktoré si požiadal/a, nie je možné poskytovať bez týchto súborov cookie."
|
|
20
|
+
},
|
|
21
|
+
"functional": {
|
|
22
|
+
"title": "Funkčné",
|
|
23
|
+
"description": "Tieto súbory cookie umožňujú webovej stránke zapamätať si tvoje voľby, aby ti poskytla lepšiu funkčnosť a personalizované funkcie."
|
|
24
|
+
},
|
|
25
|
+
"analytical": {
|
|
26
|
+
"title": "Analytické",
|
|
27
|
+
"description": "Tieto analytické súbory cookie, vrátane štatistík, sa používajú na pochopenie toho, ako návštevníci interagujú s webovou stránkou, a umožňujú nám merať a zlepšovať výkonnosť našej webovej stránky."
|
|
28
|
+
},
|
|
29
|
+
"personalized": {
|
|
30
|
+
"title": "Personalizované (zameriavanie a reklama)",
|
|
31
|
+
"description": "Tieto marketingové súbory cookie sa používajú na prispôsobenie poskytovania informácií na základe tvojho záujmu a meranie účinnosti takýchto reklám na našich webových stránkach a webových stránkach našich reklamných partnerov."
|
|
32
|
+
},
|
|
33
|
+
"cta": {
|
|
34
|
+
"save": {
|
|
35
|
+
"label": "Uložiť",
|
|
36
|
+
"ariaLabel": ""
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@justeattakeaway/pie-cookie-banner",
|
|
3
3
|
"description": "PIE Design System Cookie Banner built using Web Components",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.11.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"module": "dist/index.js",
|
|
@@ -30,14 +30,14 @@
|
|
|
30
30
|
"license": "Apache-2.0",
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@justeat/pie-design-tokens": "5.9.0",
|
|
33
|
-
"@justeattakeaway/pie-components-config": "0.
|
|
33
|
+
"@justeattakeaway/pie-components-config": "0.5.0"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@justeattakeaway/pie-button": "0.37.
|
|
36
|
+
"@justeattakeaway/pie-button": "0.37.1",
|
|
37
37
|
"@justeattakeaway/pie-divider": "0.9.1",
|
|
38
|
-
"@justeattakeaway/pie-icon-button": "0.21.
|
|
38
|
+
"@justeattakeaway/pie-icon-button": "0.21.2",
|
|
39
39
|
"@justeattakeaway/pie-link": "0.11.1",
|
|
40
|
-
"@justeattakeaway/pie-modal": "0.32.
|
|
40
|
+
"@justeattakeaway/pie-modal": "0.32.1",
|
|
41
41
|
"@justeattakeaway/pie-switch": "0.17.1",
|
|
42
42
|
"@justeattakeaway/pie-webc-core": "0.11.0"
|
|
43
43
|
},
|