@everymatrix/player-rglimits 1.29.7 → 1.29.9

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/index.html CHANGED
@@ -31,12 +31,25 @@
31
31
 
32
32
  <div class="webcomponent">
33
33
  <player-rglimits
34
- session="0de7e5bf667d9f8ce767d2aca296887999a8a6f4a256d9e4"
34
+ session="4fbdd39b70d8b93163dc95f20a111b6cea3e0ad15ce90fb8"
35
35
  sessiontype="admin"
36
36
  userid="6252873"
37
37
  transactionspageurl="https://backoffice-stage.everymatrix.com/2670"
38
38
  endpoint="https://betathome-de-stage-api.stage.norway.everymatrix.com"
39
+ editlimitaction="true"
40
+ deletelimitaction="true"
41
+ cancelimitscheduleaction="true"
39
42
  ></player-rglimits>
43
+ <!--<player-rglimits
44
+ session="1cb29c658e7c0fd4547aac18727fa445bf61f8497522449e"
45
+ sessiontype="admin"
46
+ userid="6292957"
47
+ transactionspageurl="https://backoffice-stage.everymatrix.com/2670"
48
+ endpoint="https://betathome-de-stage-api.stage.norway.everymatrix.com"
49
+ editlimitaction="true"
50
+ deletelimitaction="true"
51
+ cancelimitscheduleaction="true"
52
+ ></player-rglimits>-->
40
53
  </div>
41
54
 
42
55
  </body>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@everymatrix/player-rglimits",
3
- "version": "1.29.7",
3
+ "version": "1.29.9",
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": "6774dd803fe9ab951334d05d7f0ec99f78b6c0a0"
38
+ "gitHead": "05812474414208c4e167d71e59fd31ee853939a9"
39
39
  }
@@ -13,6 +13,7 @@
13
13
  import './images/fa-calendar-times-o.svg.svelte';
14
14
  import './images/fa-pencil.svg.svelte';
15
15
  import './images/fa-times.svg.svelte';
16
+ import './images/fa-plus-solid.svg.svelte';
16
17
 
17
18
  import '@everymatrix/general-animation-loading'
18
19
 
@@ -253,7 +254,6 @@
253
254
  selectedProduct = limitBalance.limitProducts[0];
254
255
 
255
256
  const limitSchedule = formatScheduleData(limit.id, limit.schedules);
256
-
257
257
  displayedLimit = {
258
258
  id: limit.id,
259
259
  totalAmount: limitBalance.limitAmount,
@@ -477,16 +477,16 @@
477
477
  * Get the transactions url.
478
478
  */
479
479
  const getTransactionsUrl = ():string => {
480
- try {
481
- const transactionUrl = transactionspageurl;
482
- const page = selectedLimitType === 'Deposit' ? 'payment-transactions' : 'gaming-transactions';
483
- const substractMap = {
484
- 'Daily': 1,
485
- 'Weekly': 7,
486
- 'Monthly': 30
487
- };
488
- const filterStartDate = subtractDays(new Date(displayedLimit.to), substractMap[selectedLimitPeriod]);
480
+ const transactionUrl = transactionspageurl;
481
+ const page = selectedLimitType === 'Deposit' ? 'payment-transactions' : 'gaming-transactions';
482
+ const subtractMap = {
483
+ 'Daily': 1,
484
+ 'Weekly': 7,
485
+ 'Monthly': 30
486
+ };
487
+ const filterStartDate = subtractDays(new Date(displayedLimit.to), subtractMap[selectedLimitPeriod]);
489
488
 
489
+ try {
490
490
  const url = new URL(`${transactionUrl}/gammatrix/gmwi/${page}`);
491
491
  url.searchParams.append('transStatuses', '2');
492
492
  url.searchParams.append('startTime', filterStartDate.toISOString());
@@ -529,7 +529,8 @@
529
529
  */
530
530
  const initListeners = ():void => {
531
531
  window.addEventListener('message', (e) => {
532
- if (e.data.type === "RGW:RefreshLimits") {
532
+ if (e.data.type === 'RGW:RefreshLimits') {
533
+ selectedLimitType = '';
533
534
  getLimitBalance();
534
535
  }
535
536
  });
@@ -578,9 +579,19 @@
578
579
  }
579
580
  }
580
581
 
582
+ /**
583
+ * Sends DOM event to open add limit modal
584
+ *
585
+ */
586
+ const addLimit = ():void => {
587
+ window.postMessage({
588
+ type: 'RGW:AddNewLimit'
589
+ }, window.location.href)
590
+ }
591
+
581
592
  $: isMounted && session && userid && setSession();
582
- $: isMounted && isLoggedIn && getLimitBalance();
583
593
  $: isMounted && isLoggedIn && initListeners();
594
+ $: isMounted && isLoggedIn && getLimitBalance();
584
595
  $: clientstyling && customStylingContainer && setClientStyling();
585
596
  $: clientstylingurl && customStylingContainer && setClientStylingURL();
586
597
  $: lang && setActiveLanguage();
@@ -592,6 +603,12 @@
592
603
  {#if noLimitToDisplay}
593
604
  <div class="ContainerCenter">
594
605
  <p>{$_('noLimitToDisplay')}</p>
606
+ {#if editlimitaction === 'true'}
607
+ <button class="AddLimitControl" title="{$_('addLimitTitle')}" on:click|stopPropagation={() => addLimit()}>
608
+ <plus-icon class="ActionsSvg" />
609
+ <span>{$_('addLimitText')}</span>
610
+ </button>
611
+ {/if}
595
612
  </div>
596
613
  {:else if errorMessage}
597
614
  <div class="ContainerCenter">
@@ -694,19 +711,24 @@
694
711
  {/if}
695
712
  {#if limitTypeList.length > 0 && sessiontype === 'admin' && displayedLimit}
696
713
  <div class="ControlContainer">
714
+ {#if editlimitaction === 'true'}
715
+ <button class="ActionButton" title="{$_('addLimitTitle')}" on:click|stopPropagation={() => addLimit()}>
716
+ <plus-icon class="ActionsSvg" />
717
+ </button>
718
+ {/if}
697
719
  {#if editlimitaction === 'true'}
698
720
  <button class="ActionButton" title="{$_('editLimitTitle')}" on:click|stopPropagation={() => editLimit()}>
699
- <pencil-icon/>
721
+ <pencil-icon class="ActionsSvg"/>
700
722
  </button>
701
723
  {/if}
702
724
  {#if deletelimitaction === 'true'}
703
725
  <button class="ActionButton" title="{$_('deleteLimitTitle')}" on:click|stopPropagation={() => deleteLimit()}>
704
- <cancel-limit-icon/>
726
+ <cancel-limit-icon class="ActionsSvg"/>
705
727
  </button>
706
728
  {/if}
707
- {#if cancelimitscheduleaction === 'true' && displayedLimit.formattedSchedule && displayedLimit.formattedSchedule.isRemoved === true}
729
+ {#if cancelimitscheduleaction === 'true' && (displayedLimit.formattedSchedule && (displayedLimit.formattedSchedule.isRemoved === true || displayedLimit.formattedSchedule.isUpdated === true))}
708
730
  <button class="ActionButton" title="{$_('cancelScheduleTitle')}" on:click|stopPropagation={() => cancelSchedule()}>
709
- <calendar-times-icon/>
731
+ <calendar-times-icon class="ActionsSvg"/>
710
732
  </button>
711
733
  {/if}
712
734
  </div>
@@ -759,9 +781,11 @@
759
781
  .ContainerCenter {
760
782
  width: 100%;
761
783
  display: flex;
784
+ flex-direction: column;
762
785
  justify-content: center;
763
786
  align-items: center;
764
787
  min-height: 219px;
788
+ p { padding: 6px; }
765
789
  }
766
790
 
767
791
  .ErrorMessage {
@@ -815,19 +839,35 @@
815
839
  flex-direction: column;
816
840
  }
817
841
 
818
- .ExtraInfoContainer {
819
- padding: 1rem 0;
842
+ .ExtraInfoContainer {
843
+ padding: 1rem 0;
820
844
  color: var(--emfe-w-color-red, #ed0909);
821
845
  }
822
846
 
823
- .UsefulLinksSection {
847
+ .UsefulLinksSection {
824
848
  padding-top: 5px;
825
- a {
849
+ a {
826
850
  color: $primary-color;
827
851
  text-decoration: underline;
828
852
  }
829
853
  }
830
-
854
+
855
+ .AddLimitControl {
856
+ border: 0.1rem solid $primary-color;
857
+ border-radius: 0.3rem;
858
+ min-height: 1rem;
859
+ color: var(--emw--color-white, #FFFFFF);
860
+ background: $primary-color;
861
+ padding: 0.3rem;
862
+ cursor: pointer;
863
+ min-width: 10rem;
864
+ display: flex;
865
+ flex-direction: row;
866
+ align-items: center;
867
+ justify-content: center;
868
+ button { padding: 5px; border: 1px solid $primary-contrast-color; border-radius: 4px; cursor: pointer; }
869
+ }
870
+
831
871
  .WidgetControls {
832
872
  display: flex;
833
873
  width: 100%;
@@ -835,17 +875,36 @@
835
875
  gap: 20px;
836
876
  }
837
877
 
838
- .ControlContainer label {
839
- display: block;
840
- width: 100%;
841
- font-size: 12px;
842
- font-weight: bold;
843
- margin-bottom: 5px;
878
+ .ControlContainer {
879
+ label {
880
+ display: block;
881
+ width: 100%;
882
+ font-size: 12px;
883
+ font-weight: bold;
884
+ margin-bottom: 5px;
885
+ }
886
+ button {
887
+ padding: 5px;
888
+ border: 1px solid $primary-contrast-color;
889
+ border-radius: 5px;
890
+ width: 25px;
891
+ cursor: pointer;
892
+ display: flex;
893
+ flex-direction: column;
894
+ margin-bottom: 4px;
895
+ }
896
+ .ActionsSvg {
897
+ height: 1em;
898
+ width: 1em;
899
+ display: flex;
900
+ justify-content: center;
901
+ cursor: pointer;
902
+ }
844
903
  }
845
904
 
846
905
  .ControlContainer button {
847
906
  padding: 5px;
848
- border: 1px solid #07072A;
907
+ border: 1px solid $primary-contrast-color;
849
908
  border-radius: 5px;
850
909
  width: 25px;
851
910
  cursor: pointer;
@@ -854,6 +913,39 @@
854
913
  margin-bottom: 4px;
855
914
  }
856
915
 
916
+ .ControlContainer .ActionsSvg {
917
+ height: 1em;
918
+ width: 1em;
919
+ display: flex;
920
+ justify-content: center;
921
+ cursor: pointer;
922
+ }
923
+
924
+ .AddLimitControl .ActionsSvg {
925
+ height: 2em;
926
+ width: 2em;
927
+ display: flex;
928
+ justify-content: center;
929
+ cursor: pointer;
930
+ padding: 5px;
931
+ margin-right: 5px;
932
+ border: 1px solid $primary-contrast-color;
933
+ border-radius: 4px;
934
+ background: var(--emw--color-white, #FFFFFF);
935
+ }
936
+
937
+ .AddLimitSvg {
938
+ height: 2em;
939
+ width: 2em;
940
+ padding: 5px;
941
+ display: flex;
942
+ flex-direction: row;
943
+ justify-content: center;
944
+ background-color: white;
945
+ border: 1px solid $primary-contrast-color;
946
+ border-radius: 4px;
947
+ }
948
+
857
949
  .Gauge {
858
950
  width: 100%;
859
951
  font-family: 'Roboto', sans-serif;
@@ -0,0 +1,2 @@
1
+ <svelte:options tag={'plus-icon'} />
2
+ <svg xmlns="http://www.w3.org/2000/svg" class="ControlContainerSvg" viewBox="0 0 448 512"><!--!Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32V224H48c-17.7 0-32 14.3-32 32s14.3 32 32 32H192V432c0 17.7 14.3 32 32 32s32-14.3 32-32V288H400c17.7 0 32-14.3 32-32s-14.3-32-32-32H256V80z"/></svg>
@@ -23,7 +23,12 @@ export const TRANSLATIONS = {
23
23
  "resetLabel": "Reset",
24
24
  "infoLabel": "Info",
25
25
  "walletLabel": "Wallet",
26
- "walletsLabel": "Wallets"
26
+ "walletsLabel": "Wallets",
27
+ "addLimitTitle": "Add limit",
28
+ "editLimitTitle": "Edit Limit",
29
+ "deleteLimitTitle": "Delete limit",
30
+ "cancelScheduleTitle": "Cancel schedule",
31
+ "addLimitText": "Add monetary limit"
27
32
  },
28
33
  "zh-hk": {
29
34
  "noLimitToDisplay": "使用者尚未設定限額...",
@@ -49,7 +54,12 @@ export const TRANSLATIONS = {
49
54
  "resetLabel": "重設",
50
55
  "infoLabel": "信息",
51
56
  "walletLabel": "錢包",
52
- "walletsLabel": "錢包"
57
+ "walletsLabel": "錢包",
58
+ "addLimitTitle": "新增限制",
59
+ "editLimitTitle": "編輯限制",
60
+ "deleteLimitTitle": "刪除限制",
61
+ "cancelScheduleTitle": "取消行程",
62
+ "addLimitText": "新增貨幣限額"
53
63
  },
54
64
  "de": {
55
65
  "noLimitToDisplay": "Der Benutzer hat kein Limit festgelegt...",
@@ -75,7 +85,12 @@ export const TRANSLATIONS = {
75
85
  "resetLabel": "Zurücksetzen",
76
86
  "infoLabel": "Info",
77
87
  "walletLabel": "Brieftasche",
78
- "walletsLabel": "Brieftaschen"
88
+ "walletsLabel": "Brieftaschen",
89
+ "addLimitTitle": "Limit hinzufügen",
90
+ "editLimitTitle": "Limit bearbeiten",
91
+ "deleteLimitTitle": "Limit löschen",
92
+ "cancelScheduleTitle": "Zeitplan abbrechen",
93
+ "addLimitText": "Geldlimit hinzufügen"
79
94
  },
80
95
  "it": {
81
96
  "noLimitToDisplay": "L'utente non ha impostato un limite...",
@@ -101,7 +116,12 @@ export const TRANSLATIONS = {
101
116
  "resetLabel": "Ripristina",
102
117
  "infoLabel": "Info",
103
118
  "walletLabel": "Portafoglio",
104
- "walletsLabel": "Portafogli"
119
+ "walletsLabel": "Portafogli",
120
+ "addLimitTitle": "Aggiungi limite",
121
+ "editLimitTitle": "Modifica limite",
122
+ "deleteLimitTitle": "Elimina limite",
123
+ "cancelScheduleTitle": "Annulla pianificazione",
124
+ "addLimitText": "Aggiungi limite monetario"
105
125
  },
106
126
  "fr": {
107
127
  "noLimitToDisplay": "L'utilisateur n'a pas fixé de limite...",
@@ -127,7 +147,12 @@ export const TRANSLATIONS = {
127
147
  "resetLabel": "Réinitialiser",
128
148
  "infoLabel": "Info",
129
149
  "walletLabel": "Portefeuille",
130
- "walletsLabel": "Portefeuilles"
150
+ "walletsLabel": "Portefeuilles",
151
+ "addLimitTitle": "Ajouter une limite",
152
+ "editLimitTitle": "Modifier la limite",
153
+ "deleteLimitTitle": "Supprimer la limite",
154
+ "cancelScheduleTitle": "Annuler le planning",
155
+ "addLimitText": "Ajouter une limite monétaire"
131
156
  },
132
157
  "es": {
133
158
  "noLimitToDisplay": "El usuario no ha establecido un límite...",
@@ -153,7 +178,12 @@ export const TRANSLATIONS = {
153
178
  "resetLabel": "Reiniciar",
154
179
  "infoLabel": "Información",
155
180
  "walletLabel": "Cartera",
156
- "walletsLabel": "Carteras"
181
+ "walletsLabel": "Carteras",
182
+ "addLimitTitle": "Agregar límite",
183
+ "editLimitTitle": "Editar límite",
184
+ "deleteLimitTitle": "Eliminar límite",
185
+ "cancelScheduleTitle": "Cancelar programación",
186
+ "addLimitText": "Agregar límite monetario"
157
187
  },
158
188
  "el": {
159
189
  "noLimitToDisplay": "Ο χρήστης δεν έχει ορίσει όριο...",
@@ -179,7 +209,12 @@ export const TRANSLATIONS = {
179
209
  "resetLabel": "Επαναφορά",
180
210
  "infoLabel": "Πληροφορίες",
181
211
  "walletLabel": "Πορτοφόλι",
182
- "walletsLabel": "Πορτοφόλια"
212
+ "walletsLabel": "Πορτοφόλια",
213
+ "addLimitTitle": "Προσθήκη ορίου",
214
+ "editLimitTitle": "Επεξεργασία ορίου",
215
+ "deleteLimitTitle": "Διαγραφή ορίου",
216
+ "cancelScheduleTitle": "Ακύρωση προγράμματος",
217
+ "addLimitText": "Προσθήκη νομισματικού ορίου"
183
218
  },
184
219
  "tr": {
185
220
  "noLimitToDisplay": "Kullanıcı bir sınırlama belirlemedi...",
@@ -205,7 +240,12 @@ export const TRANSLATIONS = {
205
240
  "resetLabel": "Sıfırla",
206
241
  "infoLabel": "Bilgi",
207
242
  "walletLabel": "Cüzdan",
208
- "walletsLabel": "Cüzdanlar"
243
+ "walletsLabel": "Cüzdanlar",
244
+ "addLimitTitle": "Sınır ekle",
245
+ "editLimitTitle": "Sınırı Düzenle",
246
+ "deleteLimitTitle": "Sınırı sil",
247
+ "cancelScheduleTitle": "Programı iptal et",
248
+ "addLimitText": "Para limiti ekle"
209
249
  },
210
250
  "ru": {
211
251
  "noLimitToDisplay": "Пользователь не установил лимит...",
@@ -231,7 +271,12 @@ export const TRANSLATIONS = {
231
271
  "resetLabel": "Сброс",
232
272
  "infoLabel": "Информация",
233
273
  "walletLabel": "Кошелек",
234
- "walletsLabel": "Кошельки"
274
+ "walletsLabel": "Кошельки",
275
+ "addLimitTitle": "Добавить лимит",
276
+ "editLimitTitle": "Изменить лимит",
277
+ "deleteLimitTitle": "Удалить лимит",
278
+ "cancelScheduleTitle": "Отменить расписание",
279
+ "addLimitText": "Добавить денежный лимит"
235
280
  },
236
281
  "ro": {
237
282
  "noLimitToDisplay": "Utilizatorul nu a setat nicio limită...",
@@ -257,7 +302,12 @@ export const TRANSLATIONS = {
257
302
  "resetLabel": "Resetare",
258
303
  "infoLabel": "Info",
259
304
  "walletLabel": "Portofel",
260
- "walletsLabel": "Portofele"
305
+ "walletsLabel": "Portofele",
306
+ "addLimitTitle": "Adăugați limită",
307
+ "editLimitTitle": "Editați limita",
308
+ "deleteLimitTitle": "Ștergeți limita",
309
+ "cancelScheduleTitle": "Anulați programul",
310
+ "addLimitText": "Adăugați o limită monetară"
261
311
  },
262
312
  "hr": {
263
313
  "noLimitToDisplay": "Korisnik nije postavio limit...",
@@ -283,7 +333,12 @@ export const TRANSLATIONS = {
283
333
  "resetLabel": "Resetiraj",
284
334
  "infoLabel": "Informacije",
285
335
  "walletLabel": "Novčanik",
286
- "walletsLabel": "Novčanici"
336
+ "walletsLabel": "Novčanici",
337
+ "addLimitTitle": "Dodaj ograničenje",
338
+ "editLimitTitle": "Uredi ograničenje",
339
+ "deleteLimitTitle": "Ograničenje brisanja",
340
+ "cancelScheduleTitle": "Otkaži raspored",
341
+ "addLimitText": "Dodaj novčani limit"
287
342
  },
288
343
  "hu": {
289
344
  "noLimitToDisplay": "A felhasználó nem állított be korlátot...",
@@ -309,7 +364,12 @@ export const TRANSLATIONS = {
309
364
  "resetLabel": "Visszaállítás",
310
365
  "infoLabel": "Információ",
311
366
  "walletLabel": "Pénztárca",
312
- "walletsLabel": "Pénztárcák"
367
+ "walletsLabel": "Pénztárcák",
368
+ "addLimitTitle": "Korlát hozzáadása",
369
+ "editLimitTitle": "Korlát szerkesztése",
370
+ "deleteLimitTitle": "Korlát törlése",
371
+ "cancelScheduleTitle": "Ütemezés törlése",
372
+ "addLimitText": "Pénzösszeg hozzáadása"
313
373
  },
314
374
  "pl": {
315
375
  "noLimitToDisplay": "Użytkownik nie ustawił limitu...",
@@ -335,7 +395,12 @@ export const TRANSLATIONS = {
335
395
  "resetLabel": "Resetuj",
336
396
  "infoLabel": "Informacje",
337
397
  "walletLabel": "Portfel",
338
- "walletsLabel": "Portfele"
398
+ "walletsLabel": "Portfele",
399
+ "addLimitTitle": "Dodaj limit",
400
+ "editLimitTitle": "Limit edycji",
401
+ "deleteLimitTitle": "Usuń limit",
402
+ "cancelScheduleTitle": "Anuluj harmonogram",
403
+ "addLimitText": "Dodaj limit pieniężny"
339
404
  },
340
405
  "pt": {
341
406
  "noLimitToDisplay": "O usuário não definiu um limite...",
@@ -361,7 +426,12 @@ export const TRANSLATIONS = {
361
426
  "resetLabel": "Redefinir",
362
427
  "infoLabel": "Informação",
363
428
  "walletLabel": "Carteira",
364
- "walletsLabel": "Carteiras"
429
+ "walletsLabel": "Carteiras",
430
+ "addLimitTitle": "Adicionar limite",
431
+ "editLimitTitle": "Editar Limite",
432
+ "deleteLimitTitle": "Excluir limite",
433
+ "cancelScheduleTitle": "Cancelar agendamento",
434
+ "addLimitText": "Adicionar limite monetário"
365
435
  },
366
436
  "sl": {
367
437
  "noLimitToDisplay": "Uporabnik ni določil omejitve...",
@@ -387,7 +457,12 @@ export const TRANSLATIONS = {
387
457
  "resetLabel": "Ponastavi",
388
458
  "infoLabel": "Informacije",
389
459
  "walletLabel": "Denarnica",
390
- "walletsLabel": "Denarnice"
460
+ "walletsLabel": "Denarnice",
461
+ "addLimitTitle": "Dodaj omejitev",
462
+ "editLimitTitle": "Uredi omejitev",
463
+ "deleteLimitTitle": "Omejitev brisanja",
464
+ "cancelScheduleTitle": "Prekliči razpored",
465
+ "addLimitText": "Dodaj denarno omejitev"
391
466
  },
392
467
  "sr": {
393
468
  "noLimitToDisplay": "Korisnik nije postavio limit...",
@@ -413,7 +488,12 @@ export const TRANSLATIONS = {
413
488
  "resetLabel": "Resetuj",
414
489
  "infoLabel": "Informacije",
415
490
  "walletLabel": "Novčanik",
416
- "walletsLabel": "Novčanici"
491
+ "walletsLabel": "Novčanici",
492
+ "addLimitTitle": "Додај ограничење",
493
+ "editLimitTitle": "Ограничење уређивања",
494
+ "deleteLimitTitle": "Избриши ограничење",
495
+ "cancelScheduleTitle": "Откажи распоред",
496
+ "addLimitText": "Додај новчано ограничење"
417
497
  },
418
498
  "es-mx": {
419
499
  "noLimitToDisplay": "El usuario no ha establecido un límite...",
@@ -439,7 +519,12 @@ export const TRANSLATIONS = {
439
519
  "resetLabel": "Reiniciar",
440
520
  "infoLabel": "Información",
441
521
  "walletLabel": "Cartera",
442
- "walletsLabel": "Carteras"
522
+ "walletsLabel": "Carteras",
523
+ "addLimitTitle": "Agregar límite",
524
+ "editLimitTitle": "Editar límite",
525
+ "deleteLimitTitle": "Eliminar límite",
526
+ "cancelScheduleTitle": "Cancelar programación",
527
+ "addLimitText": "Agregar límite monetario"
443
528
  },
444
529
  "pt-br": {
445
530
  "noLimitToDisplay": "O usuário não definiu um limite...",
@@ -465,6 +550,11 @@ export const TRANSLATIONS = {
465
550
  "resetLabel": "Redefinir",
466
551
  "infoLabel": "Informação",
467
552
  "walletLabel": "Carteira",
468
- "walletsLabel": "Carteiras"
553
+ "walletsLabel": "Carteiras",
554
+ "addLimitTitle": "Agregar límite",
555
+ "editLimitTitle": "Editar límite",
556
+ "deleteLimitTitle": "Eliminar límite",
557
+ "cancelScheduleTitle": "Cancelar programación",
558
+ "addLimitText": "Agregar límite monetario"
469
559
  }
470
- }
560
+ };