@everymatrix/casino-tournaments-table 0.0.307 → 0.0.310
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-tournaments-table",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.310",
|
|
4
4
|
"main": "dist/casino-tournaments-table.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": "3955cf9d2fc7c1740b79c97d5e06492ea705194f"
|
|
40
40
|
}
|
|
@@ -233,7 +233,7 @@
|
|
|
233
233
|
<div class="TableUser {row.isCurrentUser ? 'CurrentUserRow' : ''}" part="TableUser {row.isCurrentUser ? 'CurrentUserRow' : ''}">
|
|
234
234
|
<div class="TableCell TableRank {row.Prize? 'Qualified' : ''}" part="TableCell Rank-{row.Rank} TableRank {row.Prize? 'Qualified' : ''}">{row.Rank}</div>
|
|
235
235
|
<div class="TableCell TablePlayer" part="TableCell TablePlayer">{row.Player}</div>
|
|
236
|
-
<div class="TableCell TablePoints" part="TableCell TablePoints">{row.Points}</div>
|
|
236
|
+
<div class="TableCell TablePoints" part="TableCell TablePoints">{row.Points.toLocaleString('en-US', {minimumFractionDigits: 2, maximumFractionDigits: 2})}</div>
|
|
237
237
|
{#if row.Prize}
|
|
238
238
|
<div class="TableCell TablePrize {!row.Unqualified? 'Qualified' : ''}" part="TableCell TablePrize {!row.Unqualified? 'Qualified' : ''}">{row.Prize}</div>
|
|
239
239
|
{:else}
|
|
@@ -314,7 +314,7 @@
|
|
|
314
314
|
|
|
315
315
|
</em></strong></td>
|
|
316
316
|
<td part="LeftTableTd">{row.Player}</td>
|
|
317
|
-
<td part="LeftTableTd"><div class="Flex ScoreUp" part="Flex ScoreUp">{row.Points}</div></td>
|
|
317
|
+
<td part="LeftTableTd"><div class="Flex ScoreUp" part="Flex ScoreUp">{row.Points.toLocaleString('en-US', {minimumFractionDigits: 2, maximumFractionDigits: 2})}</div></td>
|
|
318
318
|
<td class="LeftTableTd {!row.Unqualified? 'Qualified' : ''}" part="LeftTableTd {!row.Unqualified? 'Qualified' : ''}">
|
|
319
319
|
{#if row.Prize}
|
|
320
320
|
{row.Prize}
|
package/src/translations.js
CHANGED
|
@@ -11,7 +11,7 @@ export const TournamentsTableTranslations = {
|
|
|
11
11
|
Player: 'Player',
|
|
12
12
|
Points: 'Points',
|
|
13
13
|
Prize: 'Prize',
|
|
14
|
-
UnqualifiedTips: '
|
|
14
|
+
UnqualifiedTips: 'The minimum number of bets has not been reached. Check tournament rules.'
|
|
15
15
|
}
|
|
16
16
|
},
|
|
17
17
|
fr: {
|
|
@@ -40,7 +40,23 @@ export const TournamentsTableTranslations = {
|
|
|
40
40
|
Rank: 'Pozitie',
|
|
41
41
|
Player: 'Nume',
|
|
42
42
|
Points: 'Puncte',
|
|
43
|
-
Prize: 'Premiu'
|
|
43
|
+
Prize: 'Premiu',
|
|
44
|
+
UnqualifiedTips: 'Număr insuficient de pariuri. Verifică regulile.'
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
hu: {
|
|
48
|
+
tournamentsTable: {
|
|
49
|
+
leaderboard: 'Ranglista',
|
|
50
|
+
score: 'Pontszám',
|
|
51
|
+
betcounts: 'Bet Counts',
|
|
52
|
+
winstakeratio: 'Fogadás számít',
|
|
53
|
+
qualified: 'Képzett',
|
|
54
|
+
nowinners: 'Egyelőre nincs nyertes. Legyen az egyikük!',
|
|
55
|
+
Rank: 'Rang',
|
|
56
|
+
Player: 'Játékos',
|
|
57
|
+
Points: 'Pontok',
|
|
58
|
+
Prize: 'Díj',
|
|
59
|
+
UnqualifiedTips: 'A minimális fogadási értéket nem érte el. Kérjük ellenőrizze a szabályokat.'
|
|
44
60
|
}
|
|
45
61
|
},
|
|
46
62
|
tr: {
|
|
@@ -68,7 +84,8 @@ export const TournamentsTableTranslations = {
|
|
|
68
84
|
Rank: 'Τάξη',
|
|
69
85
|
Player: 'Παίχτης',
|
|
70
86
|
Points: 'Πόντοι',
|
|
71
|
-
Prize: 'Βραβείο'
|
|
87
|
+
Prize: 'Βραβείο',
|
|
88
|
+
UnqualifiedTips: 'Ο ελάχιστος αριθμός στοιχημάτων δεν έχει επιτευχθεί. Ελέγξτε τους κανόνες του τουρνουά.'
|
|
72
89
|
}
|
|
73
90
|
},
|
|
74
91
|
es: {
|
|
@@ -83,7 +100,7 @@ export const TournamentsTableTranslations = {
|
|
|
83
100
|
Player: 'Jugador',
|
|
84
101
|
Points: 'Puntos',
|
|
85
102
|
Prize: 'Premio',
|
|
86
|
-
UnqualifiedTips: '
|
|
103
|
+
UnqualifiedTips: 'El recuento mínimo de apuestas no se ha completado. Consulta las reglas'
|
|
87
104
|
}
|
|
88
105
|
},
|
|
89
106
|
pt: {
|