@dargmuesli/nuxt-cookie-control 3.0.0-beta.7 → 4.0.0-beta.1
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/README.md +1 -2
- package/dist/module.d.ts +13 -13
- package/dist/module.json +1 -1
- package/dist/module.mjs +12 -12
- package/dist/runtime/components/CookieControl.vue +75 -67
- package/dist/runtime/components/CookieIframe.vue +1 -1
- package/dist/runtime/locale/ar.mjs +9 -9
- package/dist/runtime/locale/de.mjs +11 -11
- package/dist/runtime/locale/en.mjs +11 -11
- package/dist/runtime/locale/es.mjs +9 -9
- package/dist/runtime/locale/fr.mjs +9 -9
- package/dist/runtime/locale/hr.mjs +9 -9
- package/dist/runtime/locale/hu.mjs +9 -9
- package/dist/runtime/locale/it.mjs +9 -9
- package/dist/runtime/locale/ja.mjs +9 -9
- package/dist/runtime/locale/nl.mjs +9 -9
- package/dist/runtime/locale/no.mjs +9 -9
- package/dist/runtime/locale/pt.mjs +10 -10
- package/dist/runtime/locale/ru.mjs +9 -9
- package/dist/runtime/locale/uk.mjs +9 -9
- package/dist/runtime/types.d.ts +13 -13
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -8,8 +8,7 @@ Continuing Dario Ferderber's work on [gitlab.com/broj42/nuxt-cookie-control](htt
|
|
|
8
8
|
|
|
9
9
|
🚩 **Make sure to read the Migration instructions for all major version updates like [v2.0.0](https://github.com/dargmuesli/nuxt-cookie-control/releases/tag/2.0.0), [v3.0.0](https://github.com/dargmuesli/nuxt-cookie-control/releases/tag/3.0.0) and following!**
|
|
10
10
|
|
|
11
|
-
|
|
12
|
-
[Nuxt.js Cookie Control](https://codesandbox.io/s/vkwqmm577)
|
|
11
|
+
[](https://stackblitz.com/github/dargmuesli/nuxt-cookie-control?file=playground%2Fapp.vue)
|
|
13
12
|
|
|
14
13
|
## 🚀 Usage
|
|
15
14
|
```bash
|
package/dist/module.d.ts
CHANGED
|
@@ -11,32 +11,33 @@ interface Cookie {
|
|
|
11
11
|
targetCookieIds?: string[];
|
|
12
12
|
}
|
|
13
13
|
interface LocaleStrings {
|
|
14
|
+
accept: string;
|
|
14
15
|
acceptAll: string;
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
barTitle: string;
|
|
18
|
-
blockedIframe: string;
|
|
16
|
+
bannerDescription: string;
|
|
17
|
+
bannerTitle: string;
|
|
19
18
|
close: string;
|
|
19
|
+
cookiesFunctional: string;
|
|
20
|
+
cookiesNecessary: string;
|
|
21
|
+
cookiesOptional: string;
|
|
22
|
+
iframeBlocked: string;
|
|
23
|
+
decline: string;
|
|
20
24
|
declineAll: string;
|
|
21
|
-
functional: string;
|
|
22
25
|
here: string;
|
|
23
26
|
manageCookies: string;
|
|
24
|
-
necessary: string;
|
|
25
|
-
none: string;
|
|
26
|
-
optional: string;
|
|
27
27
|
save: string;
|
|
28
|
-
|
|
28
|
+
settingsUnsaved: string;
|
|
29
29
|
}
|
|
30
30
|
interface ModuleOptions {
|
|
31
31
|
barPosition?: 'top-left' | 'top-right' | 'top-full' | 'bottom-left' | 'bottom-right' | 'bottom-full';
|
|
32
32
|
colors?: false | Record<string, any>;
|
|
33
|
+
cookieExpiryOffsetMs: number;
|
|
34
|
+
cookieNameCookiesEnabledIds: string;
|
|
35
|
+
cookieNameIsConsentGiven: string;
|
|
33
36
|
cookies: {
|
|
34
37
|
necessary: Cookie[];
|
|
35
38
|
optional: Cookie[];
|
|
36
39
|
};
|
|
37
|
-
|
|
38
|
-
cookieNameIsConsentGiven: string;
|
|
39
|
-
cookieNameCookiesEnabledIds: string;
|
|
40
|
+
domain?: string;
|
|
40
41
|
isAcceptNecessaryButtonEnabled?: boolean;
|
|
41
42
|
isControlButtonEnabled?: boolean;
|
|
42
43
|
isCookieIdVisible?: boolean;
|
|
@@ -46,7 +47,6 @@ interface ModuleOptions {
|
|
|
46
47
|
isIframeBlocked?: boolean | {
|
|
47
48
|
initialState: boolean;
|
|
48
49
|
};
|
|
49
|
-
domain?: string;
|
|
50
50
|
locales: Locale[];
|
|
51
51
|
localeTexts: PartialRecord<Locale, LocaleStrings>;
|
|
52
52
|
}
|
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -2,24 +2,24 @@ import { resolve } from 'node:path';
|
|
|
2
2
|
import { createResolver, defineNuxtModule, addPlugin, addImports, addTemplate, extendWebpackConfig, resolvePath } from '@nuxt/kit';
|
|
3
3
|
|
|
4
4
|
const name = "@dargmuesli/nuxt-cookie-control";
|
|
5
|
-
const version = "
|
|
5
|
+
const version = "4.0.0-beta.1";
|
|
6
6
|
|
|
7
7
|
const en = {
|
|
8
|
+
accept: "Accept",
|
|
8
9
|
acceptAll: "Accept all",
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
barTitle: "Cookies",
|
|
12
|
-
blockedIframe: "To see this, please enable functional cookies",
|
|
10
|
+
bannerDescription: "We use our own cookies and third-party cookies so that we can display this website correctly and better understand how this website is used, with a view to improving the services we offer. A decision on cookie usage permissions can be changed anytime using the cookie button that will appear after a selection has been made on this banner.",
|
|
11
|
+
bannerTitle: "Cookies",
|
|
13
12
|
close: "Close",
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
cookiesFunctional: "Functional cookies",
|
|
14
|
+
cookiesNecessary: "Necessary cookies",
|
|
15
|
+
cookiesOptional: "Optional cookies",
|
|
16
|
+
decline: "Decline",
|
|
17
|
+
declineAll: "Decline cookies",
|
|
16
18
|
here: "here",
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
optional: "Optional cookies",
|
|
20
|
-
none: "none",
|
|
19
|
+
iframeBlocked: "To see this, please enable functional cookies",
|
|
20
|
+
manageCookies: "Learn more and customize",
|
|
21
21
|
save: "Save",
|
|
22
|
-
|
|
22
|
+
settingsUnsaved: "You have unsaved settings"
|
|
23
23
|
};
|
|
24
24
|
|
|
25
25
|
const DEFAULTS = {
|
|
@@ -9,16 +9,16 @@
|
|
|
9
9
|
<div class="cookieControl__BarContainer">
|
|
10
10
|
<div>
|
|
11
11
|
<slot name="bar">
|
|
12
|
-
<h3 v-text="localeStrings?.
|
|
13
|
-
<p v-text="localeStrings?.
|
|
12
|
+
<h3 v-text="localeStrings?.bannerTitle" />
|
|
13
|
+
<p v-text="localeStrings?.bannerDescription" />
|
|
14
14
|
</slot>
|
|
15
15
|
</div>
|
|
16
16
|
<div class="cookieControl__BarButtons">
|
|
17
|
-
<button @click="
|
|
17
|
+
<button @click="accept()" v-text="localeStrings?.accept" />
|
|
18
18
|
<button
|
|
19
19
|
v-if="moduleOptions.isAcceptNecessaryButtonEnabled"
|
|
20
|
-
@click="
|
|
21
|
-
v-text="localeStrings?.
|
|
20
|
+
@click="decline()"
|
|
21
|
+
v-text="localeStrings?.decline"
|
|
22
22
|
/>
|
|
23
23
|
<button
|
|
24
24
|
@click="isModalActive = true"
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
<p
|
|
52
52
|
v-if="isSaved"
|
|
53
53
|
class="cookieControl__ModalUnsaved"
|
|
54
|
-
v-text="localeStrings?.
|
|
54
|
+
v-text="localeStrings?.settingsUnsaved"
|
|
55
55
|
/>
|
|
56
56
|
<div class="cookieControl__ModalContent">
|
|
57
57
|
<div>
|
|
@@ -62,66 +62,74 @@
|
|
|
62
62
|
v-text="localeStrings?.close"
|
|
63
63
|
/>
|
|
64
64
|
<div v-for="cookieType in CookieType" :key="cookieType">
|
|
65
|
-
<
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
/>
|
|
82
|
-
<input
|
|
83
|
-
v-else
|
|
84
|
-
:id="resolveTranslatable(cookie.name)"
|
|
85
|
-
type="checkbox"
|
|
86
|
-
:checked="
|
|
87
|
-
getCookieIds(localCookiesEnabled)?.includes(
|
|
88
|
-
getCookieId(cookie)
|
|
89
|
-
) ||
|
|
90
|
-
(getCookie(moduleOptions.cookieNameIsConsentGiven) !==
|
|
91
|
-
'true' &&
|
|
92
|
-
typeof moduleOptions.isIframeBlocked === 'object' &&
|
|
93
|
-
moduleOptions.isIframeBlocked.initialState)
|
|
94
|
-
"
|
|
95
|
-
@change="toogleCookie(cookie)"
|
|
96
|
-
/>
|
|
97
|
-
<label :for="resolveTranslatable(cookie.name)">
|
|
98
|
-
{{ getName(cookie.name) }}
|
|
99
|
-
</label>
|
|
100
|
-
<span class="cookieControl__ModalCookieName">
|
|
101
|
-
{{ getName(cookie.name) }}
|
|
102
|
-
<span v-if="cookie.description">
|
|
103
|
-
{{ getDescription(cookie.description) }}
|
|
104
|
-
</span>
|
|
105
|
-
<span
|
|
65
|
+
<template v-if="moduleOptions.cookies[cookieType].length">
|
|
66
|
+
<h3
|
|
67
|
+
v-text="
|
|
68
|
+
localeStrings &&
|
|
69
|
+
(cookieType === CookieType.NECESSARY
|
|
70
|
+
? localeStrings.cookiesNecessary
|
|
71
|
+
: localeStrings.cookiesOptional)
|
|
72
|
+
"
|
|
73
|
+
/>
|
|
74
|
+
<ul>
|
|
75
|
+
<li
|
|
76
|
+
v-for="cookie in moduleOptions.cookies[cookieType]"
|
|
77
|
+
:key="cookie.id"
|
|
78
|
+
>
|
|
79
|
+
<div class="cookieControl__ModalInputWrapper">
|
|
80
|
+
<input
|
|
106
81
|
v-if="
|
|
107
|
-
|
|
108
|
-
cookie.
|
|
82
|
+
cookieType === CookieType.NECESSARY &&
|
|
83
|
+
cookie.name !== 'functional'
|
|
84
|
+
"
|
|
85
|
+
:id="resolveTranslatable(cookie.name)"
|
|
86
|
+
type="checkbox"
|
|
87
|
+
disabled
|
|
88
|
+
checked
|
|
89
|
+
/>
|
|
90
|
+
<input
|
|
91
|
+
v-else
|
|
92
|
+
:id="resolveTranslatable(cookie.name)"
|
|
93
|
+
type="checkbox"
|
|
94
|
+
:checked="
|
|
95
|
+
getCookieIds(localCookiesEnabled)?.includes(
|
|
96
|
+
getCookieId(cookie)
|
|
97
|
+
) ||
|
|
98
|
+
(getCookie(
|
|
99
|
+
moduleOptions.cookieNameIsConsentGiven
|
|
100
|
+
) !== 'true' &&
|
|
101
|
+
typeof moduleOptions.isIframeBlocked ===
|
|
102
|
+
'object' &&
|
|
103
|
+
moduleOptions.isIframeBlocked.initialState)
|
|
109
104
|
"
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
}}
|
|
105
|
+
@change="toogleCookie(cookie)"
|
|
106
|
+
/>
|
|
107
|
+
<label :for="resolveTranslatable(cookie.name)">
|
|
108
|
+
{{ getName(cookie.name) }}
|
|
109
|
+
</label>
|
|
110
|
+
<span class="cookieControl__ModalCookieName">
|
|
111
|
+
{{ getName(cookie.name) }}
|
|
112
|
+
<span v-if="cookie.description">
|
|
113
|
+
{{ getDescription(cookie.description) }}
|
|
114
|
+
</span>
|
|
115
|
+
<span
|
|
116
|
+
v-if="
|
|
117
|
+
moduleOptions.isCookieIdVisible &&
|
|
118
|
+
cookie.targetCookieIds
|
|
119
|
+
"
|
|
120
|
+
>
|
|
121
|
+
{{
|
|
122
|
+
' IDs: ' +
|
|
123
|
+
cookie.targetCookieIds
|
|
124
|
+
.map((id: string) => `"${id}"`)
|
|
125
|
+
.join(', ')
|
|
126
|
+
}}
|
|
127
|
+
</span>
|
|
117
128
|
</span>
|
|
118
|
-
</
|
|
119
|
-
</
|
|
120
|
-
</
|
|
121
|
-
</
|
|
122
|
-
<p v-else>
|
|
123
|
-
{{ localeStrings?.none }}
|
|
124
|
-
</p>
|
|
129
|
+
</div>
|
|
130
|
+
</li>
|
|
131
|
+
</ul>
|
|
132
|
+
</template>
|
|
125
133
|
</div>
|
|
126
134
|
<div class="cookieControl__ModalButtons">
|
|
127
135
|
<button
|
|
@@ -136,7 +144,7 @@
|
|
|
136
144
|
<button
|
|
137
145
|
@click="
|
|
138
146
|
() => {
|
|
139
|
-
|
|
147
|
+
accept()
|
|
140
148
|
isModalActive = false
|
|
141
149
|
}
|
|
142
150
|
"
|
|
@@ -206,13 +214,13 @@ const isSaved = computed(
|
|
|
206
214
|
const localeStrings = computed(() => moduleOptions.localeTexts[props.locale])
|
|
207
215
|
|
|
208
216
|
// methods
|
|
209
|
-
const
|
|
217
|
+
const accept = () => {
|
|
210
218
|
setCookies({
|
|
211
219
|
isConsentGiven: true,
|
|
212
220
|
cookiesOptionalEnabled: moduleOptions.cookies.optional,
|
|
213
221
|
})
|
|
214
222
|
}
|
|
215
|
-
const
|
|
223
|
+
const decline = () => {
|
|
216
224
|
setCookies({
|
|
217
225
|
isConsentGiven: true,
|
|
218
226
|
cookiesOptionalEnabled: moduleOptions.cookies?.necessary,
|
|
@@ -252,7 +260,7 @@ const getDescription = (description: Translatable) =>
|
|
|
252
260
|
} ${resolveTranslatable(description)}`
|
|
253
261
|
const getName = (name: Translatable) => {
|
|
254
262
|
return name === 'functional'
|
|
255
|
-
? localeStrings.value?.
|
|
263
|
+
? localeStrings.value?.cookiesFunctional
|
|
256
264
|
: typeof name === 'string'
|
|
257
265
|
? name
|
|
258
266
|
: name[props.locale]
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
export default {
|
|
2
|
+
accept: "\u0642\u0628\u0648\u0644",
|
|
2
3
|
acceptAll: "\u0642\u0628\u0648\u0644 \u0627\u0644\u0643\u0644",
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
barTitle: "\u0645\u0644\u0641\u0627\u062A \u062A\u0639\u0631\u064A\u0641 \u0627\u0644\u0627\u0631\u062A\u0628\u0627\u0637",
|
|
6
|
-
blockedIframe: "\u0644\u0631\u0624\u064A\u0629 \u0647\u0630\u0627 \u060C \u064A\u0631\u062C\u0649 \u062A\u0645\u0643\u064A\u0646 \u0645\u0644\u0641\u0627\u062A \u062A\u0639\u0631\u064A\u0641 \u0627\u0644\u0627\u0631\u062A\u0628\u0627\u0637 \u0627\u0644\u0648\u0638\u064A\u0641\u064A\u0629",
|
|
4
|
+
bannerDescription: "\u0646\u062D\u0646 \u0646\u0633\u062A\u062E\u062F\u0645 \u0645\u0644\u0641\u0627\u062A \u062A\u0639\u0631\u064A\u0641 \u0627\u0644\u0627\u0631\u062A\u0628\u0627\u0637 \u0627\u0644\u062E\u0627\u0635\u0629 \u0628\u0646\u0627 \u0648\u0645\u0644\u0641\u0627\u062A \u062A\u0639\u0631\u064A\u0641 \u0627\u0644\u0627\u0631\u062A\u0628\u0627\u0637 \u0627\u0644\u062E\u0627\u0635\u0629 \u0628\u0627\u0644\u062C\u0647\u0627\u062A \u0627\u0644\u062E\u0627\u0631\u062C\u064A\u0629 \u062D\u062A\u0649 \u0646\u062A\u0645\u0643\u0646 \u0645\u0646 \u0639\u0631\u0636 \u0647\u0630\u0627 \u0627\u0644\u0645\u0648\u0642\u0639 \u0648\u0641\u0647\u0645 \u0643\u064A\u0641\u064A\u0629 \u0627\u0633\u062A\u062E\u062F\u0627\u0645\u0647 \u0628\u0634\u0643\u0644 \u0623\u0641\u0636\u0644 \u060C \u0628\u0647\u062F\u0641 \u062A\u062D\u0633\u064A\u0646 \u0627\u0644\u062E\u062F\u0645\u0627\u062A \u0627\u0644\u062A\u064A \u0646\u0642\u062F\u0645\u0647\u0627. \u0625\u0630\u0627 \u0648\u0627\u0635\u0644\u062A \u0627\u0644\u062A\u0635\u0641\u062D \u060C \u0641\u0625\u0646\u0646\u0627 \u0646\u0639\u062A\u0628\u0631 \u0623\u0646\u0643 \u0642\u0628\u0644\u062A \u0645\u0644\u0641\u0627\u062A \u062A\u0639\u0631\u064A\u0641 \u0627\u0644\u0627\u0631\u062A\u0628\u0627\u0637.",
|
|
5
|
+
bannerTitle: "\u0645\u0644\u0641\u0627\u062A \u062A\u0639\u0631\u064A\u0641 \u0627\u0644\u0627\u0631\u062A\u0628\u0627\u0637",
|
|
7
6
|
close: "\u0625\u063A\u0644\u0627\u0642",
|
|
7
|
+
cookiesFunctional: "\u0645\u0644\u0641\u0627\u062A \u062A\u0639\u0631\u064A\u0641 \u0627\u0644\u0627\u0631\u062A\u0628\u0627\u0637 \u0627\u0644\u0648\u0638\u064A\u0641\u064A\u0629",
|
|
8
|
+
cookiesNecessary: "\u0645\u0644\u0641\u0627\u062A \u062A\u0639\u0631\u064A\u0641 \u0627\u0644\u0627\u0631\u062A\u0628\u0627\u0637 \u0627\u0644\u0636\u0631\u0648\u0631\u064A\u0629",
|
|
9
|
+
cookiesOptional: "\u0645\u0644\u0641\u0627\u062A \u062A\u0639\u0631\u064A\u0641 \u0627\u0644\u0627\u0631\u062A\u0628\u0627\u0637 \u0627\u0644\u0627\u062E\u062A\u064A\u0627\u0631\u064A\u0629",
|
|
10
|
+
decline: "\u062A\u0642\u0628\u0644 \u0627\u0644\u0636\u0631\u0648\u0631\u0629",
|
|
8
11
|
declineAll: "\u062D\u0630\u0641 \u0627\u0644\u0643\u0644",
|
|
9
|
-
functional: "\u0645\u0644\u0641\u0627\u062A \u062A\u0639\u0631\u064A\u0641 \u0627\u0644\u0627\u0631\u062A\u0628\u0627\u0637 \u0627\u0644\u0648\u0638\u064A\u0641\u064A\u0629",
|
|
10
12
|
here: "\u0647\u0646\u0627",
|
|
13
|
+
iframeBlocked: "\u0644\u0631\u0624\u064A\u0629 \u0647\u0630\u0627 \u060C \u064A\u0631\u062C\u0649 \u062A\u0645\u0643\u064A\u0646 \u0645\u0644\u0641\u0627\u062A \u062A\u0639\u0631\u064A\u0641 \u0627\u0644\u0627\u0631\u062A\u0628\u0627\u0637 \u0627\u0644\u0648\u0638\u064A\u0641\u064A\u0629",
|
|
11
14
|
manageCookies: "\u0625\u062F\u0627\u0631\u0629 \u0645\u0644\u0641\u0627\u062A \u062A\u0639\u0631\u064A\u0641 \u0627\u0644\u0627\u0631\u062A\u0628\u0627\u0637",
|
|
12
|
-
necessary: "\u0645\u0644\u0641\u0627\u062A \u062A\u0639\u0631\u064A\u0641 \u0627\u0644\u0627\u0631\u062A\u0628\u0627\u0637 \u0627\u0644\u0636\u0631\u0648\u0631\u064A\u0629",
|
|
13
|
-
none: "\u0644\u0627 \u0623\u062D\u062F",
|
|
14
|
-
optional: "\u0645\u0644\u0641\u0627\u062A \u062A\u0639\u0631\u064A\u0641 \u0627\u0644\u0627\u0631\u062A\u0628\u0627\u0637 \u0627\u0644\u0627\u062E\u062A\u064A\u0627\u0631\u064A\u0629",
|
|
15
15
|
save: "\u062D\u0641\u0638",
|
|
16
|
-
|
|
16
|
+
settingsUnsaved: "\u0644\u062F\u064A\u0643 \u0625\u0639\u062F\u0627\u062F\u0627\u062A \u063A\u064A\u0631 \u0645\u062D\u0641\u0648\u0638\u0629"
|
|
17
17
|
};
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
export default {
|
|
2
|
+
accept: "Akzeptieren",
|
|
2
3
|
acceptAll: "Alle akzeptieren",
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
barTitle: "Cookies",
|
|
6
|
-
blockedIframe: "Um den Inhalt zu sehen, aktivieren Sie bitte funktionale Cookies",
|
|
4
|
+
bannerDescription: "Wir verwenden eigene Cookies und Cookies von Drittanbietern, damit wir diese Webseite korrekt darstellen k\xF6nnen und besser verstehen, wie diese Webseite genutzt wird, um unser Angebot zu verbessern. Eine Entscheidung \xFCber die Erlaubnis zur Verwendung von Cookies kann jederzeit \xFCber den Cookie-Button ge\xE4ndert werden, der erscheint, nachdem eine Auswahl auf diesem Banner getroffen wurde.",
|
|
5
|
+
bannerTitle: "Cookies",
|
|
7
6
|
close: "Schlie\xDFen",
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
cookiesFunctional: "Funktionale Cookies",
|
|
8
|
+
cookiesNecessary: "Notwendige Cookies",
|
|
9
|
+
cookiesOptional: "Optionale Cookies",
|
|
10
|
+
decline: "Ablehnen",
|
|
11
|
+
declineAll: "Cookies ablehnen",
|
|
10
12
|
here: "hier",
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
none: "keine",
|
|
14
|
-
optional: "Optionale Cookies",
|
|
13
|
+
iframeBlocked: "Um den Inhalt zu sehen, aktivieren Sie bitte funktionale Cookies",
|
|
14
|
+
manageCookies: "Mehr erfahren und individuell anpassen",
|
|
15
15
|
save: "Speichern",
|
|
16
|
-
|
|
16
|
+
settingsUnsaved: "Es gibt nicht gespeicherte Einstellungen"
|
|
17
17
|
};
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
export default {
|
|
2
|
+
accept: "Accept",
|
|
2
3
|
acceptAll: "Accept all",
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
barTitle: "Cookies",
|
|
6
|
-
blockedIframe: "To see this, please enable functional cookies",
|
|
4
|
+
bannerDescription: "We use our own cookies and third-party cookies so that we can display this website correctly and better understand how this website is used, with a view to improving the services we offer. A decision on cookie usage permissions can be changed anytime using the cookie button that will appear after a selection has been made on this banner.",
|
|
5
|
+
bannerTitle: "Cookies",
|
|
7
6
|
close: "Close",
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
cookiesFunctional: "Functional cookies",
|
|
8
|
+
cookiesNecessary: "Necessary cookies",
|
|
9
|
+
cookiesOptional: "Optional cookies",
|
|
10
|
+
decline: "Decline",
|
|
11
|
+
declineAll: "Decline cookies",
|
|
10
12
|
here: "here",
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
optional: "Optional cookies",
|
|
14
|
-
none: "none",
|
|
13
|
+
iframeBlocked: "To see this, please enable functional cookies",
|
|
14
|
+
manageCookies: "Learn more and customize",
|
|
15
15
|
save: "Save",
|
|
16
|
-
|
|
16
|
+
settingsUnsaved: "You have unsaved settings"
|
|
17
17
|
};
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
export default {
|
|
2
|
+
accept: "Aceptar",
|
|
2
3
|
acceptAll: "Aceptar todo",
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
barTitle: "Cookies",
|
|
6
|
-
blockedIframe: "Para ver esto, por favor habilita las cookies funcionales.",
|
|
4
|
+
bannerDescription: "Utilizamos cookies propias y de terceros para poder mostrarle una p\xE1gina web y comprender c\xF3mo la utiliza, con el fin de mejorar los servicios que ofrecemos. Si contin\xFAa navegando, consideramos que acepta su uso.",
|
|
5
|
+
bannerTitle: "Cookies",
|
|
7
6
|
close: "Cerrar",
|
|
7
|
+
cookiesFunctional: "Cookies funcionales",
|
|
8
|
+
cookiesNecessary: "Cookies obligatorias",
|
|
9
|
+
cookiesOptional: "Cookies opcionales",
|
|
10
|
+
decline: "Acepto lo necesario",
|
|
8
11
|
declineAll: "Borrar todo",
|
|
9
|
-
functional: "Cookies funcionales",
|
|
10
12
|
here: "aqu\xED",
|
|
13
|
+
iframeBlocked: "Para ver esto, por favor habilita las cookies funcionales.",
|
|
11
14
|
manageCookies: "Administrar cookies",
|
|
12
|
-
necessary: "Cookies obligatorias",
|
|
13
|
-
none: "nada",
|
|
14
|
-
optional: "Cookies opcionales",
|
|
15
15
|
save: "Guardar",
|
|
16
|
-
|
|
16
|
+
settingsUnsaved: "Tienes configuraciones no guardadas"
|
|
17
17
|
};
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
export default {
|
|
2
|
+
accept: "Accepter",
|
|
2
3
|
acceptAll: "Tout accepter",
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
barTitle: "Cookies",
|
|
6
|
-
blockedIframe: "Pour voir cela, veuillez activer les cookies fonctionnels",
|
|
4
|
+
bannerDescription: "Nous utilisons des cookies d\u2019origine et des cookies tiers. Ces cookies sont destin\xE9s \xE0 vous offrir une navigation optimis\xE9e sur ce site web et de nous donner un aper\xE7u de son utilisation, en vue de l\u2019am\xE9lioration des services que nous offrons. En poursuivant votre navigation, nous consid\xE9rons que vous acceptez l\u2019usage des cookies.",
|
|
5
|
+
bannerTitle: "Cookies",
|
|
7
6
|
close: "Fermer",
|
|
7
|
+
cookiesFunctional: "Cookies fonctionnels",
|
|
8
|
+
cookiesNecessary: "Les cookies obligatoires",
|
|
9
|
+
cookiesOptional: "Les cookies optionnels",
|
|
10
|
+
decline: "J'accepte le n\xE9cessaire",
|
|
8
11
|
declineAll: "Tout refuser",
|
|
9
|
-
functional: "Cookies fonctionnels",
|
|
10
12
|
here: "ici",
|
|
13
|
+
iframeBlocked: "Pour voir cela, veuillez activer les cookies fonctionnels",
|
|
11
14
|
manageCookies: "G\xE9rer les cookies",
|
|
12
|
-
necessary: "Les cookies obligatoires",
|
|
13
|
-
none: "rien",
|
|
14
|
-
optional: "Les cookies optionnels",
|
|
15
15
|
save: "Sauvegarder",
|
|
16
|
-
|
|
16
|
+
settingsUnsaved: "Vous avez des param\xE8tres non sauvegard\xE9s"
|
|
17
17
|
};
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
export default {
|
|
2
|
+
accept: "Dozvoli",
|
|
2
3
|
acceptAll: "Dozvoli sve",
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
barTitle: "Kola\u010Di\u0107i",
|
|
6
|
-
blockedIframe: "Da bi vidjeli ovo, molimo Vas omogu\u0107ite funkcionalne kola\u010Di\u0107e",
|
|
4
|
+
bannerDescription: "Koristimo vlastite kola\u010Di\u0107e i kola\u010Di\u0107e tre\u0107e strane kako bismo Vam mogli prikazati web stranicu i razumijeti kako je koristite, s pogledom na pobolj\u0161anje usluga koje nudimo. Ako nastavite s pregledavanjem, smatramo da prihva\u0107ate upotrebu kola\u010Di\u0107a.",
|
|
5
|
+
bannerTitle: "Kola\u010Di\u0107i",
|
|
7
6
|
close: "Zatvori",
|
|
7
|
+
cookiesFunctional: "Funkcionalni kola\u010Di\u0107i",
|
|
8
|
+
cookiesNecessary: "Obavezni kola\u010Di\u0107i",
|
|
9
|
+
cookiesOptional: "Neobavezni kola\u010Di\u0107i",
|
|
10
|
+
decline: "Prihva\u0107am obavezne",
|
|
8
11
|
declineAll: "Obri\u0161i sve",
|
|
9
|
-
functional: "Funkcionalni kola\u010Di\u0107i",
|
|
10
12
|
here: "ovdje",
|
|
13
|
+
iframeBlocked: "Da bi vidjeli ovo, molimo Vas omogu\u0107ite funkcionalne kola\u010Di\u0107e",
|
|
11
14
|
manageCookies: "Upravljaj kola\u010Di\u0107ima",
|
|
12
|
-
necessary: "Obavezni kola\u010Di\u0107i",
|
|
13
|
-
none: "nikakav",
|
|
14
|
-
optional: "Neobavezni kola\u010Di\u0107i",
|
|
15
15
|
save: "Spremi",
|
|
16
|
-
|
|
16
|
+
settingsUnsaved: "Imate nespremljenih postavki"
|
|
17
17
|
};
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
export default {
|
|
2
|
+
accept: "Elfogad",
|
|
2
3
|
acceptAll: "\xD6sszes elfogad\xE1sa",
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
barTitle: "S\xFCtik",
|
|
6
|
-
blockedIframe: "Ennek megtekint\xE9s\xE9hez, enged\xE9lyezd a funkcion\xE1lis s\xFCtik haszn\xE1lat\xE1t",
|
|
4
|
+
bannerDescription: "Saj\xE1t, illetve harmadik f\xE9lt\u0151l sz\xE1rmaz\xF3 s\xFCtiket haszn\xE1lunk annak \xE9rdek\xE9ben, hogy megmutassuk ezt a weboldalt, \xE9s jobban meg\xE9rts\xFCk, hogyan haszn\xE1lja azt, azzal a c\xE9llal, hogy jav\xEDtsuk az \xE1ltalunk k\xEDn\xE1lt szolg\xE1ltat\xE1sokat. Ha folytatod a b\xF6ng\xE9sz\xE9st, \xFAgy gondoljuk, hogy elfogadtad a s\xFCtiket.",
|
|
5
|
+
bannerTitle: "S\xFCtik",
|
|
7
6
|
close: "Bez\xE1r",
|
|
7
|
+
cookiesFunctional: "Funkcion\xE1lis s\xFCtik",
|
|
8
|
+
cookiesNecessary: "Sz\xFCks\xE9ges s\xFCtikk",
|
|
9
|
+
cookiesOptional: "Opcion\xE1lis s\xFCtik",
|
|
10
|
+
decline: "Elfogadom a sz\xFCks\xE9geset",
|
|
8
11
|
declineAll: "\xD6sszes elutas\xEDt\xE1sa",
|
|
9
|
-
functional: "Funkcion\xE1lis s\xFCtik",
|
|
10
12
|
here: "itt",
|
|
13
|
+
iframeBlocked: "Ennek megtekint\xE9s\xE9hez, enged\xE9lyezd a funkcion\xE1lis s\xFCtik haszn\xE1lat\xE1t",
|
|
11
14
|
manageCookies: "S\xFCtikk kezel\xE9se",
|
|
12
|
-
necessary: "Sz\xFCks\xE9ges s\xFCtikk",
|
|
13
|
-
none: "egyik sem",
|
|
14
|
-
optional: "Opcion\xE1lis s\xFCtik",
|
|
15
15
|
save: "Ment\xE9s",
|
|
16
|
-
|
|
16
|
+
settingsUnsaved: "Ment\xE9s n\xE9lk\xFCli be\xE1ll\xEDt\xE1sok vannak"
|
|
17
17
|
};
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
export default {
|
|
2
|
+
accept: "Accetta",
|
|
2
3
|
acceptAll: "Accetta tutto",
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
barTitle: "Cookies",
|
|
6
|
-
blockedIframe: "Per vedere questo, si prega di abilitare i cookie funzionali",
|
|
4
|
+
bannerDescription: "Utilizziamo cookie propri e di terzi per mostrarvi la pagina web e capire come la utilizzate, nonch\xE9 per migliorare i servizi che offriamo. Se continuate a navigare, consideriamo che accettate il loro utilizzo.",
|
|
5
|
+
bannerTitle: "Cookies",
|
|
7
6
|
close: "Chiudi",
|
|
7
|
+
cookiesFunctional: "Cookie funzionali",
|
|
8
|
+
cookiesNecessary: "Cookie necessari",
|
|
9
|
+
cookiesOptional: "Cookie opzionali",
|
|
10
|
+
decline: "Accetto il necessario",
|
|
8
11
|
declineAll: "Cancella tutto",
|
|
9
|
-
functional: "Cookie funzionali",
|
|
10
12
|
here: "qui",
|
|
13
|
+
iframeBlocked: "Per vedere questo, si prega di abilitare i cookie funzionali",
|
|
11
14
|
manageCookies: "Gestisci i cookie",
|
|
12
|
-
necessary: "Cookie necessari",
|
|
13
|
-
none: "nessuno",
|
|
14
|
-
optional: "Cookie opzionali",
|
|
15
15
|
save: "Salva",
|
|
16
|
-
|
|
16
|
+
settingsUnsaved: "Ci sono impostazioni non salvate"
|
|
17
17
|
};
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
export default {
|
|
2
|
+
accept: "\u540C\u610F",
|
|
2
3
|
acceptAll: "\u5168\u3066\u540C\u610F",
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
barTitle: "Cookie",
|
|
6
|
-
blockedIframe: "\u3053\u3053\u3092\u8868\u793A\u3059\u308B\u306B\u306F\u3001\u6A5F\u80FD\u6027Cookie\u3092\u6709\u52B9\u306B\u3057\u3066\u304F\u3060\u3055\u3044:",
|
|
4
|
+
bannerDescription: "\u5F53\u30B5\u30A4\u30C8\u3067\u306F\u3001\u30B5\u30FC\u30D3\u30B9\u6539\u5584\u3092\u76EE\u7684\u3068\u3057\u3066\u5F53\u30B5\u30A4\u30C8\u53CA\u3073\u7B2C\u4E09\u8005\u304C\u63D0\u4F9B\u3059\u308BCookie\u3092\u4F7F\u7528\u3059\u308B\u3053\u3068\u306B\u3088\u308A\u3001\u5229\u7528\u8005\u306B\u5F53\u30B5\u30A4\u30C8\u3092\u8868\u793A\u3055\u305B\u308B\u3068\u3068\u3082\u306B\u3001\u5229\u7528\u8005\u304C\u3069\u306E\u3088\u3046\u306B\u30B5\u30A4\u30C8\u3092\u5229\u7528\u3057\u3066\u3044\u308B\u304B\u3092\u3088\u308A\u5341\u5206\u306B\u628A\u63E1\u3059\u308B\u3053\u3068\u304C\u53EF\u80FD\u3068\u306A\u3063\u3066\u3044\u307E\u3059\u3002\u3053\u306E\u307E\u307E\u95B2\u89A7\u3092\u7D9A\u3051\u308B\u3068\u3001Cookie\u306E\u5229\u7528\u306B\u3064\u3044\u3066\u540C\u610F\u3057\u305F\u3068\u307F\u306A\u3055\u308C\u307E\u3059\u3002",
|
|
5
|
+
bannerTitle: "Cookie",
|
|
7
6
|
close: "\u9589\u3058\u308B",
|
|
7
|
+
cookiesFunctional: "\u6A5F\u80FD\u6027Cookie",
|
|
8
|
+
cookiesNecessary: "\u4E0D\u53EF\u6B20\u306ACookie",
|
|
9
|
+
cookiesOptional: "\u4EFB\u610F\u306Ecookies",
|
|
10
|
+
decline: "\u5FC5\u8981\u306B\u5FDC\u3058\u3066\u53D7\u3051\u5165\u308C\u308B",
|
|
8
11
|
declineAll: "\u5168\u3066\u524A\u9664",
|
|
9
|
-
functional: "\u6A5F\u80FD\u6027Cookie",
|
|
10
12
|
here: "\u8A2D\u5B9A",
|
|
13
|
+
iframeBlocked: "\u3053\u3053\u3092\u8868\u793A\u3059\u308B\u306B\u306F\u3001\u6A5F\u80FD\u6027Cookie\u3092\u6709\u52B9\u306B\u3057\u3066\u304F\u3060\u3055\u3044:",
|
|
11
14
|
manageCookies: "Cookie\u3092\u7BA1\u7406",
|
|
12
|
-
necessary: "\u4E0D\u53EF\u6B20\u306ACookie",
|
|
13
|
-
none: "\u306A\u3057",
|
|
14
|
-
optional: "\u4EFB\u610F\u306Ecookies",
|
|
15
15
|
save: "\u4FDD\u5B58",
|
|
16
|
-
|
|
16
|
+
settingsUnsaved: "\u4FDD\u5B58\u3055\u308C\u3066\u3044\u306A\u3044\u8A2D\u5B9A\u304C\u3042\u308A\u307E\u3059"
|
|
17
17
|
};
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
export default {
|
|
2
|
+
accept: "Aanvaarden",
|
|
2
3
|
acceptAll: "Accepteer alles",
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
barTitle: "Cookies",
|
|
6
|
-
blockedIframe: "Om dit te kunnen bekijken dienen functionele cookies geaccepteerd te worden",
|
|
4
|
+
bannerDescription: "We gebruiken onze eigen cookies en third-party cookies om onze site te tonen en om te leren hoe deze gebruikt wordt, met het oog om de services die we verlenen te verbeteren. Door verder te gaan op onze site gaan we ervanuit dat hiermee akkoord gegaan wordt.",
|
|
5
|
+
bannerTitle: "Cookies",
|
|
7
6
|
close: "Sluiten",
|
|
7
|
+
cookiesFunctional: "Functionele cookies",
|
|
8
|
+
cookiesNecessary: "Noodzakelijke cookies",
|
|
9
|
+
cookiesOptional: "Optionele cookies",
|
|
10
|
+
decline: "Accepteer noodzakelijk",
|
|
8
11
|
declineAll: "Verwijder alles",
|
|
9
|
-
functional: "Functionele cookies",
|
|
10
12
|
here: "hier",
|
|
13
|
+
iframeBlocked: "Om dit te kunnen bekijken dienen functionele cookies geaccepteerd te worden",
|
|
11
14
|
manageCookies: "Beheer cookies",
|
|
12
|
-
necessary: "Noodzakelijke cookies",
|
|
13
|
-
none: "geen",
|
|
14
|
-
optional: "Optionele cookies",
|
|
15
15
|
save: "Opslaan",
|
|
16
|
-
|
|
16
|
+
settingsUnsaved: "Er zijn niet-opgeslagen instellingen"
|
|
17
17
|
};
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
export default {
|
|
2
|
+
accept: "Aksepterer",
|
|
2
3
|
acceptAll: "Godta alle",
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
barTitle: "Informasjonskapsler",
|
|
6
|
-
blockedIframe: "For \xE5 se dette, vennligst aktiver funksjonelle informasjonskapsler",
|
|
4
|
+
bannerDescription: "Vi bruker v\xE5re egne informasjonskapsler og tredjeparts informasjonskapsler, slik at vi kan vise deg dette nettstedet og bedre forst\xE5 hvordan du bruker det, med tanke p\xE5 \xE5 forbedre tjenestene vi tilbyr.",
|
|
5
|
+
bannerTitle: "Informasjonskapsler",
|
|
7
6
|
close: "Lukk",
|
|
7
|
+
cookiesFunctional: "Funksjonelle informasjonskapsler",
|
|
8
|
+
cookiesNecessary: "N\xF8dvendige informasjonskapsler",
|
|
9
|
+
cookiesOptional: "Valgfrie informasjonskapsler",
|
|
10
|
+
decline: "Jeg aksepterer det n\xF8dvendige",
|
|
8
11
|
declineAll: "Slett alle",
|
|
9
|
-
functional: "Funksjonelle informasjonskapsler",
|
|
10
12
|
here: "her",
|
|
13
|
+
iframeBlocked: "For \xE5 se dette, vennligst aktiver funksjonelle informasjonskapsler",
|
|
11
14
|
manageCookies: "Administrer informasjonskapsler",
|
|
12
|
-
necessary: "N\xF8dvendige informasjonskapsler",
|
|
13
|
-
none: "ingen",
|
|
14
|
-
optional: "Valgfrie informasjonskapsler",
|
|
15
15
|
save: "Lagre",
|
|
16
|
-
|
|
16
|
+
settingsUnsaved: "Du har ulagrede innstillinger"
|
|
17
17
|
};
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
export default {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
blockedIframe: "Para visualizar isto, por favor, active os cookies funcionais",
|
|
2
|
+
accept: "Aceitar todos",
|
|
3
|
+
acceptAll: "Aceitar",
|
|
4
|
+
bannerDescription: "N\xF3s utilizamos os nossos pr\xF3prios cookies e de terceiros para que possamos lhe mostrar este site e compreender a forma como o utiliza, de forma a melhorarmos os servi\xE7os que oferecemos. Ao continuar a navegar no site, consideramos que aceitou a utiliza\xE7\xE3o de cookies.",
|
|
5
|
+
bannerTitle: "Cookies",
|
|
7
6
|
close: "Fechar",
|
|
7
|
+
cookiesFunctional: "Cookies funcionais",
|
|
8
|
+
cookiesNecessary: "Cookies necess\xE1rios",
|
|
9
|
+
cookiesOptional: "Cookies opcionais",
|
|
10
|
+
decline: "Eu aceito o necess\xE1rio",
|
|
8
11
|
declineAll: "Apagar todos",
|
|
9
|
-
functional: "Cookies funcionais",
|
|
10
12
|
here: "aqui",
|
|
13
|
+
iframeBlocked: "Para visualizar isto, por favor, active os cookies funcionais",
|
|
11
14
|
manageCookies: "Gerir cookies",
|
|
12
|
-
necessary: "Cookies necess\xE1rios",
|
|
13
|
-
none: "Nenhum",
|
|
14
|
-
optional: "Cookies opcionais",
|
|
15
15
|
save: "Gravar",
|
|
16
|
-
|
|
16
|
+
settingsUnsaved: "Tem altera\xE7\xF5es n\xE3o guardadas"
|
|
17
17
|
};
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
export default {
|
|
2
|
+
accept: "\u041F\u0440\u0438\u043D\u0438\u043C\u0430\u0442\u044C",
|
|
2
3
|
acceptAll: "\u041F\u0440\u0438\u043D\u044F\u0442\u044C \u0432\u0441\u0435",
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
barTitle: "\u0424\u0430\u0439\u043B\u044B cookie",
|
|
6
|
-
blockedIframe: "\u0427\u0442\u043E\u0431\u044B \u044D\u0442\u043E \u0443\u0432\u0438\u0434\u0435\u0442\u044C, \u0432\u043A\u043B\u044E\u0447\u0438\u0442\u0435 \u0444\u0443\u043D\u043A\u0446\u0438\u043E\u043D\u0430\u043B\u044C\u043D\u044B\u0435 \u0444\u0430\u0439\u043B\u044B cookie",
|
|
4
|
+
bannerDescription: "\u041C\u044B \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0435\u043C \u043D\u0430\u0448\u0438 \u0441\u043E\u0431\u0441\u0442\u0432\u0435\u043D\u043D\u044B\u0435 \u0444\u0430\u0439\u043B\u044B cookie \u0438 \u0441\u0442\u043E\u0440\u043E\u043D\u043D\u0438\u0435 \u0444\u0430\u0439\u043B\u044B cookie, \u0447\u0442\u043E\u0431\u044B \u043C\u044B \u043C\u043E\u0433\u043B\u0438 \u043F\u043E\u043A\u0430\u0437\u0430\u0442\u044C \u0432\u0430\u043C \u044D\u0442\u043E\u0442 \u0432\u0435\u0431-\u0441\u0430\u0439\u0442 \u0438 \u043B\u0443\u0447\u0448\u0435 \u043F\u043E\u043D\u044F\u0442\u044C, \u043A\u0430\u043A \u0432\u044B \u0435\u0433\u043E \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0435\u0442\u0435, \u0441 \u0446\u0435\u043B\u044C\u044E \u0443\u043B\u0443\u0447\u0448\u0435\u043D\u0438\u044F \u043F\u0440\u0435\u0434\u043B\u0430\u0433\u0430\u0435\u043C\u044B\u0445 \u043D\u0430\u043C\u0438 \u0443\u0441\u043B\u0443\u0433. \u0415\u0441\u043B\u0438 \u0432\u044B \u043F\u0440\u043E\u0434\u043E\u043B\u0436\u0438\u0442\u0435 \u043F\u0440\u043E\u0441\u043C\u043E\u0442\u0440, \u043C\u044B \u0431\u0443\u0434\u0435\u043C \u0441\u0447\u0438\u0442\u0430\u0442\u044C, \u0447\u0442\u043E \u0432\u044B \u043F\u0440\u0438\u043D\u044F\u043B\u0438 \u0444\u0430\u0439\u043B\u044B cookie.",
|
|
5
|
+
bannerTitle: "\u0424\u0430\u0439\u043B\u044B cookie",
|
|
7
6
|
close: "\u0417\u0430\u043A\u0440\u044B\u0442\u044C",
|
|
7
|
+
cookiesFunctional: "\u0424\u0443\u043D\u043A\u0446\u0438\u043E\u043D\u0430\u043B\u044C\u043D\u044B\u0435 \u0444\u0430\u0439\u043B\u044B cookie",
|
|
8
|
+
cookiesNecessary: "\u041D\u0435\u043E\u0431\u0445\u043E\u0434\u0438\u043C\u044B\u0435 \u0444\u0430\u0439\u043B\u044B cookie",
|
|
9
|
+
cookiesOptional: "\u0414\u043E\u043F\u043E\u043B\u043D\u0438\u0442\u0435\u043B\u044C\u043D\u044B\u0435 \u0444\u0430\u0439\u043B\u044B cookie",
|
|
10
|
+
decline: "\u042F \u043F\u0440\u0438\u043D\u0438\u043C\u0430\u044E \u043D\u0435\u043E\u0431\u0445\u043E\u0434\u0438\u043C\u043E\u0435",
|
|
8
11
|
declineAll: "\u0423\u0434\u0430\u043B\u0438\u0442\u044C \u0432\u0441\u0435",
|
|
9
|
-
functional: "\u0424\u0443\u043D\u043A\u0446\u0438\u043E\u043D\u0430\u043B\u044C\u043D\u044B\u0435 \u0444\u0430\u0439\u043B\u044B cookie",
|
|
10
12
|
here: "\u0437\u0434\u0435\u0441\u044C",
|
|
13
|
+
iframeBlocked: "\u0427\u0442\u043E\u0431\u044B \u044D\u0442\u043E \u0443\u0432\u0438\u0434\u0435\u0442\u044C, \u0432\u043A\u043B\u044E\u0447\u0438\u0442\u0435 \u0444\u0443\u043D\u043A\u0446\u0438\u043E\u043D\u0430\u043B\u044C\u043D\u044B\u0435 \u0444\u0430\u0439\u043B\u044B cookie",
|
|
11
14
|
manageCookies: "\u0423\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u0435 \u0444\u0430\u0439\u043B\u0430\u043C\u0438 cookie",
|
|
12
|
-
necessary: "\u041D\u0435\u043E\u0431\u0445\u043E\u0434\u0438\u043C\u044B\u0435 \u0444\u0430\u0439\u043B\u044B cookie",
|
|
13
|
-
none: "\u043D\u0438\u043A\u0442\u043E",
|
|
14
|
-
optional: "\u0414\u043E\u043F\u043E\u043B\u043D\u0438\u0442\u0435\u043B\u044C\u043D\u044B\u0435 \u0444\u0430\u0439\u043B\u044B cookie",
|
|
15
15
|
save: "\u0421\u043E\u0445\u0440\u0430\u043D\u0438\u0442\u044C",
|
|
16
|
-
|
|
16
|
+
settingsUnsaved: "\u0423 \u0432\u0430\u0441 \u0435\u0441\u0442\u044C \u043D\u0435\u0441\u043E\u0445\u0440\u0430\u043D\u0435\u043D\u043D\u044B\u0435 \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438"
|
|
17
17
|
};
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
export default {
|
|
2
|
+
accept: "\u041F\u0440\u0438\u043D\u0438\u043C\u0430\u0442\u044C",
|
|
2
3
|
acceptAll: "\u041F\u0440\u0438\u0439\u043D\u044F\u0442\u0438 \u0443\u0441\u0456",
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
barTitle: "\u0424\u0430\u0439\u043B\u0438 cookie",
|
|
6
|
-
blockedIframe: "\u0429\u043E\u0431 \u043F\u043E\u0431\u0430\u0447\u0438\u0442\u0438 \u0446\u0435, \u0443\u0432\u0456\u043C\u043A\u043D\u0456\u0442\u044C \u0444\u0443\u043D\u043A\u0446\u0456\u043E\u043D\u0430\u043B\u044C\u043D\u0456 \u0444\u0430\u0439\u043B\u0438 cookie",
|
|
4
|
+
bannerDescription: "\u041C\u0438 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0454\u043C\u043E \u0432\u043B\u0430\u0441\u043D\u0456 \u0444\u0430\u0439\u043B\u0438 cookie \u0442\u0430 \u0441\u0442\u043E\u0440\u043E\u043D\u043D\u0456 \u0444\u0430\u0439\u043B\u0438 cookie, \u0449\u043E\u0431 \u043C\u0438 \u043C\u043E\u0433\u043B\u0438 \u043F\u043E\u043A\u0430\u0437\u0430\u0442\u0438 \u0432\u0430\u043C \u0446\u0435\u0439 \u0432\u0435\u0431-\u0441\u0430\u0439\u0442 \u0456 \u043A\u0440\u0430\u0449\u0435 \u0437\u0440\u043E\u0437\u0443\u043C\u0456\u0442\u0438, \u044F\u043A \u0432\u0438 \u043D\u0438\u043C \u043A\u043E\u0440\u0438\u0441\u0442\u0443\u0454\u0442\u0435\u0441\u044F, \u0437 \u043C\u0435\u0442\u043E\u044E \u043F\u043E\u043A\u0440\u0430\u0449\u0435\u043D\u043D\u044F \u043F\u0440\u043E\u043F\u043E\u043D\u043E\u0432\u0430\u043D\u0438\u0445 \u043D\u0430\u043C\u0438 \u043F\u043E\u0441\u043B\u0443\u0433. \u042F\u043A\u0449\u043E \u0432\u0438 \u043F\u0440\u043E\u0434\u043E\u0432\u0436\u0443\u0454\u0442\u0435 \u043F\u0435\u0440\u0435\u0433\u043B\u044F\u0434, \u043C\u0438 \u0432\u0432\u0430\u0436\u0430\u0454\u043C\u043E, \u0449\u043E \u0432\u0438 \u043F\u0440\u0438\u0439\u043D\u044F\u043B\u0438 \u0444\u0430\u0439\u043B\u0438 cookie.",
|
|
5
|
+
bannerTitle: "\u0424\u0430\u0439\u043B\u0438 cookie",
|
|
7
6
|
close: "\u0417\u0430\u043A\u0440\u0438\u0442\u0438",
|
|
7
|
+
cookiesFunctional: "\u0424\u0443\u043D\u043A\u0446\u0456\u043E\u043D\u0430\u043B\u044C\u043D\u0456 \u0444\u0430\u0439\u043B\u0438 cookie",
|
|
8
|
+
cookiesNecessary: "\u041D\u0435\u043E\u0431\u0445\u0456\u0434\u043D\u0456 \u0444\u0430\u0439\u043B\u0438 cookie",
|
|
9
|
+
cookiesOptional: "\u0424\u0430\u043A\u0443\u043B\u044C\u0442\u0430\u0442\u0438\u0432\u043D\u0456 \u0444\u0430\u0439\u043B\u0438 cookie",
|
|
10
|
+
decline: "\u041F\u0440\u0438\u0439\u043C\u0430\u044E \u043D\u0435\u043E\u0431\u0445\u0456\u0434\u043D\u0435",
|
|
8
11
|
declineAll: "\u0412\u0438\u0434\u0430\u043B\u0438\u0442\u0438 \u0443\u0441\u0456",
|
|
9
|
-
functional: "\u0424\u0443\u043D\u043A\u0446\u0456\u043E\u043D\u0430\u043B\u044C\u043D\u0456 \u0444\u0430\u0439\u043B\u0438 cookie",
|
|
10
12
|
here: "\u0442\u0443\u0442",
|
|
13
|
+
iframeBlocked: "\u0429\u043E\u0431 \u043F\u043E\u0431\u0430\u0447\u0438\u0442\u0438 \u0446\u0435, \u0443\u0432\u0456\u043C\u043A\u043D\u0456\u0442\u044C \u0444\u0443\u043D\u043A\u0446\u0456\u043E\u043D\u0430\u043B\u044C\u043D\u0456 \u0444\u0430\u0439\u043B\u0438 cookie",
|
|
11
14
|
manageCookies: "\u041A\u0435\u0440\u0443\u0432\u0430\u0442\u0438 \u0444\u0430\u0439\u043B\u0430\u043C\u0438 cookie",
|
|
12
|
-
necessary: "\u041D\u0435\u043E\u0431\u0445\u0456\u0434\u043D\u0456 \u0444\u0430\u0439\u043B\u0438 cookie",
|
|
13
|
-
none: "\u043D\u0435\u043C\u0430\u0454",
|
|
14
|
-
optional: "\u0424\u0430\u043A\u0443\u043B\u044C\u0442\u0430\u0442\u0438\u0432\u043D\u0456 \u0444\u0430\u0439\u043B\u0438 cookie",
|
|
15
15
|
save: "\u0417\u0431\u0435\u0440\u0435\u0433\u0442\u0438",
|
|
16
|
-
|
|
16
|
+
settingsUnsaved: "\u0423 \u0432\u0430\u0441 \u0454 \u043D\u0435\u0437\u0431\u0435\u0440\u0435\u0436\u0435\u043D\u0456 \u043D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u043D\u044F"
|
|
17
17
|
};
|
package/dist/runtime/types.d.ts
CHANGED
|
@@ -14,32 +14,33 @@ export interface Cookie {
|
|
|
14
14
|
targetCookieIds?: string[];
|
|
15
15
|
}
|
|
16
16
|
export interface LocaleStrings {
|
|
17
|
+
accept: string;
|
|
17
18
|
acceptAll: string;
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
barTitle: string;
|
|
21
|
-
blockedIframe: string;
|
|
19
|
+
bannerDescription: string;
|
|
20
|
+
bannerTitle: string;
|
|
22
21
|
close: string;
|
|
22
|
+
cookiesFunctional: string;
|
|
23
|
+
cookiesNecessary: string;
|
|
24
|
+
cookiesOptional: string;
|
|
25
|
+
iframeBlocked: string;
|
|
26
|
+
decline: string;
|
|
23
27
|
declineAll: string;
|
|
24
|
-
functional: string;
|
|
25
28
|
here: string;
|
|
26
29
|
manageCookies: string;
|
|
27
|
-
necessary: string;
|
|
28
|
-
none: string;
|
|
29
|
-
optional: string;
|
|
30
30
|
save: string;
|
|
31
|
-
|
|
31
|
+
settingsUnsaved: string;
|
|
32
32
|
}
|
|
33
33
|
export interface ModuleOptions {
|
|
34
34
|
barPosition?: 'top-left' | 'top-right' | 'top-full' | 'bottom-left' | 'bottom-right' | 'bottom-full';
|
|
35
35
|
colors?: false | Record<string, any>;
|
|
36
|
+
cookieExpiryOffsetMs: number;
|
|
37
|
+
cookieNameCookiesEnabledIds: string;
|
|
38
|
+
cookieNameIsConsentGiven: string;
|
|
36
39
|
cookies: {
|
|
37
40
|
necessary: Cookie[];
|
|
38
41
|
optional: Cookie[];
|
|
39
42
|
};
|
|
40
|
-
|
|
41
|
-
cookieNameIsConsentGiven: string;
|
|
42
|
-
cookieNameCookiesEnabledIds: string;
|
|
43
|
+
domain?: string;
|
|
43
44
|
isAcceptNecessaryButtonEnabled?: boolean;
|
|
44
45
|
isControlButtonEnabled?: boolean;
|
|
45
46
|
isCookieIdVisible?: boolean;
|
|
@@ -49,7 +50,6 @@ export interface ModuleOptions {
|
|
|
49
50
|
isIframeBlocked?: boolean | {
|
|
50
51
|
initialState: boolean;
|
|
51
52
|
};
|
|
52
|
-
domain?: string;
|
|
53
53
|
locales: Locale[];
|
|
54
54
|
localeTexts: PartialRecord<Locale, LocaleStrings>;
|
|
55
55
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dargmuesli/nuxt-cookie-control",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0-beta.1",
|
|
4
4
|
"description": "Nuxt Cookies Control Module",
|
|
5
5
|
"author": "Dario Ferderber <dario.ferderber@broj42.com>",
|
|
6
6
|
"maintainers": [
|
|
@@ -46,13 +46,13 @@
|
|
|
46
46
|
"@nuxt/module-builder": "0.2.1",
|
|
47
47
|
"@nuxtjs/eslint-config-typescript": "12.0.0",
|
|
48
48
|
"@types/js-cookie": "3.0.2",
|
|
49
|
-
"eslint": "8.
|
|
49
|
+
"eslint": "8.32.0",
|
|
50
50
|
"eslint-config-prettier": "8.6.0",
|
|
51
51
|
"eslint-plugin-prettier": "4.2.1",
|
|
52
52
|
"husky": "8.0.3",
|
|
53
53
|
"lint-staged": "13.1.0",
|
|
54
54
|
"nuxt": "3.0.0",
|
|
55
|
-
"prettier": "2.8.
|
|
55
|
+
"prettier": "2.8.3",
|
|
56
56
|
"typescript": "4.9.4",
|
|
57
57
|
"vue": "3.2.45",
|
|
58
58
|
"vue-tsc": "1.0.24",
|