@everymatrix/player-rglimits 1.28.3
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/README.md +30 -0
- package/dist/player-rglimits.js +1220 -0
- package/dist/player-rglimits.js.map +1 -0
- package/index.html +42 -0
- package/index.js +1 -0
- package/package.json +39 -0
- package/public/favicon.png +0 -0
- package/public/reset.css +48 -0
- package/rollup.config.js +61 -0
- package/src/PlayerRglimits.svelte +510 -0
- package/src/i18n.js +27 -0
- package/src/images/caret-right-solid.svg +1 -0
- package/src/images/fa-caret-right.svg +1 -0
- package/src/images/gauge-body-background.svg +5 -0
- package/src/images/usd-circle.svg +2 -0
- package/src/index.ts +4 -0
- package/src/translations.js +242 -0
- package/stories/PlayerRglimits.stories.js +13 -0
- package/tsconfig.json +6 -0
|
@@ -0,0 +1,242 @@
|
|
|
1
|
+
export const TRANSLATIONS = {
|
|
2
|
+
"en": {
|
|
3
|
+
"noLimitToDisplay": "The user has not set a deposit limit...",
|
|
4
|
+
"depositLimitHeader": "Deposit limit",
|
|
5
|
+
"spentAmount": "Spent amount",
|
|
6
|
+
"remainingAmount": "Remaining amount",
|
|
7
|
+
"limitPeriod": "Limit period",
|
|
8
|
+
"displayedProduct": "Product",
|
|
9
|
+
"futureLimit": "Future limit",
|
|
10
|
+
"additionalLink1": "Last deposit transaction details",
|
|
11
|
+
"additionalLink2": "Deposit in period",
|
|
12
|
+
"limitRemoved": "This limit has been removed and is valid until",
|
|
13
|
+
"limitUpdated": "This limit will be applied beginning with",
|
|
14
|
+
"changeLimitLabel": "Change limit",
|
|
15
|
+
"futureAmount": "Future amount"
|
|
16
|
+
},
|
|
17
|
+
"zh-hk": {
|
|
18
|
+
"noLimitToDisplay": "使用者尚未設定儲值限額...",
|
|
19
|
+
"depositLimitHeader": "存款限額",
|
|
20
|
+
"spentAmount": "花費金額",
|
|
21
|
+
"remainingAmount": "剩餘數量",
|
|
22
|
+
"limitPeriod": "限制期限",
|
|
23
|
+
"displayedProduct": "產品",
|
|
24
|
+
"futureLimit": "未來限制",
|
|
25
|
+
"additionalLink1": "最後存款交易詳情",
|
|
26
|
+
"additionalLink2": "定期存款",
|
|
27
|
+
"limitRemoved": "This limit has been removed and is valid until",
|
|
28
|
+
"limitUpdated": "This limit will be applied beginning with",
|
|
29
|
+
"changeLimitLabel": "Change limit",
|
|
30
|
+
"futureAmount": "Future amount"
|
|
31
|
+
},
|
|
32
|
+
"de": {
|
|
33
|
+
"noLimitToDisplay": "Der Benutzer hat kein Einzahlungslimit festgelegt...",
|
|
34
|
+
"depositLimitHeader": "Einzahlungslimit",
|
|
35
|
+
"spentAmount": "Ausgegebener Betrag",
|
|
36
|
+
"remainingAmount": "Restbetrag",
|
|
37
|
+
"limitPeriod": "Begrenzungszeitraum",
|
|
38
|
+
"displayedProduct": "Produkt",
|
|
39
|
+
"futureLimit": "Zukünftige Grenze",
|
|
40
|
+
"additionalLink1": "Details zur letzten Einzahlungstransaktion",
|
|
41
|
+
"additionalLink2": "Einzahlung im Zeitraum",
|
|
42
|
+
"limitRemoved": "This limit has been removed and is valid until",
|
|
43
|
+
"limitUpdated": "This limit will be applied beginning with",
|
|
44
|
+
"changeLimitLabel": "Change limit",
|
|
45
|
+
"futureAmount": "Future amount"
|
|
46
|
+
},
|
|
47
|
+
"it": {
|
|
48
|
+
"noLimitToDisplay": "L'utente non ha impostato un limite di deposito...",
|
|
49
|
+
"depositLimitHeader": "Limite di deposito",
|
|
50
|
+
"spentAmount": "Importo speso",
|
|
51
|
+
"remainingAmount": "Importo residuo",
|
|
52
|
+
"limitPeriod": "Periodo limite",
|
|
53
|
+
"displayedProduct": "Prodotto",
|
|
54
|
+
"futureLimit": "Limite futuro",
|
|
55
|
+
"additionalLink1": "Dettagli della transazione dell'ultimo deposito",
|
|
56
|
+
"additionalLink2": "Deposito nel periodo",
|
|
57
|
+
"limitRemoved": "This limit has been removed and is valid until",
|
|
58
|
+
"limitUpdated": "This limit will be applied beginning with",
|
|
59
|
+
"changeLimitLabel": "Change limit",
|
|
60
|
+
"futureAmount": "Future amount"
|
|
61
|
+
},
|
|
62
|
+
"fr": {
|
|
63
|
+
"noLimitToDisplay": "L'utilisateur n'a pas fixé de limite de dépôt...",
|
|
64
|
+
"depositLimitHeader": "Limite de dépôt",
|
|
65
|
+
"spentAmount": "Montant dépensé",
|
|
66
|
+
"remainingAmount": "Montant restant",
|
|
67
|
+
"limitPeriod": "Délai limite",
|
|
68
|
+
"displayedProduct": "Produit",
|
|
69
|
+
"futureLimit": "Limite future",
|
|
70
|
+
"additionalLink1": "Détails de la transaction du dernier dépôt",
|
|
71
|
+
"additionalLink2": "Dépôt en période",
|
|
72
|
+
"limitRemoved": "This limit has been removed and is valid until",
|
|
73
|
+
"limitUpdated": "This limit will be applied beginning with",
|
|
74
|
+
"changeLimitLabel": "Change limit",
|
|
75
|
+
"futureAmount": "Future amount"
|
|
76
|
+
},
|
|
77
|
+
"es": {
|
|
78
|
+
"noLimitToDisplay": "The user has not set a deposit limit...",
|
|
79
|
+
"depositLimitHeader": "Deposit limit",
|
|
80
|
+
"spentAmount": "Spent amount",
|
|
81
|
+
"remainingAmount": "Remaining amount",
|
|
82
|
+
"limitPeriod": "Limit period",
|
|
83
|
+
"displayedProduct": "Product",
|
|
84
|
+
"futureLimit": "Future limit",
|
|
85
|
+
"additionalLink1": "Last deposit transaction details",
|
|
86
|
+
"additionalLink2": "Deposit in period",
|
|
87
|
+
"limitRemoved": "This limit has been removed and is valid until",
|
|
88
|
+
"limitUpdated": "This limit will be applied beginning with",
|
|
89
|
+
"changeLimitLabel": "Change limit",
|
|
90
|
+
"futureAmount": "Future amount"
|
|
91
|
+
},
|
|
92
|
+
"el": {
|
|
93
|
+
"noLimitToDisplay": "The user has not set a deposit limit...",
|
|
94
|
+
"depositLimitHeader": "Deposit limit",
|
|
95
|
+
"spentAmount": "Spent amount",
|
|
96
|
+
"remainingAmount": "Remaining amount",
|
|
97
|
+
"limitPeriod": "Limit period",
|
|
98
|
+
"displayedProduct": "Product",
|
|
99
|
+
"futureLimit": "Future limit",
|
|
100
|
+
"additionalLink1": "Last deposit transaction details",
|
|
101
|
+
"additionalLink2": "Deposit in period",
|
|
102
|
+
"limitRemoved": "This limit has been removed and is valid until",
|
|
103
|
+
"limitUpdated": "This limit will be applied beginning with",
|
|
104
|
+
"changeLimitLabel": "Change limit",
|
|
105
|
+
"futureAmount": "Future amount"
|
|
106
|
+
},
|
|
107
|
+
"tr": {
|
|
108
|
+
"noLimitToDisplay": "The user has not set a deposit limit...",
|
|
109
|
+
"depositLimitHeader": "Deposit limit",
|
|
110
|
+
"spentAmount": "Spent amount",
|
|
111
|
+
"remainingAmount": "Remaining amount",
|
|
112
|
+
"limitPeriod": "Limit period",
|
|
113
|
+
"displayedProduct": "Product",
|
|
114
|
+
"futureLimit": "Future limit",
|
|
115
|
+
"additionalLink1": "Last deposit transaction details",
|
|
116
|
+
"additionalLink2": "Deposit in period",
|
|
117
|
+
"limitRemoved": "This limit has been removed and is valid until",
|
|
118
|
+
"limitUpdated": "This limit will be applied beginning with",
|
|
119
|
+
"changeLimitLabel": "Change limit",
|
|
120
|
+
"futureAmount": "Future amount"
|
|
121
|
+
},
|
|
122
|
+
"ru": {
|
|
123
|
+
"noLimitToDisplay": "The user has not set a deposit limit...",
|
|
124
|
+
"depositLimitHeader": "Deposit limit",
|
|
125
|
+
"spentAmount": "Spent amount",
|
|
126
|
+
"remainingAmount": "Remaining amount",
|
|
127
|
+
"limitPeriod": "Limit period",
|
|
128
|
+
"displayedProduct": "Product",
|
|
129
|
+
"futureLimit": "Future limit",
|
|
130
|
+
"additionalLink1": "Last deposit transaction details",
|
|
131
|
+
"additionalLink2": "Deposit in period",
|
|
132
|
+
"limitRemoved": "This limit has been removed and is valid until",
|
|
133
|
+
"limitUpdated": "This limit will be applied beginning with",
|
|
134
|
+
"changeLimitLabel": "Change limit",
|
|
135
|
+
"futureAmount": "Future amount"
|
|
136
|
+
},
|
|
137
|
+
"ro": {
|
|
138
|
+
"noLimitToDisplay": "The user has not set a deposit limit...",
|
|
139
|
+
"depositLimitHeader": "Deposit limit",
|
|
140
|
+
"spentAmount": "Spent amount",
|
|
141
|
+
"remainingAmount": "Remaining amount",
|
|
142
|
+
"limitPeriod": "Limit period",
|
|
143
|
+
"displayedProduct": "Product",
|
|
144
|
+
"futureLimit": "Future limit",
|
|
145
|
+
"additionalLink1": "Last deposit transaction details",
|
|
146
|
+
"additionalLink2": "Deposit in period",
|
|
147
|
+
"limitRemoved": "This limit has been removed and is valid until",
|
|
148
|
+
"limitUpdated": "This limit will be applied beginning with",
|
|
149
|
+
"changeLimitLabel": "Change limit",
|
|
150
|
+
"futureAmount": "Future amount"
|
|
151
|
+
},
|
|
152
|
+
"hr": {
|
|
153
|
+
"noLimitToDisplay": "The user has not set a deposit limit...",
|
|
154
|
+
"depositLimitHeader": "Deposit limit",
|
|
155
|
+
"spentAmount": "Spent amount",
|
|
156
|
+
"remainingAmount": "Remaining amount",
|
|
157
|
+
"limitPeriod": "Limit period",
|
|
158
|
+
"displayedProduct": "Product",
|
|
159
|
+
"futureLimit": "Future limit",
|
|
160
|
+
"additionalLink1": "Last deposit transaction details",
|
|
161
|
+
"additionalLink2": "Deposit in period",
|
|
162
|
+
"limitRemoved": "This limit has been removed and is valid until",
|
|
163
|
+
"limitUpdated": "This limit will be applied beginning with",
|
|
164
|
+
"changeLimitLabel": "Change limit",
|
|
165
|
+
"futureAmount": "Future amount"
|
|
166
|
+
},
|
|
167
|
+
"hu": {
|
|
168
|
+
"noLimitToDisplay": "The user has not set a deposit limit...",
|
|
169
|
+
"depositLimitHeader": "Deposit limit",
|
|
170
|
+
"spentAmount": "Spent amount",
|
|
171
|
+
"remainingAmount": "Remaining amount",
|
|
172
|
+
"limitPeriod": "Limit period",
|
|
173
|
+
"displayedProduct": "Product",
|
|
174
|
+
"futureLimit": "Future limit",
|
|
175
|
+
"additionalLink1": "Last deposit transaction details",
|
|
176
|
+
"additionalLink2": "Deposit in period",
|
|
177
|
+
"limitRemoved": "This limit has been removed and is valid until",
|
|
178
|
+
"limitUpdated": "This limit will be applied beginning with",
|
|
179
|
+
"changeLimitLabel": "Change limit",
|
|
180
|
+
"futureAmount": "Future amount"
|
|
181
|
+
},
|
|
182
|
+
"pl": {
|
|
183
|
+
"noLimitToDisplay": "The user has not set a deposit limit...",
|
|
184
|
+
"depositLimitHeader": "Deposit limit",
|
|
185
|
+
"spentAmount": "Spent amount",
|
|
186
|
+
"remainingAmount": "Remaining amount",
|
|
187
|
+
"limitPeriod": "Limit period",
|
|
188
|
+
"displayedProduct": "Product",
|
|
189
|
+
"futureLimit": "Future limit",
|
|
190
|
+
"additionalLink1": "Last deposit transaction details",
|
|
191
|
+
"additionalLink2": "Deposit in period",
|
|
192
|
+
"limitRemoved": "This limit has been removed and is valid until",
|
|
193
|
+
"limitUpdated": "This limit will be applied beginning with",
|
|
194
|
+
"changeLimitLabel": "Change limit",
|
|
195
|
+
"futureAmount": "Future amount"
|
|
196
|
+
},
|
|
197
|
+
"pt": {
|
|
198
|
+
"noLimitToDisplay": "The user has not set a deposit limit...",
|
|
199
|
+
"depositLimitHeader": "Deposit limit",
|
|
200
|
+
"spentAmount": "Spent amount",
|
|
201
|
+
"remainingAmount": "Remaining amount",
|
|
202
|
+
"limitPeriod": "Limit period",
|
|
203
|
+
"displayedProduct": "Product",
|
|
204
|
+
"futureLimit": "Future limit",
|
|
205
|
+
"additionalLink1": "Last deposit transaction details",
|
|
206
|
+
"additionalLink2": "Deposit in period",
|
|
207
|
+
"limitRemoved": "This limit has been removed and is valid until",
|
|
208
|
+
"limitUpdated": "This limit will be applied beginning with",
|
|
209
|
+
"changeLimitLabel": "Change limit",
|
|
210
|
+
"futureAmount": "Future amount"
|
|
211
|
+
},
|
|
212
|
+
"sl": {
|
|
213
|
+
"noLimitToDisplay": "The user has not set a deposit limit...",
|
|
214
|
+
"depositLimitHeader": "Deposit limit",
|
|
215
|
+
"spentAmount": "Spent amount",
|
|
216
|
+
"remainingAmount": "Remaining amount",
|
|
217
|
+
"limitPeriod": "Limit period",
|
|
218
|
+
"displayedProduct": "Product",
|
|
219
|
+
"futureLimit": "Future limit",
|
|
220
|
+
"additionalLink1": "Last deposit transaction details",
|
|
221
|
+
"additionalLink2": "Deposit in period",
|
|
222
|
+
"limitRemoved": "This limit has been removed and is valid until",
|
|
223
|
+
"limitUpdated": "This limit will be applied beginning with",
|
|
224
|
+
"changeLimitLabel": "Change limit",
|
|
225
|
+
"futureAmount": "Future amount"
|
|
226
|
+
},
|
|
227
|
+
"sr": {
|
|
228
|
+
"noLimitToDisplay": "The user has not set a deposit limit...",
|
|
229
|
+
"depositLimitHeader": "Deposit limit",
|
|
230
|
+
"spentAmount": "Spent amount",
|
|
231
|
+
"remainingAmount": "Remaining amount",
|
|
232
|
+
"limitPeriod": "Limit period",
|
|
233
|
+
"displayedProduct": "Product",
|
|
234
|
+
"futureLimit": "Future limit",
|
|
235
|
+
"additionalLink1": "Last deposit transaction details",
|
|
236
|
+
"additionalLink2": "Deposit in period",
|
|
237
|
+
"limitRemoved": "This limit has been removed and is valid until",
|
|
238
|
+
"limitUpdated": "This limit will be applied beginning with",
|
|
239
|
+
"changeLimitLabel": "Change limit",
|
|
240
|
+
"futureAmount": "Future amount"
|
|
241
|
+
}
|
|
242
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { html } from 'lit-element';
|
|
2
|
+
|
|
3
|
+
import PlayerRglimits from '../src/PlayerRglimits';
|
|
4
|
+
|
|
5
|
+
// This default export determines where your story goes in the story list
|
|
6
|
+
export default {
|
|
7
|
+
title: 'PlayerRglimits',
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
// 👇 We create a “template” of how args map to rendering
|
|
11
|
+
const PlayerRglimits = ({ aProperty }) => html`<player-rglimits></player-rglimits>`;
|
|
12
|
+
|
|
13
|
+
export const FirstStory = PlayerRglimits.bind({});
|