@everymatrix/player-rglimits 1.29.3 → 1.29.5
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/dist/player-rglimits.js +247 -233
- package/dist/player-rglimits.js.map +1 -1
- package/index.html +1 -1
- package/package.json +2 -2
- package/src/PlayerRglimits.svelte +94 -1
- package/src/images/fa-calendar-times-o.svg.svelte +2 -0
- package/src/images/fa-pencil.svg.svelte +2 -0
- package/src/images/fa-refresh.svg.svelte +2 -0
- package/src/images/fa-times.svg.svelte +2 -0
- package/src/translations.js +75 -21
- package/types/types.ts +1 -0
package/index.html
CHANGED
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
|
|
32
32
|
<div class="webcomponent">
|
|
33
33
|
<player-rglimits
|
|
34
|
-
session="
|
|
34
|
+
session="0de7e5bf667d9f8ce767d2aca296887999a8a6f4a256d9e4"
|
|
35
35
|
sessiontype="admin"
|
|
36
36
|
userid="6252873"
|
|
37
37
|
transactionspageurl="https://backoffice-stage.everymatrix.com/2670"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@everymatrix/player-rglimits",
|
|
3
|
-
"version": "1.29.
|
|
3
|
+
"version": "1.29.5",
|
|
4
4
|
"main": "index.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": "f2e3f1edbe2a15979fd224f987ea52d179bb95f0"
|
|
39
39
|
}
|
|
@@ -10,6 +10,9 @@
|
|
|
10
10
|
import './images/caret-select.svg.svelte';
|
|
11
11
|
import './images/fa-caret-right.svg.svelte';
|
|
12
12
|
import './images/curency.svg.svelte';
|
|
13
|
+
import './images/fa-calendar-times-o.svg.svelte';
|
|
14
|
+
import './images/fa-pencil.svg.svelte';
|
|
15
|
+
import './images/fa-times.svg.svelte';
|
|
13
16
|
|
|
14
17
|
import '@everymatrix/general-animation-loading'
|
|
15
18
|
|
|
@@ -24,6 +27,9 @@
|
|
|
24
27
|
export let lang:string = 'en';
|
|
25
28
|
export let translationurl:string = '';
|
|
26
29
|
export let datetimeformat:string = '';
|
|
30
|
+
export let editlimitaction:string = '';
|
|
31
|
+
export let deletelimitaction:string = '';
|
|
32
|
+
export let cancelimitscheduleaction:string = '';
|
|
27
33
|
|
|
28
34
|
let displayNone:boolean = false;
|
|
29
35
|
let customStylingContainer: HTMLElement;
|
|
@@ -38,6 +44,7 @@
|
|
|
38
44
|
let showDropdown:boolean = false;
|
|
39
45
|
|
|
40
46
|
let displayedLimit:DisplayedLimit = {
|
|
47
|
+
id:'',
|
|
41
48
|
totalAmount: null,
|
|
42
49
|
spentAmount: '',
|
|
43
50
|
limitCurrency: 'EUR',
|
|
@@ -164,7 +171,7 @@
|
|
|
164
171
|
|
|
165
172
|
const allowedLimitTypes = ['Deposit', 'Loss', 'Wagering'];
|
|
166
173
|
const limitTypes: string[] = res.limits.map((item: MonetaryLimitType) => item.type);
|
|
167
|
-
limitTypeList = Array.from(new Set(limitTypes)).filter(
|
|
174
|
+
limitTypeList = Array.from(new Set(limitTypes)).filter((type) => allowedLimitTypes.includes(type));
|
|
168
175
|
if (!selectedLimitType) {
|
|
169
176
|
selectedLimitType = limitTypeList[0];
|
|
170
177
|
}
|
|
@@ -247,6 +254,7 @@
|
|
|
247
254
|
const limitSchedule = formatScheduleData(limit.id, limit.schedules);
|
|
248
255
|
|
|
249
256
|
displayedLimit = {
|
|
257
|
+
id: limit.id,
|
|
250
258
|
totalAmount: limitBalance.limitAmount,
|
|
251
259
|
spentAmount: limitBalance.spentBalance.amount.toFixed(2),
|
|
252
260
|
limitCurrency: limitBalance.limitCurrency,
|
|
@@ -519,8 +527,63 @@
|
|
|
519
527
|
return new Date(from.getTime() - (days * 24 * 60 * 60 * 1000));
|
|
520
528
|
}
|
|
521
529
|
|
|
530
|
+
/**
|
|
531
|
+
* Sets the session information upon login.
|
|
532
|
+
*/
|
|
533
|
+
const initListeners = ():void => {
|
|
534
|
+
window.addEventListener('message', (e) => {
|
|
535
|
+
if (e.data.type === "RGW:RefreshLimits") {
|
|
536
|
+
getLimitBalance();
|
|
537
|
+
}
|
|
538
|
+
});
|
|
539
|
+
}
|
|
540
|
+
|
|
541
|
+
|
|
542
|
+
/**
|
|
543
|
+
* Sends DOM event for opening edit limit modal.
|
|
544
|
+
*
|
|
545
|
+
*/
|
|
546
|
+
const editLimit = ():void => {
|
|
547
|
+
window.postMessage({
|
|
548
|
+
type: 'RGW:EditLimit',
|
|
549
|
+
payload: {
|
|
550
|
+
id: displayedLimit.id
|
|
551
|
+
}
|
|
552
|
+
}, window.location.href)
|
|
553
|
+
}
|
|
554
|
+
|
|
555
|
+
/**
|
|
556
|
+
* Sends DOM event to cancel the limit
|
|
557
|
+
*
|
|
558
|
+
*/
|
|
559
|
+
const deleteLimit = ():void => {
|
|
560
|
+
window.postMessage({
|
|
561
|
+
type: 'RGW:DeleteLimit',
|
|
562
|
+
payload: {
|
|
563
|
+
id: displayedLimit.id
|
|
564
|
+
}
|
|
565
|
+
}, window.location.href)
|
|
566
|
+
}
|
|
567
|
+
|
|
568
|
+
/**
|
|
569
|
+
* Sends DOM event to cancel the limit schedule
|
|
570
|
+
*
|
|
571
|
+
*/
|
|
572
|
+
const cancelSchedule = ():void => {
|
|
573
|
+
if (displayedLimit && displayedLimit.formattedSchedule) {
|
|
574
|
+
window.postMessage({
|
|
575
|
+
type: 'RGW:CancelLimitSchedule',
|
|
576
|
+
payload: {
|
|
577
|
+
limitId: displayedLimit.id,
|
|
578
|
+
scheduleId: displayedLimit.formattedSchedule.id
|
|
579
|
+
}
|
|
580
|
+
}, window.location.href)
|
|
581
|
+
}
|
|
582
|
+
}
|
|
583
|
+
|
|
522
584
|
$: isMounted && session && userid && setSession();
|
|
523
585
|
$: isMounted && isLoggedIn && getLimitBalance();
|
|
586
|
+
$: isMounted && isLoggedIn && initListeners();
|
|
524
587
|
$: clientstyling && customStylingContainer && setClientStyling();
|
|
525
588
|
$: clientstylingurl && customStylingContainer && setClientStylingURL();
|
|
526
589
|
$: lang && setActiveLanguage();
|
|
@@ -632,6 +695,25 @@
|
|
|
632
695
|
</select>
|
|
633
696
|
</div>
|
|
634
697
|
{/if}
|
|
698
|
+
{#if limitTypeList.length > 0 && sessiontype === 'admin' && displayedLimit}
|
|
699
|
+
<div class="ControlContainer">
|
|
700
|
+
{#if editlimitaction === 'true'}
|
|
701
|
+
<button class="ActionButton" title="{$_('editLimitTitle')}" on:click|stopPropagation={() => editLimit()}>
|
|
702
|
+
<pencil-icon/>
|
|
703
|
+
</button>
|
|
704
|
+
{/if}
|
|
705
|
+
{#if deletelimitaction === 'true'}
|
|
706
|
+
<button class="ActionButton" title="{$_('deleteLimitTitle')}" on:click|stopPropagation={() => deleteLimit()}>
|
|
707
|
+
<cancel-limit-icon/>
|
|
708
|
+
</button>
|
|
709
|
+
{/if}
|
|
710
|
+
{#if cancelimitscheduleaction === 'true' && displayedLimit.formattedSchedule && displayedLimit.formattedSchedule.isRemoved === true}
|
|
711
|
+
<button class="ActionButton" title="{$_('cancelScheduleTitle')}" on:click|stopPropagation={() => cancelSchedule()}>
|
|
712
|
+
<calendar-times-icon/>
|
|
713
|
+
</button>
|
|
714
|
+
{/if}
|
|
715
|
+
</div>
|
|
716
|
+
{/if}
|
|
635
717
|
</div>
|
|
636
718
|
{#if isGaugeLoading}
|
|
637
719
|
<general-animation-loading clientstyling={clientstyling} clientstylingurl={clientstylingurl} />
|
|
@@ -764,6 +846,17 @@
|
|
|
764
846
|
margin-bottom: 5px;
|
|
765
847
|
}
|
|
766
848
|
|
|
849
|
+
.ControlContainer button {
|
|
850
|
+
padding: 5px;
|
|
851
|
+
border: 1px solid #07072A;
|
|
852
|
+
border-radius: 5px;
|
|
853
|
+
width: 25px;
|
|
854
|
+
cursor: pointer;
|
|
855
|
+
display: flex;
|
|
856
|
+
flex-direction: column;
|
|
857
|
+
margin-bottom: 4px;
|
|
858
|
+
}
|
|
859
|
+
|
|
767
860
|
.Gauge {
|
|
768
861
|
width: 100%;
|
|
769
862
|
font-family: 'Roboto', sans-serif;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
<svelte:options tag={'calendar-times-icon'} />
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="0.93em" height="1em" viewBox="0 0 1664 1792"><path fill="currentColor" d="m1111 1385l-46 46q-9 9-22 9t-23-9l-188-189l-188 189q-10 9-23 9t-22-9l-46-46q-9-9-9-22t9-23l189-188l-189-188q-9-10-9-23t9-22l46-46q9-9 22-9t23 9l188 188l188-188q10-9 23-9t22 9l46 46q9 9 9 22t-9 23l-188 188l188 188q9 10 9 23t-9 22m-983 279h1408V640H128zM512 448V160q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v288q0 14 9 23t23 9h64q14 0 23-9t9-23m768 0V160q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v288q0 14 9 23t23 9h64q14 0 23-9t9-23m384-64v1280q0 52-38 90t-90 38H128q-52 0-90-38t-38-90V384q0-52 38-90t90-38h128v-96q0-66 47-113T416 0h64q66 0 113 47t47 113v96h384v-96q0-66 47-113t113-47h64q66 0 113 47t47 113v96h128q52 0 90 38t38 90"/></svg>
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
<svelte:options tag={'pencil-icon'} />
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 1536 1536"><path fill="currentColor" d="m363 1408l91-91l-235-235l-91 91v107h128v128zm523-928q0-22-22-22q-10 0-17 7l-542 542q-7 7-7 17q0 22 22 22q10 0 17-7l542-542q7-7 7-17m-54-192l416 416l-832 832H0v-416zm683 96q0 53-37 90l-166 166l-416-416l166-165q36-38 90-38q53 0 91 38l235 234q37 39 37 91"/></svg>
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
<svelte:options tag={'refresh-icon'} />
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 1536 1536"><path fill="currentColor" d="M1511 928q0 5-1 7q-64 268-268 434.5T764 1536q-146 0-282.5-55T238 1324l-129 129q-19 19-45 19t-45-19t-19-45V960q0-26 19-45t45-19h448q26 0 45 19t19 45t-19 45l-137 137q71 66 161 102t187 36q134 0 250-65t186-179q11-17 53-117q8-23 30-23h192q13 0 22.5 9.5t9.5 22.5m25-800v448q0 26-19 45t-45 19h-448q-26 0-45-19t-19-45t19-45l138-138Q969 256 768 256q-134 0-250 65T332 500q-11 17-53 117q-8 23-30 23H50q-13 0-22.5-9.5T18 608v-7q65-268 270-434.5T768 0q146 0 284 55.5T1297 212l130-129q19-19 45-19t45 19t19 45"/></svg>
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
<svelte:options tag={'cancel-limit-icon'} />
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="0.93em" height="1em" viewBox="0 0 1216 1312"><path fill="currentColor" d="M1202 1066q0 40-28 68l-136 136q-28 28-68 28t-68-28L608 976l-294 294q-28 28-68 28t-68-28L42 1134q-28-28-28-68t28-68l294-294L42 410q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 294l294-294q28-28 68-28t68 28l136 136q28 28 28 68t-28 68L880 704l294 294q28 28 28 68"/></svg>
|
package/src/translations.js
CHANGED
|
@@ -23,7 +23,10 @@ export const TRANSLATIONS = {
|
|
|
23
23
|
"resetLabel": "Reset",
|
|
24
24
|
"infoLabel": "Info",
|
|
25
25
|
"walletLabel": "Wallet",
|
|
26
|
-
"walletsLabel": "Wallets"
|
|
26
|
+
"walletsLabel": "Wallets",
|
|
27
|
+
"editLimitTitle": "Edit Limit",
|
|
28
|
+
"deleteLimitTitle": "Delete limit",
|
|
29
|
+
"cancelScheduleTitle": "Cancel schedule"
|
|
27
30
|
},
|
|
28
31
|
"zh-hk": {
|
|
29
32
|
"noLimitToDisplay": "使用者尚未設定限額...",
|
|
@@ -49,7 +52,10 @@ export const TRANSLATIONS = {
|
|
|
49
52
|
"resetLabel": "重設",
|
|
50
53
|
"infoLabel": "信息",
|
|
51
54
|
"walletLabel": "錢包",
|
|
52
|
-
"walletsLabel": "錢包"
|
|
55
|
+
"walletsLabel": "錢包",
|
|
56
|
+
"editLimitTitle": "編輯限制",
|
|
57
|
+
"deleteLimitTitle": "刪除限制",
|
|
58
|
+
"cancelScheduleTitle": "取消行程"
|
|
53
59
|
},
|
|
54
60
|
"de": {
|
|
55
61
|
"noLimitToDisplay": "Der Benutzer hat kein Limit festgelegt...",
|
|
@@ -75,7 +81,10 @@ export const TRANSLATIONS = {
|
|
|
75
81
|
"resetLabel": "Zurücksetzen",
|
|
76
82
|
"infoLabel": "Info",
|
|
77
83
|
"walletLabel": "Brieftasche",
|
|
78
|
-
"walletsLabel": "Brieftaschen"
|
|
84
|
+
"walletsLabel": "Brieftaschen",
|
|
85
|
+
"editLimitTitle": "Limit bearbeiten",
|
|
86
|
+
"deleteLimitTitle": "Limit löschen",
|
|
87
|
+
"cancelScheduleTitle": "Zeitplan abbrechen"
|
|
79
88
|
},
|
|
80
89
|
"it": {
|
|
81
90
|
"noLimitToDisplay": "L'utente non ha impostato un limite...",
|
|
@@ -101,7 +110,10 @@ export const TRANSLATIONS = {
|
|
|
101
110
|
"resetLabel": "Ripristina",
|
|
102
111
|
"infoLabel": "Info",
|
|
103
112
|
"walletLabel": "Portafoglio",
|
|
104
|
-
"walletsLabel": "Portafogli"
|
|
113
|
+
"walletsLabel": "Portafogli",
|
|
114
|
+
"editLimitTitle": "Modifica limite",
|
|
115
|
+
"deleteLimitTitle": "Elimina limite",
|
|
116
|
+
"cancelScheduleTitle": "Annulla pianificazione"
|
|
105
117
|
},
|
|
106
118
|
"fr": {
|
|
107
119
|
"noLimitToDisplay": "L'utilisateur n'a pas fixé de limite...",
|
|
@@ -127,7 +139,10 @@ export const TRANSLATIONS = {
|
|
|
127
139
|
"resetLabel": "Réinitialiser",
|
|
128
140
|
"infoLabel": "Info",
|
|
129
141
|
"walletLabel": "Portefeuille",
|
|
130
|
-
"walletsLabel": "Portefeuilles"
|
|
142
|
+
"walletsLabel": "Portefeuilles",
|
|
143
|
+
"editLimitTitle": "Modifier la limite",
|
|
144
|
+
"deleteLimitTitle": "Supprimer la limite",
|
|
145
|
+
"cancelScheduleTitle": "Annuler le planning"
|
|
131
146
|
},
|
|
132
147
|
"es": {
|
|
133
148
|
"noLimitToDisplay": "El usuario no ha establecido un límite...",
|
|
@@ -153,7 +168,10 @@ export const TRANSLATIONS = {
|
|
|
153
168
|
"resetLabel": "Reiniciar",
|
|
154
169
|
"infoLabel": "Información",
|
|
155
170
|
"walletLabel": "Cartera",
|
|
156
|
-
"walletsLabel": "Carteras"
|
|
171
|
+
"walletsLabel": "Carteras",
|
|
172
|
+
"editLimitTitle": "Editar límite",
|
|
173
|
+
"deleteLimitTitle": "Eliminar límite",
|
|
174
|
+
"cancelScheduleTitle": "Cancelar programación"
|
|
157
175
|
},
|
|
158
176
|
"el": {
|
|
159
177
|
"noLimitToDisplay": "Ο χρήστης δεν έχει ορίσει όριο...",
|
|
@@ -179,7 +197,10 @@ export const TRANSLATIONS = {
|
|
|
179
197
|
"resetLabel": "Επαναφορά",
|
|
180
198
|
"infoLabel": "Πληροφορίες",
|
|
181
199
|
"walletLabel": "Πορτοφόλι",
|
|
182
|
-
"walletsLabel": "Πορτοφόλια"
|
|
200
|
+
"walletsLabel": "Πορτοφόλια",
|
|
201
|
+
"editLimitTitle": "Επεξεργασία ορίου",
|
|
202
|
+
"deleteLimitTitle": "Διαγραφή ορίου",
|
|
203
|
+
"cancelScheduleTitle": "Ακύρωση προγράμματος"
|
|
183
204
|
},
|
|
184
205
|
"tr": {
|
|
185
206
|
"noLimitToDisplay": "Kullanıcı bir sınırlama belirlemedi...",
|
|
@@ -205,7 +226,10 @@ export const TRANSLATIONS = {
|
|
|
205
226
|
"resetLabel": "Sıfırla",
|
|
206
227
|
"infoLabel": "Bilgi",
|
|
207
228
|
"walletLabel": "Cüzdan",
|
|
208
|
-
"walletsLabel": "Cüzdanlar"
|
|
229
|
+
"walletsLabel": "Cüzdanlar",
|
|
230
|
+
"editLimitTitle": "Sınırı Düzenle",
|
|
231
|
+
"deleteLimitTitle": "Sınırı sil",
|
|
232
|
+
"cancelScheduleTitle": "Programı iptal et"
|
|
209
233
|
},
|
|
210
234
|
"ru": {
|
|
211
235
|
"noLimitToDisplay": "Пользователь не установил лимит...",
|
|
@@ -231,7 +255,10 @@ export const TRANSLATIONS = {
|
|
|
231
255
|
"resetLabel": "Сброс",
|
|
232
256
|
"infoLabel": "Информация",
|
|
233
257
|
"walletLabel": "Кошелек",
|
|
234
|
-
"walletsLabel": "Кошельки"
|
|
258
|
+
"walletsLabel": "Кошельки",
|
|
259
|
+
"editLimitTitle": "Изменить лимит",
|
|
260
|
+
"deleteLimitTitle": "Удалить лимит",
|
|
261
|
+
"cancelScheduleTitle": "Отменить расписание"
|
|
235
262
|
},
|
|
236
263
|
"ro": {
|
|
237
264
|
"noLimitToDisplay": "Utilizatorul nu a setat nicio limită...",
|
|
@@ -257,7 +284,10 @@ export const TRANSLATIONS = {
|
|
|
257
284
|
"resetLabel": "Resetare",
|
|
258
285
|
"infoLabel": "Info",
|
|
259
286
|
"walletLabel": "Portofel",
|
|
260
|
-
"walletsLabel": "Portofele"
|
|
287
|
+
"walletsLabel": "Portofele",
|
|
288
|
+
"editLimitTitle": "Editați limita",
|
|
289
|
+
"deleteLimitTitle": "Ștergeți limita",
|
|
290
|
+
"cancelScheduleTitle": "Anulați programul"
|
|
261
291
|
},
|
|
262
292
|
"hr": {
|
|
263
293
|
"noLimitToDisplay": "Korisnik nije postavio limit...",
|
|
@@ -283,7 +313,10 @@ export const TRANSLATIONS = {
|
|
|
283
313
|
"resetLabel": "Resetiraj",
|
|
284
314
|
"infoLabel": "Informacije",
|
|
285
315
|
"walletLabel": "Novčanik",
|
|
286
|
-
"walletsLabel": "Novčanici"
|
|
316
|
+
"walletsLabel": "Novčanici",
|
|
317
|
+
"editLimitTitle": "Uredi ograničenje",
|
|
318
|
+
"deleteLimitTitle": "Ograničenje brisanja",
|
|
319
|
+
"cancelScheduleTitle": "Otkaži raspored"
|
|
287
320
|
},
|
|
288
321
|
"hu": {
|
|
289
322
|
"noLimitToDisplay": "A felhasználó nem állított be korlátot...",
|
|
@@ -309,7 +342,10 @@ export const TRANSLATIONS = {
|
|
|
309
342
|
"resetLabel": "Visszaállítás",
|
|
310
343
|
"infoLabel": "Információ",
|
|
311
344
|
"walletLabel": "Pénztárca",
|
|
312
|
-
"walletsLabel": "Pénztárcák"
|
|
345
|
+
"walletsLabel": "Pénztárcák",
|
|
346
|
+
"editLimitTitle": "Korlát szerkesztése",
|
|
347
|
+
"deleteLimitTitle": "Korlát törlése",
|
|
348
|
+
"cancelScheduleTitle": "Ütemezés törlése"
|
|
313
349
|
},
|
|
314
350
|
"pl": {
|
|
315
351
|
"noLimitToDisplay": "Użytkownik nie ustawił limitu...",
|
|
@@ -335,7 +371,10 @@ export const TRANSLATIONS = {
|
|
|
335
371
|
"resetLabel": "Resetuj",
|
|
336
372
|
"infoLabel": "Informacje",
|
|
337
373
|
"walletLabel": "Portfel",
|
|
338
|
-
"walletsLabel": "Portfele"
|
|
374
|
+
"walletsLabel": "Portfele",
|
|
375
|
+
"editLimitTitle": "Limit edycji",
|
|
376
|
+
"deleteLimitTitle": "Usuń limit",
|
|
377
|
+
"cancelScheduleTitle": "Anuluj harmonogram"
|
|
339
378
|
},
|
|
340
379
|
"pt": {
|
|
341
380
|
"noLimitToDisplay": "O usuário não definiu um limite...",
|
|
@@ -361,7 +400,10 @@ export const TRANSLATIONS = {
|
|
|
361
400
|
"resetLabel": "Redefinir",
|
|
362
401
|
"infoLabel": "Informação",
|
|
363
402
|
"walletLabel": "Carteira",
|
|
364
|
-
"walletsLabel": "Carteiras"
|
|
403
|
+
"walletsLabel": "Carteiras",
|
|
404
|
+
"editLimitTitle": "Editar Limite",
|
|
405
|
+
"deleteLimitTitle": "Excluir limite",
|
|
406
|
+
"cancelScheduleTitle": "Cancelar agendamento"
|
|
365
407
|
},
|
|
366
408
|
"sl": {
|
|
367
409
|
"noLimitToDisplay": "Uporabnik ni določil omejitve...",
|
|
@@ -387,7 +429,10 @@ export const TRANSLATIONS = {
|
|
|
387
429
|
"resetLabel": "Ponastavi",
|
|
388
430
|
"infoLabel": "Informacije",
|
|
389
431
|
"walletLabel": "Denarnica",
|
|
390
|
-
"walletsLabel": "Denarnice"
|
|
432
|
+
"walletsLabel": "Denarnice",
|
|
433
|
+
"editLimitTitle": "Uredi omejitev",
|
|
434
|
+
"deleteLimitTitle": "Omejitev brisanja",
|
|
435
|
+
"cancelScheduleTitle": "Prekliči razpored"
|
|
391
436
|
},
|
|
392
437
|
"sr": {
|
|
393
438
|
"noLimitToDisplay": "Korisnik nije postavio limit...",
|
|
@@ -413,7 +458,10 @@ export const TRANSLATIONS = {
|
|
|
413
458
|
"resetLabel": "Resetuj",
|
|
414
459
|
"infoLabel": "Informacije",
|
|
415
460
|
"walletLabel": "Novčanik",
|
|
416
|
-
"walletsLabel": "Novčanici"
|
|
461
|
+
"walletsLabel": "Novčanici",
|
|
462
|
+
"editLimitTitle": "Ograničenje uređivanja",
|
|
463
|
+
"deleteLimitTitle": "Izbriši ograničenje",
|
|
464
|
+
"cancelScheduleTitle": "Otkaži raspored"
|
|
417
465
|
},
|
|
418
466
|
"es-mx": {
|
|
419
467
|
"noLimitToDisplay": "El usuario no ha establecido un límite...",
|
|
@@ -439,9 +487,12 @@ export const TRANSLATIONS = {
|
|
|
439
487
|
"resetLabel": "Reiniciar",
|
|
440
488
|
"infoLabel": "Información",
|
|
441
489
|
"walletLabel": "Cartera",
|
|
442
|
-
"walletsLabel": "Carteras"
|
|
443
|
-
|
|
444
|
-
|
|
490
|
+
"walletsLabel": "Carteras",
|
|
491
|
+
"editLimitTitle": "Editar límite",
|
|
492
|
+
"deleteLimitTitle": "Eliminar límite",
|
|
493
|
+
"cancelScheduleTitle": "Cancelar programación"
|
|
494
|
+
},
|
|
495
|
+
"pt-br": {
|
|
445
496
|
"noLimitToDisplay": "O usuário não definiu um limite...",
|
|
446
497
|
"depositLimitHeader": "Limite de depósito",
|
|
447
498
|
"lossLimitHeader": "Limite de perda",
|
|
@@ -465,6 +516,9 @@ export const TRANSLATIONS = {
|
|
|
465
516
|
"resetLabel": "Redefinir",
|
|
466
517
|
"infoLabel": "Informação",
|
|
467
518
|
"walletLabel": "Carteira",
|
|
468
|
-
"walletsLabel": "Carteiras"
|
|
469
|
-
|
|
519
|
+
"walletsLabel": "Carteiras",
|
|
520
|
+
"editLimitTitle": "Editar Limite",
|
|
521
|
+
"deleteLimitTitle": "Excluir limite",
|
|
522
|
+
"cancelScheduleTitle": "Cancelar agendamento"
|
|
523
|
+
}
|
|
470
524
|
}
|