@everymatrix/casino-collections-providers 1.12.0 → 1.12.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.
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@everymatrix/casino-collections-providers",
|
3
|
-
"version": "1.12.
|
3
|
+
"version": "1.12.1",
|
4
4
|
"main": "index.js",
|
5
5
|
"svelte": "src/index.ts",
|
6
6
|
"scripts": {
|
@@ -35,5 +35,5 @@
|
|
35
35
|
"publishConfig": {
|
36
36
|
"access": "public"
|
37
37
|
},
|
38
|
-
"gitHead": "
|
38
|
+
"gitHead": "b07d8c9aee6584ea4b4d1718d7d928d4f2dfb523"
|
39
39
|
}
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<svelte:options tag={null} />
|
2
2
|
<script lang="ts">
|
3
3
|
import { _, addNewMessages, setLocale } from './i18n';
|
4
|
-
import {
|
4
|
+
import { TRANSLATIONS } from './translations.js';
|
5
5
|
import { isMobile } from 'rvhelper';
|
6
6
|
import { onMount } from 'svelte';
|
7
7
|
|
@@ -42,8 +42,8 @@
|
|
42
42
|
});
|
43
43
|
}
|
44
44
|
|
45
|
-
Object.keys(
|
46
|
-
addNewMessages(item,
|
45
|
+
Object.keys(TRANSLATIONS).forEach((item:any):void => {
|
46
|
+
addNewMessages(item, TRANSLATIONS[item]);
|
47
47
|
});
|
48
48
|
|
49
49
|
const getGameCategories = ():void => {
|
@@ -283,6 +283,7 @@
|
|
283
283
|
position: relative;
|
284
284
|
height: 230px;
|
285
285
|
overflow: hidden;
|
286
|
+
cursor: pointer;
|
286
287
|
|
287
288
|
&Wrapper {
|
288
289
|
position: absolute;
|
package/src/translations.js
CHANGED
@@ -1,114 +1,82 @@
|
|
1
|
-
export const
|
2
|
-
en: {
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
},
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
},
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
loading: 'Betöltés, kérjük várjon...',
|
84
|
-
},
|
85
|
-
},
|
86
|
-
pl: {
|
87
|
-
Translations: {
|
88
|
-
collections: 'Game Collections',
|
89
|
-
providers: 'Game Providers',
|
90
|
-
loading: 'Loading, please wait ...',
|
91
|
-
},
|
92
|
-
},
|
93
|
-
pt: {
|
94
|
-
Translations: {
|
95
|
-
collections: 'Game Collections',
|
96
|
-
providers: 'Game Providers',
|
97
|
-
loading: 'Carregando, por favor espere ...',
|
98
|
-
},
|
99
|
-
},
|
100
|
-
sl: {
|
101
|
-
Translations: {
|
102
|
-
collections: 'Game Collections',
|
103
|
-
providers: 'Game Providers',
|
104
|
-
loading: 'Loading, please wait ...',
|
105
|
-
},
|
106
|
-
},
|
107
|
-
sr: {
|
108
|
-
Translations: {
|
109
|
-
collections: 'Game Collections',
|
110
|
-
providers: 'Game Providers',
|
111
|
-
loading: 'Loading, please wait ...',
|
112
|
-
},
|
113
|
-
},
|
114
|
-
};
|
1
|
+
export const TRANSLATIONS = {
|
2
|
+
"en": {
|
3
|
+
"collections": "Game Collections",
|
4
|
+
"providers": "Game Providers",
|
5
|
+
"loading": "Loading, please wait ..."
|
6
|
+
},
|
7
|
+
"zh-hk": {
|
8
|
+
"collections": "收藏品",
|
9
|
+
"providers": "供应商",
|
10
|
+
"loading": "加載請稍候 ..."
|
11
|
+
},
|
12
|
+
"de": {
|
13
|
+
"collections": "Game Collections",
|
14
|
+
"providers": "Game Providers",
|
15
|
+
"loading": "Laden, bitte warten..."
|
16
|
+
},
|
17
|
+
"it": {
|
18
|
+
"collections": "Game Collections",
|
19
|
+
"providers": "Game Providers",
|
20
|
+
"loading": "Loading, please wait ..."
|
21
|
+
},
|
22
|
+
"fr": {
|
23
|
+
"collections": "Collections",
|
24
|
+
"providers": "Fournisseurs",
|
25
|
+
"loading": "Chargement, veuillez patienter ..."
|
26
|
+
},
|
27
|
+
"es": {
|
28
|
+
"collections": "Colecciones de juegos",
|
29
|
+
"providers": "Proveedores de juegos",
|
30
|
+
"loading": "Cargando…"
|
31
|
+
},
|
32
|
+
"el": {
|
33
|
+
"collections": "Game Collections",
|
34
|
+
"providers": "Game Providers",
|
35
|
+
"loading": "Φορτώνει, παρακαλούμε περιμένετε ..."
|
36
|
+
},
|
37
|
+
"tr": {
|
38
|
+
"collections": "Game Collections",
|
39
|
+
"providers": "Game Providers",
|
40
|
+
"loading": "Yükleniyor, lütfen bekleyin..."
|
41
|
+
},
|
42
|
+
"ru": {
|
43
|
+
"collections": "Game Collections",
|
44
|
+
"providers": "Game Providers",
|
45
|
+
"loading": "Loading, please wait ..."
|
46
|
+
},
|
47
|
+
"ro": {
|
48
|
+
"collections": "Game Collections",
|
49
|
+
"providers": "Game Providers",
|
50
|
+
"loading": "Se încarcă, asteptati ..."
|
51
|
+
},
|
52
|
+
"hr": {
|
53
|
+
"collections": "Game Collections",
|
54
|
+
"providers": "Game Providers",
|
55
|
+
"loading": "Loading, please wait ..."
|
56
|
+
},
|
57
|
+
"hu": {
|
58
|
+
"collections": "Game Collections",
|
59
|
+
"providers": "Game Providers",
|
60
|
+
"loading": "Betöltés, kérjük várjon..."
|
61
|
+
},
|
62
|
+
"pl": {
|
63
|
+
"collections": "Game Collections",
|
64
|
+
"providers": "Game Providers",
|
65
|
+
"loading": "Loading, please wait ..."
|
66
|
+
},
|
67
|
+
"pt": {
|
68
|
+
"collections": "Game Collections",
|
69
|
+
"providers": "Game Providers",
|
70
|
+
"loading": "Carregando, por favor espere ..."
|
71
|
+
},
|
72
|
+
"sl": {
|
73
|
+
"collections": "Game Collections",
|
74
|
+
"providers": "Game Providers",
|
75
|
+
"loading": "Loading, please wait ..."
|
76
|
+
},
|
77
|
+
"sr": {
|
78
|
+
"collections": "Game Collections",
|
79
|
+
"providers": "Game Providers",
|
80
|
+
"loading": "Loading, please wait ..."
|
81
|
+
}
|
82
|
+
}
|