@everymatrix/casino-footer-v2 1.44.0 → 1.45.2

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,62 +0,0 @@
1
- export const TRANSLATIONS = {
2
- "en": {
3
- "timeText": "Time",
4
- "sessionTimer": "logged in for {timeString}",
5
- "panicButton": "Hold button for 3 seconds to take 24-hour timeout"
6
- },
7
- "de": {
8
- "timeText": "bet-at-home Zeit:",
9
- "sessionTimer": "Eingeloggt seit {timeString} Stunden",
10
- "panicButton": "Button für 3 Sekunden drücken um eine 24-stündige Auszeit zu nehmen"
11
- },
12
- "fr": {
13
- "timeText": "Time",
14
- "sessionTimer": "logged in for {timeString}",
15
- "panicButton": "Hold button for 3 seconds to take 24-hour timeout"
16
- },
17
- "ro": {
18
- "timeText": "Ora",
19
- "sessionTimer": "online de {timeString}",
20
- "panicButton": "Hold button for 3 seconds to take 24-hour timeout"
21
- },
22
- "es": {
23
- "timeText": "Hora",
24
- "sessionTimer": "tiempo sesión {timeString}",
25
- "panicButton": "Dar clic durante 3 segundos para tomar un descanso de 24 horas"
26
- },
27
- "pt": {
28
- "timeText": "Time",
29
- "sessionTimer": "logged in for {timeString}",
30
- "panicButton": "Hold button for 3 seconds to take 24-hour timeout"
31
- },
32
- "hr": {
33
- "timeText": "Vrijeme",
34
- "sessionTimer": "prijavljen {timeString}",
35
- "panicButton": "Držite gumb 3 sekunde za 24-satno vremensko ograničenje"
36
- },
37
- "sl": {
38
- "timeText": "Time",
39
- "sessionTimer": "logged in for {timeString}",
40
- "panicButton": "Držite gumb 3 sekunde, da bi vzeli 24 urni premor"
41
- },
42
- "pl": {
43
- "timeText": "Time",
44
- "sessionTimer": "logged in for {timeString}",
45
- "panicButton": "Przytrzymaj przycisk przez 3 sekundy, aby uzyskać 24-godzinny limit czasu"
46
- },
47
- "pt-br": {
48
- "timeText": "Tempo",
49
- "sessionTimer": "Tempo de sessão {timeString}",
50
- "panicButton": "Pressione o botão por 3 segundos para uma pausa de 24 horas"
51
- },
52
- "es-mx": {
53
- "timeText": "Tiempo",
54
- "sessionTimer": "tiempo de sesión {timeString}",
55
- "panicButton": "Presionar botón 3 segundos para una pausa de 24 horas"
56
- },
57
- "tr": {
58
- "timeText": "Zaman",
59
- "sessionTimer": "{timeString} süresince giriş yapıldı",
60
- "panicButton": "24 saat ara vermek için düğmeyi 3 saniye basılı tutun"
61
- }
62
- }
@@ -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/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
- }