@everymatrix/casino-tournaments-table 0.0.365 → 0.0.367
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/README.md +30 -30
- package/dist/casino-tournaments-table.js.map +1 -1
- package/index.html +37 -37
- package/index.js +1 -1
- package/package.json +2 -2
- package/public/reset.css +47 -47
- package/rollup.config.js +67 -67
- package/src/CasinoTournamentsTable.svelte +664 -664
- package/src/i18n.js +27 -27
- package/src/images/arrow-down.svg +14 -14
- package/src/images/arrow-up.svg +12 -12
- package/src/index.ts +4 -4
- package/src/translations.js +151 -151
- package/stories/CasinoTournamentsTable.stories.js +13 -13
- package/tsconfig.json +6 -6
package/src/i18n.js
CHANGED
|
@@ -1,27 +1,27 @@
|
|
|
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 };
|
|
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 };
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
<svg width="20" height="20" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<circle r="4.9999" transform="matrix(1 0 0 -1 4.9999 5.0001)" fill="#434647"/>
|
|
3
|
-
<g clip-path="url(#clip0_2591_1154)">
|
|
4
|
-
<line y1="-0.933315" x2="3.99992" y2="-0.933315" transform="matrix(0 -1 -1 0 4 6)"
|
|
5
|
-
stroke="#CA0000" stroke-width="1.86663"/>
|
|
6
|
-
<path d="M4.99896 8L7.59699 5.00006H2.40094L4.99896 8Z" fill="#CA0000"/>
|
|
7
|
-
</g>
|
|
8
|
-
<defs>
|
|
9
|
-
<clipPath id="clip0_2591_1154">
|
|
10
|
-
<rect width="5.99988" height="5.99928" fill="white"
|
|
11
|
-
transform="matrix(1 0 0 -1 1.99902 8)"/>
|
|
12
|
-
</clipPath>
|
|
13
|
-
</defs>
|
|
14
|
-
</svg>
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<circle r="4.9999" transform="matrix(1 0 0 -1 4.9999 5.0001)" fill="#434647"/>
|
|
3
|
+
<g clip-path="url(#clip0_2591_1154)">
|
|
4
|
+
<line y1="-0.933315" x2="3.99992" y2="-0.933315" transform="matrix(0 -1 -1 0 4 6)"
|
|
5
|
+
stroke="#CA0000" stroke-width="1.86663"/>
|
|
6
|
+
<path d="M4.99896 8L7.59699 5.00006H2.40094L4.99896 8Z" fill="#CA0000"/>
|
|
7
|
+
</g>
|
|
8
|
+
<defs>
|
|
9
|
+
<clipPath id="clip0_2591_1154">
|
|
10
|
+
<rect width="5.99988" height="5.99928" fill="white"
|
|
11
|
+
transform="matrix(1 0 0 -1 1.99902 8)"/>
|
|
12
|
+
</clipPath>
|
|
13
|
+
</defs>
|
|
14
|
+
</svg>
|
package/src/images/arrow-up.svg
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
<svg width="20" height="20" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<circle cx="4.9999" cy="4.9999" r="4.9999" fill="#434647"/>
|
|
3
|
-
<g clip-path="url(#clip0_2591_1149)">
|
|
4
|
-
<line x1="4.93332" y1="4" x2="4.93332" y2="7.99992" stroke="#59CA00" stroke-width="1.86663"/>
|
|
5
|
-
<path d="M4.99896 2L7.59699 4.99994H2.40094L4.99896 2Z" fill="#59CA00"/>
|
|
6
|
-
</g>
|
|
7
|
-
<defs>
|
|
8
|
-
<clipPath id="clip0_2591_1149">
|
|
9
|
-
<rect width="5.99988" height="5.99928" fill="white" transform="translate(1.99902 2)"/>
|
|
10
|
-
</clipPath>
|
|
11
|
-
</defs>
|
|
12
|
-
</svg>
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<circle cx="4.9999" cy="4.9999" r="4.9999" fill="#434647"/>
|
|
3
|
+
<g clip-path="url(#clip0_2591_1149)">
|
|
4
|
+
<line x1="4.93332" y1="4" x2="4.93332" y2="7.99992" stroke="#59CA00" stroke-width="1.86663"/>
|
|
5
|
+
<path d="M4.99896 2L7.59699 4.99994H2.40094L4.99896 2Z" fill="#59CA00"/>
|
|
6
|
+
</g>
|
|
7
|
+
<defs>
|
|
8
|
+
<clipPath id="clip0_2591_1149">
|
|
9
|
+
<rect width="5.99988" height="5.99928" fill="white" transform="translate(1.99902 2)"/>
|
|
10
|
+
</clipPath>
|
|
11
|
+
</defs>
|
|
12
|
+
</svg>
|
package/src/index.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import CasinoTournamentsTable from './CasinoTournamentsTable.svelte';
|
|
2
|
-
|
|
3
|
-
!customElements.get('casino-tournaments-table') && customElements.define('casino-tournaments-table', CasinoTournamentsTable);
|
|
4
|
-
export default CasinoTournamentsTable;
|
|
1
|
+
import CasinoTournamentsTable from './CasinoTournamentsTable.svelte';
|
|
2
|
+
|
|
3
|
+
!customElements.get('casino-tournaments-table') && customElements.define('casino-tournaments-table', CasinoTournamentsTable);
|
|
4
|
+
export default CasinoTournamentsTable;
|
package/src/translations.js
CHANGED
|
@@ -1,151 +1,151 @@
|
|
|
1
|
-
export const TournamentsTableTranslations = {
|
|
2
|
-
en: {
|
|
3
|
-
tournamentsTable: {
|
|
4
|
-
leaderboard: 'Leaderboard',
|
|
5
|
-
score: 'Score',
|
|
6
|
-
betcounts: 'Bet Counts',
|
|
7
|
-
winstakeratio: 'WinstakeRatio',
|
|
8
|
-
qualified: 'Qualified',
|
|
9
|
-
nowinners: 'No winners for the time being. Be one of them!',
|
|
10
|
-
Rank: 'Rank',
|
|
11
|
-
Player: 'Player',
|
|
12
|
-
Points: 'Points',
|
|
13
|
-
Prize: 'Prize',
|
|
14
|
-
UnqualifiedTips: 'The minimum number of bets has not been reached. Check tournament rules.'
|
|
15
|
-
}
|
|
16
|
-
},
|
|
17
|
-
zh: {
|
|
18
|
-
tournamentsTable: {
|
|
19
|
-
leaderboard: '排行榜',
|
|
20
|
-
score: '分數',
|
|
21
|
-
betcounts: '投注次數',
|
|
22
|
-
winstakeratio: '勝率',
|
|
23
|
-
qualified: '合格的',
|
|
24
|
-
nowinners: '暫時沒有贏家。 成為他們中的一員!',
|
|
25
|
-
Rank: '秩',
|
|
26
|
-
Player: '播放器',
|
|
27
|
-
Points: '積分',
|
|
28
|
-
Prize: '獎',
|
|
29
|
-
UnqualifiedTips: '未达到最低投注数。检查比赛规则。'
|
|
30
|
-
}
|
|
31
|
-
},
|
|
32
|
-
fr: {
|
|
33
|
-
tournamentsTable: {
|
|
34
|
-
leaderboard: 'Tableau des leaders',
|
|
35
|
-
score: 'Score',
|
|
36
|
-
betcounts: 'Le pari compte',
|
|
37
|
-
winstakeratio: 'Indice du gain d\'une mise',
|
|
38
|
-
qualified: 'Qualifié',
|
|
39
|
-
nowinners: 'Aucun gagnant pour l\'instant, soyez l\'un d\'entre eux',
|
|
40
|
-
Rank: 'Rang',
|
|
41
|
-
Player: 'Joueur',
|
|
42
|
-
Points: 'Points',
|
|
43
|
-
Prize: 'Prix',
|
|
44
|
-
UnqualifiedTips: 'Le nombre de mises minimum n\'est pas terminé. Vérifiez les règles.'
|
|
45
|
-
}
|
|
46
|
-
},
|
|
47
|
-
ro: {
|
|
48
|
-
tournamentsTable: {
|
|
49
|
-
leaderboard: 'Clasament',
|
|
50
|
-
score: 'Scor',
|
|
51
|
-
betcounts: 'Număr Pariuri',
|
|
52
|
-
winstakeratio: 'Raport de câștig',
|
|
53
|
-
qualified: 'Calificat',
|
|
54
|
-
nowinners: 'Nu există câștigători pentru moment. Fii unul dintre ei!',
|
|
55
|
-
Rank: 'Clasament',
|
|
56
|
-
Player: 'Jucător',
|
|
57
|
-
Points: 'Puncte',
|
|
58
|
-
Prize: 'Premiu',
|
|
59
|
-
UnqualifiedTips: 'Miza minimă a pariului nu este completă. Verificați regulile.',
|
|
60
|
-
}
|
|
61
|
-
},
|
|
62
|
-
hu: {
|
|
63
|
-
tournamentsTable: {
|
|
64
|
-
leaderboard: 'Ranglista',
|
|
65
|
-
score: 'Pontszám',
|
|
66
|
-
betcounts: 'Bet Counts',
|
|
67
|
-
winstakeratio: 'Fogadás számít',
|
|
68
|
-
qualified: 'Képzett',
|
|
69
|
-
nowinners: 'Egyelőre nincs nyertes. Legyen az egyikük!',
|
|
70
|
-
Rank: 'Rang',
|
|
71
|
-
Player: 'Játékos',
|
|
72
|
-
Points: 'Pontok',
|
|
73
|
-
Prize: 'Díj',
|
|
74
|
-
UnqualifiedTips: 'A minimális fogadási értéket nem érte el. Kérjük ellenőrizze a szabályokat.'
|
|
75
|
-
}
|
|
76
|
-
},
|
|
77
|
-
tr: {
|
|
78
|
-
tournamentsTable: {
|
|
79
|
-
leaderboard: 'Liderlik Tablosu',
|
|
80
|
-
score: 'Skor',
|
|
81
|
-
betcounts: 'Bahis Sayısı',
|
|
82
|
-
winstakeratio: 'Maksimum Kazanç / Bahis Oranı',
|
|
83
|
-
qualified: 'Tur atlamış',
|
|
84
|
-
nowinners: 'Kazanan yok. Kazananlardan birisi ol!',
|
|
85
|
-
Rank: 'Rütbe',
|
|
86
|
-
Player: 'oyuncu',
|
|
87
|
-
Points: 'Puan',
|
|
88
|
-
Prize: 'Ödül'
|
|
89
|
-
}
|
|
90
|
-
},
|
|
91
|
-
el: {
|
|
92
|
-
tournamentsTable: {
|
|
93
|
-
leaderboard: 'Βαθμολογία',
|
|
94
|
-
score: 'Σκορ',
|
|
95
|
-
betcounts: 'Αριθμός Πονταρισμάτων',
|
|
96
|
-
winstakeratio: 'Μέγιστος λόγος πονταρίσματος κερδών',
|
|
97
|
-
qualified: 'Προκρίθηκε',
|
|
98
|
-
nowinners: 'Δεν υπάρχουν νικητές ακόμα.',
|
|
99
|
-
Rank: 'Κατάταξη',
|
|
100
|
-
Player: 'Όνομα',
|
|
101
|
-
Points: 'Πόντοι',
|
|
102
|
-
Prize: 'Έπαθλο',
|
|
103
|
-
UnqualifiedTips: 'Ο ελάχιστος αριθμός στοιχημάτων δεν έχει επιτευχθεί. Ελέγξτε τους κανόνες του τουρνουά.'
|
|
104
|
-
}
|
|
105
|
-
},
|
|
106
|
-
es: {
|
|
107
|
-
tournamentsTable: {
|
|
108
|
-
leaderboard: 'Marcador',
|
|
109
|
-
score: 'Puntuación',
|
|
110
|
-
betcounts: 'Apuesta cuenta',
|
|
111
|
-
winstakeratio: 'RatioDeGanancia',
|
|
112
|
-
qualified: 'Calificado',
|
|
113
|
-
nowinners: 'No hay ganadores por el momento. ¡Sé uno de ellos!',
|
|
114
|
-
Rank: 'Rango',
|
|
115
|
-
Player: 'Jugador',
|
|
116
|
-
Points: 'Puntos',
|
|
117
|
-
Prize: 'Premio',
|
|
118
|
-
UnqualifiedTips: 'No se ha completado el recuento mínimo de apuestas. Compruebe las reglas.',
|
|
119
|
-
}
|
|
120
|
-
},
|
|
121
|
-
hu: {
|
|
122
|
-
tournamentsTable: {
|
|
123
|
-
leaderboard: 'Ranglista',
|
|
124
|
-
score: 'Pontszám',
|
|
125
|
-
betcounts: 'Fogadás beleszámít',
|
|
126
|
-
winstakeratio: 'WinstakeRatio',
|
|
127
|
-
qualified: 'Kvalifikált',
|
|
128
|
-
nowinners: 'Még nincs nyertes. Legyen Ön az egyik!',
|
|
129
|
-
Rank: 'Rangsor',
|
|
130
|
-
Player: 'Játékos',
|
|
131
|
-
Points: 'Pontszám',
|
|
132
|
-
Prize: 'Nyeremény',
|
|
133
|
-
UnqualifiedTips: 'Minimális tét nincs elérve. Ellenőrizze a szabályokat.',
|
|
134
|
-
}
|
|
135
|
-
},
|
|
136
|
-
pt: {
|
|
137
|
-
tournamentsTable: {
|
|
138
|
-
leaderboard: 'Entre os melhores',
|
|
139
|
-
score: 'Pontuação',
|
|
140
|
-
betcounts: 'Contagens de Apostas',
|
|
141
|
-
winstakeratio: 'Rácio de Vitórias',
|
|
142
|
-
qualified: 'Qualificado',
|
|
143
|
-
nowinners: 'Sem vencedores por enquanto. Seja um deles!',
|
|
144
|
-
Rank: 'Classificação',
|
|
145
|
-
Player: 'Jogador',
|
|
146
|
-
Points: 'Pontos',
|
|
147
|
-
Prize: 'Prêmio',
|
|
148
|
-
UnqualifiedTips: 'Contagem mínima de apostas não concluída. Confira Regras.'
|
|
149
|
-
}
|
|
150
|
-
}
|
|
151
|
-
};
|
|
1
|
+
export const TournamentsTableTranslations = {
|
|
2
|
+
en: {
|
|
3
|
+
tournamentsTable: {
|
|
4
|
+
leaderboard: 'Leaderboard',
|
|
5
|
+
score: 'Score',
|
|
6
|
+
betcounts: 'Bet Counts',
|
|
7
|
+
winstakeratio: 'WinstakeRatio',
|
|
8
|
+
qualified: 'Qualified',
|
|
9
|
+
nowinners: 'No winners for the time being. Be one of them!',
|
|
10
|
+
Rank: 'Rank',
|
|
11
|
+
Player: 'Player',
|
|
12
|
+
Points: 'Points',
|
|
13
|
+
Prize: 'Prize',
|
|
14
|
+
UnqualifiedTips: 'The minimum number of bets has not been reached. Check tournament rules.'
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
zh: {
|
|
18
|
+
tournamentsTable: {
|
|
19
|
+
leaderboard: '排行榜',
|
|
20
|
+
score: '分數',
|
|
21
|
+
betcounts: '投注次數',
|
|
22
|
+
winstakeratio: '勝率',
|
|
23
|
+
qualified: '合格的',
|
|
24
|
+
nowinners: '暫時沒有贏家。 成為他們中的一員!',
|
|
25
|
+
Rank: '秩',
|
|
26
|
+
Player: '播放器',
|
|
27
|
+
Points: '積分',
|
|
28
|
+
Prize: '獎',
|
|
29
|
+
UnqualifiedTips: '未达到最低投注数。检查比赛规则。'
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
fr: {
|
|
33
|
+
tournamentsTable: {
|
|
34
|
+
leaderboard: 'Tableau des leaders',
|
|
35
|
+
score: 'Score',
|
|
36
|
+
betcounts: 'Le pari compte',
|
|
37
|
+
winstakeratio: 'Indice du gain d\'une mise',
|
|
38
|
+
qualified: 'Qualifié',
|
|
39
|
+
nowinners: 'Aucun gagnant pour l\'instant, soyez l\'un d\'entre eux',
|
|
40
|
+
Rank: 'Rang',
|
|
41
|
+
Player: 'Joueur',
|
|
42
|
+
Points: 'Points',
|
|
43
|
+
Prize: 'Prix',
|
|
44
|
+
UnqualifiedTips: 'Le nombre de mises minimum n\'est pas terminé. Vérifiez les règles.'
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
ro: {
|
|
48
|
+
tournamentsTable: {
|
|
49
|
+
leaderboard: 'Clasament',
|
|
50
|
+
score: 'Scor',
|
|
51
|
+
betcounts: 'Număr Pariuri',
|
|
52
|
+
winstakeratio: 'Raport de câștig',
|
|
53
|
+
qualified: 'Calificat',
|
|
54
|
+
nowinners: 'Nu există câștigători pentru moment. Fii unul dintre ei!',
|
|
55
|
+
Rank: 'Clasament',
|
|
56
|
+
Player: 'Jucător',
|
|
57
|
+
Points: 'Puncte',
|
|
58
|
+
Prize: 'Premiu',
|
|
59
|
+
UnqualifiedTips: 'Miza minimă a pariului nu este completă. Verificați regulile.',
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
hu: {
|
|
63
|
+
tournamentsTable: {
|
|
64
|
+
leaderboard: 'Ranglista',
|
|
65
|
+
score: 'Pontszám',
|
|
66
|
+
betcounts: 'Bet Counts',
|
|
67
|
+
winstakeratio: 'Fogadás számít',
|
|
68
|
+
qualified: 'Képzett',
|
|
69
|
+
nowinners: 'Egyelőre nincs nyertes. Legyen az egyikük!',
|
|
70
|
+
Rank: 'Rang',
|
|
71
|
+
Player: 'Játékos',
|
|
72
|
+
Points: 'Pontok',
|
|
73
|
+
Prize: 'Díj',
|
|
74
|
+
UnqualifiedTips: 'A minimális fogadási értéket nem érte el. Kérjük ellenőrizze a szabályokat.'
|
|
75
|
+
}
|
|
76
|
+
},
|
|
77
|
+
tr: {
|
|
78
|
+
tournamentsTable: {
|
|
79
|
+
leaderboard: 'Liderlik Tablosu',
|
|
80
|
+
score: 'Skor',
|
|
81
|
+
betcounts: 'Bahis Sayısı',
|
|
82
|
+
winstakeratio: 'Maksimum Kazanç / Bahis Oranı',
|
|
83
|
+
qualified: 'Tur atlamış',
|
|
84
|
+
nowinners: 'Kazanan yok. Kazananlardan birisi ol!',
|
|
85
|
+
Rank: 'Rütbe',
|
|
86
|
+
Player: 'oyuncu',
|
|
87
|
+
Points: 'Puan',
|
|
88
|
+
Prize: 'Ödül'
|
|
89
|
+
}
|
|
90
|
+
},
|
|
91
|
+
el: {
|
|
92
|
+
tournamentsTable: {
|
|
93
|
+
leaderboard: 'Βαθμολογία',
|
|
94
|
+
score: 'Σκορ',
|
|
95
|
+
betcounts: 'Αριθμός Πονταρισμάτων',
|
|
96
|
+
winstakeratio: 'Μέγιστος λόγος πονταρίσματος κερδών',
|
|
97
|
+
qualified: 'Προκρίθηκε',
|
|
98
|
+
nowinners: 'Δεν υπάρχουν νικητές ακόμα.',
|
|
99
|
+
Rank: 'Κατάταξη',
|
|
100
|
+
Player: 'Όνομα',
|
|
101
|
+
Points: 'Πόντοι',
|
|
102
|
+
Prize: 'Έπαθλο',
|
|
103
|
+
UnqualifiedTips: 'Ο ελάχιστος αριθμός στοιχημάτων δεν έχει επιτευχθεί. Ελέγξτε τους κανόνες του τουρνουά.'
|
|
104
|
+
}
|
|
105
|
+
},
|
|
106
|
+
es: {
|
|
107
|
+
tournamentsTable: {
|
|
108
|
+
leaderboard: 'Marcador',
|
|
109
|
+
score: 'Puntuación',
|
|
110
|
+
betcounts: 'Apuesta cuenta',
|
|
111
|
+
winstakeratio: 'RatioDeGanancia',
|
|
112
|
+
qualified: 'Calificado',
|
|
113
|
+
nowinners: 'No hay ganadores por el momento. ¡Sé uno de ellos!',
|
|
114
|
+
Rank: 'Rango',
|
|
115
|
+
Player: 'Jugador',
|
|
116
|
+
Points: 'Puntos',
|
|
117
|
+
Prize: 'Premio',
|
|
118
|
+
UnqualifiedTips: 'No se ha completado el recuento mínimo de apuestas. Compruebe las reglas.',
|
|
119
|
+
}
|
|
120
|
+
},
|
|
121
|
+
hu: {
|
|
122
|
+
tournamentsTable: {
|
|
123
|
+
leaderboard: 'Ranglista',
|
|
124
|
+
score: 'Pontszám',
|
|
125
|
+
betcounts: 'Fogadás beleszámít',
|
|
126
|
+
winstakeratio: 'WinstakeRatio',
|
|
127
|
+
qualified: 'Kvalifikált',
|
|
128
|
+
nowinners: 'Még nincs nyertes. Legyen Ön az egyik!',
|
|
129
|
+
Rank: 'Rangsor',
|
|
130
|
+
Player: 'Játékos',
|
|
131
|
+
Points: 'Pontszám',
|
|
132
|
+
Prize: 'Nyeremény',
|
|
133
|
+
UnqualifiedTips: 'Minimális tét nincs elérve. Ellenőrizze a szabályokat.',
|
|
134
|
+
}
|
|
135
|
+
},
|
|
136
|
+
pt: {
|
|
137
|
+
tournamentsTable: {
|
|
138
|
+
leaderboard: 'Entre os melhores',
|
|
139
|
+
score: 'Pontuação',
|
|
140
|
+
betcounts: 'Contagens de Apostas',
|
|
141
|
+
winstakeratio: 'Rácio de Vitórias',
|
|
142
|
+
qualified: 'Qualificado',
|
|
143
|
+
nowinners: 'Sem vencedores por enquanto. Seja um deles!',
|
|
144
|
+
Rank: 'Classificação',
|
|
145
|
+
Player: 'Jogador',
|
|
146
|
+
Points: 'Pontos',
|
|
147
|
+
Prize: 'Prêmio',
|
|
148
|
+
UnqualifiedTips: 'Contagem mínima de apostas não concluída. Confira Regras.'
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
};
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { html } from 'lit-element';
|
|
2
|
-
|
|
3
|
-
import CasinoTournamentsTable from '../src/CasinoTournamentsTable';
|
|
4
|
-
|
|
5
|
-
// This default export determines where your story goes in the story list
|
|
6
|
-
export default {
|
|
7
|
-
title: 'CasinoTournamentsTable',
|
|
8
|
-
};
|
|
9
|
-
|
|
10
|
-
// 👇 We create a “template” of how args map to rendering
|
|
11
|
-
const CasinoTournamentsTable = ({ aProperty }) => html`<casino-tournaments-table></casino-tournaments-table>`;
|
|
12
|
-
|
|
13
|
-
export const FirstStory = CasinoTournamentsTable.bind({});
|
|
1
|
+
import { html } from 'lit-element';
|
|
2
|
+
|
|
3
|
+
import CasinoTournamentsTable from '../src/CasinoTournamentsTable';
|
|
4
|
+
|
|
5
|
+
// This default export determines where your story goes in the story list
|
|
6
|
+
export default {
|
|
7
|
+
title: 'CasinoTournamentsTable',
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
// 👇 We create a “template” of how args map to rendering
|
|
11
|
+
const CasinoTournamentsTable = ({ aProperty }) => html`<casino-tournaments-table></casino-tournaments-table>`;
|
|
12
|
+
|
|
13
|
+
export const FirstStory = CasinoTournamentsTable.bind({});
|
package/tsconfig.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": "@tsconfig/svelte/tsconfig.json",
|
|
3
|
-
|
|
4
|
-
"include": ["src/**/*"],
|
|
5
|
-
"exclude": ["node_modules/*", "__sapper__/*", "public/*"]
|
|
6
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"extends": "@tsconfig/svelte/tsconfig.json",
|
|
3
|
+
|
|
4
|
+
"include": ["src/**/*"],
|
|
5
|
+
"exclude": ["node_modules/*", "__sapper__/*", "public/*"]
|
|
6
|
+
}
|