@everymatrix/casino-search 0.0.343

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,167 @@
1
+ export const Translations = {
2
+ en: {
3
+ Translations: {
4
+ recentSearch: "Recent search",
5
+ loading: 'Loading, please wait',
6
+ searchResult: "Search result",
7
+ cancel: "Cancel",
8
+ notFound: "Game not found!",
9
+ notFoundText:
10
+ "Please type the correct name of the game to start to play.",
11
+ },
12
+ },
13
+ de: {
14
+ Translations: {
15
+ recentSearch: "Recent search",
16
+ loading: 'Loading, please wait',
17
+ searchResult: "Search result",
18
+ cancel: "Cancel",
19
+ notFound: "Game not found!",
20
+ notFoundText:
21
+ "Please type the correct name of the game to start to play.",
22
+ },
23
+ },
24
+ it: {
25
+ Translations: {
26
+ recentSearch: "Recent search",
27
+ loading: 'Loading, please wait',
28
+ searchResult: "Search result",
29
+ cancel: "Cancel",
30
+ notFound: "Game not found!",
31
+ notFoundText:
32
+ "Please type the correct name of the game to start to play.",
33
+ },
34
+ },
35
+ fr: {
36
+ Translations: {
37
+ recentSearch: "Recent search",
38
+ loading: 'Loading, please wait',
39
+ searchResult: "Search result",
40
+ cancel: "Cancel",
41
+ notFound: "Game not found!",
42
+ notFoundText:
43
+ "Please type the correct name of the game to start to play.",
44
+ },
45
+ },
46
+ es: {
47
+ Translations: {
48
+ recentSearch: "Recent search",
49
+ loading: 'Loading, please wait',
50
+ searchResult: "Search result",
51
+ cancel: "Cancel",
52
+ notFound: "Game not found!",
53
+ notFoundText:
54
+ "Please type the correct name of the game to start to play.",
55
+ },
56
+ },
57
+ gr: {
58
+ Translations: {
59
+ recentSearch: "Recent search",
60
+ loading: 'Loading, please wait',
61
+ searchResult: "Search result",
62
+ cancel: "Cancel",
63
+ notFound: "Game not found!",
64
+ notFoundText:
65
+ "Please type the correct name of the game to start to play.",
66
+ },
67
+ },
68
+ tr: {
69
+ Translations: {
70
+ recentSearch: "Recent search",
71
+ loading: 'Loading, please wait',
72
+ searchResult: "Search result",
73
+ cancel: "Cancel",
74
+ notFound: "Game not found!",
75
+ notFoundText:
76
+ "Please type the correct name of the game to start to play.",
77
+ },
78
+ },
79
+ ru: {
80
+ Translations: {
81
+ recentSearch: "Recent search",
82
+ loading: 'Loading, please wait',
83
+ searchResult: "Search result",
84
+ cancel: "Cancel",
85
+ notFound: "Game not found!",
86
+ notFoundText:
87
+ "Please type the correct name of the game to start to play.",
88
+ },
89
+ },
90
+ ro: {
91
+ Translations: {
92
+ recentSearch: "Recent search",
93
+ loading: 'Loading, please wait',
94
+ searchResult: "Search result",
95
+ cancel: "Cancel",
96
+ notFound: "Game not found!",
97
+ notFoundText:
98
+ "Please type the correct name of the game to start to play.",
99
+ },
100
+ },
101
+ hr: {
102
+ Translations: {
103
+ recentSearch: "Recent search",
104
+ loading: 'Loading, please wait',
105
+ searchResult: "Search result",
106
+ cancel: "Cancel",
107
+ notFound: "Game not found!",
108
+ notFoundText:
109
+ "Please type the correct name of the game to start to play.",
110
+ },
111
+ },
112
+ hu: {
113
+ Translations: {
114
+ recentSearch: "Recent search",
115
+ loading: 'Loading, please wait',
116
+ searchResult: "Search result",
117
+ cancel: "Cancel",
118
+ notFound: "Game not found!",
119
+ notFoundText:
120
+ "Please type the correct name of the game to start to play.",
121
+ },
122
+ },
123
+ pl: {
124
+ Translations: {
125
+ recentSearch: "Recent search",
126
+ loading: 'Loading, please wait',
127
+ searchResult: "Search result",
128
+ cancel: "Cancel",
129
+ notFound: "Game not found!",
130
+ notFoundText:
131
+ "Please type the correct name of the game to start to play.",
132
+ },
133
+ },
134
+ pt: {
135
+ Translations: {
136
+ recentSearch: "Recent search",
137
+ loading: 'Loading, please wait',
138
+ searchResult: "Search result",
139
+ cancel: "Cancel",
140
+ notFound: "Game not found!",
141
+ notFoundText:
142
+ "Please type the correct name of the game to start to play.",
143
+ },
144
+ },
145
+ sl: {
146
+ Translations: {
147
+ recentSearch: "Recent search",
148
+ loading: 'Loading, please wait',
149
+ searchResult: "Search result",
150
+ cancel: "Cancel",
151
+ notFound: "Game not found!",
152
+ notFoundText:
153
+ "Please type the correct name of the game to start to play.",
154
+ },
155
+ },
156
+ sr: {
157
+ Translations: {
158
+ recentSearch: "Recent search",
159
+ loading: 'Loading, please wait',
160
+ searchResult: "Search result",
161
+ cancel: "Cancel",
162
+ notFound: "Game not found!",
163
+ notFoundText:
164
+ "Please type the correct name of the game to start to play.",
165
+ },
166
+ },
167
+ };
@@ -0,0 +1,13 @@
1
+ import { html } from 'lit-element';
2
+
3
+ import CasinoSearch from '../src/CasinoSearch';
4
+
5
+ // This default export determines where your story goes in the story list
6
+ export default {
7
+ title: 'CasinoSearch',
8
+ };
9
+
10
+ // 👇 We create a “template” of how args map to rendering
11
+ const CasinoSearch = ({ aProperty }) => html`<casino-search></casino-search>`;
12
+
13
+ export const FirstStory = CasinoSearch.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
+ }