@dargmuesli/nuxt-cookie-control 5.7.1 → 5.8.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.
Files changed (105) hide show
  1. package/README.md +1 -1
  2. package/dist/module.d.ts +2 -59
  3. package/dist/module.json +1 -1
  4. package/dist/module.mjs +4 -167
  5. package/dist/runtime/composables.ts +5 -0
  6. package/dist/runtime/constants.ts +3 -0
  7. package/dist/runtime/locale/ar.ts +20 -0
  8. package/dist/runtime/locale/az.ts +20 -0
  9. package/dist/runtime/locale/bg.ts +21 -0
  10. package/dist/runtime/locale/cs.ts +20 -0
  11. package/dist/runtime/locale/da.ts +20 -0
  12. package/dist/runtime/locale/de.ts +21 -0
  13. package/dist/runtime/locale/en.ts +20 -0
  14. package/dist/runtime/locale/es.ts +20 -0
  15. package/dist/runtime/locale/fi.ts +21 -0
  16. package/dist/runtime/locale/fr.ts +20 -0
  17. package/dist/runtime/locale/hr.ts +21 -0
  18. package/dist/runtime/locale/hu.ts +21 -0
  19. package/dist/runtime/locale/index.ts +55 -0
  20. package/dist/runtime/locale/it.ts +20 -0
  21. package/dist/runtime/locale/ja.ts +20 -0
  22. package/dist/runtime/locale/ko.ts +20 -0
  23. package/dist/runtime/locale/lt.ts +20 -0
  24. package/dist/runtime/locale/nl.ts +21 -0
  25. package/dist/runtime/locale/no.ts +21 -0
  26. package/dist/runtime/locale/oc.ts +20 -0
  27. package/dist/runtime/locale/pl.ts +21 -0
  28. package/dist/runtime/locale/pt.ts +21 -0
  29. package/dist/runtime/locale/ru.ts +20 -0
  30. package/dist/runtime/locale/sk.ts +20 -0
  31. package/dist/runtime/locale/sv.ts +21 -0
  32. package/dist/runtime/locale/tr.ts +20 -0
  33. package/dist/runtime/locale/uk.ts +20 -0
  34. package/dist/runtime/methods.ts +49 -0
  35. package/dist/runtime/plugin.ts +51 -0
  36. package/dist/runtime/set-vars/{native.mjs → native.ts} +2 -2
  37. package/dist/runtime/set-vars/ponyfill.ts +5 -0
  38. package/dist/runtime/types.ts +156 -0
  39. package/dist/types.d.ts +15 -1
  40. package/package.json +12 -6
  41. package/dist/runtime/composables.d.ts +0 -2
  42. package/dist/runtime/composables.mjs +0 -2
  43. package/dist/runtime/constants.d.ts +0 -2
  44. package/dist/runtime/constants.mjs +0 -1
  45. package/dist/runtime/locale/ar.d.ts +0 -3
  46. package/dist/runtime/locale/ar.mjs +0 -17
  47. package/dist/runtime/locale/az.d.ts +0 -3
  48. package/dist/runtime/locale/az.mjs +0 -17
  49. package/dist/runtime/locale/cs.d.ts +0 -3
  50. package/dist/runtime/locale/cs.mjs +0 -17
  51. package/dist/runtime/locale/da.d.ts +0 -3
  52. package/dist/runtime/locale/da.mjs +0 -17
  53. package/dist/runtime/locale/de.d.ts +0 -3
  54. package/dist/runtime/locale/de.mjs +0 -17
  55. package/dist/runtime/locale/en.d.ts +0 -3
  56. package/dist/runtime/locale/en.mjs +0 -17
  57. package/dist/runtime/locale/es.d.ts +0 -3
  58. package/dist/runtime/locale/es.mjs +0 -17
  59. package/dist/runtime/locale/fi.d.ts +0 -3
  60. package/dist/runtime/locale/fi.mjs +0 -17
  61. package/dist/runtime/locale/fr.d.ts +0 -3
  62. package/dist/runtime/locale/fr.mjs +0 -17
  63. package/dist/runtime/locale/hr.d.ts +0 -3
  64. package/dist/runtime/locale/hr.mjs +0 -17
  65. package/dist/runtime/locale/hu.d.ts +0 -3
  66. package/dist/runtime/locale/hu.mjs +0 -17
  67. package/dist/runtime/locale/index.d.ts +0 -1
  68. package/dist/runtime/locale/index.mjs +0 -52
  69. package/dist/runtime/locale/it.d.ts +0 -3
  70. package/dist/runtime/locale/it.mjs +0 -17
  71. package/dist/runtime/locale/ja.d.ts +0 -3
  72. package/dist/runtime/locale/ja.mjs +0 -17
  73. package/dist/runtime/locale/ko.d.ts +0 -3
  74. package/dist/runtime/locale/ko.mjs +0 -17
  75. package/dist/runtime/locale/lt.d.ts +0 -3
  76. package/dist/runtime/locale/lt.mjs +0 -17
  77. package/dist/runtime/locale/nl.d.ts +0 -3
  78. package/dist/runtime/locale/nl.mjs +0 -17
  79. package/dist/runtime/locale/no.d.ts +0 -3
  80. package/dist/runtime/locale/no.mjs +0 -17
  81. package/dist/runtime/locale/oc.d.ts +0 -3
  82. package/dist/runtime/locale/oc.mjs +0 -17
  83. package/dist/runtime/locale/pl.d.ts +0 -3
  84. package/dist/runtime/locale/pl.mjs +0 -17
  85. package/dist/runtime/locale/pt.d.ts +0 -3
  86. package/dist/runtime/locale/pt.mjs +0 -17
  87. package/dist/runtime/locale/ru.d.ts +0 -3
  88. package/dist/runtime/locale/ru.mjs +0 -17
  89. package/dist/runtime/locale/sk.d.ts +0 -3
  90. package/dist/runtime/locale/sk.mjs +0 -17
  91. package/dist/runtime/locale/sv.d.ts +0 -3
  92. package/dist/runtime/locale/sv.mjs +0 -17
  93. package/dist/runtime/locale/tr.d.ts +0 -3
  94. package/dist/runtime/locale/tr.mjs +0 -17
  95. package/dist/runtime/locale/uk.d.ts +0 -3
  96. package/dist/runtime/locale/uk.mjs +0 -17
  97. package/dist/runtime/methods.d.ts +0 -9
  98. package/dist/runtime/methods.mjs +0 -25
  99. package/dist/runtime/plugin.d.ts +0 -2
  100. package/dist/runtime/plugin.mjs +0 -40
  101. package/dist/runtime/set-vars/native.d.ts +0 -1
  102. package/dist/runtime/set-vars/ponyfill.d.ts +0 -1
  103. package/dist/runtime/set-vars/ponyfill.mjs +0 -4
  104. package/dist/runtime/types.d.ts +0 -66
  105. package/dist/runtime/types.mjs +0 -57
package/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
  ![Nuxt Cookie Control](https://drive.google.com/a/broj42.com/uc?id=1FGQVyj2s0OT-gpTYxH_FuQhe6oU9iejW)
5
5
 
6
6
 
7
- ✅ Translated for: ar, az, cs, da, de, en, es, fi, fr, hr, hu, it, ja, ko, lt, nl, no, oc, pt, pl, ru, sk, sv, tr and uk
7
+ ✅ Translated for: ar, az, bg, cs, da, de, en, es, fi, fr, hr, hu, it, ja, ko, lt, nl, no, oc, pt, pl, ru, sk, sv, tr and uk
8
8
 
9
9
  ✅ Vue 3 support
10
10
 
package/dist/module.d.ts CHANGED
@@ -1,59 +1,2 @@
1
- import * as _nuxt_schema from '@nuxt/schema';
2
-
3
- type Locale = 'ar' | 'az' | 'cs' | 'da' | 'de' | 'en' | 'es' | 'fi' | 'fr' | 'hr' | 'hu' | 'it' | 'ja' | 'ko' | 'lt' | 'nl' | 'no' | 'oc' | 'pt' | 'pl' | 'ru' | 'sk' | 'sv' | 'tr' | 'uk';
4
- type PartialRecord<K extends keyof any, T> = Partial<Record<K, T>>;
5
- type Translatable = string | PartialRecord<Locale, string>;
6
- interface Cookie {
7
- description?: Translatable;
8
- id?: string;
9
- name: Translatable;
10
- links?: Record<string, string | null>;
11
- src?: string;
12
- targetCookieIds?: string[];
13
- }
14
- interface LocaleStrings {
15
- accept: string;
16
- acceptAll: string;
17
- bannerDescription: string;
18
- bannerTitle: string;
19
- close: string;
20
- cookiesFunctional: string;
21
- cookiesNecessary: string;
22
- cookiesOptional: string;
23
- iframeBlocked: string;
24
- decline: string;
25
- declineAll: string;
26
- here: string;
27
- manageCookies: string;
28
- save: string;
29
- settingsUnsaved: string;
30
- }
31
- interface ModuleOptions {
32
- barPosition: 'top-left' | 'top-right' | 'top-full' | 'bottom-left' | 'bottom-right' | 'bottom-full';
33
- closeModalOnClickOutside: boolean;
34
- colors: false | Record<string, any>;
35
- cookieExpiryOffsetMs: number;
36
- cookieNameCookiesEnabledIds: string;
37
- cookieNameIsConsentGiven: string;
38
- cookies: {
39
- necessary: Cookie[];
40
- optional: Cookie[];
41
- };
42
- domain: string;
43
- isAcceptNecessaryButtonEnabled: boolean;
44
- isControlButtonEnabled: boolean;
45
- isCookieIdVisible: boolean;
46
- isCssEnabled: boolean;
47
- isCssPonyfillEnabled: boolean;
48
- isDashInDescriptionEnabled: boolean;
49
- isIframeBlocked: boolean | {
50
- initialState: boolean;
51
- };
52
- isModalForced: boolean;
53
- locales: Locale[];
54
- localeTexts: PartialRecord<Locale, Partial<LocaleStrings>>;
55
- }
56
-
57
- declare const _default: _nuxt_schema.NuxtModule<ModuleOptions>;
58
-
59
- export { _default as default };
1
+ export * from "/home/runner/work/nuxt-cookie-control/nuxt-cookie-control/src/module";
2
+ export { default } from "/home/runner/work/nuxt-cookie-control/nuxt-cookie-control/src/module";
package/dist/module.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dargmuesli/nuxt-cookie-control",
3
- "version": "5.7.1",
3
+ "version": "5.8.1",
4
4
  "configKey": "cookieControl",
5
5
  "compatibility": {
6
6
  "nuxt": "^3.0.0"
package/dist/module.mjs CHANGED
@@ -1,169 +1,6 @@
1
- import { resolve } from 'node:path';
2
- import { pathToFileURL } from 'node:url';
3
- import { createResolver, defineNuxtModule, addPlugin, addImports, addTemplate, extendWebpackConfig, resolvePath } from '@nuxt/kit';
1
+ import jiti from "file:///home/runner/work/nuxt-cookie-control/nuxt-cookie-control/node_modules/.pnpm/jiti@1.18.2/node_modules/jiti/lib/index.js";
4
2
 
5
- const name = "@dargmuesli/nuxt-cookie-control";
6
- const version = "5.7.1";
3
+ /** @type {import("/home/runner/work/nuxt-cookie-control/nuxt-cookie-control/src/module")} */
4
+ const _module = jiti(null, { interopDefault: true, esmResolve: true })("/home/runner/work/nuxt-cookie-control/nuxt-cookie-control/src/module.ts");
7
5
 
8
- const en = {
9
- accept: "Accept",
10
- acceptAll: "Accept all",
11
- 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.",
12
- bannerTitle: "Cookies",
13
- close: "Close",
14
- cookiesFunctional: "Functional cookies",
15
- cookiesNecessary: "Necessary cookies",
16
- cookiesOptional: "Optional cookies",
17
- decline: "Decline",
18
- declineAll: "Decline all",
19
- here: "here",
20
- iframeBlocked: "To see this, please enable functional cookies",
21
- manageCookies: "Learn more and customize",
22
- save: "Save",
23
- settingsUnsaved: "You have unsaved settings"
24
- };
25
-
26
- const DEFAULTS = {
27
- barPosition: "bottom-full",
28
- closeModalOnClickOutside: false,
29
- colors: {
30
- barBackground: "#000",
31
- barButtonBackground: "#fff",
32
- barButtonColor: "#000",
33
- barButtonHoverBackground: "#333",
34
- barButtonHoverColor: "#fff",
35
- barTextColor: "#fff",
36
- checkboxActiveBackground: "#000",
37
- checkboxActiveCircleBackground: "#fff",
38
- checkboxDisabledBackground: "#ddd",
39
- checkboxDisabledCircleBackground: "#fff",
40
- checkboxInactiveBackground: "#000",
41
- checkboxInactiveCircleBackground: "#fff",
42
- controlButtonBackground: "#fff",
43
- controlButtonHoverBackground: "#000",
44
- controlButtonIconColor: "#000",
45
- controlButtonIconHoverColor: "#fff",
46
- focusRingColor: "#808080",
47
- modalBackground: "#fff",
48
- modalButtonBackground: "#000",
49
- modalButtonColor: "#fff",
50
- modalButtonHoverBackground: "#333",
51
- modalButtonHoverColor: "#fff",
52
- modalOverlay: "#000",
53
- modalOverlayOpacity: 0.8,
54
- modalTextColor: "#000",
55
- modalUnsavedColor: "#fff"
56
- },
57
- cookies: {
58
- necessary: [],
59
- optional: []
60
- },
61
- cookieExpiryOffsetMs: 1e3 * 60 * 60 * 24 * 365,
62
- // one year
63
- cookieNameIsConsentGiven: "ncc_c",
64
- cookieNameCookiesEnabledIds: "ncc_e",
65
- isAcceptNecessaryButtonEnabled: true,
66
- isControlButtonEnabled: true,
67
- isCookieIdVisible: false,
68
- isCssEnabled: true,
69
- isCssPonyfillEnabled: false,
70
- isDashInDescriptionEnabled: true,
71
- isIframeBlocked: false,
72
- isModalForced: false,
73
- domain: "",
74
- locales: ["en"],
75
- localeTexts: { en }
76
- };
77
-
78
- const resolver = createResolver(import.meta.url);
79
- const runtimeDir = resolver.resolve("./runtime");
80
- const module = defineNuxtModule({
81
- meta: {
82
- name,
83
- version,
84
- configKey: "cookieControl",
85
- compatibility: { nuxt: "^3.0.0" }
86
- },
87
- defaults: DEFAULTS,
88
- hooks: {
89
- "components:dirs"(dirs) {
90
- dirs.push({
91
- path: resolver.resolve(runtimeDir, "components"),
92
- prefix: "cookie"
93
- });
94
- }
95
- },
96
- async setup(moduleOptions, nuxt) {
97
- nuxt.options.alias["#cookie-control/set-vars"] = moduleOptions.isCssPonyfillEnabled ? resolver.resolve(runtimeDir, "set-vars/ponyfill") : resolver.resolve(runtimeDir, "set-vars/native");
98
- nuxt.options.alias["#cookie-control"] = runtimeDir;
99
- nuxt.options.build.transpile.push(runtimeDir);
100
- pushCss(moduleOptions, nuxt);
101
- blockIframes(moduleOptions);
102
- await loadLocales(moduleOptions);
103
- addPlugin(resolver.resolve(runtimeDir, "plugin"));
104
- addImports({
105
- name: "useCookieControl",
106
- as: "useCookieControl",
107
- from: resolver.resolve(runtimeDir, "composables")
108
- });
109
- addTemplate({
110
- filename: "cookie-control-options.ts",
111
- write: true,
112
- getContents: () => `import { ModuleOptions } from '../../src/runtime/types'
113
-
114
- export default ${JSON.stringify(
115
- moduleOptions,
116
- void 0,
117
- 2
118
- )} as ModuleOptions`
119
- });
120
- }
121
- });
122
- const blockIframes = (moduleOptions) => {
123
- if (moduleOptions.isIframeBlocked) {
124
- const isIframeBlocked = {
125
- name: "functional",
126
- initialState: typeof moduleOptions.isIframeBlocked !== "boolean" && moduleOptions.isIframeBlocked.initialState !== void 0 ? moduleOptions.isIframeBlocked.initialState : true
127
- };
128
- if (moduleOptions.cookies) {
129
- if (moduleOptions.cookies.optional) {
130
- moduleOptions.cookies.optional.push(isIframeBlocked);
131
- } else {
132
- moduleOptions.cookies.optional = [isIframeBlocked];
133
- }
134
- }
135
- extendWebpackConfig((config) => {
136
- config.module?.rules?.push({
137
- test: /\.vue$/,
138
- loader: "string-replace-loader",
139
- exclude: /node_modules/,
140
- options: {
141
- multiple: [
142
- { search: "<iframe", replace: "<CookieIframe", flags: "g" },
143
- { search: "</iframe>", replace: "</CookieIframe>", flags: "g" }
144
- ]
145
- }
146
- });
147
- });
148
- }
149
- };
150
- const loadLocales = async (moduleOptions) => {
151
- const locales = moduleOptions.locales;
152
- moduleOptions.locales = [];
153
- for (const locale of locales) {
154
- const text = await import(pathToFileURL(await resolvePath(resolve(runtimeDir, "locale", locale))).href).then((r) => r.default || r);
155
- if (!text)
156
- throw new Error(`Could not import text for locale ${locale}`);
157
- moduleOptions.locales.push(locale);
158
- moduleOptions.localeTexts[locale] = {
159
- ...text,
160
- ...moduleOptions.localeTexts[locale]
161
- };
162
- }
163
- };
164
- const pushCss = (moduleOptions, nuxt) => {
165
- if (moduleOptions.isCssEnabled)
166
- nuxt.options.css.push(resolver.resolve(runtimeDir, "styles.css"));
167
- };
168
-
169
- export { module as default };
6
+ export default _module;
@@ -0,0 +1,5 @@
1
+ import { State } from './types'
2
+
3
+ import { useNuxtApp } from '#imports'
4
+
5
+ export const useCookieControl: () => State = () => useNuxtApp().$cookies
@@ -0,0 +1,3 @@
1
+ import { Locale } from './types'
2
+
3
+ export const LOCALE_DEFAULT: Locale = 'en'
@@ -0,0 +1,20 @@
1
+ import { LocaleStrings } from '../types'
2
+
3
+ export default {
4
+ accept: 'قبول',
5
+ acceptAll: 'قبول الكل',
6
+ bannerDescription:
7
+ 'نحن نستخدم ملفات تعريف الارتباط الخاصة بنا وملفات تعريف الارتباط الخاصة بالجهات الخارجية حتى نتمكن من عرض هذا الموقع وفهم كيفية استخدامه بشكل أفضل ، بهدف تحسين الخدمات التي نقدمها. إذا واصلت التصفح ، فإننا نعتبر أنك قبلت ملفات تعريف الارتباط.',
8
+ bannerTitle: 'ملفات تعريف الارتباط',
9
+ close: 'إغلاق',
10
+ cookiesFunctional: 'ملفات تعريف الارتباط الوظيفية',
11
+ cookiesNecessary: 'ملفات تعريف الارتباط الضرورية',
12
+ cookiesOptional: 'ملفات تعريف الارتباط الاختيارية',
13
+ decline: 'تقبل الضرورة',
14
+ declineAll: 'حذف الكل',
15
+ here: 'هنا',
16
+ iframeBlocked: 'لرؤية هذا ، يرجى تمكين ملفات تعريف الارتباط الوظيفية',
17
+ manageCookies: 'إدارة ملفات تعريف الارتباط',
18
+ save: 'حفظ',
19
+ settingsUnsaved: 'لديك إعدادات غير محفوظة',
20
+ } as LocaleStrings
@@ -0,0 +1,20 @@
1
+ import { LocaleStrings } from '../types'
2
+
3
+ export default {
4
+ accept: 'Qəbul et',
5
+ acceptAll: 'Hamısını qəbul et',
6
+ bannerDescription:
7
+ 'Biz öz kukilərimizdən və üçüncü tərəf kukilərindən istifadə edirik ki, biz bu veb-saytı düzgün göstərə bilək və təklif etdiyimiz xidmətləri təkmilləşdirmək məqsədilə bu veb-saytdan necə istifadə olunduğunu daha yaxşı başa düşək. Kukidən istifadə icazələri ilə bağlı qərar bu bannerdə seçim edildikdən sonra görünəcək kuki düyməsindən istifadə etməklə istənilən vaxt dəyişdirilə bilər.',
8
+ bannerTitle: 'Kukilər',
9
+ close: 'Bağla',
10
+ cookiesFunctional: 'Funksional kukilər',
11
+ cookiesNecessary: 'Zəruri kukilər',
12
+ cookiesOptional: 'İstəyə bağlı kukilər',
13
+ decline: 'Rədd et',
14
+ declineAll: 'Hamısını rədd et',
15
+ here: 'burada',
16
+ iframeBlocked: 'Bunu görmək üçün funksional kukiləri aktiv edin',
17
+ manageCookies: 'Kukiləri idarə et',
18
+ save: 'Yadda saxla',
19
+ settingsUnsaved: 'Yadda saxlanmamış ayarlarınız var',
20
+ } as LocaleStrings
@@ -0,0 +1,21 @@
1
+ import { LocaleStrings } from '../types'
2
+
3
+ export default {
4
+ accept: 'Приеми',
5
+ acceptAll: 'Приеми всички',
6
+ bannerDescription:
7
+ 'Ние използваме наши "бисквитки" и "бисквитки" от трети страни, за да можем да показваме правилно този уеб сайт и да разберем по-добре как се използва, с цел подобряване на предлаганите от нас услуги. Разрешението за използване на "бисквитки" може да бъде променено по всяко време, като се използва бутонът за бисквитки, който ще се появи след като бъде направен избор на този банер.',
8
+ bannerTitle: '"Бисквитки"',
9
+ close: 'Затвори',
10
+ cookiesFunctional: 'Функционални "бисквитки"',
11
+ cookiesNecessary: 'Нужни "бисквитки"',
12
+ cookiesOptional: 'Незадължителни "бисквитки"',
13
+ decline: 'Откажи',
14
+ declineAll: 'Откажи всички',
15
+ here: 'тук',
16
+ iframeBlocked:
17
+ 'За да видите това, моля, позволете функционалните "бисквитки"',
18
+ manageCookies: 'Вижте повече и настройте',
19
+ save: 'Запази',
20
+ settingsUnsaved: 'Имате незапазени настройки',
21
+ } as LocaleStrings
@@ -0,0 +1,20 @@
1
+ import { LocaleStrings } from '../types'
2
+
3
+ export default {
4
+ accept: 'Přijmout',
5
+ acceptAll: 'Přijmout vše',
6
+ bannerDescription:
7
+ 'Používáme soubory cookie a cookie třetích stran, abychom mohli vše správně zobrazovat a lépe porozumět tomu, jak tento web používáte, s cílem zlepšit nabízené služby. Rozhodnutí lze kdykoli změnit pomocí tlačítka cookie, které se zobrazí po provedení výběru na tomto banneru.',
8
+ bannerTitle: 'Cookies',
9
+ close: 'Zavřít',
10
+ cookiesFunctional: 'Obslužné cookies',
11
+ cookiesNecessary: 'Nezbytné cookies',
12
+ cookiesOptional: 'Volitelné cookies',
13
+ decline: 'Zamítnout',
14
+ declineAll: 'Zamítnout vše',
15
+ here: 'zde',
16
+ iframeBlocked: 'Chcete-li ji zobrazit, povolte obslužné cookies',
17
+ manageCookies: 'Další informace a přizpůsobení',
18
+ save: 'Uložit',
19
+ settingsUnsaved: 'Máte neuložená nastavení',
20
+ } as LocaleStrings
@@ -0,0 +1,20 @@
1
+ import { LocaleStrings } from '../types'
2
+
3
+ export default {
4
+ accept: 'Accepter',
5
+ acceptAll: 'Accepter alle',
6
+ bannerDescription:
7
+ 'Vi bruger vores egne cookies og tredjepartscookies, så vi kan vise dig denne hjemmeside og bedre forstå hvordan du bruger den, med henblik på at forbedre de tjenester som vi tilbyder. Du kan til enhver tid trække dit samtykke vedr. brug af cookies tilbage. Dette gøres ved hjælp af cookie-knappen, der vises når et valg er foretaget på dette banner.',
8
+ bannerTitle: 'Cookies',
9
+ close: 'Luk',
10
+ cookiesFunctional: 'Funktionelle cookies',
11
+ cookiesNecessary: 'Nødvendige cookies',
12
+ cookiesOptional: 'Valgfrie cookies',
13
+ decline: 'Afvis',
14
+ declineAll: 'Afvis alle',
15
+ here: 'Her',
16
+ iframeBlocked: 'For at se dette skal du aktivere funktionelle cookies',
17
+ manageCookies: 'Læs mere og tilpas',
18
+ save: 'Gem',
19
+ settingsUnsaved: 'Du har indstillinger, der ikke er gemt',
20
+ } as LocaleStrings
@@ -0,0 +1,21 @@
1
+ import { LocaleStrings } from '../types'
2
+
3
+ export default {
4
+ accept: 'Akzeptieren',
5
+ acceptAll: 'Alle akzeptieren',
6
+ bannerDescription:
7
+ 'Wir verwenden eigene Cookies und Cookies von Drittanbietern, damit wir diese Webseite korrekt darstellen können und besser verstehen, wie diese Webseite genutzt wird, um unser Angebot zu verbessern. Eine Entscheidung über die Erlaubnis zur Verwendung von Cookies kann jederzeit über den Cookie-Button geändert werden, der erscheint, nachdem eine Auswahl auf diesem Banner getroffen wurde.',
8
+ bannerTitle: 'Cookies',
9
+ close: 'Schließen',
10
+ cookiesFunctional: 'Funktionale Cookies',
11
+ cookiesNecessary: 'Notwendige Cookies',
12
+ cookiesOptional: 'Optionale Cookies',
13
+ decline: 'Ablehnen',
14
+ declineAll: 'Alle ablehnen',
15
+ here: 'hier',
16
+ iframeBlocked:
17
+ 'Um den Inhalt zu sehen, aktivieren Sie bitte funktionale Cookies',
18
+ manageCookies: 'Mehr erfahren und anpassen',
19
+ save: 'Speichern',
20
+ settingsUnsaved: 'Es gibt nicht gespeicherte Einstellungen',
21
+ } as LocaleStrings
@@ -0,0 +1,20 @@
1
+ import { LocaleStrings } from '../types'
2
+
3
+ export default {
4
+ accept: 'Accept',
5
+ acceptAll: 'Accept all',
6
+ bannerDescription:
7
+ '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.',
8
+ bannerTitle: 'Cookies',
9
+ close: 'Close',
10
+ cookiesFunctional: 'Functional cookies',
11
+ cookiesNecessary: 'Necessary cookies',
12
+ cookiesOptional: 'Optional cookies',
13
+ decline: 'Decline',
14
+ declineAll: 'Decline all',
15
+ here: 'here',
16
+ iframeBlocked: 'To see this, please enable functional cookies',
17
+ manageCookies: 'Learn more and customize',
18
+ save: 'Save',
19
+ settingsUnsaved: 'You have unsaved settings',
20
+ } as LocaleStrings
@@ -0,0 +1,20 @@
1
+ import { LocaleStrings } from '../types'
2
+
3
+ export default {
4
+ accept: 'Aceptar',
5
+ acceptAll: 'Aceptar todo',
6
+ bannerDescription:
7
+ '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.',
8
+ bannerTitle: 'Cookies',
9
+ close: 'Cerrar',
10
+ cookiesFunctional: 'Cookies funcionales',
11
+ cookiesNecessary: 'Cookies obligatorias',
12
+ cookiesOptional: 'Cookies opcionales',
13
+ decline: 'Acepto lo necesario',
14
+ declineAll: 'Borrar todo',
15
+ here: 'aquí',
16
+ iframeBlocked: 'Para ver esto, por favor habilita las cookies funcionales.',
17
+ manageCookies: 'Administrar cookies',
18
+ save: 'Guardar',
19
+ settingsUnsaved: 'Tienes configuraciones no guardadas',
20
+ } as LocaleStrings
@@ -0,0 +1,21 @@
1
+ import { LocaleStrings } from '../types'
2
+
3
+ export default {
4
+ accept: 'Hyväksy',
5
+ acceptAll: 'Hyväksy kaikki',
6
+ bannerDescription:
7
+ 'Käytämme omia ja kolmannen osapuolen evästeitä verkkosivuston näyttämiseen ja sen käytön ymmärtämiseen, jotta voimme parantaa palveluitamme. Evästeiden käyttöoikeuksien valinta voidaan muuttaa koska tahansa evästeiden valintanapin avulla, joka ilmestyy valinnan jälkeen tähän banneriin.',
8
+ bannerTitle: 'Evästeet',
9
+ close: 'Sulje',
10
+ cookiesFunctional: 'Toiminnalliset evästeet',
11
+ cookiesNecessary: 'Pakolliset evästeet',
12
+ cookiesOptional: 'Valinnaiset evästeet',
13
+ decline: 'Kiellä',
14
+ declineAll: 'Kiellä kaikki',
15
+ here: 'täältä',
16
+ iframeBlocked:
17
+ 'Nähdäksesi tämän, ole hyvä ja hyväksy toiminnalliset evästeet.',
18
+ manageCookies: 'Lue lisää ja hallitse evästeitä',
19
+ save: 'Tallenna',
20
+ settingsUnsaved: 'Sinulla on tallentamattomia muutoksia.',
21
+ } as LocaleStrings
@@ -0,0 +1,20 @@
1
+ import { LocaleStrings } from '../types'
2
+
3
+ export default {
4
+ accept: 'Accepter',
5
+ acceptAll: 'Tout accepter',
6
+ bannerDescription:
7
+ '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.',
8
+ bannerTitle: 'Cookies',
9
+ close: 'Fermer',
10
+ cookiesFunctional: 'Cookies fonctionnels',
11
+ cookiesNecessary: 'Les cookies obligatoires',
12
+ cookiesOptional: 'Les cookies optionnels',
13
+ decline: "J'accepte le nécessaire",
14
+ declineAll: 'Tout refuser',
15
+ here: 'ici',
16
+ iframeBlocked: 'Pour voir cela, veuillez activer les cookies fonctionnels',
17
+ manageCookies: 'Gérer les cookies',
18
+ save: 'Sauvegarder',
19
+ settingsUnsaved: 'Vous avez des paramètres non sauvegardés',
20
+ } as LocaleStrings
@@ -0,0 +1,21 @@
1
+ import { LocaleStrings } from '../types'
2
+
3
+ export default {
4
+ accept: 'Dozvoli',
5
+ acceptAll: 'Dozvoli sve',
6
+ bannerDescription:
7
+ '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.',
8
+ bannerTitle: 'Kolačići',
9
+ close: 'Zatvori',
10
+ cookiesFunctional: 'Funkcionalni kolačići',
11
+ cookiesNecessary: 'Obavezni kolačići',
12
+ cookiesOptional: 'Neobavezni kolačići',
13
+ decline: 'Prihvaćam obavezne',
14
+ declineAll: 'Obriši sve',
15
+ here: 'ovdje',
16
+ iframeBlocked:
17
+ 'Da bi vidjeli ovo, molimo Vas omogućite funkcionalne kolačiće',
18
+ manageCookies: 'Upravljaj kolačićima',
19
+ save: 'Spremi',
20
+ settingsUnsaved: 'Imate nespremljenih postavki',
21
+ } as LocaleStrings
@@ -0,0 +1,21 @@
1
+ import { LocaleStrings } from '../types'
2
+
3
+ export default {
4
+ accept: 'Elfogad',
5
+ acceptAll: 'Összes elfogadása',
6
+ bannerDescription:
7
+ '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.',
8
+ bannerTitle: 'Sütik',
9
+ close: 'Bezár',
10
+ cookiesFunctional: 'Funkcionális sütik',
11
+ cookiesNecessary: 'Szükséges sütikk',
12
+ cookiesOptional: 'Opcionális sütik',
13
+ decline: 'Elfogadom a szükségeset',
14
+ declineAll: 'Összes elutasítása',
15
+ here: 'itt',
16
+ iframeBlocked:
17
+ 'Ennek megtekintéséhez, engedélyezd a funkcionális sütik használatát',
18
+ manageCookies: 'Sütikk kezelése',
19
+ save: 'Mentés',
20
+ settingsUnsaved: 'Mentés nélküli beállítások vannak',
21
+ } as LocaleStrings
@@ -0,0 +1,55 @@
1
+ import ar from './ar'
2
+ import az from './az'
3
+ import bg from './bg'
4
+ import cs from './cs'
5
+ import da from './da'
6
+ import de from './de'
7
+ import en from './en'
8
+ import es from './es'
9
+ import fi from './fi'
10
+ import fr from './fr'
11
+ import hr from './hr'
12
+ import hu from './hu'
13
+ import it from './it'
14
+ import ja from './ja'
15
+ import ko from './ko'
16
+ import lt from './lt'
17
+ import nl from './nl'
18
+ import no from './no'
19
+ import oc from './oc'
20
+ import pt from './pt'
21
+ import pl from './pl'
22
+ import ru from './ru'
23
+ import sk from './sk'
24
+ import sv from './sv'
25
+ import tr from './tr'
26
+ import uk from './uk'
27
+
28
+ export const locales = [
29
+ ar,
30
+ az,
31
+ bg,
32
+ cs,
33
+ da,
34
+ de,
35
+ en,
36
+ es,
37
+ fi,
38
+ fr,
39
+ hr,
40
+ hu,
41
+ it,
42
+ ja,
43
+ ko,
44
+ lt,
45
+ nl,
46
+ no,
47
+ oc,
48
+ pt,
49
+ pl,
50
+ ru,
51
+ sk,
52
+ sv,
53
+ tr,
54
+ uk,
55
+ ]
@@ -0,0 +1,20 @@
1
+ import { LocaleStrings } from '../types'
2
+
3
+ export default {
4
+ accept: 'Accetta',
5
+ acceptAll: 'Accetta tutto',
6
+ bannerDescription:
7
+ '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.',
8
+ bannerTitle: 'Cookies',
9
+ close: 'Chiudi',
10
+ cookiesFunctional: 'Cookie funzionali',
11
+ cookiesNecessary: 'Cookie necessari',
12
+ cookiesOptional: 'Cookie opzionali',
13
+ decline: 'Accetto il necessario',
14
+ declineAll: 'Cancella tutto',
15
+ here: 'qui',
16
+ iframeBlocked: 'Per vedere questo, si prega di abilitare i cookie funzionali',
17
+ manageCookies: 'Gestisci i cookie',
18
+ save: 'Salva',
19
+ settingsUnsaved: 'Ci sono impostazioni non salvate',
20
+ } as LocaleStrings
@@ -0,0 +1,20 @@
1
+ import { LocaleStrings } from '../types'
2
+
3
+ export default {
4
+ accept: '同意',
5
+ acceptAll: '全て同意',
6
+ bannerDescription:
7
+ '当サイトでは、サービス改善を目的として当サイト及び第三者が提供するCookieを使用することにより、利用者に当サイトを表示させるとともに、利用者がどのようにサイトを利用しているかをより十分に把握することが可能となっています。このまま閲覧を続けると、Cookieの利用について同意したとみなされます。',
8
+ bannerTitle: 'Cookie',
9
+ close: '閉じる',
10
+ cookiesFunctional: '機能性Cookie',
11
+ cookiesNecessary: '不可欠なCookie',
12
+ cookiesOptional: '任意のcookies',
13
+ decline: '必要に応じて受け入れる',
14
+ declineAll: '全て削除',
15
+ here: '設定',
16
+ iframeBlocked: 'ここを表示するには、機能性Cookieを有効にしてください:',
17
+ manageCookies: 'Cookieを管理',
18
+ save: '保存',
19
+ settingsUnsaved: '保存されていない設定があります',
20
+ } as LocaleStrings
@@ -0,0 +1,20 @@
1
+ import { LocaleStrings } from '../types'
2
+
3
+ export default {
4
+ accept: '허용하기',
5
+ acceptAll: '모두 허용하기',
6
+ bannerDescription:
7
+ '당사가 제공하는 서비스를 개선하기 위해 귀하에게 이 웹사이트를 보여주고 귀하의 사용 방법을 더 잘 이해할 수 있도록 자체 쿠키 및 타사 쿠키를 사용합니다. 탐색을 계속한다면 쿠키를 허용한 것으로 간주됩니다.',
8
+ bannerTitle: '쿠키',
9
+ close: '닫기',
10
+ cookiesFunctional: '기능적 쿠키',
11
+ cookiesNecessary: '필수 쿠키키',
12
+ cookiesOptional: '선택적 쿠키',
13
+ decline: '거부하기',
14
+ declineAll: '모두 거부하기',
15
+ here: '여기',
16
+ iframeBlocked: '이 콘텐츠를 볼 수 있도록 기능적 쿠키를 허용해 주세요.',
17
+ manageCookies: '쿠키 관리',
18
+ save: '저장하기',
19
+ settingsUnsaved: '변경 사항이 저장되지 않았습니다.',
20
+ } as LocaleStrings