@everymatrix/casino-tournaments-thumbnail-rule 1.43.4 → 1.44.0
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-thumbnail-rule",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.44.0",
|
|
4
4
|
"main": "dist/casino-tournaments-thumbnail-rule.js",
|
|
5
5
|
"svelte": "src/index.ts",
|
|
6
6
|
"scripts": {
|
|
@@ -35,5 +35,5 @@
|
|
|
35
35
|
"publishConfig": {
|
|
36
36
|
"access": "public"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "701410f2b76dfe1ee4038f799b1e8e340c85cdb5"
|
|
39
39
|
}
|
|
@@ -129,29 +129,29 @@
|
|
|
129
129
|
<img src="{trophySvg}"/>
|
|
130
130
|
</div>
|
|
131
131
|
<div class="RuleTxt" part="RuleTxt">
|
|
132
|
-
{#if scorecriterial == 'BetCount'}{@html $_('
|
|
133
|
-
{#if scorecriterial == 'WinStakeRatio'}{@html $_('
|
|
134
|
-
{#if scorecriterial == 'MaxWinStakeRatio'}{@html $_('
|
|
135
|
-
{#if scorecriterial == 'Stake'}{@html $_('
|
|
132
|
+
{#if scorecriterial == 'BetCount'}{@html $_('scoreCriteriaType.mostRounds')}{/if}
|
|
133
|
+
{#if scorecriterial == 'WinStakeRatio'}{@html $_('scoreCriteriaType.winStateRatio')}{/if}
|
|
134
|
+
{#if scorecriterial == 'MaxWinStakeRatio'}{@html $_('scoreCriteriaType.maxWinStateRatio')}{/if}
|
|
135
|
+
{#if scorecriterial == 'Stake'}{@html $_('scoreCriteriaType.stake')}{/if}
|
|
136
136
|
</div>
|
|
137
137
|
</div>
|
|
138
138
|
<div class="RulesRow" part="rule">
|
|
139
139
|
<div class="RuleIcon" part="RuleIcon">
|
|
140
140
|
<img src="{betCountSvg}"/>
|
|
141
141
|
</div>
|
|
142
|
-
<div class="RuleTxt" part="RuleTxt">{$_('
|
|
142
|
+
<div class="RuleTxt" part="RuleTxt">{$_('miniBetCount',{values: {betCount: betcount }})}</div>
|
|
143
143
|
</div>
|
|
144
144
|
<div class="RulesRow" part="rule">
|
|
145
145
|
<div class="RuleIcon" part="RuleIcon">
|
|
146
146
|
<img src="{clockSvg}" />
|
|
147
147
|
</div>
|
|
148
|
-
<div class="RuleTxt" part="RuleTxt">{$_('
|
|
148
|
+
<div class="RuleTxt" part="RuleTxt">{$_('timePeriod',{values: {startTime: starttime, endTime: endtime}})}</div>
|
|
149
149
|
</div>
|
|
150
150
|
<div class="RulesRow" part="rule">
|
|
151
151
|
<div class="RuleIcon" part="RuleIcon">
|
|
152
152
|
<img src="{vectorSvg}" />
|
|
153
153
|
</div>
|
|
154
|
-
<div class="RuleTxt" part="RuleTxt">{@html $_('
|
|
154
|
+
<div class="RuleTxt" part="RuleTxt">{@html $_('terms',{values: {tcUrl: tcurl}})}</div>
|
|
155
155
|
</div>
|
|
156
156
|
{#if casino}
|
|
157
157
|
<div class="RulesRow" part="rule">
|
|
@@ -159,23 +159,23 @@
|
|
|
159
159
|
<img src="{moneySendSvg}"/>
|
|
160
160
|
</div>
|
|
161
161
|
{#if noMinCasinoBet && noMaxCasinoBet}
|
|
162
|
-
<div class="RuleTxt" part="RuleTxt">{$_('
|
|
162
|
+
<div class="RuleTxt" part="RuleTxt">{$_('productNoLimitsBet',{values: {productName: casino.name}})}</div>
|
|
163
163
|
{:else if noMinCasinoBet}
|
|
164
|
-
<div class="RuleTxt" part="RuleTxt">{$_('
|
|
164
|
+
<div class="RuleTxt" part="RuleTxt">{$_('productMaxBet', {
|
|
165
165
|
values: {
|
|
166
166
|
productName: casino.name,
|
|
167
167
|
maxBet: `${ isNumber(casino.maxbet) ? currenciesSymbols[currency] : ''}${casino.maxbet}`,
|
|
168
168
|
}
|
|
169
169
|
})}</div>
|
|
170
170
|
{:else if noMaxCasinoBet}
|
|
171
|
-
<div class="RuleTxt" part="RuleTxt">{$_('
|
|
171
|
+
<div class="RuleTxt" part="RuleTxt">{$_('productMinBet', {
|
|
172
172
|
values: {
|
|
173
173
|
productName: casino.name,
|
|
174
174
|
minBet: `${ isNumber(casino.minbet) ? currenciesSymbols[currency] : ''}${casino.minbet}`,
|
|
175
175
|
}
|
|
176
176
|
})}</div>
|
|
177
177
|
{:else}
|
|
178
|
-
<div class="RuleTxt" part="RuleTxt">{$_('
|
|
178
|
+
<div class="RuleTxt" part="RuleTxt">{$_('productMinMaxBet', {
|
|
179
179
|
values: {
|
|
180
180
|
productName: casino.name,
|
|
181
181
|
minBet: `${isNumber(casino.minbet) ? currenciesSymbols[currency] : ''}${casino.minbet}`,
|
|
@@ -192,23 +192,23 @@
|
|
|
192
192
|
<img src="{moneySendSvg}"/>
|
|
193
193
|
</div>
|
|
194
194
|
{#if noMinSportsBet && noMaxSportsBet}
|
|
195
|
-
<div class="RuleTxt" part="RuleTxt">{$_('
|
|
195
|
+
<div class="RuleTxt" part="RuleTxt">{$_('productNoLimitsBet',{values: {productName: sports.name}})}</div>
|
|
196
196
|
{:else if noMinSportsBet}
|
|
197
|
-
<div class="RuleTxt" part="RuleTxt">{$_('
|
|
197
|
+
<div class="RuleTxt" part="RuleTxt">{$_('productMaxBet', {
|
|
198
198
|
values: {
|
|
199
199
|
productName: sports.name,
|
|
200
200
|
maxBet: `${ isNumber(sports.maxbet) ? currenciesSymbols[currency] : ''}${sports.maxbet}`,
|
|
201
201
|
}
|
|
202
202
|
})}</div>
|
|
203
203
|
{:else if noMaxSportsBet}
|
|
204
|
-
<div class="RuleTxt" part="RuleTxt">{$_('
|
|
204
|
+
<div class="RuleTxt" part="RuleTxt">{$_('productMinBet', {
|
|
205
205
|
values: {
|
|
206
206
|
productName: sports.name,
|
|
207
207
|
minBet: `${ isNumber(sports.minbet) ? currenciesSymbols[currency] : ''}${sports.minbet}`,
|
|
208
208
|
}
|
|
209
209
|
})}</div>
|
|
210
210
|
{:else}
|
|
211
|
-
<div class="RuleTxt" part="RuleTxt">{$_('
|
|
211
|
+
<div class="RuleTxt" part="RuleTxt">{$_('productMinMaxBet', {
|
|
212
212
|
values: {
|
|
213
213
|
productName: sports.name,
|
|
214
214
|
minBet: `${ isNumber(sports.minbet) ? currenciesSymbols[currency] : ''}${sports.minbet}`,
|
package/src/translations.js
CHANGED
|
@@ -1,87 +1,77 @@
|
|
|
1
1
|
export const TRANSLATIONS = {
|
|
2
2
|
"en": {
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
"productMaxBet": "For {productName}, the maximum bet amount accepted is {maxBet}."
|
|
17
|
-
}
|
|
3
|
+
"scoreCriteriaType": {
|
|
4
|
+
"stake": "The score criteria for this tournament is <b>Turnover</b>. For each X generated (X= amount wagered in player currency or equivalent in base currency) player will get 1 point. The player who will have the largest turnover will have the highest score and rank.",
|
|
5
|
+
"mostRounds": "The score criteria for this tournament is <b>Most Rounds</b>. For every played round player will get 1 point. The player who will have the biggest number of played rounds / placed bets will have the highest score and rank.",
|
|
6
|
+
"winStateRatio": "The score criteria for this tournament is <b>Win/State Ratio</b>. The score will be calculated as a sum of win/stake ratios for qualified rounds and bets. The player who got the highest score will win the tournament.",
|
|
7
|
+
"maxWinStateRatio": "The score criteria for this tournament is <b>Max Win/State Ratio</b>. The player who got the biggest win by placing the smallest bet will win the tournament (bet = 10 EUR, win = 5000 EUR, the score will be 500). Only higher ratio will update the player's score."
|
|
8
|
+
},
|
|
9
|
+
"miniBetCount": "Minimum bet count: {betCount}. To be qualified for prizes, the player has to play at least {betCount} rounds, otherwise the prize won’t be granted.",
|
|
10
|
+
"timePeriod": "The tournament start {startTime} and ends {endTime}",
|
|
11
|
+
"terms": "See <a href=\"{tcUrl}\" target=\"_blank\">Terms & Conditions.</>",
|
|
12
|
+
"productNoLimitsBet": "For {productName}, there are no minimum and maximum bet limits set.",
|
|
13
|
+
"productMinMaxBet": "For {productName}, the minimum accepted bet is {minBet} and maximum accepted bet is {maxBet}.",
|
|
14
|
+
"productMinBet": "For {productName}, the minimum bet amount accepted is {minBet}.",
|
|
15
|
+
"productMaxBet": "For {productName}, the maximum bet amount accepted is {maxBet}."
|
|
18
16
|
},
|
|
19
17
|
"tr": {
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
"productMaxBet": "{productName} için kabul edilen maksimum bahis miktarı {maxBet}'tir."
|
|
34
|
-
}
|
|
18
|
+
"scoreCriteriaType": {
|
|
19
|
+
"stake": "Bu turnuvanın puan kriteri <b>Ciro</b>'dur. Oluşturulan her X için (X= oyuncunun para biriminde veya temel para birimindeki eşdeğerinde oynanan bahis miktarı) oyuncu 1 puan alacaktır. En fazla ciroya sahip olan oyuncu en yüksek puana ve sıralamaya sahip olacaktır.",
|
|
20
|
+
"mostRounds": "Bu turnuvanın puan kriteri <b>En Çok Tur</b>'dur. Oynanan her tur için oyuncu 1 puan alacaktır. En fazla oynanan tur/bahis sayısına sahip olan oyuncu, en yüksek puana ve sıralamaya sahip olacaktır.",
|
|
21
|
+
"winStateRatio": "Bu turnuvanın puan kriteri <b>Galibiyet/Durum Oranı</b>'dır. Puan, nitelikli turlar ve bahisler için kazanma/bahis oranlarının toplamı olarak hesaplanacaktır. En yüksek puanı alan oyuncu turnuvayı kazanacak.",
|
|
22
|
+
"maxWinStateRatio": "Bu turnuvanın puan kriteri <b>Maksimum Galibiyet/Durum Oranı</b>'dır. En küçük bahsi koyarak en büyük kazancı elde eden oyuncu turnuvayı kazanacaktır (bahis = 10 EUR, galibiyet = 5000 EUR, skor 500 olacaktır). Yalnızca daha yüksek oran oyuncunun puanını güncelleyecektir."
|
|
23
|
+
},
|
|
24
|
+
"miniBetCount": "Minimum bahis sayısı: {betCount}. Ödüllere hak kazanmak için oyuncunun en az {betCount} tur oynaması gerekir, aksi takdirde ödül verilmeyecektir.",
|
|
25
|
+
"timePeriod": "Turnuva {startTime} tarihinde başlar ve {endTime} tarihinde sona erer",
|
|
26
|
+
"terms": "<a href={tcUrl}\"\" target=\"\"_blank\"\">Şartlar ve Koşullar</>\"\"a bakın.",
|
|
27
|
+
"productNoLimitsBet": "{productName} için belirlenmiş minimum ve maksimum bahis limiti yoktur.",
|
|
28
|
+
"productMinMaxBet": "{productName} için kabul edilen minimum bahis {minBet} ve kabul edilen maksimum bahis {maxBet}'tir.",
|
|
29
|
+
"productMinBet": "{productName} için kabul edilen minimum bahis miktarı {minBet}'tir.",
|
|
30
|
+
"productMaxBet": "{productName} için kabul edilen maksimum bahis miktarı {maxBet}'tir."
|
|
35
31
|
},
|
|
36
32
|
"el": {
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
"productMaxBet": "For {productName}, the maximum bet amount accepted is {maxBet}."
|
|
51
|
-
}
|
|
33
|
+
"scoreCriteriaType": {
|
|
34
|
+
"stake": "The score criteria for this tournament is <b>Turnover</b>. For each X generated (X= amount wagered in player currency or equivalent in base currency) player will get 1 point. The player who will have the largest turnover will have the highest score and rank.",
|
|
35
|
+
"mostRounds": "EL-The score criteria for this tournament is <b>Most Rounds</b>. For every played round player will get 1 point. The player who will have the biggest number of played rounds / placed bets will have the highest score and rank.",
|
|
36
|
+
"winStateRatio": "The score criteria for this tournament is <b>Win/State Ratio</b>. The score will be calculated as a sum of win/stake ratios for qualified rounds and bets. The player who got the highest score will win the tournament.",
|
|
37
|
+
"maxWinStateRatio": "The score criteria for this tournament is <b>Max Win/State Ratio</b>. The player who got the biggest win by placing the smallest bet will win the tournament (bet = 10 EUR, win = 5000 EUR, the score will be 500). Only higher ratio will update the player's score."
|
|
38
|
+
},
|
|
39
|
+
"miniBetCount": "Minimum bet count: {betCount}. To be qualified for prizes, the player has to play at least {betCount} rounds, otherwise the prize won’t be granted.",
|
|
40
|
+
"timePeriod": "The tournament start {startTime} and ends {endTime}",
|
|
41
|
+
"terms": "See <a href=\"{tcUrl}\" target=\"_blank\">Terms & Conditions.</>",
|
|
42
|
+
"productNoLimitsBet": "For {productName}, there are no minimum and maximum bet limits set.",
|
|
43
|
+
"productMinMaxBet": "For {productName}, the minimum accepted bet is {minBet} and maximum accepted bet is {maxBet}.",
|
|
44
|
+
"productMinBet": "For {productName}, the minimum bet amount accepted is {minBet}.",
|
|
45
|
+
"productMaxBet": "For {productName}, the maximum bet amount accepted is {maxBet}."
|
|
52
46
|
},
|
|
53
47
|
"hu": {
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
"productMaxBet": "A {productName}-nál a maximálisan elfogadott tét összege {maxBet}."
|
|
68
|
-
}
|
|
48
|
+
"scoreCriteriaType": {
|
|
49
|
+
"stake": "A verseny pontozási szempontja a <b>Forgalom</b>. Minden X generált összegért (X = a játékos pénznemben tett tét összege vagy az alapvaluta megfelelője) a játékos 1 pontot kap. A legnagyobb forgalmat birtokló játékos lesz a legmagasabb pontszámú és rangú.",
|
|
50
|
+
"mostRounds": "A verseny pontozási szempontja a <b>Legtöbb kör</b>. Minden lejátszott körért a játékos 1 pontot kap. A legtöbb lejátszott körrel / tét helyezéssel rendelkező játékos lesz a legmagasabb pontszámú és rangú.",
|
|
51
|
+
"winStateRatio": "A verseny pontozási szempontja a <b>Nyereség/Állapotarány</b>. A pontot az alkalmas körök és tétek nyerés / tét arányainak összegeként számítják. A legmagasabb pontszámot elért játékos nyeri a versenyt.",
|
|
52
|
+
"maxWinStateRatio": "A verseny pontozási szempontja a <b>Max Nyereség/Állapotarány</b>. A legkisebb téttel a legnagyobb nyereményt elért játékos nyeri a versenyt (tét = 10 EUR, nyeremény = 5000 EUR, a pontszám 500 lesz). Csak a magasabb arány frissíti a játékos pontszámát."
|
|
53
|
+
},
|
|
54
|
+
"miniBetCount": "Minimális tét szám: {betCount}. Az árakhoz való jogosultsághoz a játékosnak legalább {betCount} kört kell játszania, különben az ár nem kerül kiosztásra.",
|
|
55
|
+
"timePeriod": "A verseny {startTime}-kor kezdődik és {endTime}-kor végződik.",
|
|
56
|
+
"terms": "Lásd a <a href=\"{tcUrl}\" target=\"_blank\">Felhasználási feltételeket.</>",
|
|
57
|
+
"productNoLimitsBet": "A {productName}-nál nincsenek minimális és maximális tét határok beállítva.",
|
|
58
|
+
"productMinMaxBet": "A {productName}-nál a minimálisan elfogadott tét {minBet}, a maximálisan elfogadott tét pedig {maxBet}.",
|
|
59
|
+
"productMinBet": "A {productName}-nál a minimálisan elfogadott tét összege {minBet}.",
|
|
60
|
+
"productMaxBet": "A {productName}-nál a maximálisan elfogadott tét összege {maxBet}."
|
|
69
61
|
},
|
|
70
62
|
"pt": {
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
"productMaxBet": "Para {productName}, o valor máximo da aposta aceita é {maxBet}."
|
|
85
|
-
}
|
|
63
|
+
"scoreCriteriaType": {
|
|
64
|
+
"stake": "The score criteria for this tournament is <b>Turnover</b>. For each X generated (X= amount wagered in player currency or equivalent in base currency) player will get 1 point. The player who will have the largest turnover will have the highest score and rank.",
|
|
65
|
+
"mostRounds": "The score criteria for this tournament is <b>Most Rounds</b>. For every played round player will get 1 point. The player who will have the biggest number of played rounds / placed bets will have the highest score and rank.",
|
|
66
|
+
"winStateRatio": "The score criteria for this tournament is <b>Win/State Ratio</b>. The score will be calculated as a sum of win/stake ratios for qualified rounds and bets. The player who got the highest score will win the tournament.",
|
|
67
|
+
"maxWinStateRatio": "The score criteria for this tournament is <b>Max Win/State Ratio</b>. The player who got the biggest win by placing the smallest bet will win the tournament (bet = 10 EUR, win = 5000 EUR, the score will be 500). Only higher ratio will update the player's score."
|
|
68
|
+
},
|
|
69
|
+
"miniBetCount": "Mínimo de apostas: {betCount}. Para se qualificar para os prêmios, o jogador deve jogar pelo menos {betCount} rodadas, caso contrário, o prêmio não será concedido.",
|
|
70
|
+
"timePeriod": "O torneio começa {startTime} e termina {endTime}",
|
|
71
|
+
"terms": "Veja os <a href=\"{tcUrl}\" target=\"_blank\">Termos & Condições.</>",
|
|
72
|
+
"productNoLimitsBet": "Para {productName}, não há limites mínimo e máximo de apostas definidos.",
|
|
73
|
+
"productMinMaxBet": "Para {productName}, a aposta mínima aceita é {minBet} e a aposta máxima aceita é {maxBet}.",
|
|
74
|
+
"productMinBet": "Para {productName}, o valor mínimo da aposta aceita é {minBet}.",
|
|
75
|
+
"productMaxBet": "Para {productName}, o valor máximo da aposta aceita é {maxBet}."
|
|
86
76
|
}
|
|
87
77
|
}
|