@everymatrix/player-rglimits 1.36.0 → 1.37.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/CHANGELOG.md +1 -0
- package/dist/player-rglimits.js +144 -140
- package/dist/player-rglimits.js.map +1 -1
- package/index.html +1 -11
- package/package.json +2 -2
- package/src/PlayerRglimits.svelte +148 -56
- package/src/translations.js +36 -18
package/index.html
CHANGED
|
@@ -33,23 +33,13 @@
|
|
|
33
33
|
<player-rglimits
|
|
34
34
|
session="4fbdd39b70d8b93163dc95f20a111b6cea3e0ad15ce90fb8"
|
|
35
35
|
sessiontype="admin"
|
|
36
|
-
userid="
|
|
36
|
+
userid="6447183"
|
|
37
37
|
transactionspageurl="https://backoffice-stage.everymatrix.com/2670"
|
|
38
38
|
endpoint="https://betathome-de-stage-api.stage.norway.everymatrix.com"
|
|
39
39
|
editlimitaction="true"
|
|
40
40
|
deletelimitaction="true"
|
|
41
41
|
cancelimitscheduleaction="true"
|
|
42
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>-->
|
|
53
43
|
</div>
|
|
54
44
|
|
|
55
45
|
</body>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@everymatrix/player-rglimits",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.37.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": "
|
|
38
|
+
"gitHead": "23b14632ab842e43bf71843de47000e6dd141751"
|
|
39
39
|
}
|
|
@@ -56,12 +56,15 @@
|
|
|
56
56
|
from: '',
|
|
57
57
|
to: '',
|
|
58
58
|
};
|
|
59
|
-
|
|
60
|
-
let
|
|
61
|
-
let
|
|
62
|
-
let
|
|
59
|
+
|
|
60
|
+
let limitWalletTypeList: Array<string> = [];
|
|
61
|
+
let limitPeriodList: Array<string> = [];
|
|
62
|
+
let limitTypeList: Array<string> = [];
|
|
63
|
+
let selectedWalletType: string = '';
|
|
64
|
+
let selectedLimitPeriod: string = '';
|
|
65
|
+
let selectedLimitType: string = '';
|
|
63
66
|
let selectedProduct: string = '';
|
|
64
|
-
let limitDefinitionList:Array<MonetaryLimitType> = [];
|
|
67
|
+
let limitDefinitionList: Array<MonetaryLimitType> = [];
|
|
65
68
|
let productList: Array<string> = [];
|
|
66
69
|
|
|
67
70
|
let gaugeValue:number = 0;
|
|
@@ -74,6 +77,11 @@
|
|
|
74
77
|
Monthly: 2
|
|
75
78
|
};
|
|
76
79
|
|
|
80
|
+
const walletTypeMap = {
|
|
81
|
+
All: 'All',
|
|
82
|
+
RealCash: 'Real Money'
|
|
83
|
+
};
|
|
84
|
+
|
|
77
85
|
type TranslationKeys = keyof typeof TRANSLATIONS;
|
|
78
86
|
Object.keys(TRANSLATIONS).forEach((item: TranslationKeys): void => {
|
|
79
87
|
addNewMessages(item, TRANSLATIONS[item]);
|
|
@@ -133,6 +141,10 @@
|
|
|
133
141
|
filteredLimits = filteredLimits.filter(item => item.period === selectedLimitPeriod);
|
|
134
142
|
}
|
|
135
143
|
|
|
144
|
+
if (selectedWalletType) {
|
|
145
|
+
filteredLimits = filteredLimits.filter(item => item.walletTypes.includes(selectedWalletType));
|
|
146
|
+
}
|
|
147
|
+
|
|
136
148
|
if (selectedLimitType) {
|
|
137
149
|
filteredLimits = filteredLimits.filter(item => item.type === selectedLimitType);
|
|
138
150
|
}
|
|
@@ -159,19 +171,23 @@
|
|
|
159
171
|
noLimitToDisplay = true;
|
|
160
172
|
return;
|
|
161
173
|
}
|
|
174
|
+
limitPeriodList = [...new Set(limitDefinitionList.map((limit) => limit.period))].sort((a, b) => timeMap[a] - timeMap[b]);
|
|
162
175
|
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
}
|
|
176
|
+
if (!selectedLimitPeriod || !limitPeriodList.includes(selectedLimitPeriod)) {
|
|
177
|
+
selectedLimitPeriod = limitPeriodList[0];
|
|
178
|
+
}
|
|
179
|
+
limitWalletTypeList = getWalletTypeList(selectedLimitPeriod);
|
|
166
180
|
|
|
167
|
-
|
|
168
|
-
|
|
181
|
+
if (!selectedWalletType || !limitWalletTypeList.includes(selectedWalletType)) {
|
|
182
|
+
selectedWalletType = limitWalletTypeList[0];
|
|
183
|
+
}
|
|
184
|
+
productList = getProductList(selectedLimitPeriod, selectedWalletType);
|
|
185
|
+
|
|
169
186
|
if (!productList.includes(selectedProduct)) {
|
|
170
187
|
selectedProduct = productList[0];
|
|
171
188
|
}
|
|
189
|
+
getLimitBalanceById(findBestMatchingLimit());
|
|
172
190
|
|
|
173
|
-
const limit = findBestMatchingLimit();
|
|
174
|
-
getLimitBalanceById(limit);
|
|
175
191
|
} catch ( err ) {
|
|
176
192
|
isLoading = false;
|
|
177
193
|
handleError($_('fetchLimitBalanceError'));
|
|
@@ -206,6 +222,7 @@
|
|
|
206
222
|
const allowedLimitTypes = ['Deposit', 'Loss', 'Wagering'];
|
|
207
223
|
const limitTypes: string[] = res.limits.map((item: MonetaryLimitType) => item.type);
|
|
208
224
|
limitTypeList = Array.from(new Set(limitTypes)).filter((type) => allowedLimitTypes.includes(type));
|
|
225
|
+
|
|
209
226
|
if (!selectedLimitType) {
|
|
210
227
|
selectedLimitType = limitTypeList[0];
|
|
211
228
|
}
|
|
@@ -219,16 +236,16 @@
|
|
|
219
236
|
};
|
|
220
237
|
|
|
221
238
|
/**
|
|
222
|
-
* Updates product list based on selected period.
|
|
239
|
+
* Updates product list based on selected period and walletType.
|
|
223
240
|
*
|
|
224
241
|
* @param period - The selected period.
|
|
242
|
+
* @param walletType - The selected walletType.
|
|
225
243
|
*/
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
});
|
|
230
|
-
|
|
244
|
+
const getProductList = (period: string, walletType: string): Array<string> => {
|
|
245
|
+
|
|
246
|
+
const limits = limitDefinitionList.filter((limit) => limit.period === period && limit.walletTypes[0] === walletType);
|
|
231
247
|
const newProductList = [];
|
|
248
|
+
|
|
232
249
|
limits.forEach((currentLimit) => {
|
|
233
250
|
currentLimit.products.forEach( (product) => {
|
|
234
251
|
if(newProductList.indexOf(product) === -1) {
|
|
@@ -240,6 +257,28 @@
|
|
|
240
257
|
return newProductList.sort();
|
|
241
258
|
}
|
|
242
259
|
|
|
260
|
+
|
|
261
|
+
/**
|
|
262
|
+
* Updates wallet types list based on selected period.
|
|
263
|
+
*
|
|
264
|
+
* @param period - The selected period.
|
|
265
|
+
*/
|
|
266
|
+
const getWalletTypeList = (period: string): Array<string> => {
|
|
267
|
+
|
|
268
|
+
const limits = limitDefinitionList.filter((limit) => limit.period === period);
|
|
269
|
+
const newWalletTypeList = [];
|
|
270
|
+
|
|
271
|
+
limits.forEach((currentLimit) => {
|
|
272
|
+
currentLimit.walletTypes.forEach((walletType) => {
|
|
273
|
+
if (newWalletTypeList.indexOf(walletType) === -1) {
|
|
274
|
+
newWalletTypeList.push(walletType)
|
|
275
|
+
}
|
|
276
|
+
});
|
|
277
|
+
});
|
|
278
|
+
|
|
279
|
+
return newWalletTypeList.sort();
|
|
280
|
+
}
|
|
281
|
+
|
|
243
282
|
/**
|
|
244
283
|
* Retrieves the limit balance for a specific limit.
|
|
245
284
|
*
|
|
@@ -284,6 +323,7 @@
|
|
|
284
323
|
const setCurrentLimit = (limitBalance: LimitDefinition, limit: MonetaryLimitType): void => {
|
|
285
324
|
selectedLimitPeriod = limitBalance.limitPeriod;
|
|
286
325
|
selectedProduct = limitBalance.limitProducts[0];
|
|
326
|
+
selectedWalletType = limitBalance.limitWalletTypes[0];
|
|
287
327
|
|
|
288
328
|
const limitSchedule = formatScheduleData(limit.id, limit.schedules);
|
|
289
329
|
displayedLimit = {
|
|
@@ -396,7 +436,40 @@
|
|
|
396
436
|
const element = event.currentTarget as HTMLInputElement
|
|
397
437
|
|
|
398
438
|
selectedLimitPeriod = element.value;
|
|
399
|
-
|
|
439
|
+
|
|
440
|
+
limitWalletTypeList = getWalletTypeList(selectedLimitPeriod);
|
|
441
|
+
if (!selectedWalletType || !limitWalletTypeList.includes(selectedWalletType)) {
|
|
442
|
+
selectedWalletType = limitWalletTypeList[0];
|
|
443
|
+
}
|
|
444
|
+
productList = getProductList(selectedLimitPeriod, selectedWalletType);
|
|
445
|
+
|
|
446
|
+
showDropdown = false;
|
|
447
|
+
|
|
448
|
+
if (!productList.includes(selectedProduct)) {
|
|
449
|
+
selectedProduct = productList[0];
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
const selectedLimit = limitDefinitionList.find((limit) => {
|
|
453
|
+
return limit.period === selectedLimitPeriod && limit.walletTypes[0] === selectedWalletType && limit.products.includes(selectedProduct);
|
|
454
|
+
});
|
|
455
|
+
|
|
456
|
+
if (!selectedLimit) {
|
|
457
|
+
return;
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
getLimitBalanceById(selectedLimit);
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
/**
|
|
464
|
+
* Handles the change in the selected wallet type.
|
|
465
|
+
*
|
|
466
|
+
* @param event - The event object containing the target value.
|
|
467
|
+
*/
|
|
468
|
+
const handleWalletTypeChange = (event: Event):void => {
|
|
469
|
+
const element = event.currentTarget as HTMLInputElement
|
|
470
|
+
|
|
471
|
+
selectedWalletType = element.value;
|
|
472
|
+
productList = getProductList(selectedLimitPeriod, selectedWalletType);
|
|
400
473
|
showDropdown = false;
|
|
401
474
|
|
|
402
475
|
if (!productList.includes(selectedProduct)) {
|
|
@@ -404,7 +477,7 @@
|
|
|
404
477
|
}
|
|
405
478
|
|
|
406
479
|
const selectedLimit = limitDefinitionList.find((limit) => {
|
|
407
|
-
return limit.period === selectedLimitPeriod && limit.products.includes(selectedProduct);
|
|
480
|
+
return limit.period === selectedLimitPeriod && limit.walletTypes[0] === selectedWalletType && limit.products.includes(selectedProduct);
|
|
408
481
|
});
|
|
409
482
|
|
|
410
483
|
if (!selectedLimit) {
|
|
@@ -717,6 +790,18 @@
|
|
|
717
790
|
</div>
|
|
718
791
|
<div class="ContentRight">
|
|
719
792
|
<div class="WidgetControls">
|
|
793
|
+
{#if limitWalletTypeList.length > 0}
|
|
794
|
+
<div class="ControlContainer">
|
|
795
|
+
<label for="LimitPeriod">{$_('limitWalletTypeLabel')}: </label>
|
|
796
|
+
<select bind:value={selectedWalletType} id="WalletType" on:change={handleWalletTypeChange}>
|
|
797
|
+
{#each limitWalletTypeList as value}
|
|
798
|
+
<option {value}>
|
|
799
|
+
{walletTypeMap[value]}
|
|
800
|
+
</option>
|
|
801
|
+
{/each}
|
|
802
|
+
</select>
|
|
803
|
+
</div>
|
|
804
|
+
{/if}
|
|
720
805
|
{#if limitPeriodList.length > 0}
|
|
721
806
|
<div class="ControlContainer">
|
|
722
807
|
<label for="LimitPeriod">{$_('changeLimitLabel')}: </label>
|
|
@@ -822,7 +907,7 @@
|
|
|
822
907
|
|
|
823
908
|
.ErrorMessage {
|
|
824
909
|
margin: 0 15px;
|
|
825
|
-
font-size: 12px;
|
|
910
|
+
font-size: var(--emw--font-size-x-small, 12px);
|
|
826
911
|
color: var(--emw--color-error, var(--emw--color-red, #ed0909));
|
|
827
912
|
}
|
|
828
913
|
|
|
@@ -832,7 +917,7 @@
|
|
|
832
917
|
max-width: 700px;
|
|
833
918
|
min-height: 150px;
|
|
834
919
|
border: 1px solid $primary-color;
|
|
835
|
-
border-radius: 20px;
|
|
920
|
+
border-radius: var(--emw--border-radius-large, 20px);
|
|
836
921
|
overflow: hidden;
|
|
837
922
|
box-shadow: 14px 26px 19.7px 0px $primary-text-color;
|
|
838
923
|
gap:25px;
|
|
@@ -856,7 +941,7 @@
|
|
|
856
941
|
margin-bottom: 15px;
|
|
857
942
|
display: inline;
|
|
858
943
|
span {
|
|
859
|
-
font-weight: 700;
|
|
944
|
+
font-weight: var(--emw--font-weight-bold, 700);
|
|
860
945
|
}
|
|
861
946
|
}
|
|
862
947
|
|
|
@@ -886,7 +971,7 @@
|
|
|
886
971
|
|
|
887
972
|
.AddLimitControl {
|
|
888
973
|
border: 0.1rem solid $primary-color;
|
|
889
|
-
border-radius: 0.3rem;
|
|
974
|
+
border-radius: var(--emw--border-radius-small, 0.3rem);
|
|
890
975
|
min-height: 1rem;
|
|
891
976
|
color: var(--emw--color-white, #FFFFFF);
|
|
892
977
|
background: $primary-color;
|
|
@@ -903,27 +988,32 @@
|
|
|
903
988
|
display: flex;
|
|
904
989
|
width: 100%;
|
|
905
990
|
justify-content: end;
|
|
906
|
-
gap:
|
|
991
|
+
gap: 10px;
|
|
907
992
|
}
|
|
908
993
|
|
|
909
994
|
.ControlContainer {
|
|
910
995
|
label {
|
|
911
996
|
display: block;
|
|
912
997
|
width: 100%;
|
|
913
|
-
font-size: 12px;
|
|
914
|
-
font-weight: bold;
|
|
998
|
+
font-size: var(--emw--font-size-x-small, 12px);
|
|
999
|
+
font-weight: var(--emw--font-weight-bold, 700);
|
|
915
1000
|
margin-bottom: 5px;
|
|
916
1001
|
}
|
|
917
1002
|
button {
|
|
918
1003
|
padding: 5px;
|
|
919
1004
|
border: 1px solid $primary-contrast-color;
|
|
920
|
-
border-radius: 5px;
|
|
1005
|
+
border-radius: var(--emw--border-radius-small, 5px);
|
|
921
1006
|
width: 25px;
|
|
922
|
-
|
|
1007
|
+
cursor: pointer;
|
|
923
1008
|
display: flex;
|
|
924
1009
|
flex-direction: column;
|
|
925
1010
|
margin-bottom: 4px;
|
|
926
1011
|
}
|
|
1012
|
+
|
|
1013
|
+
select {
|
|
1014
|
+
max-width: 100px;
|
|
1015
|
+
}
|
|
1016
|
+
|
|
927
1017
|
.ActionsSvg {
|
|
928
1018
|
height: 1em;
|
|
929
1019
|
width: 1em;
|
|
@@ -931,26 +1021,26 @@
|
|
|
931
1021
|
justify-content: center;
|
|
932
1022
|
cursor: pointer;
|
|
933
1023
|
}
|
|
934
|
-
|
|
1024
|
+
}
|
|
935
1025
|
|
|
936
1026
|
.ControlContainer button {
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
1027
|
+
padding: 5px;
|
|
1028
|
+
border: 1px solid $primary-contrast-color;
|
|
1029
|
+
border-radius: var(--emw--border-radius-small, 5px);
|
|
1030
|
+
width: 25px;
|
|
1031
|
+
cursor: pointer;
|
|
1032
|
+
display: flex;
|
|
1033
|
+
flex-direction: column;
|
|
1034
|
+
margin-bottom: 4px;
|
|
1035
|
+
}
|
|
946
1036
|
|
|
947
1037
|
.ControlContainer .ActionsSvg {
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
1038
|
+
height: 1em;
|
|
1039
|
+
width: 1em;
|
|
1040
|
+
display: flex;
|
|
1041
|
+
justify-content: center;
|
|
1042
|
+
cursor: pointer;
|
|
1043
|
+
}
|
|
954
1044
|
|
|
955
1045
|
.AddLimitControl .ActionsSvg {
|
|
956
1046
|
height: 2em;
|
|
@@ -961,14 +1051,14 @@
|
|
|
961
1051
|
padding: 5px;
|
|
962
1052
|
margin-right: 5px;
|
|
963
1053
|
border: 1px solid $primary-contrast-color;
|
|
964
|
-
border-radius: 4px;
|
|
1054
|
+
border-radius: var(--emw--border-radius-small, 4px);
|
|
965
1055
|
background: var(--emw--color-white, #FFFFFF);
|
|
966
1056
|
}
|
|
967
1057
|
|
|
968
1058
|
.Gauge {
|
|
969
1059
|
width: 100%;
|
|
970
1060
|
font-family: 'Roboto', sans-serif;
|
|
971
|
-
color: black;
|
|
1061
|
+
color: var(--emw--color-black, #000000);
|
|
972
1062
|
margin: 1rem 0;
|
|
973
1063
|
flex: 1;
|
|
974
1064
|
align-content: center;
|
|
@@ -1010,7 +1100,7 @@
|
|
|
1010
1100
|
left: 50%;
|
|
1011
1101
|
transform: translateX(-50%);
|
|
1012
1102
|
top: 50%;
|
|
1013
|
-
font-size: large;
|
|
1103
|
+
font-size: var(--emw--font-size-large, 18px);
|
|
1014
1104
|
white-space: nowrap;
|
|
1015
1105
|
width: 130px;
|
|
1016
1106
|
max-width: 200px;
|
|
@@ -1059,8 +1149,8 @@
|
|
|
1059
1149
|
|
|
1060
1150
|
.DisplayContainer {
|
|
1061
1151
|
border: 1px solid $primary-color;
|
|
1062
|
-
background-color: #f5f5f5;
|
|
1063
|
-
border-radius:
|
|
1152
|
+
background-color: var(--emw--color-gray-100, #f5f5f5);
|
|
1153
|
+
border-radius: var(--emw--border-radius-medium, 12px);
|
|
1064
1154
|
box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
|
|
1065
1155
|
padding: 9px;
|
|
1066
1156
|
display: flex;
|
|
@@ -1072,14 +1162,14 @@
|
|
|
1072
1162
|
}
|
|
1073
1163
|
|
|
1074
1164
|
.SelectedProduct {
|
|
1075
|
-
font-weight: 700;
|
|
1165
|
+
font-weight: var(--emw--font-weight-bold, 700);
|
|
1076
1166
|
text-align: center;
|
|
1077
1167
|
width: 70px;
|
|
1078
1168
|
color: $primary-text-color;
|
|
1079
1169
|
}
|
|
1080
1170
|
|
|
1081
1171
|
.TotalAmount {
|
|
1082
|
-
font-size: 36px;
|
|
1172
|
+
font-size: var(--emw--font-size-2x-large, 36px);
|
|
1083
1173
|
align-items: baseline;
|
|
1084
1174
|
gap: 5px;
|
|
1085
1175
|
overflow-x: auto;
|
|
@@ -1093,7 +1183,7 @@
|
|
|
1093
1183
|
flex: 1;
|
|
1094
1184
|
text-align: center;
|
|
1095
1185
|
.Currency {
|
|
1096
|
-
font-size:24px
|
|
1186
|
+
font-size: var(--emw--font-size-x-large, 24px);
|
|
1097
1187
|
}
|
|
1098
1188
|
}
|
|
1099
1189
|
|
|
@@ -1107,13 +1197,14 @@
|
|
|
1107
1197
|
.ProductsDropdown{
|
|
1108
1198
|
display: none;
|
|
1109
1199
|
position: absolute;
|
|
1110
|
-
background-color: #
|
|
1200
|
+
background-color: var(--emw--color-gray-100, #f5f5f5);
|
|
1111
1201
|
width: 100%;
|
|
1112
1202
|
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
|
|
1113
1203
|
z-index: 1;
|
|
1114
1204
|
border: 1px solid $primary-color;
|
|
1115
1205
|
&.Show {
|
|
1116
1206
|
display: block;
|
|
1207
|
+
border-radius: var(--emw--border-radius-medium, 12px);
|
|
1117
1208
|
}
|
|
1118
1209
|
|
|
1119
1210
|
button {
|
|
@@ -1124,10 +1215,11 @@
|
|
|
1124
1215
|
padding: 10px;
|
|
1125
1216
|
width: 100%;
|
|
1126
1217
|
text-align: left;
|
|
1127
|
-
font-weight: 700;
|
|
1218
|
+
font-weight: var(--emw--font-weight-bold, 700);
|
|
1128
1219
|
&:hover{
|
|
1220
|
+
border-radius: var(--emw--border-radius-medium, 10px);
|
|
1129
1221
|
background-color: $primary-color;
|
|
1130
|
-
color: #
|
|
1222
|
+
color: var(--emw--color-white, #FFFFFF);
|
|
1131
1223
|
}
|
|
1132
1224
|
}
|
|
1133
1225
|
}
|
package/src/translations.js
CHANGED
|
@@ -28,7 +28,8 @@ export const TRANSLATIONS = {
|
|
|
28
28
|
"editLimitTitle": "Edit Limit",
|
|
29
29
|
"deleteLimitTitle": "Delete limit",
|
|
30
30
|
"cancelScheduleTitle": "Cancel schedule",
|
|
31
|
-
"addLimitText": "Add monetary limit"
|
|
31
|
+
"addLimitText": "Add monetary limit",
|
|
32
|
+
"limitWalletTypeLabel": "Wallet type"
|
|
32
33
|
},
|
|
33
34
|
"zh-hk": {
|
|
34
35
|
"noLimitToDisplay": "使用者尚未設定限額...",
|
|
@@ -59,7 +60,8 @@ export const TRANSLATIONS = {
|
|
|
59
60
|
"editLimitTitle": "編輯限制",
|
|
60
61
|
"deleteLimitTitle": "刪除限制",
|
|
61
62
|
"cancelScheduleTitle": "取消行程",
|
|
62
|
-
"addLimitText": "新增貨幣限額"
|
|
63
|
+
"addLimitText": "新增貨幣限額",
|
|
64
|
+
"limitWalletTypeLabel": "钱包类型"
|
|
63
65
|
},
|
|
64
66
|
"de": {
|
|
65
67
|
"noLimitToDisplay": "Der Benutzer hat kein Limit festgelegt...",
|
|
@@ -90,7 +92,8 @@ export const TRANSLATIONS = {
|
|
|
90
92
|
"editLimitTitle": "Limit bearbeiten",
|
|
91
93
|
"deleteLimitTitle": "Limit löschen",
|
|
92
94
|
"cancelScheduleTitle": "Zeitplan abbrechen",
|
|
93
|
-
"addLimitText": "Geldlimit hinzufügen"
|
|
95
|
+
"addLimitText": "Geldlimit hinzufügen",
|
|
96
|
+
"limitWalletTypeLabel": "Geldbörsentyp"
|
|
94
97
|
},
|
|
95
98
|
"it": {
|
|
96
99
|
"noLimitToDisplay": "L'utente non ha impostato un limite...",
|
|
@@ -121,7 +124,8 @@ export const TRANSLATIONS = {
|
|
|
121
124
|
"editLimitTitle": "Modifica limite",
|
|
122
125
|
"deleteLimitTitle": "Elimina limite",
|
|
123
126
|
"cancelScheduleTitle": "Annulla pianificazione",
|
|
124
|
-
"addLimitText": "Aggiungi limite monetario"
|
|
127
|
+
"addLimitText": "Aggiungi limite monetario",
|
|
128
|
+
"limitWalletTypeLabel": "Tipo di portafoglio"
|
|
125
129
|
},
|
|
126
130
|
"fr": {
|
|
127
131
|
"noLimitToDisplay": "L'utilisateur n'a pas fixé de limite...",
|
|
@@ -152,7 +156,8 @@ export const TRANSLATIONS = {
|
|
|
152
156
|
"editLimitTitle": "Modifier la limite",
|
|
153
157
|
"deleteLimitTitle": "Supprimer la limite",
|
|
154
158
|
"cancelScheduleTitle": "Annuler le planning",
|
|
155
|
-
"addLimitText": "Ajouter une limite monétaire"
|
|
159
|
+
"addLimitText": "Ajouter une limite monétaire",
|
|
160
|
+
"limitWalletTypeLabel": "Type de portefeuille"
|
|
156
161
|
},
|
|
157
162
|
"es": {
|
|
158
163
|
"noLimitToDisplay": "El usuario no ha establecido un límite...",
|
|
@@ -183,7 +188,8 @@ export const TRANSLATIONS = {
|
|
|
183
188
|
"editLimitTitle": "Editar límite",
|
|
184
189
|
"deleteLimitTitle": "Eliminar límite",
|
|
185
190
|
"cancelScheduleTitle": "Cancelar programación",
|
|
186
|
-
"addLimitText": "Agregar límite monetario"
|
|
191
|
+
"addLimitText": "Agregar límite monetario",
|
|
192
|
+
"limitWalletTypeLabel": "Tipo de billetera"
|
|
187
193
|
},
|
|
188
194
|
"el": {
|
|
189
195
|
"noLimitToDisplay": "Ο χρήστης δεν έχει ορίσει όριο...",
|
|
@@ -214,7 +220,8 @@ export const TRANSLATIONS = {
|
|
|
214
220
|
"editLimitTitle": "Επεξεργασία ορίου",
|
|
215
221
|
"deleteLimitTitle": "Διαγραφή ορίου",
|
|
216
222
|
"cancelScheduleTitle": "Ακύρωση προγράμματος",
|
|
217
|
-
"addLimitText": "Προσθήκη νομισματικού ορίου"
|
|
223
|
+
"addLimitText": "Προσθήκη νομισματικού ορίου",
|
|
224
|
+
"limitWalletTypeLabel": "Τύπος πορτοφολιού"
|
|
218
225
|
},
|
|
219
226
|
"tr": {
|
|
220
227
|
"noLimitToDisplay": "Kullanıcı bir sınırlama belirlemedi...",
|
|
@@ -245,7 +252,8 @@ export const TRANSLATIONS = {
|
|
|
245
252
|
"editLimitTitle": "Sınırı Düzenle",
|
|
246
253
|
"deleteLimitTitle": "Sınırı sil",
|
|
247
254
|
"cancelScheduleTitle": "Programı iptal et",
|
|
248
|
-
"addLimitText": "Para limiti ekle"
|
|
255
|
+
"addLimitText": "Para limiti ekle",
|
|
256
|
+
"limitWalletTypeLabel": "Cüzdan türü"
|
|
249
257
|
},
|
|
250
258
|
"ru": {
|
|
251
259
|
"noLimitToDisplay": "Пользователь не установил лимит...",
|
|
@@ -276,7 +284,8 @@ export const TRANSLATIONS = {
|
|
|
276
284
|
"editLimitTitle": "Изменить лимит",
|
|
277
285
|
"deleteLimitTitle": "Удалить лимит",
|
|
278
286
|
"cancelScheduleTitle": "Отменить расписание",
|
|
279
|
-
"addLimitText": "Добавить денежный лимит"
|
|
287
|
+
"addLimitText": "Добавить денежный лимит",
|
|
288
|
+
"limitWalletTypeLabel": "Тип кошелька"
|
|
280
289
|
},
|
|
281
290
|
"ro": {
|
|
282
291
|
"noLimitToDisplay": "Utilizatorul nu a setat nicio limită...",
|
|
@@ -307,7 +316,8 @@ export const TRANSLATIONS = {
|
|
|
307
316
|
"editLimitTitle": "Editați limita",
|
|
308
317
|
"deleteLimitTitle": "Ștergeți limita",
|
|
309
318
|
"cancelScheduleTitle": "Anulați programul",
|
|
310
|
-
"addLimitText": "Adăugați o limită monetară"
|
|
319
|
+
"addLimitText": "Adăugați o limită monetară",
|
|
320
|
+
"limitWalletTypeLabel": "Tip portofel"
|
|
311
321
|
},
|
|
312
322
|
"hr": {
|
|
313
323
|
"noLimitToDisplay": "Korisnik nije postavio limit...",
|
|
@@ -338,7 +348,8 @@ export const TRANSLATIONS = {
|
|
|
338
348
|
"editLimitTitle": "Uredi ograničenje",
|
|
339
349
|
"deleteLimitTitle": "Ograničenje brisanja",
|
|
340
350
|
"cancelScheduleTitle": "Otkaži raspored",
|
|
341
|
-
"addLimitText": "Dodaj novčani limit"
|
|
351
|
+
"addLimitText": "Dodaj novčani limit",
|
|
352
|
+
"limitWalletTypeLabel": "Vrsta novčanika"
|
|
342
353
|
},
|
|
343
354
|
"hu": {
|
|
344
355
|
"noLimitToDisplay": "A felhasználó nem állított be korlátot...",
|
|
@@ -369,7 +380,8 @@ export const TRANSLATIONS = {
|
|
|
369
380
|
"editLimitTitle": "Korlát szerkesztése",
|
|
370
381
|
"deleteLimitTitle": "Korlát törlése",
|
|
371
382
|
"cancelScheduleTitle": "Ütemezés törlése",
|
|
372
|
-
"addLimitText": "Pénzösszeg hozzáadása"
|
|
383
|
+
"addLimitText": "Pénzösszeg hozzáadása",
|
|
384
|
+
"limitWalletTypeLabel": "Pénztárca típusa"
|
|
373
385
|
},
|
|
374
386
|
"pl": {
|
|
375
387
|
"noLimitToDisplay": "Użytkownik nie ustawił limitu...",
|
|
@@ -400,7 +412,8 @@ export const TRANSLATIONS = {
|
|
|
400
412
|
"editLimitTitle": "Limit edycji",
|
|
401
413
|
"deleteLimitTitle": "Usuń limit",
|
|
402
414
|
"cancelScheduleTitle": "Anuluj harmonogram",
|
|
403
|
-
"addLimitText": "Dodaj limit pieniężny"
|
|
415
|
+
"addLimitText": "Dodaj limit pieniężny",
|
|
416
|
+
"limitWalletTypeLabel": "Typ portfela"
|
|
404
417
|
},
|
|
405
418
|
"pt": {
|
|
406
419
|
"noLimitToDisplay": "O usuário não definiu um limite...",
|
|
@@ -431,7 +444,8 @@ export const TRANSLATIONS = {
|
|
|
431
444
|
"editLimitTitle": "Editar Limite",
|
|
432
445
|
"deleteLimitTitle": "Excluir limite",
|
|
433
446
|
"cancelScheduleTitle": "Cancelar agendamento",
|
|
434
|
-
"addLimitText": "Adicionar limite monetário"
|
|
447
|
+
"addLimitText": "Adicionar limite monetário",
|
|
448
|
+
"limitWalletTypeLabel": "Tipo de carteira"
|
|
435
449
|
},
|
|
436
450
|
"sl": {
|
|
437
451
|
"noLimitToDisplay": "Uporabnik ni določil omejitve...",
|
|
@@ -462,7 +476,8 @@ export const TRANSLATIONS = {
|
|
|
462
476
|
"editLimitTitle": "Uredi omejitev",
|
|
463
477
|
"deleteLimitTitle": "Omejitev brisanja",
|
|
464
478
|
"cancelScheduleTitle": "Prekliči razpored",
|
|
465
|
-
"addLimitText": "Dodaj denarno omejitev"
|
|
479
|
+
"addLimitText": "Dodaj denarno omejitev",
|
|
480
|
+
"limitWalletTypeLabel": "Vrsta denarnice"
|
|
466
481
|
},
|
|
467
482
|
"sr": {
|
|
468
483
|
"noLimitToDisplay": "Korisnik nije postavio limit...",
|
|
@@ -493,7 +508,8 @@ export const TRANSLATIONS = {
|
|
|
493
508
|
"editLimitTitle": "Ограничење уређивања",
|
|
494
509
|
"deleteLimitTitle": "Избриши ограничење",
|
|
495
510
|
"cancelScheduleTitle": "Откажи распоред",
|
|
496
|
-
"addLimitText": "Додај новчано ограничење"
|
|
511
|
+
"addLimitText": "Додај новчано ограничење",
|
|
512
|
+
"limitWalletTypeLabel": "Тип новчаника"
|
|
497
513
|
},
|
|
498
514
|
"es-mx": {
|
|
499
515
|
"noLimitToDisplay": "El usuario no ha establecido un límite...",
|
|
@@ -524,7 +540,8 @@ export const TRANSLATIONS = {
|
|
|
524
540
|
"editLimitTitle": "Editar límite",
|
|
525
541
|
"deleteLimitTitle": "Eliminar límite",
|
|
526
542
|
"cancelScheduleTitle": "Cancelar programación",
|
|
527
|
-
"addLimitText": "Agregar límite monetario"
|
|
543
|
+
"addLimitText": "Agregar límite monetario",
|
|
544
|
+
"limitWalletTypeLabel": "Tipo de billetera"
|
|
528
545
|
},
|
|
529
546
|
"pt-br": {
|
|
530
547
|
"noLimitToDisplay": "O usuário não definiu um limite...",
|
|
@@ -555,6 +572,7 @@ export const TRANSLATIONS = {
|
|
|
555
572
|
"editLimitTitle": "Editar límite",
|
|
556
573
|
"deleteLimitTitle": "Eliminar límite",
|
|
557
574
|
"cancelScheduleTitle": "Cancelar programación",
|
|
558
|
-
"addLimitText": "Agregar límite monetario"
|
|
575
|
+
"addLimitText": "Agregar límite monetario",
|
|
576
|
+
"limitWalletTypeLabel": "Tipo de carteira"
|
|
559
577
|
}
|
|
560
578
|
};
|