@everymatrix/casino-footer-v2 1.0.16 → 1.0.70

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/src/i18n.js DELETED
@@ -1,27 +0,0 @@
1
- import {
2
- dictionary,
3
- locale,
4
- addMessages,
5
- _
6
- } from 'svelte-i18n';
7
-
8
- function setupI18n({ withLocale: _locale, translations }) {
9
- locale.subscribe((data) => {
10
- if (data == null) {
11
- dictionary.set(translations);
12
- locale.set(_locale);
13
- }
14
- }); // maybe we will need this to make sure that the i18n is set up only once
15
- /*dictionary.set(translations);
16
- locale.set(_locale);*/
17
- }
18
-
19
- function addNewMessages(lang, dict) {
20
- addMessages(lang, dict);
21
- }
22
-
23
- function setLocale(_locale) {
24
- locale.set(_locale);
25
- }
26
-
27
- export { _, setupI18n, addNewMessages, setLocale };
package/src/index.ts DELETED
@@ -1,4 +0,0 @@
1
- import CasinoFooterV2 from './CasinoFooterV2.svelte';
2
-
3
- !customElements.get('casino-footer-v2') && customElements.define('casino-footer-v2', CasinoFooterV2);
4
- export default CasinoFooterV2;
@@ -1,65 +0,0 @@
1
- export const CasinoFooterTranslations = {
2
- en: {
3
- casinoFooter: {
4
- timeText: `Time`,
5
- sessionTimer: 'logged in for',
6
- panicButton: 'Hold button for 3 seconds to take 24-hour timeout',
7
- }
8
- },
9
- de: {
10
- casinoFooter: {
11
- timeText: `Time`,
12
- sessionTimer: 'logged in for',
13
- panicButton: 'Button für 3 Sekunden drücken um eine 24-stündige Auszeit zu nehmen',
14
- }
15
- },
16
- fr: {
17
- casinoFooter: {
18
- timeText: `Time`,
19
- sessionTimer: 'logged in for',
20
- panicButton: 'Hold button for 3 seconds to take 24-hour timeout',
21
- }
22
- },
23
- ro: {
24
- casinoFooter: {
25
- timeText: `Ora`,
26
- sessionTimer: 'online de',
27
- panicButton: 'Hold button for 3 seconds to take 24-hour timeout',
28
- }
29
- },
30
- es: {
31
- casinoFooter: {
32
- timeText: `Time`,
33
- sessionTimer: 'logged in for',
34
- panicButton: 'Hold button for 3 seconds to take 24-hour timeout',
35
- }
36
- },
37
- pt: {
38
- casinoFooter: {
39
- timeText: `Time`,
40
- sessionTimer: 'logged in for',
41
- panicButton: 'Hold button for 3 seconds to take 24-hour timeout',
42
- }
43
- },
44
- hr: {
45
- casinoFooter: {
46
- timeText: `Time`,
47
- sessionTimer: 'logged in for',
48
- panicButton: 'Držite gumb 3 sekunde kako biste aktivirali vremensko ograničenje od 24 sata',
49
- }
50
- },
51
- sl: {
52
- casinoFooter: {
53
- timeText: `Time`,
54
- sessionTimer: 'logged in for',
55
- panicButton: 'Držite gumb 3 sekunde, da bi vzeli 24 urni premor',
56
- }
57
- },
58
- pl: {
59
- casinoFooter: {
60
- timeText: `Time`,
61
- sessionTimer: 'logged in for',
62
- panicButton: 'Przytrzymaj przycisk przez 3 sekundy, aby uzyskać 24-godzinny limit czasu',
63
- }
64
- },
65
- };
@@ -1,13 +0,0 @@
1
- import { html } from 'lit-element';
2
-
3
- import CasinoFooterV2 from '../src/CasinoFooterV2';
4
-
5
- // This default export determines where your story goes in the story list
6
- export default {
7
- title: 'CasinoFooterV2',
8
- };
9
-
10
- // 👇 We create a “template” of how args map to rendering
11
- const CasinoFooterV2 = ({ aProperty }) => html`<casino-footer-v2></casino-footer-v2>`;
12
-
13
- export const FirstStory = CasinoFooterV2.bind({});
package/translations.js DELETED
@@ -1,32 +0,0 @@
1
- export const CasinoFooterTranslations = {
2
- en: {
3
- casinoFooter: {
4
- timeText: `Time`,
5
- sessionTimer: 'Logged in for',
6
- }
7
- },
8
- fr: {
9
- casinoFooter: {
10
- timeText: `Catégories`,
11
- sessionTimer: 'Logged in for',
12
- }
13
- },
14
- ro: {
15
- casinoFooter: {
16
- timeText: `Ora`,
17
- sessionTimer: 'Online de',
18
- }
19
- },
20
- es: {
21
- casinoFooter: {
22
- timeText: `Categorías`,
23
- sessionTimer: 'Logged in for',
24
- }
25
- },
26
- pt: {
27
- casinoFooter: {
28
- timeText: `Categorias`,
29
- sessionTimer: 'Logged in for',
30
- }
31
- },
32
- };
package/tsconfig.json DELETED
@@ -1,6 +0,0 @@
1
- {
2
- "extends": "@tsconfig/svelte/tsconfig.json",
3
-
4
- "include": ["src/**/*"],
5
- "exclude": ["node_modules/*", "__sapper__/*", "public/*"]
6
- }