@everymatrix/player-rglimits 1.29.8 → 1.30.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/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.8",
3
+ "version": "1.30.0",
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": "a6ce52ac3c8209814f7d801c927c7d2d9224b2ae"
38
+ "gitHead": "b9795b320e7d96e10963f25cdea2d9300029d8d7"
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
 
@@ -66,6 +67,12 @@
66
67
 
67
68
  let errorMessage:string = '';
68
69
 
70
+ const timeMap = {
71
+ daily: 0,
72
+ weekly: 1,
73
+ monthly: 2
74
+ }
75
+
69
76
  type TranslationKeys = keyof typeof TRANSLATIONS;
70
77
  Object.keys(TRANSLATIONS).forEach((item: TranslationKeys): void => {
71
78
  addNewMessages(item, TRANSLATIONS[item]);
@@ -130,7 +137,9 @@
130
137
  return;
131
138
  }
132
139
 
133
- limitPeriodList = [...new Set(limitDefinitionList.map((limit) => limit.period))];
140
+ limitPeriodList = [...new Set(limitDefinitionList.map((limit) => limit.period))].sort((a, b) => {
141
+ return timeMap[a] - timeMap[b];
142
+ });
134
143
 
135
144
  productList = getProductListByPeriod(limitDefinitionList[0].period);
136
145
  if (!productList.includes(selectedProduct)) {
@@ -253,7 +262,6 @@
253
262
  selectedProduct = limitBalance.limitProducts[0];
254
263
 
255
264
  const limitSchedule = formatScheduleData(limit.id, limit.schedules);
256
-
257
265
  displayedLimit = {
258
266
  id: limit.id,
259
267
  totalAmount: limitBalance.limitAmount,
@@ -477,16 +485,16 @@
477
485
  * Get the transactions url.
478
486
  */
479
487
  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]);
488
+ const transactionUrl = transactionspageurl;
489
+ const page = selectedLimitType === 'Deposit' ? 'payment-transactions' : 'gaming-transactions';
490
+ const subtractMap = {
491
+ 'Daily': 1,
492
+ 'Weekly': 7,
493
+ 'Monthly': 30
494
+ };
495
+ const filterStartDate = subtractDays(new Date(displayedLimit.to), subtractMap[selectedLimitPeriod]);
489
496
 
497
+ try {
490
498
  const url = new URL(`${transactionUrl}/gammatrix/gmwi/${page}`);
491
499
  url.searchParams.append('transStatuses', '2');
492
500
  url.searchParams.append('startTime', filterStartDate.toISOString());
@@ -529,7 +537,8 @@
529
537
  */
530
538
  const initListeners = ():void => {
531
539
  window.addEventListener('message', (e) => {
532
- if (e.data.type === "RGW:RefreshLimits") {
540
+ if (e.data.type === 'RGW:RefreshLimits') {
541
+ selectedLimitType = '';
533
542
  getLimitBalance();
534
543
  }
535
544
  });
@@ -578,9 +587,19 @@
578
587
  }
579
588
  }
580
589
 
590
+ /**
591
+ * Sends DOM event to open add limit modal
592
+ *
593
+ */
594
+ const addLimit = ():void => {
595
+ window.postMessage({
596
+ type: 'RGW:AddNewLimit'
597
+ }, window.location.href)
598
+ }
599
+
581
600
  $: isMounted && session && userid && setSession();
582
- $: isMounted && isLoggedIn && getLimitBalance();
583
601
  $: isMounted && isLoggedIn && initListeners();
602
+ $: isMounted && isLoggedIn && getLimitBalance();
584
603
  $: clientstyling && customStylingContainer && setClientStyling();
585
604
  $: clientstylingurl && customStylingContainer && setClientStylingURL();
586
605
  $: lang && setActiveLanguage();
@@ -592,6 +611,12 @@
592
611
  {#if noLimitToDisplay}
593
612
  <div class="ContainerCenter">
594
613
  <p>{$_('noLimitToDisplay')}</p>
614
+ {#if editlimitaction === 'true'}
615
+ <button class="AddLimitControl" title="{$_('addLimitTitle')}" on:click|stopPropagation={() => addLimit()}>
616
+ <plus-icon class="ActionsSvg" />
617
+ <span>{$_('addLimitText')}</span>
618
+ </button>
619
+ {/if}
595
620
  </div>
596
621
  {:else if errorMessage}
597
622
  <div class="ContainerCenter">
@@ -623,25 +648,25 @@
623
648
  </div>
624
649
  <div class="DetailsContainer Entries">
625
650
  <div class="Row">
626
- <div class="Col">{$_('spentAmount')}:</div>
651
+ <div class="Col">{$_('spentAmount')}</div>
627
652
  <div class="Col"><span><caret-right/> {formatWithSeparator(displayedLimit.spentAmount)} {displayedLimit.limitCurrency}</span></div>
628
653
  </div>
629
654
  <div class="Row">
630
- <div class="Col">{$_('remainingAmount')}:</div>
655
+ <div class="Col">{$_('remainingAmount')}</div>
631
656
  <div class="Col"><span><caret-right/> {formatWithSeparator(displayedLimit.remainingAmount)} {displayedLimit.limitCurrency}</span></div>
632
657
  </div>
633
658
  {#if displayedLimit.formattedSchedule.isUpdated === true}
634
659
  <div class="Row">
635
- <div class="Col">{$_('futureAmount')}:</div>
660
+ <div class="Col">{$_('futureAmount')}</div>
636
661
  <div class="Col"><span><caret-right/> {formatWithSeparator(displayedLimit.formattedSchedule.updateAmount)} {displayedLimit.limitCurrency}</span></div>
637
662
  </div>
638
663
  {/if}
639
664
  <div class="Row">
640
- <div class="Col">{$_('startLabel')}:</div>
665
+ <div class="Col">{$_('startLabel')}</div>
641
666
  <div class="Col"><span><caret-right/> {dateToReadableString(displayedLimit.from)}</span></div>
642
667
  </div>
643
668
  <div class="Row">
644
- <div class="Col">{$_('resetLabel')}:</div>
669
+ <div class="Col">{$_('resetLabel')}</div>
645
670
  <div class="Col"><span><caret-right/> {dateToReadableString(displayedLimit.to)}</span></div>
646
671
  </div>
647
672
  </div>
@@ -694,19 +719,24 @@
694
719
  {/if}
695
720
  {#if limitTypeList.length > 0 && sessiontype === 'admin' && displayedLimit}
696
721
  <div class="ControlContainer">
722
+ {#if editlimitaction === 'true'}
723
+ <button class="ActionButton" title="{$_('addLimitTitle')}" on:click|stopPropagation={() => addLimit()}>
724
+ <plus-icon class="ActionsSvg" />
725
+ </button>
726
+ {/if}
697
727
  {#if editlimitaction === 'true'}
698
728
  <button class="ActionButton" title="{$_('editLimitTitle')}" on:click|stopPropagation={() => editLimit()}>
699
- <pencil-icon/>
729
+ <pencil-icon class="ActionsSvg"/>
700
730
  </button>
701
731
  {/if}
702
732
  {#if deletelimitaction === 'true'}
703
733
  <button class="ActionButton" title="{$_('deleteLimitTitle')}" on:click|stopPropagation={() => deleteLimit()}>
704
- <cancel-limit-icon/>
734
+ <cancel-limit-icon class="ActionsSvg"/>
705
735
  </button>
706
736
  {/if}
707
- {#if cancelimitscheduleaction === 'true' && displayedLimit.formattedSchedule && displayedLimit.formattedSchedule.isRemoved === true}
737
+ {#if cancelimitscheduleaction === 'true' && (displayedLimit.formattedSchedule && (displayedLimit.formattedSchedule.isRemoved === true || displayedLimit.formattedSchedule.isUpdated === true))}
708
738
  <button class="ActionButton" title="{$_('cancelScheduleTitle')}" on:click|stopPropagation={() => cancelSchedule()}>
709
- <calendar-times-icon/>
739
+ <calendar-times-icon class="ActionsSvg"/>
710
740
  </button>
711
741
  {/if}
712
742
  </div>
@@ -759,9 +789,11 @@
759
789
  .ContainerCenter {
760
790
  width: 100%;
761
791
  display: flex;
792
+ flex-direction: column;
762
793
  justify-content: center;
763
794
  align-items: center;
764
795
  min-height: 219px;
796
+ p { padding: 6px; }
765
797
  }
766
798
 
767
799
  .ErrorMessage {
@@ -815,19 +847,35 @@
815
847
  flex-direction: column;
816
848
  }
817
849
 
818
- .ExtraInfoContainer {
819
- padding: 1rem 0;
850
+ .ExtraInfoContainer {
851
+ padding: 1rem 0;
820
852
  color: var(--emfe-w-color-red, #ed0909);
821
853
  }
822
854
 
823
- .UsefulLinksSection {
855
+ .UsefulLinksSection {
824
856
  padding-top: 5px;
825
- a {
857
+ a {
826
858
  color: $primary-color;
827
859
  text-decoration: underline;
828
860
  }
829
861
  }
830
-
862
+
863
+ .AddLimitControl {
864
+ border: 0.1rem solid $primary-color;
865
+ border-radius: 0.3rem;
866
+ min-height: 1rem;
867
+ color: var(--emw--color-white, #FFFFFF);
868
+ background: $primary-color;
869
+ padding: 0.3rem;
870
+ cursor: pointer;
871
+ min-width: 10rem;
872
+ display: flex;
873
+ flex-direction: row;
874
+ align-items: center;
875
+ justify-content: center;
876
+ button { padding: 5px; border: 1px solid $primary-contrast-color; border-radius: 4px; cursor: pointer; }
877
+ }
878
+
831
879
  .WidgetControls {
832
880
  display: flex;
833
881
  width: 100%;
@@ -835,17 +883,36 @@
835
883
  gap: 20px;
836
884
  }
837
885
 
838
- .ControlContainer label {
839
- display: block;
840
- width: 100%;
841
- font-size: 12px;
842
- font-weight: bold;
843
- margin-bottom: 5px;
886
+ .ControlContainer {
887
+ label {
888
+ display: block;
889
+ width: 100%;
890
+ font-size: 12px;
891
+ font-weight: bold;
892
+ margin-bottom: 5px;
893
+ }
894
+ button {
895
+ padding: 5px;
896
+ border: 1px solid $primary-contrast-color;
897
+ border-radius: 5px;
898
+ width: 25px;
899
+ cursor: pointer;
900
+ display: flex;
901
+ flex-direction: column;
902
+ margin-bottom: 4px;
903
+ }
904
+ .ActionsSvg {
905
+ height: 1em;
906
+ width: 1em;
907
+ display: flex;
908
+ justify-content: center;
909
+ cursor: pointer;
910
+ }
844
911
  }
845
912
 
846
913
  .ControlContainer button {
847
914
  padding: 5px;
848
- border: 1px solid #07072A;
915
+ border: 1px solid $primary-contrast-color;
849
916
  border-radius: 5px;
850
917
  width: 25px;
851
918
  cursor: pointer;
@@ -854,6 +921,39 @@
854
921
  margin-bottom: 4px;
855
922
  }
856
923
 
924
+ .ControlContainer .ActionsSvg {
925
+ height: 1em;
926
+ width: 1em;
927
+ display: flex;
928
+ justify-content: center;
929
+ cursor: pointer;
930
+ }
931
+
932
+ .AddLimitControl .ActionsSvg {
933
+ height: 2em;
934
+ width: 2em;
935
+ display: flex;
936
+ justify-content: center;
937
+ cursor: pointer;
938
+ padding: 5px;
939
+ margin-right: 5px;
940
+ border: 1px solid $primary-contrast-color;
941
+ border-radius: 4px;
942
+ background: var(--emw--color-white, #FFFFFF);
943
+ }
944
+
945
+ .AddLimitSvg {
946
+ height: 2em;
947
+ width: 2em;
948
+ padding: 5px;
949
+ display: flex;
950
+ flex-direction: row;
951
+ justify-content: center;
952
+ background-color: white;
953
+ border: 1px solid $primary-contrast-color;
954
+ border-radius: 4px;
955
+ }
956
+
857
957
  .Gauge {
858
958
  width: 100%;
859
959
  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
+ };