@everymatrix/casino-my-games-nd 1.37.12

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.
@@ -0,0 +1,87 @@
1
+ export const TRANSLATIONS = {
2
+ "en": {
3
+ "favorites": "Favorites",
4
+ "mostPlayed": "Most Played",
5
+ "recentlyPlayed": "Last Played"
6
+ },
7
+ "zh-hk": {
8
+ "favorites": "Favorites",
9
+ "mostPlayed": "Most Played",
10
+ "recentlyPlayed": "Last Played"
11
+ },
12
+ "de": {
13
+ "favorites": "Favorites",
14
+ "mostPlayed": "Most Played",
15
+ "recentlyPlayed": "Last Played"
16
+ },
17
+ "it": {
18
+ "favorites": "Favorites",
19
+ "mostPlayed": "Most Played",
20
+ "recentlyPlayed": "Last Played"
21
+ },
22
+ "fr": {
23
+ "favorites": "Favorites",
24
+ "mostPlayed": "Most Played",
25
+ "recentlyPlayed": "Last Played"
26
+ },
27
+ "es": {
28
+ "favorites": "Favoritos",
29
+ "mostPlayed": "Más jugados",
30
+ "recentlyPlayed": "Últimos jugados"
31
+ },
32
+ "tr": {
33
+ "favorites": "Favoriler",
34
+ "mostPlayed": "En Çok Oynananlar",
35
+ "recentlyPlayed": "Son Oynananlar"
36
+ },
37
+ "ru": {
38
+ "favorites": "Favorites",
39
+ "mostPlayed": "Most Played",
40
+ "recentlyPlayed": "Last Played"
41
+ },
42
+ "ro": {
43
+ "favorites": "Favorites",
44
+ "mostPlayed": "Most Played",
45
+ "recentlyPlayed": "Last Played"
46
+ },
47
+ "hr": {
48
+ "favorites": "Favoriti",
49
+ "mostPlayed": "Najčešće igrano",
50
+ "recentlyPlayed": "Zadnje igrano"
51
+ },
52
+ "hu": {
53
+ "favorites": "Favorites",
54
+ "mostPlayed": "Most Played",
55
+ "recentlyPlayed": "Last Played"
56
+ },
57
+ "pl": {
58
+ "favorites": "Favorites",
59
+ "mostPlayed": "Most Played",
60
+ "recentlyPlayed": "Last Played"
61
+ },
62
+ "pt": {
63
+ "favorites": "Favorites",
64
+ "mostPlayed": "Most Played",
65
+ "recentlyPlayed": "Last Played"
66
+ },
67
+ "sl": {
68
+ "favorites": "Favorites",
69
+ "mostPlayed": "Most Played",
70
+ "recentlyPlayed": "Last Played"
71
+ },
72
+ "sr": {
73
+ "favorites": "Favorites",
74
+ "mostPlayed": "Most Played",
75
+ "recentlyPlayed": "Last Played"
76
+ },
77
+ "pt-br": {
78
+ "favorites": "Favoritos",
79
+ "mostPlayed": "O mais jogado",
80
+ "recentlyPlayed": "Ultimo jogo"
81
+ },
82
+ "es-mx": {
83
+ "favorites": "Favoritos",
84
+ "mostPlayed": "Los más Jugados",
85
+ "recentlyPlayed": "Último juego"
86
+ }
87
+ }
@@ -0,0 +1,13 @@
1
+ import { html } from 'lit-element';
2
+
3
+ import CasinoMyGames from '../src/CasinoMyGames';
4
+
5
+ // This default export determines where your story goes in the story list
6
+ export default {
7
+ title: 'CasinoMyGames',
8
+ };
9
+
10
+ // 👇 We create a “template” of how args map to rendering
11
+ const CasinoMyGames = ({ aProperty }) => html`<casino-my-games></casino-my-games>`;
12
+
13
+ export const FirstStory = CasinoMyGames.bind({});
package/tsconfig.json ADDED
@@ -0,0 +1,6 @@
1
+ {
2
+ "extends": "@tsconfig/svelte/tsconfig.json",
3
+
4
+ "include": ["src/**/*"],
5
+ "exclude": ["node_modules/*", "__sapper__/*", "public/*"]
6
+ }