@anywayseo/tools 1.1.0 → 1.5.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 (56) hide show
  1. package/dist/components/base/center/index.d.ts +6 -0
  2. package/dist/components/base/grid/index.d.ts +19 -0
  3. package/dist/components/base/grid/types.d.ts +3 -0
  4. package/dist/components/base/grid/utils.d.ts +2 -0
  5. package/dist/components/base/index.d.ts +3 -0
  6. package/dist/components/base/link-button/index.d.ts +7 -0
  7. package/dist/components/bonus-card/content/index.d.ts +7 -0
  8. package/dist/components/bonus-card/index.d.ts +7 -0
  9. package/dist/components/bonus-card/title/index.d.ts +7 -0
  10. package/dist/components/game-card/index.d.ts +7 -0
  11. package/dist/components/index.cjs +9 -1
  12. package/dist/components/index.d.ts +6 -0
  13. package/dist/components/index.mjs +12 -4
  14. package/dist/components/layout/container/index.d.ts +3 -0
  15. package/dist/components/layout/hero/index.d.ts +2 -0
  16. package/dist/components/list/index.d.ts +13 -0
  17. package/dist/components/table/index.d.ts +12 -0
  18. package/dist/components/tabs/index.d.ts +8 -0
  19. package/dist/i18n/index.cjs +1 -1
  20. package/dist/i18n/index.mjs +1 -1
  21. package/dist/i18n/resources/de/index.d.ts +108 -0
  22. package/dist/i18n/resources/en/index.d.ts +9 -0
  23. package/dist/i18n/resources/it/index.d.ts +9 -0
  24. package/dist/index-B-5oUop6.js +47 -0
  25. package/dist/index-BUx1Bxrs.mjs +48 -0
  26. package/dist/{index-jhNgIknB.mjs → index-CJvs4SfG.mjs} +1 -1
  27. package/dist/{index-DB1dS9cp.js → index-DCIXk-YH.js} +140 -4
  28. package/dist/{index-Bv4g3xBH.mjs → index-DD5l7Azu.mjs} +191 -20
  29. package/dist/{index-C1AoeBP2.js → index-DLPk8AIs.js} +179 -8
  30. package/dist/{index-Bh5idiRE.mjs → index-DxLcykuT.mjs} +140 -4
  31. package/dist/{index-C68DPwvx.js → index-jvxaXXE3.js} +1 -1
  32. package/dist/index.cjs +14 -3
  33. package/dist/index.mjs +20 -9
  34. package/dist/types/components/bonus-card/index.d.ts +9 -0
  35. package/dist/types/components/common/index.d.ts +3 -0
  36. package/dist/types/components/game-card/index.d.ts +6 -0
  37. package/dist/types/components/index.d.ts +8 -0
  38. package/dist/types/components/tabs/index.d.ts +8 -0
  39. package/dist/types/i18n/index.d.ts +1 -1
  40. package/dist/types/index.d.ts +4 -7
  41. package/dist/types/models/bonus/index.d.ts +4 -0
  42. package/dist/types/models/game/index.d.ts +3 -0
  43. package/dist/types/models/index.d.ts +5 -0
  44. package/dist/types/models/link/index.d.ts +4 -0
  45. package/dist/types/theme/index.d.ts +27 -0
  46. package/dist/utils/index.cjs +4 -1
  47. package/dist/utils/index.d.ts +1 -0
  48. package/dist/utils/index.mjs +4 -1
  49. package/dist/utils/theme/index.d.ts +3 -0
  50. package/package.json +2 -1
  51. /package/dist/types/{faq → components/faq}/index.d.ts +0 -0
  52. /package/dist/types/{game-info → components/game-info}/index.d.ts +0 -0
  53. /package/dist/types/{how-to → components/how-to}/index.d.ts +0 -0
  54. /package/dist/types/{pros-cons → components/pros-cons}/index.d.ts +0 -0
  55. /package/dist/types/{author → models/author}/index.d.ts +0 -0
  56. /package/dist/types/{feature → models/feature}/index.d.ts +0 -0
@@ -0,0 +1,6 @@
1
+ import { FC, PropsWithChildren } from 'react';
2
+ type CenterProps = PropsWithChildren<{
3
+ className: string;
4
+ }>;
5
+ declare const Center: FC<CenterProps>;
6
+ export default Center;
@@ -0,0 +1,19 @@
1
+ import { Key } from 'react';
2
+ import { KeyGetter, RenderFunction } from '../../../types';
3
+ import { ColumnsConfig, SpacingConfig } from './types';
4
+ type GridGetKeyProp<T> = T extends {
5
+ key: Key;
6
+ } ? {
7
+ getKey?: KeyGetter<T>;
8
+ } : {
9
+ getKey: KeyGetter<T>;
10
+ };
11
+ type GridProps<T> = {
12
+ items: T[];
13
+ columns?: ColumnsConfig;
14
+ gap?: SpacingConfig;
15
+ className?: string;
16
+ render: RenderFunction<T>;
17
+ } & GridGetKeyProp<T>;
18
+ declare const Grid: <T>({ items, columns, gap, render, getKey, className }: GridProps<T>) => import("react/jsx-runtime").JSX.Element;
19
+ export default Grid;
@@ -0,0 +1,3 @@
1
+ import { ResponsiveObject } from '@chakra-ui/react';
2
+ export type ColumnsConfig = ResponsiveObject<number>;
3
+ export type SpacingConfig = ResponsiveObject<number> | number;
@@ -0,0 +1,2 @@
1
+ import { ColumnsConfig } from './types';
2
+ export declare const defaultColumns: ColumnsConfig;
@@ -0,0 +1,3 @@
1
+ export { default as Center } from './center';
2
+ export { default as Grid } from './grid';
3
+ export { default as LinkButton } from './link-button';
@@ -0,0 +1,7 @@
1
+ import { FC } from 'react';
2
+ import { ILink } from '../../../types';
3
+ type LinkButtonProps = ILink & {
4
+ width?: 'auto' | 'full' | number;
5
+ };
6
+ declare const LinkButton: FC<LinkButtonProps>;
7
+ export default LinkButton;
@@ -0,0 +1,7 @@
1
+ import { FC } from 'react';
2
+ import { IBonusCard } from '../../../types';
3
+ type BonusCardContentProps = {
4
+ content: IBonusCard['content'];
5
+ };
6
+ declare const BonusCardContent: FC<BonusCardContentProps>;
7
+ export default BonusCardContent;
@@ -0,0 +1,7 @@
1
+ import { FC } from 'react';
2
+ import { IBonusCard } from '../../types';
3
+ type BonusCardProps = IBonusCard & {
4
+ className?: string;
5
+ };
6
+ declare const BonusCard: FC<BonusCardProps>;
7
+ export default BonusCard;
@@ -0,0 +1,7 @@
1
+ import { FC } from 'react';
2
+ import { IBonusCard } from '../../../types';
3
+ type BonusCardTitleProps = {
4
+ content: IBonusCard['title'];
5
+ };
6
+ declare const BonusCardTitle: FC<BonusCardTitleProps>;
7
+ export default BonusCardTitle;
@@ -0,0 +1,7 @@
1
+ import { FC } from 'react';
2
+ import { IGameCard } from '../../types';
3
+ type GameCardProps = IGameCard & {
4
+ className?: string;
5
+ };
6
+ declare const GameCard: FC<GameCardProps>;
7
+ export default GameCard;
@@ -1,14 +1,22 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
- const index = require("../index-C1AoeBP2.js");
3
+ const index = require("../index-DLPk8AIs.js");
4
4
  exports.Author = index.Author;
5
+ exports.BonusCard = index.BonusCard;
6
+ exports.Center = index.Center;
5
7
  exports.ContactForm = index.ContactForm;
6
8
  exports.ExpertTip = index.ExpertTip;
7
9
  exports.Faq = index.Faq;
8
10
  exports.Features = index.Features;
11
+ exports.GameCard = index.GameCard;
9
12
  exports.GameDemo = index.GameDemo;
10
13
  exports.GameInfo = index.GameInfo;
14
+ exports.Grid = index.Grid;
11
15
  exports.HowTo = index.HowTo;
12
16
  exports.Layout = index.Layout;
17
+ exports.LinkButton = index.LinkButton;
18
+ exports.List = index.List;
13
19
  exports.ProsCons = index.ProsCons;
14
20
  exports.Seo = index.Seo;
21
+ exports.Table = index.Table;
22
+ exports.Tabs = index.Tabs;
@@ -1,11 +1,17 @@
1
1
  export { default as Author } from './author';
2
+ export * from './base';
3
+ export { default as BonusCard } from './bonus-card';
2
4
  export { default as ContactForm } from './contact-form';
3
5
  export { default as ExpertTip } from './expert-tip';
4
6
  export { default as Faq } from './faq';
5
7
  export { default as Features } from './features';
8
+ export { default as GameCard } from './game-card';
6
9
  export { default as GameDemo } from './game-demo';
7
10
  export { default as GameInfo } from './game-info';
8
11
  export { default as HowTo } from './how-to';
9
12
  export { default as Layout } from './layout';
13
+ export { default as List } from './list';
10
14
  export { default as ProsCons } from './pros-cons';
11
15
  export { default as Seo } from './seo';
16
+ export { default as Table } from './table';
17
+ export { default as Tabs } from './tabs';
@@ -1,14 +1,22 @@
1
- import { A, C, E, F, a, G, b, H, L, P, S } from "../index-Bv4g3xBH.mjs";
1
+ import { A, B, f, C, E, F, a, G, b, c, g, H, L, h, d, P, S, T, e } from "../index-DD5l7Azu.mjs";
2
2
  export {
3
3
  A as Author,
4
+ B as BonusCard,
5
+ f as Center,
4
6
  C as ContactForm,
5
7
  E as ExpertTip,
6
8
  F as Faq,
7
9
  a as Features,
8
- G as GameDemo,
9
- b as GameInfo,
10
+ G as GameCard,
11
+ b as GameDemo,
12
+ c as GameInfo,
13
+ g as Grid,
10
14
  H as HowTo,
11
15
  L as Layout,
16
+ h as LinkButton,
17
+ d as List,
12
18
  P as ProsCons,
13
- S as Seo
19
+ S as Seo,
20
+ T as Table,
21
+ e as Tabs
14
22
  };
@@ -0,0 +1,3 @@
1
+ import { FC, PropsWithChildren } from 'react';
2
+ declare const Container: FC<PropsWithChildren>;
3
+ export default Container;
@@ -1,8 +1,10 @@
1
1
  import { FC, ReactElement } from 'react';
2
+ import { ILink } from '../../../types';
2
3
  type HeroProps = {
3
4
  title: string;
4
5
  subtitle?: string;
5
6
  content?: string;
7
+ link?: ILink;
6
8
  image?: ReactElement;
7
9
  };
8
10
  declare const Hero: FC<HeroProps>;
@@ -0,0 +1,13 @@
1
+ import { RenderFunction } from '../../types';
2
+ type ListRenderProps<T> = T extends string ? {
3
+ render?: never;
4
+ } : {
5
+ render: RenderFunction<T>;
6
+ };
7
+ type ListProps<T = string> = {
8
+ items: T[];
9
+ bullet?: string;
10
+ className?: string;
11
+ } & ListRenderProps<T>;
12
+ declare const List: <T>({ items, bullet, render, className }: ListProps<T>) => import("react/jsx-runtime").JSX.Element;
13
+ export default List;
@@ -0,0 +1,12 @@
1
+ import { FC, ReactNode } from 'react';
2
+ type TableProps = {
3
+ columnNumber: number;
4
+ items: ReactNode[];
5
+ caption?: string;
6
+ bordered?: boolean;
7
+ striped?: boolean;
8
+ scrollable?: boolean;
9
+ className?: string;
10
+ };
11
+ declare const Table: FC<TableProps>;
12
+ export default Table;
@@ -0,0 +1,8 @@
1
+ import { ITabItem, RenderFunction } from '../../types';
2
+ type TabsProps<T> = {
3
+ items: ITabItem<T>[];
4
+ className?: string;
5
+ render: RenderFunction<T>;
6
+ };
7
+ declare const Tabs: <T>({ items, className, render }: TabsProps<T>) => import("react/jsx-runtime").JSX.Element;
8
+ export default Tabs;
@@ -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-DB1dS9cp.js");
5
+ const i18n$1 = require("../index-DCIXk-YH.js");
6
6
  exports.i18n = i18n;
7
7
  exports.resources = i18n$1.resources;
@@ -1,6 +1,6 @@
1
1
  import "react-i18next";
2
2
  import { default as default2 } from "i18next";
3
- import { r } from "../index-Bh5idiRE.mjs";
3
+ import { r } from "../index-DxLcykuT.mjs";
4
4
  export {
5
5
  default2 as i18n,
6
6
  r as resources
@@ -0,0 +1,108 @@
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
+ DEVELOPER: string;
35
+ HAS_AUTOPLAY: string;
36
+ HAS_BONUS_PURCHASE: string;
37
+ HAS_COLLECTION_SYMBOLS: string;
38
+ HAS_DEMO: string;
39
+ HAS_FAST_SPIN: string;
40
+ HAS_FREE_SPINS: string;
41
+ HAS_PROGRESSIVE_JACKPOT: string;
42
+ LANGUAGES: string;
43
+ MAX_WIN: string;
44
+ MAX_BET: string;
45
+ MIN_BET: string;
46
+ NAME: string;
47
+ PAY_LINES: string;
48
+ REELS_NUMBER: string;
49
+ RELEASE_DATE: string;
50
+ RTP: string;
51
+ THEME: string;
52
+ TYPE: string;
53
+ VOLATILITY: string;
54
+ };
55
+ value: {
56
+ boolean: {
57
+ true: string;
58
+ false: string;
59
+ };
60
+ volatility: {
61
+ HIGH: string;
62
+ MEDIUM: string;
63
+ LOW: string;
64
+ };
65
+ };
66
+ };
67
+ readonly prosCons: {
68
+ advantages: string;
69
+ disadvantages: string;
70
+ };
71
+ readonly author: {
72
+ title: string;
73
+ action: {
74
+ expand: string;
75
+ collapse: string;
76
+ };
77
+ };
78
+ readonly contactForm: {
79
+ field: {
80
+ name: {
81
+ label: string;
82
+ placeholder: string;
83
+ };
84
+ email: {
85
+ label: string;
86
+ placeholder: string;
87
+ };
88
+ message: {
89
+ label: string;
90
+ placeholder: string;
91
+ };
92
+ };
93
+ notification: {
94
+ title: string;
95
+ description: string;
96
+ };
97
+ action: {
98
+ send: string;
99
+ };
100
+ };
101
+ readonly bonusCard: {
102
+ action: {
103
+ expand: string;
104
+ collapse: string;
105
+ };
106
+ };
107
+ };
108
+ export default dictionary;
@@ -1,5 +1,8 @@
1
1
  declare const dictionary: {
2
2
  readonly pageNotFound: {
3
+ seo: {
4
+ title: string;
5
+ };
3
6
  title: string;
4
7
  description: string;
5
8
  action: string;
@@ -95,5 +98,11 @@ declare const dictionary: {
95
98
  send: string;
96
99
  };
97
100
  };
101
+ readonly bonusCard: {
102
+ action: {
103
+ expand: string;
104
+ collapse: string;
105
+ };
106
+ };
98
107
  };
99
108
  export default dictionary;
@@ -1,5 +1,8 @@
1
1
  declare const dictionary: {
2
2
  readonly pageNotFound: {
3
+ seo: {
4
+ title: string;
5
+ };
3
6
  title: string;
4
7
  description: string;
5
8
  action: string;
@@ -95,5 +98,11 @@ declare const dictionary: {
95
98
  send: string;
96
99
  };
97
100
  };
101
+ readonly bonusCard: {
102
+ action: {
103
+ expand: string;
104
+ collapse: string;
105
+ };
106
+ };
98
107
  };
99
108
  export default dictionary;
@@ -0,0 +1,47 @@
1
+ "use strict";
2
+ const tinycolor = require("@ctrl/tinycolor");
3
+ const DEFAULT_THEME = "system";
4
+ const DEFAULT_COLOR = "#333333";
5
+ const DefaultColorShadeMap = {
6
+ 50: 52,
7
+ 100: 40,
8
+ 200: 30,
9
+ 300: 20,
10
+ 400: 10,
11
+ 600: 10,
12
+ 700: 20,
13
+ 800: 30,
14
+ 900: 40
15
+ };
16
+ function extractTheme(value, defaultTheme = DEFAULT_THEME) {
17
+ let theme = defaultTheme;
18
+ if (value) {
19
+ const themes = ["dark", "light", "system"];
20
+ const probablyTheme = value;
21
+ if (themes.includes(probablyTheme)) {
22
+ theme = probablyTheme;
23
+ }
24
+ }
25
+ return theme;
26
+ }
27
+ function generateColorPalette(value, defaultColor = DEFAULT_COLOR, colorShadeMap = DefaultColorShadeMap) {
28
+ let baseColor = defaultColor;
29
+ if (value && typeof value === "string") {
30
+ baseColor = value;
31
+ }
32
+ const color = new tinycolor.TinyColor(baseColor);
33
+ return {
34
+ 50: color.lighten(colorShadeMap[50]).toHexString(),
35
+ 100: color.lighten(colorShadeMap[100]).toHexString(),
36
+ 200: color.lighten(colorShadeMap[200]).toHexString(),
37
+ 300: color.lighten(colorShadeMap[300]).toHexString(),
38
+ 400: color.lighten(colorShadeMap[400]).toHexString(),
39
+ 500: color.toHexString(),
40
+ 600: color.darken(colorShadeMap[600]).toHexString(),
41
+ 700: color.darken(colorShadeMap[700]).toHexString(),
42
+ 800: color.darken(colorShadeMap[800]).toHexString(),
43
+ 900: color.darken(colorShadeMap[900]).toHexString()
44
+ };
45
+ }
46
+ exports.extractTheme = extractTheme;
47
+ exports.generateColorPalette = generateColorPalette;
@@ -0,0 +1,48 @@
1
+ import { TinyColor } from "@ctrl/tinycolor";
2
+ const DEFAULT_THEME = "system";
3
+ const DEFAULT_COLOR = "#333333";
4
+ const DefaultColorShadeMap = {
5
+ 50: 52,
6
+ 100: 40,
7
+ 200: 30,
8
+ 300: 20,
9
+ 400: 10,
10
+ 600: 10,
11
+ 700: 20,
12
+ 800: 30,
13
+ 900: 40
14
+ };
15
+ function extractTheme(value, defaultTheme = DEFAULT_THEME) {
16
+ let theme = defaultTheme;
17
+ if (value) {
18
+ const themes = ["dark", "light", "system"];
19
+ const probablyTheme = value;
20
+ if (themes.includes(probablyTheme)) {
21
+ theme = probablyTheme;
22
+ }
23
+ }
24
+ return theme;
25
+ }
26
+ function generateColorPalette(value, defaultColor = DEFAULT_COLOR, colorShadeMap = DefaultColorShadeMap) {
27
+ let baseColor = defaultColor;
28
+ if (value && typeof value === "string") {
29
+ baseColor = value;
30
+ }
31
+ const color = new TinyColor(baseColor);
32
+ return {
33
+ 50: color.lighten(colorShadeMap[50]).toHexString(),
34
+ 100: color.lighten(colorShadeMap[100]).toHexString(),
35
+ 200: color.lighten(colorShadeMap[200]).toHexString(),
36
+ 300: color.lighten(colorShadeMap[300]).toHexString(),
37
+ 400: color.lighten(colorShadeMap[400]).toHexString(),
38
+ 500: color.toHexString(),
39
+ 600: color.darken(colorShadeMap[600]).toHexString(),
40
+ 700: color.darken(colorShadeMap[700]).toHexString(),
41
+ 800: color.darken(colorShadeMap[800]).toHexString(),
42
+ 900: color.darken(colorShadeMap[900]).toHexString()
43
+ };
44
+ }
45
+ export {
46
+ extractTheme as e,
47
+ generateColorPalette as g
48
+ };
@@ -1,4 +1,4 @@
1
- import "./index-Bh5idiRE.mjs";
1
+ import "./index-DxLcykuT.mjs";
2
2
  import i18n from "i18next";
3
3
  function getCurrentYear() {
4
4
  const locale = i18n.language;
@@ -32,7 +32,125 @@ var GameCharacteristic = /* @__PURE__ */ ((GameCharacteristic2) => {
32
32
  GameCharacteristic2["Languages"] = "LANGUAGES";
33
33
  return GameCharacteristic2;
34
34
  })(GameCharacteristic || {});
35
+ const pageNotFound$2 = {
36
+ seo: {
37
+ title: "Seite nicht gefunden | {{domain}}"
38
+ },
39
+ title: "404 — Seite nicht gefunden",
40
+ description: "Entschuldigung 😔, wir konnten nicht finden, wonach Sie gesucht haben.",
41
+ action: "Zur Startseite"
42
+ };
43
+ const footer$2 = {
44
+ copyright: "© {{year}} {{domain}}. Alle Rechte vorbehalten.",
45
+ disclaimer: {
46
+ title: "Spielen Sie verantwortungsbewusst: ",
47
+ 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."
48
+ }
49
+ };
50
+ const gameDemo$2 = {
51
+ warning: "Ihr Browser ist zu alt, um das iframe-Element anzuzeigen.",
52
+ action: {
53
+ playForFree: "Kostenlos spielen",
54
+ activateFullscreen: "Vollbildmodus aktivieren",
55
+ deactivateFullscreen: "Vollbildmodus deaktivieren"
56
+ }
57
+ };
58
+ const gameInfo$2 = {
59
+ title: "Spielinfo",
60
+ group: {
61
+ general: "Allgemeine Eigenschaften",
62
+ features: "Spielfunktionen"
63
+ },
64
+ feature: {
65
+ [GameCharacteristic.BonusFeatures]: "Bonusfunktionen",
66
+ [GameCharacteristic.Compatibility]: "Kompatibilität",
67
+ [GameCharacteristic.Developer]: "Entwickler",
68
+ [GameCharacteristic.HasAutoplay]: "Autoplay",
69
+ [GameCharacteristic.HasBonusPurchase]: "Bonus-Kauf",
70
+ [GameCharacteristic.HasCollectionSymbols]: "Sammelsymbole",
71
+ [GameCharacteristic.HasDemo]: "Demo-Version",
72
+ [GameCharacteristic.HasFastSpin]: "Schnelldrehung",
73
+ [GameCharacteristic.HasFreeSpins]: "Freispiele",
74
+ [GameCharacteristic.HasProgressiveJackpot]: "Progressiver Jackpot",
75
+ [GameCharacteristic.Languages]: "Sprachen",
76
+ [GameCharacteristic.MaxWin]: "Maximaler Gewinn",
77
+ [GameCharacteristic.MaxBet]: "Maximaler Einsatz",
78
+ [GameCharacteristic.MinBet]: "Minimaler Einsatz",
79
+ [GameCharacteristic.Name]: "Name",
80
+ [GameCharacteristic.PayLines]: "Anzahl der Gewinnlinien",
81
+ [GameCharacteristic.ReelsNumber]: "Anzahl der Walzen",
82
+ [GameCharacteristic.ReleaseDate]: "Veröffentlichungsdatum",
83
+ [GameCharacteristic.Rtp]: "RTP",
84
+ [GameCharacteristic.Theme]: "Thema",
85
+ [GameCharacteristic.Type]: "Typ",
86
+ [GameCharacteristic.Volatility]: "Volatilität"
87
+ },
88
+ value: {
89
+ boolean: {
90
+ true: "Ja",
91
+ false: "Nein"
92
+ },
93
+ volatility: {
94
+ [GameVolatility.High]: "Hoch",
95
+ [GameVolatility.Medium]: "Mittel",
96
+ [GameVolatility.Low]: "Niedrig"
97
+ }
98
+ }
99
+ };
100
+ const prosCons$2 = {
101
+ advantages: "Vorteile",
102
+ disadvantages: "Nachteile"
103
+ };
104
+ const author$2 = {
105
+ title: "Veröffentlicht von",
106
+ action: {
107
+ expand: "Mehr anzeigen",
108
+ collapse: "Ausblenden"
109
+ }
110
+ };
111
+ const contactForm$2 = {
112
+ field: {
113
+ name: {
114
+ label: "Name",
115
+ placeholder: "Ihr Name"
116
+ },
117
+ email: {
118
+ label: "E-Mail",
119
+ placeholder: "Ihre E-Mail"
120
+ },
121
+ message: {
122
+ label: "Nachricht",
123
+ placeholder: "Ihre Nachricht"
124
+ }
125
+ },
126
+ notification: {
127
+ title: "{{name}}, danke für Ihr Feedback!",
128
+ description: "Wir werden uns so bald wie möglich unter {{email}} bei Ihnen melden."
129
+ },
130
+ action: {
131
+ send: "Nachricht senden"
132
+ }
133
+ };
134
+ const bonusCard$2 = {
135
+ action: {
136
+ expand: "Mehr erfahren",
137
+ collapse: "Ausblenden"
138
+ }
139
+ };
140
+ const dictionary$2 = {
141
+ pageNotFound: pageNotFound$2,
142
+ footer: footer$2,
143
+ gameDemo: gameDemo$2,
144
+ gameInfo: gameInfo$2,
145
+ prosCons: prosCons$2,
146
+ author: author$2,
147
+ contactForm: contactForm$2,
148
+ bonusCard: bonusCard$2
149
+ };
35
150
  const pageNotFound$1 = {
151
+ seo: {
152
+ title: "Page not found | {{domain}}"
153
+ },
36
154
  title: "404 — Page not found",
37
155
  description: "Sorry 😔, we couldn’t find what you were looking for.",
38
156
  action: "Go Home"
@@ -128,6 +246,12 @@ const contactForm$1 = {
128
246
  send: "Send Message"
129
247
  }
130
248
  };
249
+ const bonusCard$1 = {
250
+ action: {
251
+ expand: "Learn more",
252
+ collapse: "Hide"
253
+ }
254
+ };
131
255
  const dictionary$1 = {
132
256
  pageNotFound: pageNotFound$1,
133
257
  footer: footer$1,
@@ -135,9 +259,13 @@ const dictionary$1 = {
135
259
  gameInfo: gameInfo$1,
136
260
  prosCons: prosCons$1,
137
261
  author: author$1,
138
- contactForm: contactForm$1
262
+ contactForm: contactForm$1,
263
+ bonusCard: bonusCard$1
139
264
  };
140
265
  const pageNotFound = {
266
+ seo: {
267
+ title: "Pagina non trovata | {{domain}}"
268
+ },
141
269
  title: "404 — Pagina non trovata",
142
270
  description: "Spiacenti 😔, non siamo riusciti a trovare quello che cercavi.",
143
271
  action: "Ritorna alla pagina principale"
@@ -207,7 +335,7 @@ const author = {
207
335
  title: "Informazioni sull'autore",
208
336
  action: {
209
337
  expand: "Mostra per intero",
210
- collapse: "Nascondere"
338
+ collapse: "Nascondi"
211
339
  }
212
340
  };
213
341
  const contactForm = {
@@ -233,6 +361,12 @@ const contactForm = {
233
361
  send: "Invia Messaggio"
234
362
  }
235
363
  };
364
+ const bonusCard = {
365
+ action: {
366
+ expand: "Scopri di più",
367
+ collapse: "Nascondi"
368
+ }
369
+ };
236
370
  const dictionary = {
237
371
  pageNotFound,
238
372
  footer,
@@ -240,11 +374,13 @@ const dictionary = {
240
374
  gameInfo,
241
375
  prosCons,
242
376
  author,
243
- contactForm
377
+ contactForm,
378
+ bonusCard
244
379
  };
245
380
  const resources = {
246
381
  en: dictionary$1,
247
- it: dictionary
382
+ it: dictionary,
383
+ de: dictionary$2
248
384
  };
249
385
  const DEFAULT_LANGUAGE = "en";
250
386
  i18n.use(reactI18next.initReactI18next).init({