@everymatrix/casino-lobby 0.0.211 → 0.0.215
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/dist/casino-lobby.js +3 -1
- package/dist/casino-lobby.js.map +1 -1
- package/package.json +2 -2
- package/src/CasinoLobby.svelte +1 -1
- package/src/i18n.js +2 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@everymatrix/casino-lobby",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.215",
|
|
4
4
|
"main": "dist/casino-lobby.js",
|
|
5
5
|
"svelte": "src/index.ts",
|
|
6
6
|
"scripts": {
|
|
@@ -36,5 +36,5 @@
|
|
|
36
36
|
"publishConfig": {
|
|
37
37
|
"access": "public"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "9c9f7a9e6a715010e0746e271e930d92e64e16d2"
|
|
40
40
|
}
|
package/src/CasinoLobby.svelte
CHANGED
package/src/i18n.js
CHANGED
|
@@ -2,7 +2,7 @@ import {
|
|
|
2
2
|
dictionary,
|
|
3
3
|
locale,
|
|
4
4
|
addMessages,
|
|
5
|
-
_
|
|
5
|
+
_,
|
|
6
6
|
} from 'svelte-i18n';
|
|
7
7
|
|
|
8
8
|
function setupI18n({ withLocale: _locale, translations }) {
|
|
@@ -11,9 +11,7 @@ function setupI18n({ withLocale: _locale, translations }) {
|
|
|
11
11
|
dictionary.set(translations);
|
|
12
12
|
locale.set(_locale);
|
|
13
13
|
}
|
|
14
|
-
});
|
|
15
|
-
/*dictionary.set(translations);
|
|
16
|
-
locale.set(_locale);*/
|
|
14
|
+
});
|
|
17
15
|
}
|
|
18
16
|
|
|
19
17
|
function addNewMessages(lang, dict) {
|