@anywayseo/tools 2.4.0 → 2.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/base/pulse-button/index.d.ts +8 -2
- package/dist/components/index.cjs +1 -1
- package/dist/components/index.mjs +1 -1
- package/dist/i18n/index.cjs +1 -1
- package/dist/i18n/index.mjs +1 -1
- package/dist/i18n/resources/ru/index.d.ts +110 -0
- package/dist/{index-uq_uSyaC.js → index-BEqFPNAt.js} +163 -45
- package/dist/{index-BKBWEEyT.js → index-BR5dWoW7.js} +14 -11
- package/dist/{index-DF1kFmrH.mjs → index-BWm-60DT.mjs} +15 -12
- package/dist/{index-CxCmXGhl.mjs → index-BqUBNm7v.mjs} +1 -1
- package/dist/{index-CKjc79l2.js → index-D2APUOog.js} +1 -1
- package/dist/{index-DjBQjd1k.mjs → index-F6_fGeRI.mjs} +163 -45
- package/dist/index.cjs +3 -3
- package/dist/index.mjs +3 -3
- package/dist/types/i18n/index.d.ts +2 -2
- package/dist/types/site/index.d.ts +1 -0
- package/dist/utils/index.cjs +1 -1
- package/dist/utils/index.mjs +1 -1
- package/package.json +1 -1
|
@@ -1,9 +1,15 @@
|
|
|
1
1
|
import { FC } from 'react';
|
|
2
2
|
import { BoxPositionProps } from '../../../types';
|
|
3
|
+
type PulseButtonActionProps = {
|
|
4
|
+
to?: never;
|
|
5
|
+
onClick: VoidFunction;
|
|
6
|
+
} | {
|
|
7
|
+
to: string;
|
|
8
|
+
onClick?: never;
|
|
9
|
+
};
|
|
3
10
|
type PulseButtonProps = {
|
|
4
11
|
label: string;
|
|
5
12
|
colorScheme?: 'dark' | 'light';
|
|
6
|
-
|
|
7
|
-
} & BoxPositionProps;
|
|
13
|
+
} & PulseButtonActionProps & BoxPositionProps;
|
|
8
14
|
declare const PulseButton: FC<PulseButtonProps>;
|
|
9
15
|
export default PulseButton;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
-
const index = require("../index-
|
|
3
|
+
const index = require("../index-BR5dWoW7.js");
|
|
4
4
|
exports.Author = index.Author;
|
|
5
5
|
exports.BonusCard = index.BonusCard;
|
|
6
6
|
exports.Center = index.Center;
|
package/dist/i18n/index.cjs
CHANGED
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
3
|
require("react-i18next");
|
|
4
4
|
const i18n = require("i18next");
|
|
5
|
-
const i18n$1 = require("../index-
|
|
5
|
+
const i18n$1 = require("../index-BEqFPNAt.js");
|
|
6
6
|
exports.i18n = i18n;
|
|
7
7
|
exports.resources = i18n$1.resources;
|
package/dist/i18n/index.mjs
CHANGED
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
declare const dictionary: {
|
|
2
|
+
readonly pageNotFound: {
|
|
3
|
+
seo: {
|
|
4
|
+
title: string;
|
|
5
|
+
};
|
|
6
|
+
title: string;
|
|
7
|
+
description: string;
|
|
8
|
+
action: string;
|
|
9
|
+
};
|
|
10
|
+
readonly footer: {
|
|
11
|
+
copyright: string;
|
|
12
|
+
disclaimer: {
|
|
13
|
+
title: string;
|
|
14
|
+
description: string;
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
readonly gameDemo: {
|
|
18
|
+
warning: string;
|
|
19
|
+
action: {
|
|
20
|
+
playForFree: string;
|
|
21
|
+
activateFullscreen: string;
|
|
22
|
+
deactivateFullscreen: string;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
readonly gameInfo: {
|
|
26
|
+
title: string;
|
|
27
|
+
group: {
|
|
28
|
+
general: string;
|
|
29
|
+
features: string;
|
|
30
|
+
};
|
|
31
|
+
feature: {
|
|
32
|
+
BONUS_FEATURES: string;
|
|
33
|
+
COMPATIBILITY: string;
|
|
34
|
+
FUNCTIONS: string;
|
|
35
|
+
DEVELOPER: string;
|
|
36
|
+
HAS_AUTOPLAY: string;
|
|
37
|
+
HAS_BONUS_PURCHASE: string;
|
|
38
|
+
HAS_COLLECTION_SYMBOLS: string;
|
|
39
|
+
HAS_DEMO: string;
|
|
40
|
+
HAS_FAST_SPIN: string;
|
|
41
|
+
HAS_FREE_SPINS: string;
|
|
42
|
+
HAS_PROGRESSIVE_JACKPOT: string;
|
|
43
|
+
LANGUAGES: string;
|
|
44
|
+
MAX_WIN: string;
|
|
45
|
+
MAX_BET: string;
|
|
46
|
+
MIN_BET: string;
|
|
47
|
+
NAME: string;
|
|
48
|
+
PAY_LINES: string;
|
|
49
|
+
REELS_NUMBER: string;
|
|
50
|
+
RELEASE_DATE: string;
|
|
51
|
+
ROWS_WITH_PINS: string;
|
|
52
|
+
RTP: string;
|
|
53
|
+
THEME: string;
|
|
54
|
+
TYPE: string;
|
|
55
|
+
VOLATILITY: string;
|
|
56
|
+
};
|
|
57
|
+
value: {
|
|
58
|
+
boolean: {
|
|
59
|
+
true: string;
|
|
60
|
+
false: string;
|
|
61
|
+
};
|
|
62
|
+
volatility: {
|
|
63
|
+
HIGH: string;
|
|
64
|
+
MEDIUM: string;
|
|
65
|
+
LOW: string;
|
|
66
|
+
};
|
|
67
|
+
};
|
|
68
|
+
};
|
|
69
|
+
readonly prosCons: {
|
|
70
|
+
advantages: string;
|
|
71
|
+
disadvantages: string;
|
|
72
|
+
};
|
|
73
|
+
readonly author: {
|
|
74
|
+
title: string;
|
|
75
|
+
action: {
|
|
76
|
+
expand: string;
|
|
77
|
+
collapse: string;
|
|
78
|
+
};
|
|
79
|
+
};
|
|
80
|
+
readonly contactForm: {
|
|
81
|
+
field: {
|
|
82
|
+
name: {
|
|
83
|
+
label: string;
|
|
84
|
+
placeholder: string;
|
|
85
|
+
};
|
|
86
|
+
email: {
|
|
87
|
+
label: string;
|
|
88
|
+
placeholder: string;
|
|
89
|
+
};
|
|
90
|
+
message: {
|
|
91
|
+
label: string;
|
|
92
|
+
placeholder: string;
|
|
93
|
+
};
|
|
94
|
+
};
|
|
95
|
+
notification: {
|
|
96
|
+
title: string;
|
|
97
|
+
description: string;
|
|
98
|
+
};
|
|
99
|
+
action: {
|
|
100
|
+
send: string;
|
|
101
|
+
};
|
|
102
|
+
};
|
|
103
|
+
readonly bonusCard: {
|
|
104
|
+
action: {
|
|
105
|
+
expand: string;
|
|
106
|
+
collapse: string;
|
|
107
|
+
};
|
|
108
|
+
};
|
|
109
|
+
};
|
|
110
|
+
export default dictionary;
|
|
@@ -34,7 +34,7 @@ var GameCharacteristic = /* @__PURE__ */ ((GameCharacteristic2) => {
|
|
|
34
34
|
GameCharacteristic2["Functions"] = "FUNCTIONS";
|
|
35
35
|
return GameCharacteristic2;
|
|
36
36
|
})(GameCharacteristic || {});
|
|
37
|
-
const pageNotFound$
|
|
37
|
+
const pageNotFound$3 = {
|
|
38
38
|
seo: {
|
|
39
39
|
title: "Seite nicht gefunden | {{domain}}"
|
|
40
40
|
},
|
|
@@ -42,14 +42,14 @@ const pageNotFound$2 = {
|
|
|
42
42
|
description: "Entschuldigung 😔, wir konnten nicht finden, wonach Sie gesucht haben.",
|
|
43
43
|
action: "Zur Startseite"
|
|
44
44
|
};
|
|
45
|
-
const footer$
|
|
45
|
+
const footer$3 = {
|
|
46
46
|
copyright: "© {{year}} {{domain}}. Alle Rechte vorbehalten.",
|
|
47
47
|
disclaimer: {
|
|
48
48
|
title: "Spielen Sie verantwortungsbewusst: ",
|
|
49
49
|
description: "{{domain}} ist eine unabhängige Ressource und nicht mit den von uns beworbenen Seiten verbunden. Stellen Sie sicher, dass Sie über alle erforderlichen Zertifikate verfügen und die gesetzlichen Anforderungen erfüllt sind, bevor Sie mit dem Spielen beginnen. Der Hauptzweck von {{domain}} besteht darin, informative und unterhaltsame Inhalte bereitzustellen. Wenn Sie nach Links zu verwandten Ressourcen suchen, werden Sie zu den entsprechenden Plattformen weitergeleitet."
|
|
50
50
|
}
|
|
51
51
|
};
|
|
52
|
-
const gameDemo$
|
|
52
|
+
const gameDemo$3 = {
|
|
53
53
|
warning: "Ihr Browser ist zu alt, um das iframe-Element anzuzeigen.",
|
|
54
54
|
action: {
|
|
55
55
|
playForFree: "Kostenlos spielen",
|
|
@@ -57,7 +57,7 @@ const gameDemo$2 = {
|
|
|
57
57
|
deactivateFullscreen: "Vollbildmodus deaktivieren"
|
|
58
58
|
}
|
|
59
59
|
};
|
|
60
|
-
const gameInfo$
|
|
60
|
+
const gameInfo$3 = {
|
|
61
61
|
title: "Spielinfo",
|
|
62
62
|
group: {
|
|
63
63
|
general: "Allgemeine Eigenschaften",
|
|
@@ -101,18 +101,18 @@ const gameInfo$2 = {
|
|
|
101
101
|
}
|
|
102
102
|
}
|
|
103
103
|
};
|
|
104
|
-
const prosCons$
|
|
104
|
+
const prosCons$3 = {
|
|
105
105
|
advantages: "Vorteile",
|
|
106
106
|
disadvantages: "Nachteile"
|
|
107
107
|
};
|
|
108
|
-
const author$
|
|
108
|
+
const author$3 = {
|
|
109
109
|
title: "Veröffentlicht von",
|
|
110
110
|
action: {
|
|
111
111
|
expand: "Mehr anzeigen",
|
|
112
112
|
collapse: "Ausblenden"
|
|
113
113
|
}
|
|
114
114
|
};
|
|
115
|
-
const contactForm$
|
|
115
|
+
const contactForm$3 = {
|
|
116
116
|
field: {
|
|
117
117
|
name: {
|
|
118
118
|
label: "Name",
|
|
@@ -135,23 +135,23 @@ const contactForm$2 = {
|
|
|
135
135
|
send: "Nachricht senden"
|
|
136
136
|
}
|
|
137
137
|
};
|
|
138
|
-
const bonusCard$
|
|
138
|
+
const bonusCard$3 = {
|
|
139
139
|
action: {
|
|
140
140
|
expand: "Mehr erfahren",
|
|
141
141
|
collapse: "Ausblenden"
|
|
142
142
|
}
|
|
143
143
|
};
|
|
144
|
-
const dictionary$
|
|
145
|
-
pageNotFound: pageNotFound$
|
|
146
|
-
footer: footer$
|
|
147
|
-
gameDemo: gameDemo$
|
|
148
|
-
gameInfo: gameInfo$
|
|
149
|
-
prosCons: prosCons$
|
|
150
|
-
author: author$
|
|
151
|
-
contactForm: contactForm$
|
|
152
|
-
bonusCard: bonusCard$
|
|
144
|
+
const dictionary$3 = {
|
|
145
|
+
pageNotFound: pageNotFound$3,
|
|
146
|
+
footer: footer$3,
|
|
147
|
+
gameDemo: gameDemo$3,
|
|
148
|
+
gameInfo: gameInfo$3,
|
|
149
|
+
prosCons: prosCons$3,
|
|
150
|
+
author: author$3,
|
|
151
|
+
contactForm: contactForm$3,
|
|
152
|
+
bonusCard: bonusCard$3
|
|
153
153
|
};
|
|
154
|
-
const pageNotFound$
|
|
154
|
+
const pageNotFound$2 = {
|
|
155
155
|
seo: {
|
|
156
156
|
title: "Page not found | {{domain}}"
|
|
157
157
|
},
|
|
@@ -159,14 +159,14 @@ const pageNotFound$1 = {
|
|
|
159
159
|
description: "Sorry 😔, we couldn’t find what you were looking for.",
|
|
160
160
|
action: "Go Home"
|
|
161
161
|
};
|
|
162
|
-
const footer$
|
|
162
|
+
const footer$2 = {
|
|
163
163
|
copyright: "© {{year}} {{domain}}. All rights reserved.",
|
|
164
164
|
disclaimer: {
|
|
165
165
|
title: "Play responsibly: ",
|
|
166
166
|
description: "{{domain}} is an independent resource not affiliated with the sites we promote. Make sure you have all the necessary certifications and legal requirements are met before you start playing. The main purpose of {{domain}} is to provide informative and entertaining content. If you are looking for links to related resources, you will be redirected to the relevant platforms."
|
|
167
167
|
}
|
|
168
168
|
};
|
|
169
|
-
const gameDemo$
|
|
169
|
+
const gameDemo$2 = {
|
|
170
170
|
warning: "Your browser is too old to display the iframe element",
|
|
171
171
|
action: {
|
|
172
172
|
playForFree: "Play for Free",
|
|
@@ -174,7 +174,7 @@ const gameDemo$1 = {
|
|
|
174
174
|
deactivateFullscreen: "Deactivate Fullscreen mode"
|
|
175
175
|
}
|
|
176
176
|
};
|
|
177
|
-
const gameInfo$
|
|
177
|
+
const gameInfo$2 = {
|
|
178
178
|
title: "Game Info",
|
|
179
179
|
group: {
|
|
180
180
|
general: "General Characteristics",
|
|
@@ -218,18 +218,18 @@ const gameInfo$1 = {
|
|
|
218
218
|
}
|
|
219
219
|
}
|
|
220
220
|
};
|
|
221
|
-
const prosCons$
|
|
221
|
+
const prosCons$2 = {
|
|
222
222
|
advantages: "Advantages",
|
|
223
223
|
disadvantages: "Disadvantages"
|
|
224
224
|
};
|
|
225
|
-
const author$
|
|
225
|
+
const author$2 = {
|
|
226
226
|
title: "Published by",
|
|
227
227
|
action: {
|
|
228
228
|
expand: "Show more",
|
|
229
229
|
collapse: "Hide"
|
|
230
230
|
}
|
|
231
231
|
};
|
|
232
|
-
const contactForm$
|
|
232
|
+
const contactForm$2 = {
|
|
233
233
|
field: {
|
|
234
234
|
name: {
|
|
235
235
|
label: "Name",
|
|
@@ -252,23 +252,23 @@ const contactForm$1 = {
|
|
|
252
252
|
send: "Send Message"
|
|
253
253
|
}
|
|
254
254
|
};
|
|
255
|
-
const bonusCard$
|
|
255
|
+
const bonusCard$2 = {
|
|
256
256
|
action: {
|
|
257
257
|
expand: "Learn more",
|
|
258
258
|
collapse: "Hide"
|
|
259
259
|
}
|
|
260
260
|
};
|
|
261
|
-
const dictionary$
|
|
262
|
-
pageNotFound: pageNotFound$
|
|
263
|
-
footer: footer$
|
|
264
|
-
gameDemo: gameDemo$
|
|
265
|
-
gameInfo: gameInfo$
|
|
266
|
-
prosCons: prosCons$
|
|
267
|
-
author: author$
|
|
268
|
-
contactForm: contactForm$
|
|
269
|
-
bonusCard: bonusCard$
|
|
261
|
+
const dictionary$2 = {
|
|
262
|
+
pageNotFound: pageNotFound$2,
|
|
263
|
+
footer: footer$2,
|
|
264
|
+
gameDemo: gameDemo$2,
|
|
265
|
+
gameInfo: gameInfo$2,
|
|
266
|
+
prosCons: prosCons$2,
|
|
267
|
+
author: author$2,
|
|
268
|
+
contactForm: contactForm$2,
|
|
269
|
+
bonusCard: bonusCard$2
|
|
270
270
|
};
|
|
271
|
-
const pageNotFound = {
|
|
271
|
+
const pageNotFound$1 = {
|
|
272
272
|
seo: {
|
|
273
273
|
title: "Pagina non trovata | {{domain}}"
|
|
274
274
|
},
|
|
@@ -276,14 +276,14 @@ const pageNotFound = {
|
|
|
276
276
|
description: "Spiacenti 😔, non siamo riusciti a trovare quello che cercavi.",
|
|
277
277
|
action: "Ritorna alla pagina principale"
|
|
278
278
|
};
|
|
279
|
-
const footer = {
|
|
279
|
+
const footer$1 = {
|
|
280
280
|
copyright: "© {{year}} {{domain}}. Tutte le cose sono fatte.",
|
|
281
281
|
disclaimer: {
|
|
282
282
|
title: "Gioca responsabilmente: ",
|
|
283
283
|
description: "{{domain}} è una risorsa indipendente e non affiliata ai siti che promuoviamo. Prima di iniziare a giocare, assicurati di possedere tutte le certificazioni necessarie e di rispettare i requisiti legali in vigore. L'obiettivo principale di {{domain}} è offrire contenuti informativi e di intrattenimento. Se cerchi collegamenti a risorse correlate, verrai reindirizzato alle piattaforme pertinenti."
|
|
284
284
|
}
|
|
285
285
|
};
|
|
286
|
-
const gameDemo = {
|
|
286
|
+
const gameDemo$1 = {
|
|
287
287
|
warning: "Il tuo browser è troppo vecchio per visualizzare l'elemento iframe",
|
|
288
288
|
action: {
|
|
289
289
|
playForFree: "Gioca gratis",
|
|
@@ -291,7 +291,7 @@ const gameDemo = {
|
|
|
291
291
|
deactivateFullscreen: "Disattiva la modalità a schermo intero"
|
|
292
292
|
}
|
|
293
293
|
};
|
|
294
|
-
const gameInfo = {
|
|
294
|
+
const gameInfo$1 = {
|
|
295
295
|
title: "Informazioni sul gioco",
|
|
296
296
|
group: {
|
|
297
297
|
general: "Caratteristiche principali",
|
|
@@ -335,18 +335,18 @@ const gameInfo = {
|
|
|
335
335
|
}
|
|
336
336
|
}
|
|
337
337
|
};
|
|
338
|
-
const prosCons = {
|
|
338
|
+
const prosCons$1 = {
|
|
339
339
|
advantages: "Vantaggi",
|
|
340
340
|
disadvantages: "Svantaggi"
|
|
341
341
|
};
|
|
342
|
-
const author = {
|
|
342
|
+
const author$1 = {
|
|
343
343
|
title: "Informazioni sull'autore",
|
|
344
344
|
action: {
|
|
345
345
|
expand: "Mostra per intero",
|
|
346
346
|
collapse: "Nascondi"
|
|
347
347
|
}
|
|
348
348
|
};
|
|
349
|
-
const contactForm = {
|
|
349
|
+
const contactForm$1 = {
|
|
350
350
|
field: {
|
|
351
351
|
name: {
|
|
352
352
|
label: "Nome",
|
|
@@ -369,12 +369,129 @@ const contactForm = {
|
|
|
369
369
|
send: "Invia Messaggio"
|
|
370
370
|
}
|
|
371
371
|
};
|
|
372
|
-
const bonusCard = {
|
|
372
|
+
const bonusCard$1 = {
|
|
373
373
|
action: {
|
|
374
374
|
expand: "Scopri di più",
|
|
375
375
|
collapse: "Nascondi"
|
|
376
376
|
}
|
|
377
377
|
};
|
|
378
|
+
const dictionary$1 = {
|
|
379
|
+
pageNotFound: pageNotFound$1,
|
|
380
|
+
footer: footer$1,
|
|
381
|
+
gameDemo: gameDemo$1,
|
|
382
|
+
gameInfo: gameInfo$1,
|
|
383
|
+
prosCons: prosCons$1,
|
|
384
|
+
author: author$1,
|
|
385
|
+
contactForm: contactForm$1,
|
|
386
|
+
bonusCard: bonusCard$1
|
|
387
|
+
};
|
|
388
|
+
const pageNotFound = {
|
|
389
|
+
seo: {
|
|
390
|
+
title: "Страница не найдена | {{domain}}"
|
|
391
|
+
},
|
|
392
|
+
title: "404 — Страница не найдена",
|
|
393
|
+
description: "Извините 😔, мы не смогли найти то, что вы искали.",
|
|
394
|
+
action: "На главную"
|
|
395
|
+
};
|
|
396
|
+
const footer = {
|
|
397
|
+
copyright: "© {{year}} {{domain}}. Все права защищены.",
|
|
398
|
+
disclaimer: {
|
|
399
|
+
title: "Играйте ответственно: ",
|
|
400
|
+
description: "{{domain}} — независимый ресурс, не связанный с продвигаемыми сайтами. Убедитесь, что у вас есть все необходимые сертификаты и соблюдены юридические требования перед началом игры. Основная цель {{domain}} — предоставление информационного и развлекательного контента. Если вы ищете ссылки на связанные ресурсы, вас перенаправят на соответствующие платформы."
|
|
401
|
+
}
|
|
402
|
+
};
|
|
403
|
+
const gameDemo = {
|
|
404
|
+
warning: "Ваш браузер слишком устарел для отображения элемента iframe",
|
|
405
|
+
action: {
|
|
406
|
+
playForFree: "Играть бесплатно",
|
|
407
|
+
activateFullscreen: "Включить полноэкранный режим",
|
|
408
|
+
deactivateFullscreen: "Выключить полноэкранный режим"
|
|
409
|
+
}
|
|
410
|
+
};
|
|
411
|
+
const gameInfo = {
|
|
412
|
+
title: "Информация об игре",
|
|
413
|
+
group: {
|
|
414
|
+
general: "Основные характеристики",
|
|
415
|
+
features: "Особенности игры"
|
|
416
|
+
},
|
|
417
|
+
feature: {
|
|
418
|
+
[GameCharacteristic.BonusFeatures]: "Бонусные функции",
|
|
419
|
+
[GameCharacteristic.Compatibility]: "Совместимость",
|
|
420
|
+
[GameCharacteristic.Functions]: "Функции",
|
|
421
|
+
[GameCharacteristic.Developer]: "Разработчик",
|
|
422
|
+
[GameCharacteristic.HasAutoplay]: "Автоигра",
|
|
423
|
+
[GameCharacteristic.HasBonusPurchase]: "Покупка бонуса",
|
|
424
|
+
[GameCharacteristic.HasCollectionSymbols]: "Символы коллекции",
|
|
425
|
+
[GameCharacteristic.HasDemo]: "Демо-версия",
|
|
426
|
+
[GameCharacteristic.HasFastSpin]: "Быстрый спин",
|
|
427
|
+
[GameCharacteristic.HasFreeSpins]: "Фриспины",
|
|
428
|
+
[GameCharacteristic.HasProgressiveJackpot]: "Прогрессивный джекпот",
|
|
429
|
+
[GameCharacteristic.Languages]: "Языки",
|
|
430
|
+
[GameCharacteristic.MaxWin]: "Максимальный выигрыш",
|
|
431
|
+
[GameCharacteristic.MaxBet]: "Максимальная ставка",
|
|
432
|
+
[GameCharacteristic.MinBet]: "Минимальная ставка",
|
|
433
|
+
[GameCharacteristic.Name]: "Название",
|
|
434
|
+
[GameCharacteristic.PayLines]: "Количество линий выплат",
|
|
435
|
+
[GameCharacteristic.ReelsNumber]: "Количество барабанов",
|
|
436
|
+
[GameCharacteristic.ReleaseDate]: "Дата выхода",
|
|
437
|
+
[GameCharacteristic.RowsWithPins]: "Количество рядов с пинами",
|
|
438
|
+
[GameCharacteristic.Rtp]: "RTP",
|
|
439
|
+
[GameCharacteristic.Theme]: "Тема",
|
|
440
|
+
[GameCharacteristic.Type]: "Тип",
|
|
441
|
+
[GameCharacteristic.Volatility]: "Волатильность"
|
|
442
|
+
},
|
|
443
|
+
value: {
|
|
444
|
+
boolean: {
|
|
445
|
+
true: "Есть",
|
|
446
|
+
false: "Нет"
|
|
447
|
+
},
|
|
448
|
+
volatility: {
|
|
449
|
+
[GameVolatility.High]: "Высокая",
|
|
450
|
+
[GameVolatility.Medium]: "Средняя",
|
|
451
|
+
[GameVolatility.Low]: "Низкая"
|
|
452
|
+
}
|
|
453
|
+
}
|
|
454
|
+
};
|
|
455
|
+
const prosCons = {
|
|
456
|
+
advantages: "Преимущества",
|
|
457
|
+
disadvantages: "Недостатки"
|
|
458
|
+
};
|
|
459
|
+
const author = {
|
|
460
|
+
title: "Автор",
|
|
461
|
+
action: {
|
|
462
|
+
expand: "Показать больше",
|
|
463
|
+
collapse: "Скрыть"
|
|
464
|
+
}
|
|
465
|
+
};
|
|
466
|
+
const contactForm = {
|
|
467
|
+
field: {
|
|
468
|
+
name: {
|
|
469
|
+
label: "Имя",
|
|
470
|
+
placeholder: "Ваше имя"
|
|
471
|
+
},
|
|
472
|
+
email: {
|
|
473
|
+
label: "Email",
|
|
474
|
+
placeholder: "Ваш Email"
|
|
475
|
+
},
|
|
476
|
+
message: {
|
|
477
|
+
label: "Сообщение",
|
|
478
|
+
placeholder: "Ваше сообщение"
|
|
479
|
+
}
|
|
480
|
+
},
|
|
481
|
+
notification: {
|
|
482
|
+
title: "{{name}}, спасибо за ваш отзыв!",
|
|
483
|
+
description: "Мы свяжемся с вами по адресу {{email}} как можно скорее."
|
|
484
|
+
},
|
|
485
|
+
action: {
|
|
486
|
+
send: "Отправить сообщение"
|
|
487
|
+
}
|
|
488
|
+
};
|
|
489
|
+
const bonusCard = {
|
|
490
|
+
action: {
|
|
491
|
+
expand: "Подробнее",
|
|
492
|
+
collapse: "Скрыть"
|
|
493
|
+
}
|
|
494
|
+
};
|
|
378
495
|
const dictionary = {
|
|
379
496
|
pageNotFound,
|
|
380
497
|
footer,
|
|
@@ -386,9 +503,10 @@ const dictionary = {
|
|
|
386
503
|
bonusCard
|
|
387
504
|
};
|
|
388
505
|
const resources = {
|
|
389
|
-
en: dictionary$
|
|
390
|
-
it: dictionary,
|
|
391
|
-
de: dictionary$
|
|
506
|
+
en: dictionary$2,
|
|
507
|
+
it: dictionary$1,
|
|
508
|
+
de: dictionary$3,
|
|
509
|
+
ru: dictionary
|
|
392
510
|
};
|
|
393
511
|
const DEFAULT_LANGUAGE = "en";
|
|
394
512
|
i18n.use(reactI18next.initReactI18next).init({
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
const jsxRuntime = require("react/jsx-runtime");
|
|
3
3
|
const react = require("@chakra-ui/react");
|
|
4
4
|
const reactI18next = require("react-i18next");
|
|
5
|
-
const index$1 = require("./index-
|
|
6
|
-
const i18n = require("./index-
|
|
5
|
+
const index$1 = require("./index-D2APUOog.js");
|
|
6
|
+
const i18n = require("./index-BEqFPNAt.js");
|
|
7
7
|
require("@ctrl/tinycolor");
|
|
8
8
|
require("@mdx-js/react");
|
|
9
9
|
const index = require("./index-BhsXlbd8.js");
|
|
@@ -90,7 +90,7 @@ const ColorMap = {
|
|
|
90
90
|
light: "gray.200",
|
|
91
91
|
dark: "gray.700"
|
|
92
92
|
};
|
|
93
|
-
const PulseButton = ({ label, colorScheme = "light", onClick }) => {
|
|
93
|
+
const PulseButton = ({ label, colorScheme = "light", to, onClick }) => {
|
|
94
94
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
95
95
|
react.Button,
|
|
96
96
|
{
|
|
@@ -99,7 +99,7 @@ const PulseButton = ({ label, colorScheme = "light", onClick }) => {
|
|
|
99
99
|
bgColor: "brand.500",
|
|
100
100
|
animation: `${index$1.Animation.pulse} 2s infinite linear`,
|
|
101
101
|
_hover: { bgColor: "brand.200", color: "gray.700" },
|
|
102
|
-
onClick,
|
|
102
|
+
...to ? { as: react.Link, href: to } : { onClick },
|
|
103
103
|
children: label
|
|
104
104
|
}
|
|
105
105
|
);
|
|
@@ -122,9 +122,9 @@ const Author = ({ author, ...cardProps }) => {
|
|
|
122
122
|
};
|
|
123
123
|
const BonusCardContent = ({ content }) => {
|
|
124
124
|
const { t } = reactI18next.useTranslation("author");
|
|
125
|
-
return /* @__PURE__ */ jsxRuntime.jsx(react.Popover, {
|
|
125
|
+
return /* @__PURE__ */ jsxRuntime.jsx(react.Popover, { autoFocus: false, isLazy: true, lazyBehavior: "keepMounted", children: ({ isOpen }) => /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
126
126
|
/* @__PURE__ */ jsxRuntime.jsx(react.PopoverTrigger, { children: /* @__PURE__ */ jsxRuntime.jsx(react.Button, { size: "sm", variant: "link", color: "white", children: isOpen ? t("action.collapse") : t("action.expand") }) }),
|
|
127
|
-
/* @__PURE__ */ jsxRuntime.jsx(react.
|
|
127
|
+
/* @__PURE__ */ jsxRuntime.jsx(react.Portal, { children: /* @__PURE__ */ jsxRuntime.jsx(react.PopoverContent, { children: /* @__PURE__ */ jsxRuntime.jsx(react.PopoverBody, { children: Array.isArray(content) ? /* @__PURE__ */ jsxRuntime.jsx(react.Stack, { children: content.map((paragraph, index2) => /* @__PURE__ */ jsxRuntime.jsx(react.Text, { as: "span", children: paragraph }, index2)) }) : /* @__PURE__ */ jsxRuntime.jsx(react.Text, { children: content }) }) }) })
|
|
128
128
|
] }) });
|
|
129
129
|
};
|
|
130
130
|
const BonusCardTitle = ({ content }) => {
|
|
@@ -569,10 +569,13 @@ const Navigation$1 = ({ menu }) => {
|
|
|
569
569
|
);
|
|
570
570
|
};
|
|
571
571
|
const Footer = () => {
|
|
572
|
-
var _a, _b;
|
|
572
|
+
var _a, _b, _c;
|
|
573
573
|
const { configs } = index.useSiteContext();
|
|
574
574
|
const navigation = ((_a = configs == null ? void 0 : configs.footer) == null ? void 0 : _a.navigation) ?? [];
|
|
575
575
|
const extra = (_b = configs == null ? void 0 : configs.footer) == null ? void 0 : _b.extra;
|
|
576
|
+
const showDisclaimer = ((_c = configs == null ? void 0 : configs.footer) == null ? void 0 : _c.showDisclaimer) ?? true;
|
|
577
|
+
const hasNavigation = !!navigation.length;
|
|
578
|
+
const hasExtra = !!extra;
|
|
576
579
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
577
580
|
react.Box,
|
|
578
581
|
{
|
|
@@ -581,9 +584,9 @@ const Footer = () => {
|
|
|
581
584
|
color: react.useColorModeValue("gray.700", "gray.200"),
|
|
582
585
|
py: 4,
|
|
583
586
|
children: /* @__PURE__ */ jsxRuntime.jsxs(Container, { children: [
|
|
584
|
-
/* @__PURE__ */ jsxRuntime.jsx(Navigation$1, { menu: navigation }),
|
|
585
|
-
|
|
586
|
-
/* @__PURE__ */ jsxRuntime.jsx(Disclaimer, {}),
|
|
587
|
+
hasNavigation && /* @__PURE__ */ jsxRuntime.jsx(Navigation$1, { menu: navigation }),
|
|
588
|
+
hasExtra && /* @__PURE__ */ jsxRuntime.jsx(Extra, { children: extra }),
|
|
589
|
+
showDisclaimer && /* @__PURE__ */ jsxRuntime.jsx(Disclaimer, {}),
|
|
587
590
|
/* @__PURE__ */ jsxRuntime.jsx(Brand$1, { brand: /* @__PURE__ */ jsxRuntime.jsx(Logo, {}) }),
|
|
588
591
|
/* @__PURE__ */ jsxRuntime.jsx(Copyright, {})
|
|
589
592
|
] })
|
|
@@ -734,7 +737,7 @@ const Header = () => {
|
|
|
734
737
|
const navigation = ((_a = configs == null ? void 0 : configs.header) == null ? void 0 : _a.navigation) ?? [];
|
|
735
738
|
const toolbar = (_b = configs == null ? void 0 : configs.header) == null ? void 0 : _b.toolbar;
|
|
736
739
|
const hasToolbar = !!toolbar;
|
|
737
|
-
const hasNavigation = navigation.length;
|
|
740
|
+
const hasNavigation = !!navigation.length;
|
|
738
741
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
739
742
|
react.Box,
|
|
740
743
|
{
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { jsx, jsxs, Fragment } from "react/jsx-runtime";
|
|
2
|
-
import { Center as Center$1, Box, Collapse, Text, Button, Flex, Stack, Image, SimpleGrid, Link, Card, CardHeader, Heading, CardBody, Popover, PopoverTrigger, PopoverContent, PopoverBody, CardFooter, useToast, useColorModeValue, VStack, FormControl, FormLabel, InputGroup, InputLeftElement, Input, Textarea, Accordion, AccordionItem, AccordionButton, AccordionIcon, AccordionPanel, LinkBox, LinkOverlay, IconButton, AbsoluteCenter, Spinner, useDisclosure, Divider, Circle, Container as Container$1, List as List$1, ListItem, Icon, ListIcon, TableContainer, Table as Table$1, Thead, Tr, Th, Tbody, Td, TableCaption, Tabs as Tabs$1, TabList, Tab, TabPanels, TabPanel } from "@chakra-ui/react";
|
|
2
|
+
import { Center as Center$1, Box, Collapse, Text, Button, Flex, Stack, Image, SimpleGrid, Link, Card, CardHeader, Heading, CardBody, Popover, PopoverTrigger, Portal, PopoverContent, PopoverBody, CardFooter, useToast, useColorModeValue, VStack, FormControl, FormLabel, InputGroup, InputLeftElement, Input, Textarea, Accordion, AccordionItem, AccordionButton, AccordionIcon, AccordionPanel, LinkBox, LinkOverlay, IconButton, AbsoluteCenter, Spinner, useDisclosure, Divider, Circle, Container as Container$1, List as List$1, ListItem, Icon, ListIcon, TableContainer, Table as Table$1, Thead, Tr, Th, Tbody, Td, TableCaption, Tabs as Tabs$1, TabList, Tab, TabPanels, TabPanel } from "@chakra-ui/react";
|
|
3
3
|
import { useTranslation } from "react-i18next";
|
|
4
|
-
import { A as Animation, b as formatNumber, c as getCurrencySymbol, f as formatDate, d as getDomain, g as getCurrentYear, a as getCurrentMonth } from "./index-
|
|
5
|
-
import { a as GameCharacteristic } from "./index-
|
|
4
|
+
import { A as Animation, b as formatNumber, c as getCurrencySymbol, f as formatDate, d as getDomain, g as getCurrentYear, a as getCurrentMonth } from "./index-BqUBNm7v.mjs";
|
|
5
|
+
import { a as GameCharacteristic } from "./index-F6_fGeRI.mjs";
|
|
6
6
|
import "@ctrl/tinycolor";
|
|
7
7
|
import "@mdx-js/react";
|
|
8
8
|
import { u as useSiteContext } from "./index-BNb-P8a6.mjs";
|
|
@@ -89,7 +89,7 @@ const ColorMap = {
|
|
|
89
89
|
light: "gray.200",
|
|
90
90
|
dark: "gray.700"
|
|
91
91
|
};
|
|
92
|
-
const PulseButton = ({ label, colorScheme = "light", onClick }) => {
|
|
92
|
+
const PulseButton = ({ label, colorScheme = "light", to, onClick }) => {
|
|
93
93
|
return /* @__PURE__ */ jsx(
|
|
94
94
|
Button,
|
|
95
95
|
{
|
|
@@ -98,7 +98,7 @@ const PulseButton = ({ label, colorScheme = "light", onClick }) => {
|
|
|
98
98
|
bgColor: "brand.500",
|
|
99
99
|
animation: `${Animation.pulse} 2s infinite linear`,
|
|
100
100
|
_hover: { bgColor: "brand.200", color: "gray.700" },
|
|
101
|
-
onClick,
|
|
101
|
+
...to ? { as: Link, href: to } : { onClick },
|
|
102
102
|
children: label
|
|
103
103
|
}
|
|
104
104
|
);
|
|
@@ -121,9 +121,9 @@ const Author = ({ author, ...cardProps }) => {
|
|
|
121
121
|
};
|
|
122
122
|
const BonusCardContent = ({ content }) => {
|
|
123
123
|
const { t: t2 } = useTranslation("author");
|
|
124
|
-
return /* @__PURE__ */ jsx(Popover, {
|
|
124
|
+
return /* @__PURE__ */ jsx(Popover, { autoFocus: false, isLazy: true, lazyBehavior: "keepMounted", children: ({ isOpen }) => /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
125
125
|
/* @__PURE__ */ jsx(PopoverTrigger, { children: /* @__PURE__ */ jsx(Button, { size: "sm", variant: "link", color: "white", children: isOpen ? t2("action.collapse") : t2("action.expand") }) }),
|
|
126
|
-
/* @__PURE__ */ jsx(
|
|
126
|
+
/* @__PURE__ */ jsx(Portal, { children: /* @__PURE__ */ jsx(PopoverContent, { children: /* @__PURE__ */ jsx(PopoverBody, { children: Array.isArray(content) ? /* @__PURE__ */ jsx(Stack, { children: content.map((paragraph, index) => /* @__PURE__ */ jsx(Text, { as: "span", children: paragraph }, index)) }) : /* @__PURE__ */ jsx(Text, { children: content }) }) }) })
|
|
127
127
|
] }) });
|
|
128
128
|
};
|
|
129
129
|
const BonusCardTitle = ({ content }) => {
|
|
@@ -568,10 +568,13 @@ const Navigation$1 = ({ menu }) => {
|
|
|
568
568
|
);
|
|
569
569
|
};
|
|
570
570
|
const Footer = () => {
|
|
571
|
-
var _a, _b;
|
|
571
|
+
var _a, _b, _c;
|
|
572
572
|
const { configs } = useSiteContext();
|
|
573
573
|
const navigation = ((_a = configs == null ? void 0 : configs.footer) == null ? void 0 : _a.navigation) ?? [];
|
|
574
574
|
const extra = (_b = configs == null ? void 0 : configs.footer) == null ? void 0 : _b.extra;
|
|
575
|
+
const showDisclaimer = ((_c = configs == null ? void 0 : configs.footer) == null ? void 0 : _c.showDisclaimer) ?? true;
|
|
576
|
+
const hasNavigation = !!navigation.length;
|
|
577
|
+
const hasExtra = !!extra;
|
|
575
578
|
return /* @__PURE__ */ jsx(
|
|
576
579
|
Box,
|
|
577
580
|
{
|
|
@@ -580,9 +583,9 @@ const Footer = () => {
|
|
|
580
583
|
color: useColorModeValue("gray.700", "gray.200"),
|
|
581
584
|
py: 4,
|
|
582
585
|
children: /* @__PURE__ */ jsxs(Container, { children: [
|
|
583
|
-
/* @__PURE__ */ jsx(Navigation$1, { menu: navigation }),
|
|
584
|
-
|
|
585
|
-
/* @__PURE__ */ jsx(Disclaimer, {}),
|
|
586
|
+
hasNavigation && /* @__PURE__ */ jsx(Navigation$1, { menu: navigation }),
|
|
587
|
+
hasExtra && /* @__PURE__ */ jsx(Extra, { children: extra }),
|
|
588
|
+
showDisclaimer && /* @__PURE__ */ jsx(Disclaimer, {}),
|
|
586
589
|
/* @__PURE__ */ jsx(Brand$1, { brand: /* @__PURE__ */ jsx(Logo, {}) }),
|
|
587
590
|
/* @__PURE__ */ jsx(Copyright, {})
|
|
588
591
|
] })
|
|
@@ -733,7 +736,7 @@ const Header = () => {
|
|
|
733
736
|
const navigation = ((_a = configs == null ? void 0 : configs.header) == null ? void 0 : _a.navigation) ?? [];
|
|
734
737
|
const toolbar = (_b = configs == null ? void 0 : configs.header) == null ? void 0 : _b.toolbar;
|
|
735
738
|
const hasToolbar = !!toolbar;
|
|
736
|
-
const hasNavigation = navigation.length;
|
|
739
|
+
const hasNavigation = !!navigation.length;
|
|
737
740
|
return /* @__PURE__ */ jsx(
|
|
738
741
|
Box,
|
|
739
742
|
{
|
|
@@ -33,7 +33,7 @@ var GameCharacteristic = /* @__PURE__ */ ((GameCharacteristic2) => {
|
|
|
33
33
|
GameCharacteristic2["Functions"] = "FUNCTIONS";
|
|
34
34
|
return GameCharacteristic2;
|
|
35
35
|
})(GameCharacteristic || {});
|
|
36
|
-
const pageNotFound$
|
|
36
|
+
const pageNotFound$3 = {
|
|
37
37
|
seo: {
|
|
38
38
|
title: "Seite nicht gefunden | {{domain}}"
|
|
39
39
|
},
|
|
@@ -41,14 +41,14 @@ const pageNotFound$2 = {
|
|
|
41
41
|
description: "Entschuldigung 😔, wir konnten nicht finden, wonach Sie gesucht haben.",
|
|
42
42
|
action: "Zur Startseite"
|
|
43
43
|
};
|
|
44
|
-
const footer$
|
|
44
|
+
const footer$3 = {
|
|
45
45
|
copyright: "© {{year}} {{domain}}. Alle Rechte vorbehalten.",
|
|
46
46
|
disclaimer: {
|
|
47
47
|
title: "Spielen Sie verantwortungsbewusst: ",
|
|
48
48
|
description: "{{domain}} ist eine unabhängige Ressource und nicht mit den von uns beworbenen Seiten verbunden. Stellen Sie sicher, dass Sie über alle erforderlichen Zertifikate verfügen und die gesetzlichen Anforderungen erfüllt sind, bevor Sie mit dem Spielen beginnen. Der Hauptzweck von {{domain}} besteht darin, informative und unterhaltsame Inhalte bereitzustellen. Wenn Sie nach Links zu verwandten Ressourcen suchen, werden Sie zu den entsprechenden Plattformen weitergeleitet."
|
|
49
49
|
}
|
|
50
50
|
};
|
|
51
|
-
const gameDemo$
|
|
51
|
+
const gameDemo$3 = {
|
|
52
52
|
warning: "Ihr Browser ist zu alt, um das iframe-Element anzuzeigen.",
|
|
53
53
|
action: {
|
|
54
54
|
playForFree: "Kostenlos spielen",
|
|
@@ -56,7 +56,7 @@ const gameDemo$2 = {
|
|
|
56
56
|
deactivateFullscreen: "Vollbildmodus deaktivieren"
|
|
57
57
|
}
|
|
58
58
|
};
|
|
59
|
-
const gameInfo$
|
|
59
|
+
const gameInfo$3 = {
|
|
60
60
|
title: "Spielinfo",
|
|
61
61
|
group: {
|
|
62
62
|
general: "Allgemeine Eigenschaften",
|
|
@@ -100,18 +100,18 @@ const gameInfo$2 = {
|
|
|
100
100
|
}
|
|
101
101
|
}
|
|
102
102
|
};
|
|
103
|
-
const prosCons$
|
|
103
|
+
const prosCons$3 = {
|
|
104
104
|
advantages: "Vorteile",
|
|
105
105
|
disadvantages: "Nachteile"
|
|
106
106
|
};
|
|
107
|
-
const author$
|
|
107
|
+
const author$3 = {
|
|
108
108
|
title: "Veröffentlicht von",
|
|
109
109
|
action: {
|
|
110
110
|
expand: "Mehr anzeigen",
|
|
111
111
|
collapse: "Ausblenden"
|
|
112
112
|
}
|
|
113
113
|
};
|
|
114
|
-
const contactForm$
|
|
114
|
+
const contactForm$3 = {
|
|
115
115
|
field: {
|
|
116
116
|
name: {
|
|
117
117
|
label: "Name",
|
|
@@ -134,23 +134,23 @@ const contactForm$2 = {
|
|
|
134
134
|
send: "Nachricht senden"
|
|
135
135
|
}
|
|
136
136
|
};
|
|
137
|
-
const bonusCard$
|
|
137
|
+
const bonusCard$3 = {
|
|
138
138
|
action: {
|
|
139
139
|
expand: "Mehr erfahren",
|
|
140
140
|
collapse: "Ausblenden"
|
|
141
141
|
}
|
|
142
142
|
};
|
|
143
|
-
const dictionary$
|
|
144
|
-
pageNotFound: pageNotFound$
|
|
145
|
-
footer: footer$
|
|
146
|
-
gameDemo: gameDemo$
|
|
147
|
-
gameInfo: gameInfo$
|
|
148
|
-
prosCons: prosCons$
|
|
149
|
-
author: author$
|
|
150
|
-
contactForm: contactForm$
|
|
151
|
-
bonusCard: bonusCard$
|
|
143
|
+
const dictionary$3 = {
|
|
144
|
+
pageNotFound: pageNotFound$3,
|
|
145
|
+
footer: footer$3,
|
|
146
|
+
gameDemo: gameDemo$3,
|
|
147
|
+
gameInfo: gameInfo$3,
|
|
148
|
+
prosCons: prosCons$3,
|
|
149
|
+
author: author$3,
|
|
150
|
+
contactForm: contactForm$3,
|
|
151
|
+
bonusCard: bonusCard$3
|
|
152
152
|
};
|
|
153
|
-
const pageNotFound$
|
|
153
|
+
const pageNotFound$2 = {
|
|
154
154
|
seo: {
|
|
155
155
|
title: "Page not found | {{domain}}"
|
|
156
156
|
},
|
|
@@ -158,14 +158,14 @@ const pageNotFound$1 = {
|
|
|
158
158
|
description: "Sorry 😔, we couldn’t find what you were looking for.",
|
|
159
159
|
action: "Go Home"
|
|
160
160
|
};
|
|
161
|
-
const footer$
|
|
161
|
+
const footer$2 = {
|
|
162
162
|
copyright: "© {{year}} {{domain}}. All rights reserved.",
|
|
163
163
|
disclaimer: {
|
|
164
164
|
title: "Play responsibly: ",
|
|
165
165
|
description: "{{domain}} is an independent resource not affiliated with the sites we promote. Make sure you have all the necessary certifications and legal requirements are met before you start playing. The main purpose of {{domain}} is to provide informative and entertaining content. If you are looking for links to related resources, you will be redirected to the relevant platforms."
|
|
166
166
|
}
|
|
167
167
|
};
|
|
168
|
-
const gameDemo$
|
|
168
|
+
const gameDemo$2 = {
|
|
169
169
|
warning: "Your browser is too old to display the iframe element",
|
|
170
170
|
action: {
|
|
171
171
|
playForFree: "Play for Free",
|
|
@@ -173,7 +173,7 @@ const gameDemo$1 = {
|
|
|
173
173
|
deactivateFullscreen: "Deactivate Fullscreen mode"
|
|
174
174
|
}
|
|
175
175
|
};
|
|
176
|
-
const gameInfo$
|
|
176
|
+
const gameInfo$2 = {
|
|
177
177
|
title: "Game Info",
|
|
178
178
|
group: {
|
|
179
179
|
general: "General Characteristics",
|
|
@@ -217,18 +217,18 @@ const gameInfo$1 = {
|
|
|
217
217
|
}
|
|
218
218
|
}
|
|
219
219
|
};
|
|
220
|
-
const prosCons$
|
|
220
|
+
const prosCons$2 = {
|
|
221
221
|
advantages: "Advantages",
|
|
222
222
|
disadvantages: "Disadvantages"
|
|
223
223
|
};
|
|
224
|
-
const author$
|
|
224
|
+
const author$2 = {
|
|
225
225
|
title: "Published by",
|
|
226
226
|
action: {
|
|
227
227
|
expand: "Show more",
|
|
228
228
|
collapse: "Hide"
|
|
229
229
|
}
|
|
230
230
|
};
|
|
231
|
-
const contactForm$
|
|
231
|
+
const contactForm$2 = {
|
|
232
232
|
field: {
|
|
233
233
|
name: {
|
|
234
234
|
label: "Name",
|
|
@@ -251,23 +251,23 @@ const contactForm$1 = {
|
|
|
251
251
|
send: "Send Message"
|
|
252
252
|
}
|
|
253
253
|
};
|
|
254
|
-
const bonusCard$
|
|
254
|
+
const bonusCard$2 = {
|
|
255
255
|
action: {
|
|
256
256
|
expand: "Learn more",
|
|
257
257
|
collapse: "Hide"
|
|
258
258
|
}
|
|
259
259
|
};
|
|
260
|
-
const dictionary$
|
|
261
|
-
pageNotFound: pageNotFound$
|
|
262
|
-
footer: footer$
|
|
263
|
-
gameDemo: gameDemo$
|
|
264
|
-
gameInfo: gameInfo$
|
|
265
|
-
prosCons: prosCons$
|
|
266
|
-
author: author$
|
|
267
|
-
contactForm: contactForm$
|
|
268
|
-
bonusCard: bonusCard$
|
|
260
|
+
const dictionary$2 = {
|
|
261
|
+
pageNotFound: pageNotFound$2,
|
|
262
|
+
footer: footer$2,
|
|
263
|
+
gameDemo: gameDemo$2,
|
|
264
|
+
gameInfo: gameInfo$2,
|
|
265
|
+
prosCons: prosCons$2,
|
|
266
|
+
author: author$2,
|
|
267
|
+
contactForm: contactForm$2,
|
|
268
|
+
bonusCard: bonusCard$2
|
|
269
269
|
};
|
|
270
|
-
const pageNotFound = {
|
|
270
|
+
const pageNotFound$1 = {
|
|
271
271
|
seo: {
|
|
272
272
|
title: "Pagina non trovata | {{domain}}"
|
|
273
273
|
},
|
|
@@ -275,14 +275,14 @@ const pageNotFound = {
|
|
|
275
275
|
description: "Spiacenti 😔, non siamo riusciti a trovare quello che cercavi.",
|
|
276
276
|
action: "Ritorna alla pagina principale"
|
|
277
277
|
};
|
|
278
|
-
const footer = {
|
|
278
|
+
const footer$1 = {
|
|
279
279
|
copyright: "© {{year}} {{domain}}. Tutte le cose sono fatte.",
|
|
280
280
|
disclaimer: {
|
|
281
281
|
title: "Gioca responsabilmente: ",
|
|
282
282
|
description: "{{domain}} è una risorsa indipendente e non affiliata ai siti che promuoviamo. Prima di iniziare a giocare, assicurati di possedere tutte le certificazioni necessarie e di rispettare i requisiti legali in vigore. L'obiettivo principale di {{domain}} è offrire contenuti informativi e di intrattenimento. Se cerchi collegamenti a risorse correlate, verrai reindirizzato alle piattaforme pertinenti."
|
|
283
283
|
}
|
|
284
284
|
};
|
|
285
|
-
const gameDemo = {
|
|
285
|
+
const gameDemo$1 = {
|
|
286
286
|
warning: "Il tuo browser è troppo vecchio per visualizzare l'elemento iframe",
|
|
287
287
|
action: {
|
|
288
288
|
playForFree: "Gioca gratis",
|
|
@@ -290,7 +290,7 @@ const gameDemo = {
|
|
|
290
290
|
deactivateFullscreen: "Disattiva la modalità a schermo intero"
|
|
291
291
|
}
|
|
292
292
|
};
|
|
293
|
-
const gameInfo = {
|
|
293
|
+
const gameInfo$1 = {
|
|
294
294
|
title: "Informazioni sul gioco",
|
|
295
295
|
group: {
|
|
296
296
|
general: "Caratteristiche principali",
|
|
@@ -334,18 +334,18 @@ const gameInfo = {
|
|
|
334
334
|
}
|
|
335
335
|
}
|
|
336
336
|
};
|
|
337
|
-
const prosCons = {
|
|
337
|
+
const prosCons$1 = {
|
|
338
338
|
advantages: "Vantaggi",
|
|
339
339
|
disadvantages: "Svantaggi"
|
|
340
340
|
};
|
|
341
|
-
const author = {
|
|
341
|
+
const author$1 = {
|
|
342
342
|
title: "Informazioni sull'autore",
|
|
343
343
|
action: {
|
|
344
344
|
expand: "Mostra per intero",
|
|
345
345
|
collapse: "Nascondi"
|
|
346
346
|
}
|
|
347
347
|
};
|
|
348
|
-
const contactForm = {
|
|
348
|
+
const contactForm$1 = {
|
|
349
349
|
field: {
|
|
350
350
|
name: {
|
|
351
351
|
label: "Nome",
|
|
@@ -368,12 +368,129 @@ const contactForm = {
|
|
|
368
368
|
send: "Invia Messaggio"
|
|
369
369
|
}
|
|
370
370
|
};
|
|
371
|
-
const bonusCard = {
|
|
371
|
+
const bonusCard$1 = {
|
|
372
372
|
action: {
|
|
373
373
|
expand: "Scopri di più",
|
|
374
374
|
collapse: "Nascondi"
|
|
375
375
|
}
|
|
376
376
|
};
|
|
377
|
+
const dictionary$1 = {
|
|
378
|
+
pageNotFound: pageNotFound$1,
|
|
379
|
+
footer: footer$1,
|
|
380
|
+
gameDemo: gameDemo$1,
|
|
381
|
+
gameInfo: gameInfo$1,
|
|
382
|
+
prosCons: prosCons$1,
|
|
383
|
+
author: author$1,
|
|
384
|
+
contactForm: contactForm$1,
|
|
385
|
+
bonusCard: bonusCard$1
|
|
386
|
+
};
|
|
387
|
+
const pageNotFound = {
|
|
388
|
+
seo: {
|
|
389
|
+
title: "Страница не найдена | {{domain}}"
|
|
390
|
+
},
|
|
391
|
+
title: "404 — Страница не найдена",
|
|
392
|
+
description: "Извините 😔, мы не смогли найти то, что вы искали.",
|
|
393
|
+
action: "На главную"
|
|
394
|
+
};
|
|
395
|
+
const footer = {
|
|
396
|
+
copyright: "© {{year}} {{domain}}. Все права защищены.",
|
|
397
|
+
disclaimer: {
|
|
398
|
+
title: "Играйте ответственно: ",
|
|
399
|
+
description: "{{domain}} — независимый ресурс, не связанный с продвигаемыми сайтами. Убедитесь, что у вас есть все необходимые сертификаты и соблюдены юридические требования перед началом игры. Основная цель {{domain}} — предоставление информационного и развлекательного контента. Если вы ищете ссылки на связанные ресурсы, вас перенаправят на соответствующие платформы."
|
|
400
|
+
}
|
|
401
|
+
};
|
|
402
|
+
const gameDemo = {
|
|
403
|
+
warning: "Ваш браузер слишком устарел для отображения элемента iframe",
|
|
404
|
+
action: {
|
|
405
|
+
playForFree: "Играть бесплатно",
|
|
406
|
+
activateFullscreen: "Включить полноэкранный режим",
|
|
407
|
+
deactivateFullscreen: "Выключить полноэкранный режим"
|
|
408
|
+
}
|
|
409
|
+
};
|
|
410
|
+
const gameInfo = {
|
|
411
|
+
title: "Информация об игре",
|
|
412
|
+
group: {
|
|
413
|
+
general: "Основные характеристики",
|
|
414
|
+
features: "Особенности игры"
|
|
415
|
+
},
|
|
416
|
+
feature: {
|
|
417
|
+
[GameCharacteristic.BonusFeatures]: "Бонусные функции",
|
|
418
|
+
[GameCharacteristic.Compatibility]: "Совместимость",
|
|
419
|
+
[GameCharacteristic.Functions]: "Функции",
|
|
420
|
+
[GameCharacteristic.Developer]: "Разработчик",
|
|
421
|
+
[GameCharacteristic.HasAutoplay]: "Автоигра",
|
|
422
|
+
[GameCharacteristic.HasBonusPurchase]: "Покупка бонуса",
|
|
423
|
+
[GameCharacteristic.HasCollectionSymbols]: "Символы коллекции",
|
|
424
|
+
[GameCharacteristic.HasDemo]: "Демо-версия",
|
|
425
|
+
[GameCharacteristic.HasFastSpin]: "Быстрый спин",
|
|
426
|
+
[GameCharacteristic.HasFreeSpins]: "Фриспины",
|
|
427
|
+
[GameCharacteristic.HasProgressiveJackpot]: "Прогрессивный джекпот",
|
|
428
|
+
[GameCharacteristic.Languages]: "Языки",
|
|
429
|
+
[GameCharacteristic.MaxWin]: "Максимальный выигрыш",
|
|
430
|
+
[GameCharacteristic.MaxBet]: "Максимальная ставка",
|
|
431
|
+
[GameCharacteristic.MinBet]: "Минимальная ставка",
|
|
432
|
+
[GameCharacteristic.Name]: "Название",
|
|
433
|
+
[GameCharacteristic.PayLines]: "Количество линий выплат",
|
|
434
|
+
[GameCharacteristic.ReelsNumber]: "Количество барабанов",
|
|
435
|
+
[GameCharacteristic.ReleaseDate]: "Дата выхода",
|
|
436
|
+
[GameCharacteristic.RowsWithPins]: "Количество рядов с пинами",
|
|
437
|
+
[GameCharacteristic.Rtp]: "RTP",
|
|
438
|
+
[GameCharacteristic.Theme]: "Тема",
|
|
439
|
+
[GameCharacteristic.Type]: "Тип",
|
|
440
|
+
[GameCharacteristic.Volatility]: "Волатильность"
|
|
441
|
+
},
|
|
442
|
+
value: {
|
|
443
|
+
boolean: {
|
|
444
|
+
true: "Есть",
|
|
445
|
+
false: "Нет"
|
|
446
|
+
},
|
|
447
|
+
volatility: {
|
|
448
|
+
[GameVolatility.High]: "Высокая",
|
|
449
|
+
[GameVolatility.Medium]: "Средняя",
|
|
450
|
+
[GameVolatility.Low]: "Низкая"
|
|
451
|
+
}
|
|
452
|
+
}
|
|
453
|
+
};
|
|
454
|
+
const prosCons = {
|
|
455
|
+
advantages: "Преимущества",
|
|
456
|
+
disadvantages: "Недостатки"
|
|
457
|
+
};
|
|
458
|
+
const author = {
|
|
459
|
+
title: "Автор",
|
|
460
|
+
action: {
|
|
461
|
+
expand: "Показать больше",
|
|
462
|
+
collapse: "Скрыть"
|
|
463
|
+
}
|
|
464
|
+
};
|
|
465
|
+
const contactForm = {
|
|
466
|
+
field: {
|
|
467
|
+
name: {
|
|
468
|
+
label: "Имя",
|
|
469
|
+
placeholder: "Ваше имя"
|
|
470
|
+
},
|
|
471
|
+
email: {
|
|
472
|
+
label: "Email",
|
|
473
|
+
placeholder: "Ваш Email"
|
|
474
|
+
},
|
|
475
|
+
message: {
|
|
476
|
+
label: "Сообщение",
|
|
477
|
+
placeholder: "Ваше сообщение"
|
|
478
|
+
}
|
|
479
|
+
},
|
|
480
|
+
notification: {
|
|
481
|
+
title: "{{name}}, спасибо за ваш отзыв!",
|
|
482
|
+
description: "Мы свяжемся с вами по адресу {{email}} как можно скорее."
|
|
483
|
+
},
|
|
484
|
+
action: {
|
|
485
|
+
send: "Отправить сообщение"
|
|
486
|
+
}
|
|
487
|
+
};
|
|
488
|
+
const bonusCard = {
|
|
489
|
+
action: {
|
|
490
|
+
expand: "Подробнее",
|
|
491
|
+
collapse: "Скрыть"
|
|
492
|
+
}
|
|
493
|
+
};
|
|
377
494
|
const dictionary = {
|
|
378
495
|
pageNotFound,
|
|
379
496
|
footer,
|
|
@@ -385,9 +502,10 @@ const dictionary = {
|
|
|
385
502
|
bonusCard
|
|
386
503
|
};
|
|
387
504
|
const resources = {
|
|
388
|
-
en: dictionary$
|
|
389
|
-
it: dictionary,
|
|
390
|
-
de: dictionary$
|
|
505
|
+
en: dictionary$2,
|
|
506
|
+
it: dictionary$1,
|
|
507
|
+
de: dictionary$3,
|
|
508
|
+
ru: dictionary
|
|
391
509
|
};
|
|
392
510
|
const DEFAULT_LANGUAGE = "en";
|
|
393
511
|
i18n.use(initReactI18next).init({
|
package/dist/index.cjs
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
-
const index = require("./index-
|
|
3
|
+
const index = require("./index-BR5dWoW7.js");
|
|
4
4
|
const index$1 = require("./index-IpSV-c71.js");
|
|
5
|
-
const i18n$1 = require("./index-
|
|
5
|
+
const i18n$1 = require("./index-BEqFPNAt.js");
|
|
6
6
|
const index$2 = require("./index-m97PmVsd.js");
|
|
7
7
|
const index$3 = require("./index-BhsXlbd8.js");
|
|
8
|
-
const index$4 = require("./index-
|
|
8
|
+
const index$4 = require("./index-D2APUOog.js");
|
|
9
9
|
const index$5 = require("./index-B-5oUop6.js");
|
|
10
10
|
const i18n = require("i18next");
|
|
11
11
|
exports.Author = index.Author;
|
package/dist/index.mjs
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { A, B, g, C, h, E, F, a, b, G, c, d, i, H, L, j, e, P, k, S, T, f } from "./index-
|
|
1
|
+
import { A, B, g, C, h, E, F, a, b, G, c, d, i, H, L, j, e, P, k, S, T, f } from "./index-BWm-60DT.mjs";
|
|
2
2
|
import { u } from "./index-xuSxvz5z.mjs";
|
|
3
|
-
import { a as a2, G as G2, r } from "./index-
|
|
3
|
+
import { a as a2, G as G2, r } from "./index-F6_fGeRI.mjs";
|
|
4
4
|
import { M } from "./index-C-e_0aJJ.mjs";
|
|
5
5
|
import { S as S2, u as u2 } from "./index-BNb-P8a6.mjs";
|
|
6
|
-
import { A as A2, f as f2, b as b2, c as c2, a as a3, g as g2, d as d2, p, r as r2, t } from "./index-
|
|
6
|
+
import { A as A2, f as f2, b as b2, c as c2, a as a3, g as g2, d as d2, p, r as r2, t } from "./index-BqUBNm7v.mjs";
|
|
7
7
|
import { e as e2, g as g3 } from "./index-BUx1Bxrs.mjs";
|
|
8
8
|
import { default as default2 } from "i18next";
|
|
9
9
|
export {
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export type LanguageCode = 'en' | 'it' | 'de';
|
|
2
|
-
export type Currency = 'USD' | 'EUR' | 'GBP';
|
|
1
|
+
export type LanguageCode = 'en' | 'it' | 'de' | 'ru';
|
|
2
|
+
export type Currency = 'USD' | 'EUR' | 'GBP' | 'RUB';
|
package/dist/utils/index.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
-
const index = require("../index-
|
|
3
|
+
const index = require("../index-D2APUOog.js");
|
|
4
4
|
const index$1 = require("../index-B-5oUop6.js");
|
|
5
5
|
exports.Animation = index.Animation;
|
|
6
6
|
exports.formatDate = index.formatDate;
|
package/dist/utils/index.mjs
CHANGED