@dargmuesli/nuxt-cookie-control 1.9.9 → 2.0.0-beta.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/LICENSE +21 -0
- package/README.md +206 -285
- package/dist/module.cjs +5 -0
- package/dist/module.d.ts +66 -0
- package/dist/module.json +8 -0
- package/dist/module.mjs +186 -0
- package/dist/runtime/components/CookieControl.vue +274 -0
- package/dist/runtime/components/CookieIframe.vue +39 -0
- package/dist/runtime/composables.d.ts +1 -0
- package/dist/runtime/composables.mjs +1 -0
- package/dist/runtime/constants.d.ts +2 -0
- package/dist/runtime/constants.mjs +2 -0
- package/dist/runtime/locale/ar.d.ts +3 -0
- package/dist/runtime/locale/ar.mjs +16 -0
- package/dist/runtime/locale/de.d.ts +3 -0
- package/dist/runtime/locale/de.mjs +16 -0
- package/dist/runtime/locale/en.d.ts +3 -0
- package/dist/runtime/locale/en.mjs +16 -0
- package/dist/runtime/locale/es.d.ts +3 -0
- package/dist/runtime/locale/es.mjs +16 -0
- package/dist/runtime/locale/fr.d.ts +3 -0
- package/dist/runtime/locale/fr.mjs +16 -0
- package/dist/runtime/locale/hr.d.ts +3 -0
- package/dist/runtime/locale/hr.mjs +16 -0
- package/dist/runtime/locale/hu.d.ts +3 -0
- package/dist/runtime/locale/hu.mjs +16 -0
- package/dist/runtime/locale/index.d.ts +1 -0
- package/dist/runtime/locale/index.mjs +15 -0
- package/dist/runtime/locale/it.d.ts +3 -0
- package/dist/runtime/locale/it.mjs +16 -0
- package/dist/runtime/locale/ja.d.ts +3 -0
- package/dist/runtime/locale/ja.mjs +16 -0
- package/dist/runtime/locale/nl.d.ts +3 -0
- package/dist/runtime/locale/nl.mjs +16 -0
- package/dist/runtime/locale/no.d.ts +3 -0
- package/dist/runtime/locale/no.mjs +16 -0
- package/dist/runtime/locale/pt.d.ts +3 -0
- package/dist/runtime/locale/pt.mjs +16 -0
- package/dist/runtime/locale/ru.d.ts +3 -0
- package/dist/runtime/locale/ru.mjs +16 -0
- package/dist/runtime/locale/uk.d.ts +3 -0
- package/dist/runtime/locale/uk.mjs +16 -0
- package/dist/runtime/methods.d.ts +16 -0
- package/dist/runtime/methods.mjs +117 -0
- package/dist/runtime/plugin.d.ts +2 -0
- package/dist/runtime/plugin.mjs +27 -0
- package/dist/runtime/styles.css +347 -0
- package/dist/runtime/types.d.ts +73 -0
- package/dist/runtime/types.mjs +66 -0
- package/dist/types.d.ts +6 -0
- package/package.json +60 -21
- package/components/CookieControl.vue +0 -182
- package/components/CookieIframe.vue +0 -32
- package/lib/module.js +0 -74
- package/lib/plugin.js +0 -206
- package/lib/postinstall.js +0 -1
- package/lib/styles.scss +0 -434
- package/locale/de.js +0 -15
- package/locale/en.js +0 -15
- package/locale/es.js +0 -15
- package/locale/fr.js +0 -15
- package/locale/hr.js +0 -15
- package/locale/hu.js +0 -15
- package/locale/it.js +0 -15
- package/locale/ja.js +0 -15
- package/locale/no.js +0 -16
- package/locale/pt.js +0 -15
- package/locale/ru.js +0 -15
- package/locale/uk.js +0 -15
package/lib/styles.scss
DELETED
|
@@ -1,434 +0,0 @@
|
|
|
1
|
-
//Transitions
|
|
2
|
-
.cookieControl__Modal-enter-active,
|
|
3
|
-
.cookieControl__Modal-leave-active {
|
|
4
|
-
transition: opacity .25s;
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
.cookieControl__Modal-enter,
|
|
8
|
-
.cookieControl__Modal-leave-to {
|
|
9
|
-
opacity: 0;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
.cookieControl__Bar--center{
|
|
13
|
-
top: 50%;
|
|
14
|
-
left: 50%;
|
|
15
|
-
transform: translate(-50%, -50%);
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
.cookieControl__Bar--center-enter-active,
|
|
19
|
-
.cookieControl__Bar--top-left-enter-active,
|
|
20
|
-
.cookieControl__Bar--top-full-enter-active,
|
|
21
|
-
.cookieControl__Bar--top-right-enter-active,
|
|
22
|
-
.cookieControl__Bar--bottom-left-enter-active,
|
|
23
|
-
.cookieControl__Bar--bottom-full-enter-active,
|
|
24
|
-
.cookieControl__Bar--bottom-right-enter-active,
|
|
25
|
-
.cookieControl__Bar--center-leave-active,
|
|
26
|
-
.cookieControl__Bar--top-left-leave-active,
|
|
27
|
-
.cookieControl__Bar--top-full-leave-active,
|
|
28
|
-
.cookieControl__Bar--top-right-leave-active,
|
|
29
|
-
.cookieControl__Bar--bottom-left-leave-active,
|
|
30
|
-
.cookieControl__Bar--bottom-full-leave-active,
|
|
31
|
-
.cookieControl__Bar--bottom-right-leave-active{
|
|
32
|
-
transition: transform .25s;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
.cookieControl__Bar--top-left-enter,
|
|
36
|
-
.cookieControl__Bar--top-full-enter,
|
|
37
|
-
.cookieControl__Bar--top-right-enter,
|
|
38
|
-
.cookieControl__Bar--top-left-leave-to,
|
|
39
|
-
.cookieControl__Bar--top-full-leave-to,
|
|
40
|
-
.cookieControl__Bar--top-right-leave-to{
|
|
41
|
-
transform: translateY(-100%);
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
.cookieControl__Bar--bottom-left-enter,
|
|
45
|
-
.cookieControl__Bar--bottom-full-enter,
|
|
46
|
-
.cookieControl__Bar--bottom-right-enter,
|
|
47
|
-
.cookieControl__Bar--bottom-left-leave-to,
|
|
48
|
-
.cookieControl__Bar--bottom-right-leave-to,
|
|
49
|
-
.cookieControl__Bar--bottom-full-leave-to{
|
|
50
|
-
transform: translateY(100%);
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
.cookieControl__Bar--center-enter,
|
|
54
|
-
.cookieControl__Bar--center-leave-to{
|
|
55
|
-
transform: translate(-50%, -50%) scale(0.95);
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
.cookieControl{
|
|
59
|
-
position: relative;
|
|
60
|
-
z-index: 100000;
|
|
61
|
-
button{
|
|
62
|
-
border: 0;
|
|
63
|
-
outline: 0;
|
|
64
|
-
font-size: 16px;
|
|
65
|
-
cursor: pointer;
|
|
66
|
-
padding: 12px 20px;
|
|
67
|
-
backface-visibility: hidden;
|
|
68
|
-
transition: background-color 200ms, color 200ms;
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
.cookieControl__Bar{
|
|
73
|
-
position: fixed;
|
|
74
|
-
background-color: var(--cookie-control-barBackground);
|
|
75
|
-
font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
|
|
76
|
-
h3, p{
|
|
77
|
-
color: var(--cookie-control-barTextColor);
|
|
78
|
-
max-width: 900px;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
h3{
|
|
82
|
-
margin: 0;
|
|
83
|
-
font-size: 20px;
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
p{
|
|
87
|
-
font-size: 16px;
|
|
88
|
-
margin: 5px 0 0;
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
button{
|
|
92
|
-
color: var(--cookie-control-barButtonColor);
|
|
93
|
-
background-color: var(--cookie-control-barButtonBackground);
|
|
94
|
-
&:hover{
|
|
95
|
-
color: var(--cookie-control-barButtonHoverColor);
|
|
96
|
-
background-color: var(--cookie-control-barButtonHoverBackground)
|
|
97
|
-
}
|
|
98
|
-
& + button{
|
|
99
|
-
margin-left: 10px;
|
|
100
|
-
}
|
|
101
|
-
}
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
.cookieControl__BarContainer{
|
|
105
|
-
display: flex;
|
|
106
|
-
padding: 20px;
|
|
107
|
-
align-items: flex-end;
|
|
108
|
-
justify-content: space-between;
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
.cookieControl__Bar--top-full,
|
|
112
|
-
.cookieControl__Bar--bottom-full{
|
|
113
|
-
left: 0;
|
|
114
|
-
right: 0;
|
|
115
|
-
}
|
|
116
|
-
|
|
117
|
-
.cookieControl__Bar--top-full{
|
|
118
|
-
top: 0;
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
.cookieControl__Bar--bottom-full{
|
|
122
|
-
bottom: 0;
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
.cookieControl__Bar--center,
|
|
126
|
-
.cookieControl__Bar--top-left,
|
|
127
|
-
.cookieControl__Bar--top-right,
|
|
128
|
-
.cookieControl__Bar--bottom-left,
|
|
129
|
-
.cookieControl__Bar--bottom-right{
|
|
130
|
-
p{
|
|
131
|
-
max-width: 400px;
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
.cookieControl__BarContainer{
|
|
135
|
-
flex-direction: column;
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
.cookieControl__BarButtons{
|
|
139
|
-
margin-top: 20px;
|
|
140
|
-
}
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
.cookieControl__Bar--top-left,
|
|
144
|
-
.cookieControl__Bar--top-right{
|
|
145
|
-
top: 20px;
|
|
146
|
-
}
|
|
147
|
-
|
|
148
|
-
.cookieControl__Bar--bottom-left,
|
|
149
|
-
.cookieControl__Bar--bottom-right{
|
|
150
|
-
bottom: 20px;
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
.cookieControl__Bar--top-left,
|
|
154
|
-
.cookieControl__Bar--bottom-left{
|
|
155
|
-
left: 20px;
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
.cookieControl__Bar--top-right,
|
|
159
|
-
.cookieControl__Bar--bottom-right{
|
|
160
|
-
right: 20px;
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
.cookieControl__BarButtons{
|
|
164
|
-
display: flex;
|
|
165
|
-
}
|
|
166
|
-
|
|
167
|
-
.cookieControl__Modal{
|
|
168
|
-
position: fixed;
|
|
169
|
-
top: 0;
|
|
170
|
-
left: 0;
|
|
171
|
-
right: 0;
|
|
172
|
-
bottom: 0;
|
|
173
|
-
z-index: 1;
|
|
174
|
-
font-size: 0;
|
|
175
|
-
text-align: center;
|
|
176
|
-
&:before{
|
|
177
|
-
content: "";
|
|
178
|
-
min-height: 100vh;
|
|
179
|
-
display: inline-block;
|
|
180
|
-
vertical-align: middle;
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
&:after{
|
|
184
|
-
position: absolute;
|
|
185
|
-
content: "";
|
|
186
|
-
top: 0;
|
|
187
|
-
left: 0;
|
|
188
|
-
right: 0;
|
|
189
|
-
bottom: 0;
|
|
190
|
-
z-index: -1;
|
|
191
|
-
opacity: var(--cookie-control-modalOverlayOpacity);
|
|
192
|
-
background-color: var(--cookie-control-modalOverlay);
|
|
193
|
-
}
|
|
194
|
-
|
|
195
|
-
& > div{
|
|
196
|
-
font-size: initial;
|
|
197
|
-
padding-top: 80px;
|
|
198
|
-
}
|
|
199
|
-
|
|
200
|
-
button{
|
|
201
|
-
color: var(--cookie-control-modalButtonColor);
|
|
202
|
-
background-color: var(--cookie-control-modalButtonBackground);
|
|
203
|
-
&:hover{
|
|
204
|
-
color: var(--cookie-control-modalButtonHoverColor);
|
|
205
|
-
background-color: var(--cookie-control-modalButtonHoverBackground)
|
|
206
|
-
}
|
|
207
|
-
}
|
|
208
|
-
}
|
|
209
|
-
|
|
210
|
-
.cookieControl__ModalContent{
|
|
211
|
-
position: relative;
|
|
212
|
-
width: 100%;
|
|
213
|
-
padding: 40px;
|
|
214
|
-
max-width: 550px;
|
|
215
|
-
max-height: 80vh;
|
|
216
|
-
text-align: left;
|
|
217
|
-
overflow-y: scroll;
|
|
218
|
-
display: inline-block;
|
|
219
|
-
vertical-align: middle;
|
|
220
|
-
color: var(--cookie-control-modalTextColor);
|
|
221
|
-
background-color: var(--cookie-control-modalBackground);
|
|
222
|
-
*{
|
|
223
|
-
&:not(button){
|
|
224
|
-
color: var(--cookie-control-modalTextColor);
|
|
225
|
-
}
|
|
226
|
-
}
|
|
227
|
-
|
|
228
|
-
h3{
|
|
229
|
-
font-size: 24px;
|
|
230
|
-
margin: 50px 0 25px;
|
|
231
|
-
&:first-of-type{
|
|
232
|
-
margin-top: 0;
|
|
233
|
-
}
|
|
234
|
-
}
|
|
235
|
-
|
|
236
|
-
ul{
|
|
237
|
-
padding: 0;
|
|
238
|
-
font-size: 16px;
|
|
239
|
-
list-style-type: none;
|
|
240
|
-
ul{
|
|
241
|
-
padding: 5px 56px 0;
|
|
242
|
-
li{
|
|
243
|
-
& + li{
|
|
244
|
-
margin-top: 5px;
|
|
245
|
-
}
|
|
246
|
-
}
|
|
247
|
-
}
|
|
248
|
-
}
|
|
249
|
-
|
|
250
|
-
li{
|
|
251
|
-
align-items: center;
|
|
252
|
-
& + li{
|
|
253
|
-
margin-top: 20px;
|
|
254
|
-
}
|
|
255
|
-
}
|
|
256
|
-
|
|
257
|
-
input{
|
|
258
|
-
display: none;
|
|
259
|
-
&:checked{
|
|
260
|
-
& + label{
|
|
261
|
-
background-color: var(--cookie-control-checkboxActiveBackground);
|
|
262
|
-
&:before{
|
|
263
|
-
background-color: var(--cookie-control-checkboxActiveCircleBackground);
|
|
264
|
-
transform: translate3d(100%, -50%, 0);
|
|
265
|
-
}
|
|
266
|
-
}
|
|
267
|
-
|
|
268
|
-
&:disabled{
|
|
269
|
-
& + label{
|
|
270
|
-
background-color: var(--cookie-control-checkboxDisabledBackground);
|
|
271
|
-
&:before{
|
|
272
|
-
background-color: var(--cookie-control-checkboxDisabledCircleBackground)
|
|
273
|
-
}
|
|
274
|
-
}
|
|
275
|
-
}
|
|
276
|
-
}
|
|
277
|
-
}
|
|
278
|
-
|
|
279
|
-
label{
|
|
280
|
-
position: relative;
|
|
281
|
-
min-width: 36px;
|
|
282
|
-
min-height: 20px;
|
|
283
|
-
font-size: 0;
|
|
284
|
-
display: block;
|
|
285
|
-
margin-right: 20px;
|
|
286
|
-
border-radius: 20px;
|
|
287
|
-
backface-visibility: hidden;
|
|
288
|
-
transition: background-color 200ms;
|
|
289
|
-
background-color: var(--cookie-control-checkboxInactiveBackground);
|
|
290
|
-
&:before{
|
|
291
|
-
position: absolute;
|
|
292
|
-
content: "";
|
|
293
|
-
top: 50%;
|
|
294
|
-
left: 3px;
|
|
295
|
-
width: 15px;
|
|
296
|
-
height: 15px;
|
|
297
|
-
border-radius: 50%;
|
|
298
|
-
transition: transform 200ms;
|
|
299
|
-
transform: translate3d(0, -50%, 0);
|
|
300
|
-
background-color: var(--cookie-control-checkboxInactiveCircleBackground);
|
|
301
|
-
}
|
|
302
|
-
}
|
|
303
|
-
}
|
|
304
|
-
|
|
305
|
-
.cookieControl__ModalInputWrapper{
|
|
306
|
-
display: flex;
|
|
307
|
-
align-items: flex-start;
|
|
308
|
-
}
|
|
309
|
-
|
|
310
|
-
.cookieControl__ModalCookieName{
|
|
311
|
-
font-weight: bold;
|
|
312
|
-
text-transform: uppercase;
|
|
313
|
-
span{
|
|
314
|
-
font-weight: normal;
|
|
315
|
-
text-transform: none;
|
|
316
|
-
}
|
|
317
|
-
}
|
|
318
|
-
|
|
319
|
-
.cookieControl__ModalClose{
|
|
320
|
-
position: absolute;
|
|
321
|
-
top: 20px;
|
|
322
|
-
right: 20px;
|
|
323
|
-
}
|
|
324
|
-
|
|
325
|
-
.cookieControl__ModalButtons{
|
|
326
|
-
display: flex;
|
|
327
|
-
margin-top: 80px;
|
|
328
|
-
align-items: flex-start;
|
|
329
|
-
button{
|
|
330
|
-
& + button{
|
|
331
|
-
margin-left: 20px;
|
|
332
|
-
}
|
|
333
|
-
}
|
|
334
|
-
}
|
|
335
|
-
|
|
336
|
-
.cookieControl__ModalUnsaved{
|
|
337
|
-
position: absolute;
|
|
338
|
-
left: 50%;
|
|
339
|
-
bottom: 40px;
|
|
340
|
-
margin: 0;
|
|
341
|
-
color: var(--cookie-control-modalUnsavedColor);
|
|
342
|
-
font-size: 14px;
|
|
343
|
-
transform: translateX(-50%);
|
|
344
|
-
}
|
|
345
|
-
|
|
346
|
-
.cookieControl__BlockedIframe{
|
|
347
|
-
padding: 20px;
|
|
348
|
-
border: 2px solid #ddd;
|
|
349
|
-
p, a{
|
|
350
|
-
font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
|
|
351
|
-
}
|
|
352
|
-
}
|
|
353
|
-
|
|
354
|
-
@media screen and (max-width: 768px){
|
|
355
|
-
.cookieControl__Bar{
|
|
356
|
-
flex-direction: column;
|
|
357
|
-
left: 0;
|
|
358
|
-
right: 0;
|
|
359
|
-
p, h3{
|
|
360
|
-
max-width: 100%;
|
|
361
|
-
}
|
|
362
|
-
}
|
|
363
|
-
|
|
364
|
-
.cookieControl__Bar--top-full,
|
|
365
|
-
.cookieControl__Bar--top-left,
|
|
366
|
-
.cookieControl__Bar--top-right{
|
|
367
|
-
top: 0;
|
|
368
|
-
}
|
|
369
|
-
|
|
370
|
-
.cookieControl__Bar--bottom-full,
|
|
371
|
-
.cookieControl__Bar--bottom-left,
|
|
372
|
-
.cookieControl__Bar--bottom-right{
|
|
373
|
-
bottom: 0;
|
|
374
|
-
}
|
|
375
|
-
|
|
376
|
-
.cookieControl__ModalContent{
|
|
377
|
-
position: absolute;
|
|
378
|
-
top: 0;
|
|
379
|
-
left: 0;
|
|
380
|
-
right: 0;
|
|
381
|
-
bottom: 0;
|
|
382
|
-
max-width: none;
|
|
383
|
-
max-height: 100%;
|
|
384
|
-
padding: 80px 20px 20px;
|
|
385
|
-
}
|
|
386
|
-
|
|
387
|
-
.cookieControl__BarButtons{
|
|
388
|
-
width: 100%;
|
|
389
|
-
margin-top: 20px;
|
|
390
|
-
justify-content: flex-end;
|
|
391
|
-
}
|
|
392
|
-
|
|
393
|
-
.cookieControl__BarContainer{
|
|
394
|
-
flex-direction: column;
|
|
395
|
-
}
|
|
396
|
-
}
|
|
397
|
-
|
|
398
|
-
.cookieControl__ControlButton{
|
|
399
|
-
position: fixed;
|
|
400
|
-
right: 20px;
|
|
401
|
-
bottom: 20px;
|
|
402
|
-
border: 0;
|
|
403
|
-
outline: 0;
|
|
404
|
-
width: 40px;
|
|
405
|
-
height: 40px;
|
|
406
|
-
cursor: pointer;
|
|
407
|
-
min-width: 40px;
|
|
408
|
-
min-height: 40px;
|
|
409
|
-
border-radius: 50%;
|
|
410
|
-
backface-visibility: hidden;
|
|
411
|
-
transition: background-color 200ms;
|
|
412
|
-
box-shadow: 0 0 10px rgba(0,0,0,0.3);
|
|
413
|
-
background: var(--cookie-control-controlButtonBackground);
|
|
414
|
-
svg{
|
|
415
|
-
position: absolute;
|
|
416
|
-
top: 50%;
|
|
417
|
-
left: 50%;
|
|
418
|
-
min-width: 24px;
|
|
419
|
-
min-height: 24px;
|
|
420
|
-
max-width: 24px;
|
|
421
|
-
max-height: 24px;
|
|
422
|
-
transition: color 200ms;
|
|
423
|
-
backface-visibility: hidden;
|
|
424
|
-
transform: translate(-50%, -50%);
|
|
425
|
-
color: var(--cookie-control-controlButtonIconColor);
|
|
426
|
-
}
|
|
427
|
-
|
|
428
|
-
&:hover{
|
|
429
|
-
background-color: var(--cookie-control-controlButtonHoverBackground);
|
|
430
|
-
svg{
|
|
431
|
-
color: var(--cookie-control-controlButtonIconHoverColor);
|
|
432
|
-
}
|
|
433
|
-
}
|
|
434
|
-
}
|
package/locale/de.js
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
export default {
|
|
2
|
-
barTitle: 'Cookies',
|
|
3
|
-
barDescription: 'Wir verwenden unsere eigenen Cookies und Cookies von Drittanbietern, damit wir Ihnen diese Website zeigen können und verstehen wie Sie diese verwenden, um die von uns angebotenen Dienstleistungen zu verbessern. Wenn Sie weiter surfen, gehen wir davon aus, dass Sie die Cookies akzeptiert haben.',
|
|
4
|
-
acceptAll: 'Alle akzeptieren',
|
|
5
|
-
declineAll: 'Alle ablehnen',
|
|
6
|
-
manageCookies: 'Cookies verwalten',
|
|
7
|
-
unsaved: 'Sie haben nicht gespeicherte Einstellungen',
|
|
8
|
-
close: 'Schließen',
|
|
9
|
-
save: 'Speichern',
|
|
10
|
-
necessary: 'Notwendige Cookies',
|
|
11
|
-
optional: 'Optionale Cookies',
|
|
12
|
-
functional: 'Funktionale Cookies',
|
|
13
|
-
blockedIframe: 'Um den Inhalt zu sehen, aktivieren Sie bitte funktionale Cookies',
|
|
14
|
-
here: 'hier'
|
|
15
|
-
}
|
package/locale/en.js
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
export default {
|
|
2
|
-
barTitle: 'Cookies',
|
|
3
|
-
barDescription: 'We use our own cookies and third-party cookies so that we can show you this website and better understand how you use it, with a view to improving the services we offer. If you continue browsing, we consider that you have accepted the cookies.',
|
|
4
|
-
acceptAll: 'Accept all',
|
|
5
|
-
declineAll: 'Delete all',
|
|
6
|
-
manageCookies: 'Manage cookies',
|
|
7
|
-
unsaved: 'You have unsaved settings',
|
|
8
|
-
close: 'Close',
|
|
9
|
-
save: 'Save',
|
|
10
|
-
necessary: 'Necessary cookies',
|
|
11
|
-
optional: 'Optional cookies',
|
|
12
|
-
functional: 'Functional cookies',
|
|
13
|
-
blockedIframe: 'To see this, please enable functional cookies',
|
|
14
|
-
here: 'here'
|
|
15
|
-
}
|
package/locale/es.js
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
export default {
|
|
2
|
-
barTitle: 'Cookies',
|
|
3
|
-
barDescription: 'Utilizamos cookies propias y de terceros para poder mostrarle una página web y comprender cómo la utiliza, con el fin de mejorar los servicios que ofrecemos. Si continúa navegando, consideramos que acepta su uso.',
|
|
4
|
-
acceptAll: 'Aceptar todo',
|
|
5
|
-
declineAll: 'Borrar todo',
|
|
6
|
-
manageCookies: 'Administrar cookies',
|
|
7
|
-
unsaved: 'Tienes configuraciones no guardadas',
|
|
8
|
-
close: 'Cerrar',
|
|
9
|
-
save: 'Guardar',
|
|
10
|
-
necessary: 'Cookies obligatorias',
|
|
11
|
-
optional: 'Cookies opcionales',
|
|
12
|
-
functional: 'Cookies funcionales',
|
|
13
|
-
blockedIframe: 'Para ver esto, por favor habilita las cookies funcionales.',
|
|
14
|
-
here: 'aquí'
|
|
15
|
-
}
|
package/locale/fr.js
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
export default {
|
|
2
|
-
barTitle: "Cookies",
|
|
3
|
-
barDescription: "Nous utilisons des cookies d’origine et des cookies tiers. Ces cookies sont destinés à vous offrir une navigation optimisée sur ce site web et de nous donner un aperçu de son utilisation, en vue de l’amélioration des services que nous offrons. En poursuivant votre navigation, nous considérons que vous acceptez l’usage des cookies.",
|
|
4
|
-
acceptAll: "Tout accepter",
|
|
5
|
-
declineAll: "Tout refuser",
|
|
6
|
-
manageCookies: "Gérer les cookies",
|
|
7
|
-
unsaved: "Vous avez des paramètres non sauvegardés",
|
|
8
|
-
close: "Fermer",
|
|
9
|
-
save: "Sauvegarder",
|
|
10
|
-
necessary: "Les cookies obligatoires",
|
|
11
|
-
optional: "Les cookies optionnels",
|
|
12
|
-
functional: "Cookies fonctionnels",
|
|
13
|
-
blockedIframe: "Pour voir cela, veuillez activer les cookies fonctionnels",
|
|
14
|
-
here: "ici",
|
|
15
|
-
};
|
package/locale/hr.js
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
export default {
|
|
2
|
-
barTitle: 'Kolačići',
|
|
3
|
-
barDescription: 'Koristimo vlastite kolačiće i kolačiće treće strane kako bismo Vam mogli prikazati web stranicu i razumijeti kako je koristite, s pogledom na poboljšanje usluga koje nudimo. Ako nastavite s pregledavanjem, smatramo da prihvaćate upotrebu kolačića.',
|
|
4
|
-
acceptAll: 'Dozvoli sve',
|
|
5
|
-
declineAll: 'Obriši sve',
|
|
6
|
-
manageCookies: 'Upravljaj kolačićima',
|
|
7
|
-
unsaved: 'Imate nespremljenih postavki',
|
|
8
|
-
close: 'Zatvori',
|
|
9
|
-
save: 'Spremi',
|
|
10
|
-
necessary: 'Obavezni kolačići',
|
|
11
|
-
optional: 'Neobavezni kolačići',
|
|
12
|
-
functional: 'Funkcionalni kolačići',
|
|
13
|
-
blockedIframe: 'Da bi vidjeli ovo, molimo Vas omogućite funkcionalne kolačiće',
|
|
14
|
-
here: 'ovdje'
|
|
15
|
-
}
|
package/locale/hu.js
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
export default {
|
|
2
|
-
barTitle: 'Sütik',
|
|
3
|
-
barDescription: 'Saját, illetve harmadik féltől származó sütiket használunk annak érdekében, hogy megmutassuk ezt a weboldalt, és jobban megértsük, hogyan használja azt, azzal a céllal, hogy javítsuk az általunk kínált szolgáltatásokat. Ha folytatod a böngészést, úgy gondoljuk, hogy elfogadtad a sütiket.',
|
|
4
|
-
acceptAll: 'Összes elfogadása',
|
|
5
|
-
declineAll: 'Összes elutasítása',
|
|
6
|
-
manageCookies: 'Sütikk kezelése',
|
|
7
|
-
unsaved: 'Mentés nélküli beállítások vannak',
|
|
8
|
-
close: 'Bezár',
|
|
9
|
-
save: 'Mentés',
|
|
10
|
-
necessary: 'Szükséges sütikk',
|
|
11
|
-
optional: 'Opcionális sütik',
|
|
12
|
-
functional: 'Funkcionális sütik',
|
|
13
|
-
blockedIframe: 'Ennek megtekintéséhez, engedélyezd a funkcionális sütik használatát',
|
|
14
|
-
here: 'itt'
|
|
15
|
-
}
|
package/locale/it.js
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
export default {
|
|
2
|
-
barTitle: 'Cookies',
|
|
3
|
-
barDescription: 'Utilizziamo cookie propri e di terzi per mostrarvi la pagina web e capire come la utilizzate, nonché per migliorare i servizi che offriamo. Se continuate a navigare, consideriamo che accettate il loro utilizzo.',
|
|
4
|
-
acceptAll: 'Accetta tutto',
|
|
5
|
-
declineAll: 'Cancella tutto',
|
|
6
|
-
manageCookies: 'Gestisci i cookie',
|
|
7
|
-
unsaved: 'Ci sono impostazioni non salvate',
|
|
8
|
-
close: 'Chiudi',
|
|
9
|
-
save: 'Salva',
|
|
10
|
-
necessary: 'Cookie necessari',
|
|
11
|
-
optional: 'Cookie opzionali',
|
|
12
|
-
functional: 'Cookie funzionali',
|
|
13
|
-
blockedIframe: 'Per vedere questo, si prega di abilitare i cookie funzionali',
|
|
14
|
-
here: 'qui'
|
|
15
|
-
}
|
package/locale/ja.js
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
export default {
|
|
2
|
-
barTitle: 'Cookie',
|
|
3
|
-
barDescription: '当サイトでは、サービス改善を目的として当サイト及び第三者が提供するCookieを使用することにより、利用者に当サイトを表示させるとともに、利用者がどのようにサイトを利用しているかをより十分に把握することが可能となっています。このまま閲覧を続けると、Cookieの利用について同意したとみなされます。',
|
|
4
|
-
acceptAll: '全て同意',
|
|
5
|
-
declineAll: '全て削除',
|
|
6
|
-
manageCookies: 'Cookieを管理',
|
|
7
|
-
unsaved: '保存されていない設定があります',
|
|
8
|
-
close: '閉じる',
|
|
9
|
-
save: '保存',
|
|
10
|
-
necessary: '不可欠なCookie',
|
|
11
|
-
optional: '任意のcookies',
|
|
12
|
-
functional: '機能性Cookie',
|
|
13
|
-
blockedIframe: 'ここを表示するには、機能性Cookieを有効にしてください:',
|
|
14
|
-
here: '設定'
|
|
15
|
-
}
|
package/locale/no.js
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
export default {
|
|
3
|
-
barTitle: 'Informasjonskapsler',
|
|
4
|
-
barDescription: 'Vi bruker våre egne informasjonskapsler og tredjeparts informasjonskapsler, slik at vi kan vise deg dette nettstedet og bedre forstå hvordan du bruker det, med tanke på å forbedre tjenestene vi tilbyr.',
|
|
5
|
-
acceptAll: 'Godta alle',
|
|
6
|
-
declineAll: 'Slett alle',
|
|
7
|
-
manageCookies: 'Administrer informasjonskapsler',
|
|
8
|
-
unsaved: 'Du har ulagrede innstillinger',
|
|
9
|
-
close: 'Lukk',
|
|
10
|
-
save: 'Lagre',
|
|
11
|
-
necessary: 'Nødvendige informasjonskapsler',
|
|
12
|
-
optional: 'Valgfrie informasjonskapsler',
|
|
13
|
-
functional: 'Funksjonelle informasjonskapsler',
|
|
14
|
-
blockedIframe: 'For å se dette, vennligst aktiver funksjonelle informasjonskapsler',
|
|
15
|
-
here: 'her'
|
|
16
|
-
}
|
package/locale/pt.js
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
export default {
|
|
2
|
-
barTitle: 'Cookies',
|
|
3
|
-
barDescription: 'Nós utilizamos os nossos próprios cookies e de terceiros para que possamos lhe mostrar este site e compreender a forma como o utiliza, de forma a melhorarmos os serviços que oferecemos. Ao continuar a navegar no site, consideramos que aceitou a utilização de cookies.',
|
|
4
|
-
acceptAll: 'Aceitar todos',
|
|
5
|
-
declineAll: 'Apagar todos',
|
|
6
|
-
manageCookies: 'Gerir cookies',
|
|
7
|
-
unsaved: 'Tem alterações não guardadas',
|
|
8
|
-
close: 'Fechar',
|
|
9
|
-
save: 'Gravar',
|
|
10
|
-
necessary: 'Cookies necessários',
|
|
11
|
-
optional: 'Cookies opcionais',
|
|
12
|
-
functional: 'Cookies funcionais',
|
|
13
|
-
blockedIframe: 'Para visualizar isto, por favor, active os cookies funcionais',
|
|
14
|
-
here: 'aqui'
|
|
15
|
-
}
|
package/locale/ru.js
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
export default {
|
|
2
|
-
barTitle: 'Файлы cookie',
|
|
3
|
-
barDescription: 'Мы используем наши собственные файлы cookie и сторонние файлы cookie, чтобы мы могли показать вам этот веб-сайт и лучше понять, как вы его используете, с целью улучшения предлагаемых нами услуг. Если вы продолжите просмотр, мы будем считать, что вы приняли файлы cookie.',
|
|
4
|
-
acceptAll: 'Принять все',
|
|
5
|
-
declineAll: 'Удалить все',
|
|
6
|
-
manageCookies: 'Управление файлами cookie',
|
|
7
|
-
unsaved: 'У вас есть несохраненные настройки',
|
|
8
|
-
close: 'Закрыть',
|
|
9
|
-
save: 'Сохранить',
|
|
10
|
-
necessary: 'Необходимые файлы cookie',
|
|
11
|
-
optional: 'Дополнительные файлы cookie',
|
|
12
|
-
functional: 'Функциональные файлы cookie',
|
|
13
|
-
blockedIframe: 'Чтобы это увидеть, включите функциональные файлы cookie',
|
|
14
|
-
here: 'здесь'
|
|
15
|
-
}
|
package/locale/uk.js
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
export default {
|
|
2
|
-
barTitle: 'Файли cookie',
|
|
3
|
-
barDescription: 'Ми використовуємо власні файли cookie та сторонні файли cookie, щоб ми могли показати вам цей веб-сайт і краще зрозуміти, як ви ним користуєтеся, з метою покращення пропонованих нами послуг. Якщо ви продовжуєте перегляд, ми вважаємо, що ви прийняли файли cookie.',
|
|
4
|
-
acceptAll: 'Прийняти усі',
|
|
5
|
-
declineAll: 'Видалити усі',
|
|
6
|
-
manageCookies: 'Керувати файлами cookie',
|
|
7
|
-
unsaved: 'У вас є незбережені налаштування',
|
|
8
|
-
close: 'Закрити',
|
|
9
|
-
save: 'Зберегти',
|
|
10
|
-
necessary: 'Необхідні файли cookie',
|
|
11
|
-
optional: 'Факультативні файли cookie',
|
|
12
|
-
functional: 'Функціональні файли cookie',
|
|
13
|
-
blockedIframe: 'Щоб побачити це, увімкніть функціональні файли cookie',
|
|
14
|
-
here: 'тут'
|
|
15
|
-
}
|