@anywayseo/tools 1.0.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/LICENSE +21 -0
- package/README.md +62 -0
- package/dist/components/author/index.d.ts +8 -0
- package/dist/components/contact-form/index.d.ts +3 -0
- package/dist/components/expert/bio/index.d.ts +8 -0
- package/dist/components/expert/index.d.ts +8 -0
- package/dist/components/expert-tip/index.d.ts +9 -0
- package/dist/components/faq/index.d.ts +9 -0
- package/dist/components/features/index.d.ts +8 -0
- package/dist/components/game-demo/content/index.d.ts +10 -0
- package/dist/components/game-demo/index.d.ts +10 -0
- package/dist/components/game-demo/preview/index.d.ts +9 -0
- package/dist/components/game-info/index.d.ts +7 -0
- package/dist/components/game-info/item/index.d.ts +7 -0
- package/dist/components/game-info/utils.d.ts +2 -0
- package/dist/components/how-to/index.d.ts +8 -0
- package/dist/components/index.cjs +14 -0
- package/dist/components/index.d.ts +11 -0
- package/dist/components/index.mjs +14 -0
- package/dist/components/layout/content/index.d.ts +3 -0
- package/dist/components/layout/footer/brand/index.d.ts +6 -0
- package/dist/components/layout/footer/copyright/index.d.ts +3 -0
- package/dist/components/layout/footer/disclaimer/index.d.ts +3 -0
- package/dist/components/layout/footer/index.d.ts +3 -0
- package/dist/components/layout/footer/navigation/index.d.ts +3 -0
- package/dist/components/layout/header/index.d.ts +3 -0
- package/dist/components/layout/header/navbar/brand/index.d.ts +6 -0
- package/dist/components/layout/header/navbar/index.d.ts +6 -0
- package/dist/components/layout/header/navbar/navigation/desktop/index.d.ts +4 -0
- package/dist/components/layout/header/navbar/navigation/desktop/item/index.d.ts +5 -0
- package/dist/components/layout/header/navbar/navigation/index.d.ts +4 -0
- package/dist/components/layout/header/navbar/navigation/mobile/index.d.ts +4 -0
- package/dist/components/layout/header/navbar/navigation/mobile/item/index.d.ts +5 -0
- package/dist/components/layout/header/navbar/navigation/types.d.ts +4 -0
- package/dist/components/layout/header/navbar/theme-toggler/index.d.ts +3 -0
- package/dist/components/layout/hero/index.d.ts +9 -0
- package/dist/components/layout/index.d.ts +12 -0
- package/dist/components/layout/logo/index.d.ts +3 -0
- package/dist/components/layout/main/index.d.ts +3 -0
- package/dist/components/layout/scroll-to-top/index.d.ts +3 -0
- package/dist/components/pros-cons/card/index.d.ts +8 -0
- package/dist/components/pros-cons/card/utils.d.ts +6 -0
- package/dist/components/pros-cons/index.d.ts +8 -0
- package/dist/components/seo/index.d.ts +16 -0
- package/dist/hooks/index.cjs +4 -0
- package/dist/hooks/index.d.ts +1 -0
- package/dist/hooks/index.mjs +4 -0
- package/dist/hooks/use-primary-colors/index.d.ts +6 -0
- package/dist/i18n/index.cjs +7 -0
- package/dist/i18n/index.d.ts +9 -0
- package/dist/i18n/index.mjs +7 -0
- package/dist/i18n/resources/en/index.d.ts +99 -0
- package/dist/i18n/resources/index.d.ts +8 -0
- package/dist/i18n/resources/it/index.d.ts +99 -0
- package/dist/index-BWuTDC6H.js +17 -0
- package/dist/index-Bh5idiRE.mjs +257 -0
- package/dist/index-Bs4zA1wD.mjs +17 -0
- package/dist/index-BtWxmLHW.mjs +80 -0
- package/dist/index-D96zh94V.js +16 -0
- package/dist/index-DB1dS9cp.js +256 -0
- package/dist/index-Dfw_EKZ6.mjs +767 -0
- package/dist/index-IpSV-c71.js +8 -0
- package/dist/index-JMmaWcmu.js +79 -0
- package/dist/index-NWY9BnRg.js +766 -0
- package/dist/index-wbMOJRW_.mjs +18 -0
- package/dist/index-xuSxvz5z.mjs +9 -0
- package/dist/index.cjs +36 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.mjs +36 -0
- package/dist/providers/index.cjs +7 -0
- package/dist/providers/index.d.ts +2 -0
- package/dist/providers/index.mjs +7 -0
- package/dist/providers/mdx-provider/index.d.ts +3 -0
- package/dist/providers/site-metadata-provider/index.d.ts +14 -0
- package/dist/style.css +15 -0
- package/dist/types/author/index.d.ts +17 -0
- package/dist/types/faq/index.d.ts +4 -0
- package/dist/types/feature/index.d.ts +4 -0
- package/dist/types/game-info/index.d.ts +63 -0
- package/dist/types/how-to/index.d.ts +5 -0
- package/dist/types/i18n/index.d.ts +2 -0
- package/dist/types/index.d.ts +9 -0
- package/dist/types/navigation/index.d.ts +9 -0
- package/dist/types/pros-cons/index.d.ts +6 -0
- package/dist/types/site-metadata/index.d.ts +10 -0
- package/dist/utils/date/index.d.ts +9 -0
- package/dist/utils/index.cjs +11 -0
- package/dist/utils/index.d.ts +3 -0
- package/dist/utils/index.mjs +11 -0
- package/dist/utils/numbers/index.d.ts +19 -0
- package/dist/utils/numbers/types.d.ts +1 -0
- package/dist/utils/url/index.d.ts +1 -0
- package/package.json +99 -0
|
@@ -0,0 +1,256 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
const reactI18next = require("react-i18next");
|
|
3
|
+
const i18n = require("i18next");
|
|
4
|
+
var GameVolatility = /* @__PURE__ */ ((GameVolatility2) => {
|
|
5
|
+
GameVolatility2["High"] = "HIGH";
|
|
6
|
+
GameVolatility2["Medium"] = "MEDIUM";
|
|
7
|
+
GameVolatility2["Low"] = "LOW";
|
|
8
|
+
return GameVolatility2;
|
|
9
|
+
})(GameVolatility || {});
|
|
10
|
+
var GameCharacteristic = /* @__PURE__ */ ((GameCharacteristic2) => {
|
|
11
|
+
GameCharacteristic2["Name"] = "NAME";
|
|
12
|
+
GameCharacteristic2["Developer"] = "DEVELOPER";
|
|
13
|
+
GameCharacteristic2["ReleaseDate"] = "RELEASE_DATE";
|
|
14
|
+
GameCharacteristic2["Theme"] = "THEME";
|
|
15
|
+
GameCharacteristic2["Type"] = "TYPE";
|
|
16
|
+
GameCharacteristic2["Rtp"] = "RTP";
|
|
17
|
+
GameCharacteristic2["Volatility"] = "VOLATILITY";
|
|
18
|
+
GameCharacteristic2["ReelsNumber"] = "REELS_NUMBER";
|
|
19
|
+
GameCharacteristic2["PayLines"] = "PAY_LINES";
|
|
20
|
+
GameCharacteristic2["MinBet"] = "MIN_BET";
|
|
21
|
+
GameCharacteristic2["MaxBet"] = "MAX_BET";
|
|
22
|
+
GameCharacteristic2["MaxWin"] = "MAX_WIN";
|
|
23
|
+
GameCharacteristic2["Compatibility"] = "COMPATIBILITY";
|
|
24
|
+
GameCharacteristic2["HasDemo"] = "HAS_DEMO";
|
|
25
|
+
GameCharacteristic2["HasAutoplay"] = "HAS_AUTOPLAY";
|
|
26
|
+
GameCharacteristic2["HasFreeSpins"] = "HAS_FREE_SPINS";
|
|
27
|
+
GameCharacteristic2["HasFastSpin"] = "HAS_FAST_SPIN";
|
|
28
|
+
GameCharacteristic2["HasBonusPurchase"] = "HAS_BONUS_PURCHASE";
|
|
29
|
+
GameCharacteristic2["HasCollectionSymbols"] = "HAS_COLLECTION_SYMBOLS";
|
|
30
|
+
GameCharacteristic2["HasProgressiveJackpot"] = "HAS_PROGRESSIVE_JACKPOT";
|
|
31
|
+
GameCharacteristic2["BonusFeatures"] = "BONUS_FEATURES";
|
|
32
|
+
GameCharacteristic2["Languages"] = "LANGUAGES";
|
|
33
|
+
return GameCharacteristic2;
|
|
34
|
+
})(GameCharacteristic || {});
|
|
35
|
+
const pageNotFound$1 = {
|
|
36
|
+
title: "404 — Page not found",
|
|
37
|
+
description: "Sorry 😔, we couldn’t find what you were looking for.",
|
|
38
|
+
action: "Go Home"
|
|
39
|
+
};
|
|
40
|
+
const footer$1 = {
|
|
41
|
+
copyright: "© {{year}} {{domain}}. All rights reserved.",
|
|
42
|
+
disclaimer: {
|
|
43
|
+
title: "Play responsibly: ",
|
|
44
|
+
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."
|
|
45
|
+
}
|
|
46
|
+
};
|
|
47
|
+
const gameDemo$1 = {
|
|
48
|
+
warning: "Your browser is too old to display the iframe element",
|
|
49
|
+
action: {
|
|
50
|
+
playForFree: "Play for Free",
|
|
51
|
+
activateFullscreen: "Activate Fullscreen mode",
|
|
52
|
+
deactivateFullscreen: "Deactivate Fullscreen mode"
|
|
53
|
+
}
|
|
54
|
+
};
|
|
55
|
+
const gameInfo$1 = {
|
|
56
|
+
title: "Game Info",
|
|
57
|
+
group: {
|
|
58
|
+
general: "General Characteristics",
|
|
59
|
+
features: "Game Features"
|
|
60
|
+
},
|
|
61
|
+
feature: {
|
|
62
|
+
[GameCharacteristic.BonusFeatures]: "Bonus Features",
|
|
63
|
+
[GameCharacteristic.Compatibility]: "Compatibility",
|
|
64
|
+
[GameCharacteristic.Developer]: "Developer",
|
|
65
|
+
[GameCharacteristic.HasAutoplay]: "Autoplay",
|
|
66
|
+
[GameCharacteristic.HasBonusPurchase]: "Bonus Purchase",
|
|
67
|
+
[GameCharacteristic.HasCollectionSymbols]: "Collection Symbols",
|
|
68
|
+
[GameCharacteristic.HasDemo]: "Demo Version",
|
|
69
|
+
[GameCharacteristic.HasFastSpin]: "Fast Spin",
|
|
70
|
+
[GameCharacteristic.HasFreeSpins]: "Free Spins",
|
|
71
|
+
[GameCharacteristic.HasProgressiveJackpot]: "Progressive Jackpot",
|
|
72
|
+
[GameCharacteristic.Languages]: "Languages",
|
|
73
|
+
[GameCharacteristic.MaxWin]: "Max Win",
|
|
74
|
+
[GameCharacteristic.MaxBet]: "Max Bet",
|
|
75
|
+
[GameCharacteristic.MinBet]: "Min Bet",
|
|
76
|
+
[GameCharacteristic.Name]: "Name",
|
|
77
|
+
[GameCharacteristic.PayLines]: "Pay Lines Number",
|
|
78
|
+
[GameCharacteristic.ReelsNumber]: "Reels Number",
|
|
79
|
+
[GameCharacteristic.ReleaseDate]: "Release Date",
|
|
80
|
+
[GameCharacteristic.Rtp]: "RTP",
|
|
81
|
+
[GameCharacteristic.Theme]: "Theme",
|
|
82
|
+
[GameCharacteristic.Type]: "Type",
|
|
83
|
+
[GameCharacteristic.Volatility]: "Volatility"
|
|
84
|
+
},
|
|
85
|
+
value: {
|
|
86
|
+
boolean: {
|
|
87
|
+
true: "Yes",
|
|
88
|
+
false: "No"
|
|
89
|
+
},
|
|
90
|
+
volatility: {
|
|
91
|
+
[GameVolatility.High]: "High",
|
|
92
|
+
[GameVolatility.Medium]: "Medium",
|
|
93
|
+
[GameVolatility.Low]: "Low"
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
};
|
|
97
|
+
const prosCons$1 = {
|
|
98
|
+
advantages: "Advantages",
|
|
99
|
+
disadvantages: "Disadvantages"
|
|
100
|
+
};
|
|
101
|
+
const author$1 = {
|
|
102
|
+
title: "Published by",
|
|
103
|
+
action: {
|
|
104
|
+
expand: "Show more",
|
|
105
|
+
collapse: "Hide"
|
|
106
|
+
}
|
|
107
|
+
};
|
|
108
|
+
const contactForm$1 = {
|
|
109
|
+
field: {
|
|
110
|
+
name: {
|
|
111
|
+
label: "Name",
|
|
112
|
+
placeholder: "Your Name"
|
|
113
|
+
},
|
|
114
|
+
email: {
|
|
115
|
+
label: "Email",
|
|
116
|
+
placeholder: "Your Email"
|
|
117
|
+
},
|
|
118
|
+
message: {
|
|
119
|
+
label: "Message",
|
|
120
|
+
placeholder: "Your Message"
|
|
121
|
+
}
|
|
122
|
+
},
|
|
123
|
+
notification: {
|
|
124
|
+
title: "{{name}}, thank you for your feedback!",
|
|
125
|
+
description: "We will get back to you at {{email}} as soon as possible."
|
|
126
|
+
},
|
|
127
|
+
action: {
|
|
128
|
+
send: "Send Message"
|
|
129
|
+
}
|
|
130
|
+
};
|
|
131
|
+
const dictionary$1 = {
|
|
132
|
+
pageNotFound: pageNotFound$1,
|
|
133
|
+
footer: footer$1,
|
|
134
|
+
gameDemo: gameDemo$1,
|
|
135
|
+
gameInfo: gameInfo$1,
|
|
136
|
+
prosCons: prosCons$1,
|
|
137
|
+
author: author$1,
|
|
138
|
+
contactForm: contactForm$1
|
|
139
|
+
};
|
|
140
|
+
const pageNotFound = {
|
|
141
|
+
title: "404 — Pagina non trovata",
|
|
142
|
+
description: "Spiacenti 😔, non siamo riusciti a trovare quello che cercavi.",
|
|
143
|
+
action: "Ritorna alla pagina principale"
|
|
144
|
+
};
|
|
145
|
+
const footer = {
|
|
146
|
+
copyright: "© {{year}} {{domain}}. Tutte le cose sono fatte.",
|
|
147
|
+
disclaimer: {
|
|
148
|
+
title: "Gioca responsabilmente: ",
|
|
149
|
+
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."
|
|
150
|
+
}
|
|
151
|
+
};
|
|
152
|
+
const gameDemo = {
|
|
153
|
+
warning: "Il tuo browser è troppo vecchio per visualizzare l'elemento iframe",
|
|
154
|
+
action: {
|
|
155
|
+
playForFree: "Gioca gratis",
|
|
156
|
+
activateFullscreen: "Attiva la modalità a schermo intero",
|
|
157
|
+
deactivateFullscreen: "Disattiva la modalità a schermo intero"
|
|
158
|
+
}
|
|
159
|
+
};
|
|
160
|
+
const gameInfo = {
|
|
161
|
+
title: "Informazioni sul gioco",
|
|
162
|
+
group: {
|
|
163
|
+
general: "Caratteristiche principali",
|
|
164
|
+
features: "Gioco e funzionalità "
|
|
165
|
+
},
|
|
166
|
+
feature: {
|
|
167
|
+
[GameCharacteristic.BonusFeatures]: "Funzionalità Bonus",
|
|
168
|
+
[GameCharacteristic.Compatibility]: "Compatibilità ",
|
|
169
|
+
[GameCharacteristic.Developer]: "Sviluppatore",
|
|
170
|
+
[GameCharacteristic.HasAutoplay]: "Autoplay",
|
|
171
|
+
[GameCharacteristic.HasBonusPurchase]: "Acquisto Bonus",
|
|
172
|
+
[GameCharacteristic.HasCollectionSymbols]: "Simboli da Collezione",
|
|
173
|
+
[GameCharacteristic.HasDemo]: "Versione Demo",
|
|
174
|
+
[GameCharacteristic.HasFastSpin]: "Spin Veloce",
|
|
175
|
+
[GameCharacteristic.HasFreeSpins]: "Giri Gratuiti",
|
|
176
|
+
[GameCharacteristic.HasProgressiveJackpot]: "Jackpot Progressivo",
|
|
177
|
+
[GameCharacteristic.Languages]: "Lingue",
|
|
178
|
+
[GameCharacteristic.MaxWin]: "Vincita Massima",
|
|
179
|
+
[GameCharacteristic.MaxBet]: "Puntata Massima",
|
|
180
|
+
[GameCharacteristic.MinBet]: "Puntata Minima",
|
|
181
|
+
[GameCharacteristic.Name]: "Nome",
|
|
182
|
+
[GameCharacteristic.PayLines]: "Numero di Linee di Pagamento",
|
|
183
|
+
[GameCharacteristic.ReelsNumber]: "Numero di Rulli",
|
|
184
|
+
[GameCharacteristic.ReleaseDate]: "Data di Rilascio",
|
|
185
|
+
[GameCharacteristic.Rtp]: "RTP",
|
|
186
|
+
[GameCharacteristic.Theme]: "Tema",
|
|
187
|
+
[GameCharacteristic.Type]: "Tipo",
|
|
188
|
+
[GameCharacteristic.Volatility]: "Volatilità "
|
|
189
|
+
},
|
|
190
|
+
value: {
|
|
191
|
+
boolean: {
|
|
192
|
+
true: "Sì",
|
|
193
|
+
false: "No"
|
|
194
|
+
},
|
|
195
|
+
volatility: {
|
|
196
|
+
[GameVolatility.High]: "Alta",
|
|
197
|
+
[GameVolatility.Medium]: "Media",
|
|
198
|
+
[GameVolatility.Low]: "Bassa"
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
};
|
|
202
|
+
const prosCons = {
|
|
203
|
+
advantages: "Vantaggi",
|
|
204
|
+
disadvantages: "Svantaggi"
|
|
205
|
+
};
|
|
206
|
+
const author = {
|
|
207
|
+
title: "Informazioni sull'autore",
|
|
208
|
+
action: {
|
|
209
|
+
expand: "Mostra per intero",
|
|
210
|
+
collapse: "Nascondere"
|
|
211
|
+
}
|
|
212
|
+
};
|
|
213
|
+
const contactForm = {
|
|
214
|
+
field: {
|
|
215
|
+
name: {
|
|
216
|
+
label: "Nome",
|
|
217
|
+
placeholder: "Il tuo Nome"
|
|
218
|
+
},
|
|
219
|
+
email: {
|
|
220
|
+
label: "Email",
|
|
221
|
+
placeholder: "La tua Email"
|
|
222
|
+
},
|
|
223
|
+
message: {
|
|
224
|
+
label: "Messaggio",
|
|
225
|
+
placeholder: "Il tuo Messaggio"
|
|
226
|
+
}
|
|
227
|
+
},
|
|
228
|
+
notification: {
|
|
229
|
+
title: "{{name}}, grazie per il tuo feedback!",
|
|
230
|
+
description: "Ti risponderemo all’indirizzo {{email}} il prima possibile."
|
|
231
|
+
},
|
|
232
|
+
action: {
|
|
233
|
+
send: "Invia Messaggio"
|
|
234
|
+
}
|
|
235
|
+
};
|
|
236
|
+
const dictionary = {
|
|
237
|
+
pageNotFound,
|
|
238
|
+
footer,
|
|
239
|
+
gameDemo,
|
|
240
|
+
gameInfo,
|
|
241
|
+
prosCons,
|
|
242
|
+
author,
|
|
243
|
+
contactForm
|
|
244
|
+
};
|
|
245
|
+
const resources = {
|
|
246
|
+
en: dictionary$1,
|
|
247
|
+
it: dictionary
|
|
248
|
+
};
|
|
249
|
+
const DEFAULT_LANGUAGE = "en";
|
|
250
|
+
i18n.use(reactI18next.initReactI18next).init({
|
|
251
|
+
fallbackLng: DEFAULT_LANGUAGE,
|
|
252
|
+
resources
|
|
253
|
+
});
|
|
254
|
+
exports.GameCharacteristic = GameCharacteristic;
|
|
255
|
+
exports.GameVolatility = GameVolatility;
|
|
256
|
+
exports.resources = resources;
|