@abyss-project/commons-front-core 1.0.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/.eslintrc.cjs +30 -0
- package/README.md +2 -0
- package/declaration.d.ts +9 -0
- package/dist/assets/index.d.ts +6 -0
- package/dist/assets/logo/index.d.ts +8 -0
- package/dist/components/AllCloudMetrics/AllCloudMetrics.component.d.ts +14 -0
- package/dist/components/AllCloudMetrics/index.d.ts +1 -0
- package/dist/components/Avatars/ProjectAvatar/ProjectAvatar.component.d.ts +14 -0
- package/dist/components/Avatars/ProjectAvatar/index.d.ts +1 -0
- package/dist/components/Avatars/UserAvatar/UserAvatar.component.d.ts +14 -0
- package/dist/components/Avatars/UserAvatar/constant.d.ts +4 -0
- package/dist/components/Avatars/UserAvatar/index.d.ts +2 -0
- package/dist/components/Avatars/index.d.ts +2 -0
- package/dist/components/Chips/LogTypeChip/LogTypeChip.component.d.ts +9 -0
- package/dist/components/Chips/LogTypeChip/index.d.ts +1 -0
- package/dist/components/Chips/ProjectStatusChip/ProjectStatusChip.component.d.ts +9 -0
- package/dist/components/Chips/ProjectStatusChip/index.d.ts +1 -0
- package/dist/components/Chips/WebhookResponseCodeChip/WebhookResponseCodeChip.component.d.ts +9 -0
- package/dist/components/Chips/WebhookResponseCodeChip/index.d.ts +1 -0
- package/dist/components/Chips/WebhookTypeChip/WebhookTypeChip.component.d.ts +9 -0
- package/dist/components/Chips/WebhookTypeChip/index.d.ts +1 -0
- package/dist/components/Chips/index.d.ts +4 -0
- package/dist/components/FiltersBox/FiltersBox.component.d.ts +8 -0
- package/dist/components/FiltersBox/index.d.ts +1 -0
- package/dist/components/FreepikSearch/FreepikSearch.component.d.ts +9 -0
- package/dist/components/FreepikSearch/index.d.ts +1 -0
- package/dist/components/ImportButton/ImportButton.component.d.ts +30 -0
- package/dist/components/ImportButton/index.d.ts +2 -0
- package/dist/components/InfoBox/InfoBox.component.d.ts +4 -0
- package/dist/components/InfoBox/index.d.ts +1 -0
- package/dist/components/Inputs/CloudImport/CloudImport.component.d.ts +18 -0
- package/dist/components/Inputs/CloudImport/CloudImportFile.component.d.ts +17 -0
- package/dist/components/Inputs/CloudImport/CloudImportFolder.component.d.ts +21 -0
- package/dist/components/Inputs/CloudImport/index.d.ts +1 -0
- package/dist/components/Inputs/CloudSave/CloudSave.component.d.ts +15 -0
- package/dist/components/Inputs/CloudSave/index.d.ts +1 -0
- package/dist/components/Inputs/DatePeriodPicker/DatePeriodPicker.component.d.ts +10 -0
- package/dist/components/Inputs/DatePeriodPicker/index.d.ts +1 -0
- package/dist/components/Inputs/PasswordInput/PasswordInput.component.d.ts +18 -0
- package/dist/components/Inputs/PasswordInput/index.d.ts +1 -0
- package/dist/components/Inputs/index.d.ts +4 -0
- package/dist/components/Modals/AbyssModal/AbyssModal.component.d.ts +2 -0
- package/dist/components/Modals/AbyssModal/index.d.ts +1 -0
- package/dist/components/Modals/ConfirmModal/ConfirmModal.d.ts +20 -0
- package/dist/components/Modals/ConfirmModal/index.d.ts +1 -0
- package/dist/components/Modals/ImportFromCloudModal/ImportFromCloudModal.component.d.ts +19 -0
- package/dist/components/Modals/ImportFromCloudModal/index.d.ts +1 -0
- package/dist/components/Modals/ImportFromCollectionModal/ImportFromCollectionModal.component.d.ts +11 -0
- package/dist/components/Modals/ImportFromCollectionModal/index.d.ts +1 -0
- package/dist/components/Modals/QRCodeModal/QRCodeModal.component.d.ts +12 -0
- package/dist/components/Modals/QRCodeModal/index.d.ts +1 -0
- package/dist/components/Modals/SaveCloudModal/SaveCloudModal.component.d.ts +16 -0
- package/dist/components/Modals/SaveCloudModal/index.d.ts +1 -0
- package/dist/components/Modals/index.d.ts +6 -0
- package/dist/components/Utils/CustomDivider/CustomDivider.component.d.ts +4 -0
- package/dist/components/Utils/CustomDivider/index.d.ts +1 -0
- package/dist/components/Utils/FloatingNavigation/FloatingNavigation.component.d.ts +17 -0
- package/dist/components/Utils/FloatingNavigation/index.d.ts +1 -0
- package/dist/components/Utils/WaterParticles/WaterParticles.component.d.ts +8 -0
- package/dist/components/Utils/WaterParticles/index.d.ts +1 -0
- package/dist/components/Utils/index.d.ts +3 -0
- package/dist/components/index.d.ts +10 -0
- package/dist/hooks/confirm-modal/confirm-modal.context.d.ts +8 -0
- package/dist/hooks/confirm-modal/index.d.ts +1 -0
- package/dist/hooks/index.d.ts +3 -0
- package/dist/hooks/use-cloud.hook.d.ts +8 -0
- package/dist/hooks/use-rich-intl.hook.d.ts +3145 -0
- package/dist/hooks/use-theme.hook.d.ts +1 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +19762 -0
- package/dist/stylesheet.d.ts +123 -0
- package/dist/translations/en.d.ts +1567 -0
- package/dist/translations/fr.d.ts +1554 -0
- package/dist/utils/color.utils.d.ts +2 -0
- package/dist/utils/index.d.ts +1 -0
- package/package.json +96 -0
- package/tsconfig.json +35 -0
- package/vite.config.ts +72 -0
|
@@ -0,0 +1,1554 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
general: {
|
|
3
|
+
'unknown-error': string;
|
|
4
|
+
'not-implemented-yet': string;
|
|
5
|
+
'session-expired': string;
|
|
6
|
+
'click-to-copy': string;
|
|
7
|
+
open: string;
|
|
8
|
+
delete: string;
|
|
9
|
+
optional: string;
|
|
10
|
+
refresh: string;
|
|
11
|
+
'please-wait': string;
|
|
12
|
+
'rows-per-page': string;
|
|
13
|
+
'rows-selected': string;
|
|
14
|
+
};
|
|
15
|
+
login: {
|
|
16
|
+
'wrong-credentials': string;
|
|
17
|
+
'forgotten-password': string;
|
|
18
|
+
'sign-up': string;
|
|
19
|
+
'fields-label': {
|
|
20
|
+
email: string;
|
|
21
|
+
password: string;
|
|
22
|
+
};
|
|
23
|
+
'connect-button': string;
|
|
24
|
+
'connect-with-discord': string;
|
|
25
|
+
'resend-email-verification': string;
|
|
26
|
+
'email-verification-sent': string;
|
|
27
|
+
'go-back-to-login': string;
|
|
28
|
+
'reset-password': {
|
|
29
|
+
'email-not-verified': string;
|
|
30
|
+
'send-reset-password': string;
|
|
31
|
+
'password-reset': string;
|
|
32
|
+
'password-reset-button': string;
|
|
33
|
+
};
|
|
34
|
+
};
|
|
35
|
+
'sign-up': {
|
|
36
|
+
'password-confirmation-error': string;
|
|
37
|
+
'email-already-exist': string;
|
|
38
|
+
'fields-label': {
|
|
39
|
+
'password-confirmation': string;
|
|
40
|
+
};
|
|
41
|
+
login: string;
|
|
42
|
+
'sign-up-button': string;
|
|
43
|
+
success: {
|
|
44
|
+
helper: string;
|
|
45
|
+
'no-mail-received': string;
|
|
46
|
+
};
|
|
47
|
+
};
|
|
48
|
+
'already-connected': {
|
|
49
|
+
'connected-as': string;
|
|
50
|
+
'confirm-button': string;
|
|
51
|
+
'change-account': string;
|
|
52
|
+
};
|
|
53
|
+
dashboard: {
|
|
54
|
+
'open-ticket-helper': string;
|
|
55
|
+
'open-ticket-helper-2': string;
|
|
56
|
+
'search-bar': string;
|
|
57
|
+
'empty-table': string;
|
|
58
|
+
navigation: {
|
|
59
|
+
select: {
|
|
60
|
+
label: string;
|
|
61
|
+
};
|
|
62
|
+
dashboard: string;
|
|
63
|
+
applications: string;
|
|
64
|
+
settings: string;
|
|
65
|
+
forms: string;
|
|
66
|
+
services: string;
|
|
67
|
+
billing: string;
|
|
68
|
+
documentation: string;
|
|
69
|
+
permissions: string;
|
|
70
|
+
subtitle: string;
|
|
71
|
+
'user-services': string;
|
|
72
|
+
projects: string;
|
|
73
|
+
others: string;
|
|
74
|
+
};
|
|
75
|
+
menu: {
|
|
76
|
+
services: {
|
|
77
|
+
title: string;
|
|
78
|
+
crypt: string;
|
|
79
|
+
cloud: string;
|
|
80
|
+
memories: string;
|
|
81
|
+
banking: string;
|
|
82
|
+
spotlight: string;
|
|
83
|
+
form: string;
|
|
84
|
+
};
|
|
85
|
+
dashboard: {
|
|
86
|
+
title: string;
|
|
87
|
+
crypt: string;
|
|
88
|
+
projects: {
|
|
89
|
+
title: string;
|
|
90
|
+
helper: string;
|
|
91
|
+
};
|
|
92
|
+
discord: string;
|
|
93
|
+
};
|
|
94
|
+
account: {
|
|
95
|
+
title: string;
|
|
96
|
+
'my-account': string;
|
|
97
|
+
ticket: string;
|
|
98
|
+
billing: string;
|
|
99
|
+
};
|
|
100
|
+
logout: string;
|
|
101
|
+
};
|
|
102
|
+
'no-subscription': string;
|
|
103
|
+
notification: {
|
|
104
|
+
'no-notification': string;
|
|
105
|
+
'see-all-button': string;
|
|
106
|
+
};
|
|
107
|
+
main: {
|
|
108
|
+
'no-application-info-box': string;
|
|
109
|
+
'create-first-application-button': string;
|
|
110
|
+
services: {
|
|
111
|
+
'not-activated': string;
|
|
112
|
+
activated: string;
|
|
113
|
+
down: string;
|
|
114
|
+
'enable-button': string;
|
|
115
|
+
'open-service-button': string;
|
|
116
|
+
toast: {
|
|
117
|
+
'service-activated': string;
|
|
118
|
+
};
|
|
119
|
+
type: {
|
|
120
|
+
developer: {
|
|
121
|
+
description: string;
|
|
122
|
+
};
|
|
123
|
+
customer: {
|
|
124
|
+
description: string;
|
|
125
|
+
};
|
|
126
|
+
both: {
|
|
127
|
+
description: string;
|
|
128
|
+
};
|
|
129
|
+
};
|
|
130
|
+
};
|
|
131
|
+
'gift-code': {
|
|
132
|
+
title: string;
|
|
133
|
+
'activation-button': string;
|
|
134
|
+
'activation-error': string;
|
|
135
|
+
placeholder: string;
|
|
136
|
+
};
|
|
137
|
+
};
|
|
138
|
+
project: {
|
|
139
|
+
owner: string;
|
|
140
|
+
invited: string;
|
|
141
|
+
refresh: string;
|
|
142
|
+
'project-count': string;
|
|
143
|
+
'max-project-count': string;
|
|
144
|
+
'see-subscription': string;
|
|
145
|
+
'project-name': string;
|
|
146
|
+
role: string;
|
|
147
|
+
loading: string;
|
|
148
|
+
status: {
|
|
149
|
+
ACTIVE: string;
|
|
150
|
+
INACTIVE: string;
|
|
151
|
+
ARCHIVED: string;
|
|
152
|
+
};
|
|
153
|
+
card: {
|
|
154
|
+
members: string;
|
|
155
|
+
services: string;
|
|
156
|
+
'created-at': string;
|
|
157
|
+
};
|
|
158
|
+
settings: {
|
|
159
|
+
title: string;
|
|
160
|
+
delete: string;
|
|
161
|
+
leave: string;
|
|
162
|
+
'helper-notification': string;
|
|
163
|
+
'helper-owner': string;
|
|
164
|
+
'delete-modal': {
|
|
165
|
+
title: string;
|
|
166
|
+
helper: string;
|
|
167
|
+
'helper-spotlight': string;
|
|
168
|
+
'spotlight-project-error': string;
|
|
169
|
+
'helper-form': string;
|
|
170
|
+
'form-error': string;
|
|
171
|
+
};
|
|
172
|
+
'info-helper': {
|
|
173
|
+
title: string;
|
|
174
|
+
'project-id': string;
|
|
175
|
+
};
|
|
176
|
+
};
|
|
177
|
+
billing: {
|
|
178
|
+
title: string;
|
|
179
|
+
};
|
|
180
|
+
'no-project': {
|
|
181
|
+
'info-box': {
|
|
182
|
+
title: string;
|
|
183
|
+
'part-1': {
|
|
184
|
+
title: string;
|
|
185
|
+
'helper-1': string;
|
|
186
|
+
'helper-2': string;
|
|
187
|
+
};
|
|
188
|
+
'part-2': {
|
|
189
|
+
title: string;
|
|
190
|
+
'helper-1': string;
|
|
191
|
+
'helper-2': string;
|
|
192
|
+
};
|
|
193
|
+
};
|
|
194
|
+
'create-first-project-button': string;
|
|
195
|
+
'create-first-project-helper': string;
|
|
196
|
+
helper: string;
|
|
197
|
+
'create-project-button': string;
|
|
198
|
+
'application-of-project': string;
|
|
199
|
+
'no-application': string;
|
|
200
|
+
};
|
|
201
|
+
'stats-card': {
|
|
202
|
+
total: string;
|
|
203
|
+
owned: string;
|
|
204
|
+
invited: string;
|
|
205
|
+
remaining: string;
|
|
206
|
+
};
|
|
207
|
+
filters: {
|
|
208
|
+
title: string;
|
|
209
|
+
all: string;
|
|
210
|
+
'view-mode': string;
|
|
211
|
+
'order-by': string;
|
|
212
|
+
name: string;
|
|
213
|
+
showing: string;
|
|
214
|
+
};
|
|
215
|
+
'create-project': {
|
|
216
|
+
title: string;
|
|
217
|
+
fields: {
|
|
218
|
+
name: string;
|
|
219
|
+
description: string;
|
|
220
|
+
status: string;
|
|
221
|
+
};
|
|
222
|
+
};
|
|
223
|
+
permissions: {
|
|
224
|
+
title: string;
|
|
225
|
+
'no-user-permission': string;
|
|
226
|
+
helper: string;
|
|
227
|
+
'no-permission': string;
|
|
228
|
+
'invite-user-button': string;
|
|
229
|
+
'create-api-key-button': string;
|
|
230
|
+
'member-since': string;
|
|
231
|
+
tabs: {
|
|
232
|
+
all: string;
|
|
233
|
+
user: string;
|
|
234
|
+
'api-key': string;
|
|
235
|
+
};
|
|
236
|
+
'invite-user-modal': {
|
|
237
|
+
title: string;
|
|
238
|
+
fields: {
|
|
239
|
+
email: string;
|
|
240
|
+
name: string;
|
|
241
|
+
description: string;
|
|
242
|
+
};
|
|
243
|
+
helper: string;
|
|
244
|
+
'helper-new-user': string;
|
|
245
|
+
confirm: string;
|
|
246
|
+
'confirm-new-user': string;
|
|
247
|
+
'success-new-user': string;
|
|
248
|
+
};
|
|
249
|
+
'create-api-key-modal': {
|
|
250
|
+
title: string;
|
|
251
|
+
'title-update': string;
|
|
252
|
+
'title-update-user': string;
|
|
253
|
+
fields: {
|
|
254
|
+
name: string;
|
|
255
|
+
description: string;
|
|
256
|
+
};
|
|
257
|
+
};
|
|
258
|
+
'no-comment': string;
|
|
259
|
+
inactive: string;
|
|
260
|
+
tooltip: {
|
|
261
|
+
delete: string;
|
|
262
|
+
edit: string;
|
|
263
|
+
'set-ownership': string;
|
|
264
|
+
'reset-api-key': string;
|
|
265
|
+
'copy-api-key': string;
|
|
266
|
+
};
|
|
267
|
+
'helper-1': string;
|
|
268
|
+
'helper-2': string;
|
|
269
|
+
'warning-delete': string;
|
|
270
|
+
'warning-delete-2': string;
|
|
271
|
+
'project-permission': string;
|
|
272
|
+
'application-permission': string;
|
|
273
|
+
'no-application': string;
|
|
274
|
+
project: {
|
|
275
|
+
'full-access': string;
|
|
276
|
+
'project-update': string;
|
|
277
|
+
'project-notification': string;
|
|
278
|
+
'project-access-read': string;
|
|
279
|
+
'project-access-create': string;
|
|
280
|
+
'project-access-delete': string;
|
|
281
|
+
'project-access-update': string;
|
|
282
|
+
'project-access-reset-api-key': string;
|
|
283
|
+
'application-create': string;
|
|
284
|
+
'application-update': string;
|
|
285
|
+
'application-delete': string;
|
|
286
|
+
};
|
|
287
|
+
application: {
|
|
288
|
+
'full-access': string;
|
|
289
|
+
'monitor-full-access': string;
|
|
290
|
+
'monitor-read': string;
|
|
291
|
+
'monitor-reset-secret-publish-token': string;
|
|
292
|
+
'monitor-log-read': string;
|
|
293
|
+
'monitor-stats-read': string;
|
|
294
|
+
'monitor-cron-task-read': string;
|
|
295
|
+
'monitor-cron-task-create': string;
|
|
296
|
+
'monitor-cron-task-delete': string;
|
|
297
|
+
'monitor-cron-task-update': string;
|
|
298
|
+
'monitor-cron-task-regenerate-secret': string;
|
|
299
|
+
'monitor-cron-task-trigger': string;
|
|
300
|
+
'monitor-store-read': string;
|
|
301
|
+
'monitor-store-update': string;
|
|
302
|
+
'monitor-store-delete': string;
|
|
303
|
+
'monitor-store-create': string;
|
|
304
|
+
'storage-full-access': string;
|
|
305
|
+
'storage-read': string;
|
|
306
|
+
'storage-file-read': string;
|
|
307
|
+
'storage-file-pre-sign-url': string;
|
|
308
|
+
'storage-file-crypt': string;
|
|
309
|
+
'storage-file-update': string;
|
|
310
|
+
'storage-file-delete': string;
|
|
311
|
+
'storage-file-duplicate': string;
|
|
312
|
+
'storage-file-archive': string;
|
|
313
|
+
'storage-file-public-access': string;
|
|
314
|
+
'storage-file-thumbnail-read': string;
|
|
315
|
+
'storage-file-thumbnail-delete': string;
|
|
316
|
+
'storage-file-thumbnail-update': string;
|
|
317
|
+
'storage-file-thumbnail-write': string;
|
|
318
|
+
'storage-webhook-read': string;
|
|
319
|
+
'storage-webhook-create': string;
|
|
320
|
+
'storage-webhook-update': string;
|
|
321
|
+
'storage-webhook-delete': string;
|
|
322
|
+
'storage-webhook-reset-secret': string;
|
|
323
|
+
'storage-webhook-history-read': string;
|
|
324
|
+
};
|
|
325
|
+
};
|
|
326
|
+
};
|
|
327
|
+
crypt: {
|
|
328
|
+
subtitle: string;
|
|
329
|
+
encrypt: string;
|
|
330
|
+
decrypt: string;
|
|
331
|
+
count: string;
|
|
332
|
+
'count-helper': string;
|
|
333
|
+
'cryption-table': {
|
|
334
|
+
fields: {
|
|
335
|
+
id: string;
|
|
336
|
+
type: string;
|
|
337
|
+
algorithm: string;
|
|
338
|
+
size: string;
|
|
339
|
+
'started-at': string;
|
|
340
|
+
'ended-at': string;
|
|
341
|
+
'created-at': string;
|
|
342
|
+
};
|
|
343
|
+
};
|
|
344
|
+
'open-button': string;
|
|
345
|
+
};
|
|
346
|
+
notifications: {
|
|
347
|
+
title: string;
|
|
348
|
+
'new-notifications': string;
|
|
349
|
+
'notifications-card-list': {
|
|
350
|
+
'no-element': string;
|
|
351
|
+
};
|
|
352
|
+
};
|
|
353
|
+
'my-account': {
|
|
354
|
+
settings: string;
|
|
355
|
+
profile: {
|
|
356
|
+
title: string;
|
|
357
|
+
alias: string;
|
|
358
|
+
email: string;
|
|
359
|
+
phone: string;
|
|
360
|
+
name: string;
|
|
361
|
+
familyName: string;
|
|
362
|
+
placeholder: {
|
|
363
|
+
phone: string;
|
|
364
|
+
name: string;
|
|
365
|
+
familyName: string;
|
|
366
|
+
};
|
|
367
|
+
picture: {
|
|
368
|
+
title: string;
|
|
369
|
+
'change-button': string;
|
|
370
|
+
'file-too-big': string;
|
|
371
|
+
'max-file-size': string;
|
|
372
|
+
};
|
|
373
|
+
};
|
|
374
|
+
sponsorship: {
|
|
375
|
+
title: string;
|
|
376
|
+
'qrcode-button': string;
|
|
377
|
+
'sponsorship-link': string;
|
|
378
|
+
or: string;
|
|
379
|
+
helper: string;
|
|
380
|
+
transactions: {
|
|
381
|
+
title: string;
|
|
382
|
+
total: string;
|
|
383
|
+
'total-credit': string;
|
|
384
|
+
'no-transactions': string;
|
|
385
|
+
};
|
|
386
|
+
'sponsored-users': {
|
|
387
|
+
title: string;
|
|
388
|
+
'total-sponsored': string;
|
|
389
|
+
verified: string;
|
|
390
|
+
'not-verified': string;
|
|
391
|
+
};
|
|
392
|
+
form: {
|
|
393
|
+
title: string;
|
|
394
|
+
label: string;
|
|
395
|
+
button: string;
|
|
396
|
+
'success-toast': string;
|
|
397
|
+
};
|
|
398
|
+
};
|
|
399
|
+
password: {
|
|
400
|
+
title: string;
|
|
401
|
+
password: string;
|
|
402
|
+
'password-confirmation': string;
|
|
403
|
+
'last-change': string;
|
|
404
|
+
};
|
|
405
|
+
'save-button': string;
|
|
406
|
+
'delete-button': string;
|
|
407
|
+
tabs: {
|
|
408
|
+
general: string;
|
|
409
|
+
projects: string;
|
|
410
|
+
connection: string;
|
|
411
|
+
settings: string;
|
|
412
|
+
};
|
|
413
|
+
connection: {
|
|
414
|
+
'connected-account': string;
|
|
415
|
+
'connect-button': string;
|
|
416
|
+
};
|
|
417
|
+
preference: {
|
|
418
|
+
title: string;
|
|
419
|
+
helper: string;
|
|
420
|
+
language: string;
|
|
421
|
+
'language-title': string;
|
|
422
|
+
'language-helper': string;
|
|
423
|
+
languages: {
|
|
424
|
+
en: string;
|
|
425
|
+
fr: string;
|
|
426
|
+
};
|
|
427
|
+
currency: {
|
|
428
|
+
title: string;
|
|
429
|
+
helper: string;
|
|
430
|
+
'currency-title': string;
|
|
431
|
+
values: {
|
|
432
|
+
EUR: string;
|
|
433
|
+
USD: string;
|
|
434
|
+
GBP: string;
|
|
435
|
+
JPY: string;
|
|
436
|
+
CNY: string;
|
|
437
|
+
CHF: string;
|
|
438
|
+
};
|
|
439
|
+
};
|
|
440
|
+
newsletter: {
|
|
441
|
+
'newsletter-title': string;
|
|
442
|
+
'newsletter-helper': string;
|
|
443
|
+
label: string;
|
|
444
|
+
helper: string;
|
|
445
|
+
'unsubscribe-confirm': string;
|
|
446
|
+
};
|
|
447
|
+
};
|
|
448
|
+
};
|
|
449
|
+
ticket: {
|
|
450
|
+
'create-ticket': {
|
|
451
|
+
title: string;
|
|
452
|
+
fields: {
|
|
453
|
+
title: string;
|
|
454
|
+
service: string;
|
|
455
|
+
category: string;
|
|
456
|
+
};
|
|
457
|
+
category: {
|
|
458
|
+
billing: string;
|
|
459
|
+
bug: string;
|
|
460
|
+
'help-package-api': string;
|
|
461
|
+
other: string;
|
|
462
|
+
partnership: string;
|
|
463
|
+
'project-financing': string;
|
|
464
|
+
'account-management': string;
|
|
465
|
+
report: string;
|
|
466
|
+
};
|
|
467
|
+
'create-button': string;
|
|
468
|
+
'attachment-filtered': string;
|
|
469
|
+
'join-file': string;
|
|
470
|
+
'max-file-size': string;
|
|
471
|
+
'info-box': {
|
|
472
|
+
title: string;
|
|
473
|
+
'helper-1': string;
|
|
474
|
+
'helper-2': string;
|
|
475
|
+
'helper-3': string;
|
|
476
|
+
'helper-4': string;
|
|
477
|
+
};
|
|
478
|
+
helper: {
|
|
479
|
+
'get-financed': string;
|
|
480
|
+
'get-financed-button': string;
|
|
481
|
+
'project-financing': {
|
|
482
|
+
'helper-1': string;
|
|
483
|
+
'helper-2': string;
|
|
484
|
+
'helper-3': string;
|
|
485
|
+
'helper-4': string;
|
|
486
|
+
};
|
|
487
|
+
'account-management': {
|
|
488
|
+
'helper-1': string;
|
|
489
|
+
};
|
|
490
|
+
};
|
|
491
|
+
};
|
|
492
|
+
'info-box': {
|
|
493
|
+
title: string;
|
|
494
|
+
'helper-1': string;
|
|
495
|
+
'helper-2': string;
|
|
496
|
+
'open-ticket': string;
|
|
497
|
+
};
|
|
498
|
+
'no-ticket': string;
|
|
499
|
+
state: {
|
|
500
|
+
open: string;
|
|
501
|
+
close: string;
|
|
502
|
+
};
|
|
503
|
+
'open-ticket': string;
|
|
504
|
+
'send-message-button': string;
|
|
505
|
+
're-open-ticket-on-send-message': string;
|
|
506
|
+
'join-discord-button': string;
|
|
507
|
+
};
|
|
508
|
+
billing: {
|
|
509
|
+
title: string;
|
|
510
|
+
table: {
|
|
511
|
+
title: string;
|
|
512
|
+
'no-element': string;
|
|
513
|
+
};
|
|
514
|
+
reduction: string;
|
|
515
|
+
'buy-button': string;
|
|
516
|
+
'free-pick': string;
|
|
517
|
+
credit: string;
|
|
518
|
+
'amount-credit': string;
|
|
519
|
+
'no-payment-method': string;
|
|
520
|
+
'buy-credit-button': string;
|
|
521
|
+
'user-credit': string;
|
|
522
|
+
product: {
|
|
523
|
+
credit: string;
|
|
524
|
+
};
|
|
525
|
+
'see-receipt': string;
|
|
526
|
+
subscription: {
|
|
527
|
+
'link-button': string;
|
|
528
|
+
title: string;
|
|
529
|
+
'project-title': string;
|
|
530
|
+
'choose-subscription': string;
|
|
531
|
+
'current-subscription': {
|
|
532
|
+
'no-subscription': string;
|
|
533
|
+
'running-subscription': string;
|
|
534
|
+
level: string;
|
|
535
|
+
'end-date': string;
|
|
536
|
+
price: string;
|
|
537
|
+
'credit-per-month': string;
|
|
538
|
+
'subscribe-now': string;
|
|
539
|
+
};
|
|
540
|
+
'how-to-upgrade': {
|
|
541
|
+
title: string;
|
|
542
|
+
'helper-1': string;
|
|
543
|
+
'helper-2': string;
|
|
544
|
+
};
|
|
545
|
+
cards: {
|
|
546
|
+
'subheader-1': string;
|
|
547
|
+
'subheader-2': string;
|
|
548
|
+
config: {
|
|
549
|
+
'no-limit': string;
|
|
550
|
+
yes: string;
|
|
551
|
+
no: string;
|
|
552
|
+
abyss: {
|
|
553
|
+
'max-number-of-project': {
|
|
554
|
+
title: string;
|
|
555
|
+
value: string;
|
|
556
|
+
};
|
|
557
|
+
};
|
|
558
|
+
'abyss-cloud': {
|
|
559
|
+
'max-number-of-cloud': {
|
|
560
|
+
title: string;
|
|
561
|
+
value: string;
|
|
562
|
+
};
|
|
563
|
+
'max-storage-size-go': {
|
|
564
|
+
title: string;
|
|
565
|
+
value: string;
|
|
566
|
+
};
|
|
567
|
+
'max-cloud-share': {
|
|
568
|
+
title: string;
|
|
569
|
+
value: string;
|
|
570
|
+
};
|
|
571
|
+
};
|
|
572
|
+
'abyss-crypt': {
|
|
573
|
+
'max-file-size-mo': {
|
|
574
|
+
title: string;
|
|
575
|
+
value: string;
|
|
576
|
+
};
|
|
577
|
+
};
|
|
578
|
+
'abyss-memories': {
|
|
579
|
+
'max-member-per-event': {
|
|
580
|
+
title: string;
|
|
581
|
+
value: string;
|
|
582
|
+
};
|
|
583
|
+
};
|
|
584
|
+
'abyss-form': {
|
|
585
|
+
'max-document-per-form': {
|
|
586
|
+
title: string;
|
|
587
|
+
value: string;
|
|
588
|
+
};
|
|
589
|
+
'max-document-size-mo': {
|
|
590
|
+
title: string;
|
|
591
|
+
value: string;
|
|
592
|
+
};
|
|
593
|
+
'max-submission-per-form-per-day': {
|
|
594
|
+
title: string;
|
|
595
|
+
value: string;
|
|
596
|
+
};
|
|
597
|
+
'max-submission-per-form': {
|
|
598
|
+
title: string;
|
|
599
|
+
value: string;
|
|
600
|
+
};
|
|
601
|
+
'allow-submission-document': {
|
|
602
|
+
title: string;
|
|
603
|
+
value: string;
|
|
604
|
+
};
|
|
605
|
+
};
|
|
606
|
+
'abyss-storage': {
|
|
607
|
+
'max-file-size-mo': {
|
|
608
|
+
title: string;
|
|
609
|
+
value: string;
|
|
610
|
+
};
|
|
611
|
+
'max-storage-size-go': {
|
|
612
|
+
title: string;
|
|
613
|
+
value: string;
|
|
614
|
+
};
|
|
615
|
+
'max-thumbnail-per-file': {
|
|
616
|
+
title: string;
|
|
617
|
+
value: string;
|
|
618
|
+
};
|
|
619
|
+
'max-pre-sign-url-per-hour': {
|
|
620
|
+
title: string;
|
|
621
|
+
value: string;
|
|
622
|
+
};
|
|
623
|
+
'free-file-per-day': {
|
|
624
|
+
title: string;
|
|
625
|
+
value: string;
|
|
626
|
+
};
|
|
627
|
+
'credit-per-file-per-day': {
|
|
628
|
+
title: string;
|
|
629
|
+
value: string;
|
|
630
|
+
};
|
|
631
|
+
};
|
|
632
|
+
'abyss-monitor': {
|
|
633
|
+
'max-cron-task': {
|
|
634
|
+
title: string;
|
|
635
|
+
value: string;
|
|
636
|
+
};
|
|
637
|
+
'log-history-days': {
|
|
638
|
+
title: string;
|
|
639
|
+
value: string;
|
|
640
|
+
};
|
|
641
|
+
'stats-history-days': {
|
|
642
|
+
title: string;
|
|
643
|
+
value: string;
|
|
644
|
+
};
|
|
645
|
+
'max-store-entry': {
|
|
646
|
+
title: string;
|
|
647
|
+
value: string;
|
|
648
|
+
};
|
|
649
|
+
};
|
|
650
|
+
};
|
|
651
|
+
'owned-subscription-button': string;
|
|
652
|
+
'get-subscription-button': string;
|
|
653
|
+
'tooltip-storage-1': string;
|
|
654
|
+
'tooltip-storage-2': string;
|
|
655
|
+
'tooltip-storage-calculate': string;
|
|
656
|
+
'open-subscription-documentation-button': string;
|
|
657
|
+
modal: {
|
|
658
|
+
calculate: {
|
|
659
|
+
title: string;
|
|
660
|
+
fields: {
|
|
661
|
+
level: {
|
|
662
|
+
name: string;
|
|
663
|
+
helper: string;
|
|
664
|
+
};
|
|
665
|
+
'amount-file': {
|
|
666
|
+
name: string;
|
|
667
|
+
};
|
|
668
|
+
};
|
|
669
|
+
cost: string;
|
|
670
|
+
};
|
|
671
|
+
};
|
|
672
|
+
};
|
|
673
|
+
'auto-renew': string;
|
|
674
|
+
'auto-renew-tooltip': string;
|
|
675
|
+
'auto-renew-project': string;
|
|
676
|
+
};
|
|
677
|
+
'ask-financing': {
|
|
678
|
+
title: string;
|
|
679
|
+
'helper-1': string;
|
|
680
|
+
'helper-2': string;
|
|
681
|
+
'confirm-button': string;
|
|
682
|
+
};
|
|
683
|
+
};
|
|
684
|
+
applications: {
|
|
685
|
+
navigation: {
|
|
686
|
+
select: {
|
|
687
|
+
label: string;
|
|
688
|
+
};
|
|
689
|
+
menu: {
|
|
690
|
+
dashboard: string;
|
|
691
|
+
'abyss-status': string;
|
|
692
|
+
logs: string;
|
|
693
|
+
'cron-task': string;
|
|
694
|
+
stats: string;
|
|
695
|
+
endpoint: string;
|
|
696
|
+
store: string;
|
|
697
|
+
event: string;
|
|
698
|
+
'file-manager': string;
|
|
699
|
+
'webhook-manager': string;
|
|
700
|
+
documentation: string;
|
|
701
|
+
};
|
|
702
|
+
};
|
|
703
|
+
'no-application': string;
|
|
704
|
+
title: string;
|
|
705
|
+
'no-current-application': string;
|
|
706
|
+
'unable-to-activate': string;
|
|
707
|
+
'no-enabled-service': string;
|
|
708
|
+
'enabled-service': string;
|
|
709
|
+
'select-application': string;
|
|
710
|
+
'create-form': {
|
|
711
|
+
title: string;
|
|
712
|
+
'service-activation-helper': string;
|
|
713
|
+
'app-id': string;
|
|
714
|
+
fields: {
|
|
715
|
+
name: {
|
|
716
|
+
label: string;
|
|
717
|
+
};
|
|
718
|
+
description: {
|
|
719
|
+
label: string;
|
|
720
|
+
};
|
|
721
|
+
};
|
|
722
|
+
'confirm-button': string;
|
|
723
|
+
'update-confirm-button': string;
|
|
724
|
+
};
|
|
725
|
+
'info-helper': {
|
|
726
|
+
'application-id': string;
|
|
727
|
+
};
|
|
728
|
+
'new-application-button': string;
|
|
729
|
+
'new-application-helper': string;
|
|
730
|
+
settings: {
|
|
731
|
+
title: string;
|
|
732
|
+
};
|
|
733
|
+
'first-application-config': {
|
|
734
|
+
title: string;
|
|
735
|
+
'helper-question-1': string;
|
|
736
|
+
'helper-answer-1': string;
|
|
737
|
+
'helper-answer-1-bis': string;
|
|
738
|
+
'helper-monitor': {
|
|
739
|
+
title: string;
|
|
740
|
+
'helper-1': string;
|
|
741
|
+
'helper-2': string;
|
|
742
|
+
};
|
|
743
|
+
'helper-storage': {
|
|
744
|
+
title: string;
|
|
745
|
+
'helper-1': string;
|
|
746
|
+
'helper-2': string;
|
|
747
|
+
};
|
|
748
|
+
'get-more-details': string;
|
|
749
|
+
'confirm-button': string;
|
|
750
|
+
};
|
|
751
|
+
};
|
|
752
|
+
'ask-newsletter': {
|
|
753
|
+
title: string;
|
|
754
|
+
helper: string;
|
|
755
|
+
'join-button': string;
|
|
756
|
+
'helper-2': string;
|
|
757
|
+
'helper-3': string;
|
|
758
|
+
};
|
|
759
|
+
'join-newsletter': {
|
|
760
|
+
title: string;
|
|
761
|
+
helper: string;
|
|
762
|
+
'helper-2': string;
|
|
763
|
+
'profile-button': string;
|
|
764
|
+
'subscribe-confirm': string;
|
|
765
|
+
'email-field': string;
|
|
766
|
+
'join-button': string;
|
|
767
|
+
'access-application': string;
|
|
768
|
+
};
|
|
769
|
+
storage: {
|
|
770
|
+
metrics: {
|
|
771
|
+
title: string;
|
|
772
|
+
'helper-1': string;
|
|
773
|
+
'title-2': string;
|
|
774
|
+
'free-space': string;
|
|
775
|
+
'refresh-button': string;
|
|
776
|
+
'total-file': string;
|
|
777
|
+
'pre-sign-url': string;
|
|
778
|
+
'pre-sign-url-per-hour': string;
|
|
779
|
+
};
|
|
780
|
+
'preview-subscription': {
|
|
781
|
+
title: string;
|
|
782
|
+
helper: string;
|
|
783
|
+
cost: string;
|
|
784
|
+
'price-per-file': string;
|
|
785
|
+
'free-file': string;
|
|
786
|
+
tooltip: string;
|
|
787
|
+
'current-helper': string;
|
|
788
|
+
};
|
|
789
|
+
'file-manager': {
|
|
790
|
+
'update-file-custom-public-access-id-error': string;
|
|
791
|
+
'update-file-custom-public-access-id-success': string;
|
|
792
|
+
'update-file-name-error': string;
|
|
793
|
+
'update-file-name-success': string;
|
|
794
|
+
'update-file-bucket-error': string;
|
|
795
|
+
'update-file-bucket-success': string;
|
|
796
|
+
'update-tag-error': string;
|
|
797
|
+
'update-tag-success': string;
|
|
798
|
+
'update-file-password-error': string;
|
|
799
|
+
'update-file-password-success': string;
|
|
800
|
+
'unset-file-public-access-error': string;
|
|
801
|
+
'unset-file-public-access-success': string;
|
|
802
|
+
'reset-file-public-access-error': string;
|
|
803
|
+
'reset-file-public-access-success': string;
|
|
804
|
+
'delete-file-error': string;
|
|
805
|
+
'delete-file-success': string;
|
|
806
|
+
'delete-multiple-file-error': string;
|
|
807
|
+
'delete-multiple-file-success': string;
|
|
808
|
+
'upload-file-error': string;
|
|
809
|
+
'file-too-big': string;
|
|
810
|
+
'some-file-too-big': string;
|
|
811
|
+
'max-file-size': string;
|
|
812
|
+
'confirm-user-file-deletion': string;
|
|
813
|
+
'confirm-user-multiple-file-deletion': string;
|
|
814
|
+
title: string;
|
|
815
|
+
'copy-public-access-url': string;
|
|
816
|
+
'copy-custom-public-access-url': string;
|
|
817
|
+
actions: {
|
|
818
|
+
'update-bucket-helper': string;
|
|
819
|
+
'update-bucket-button': string;
|
|
820
|
+
'update-bucket-placeholder': string;
|
|
821
|
+
'delete-button-tooltip': string;
|
|
822
|
+
'update-bucket-success': string;
|
|
823
|
+
'info-created-at': string;
|
|
824
|
+
'info-updated-at': string;
|
|
825
|
+
};
|
|
826
|
+
filter: {
|
|
827
|
+
name: string;
|
|
828
|
+
id: string;
|
|
829
|
+
'public-access-id': string;
|
|
830
|
+
bucket: string;
|
|
831
|
+
tags: string;
|
|
832
|
+
};
|
|
833
|
+
fields: {
|
|
834
|
+
id: string;
|
|
835
|
+
name: string;
|
|
836
|
+
'public-access-key': string;
|
|
837
|
+
'public-access-password': string;
|
|
838
|
+
'custom-public-access-id': string;
|
|
839
|
+
size: string;
|
|
840
|
+
algorithm: string;
|
|
841
|
+
'updated-at': string;
|
|
842
|
+
'created-at': string;
|
|
843
|
+
scopes: string;
|
|
844
|
+
tags: string;
|
|
845
|
+
bucket: string;
|
|
846
|
+
};
|
|
847
|
+
bucket: {
|
|
848
|
+
title: string;
|
|
849
|
+
loading: string;
|
|
850
|
+
'helper-api': string;
|
|
851
|
+
helper: string;
|
|
852
|
+
'no-element': string;
|
|
853
|
+
'delete-button-tooltip': string;
|
|
854
|
+
'delete-bucket-error': string;
|
|
855
|
+
'delete-bucket-success': string;
|
|
856
|
+
'update-bucket-success': string;
|
|
857
|
+
'update-bucket-tooltip': string;
|
|
858
|
+
};
|
|
859
|
+
'import-button': string;
|
|
860
|
+
'import-file-button': string;
|
|
861
|
+
'import-url-button': string;
|
|
862
|
+
'import-cloud-button': string;
|
|
863
|
+
'import-collection-button': string;
|
|
864
|
+
'import-url-label': string;
|
|
865
|
+
'import-success': string;
|
|
866
|
+
thumbnail: {
|
|
867
|
+
'add-button': string;
|
|
868
|
+
title: string;
|
|
869
|
+
'delete-button': string;
|
|
870
|
+
'confirm-user-file-thumbnail-deletion': string;
|
|
871
|
+
'confirm-user-file-thumbnail-deletion-all': string;
|
|
872
|
+
'delete-file-thumbnail-error': string;
|
|
873
|
+
'generate-file-thumbnail-error': string;
|
|
874
|
+
'update-file-thumbnail-error': string;
|
|
875
|
+
'update-file-thumbnail-success': string;
|
|
876
|
+
'generate-file-thumbnail-tooltip': string;
|
|
877
|
+
'regenerate-file-thumbnail-public-access': string;
|
|
878
|
+
'copy-public-access-url': string;
|
|
879
|
+
'enable-public-access': string;
|
|
880
|
+
'disable-public-access': string;
|
|
881
|
+
'generate-button': string;
|
|
882
|
+
'delete-all-thumbnail-tooltip': string;
|
|
883
|
+
'public-access-key': string;
|
|
884
|
+
'custom-public-access-id': string;
|
|
885
|
+
'set-custom-public-access-id': string;
|
|
886
|
+
'no-thumbnail': string;
|
|
887
|
+
'no-thumbnail-helper': string;
|
|
888
|
+
resolution: string;
|
|
889
|
+
size: string;
|
|
890
|
+
'custom-public-access-id-helper': string;
|
|
891
|
+
'generate-thumbnail-modal': {
|
|
892
|
+
title: string;
|
|
893
|
+
fields: {
|
|
894
|
+
name: string;
|
|
895
|
+
'custom-public-access-id': string;
|
|
896
|
+
resolution: string;
|
|
897
|
+
resolutionX: string;
|
|
898
|
+
resolutionY: string;
|
|
899
|
+
};
|
|
900
|
+
};
|
|
901
|
+
'update-thumbnail-modal': {
|
|
902
|
+
title: string;
|
|
903
|
+
fields: {
|
|
904
|
+
name: string;
|
|
905
|
+
'custom-public-access-id': string;
|
|
906
|
+
resolutionX: string;
|
|
907
|
+
resolutionY: string;
|
|
908
|
+
};
|
|
909
|
+
};
|
|
910
|
+
};
|
|
911
|
+
};
|
|
912
|
+
'webhook-manager': {
|
|
913
|
+
title: string;
|
|
914
|
+
helper: string;
|
|
915
|
+
'helper-button': string;
|
|
916
|
+
'confirm-deletion': string;
|
|
917
|
+
'delete-webhook-error': string;
|
|
918
|
+
'update-webhook-error': string;
|
|
919
|
+
'copy-url': string;
|
|
920
|
+
'copy-secret': string;
|
|
921
|
+
'reset-secret': string;
|
|
922
|
+
'reset-secret-confirm': string;
|
|
923
|
+
fields: {
|
|
924
|
+
id: string;
|
|
925
|
+
name: string;
|
|
926
|
+
description: string;
|
|
927
|
+
'is-enabled': string;
|
|
928
|
+
'webhook-url': string;
|
|
929
|
+
'created-at': string;
|
|
930
|
+
};
|
|
931
|
+
'create-webhook-modal': {
|
|
932
|
+
title: string;
|
|
933
|
+
fields: {
|
|
934
|
+
name: string;
|
|
935
|
+
description: string;
|
|
936
|
+
'webhook-url': string;
|
|
937
|
+
'is-enabled': string;
|
|
938
|
+
};
|
|
939
|
+
};
|
|
940
|
+
history: {
|
|
941
|
+
title: string;
|
|
942
|
+
'empty-row': string;
|
|
943
|
+
loading: string;
|
|
944
|
+
fields: {
|
|
945
|
+
id: string;
|
|
946
|
+
'group-id': string;
|
|
947
|
+
type: string;
|
|
948
|
+
'response-code': string;
|
|
949
|
+
'send-at': string;
|
|
950
|
+
'created-at': string;
|
|
951
|
+
};
|
|
952
|
+
};
|
|
953
|
+
};
|
|
954
|
+
};
|
|
955
|
+
monitor: {
|
|
956
|
+
dashboard: {
|
|
957
|
+
metrics: {
|
|
958
|
+
logs: {
|
|
959
|
+
title: string;
|
|
960
|
+
};
|
|
961
|
+
stats: {
|
|
962
|
+
title: string;
|
|
963
|
+
};
|
|
964
|
+
'cron-tasks': {
|
|
965
|
+
title: string;
|
|
966
|
+
};
|
|
967
|
+
'last-stats': {
|
|
968
|
+
cpu: string;
|
|
969
|
+
ram: string;
|
|
970
|
+
};
|
|
971
|
+
};
|
|
972
|
+
};
|
|
973
|
+
'secret-publish-token': {
|
|
974
|
+
title: string;
|
|
975
|
+
'helper-1': string;
|
|
976
|
+
'helper-2': string;
|
|
977
|
+
'helper-3': string;
|
|
978
|
+
'copy-button': string;
|
|
979
|
+
'reset-button': string;
|
|
980
|
+
};
|
|
981
|
+
logs: {
|
|
982
|
+
'subscription-title': string;
|
|
983
|
+
'subscription-subheader': string;
|
|
984
|
+
'subscription-helper': string;
|
|
985
|
+
'subscription-helper-no-limit': string;
|
|
986
|
+
'subscription-helper-button': string;
|
|
987
|
+
'most-recent-error': string;
|
|
988
|
+
header: {
|
|
989
|
+
title: string;
|
|
990
|
+
cards: {
|
|
991
|
+
logs: {
|
|
992
|
+
title: string;
|
|
993
|
+
helper: string;
|
|
994
|
+
};
|
|
995
|
+
stats: {
|
|
996
|
+
title: string;
|
|
997
|
+
helper: string;
|
|
998
|
+
};
|
|
999
|
+
'cron-tasks': {
|
|
1000
|
+
title: string;
|
|
1001
|
+
helper: string;
|
|
1002
|
+
};
|
|
1003
|
+
'last-stats': {
|
|
1004
|
+
title: string;
|
|
1005
|
+
cpu: string;
|
|
1006
|
+
ram: string;
|
|
1007
|
+
};
|
|
1008
|
+
};
|
|
1009
|
+
'open-logs-button': string;
|
|
1010
|
+
'no-logs': string;
|
|
1011
|
+
'no-logs-helper': string;
|
|
1012
|
+
'setup-logs': string;
|
|
1013
|
+
};
|
|
1014
|
+
card: {
|
|
1015
|
+
'open-full-screen-button': string;
|
|
1016
|
+
'close-full-screen-button': string;
|
|
1017
|
+
'load-more': string;
|
|
1018
|
+
helper: string;
|
|
1019
|
+
filter: {
|
|
1020
|
+
message: {
|
|
1021
|
+
placeholder: string;
|
|
1022
|
+
tooltip: string;
|
|
1023
|
+
};
|
|
1024
|
+
'request-id': {
|
|
1025
|
+
placeholder: string;
|
|
1026
|
+
tooltip: string;
|
|
1027
|
+
};
|
|
1028
|
+
'process-id': {
|
|
1029
|
+
placeholder: string;
|
|
1030
|
+
tooltip: string;
|
|
1031
|
+
};
|
|
1032
|
+
level: {
|
|
1033
|
+
label: string;
|
|
1034
|
+
};
|
|
1035
|
+
title: {
|
|
1036
|
+
placeholder: string;
|
|
1037
|
+
tooltip: string;
|
|
1038
|
+
};
|
|
1039
|
+
context: {
|
|
1040
|
+
placeholder: string;
|
|
1041
|
+
tooltip: string;
|
|
1042
|
+
};
|
|
1043
|
+
scenario: {
|
|
1044
|
+
placeholder: string;
|
|
1045
|
+
tooltip: string;
|
|
1046
|
+
};
|
|
1047
|
+
'start-date': {
|
|
1048
|
+
label: string;
|
|
1049
|
+
};
|
|
1050
|
+
'end-date': {
|
|
1051
|
+
label: string;
|
|
1052
|
+
};
|
|
1053
|
+
period: {
|
|
1054
|
+
'last-7-days': string;
|
|
1055
|
+
'last-30-days': string;
|
|
1056
|
+
'last-60-days': string;
|
|
1057
|
+
'from-start-month': string;
|
|
1058
|
+
'from-start-year': string;
|
|
1059
|
+
};
|
|
1060
|
+
pagination: {
|
|
1061
|
+
increase: string;
|
|
1062
|
+
decrease: string;
|
|
1063
|
+
};
|
|
1064
|
+
'deep-search-button': string;
|
|
1065
|
+
};
|
|
1066
|
+
console: {
|
|
1067
|
+
'tooltip-api': string;
|
|
1068
|
+
'display-details-helper': string;
|
|
1069
|
+
};
|
|
1070
|
+
};
|
|
1071
|
+
details: {
|
|
1072
|
+
'not-found': string;
|
|
1073
|
+
'stack-tooltip': string;
|
|
1074
|
+
};
|
|
1075
|
+
};
|
|
1076
|
+
stats: {
|
|
1077
|
+
'subscription-title': string;
|
|
1078
|
+
'subscription-subheader': string;
|
|
1079
|
+
'subscription-helper': string;
|
|
1080
|
+
'subscription-helper-no-limit': string;
|
|
1081
|
+
'subscription-helper-button': string;
|
|
1082
|
+
'no-history': string;
|
|
1083
|
+
header: {
|
|
1084
|
+
title: string;
|
|
1085
|
+
lines: {
|
|
1086
|
+
cpu: {
|
|
1087
|
+
'text-percent': string;
|
|
1088
|
+
'text-value': string;
|
|
1089
|
+
};
|
|
1090
|
+
ram: {
|
|
1091
|
+
'text-percent': string;
|
|
1092
|
+
'text-value': string;
|
|
1093
|
+
};
|
|
1094
|
+
disk: {
|
|
1095
|
+
'text-percent': string;
|
|
1096
|
+
'text-value': string;
|
|
1097
|
+
};
|
|
1098
|
+
never: string;
|
|
1099
|
+
};
|
|
1100
|
+
'start-date': {
|
|
1101
|
+
label: string;
|
|
1102
|
+
};
|
|
1103
|
+
'end-date': {
|
|
1104
|
+
label: string;
|
|
1105
|
+
};
|
|
1106
|
+
'no-logs': string;
|
|
1107
|
+
'display-percent': string;
|
|
1108
|
+
};
|
|
1109
|
+
type: {
|
|
1110
|
+
cpu: string;
|
|
1111
|
+
ram: string;
|
|
1112
|
+
disk: string;
|
|
1113
|
+
};
|
|
1114
|
+
table: {
|
|
1115
|
+
'refresh-button': string;
|
|
1116
|
+
fields: {
|
|
1117
|
+
id: string;
|
|
1118
|
+
type: string;
|
|
1119
|
+
value: string;
|
|
1120
|
+
'percent-value': string;
|
|
1121
|
+
'process-id': string;
|
|
1122
|
+
'date-value': string;
|
|
1123
|
+
};
|
|
1124
|
+
};
|
|
1125
|
+
};
|
|
1126
|
+
'cron-task': {
|
|
1127
|
+
title: string;
|
|
1128
|
+
subtitle: string;
|
|
1129
|
+
'info-box': string;
|
|
1130
|
+
helper: string;
|
|
1131
|
+
'helper-button': string;
|
|
1132
|
+
'no-cron-task': string;
|
|
1133
|
+
'open-create-modal': string;
|
|
1134
|
+
'trigger-button': string;
|
|
1135
|
+
'creation-modal': {
|
|
1136
|
+
title: string;
|
|
1137
|
+
helper: string;
|
|
1138
|
+
fields: {
|
|
1139
|
+
name: string;
|
|
1140
|
+
description: string;
|
|
1141
|
+
'webhook-url': string;
|
|
1142
|
+
'schedule-configuration': string;
|
|
1143
|
+
'is-active': string;
|
|
1144
|
+
};
|
|
1145
|
+
};
|
|
1146
|
+
card: {
|
|
1147
|
+
'created-at': string;
|
|
1148
|
+
destination: string;
|
|
1149
|
+
state: string;
|
|
1150
|
+
menu: {
|
|
1151
|
+
'copy-secret': string;
|
|
1152
|
+
'reset-secret': string;
|
|
1153
|
+
};
|
|
1154
|
+
tooltips: {
|
|
1155
|
+
run: string;
|
|
1156
|
+
delete: string;
|
|
1157
|
+
edit: string;
|
|
1158
|
+
details: string;
|
|
1159
|
+
};
|
|
1160
|
+
};
|
|
1161
|
+
details: {
|
|
1162
|
+
'history-title': string;
|
|
1163
|
+
fields: {
|
|
1164
|
+
id: string;
|
|
1165
|
+
'start-date': string;
|
|
1166
|
+
'request-id': string;
|
|
1167
|
+
status: string;
|
|
1168
|
+
date: string;
|
|
1169
|
+
};
|
|
1170
|
+
};
|
|
1171
|
+
'limit-cron-task': string;
|
|
1172
|
+
'helper-subscription': string;
|
|
1173
|
+
'helper-no-cron-task-subscription': string;
|
|
1174
|
+
};
|
|
1175
|
+
store: {
|
|
1176
|
+
title: string;
|
|
1177
|
+
helper: string;
|
|
1178
|
+
'open-create-modal': string;
|
|
1179
|
+
'creation-modal': {
|
|
1180
|
+
title: string;
|
|
1181
|
+
fields: {
|
|
1182
|
+
name: string;
|
|
1183
|
+
value: string;
|
|
1184
|
+
'expire-at': string;
|
|
1185
|
+
'is-active': string;
|
|
1186
|
+
slug: string;
|
|
1187
|
+
};
|
|
1188
|
+
'error-slug-already-exist': string;
|
|
1189
|
+
};
|
|
1190
|
+
table: {
|
|
1191
|
+
'filter-title': string;
|
|
1192
|
+
filter: {
|
|
1193
|
+
id: string;
|
|
1194
|
+
name: string;
|
|
1195
|
+
slug: string;
|
|
1196
|
+
};
|
|
1197
|
+
fields: {
|
|
1198
|
+
id: string;
|
|
1199
|
+
name: string;
|
|
1200
|
+
value: string;
|
|
1201
|
+
'expire-at': string;
|
|
1202
|
+
'count-access': string;
|
|
1203
|
+
slug: string;
|
|
1204
|
+
'is-active': string;
|
|
1205
|
+
active: string;
|
|
1206
|
+
inactive: string;
|
|
1207
|
+
'updated-at': string;
|
|
1208
|
+
'created-at': string;
|
|
1209
|
+
};
|
|
1210
|
+
'tooltip-copy-id': string;
|
|
1211
|
+
};
|
|
1212
|
+
'confirm-deletion': string;
|
|
1213
|
+
};
|
|
1214
|
+
endpoint: {
|
|
1215
|
+
'endpoint-history': string;
|
|
1216
|
+
fields: {
|
|
1217
|
+
'request-id': string;
|
|
1218
|
+
method: string;
|
|
1219
|
+
controller: string;
|
|
1220
|
+
route: string;
|
|
1221
|
+
'response-code': string;
|
|
1222
|
+
'response-time': string;
|
|
1223
|
+
date: string;
|
|
1224
|
+
};
|
|
1225
|
+
header: {
|
|
1226
|
+
cards: {
|
|
1227
|
+
request: {
|
|
1228
|
+
title: string;
|
|
1229
|
+
helper: string;
|
|
1230
|
+
};
|
|
1231
|
+
'server-error': {
|
|
1232
|
+
title: string;
|
|
1233
|
+
helper: string;
|
|
1234
|
+
};
|
|
1235
|
+
'response-time': {
|
|
1236
|
+
title: string;
|
|
1237
|
+
helper: string;
|
|
1238
|
+
};
|
|
1239
|
+
upload: {
|
|
1240
|
+
title: string;
|
|
1241
|
+
helper: string;
|
|
1242
|
+
tooltip: string;
|
|
1243
|
+
};
|
|
1244
|
+
download: {
|
|
1245
|
+
title: string;
|
|
1246
|
+
helper: string;
|
|
1247
|
+
tooltip: string;
|
|
1248
|
+
};
|
|
1249
|
+
};
|
|
1250
|
+
'open-logs-button': string;
|
|
1251
|
+
'no-logs': string;
|
|
1252
|
+
'setup-logs': string;
|
|
1253
|
+
labels: {
|
|
1254
|
+
informational: string;
|
|
1255
|
+
successful: string;
|
|
1256
|
+
redirection: string;
|
|
1257
|
+
'client-error': string;
|
|
1258
|
+
'server-error': string;
|
|
1259
|
+
'average-response-time': string;
|
|
1260
|
+
upload: string;
|
|
1261
|
+
download: string;
|
|
1262
|
+
};
|
|
1263
|
+
'graph-title': string;
|
|
1264
|
+
};
|
|
1265
|
+
'slower-endpoint': {
|
|
1266
|
+
title: string;
|
|
1267
|
+
fields: {
|
|
1268
|
+
method: string;
|
|
1269
|
+
controller: string;
|
|
1270
|
+
route: string;
|
|
1271
|
+
'response-time-average': string;
|
|
1272
|
+
'response-time-max': string;
|
|
1273
|
+
'response-time-min': string;
|
|
1274
|
+
count: string;
|
|
1275
|
+
};
|
|
1276
|
+
};
|
|
1277
|
+
'endpoint-log': {
|
|
1278
|
+
title: string;
|
|
1279
|
+
};
|
|
1280
|
+
};
|
|
1281
|
+
events: {
|
|
1282
|
+
'subscription-title': string;
|
|
1283
|
+
'subscription-subheader': string;
|
|
1284
|
+
'subscription-helper': string;
|
|
1285
|
+
'subscription-helper-2': string;
|
|
1286
|
+
'subscription-helper-no-limit': string;
|
|
1287
|
+
'metrics-card': {
|
|
1288
|
+
'total-events': {
|
|
1289
|
+
title: string;
|
|
1290
|
+
subtitle: string;
|
|
1291
|
+
};
|
|
1292
|
+
'total-error': {
|
|
1293
|
+
title: string;
|
|
1294
|
+
subtitle: string;
|
|
1295
|
+
};
|
|
1296
|
+
};
|
|
1297
|
+
'graph-stacked-events': {
|
|
1298
|
+
title: string;
|
|
1299
|
+
};
|
|
1300
|
+
table: {
|
|
1301
|
+
title: string;
|
|
1302
|
+
filters: {
|
|
1303
|
+
event: string;
|
|
1304
|
+
};
|
|
1305
|
+
fields: {
|
|
1306
|
+
id: string;
|
|
1307
|
+
event: string;
|
|
1308
|
+
level: string;
|
|
1309
|
+
message: string;
|
|
1310
|
+
'created-at': string;
|
|
1311
|
+
actions: {
|
|
1312
|
+
'see-log': string;
|
|
1313
|
+
delete: string;
|
|
1314
|
+
'delete-success': string;
|
|
1315
|
+
'delete-error': string;
|
|
1316
|
+
};
|
|
1317
|
+
};
|
|
1318
|
+
};
|
|
1319
|
+
'tree-graph': {
|
|
1320
|
+
title: string;
|
|
1321
|
+
'no-events': string;
|
|
1322
|
+
'no-events-helper': string;
|
|
1323
|
+
attributes: {
|
|
1324
|
+
events: string;
|
|
1325
|
+
};
|
|
1326
|
+
};
|
|
1327
|
+
};
|
|
1328
|
+
onboarding: {
|
|
1329
|
+
stepper: {
|
|
1330
|
+
title: string;
|
|
1331
|
+
helper: string;
|
|
1332
|
+
tooltip: string;
|
|
1333
|
+
'create-application': {
|
|
1334
|
+
title: string;
|
|
1335
|
+
cta: string;
|
|
1336
|
+
};
|
|
1337
|
+
'send-logs': {
|
|
1338
|
+
title: string;
|
|
1339
|
+
cta: string;
|
|
1340
|
+
};
|
|
1341
|
+
'send-stats': {
|
|
1342
|
+
title: string;
|
|
1343
|
+
cta: string;
|
|
1344
|
+
};
|
|
1345
|
+
'create-cron-task': {
|
|
1346
|
+
title: string;
|
|
1347
|
+
cta: string;
|
|
1348
|
+
};
|
|
1349
|
+
};
|
|
1350
|
+
};
|
|
1351
|
+
'no-history': string;
|
|
1352
|
+
};
|
|
1353
|
+
permission: {
|
|
1354
|
+
'no-permission': string;
|
|
1355
|
+
'no-permission-redirect': string;
|
|
1356
|
+
};
|
|
1357
|
+
'import-external': {
|
|
1358
|
+
modal: {
|
|
1359
|
+
title: string;
|
|
1360
|
+
placeholder: string;
|
|
1361
|
+
};
|
|
1362
|
+
};
|
|
1363
|
+
'import-cloud': {
|
|
1364
|
+
'open-modal-button': string;
|
|
1365
|
+
modal: {
|
|
1366
|
+
title: string;
|
|
1367
|
+
loading: string;
|
|
1368
|
+
'service-not-enabled': string;
|
|
1369
|
+
'service-not-enabled-description': string;
|
|
1370
|
+
'enable-service-button': string;
|
|
1371
|
+
'no-cloud-available': string;
|
|
1372
|
+
'too-big-filtered-file': string;
|
|
1373
|
+
'import-button': string;
|
|
1374
|
+
'create-cloud': {
|
|
1375
|
+
title: string;
|
|
1376
|
+
fields: {
|
|
1377
|
+
name: {
|
|
1378
|
+
label: string;
|
|
1379
|
+
placeholder: string;
|
|
1380
|
+
};
|
|
1381
|
+
};
|
|
1382
|
+
'create-cloud-button': string;
|
|
1383
|
+
};
|
|
1384
|
+
};
|
|
1385
|
+
};
|
|
1386
|
+
'save-cloud': {
|
|
1387
|
+
modal: {
|
|
1388
|
+
title: string;
|
|
1389
|
+
'import-button': string;
|
|
1390
|
+
'success-toast': string;
|
|
1391
|
+
'no-space-toast': string;
|
|
1392
|
+
};
|
|
1393
|
+
};
|
|
1394
|
+
};
|
|
1395
|
+
'main-dashboard': {
|
|
1396
|
+
'welcome-message': string;
|
|
1397
|
+
'user-creation': string;
|
|
1398
|
+
'help-button': string;
|
|
1399
|
+
'collection-button': string;
|
|
1400
|
+
'tag-new': string;
|
|
1401
|
+
'helper-free': string;
|
|
1402
|
+
'quick-actions': {
|
|
1403
|
+
title: string;
|
|
1404
|
+
'create-form': string;
|
|
1405
|
+
'create-project': string;
|
|
1406
|
+
'create-spotlight': string;
|
|
1407
|
+
};
|
|
1408
|
+
'cloud-usage-metrics': {
|
|
1409
|
+
title: string;
|
|
1410
|
+
'count-files': string;
|
|
1411
|
+
'pending-share': string;
|
|
1412
|
+
};
|
|
1413
|
+
projects: {
|
|
1414
|
+
title: string;
|
|
1415
|
+
'create-first-project': string;
|
|
1416
|
+
applications: string;
|
|
1417
|
+
'see-all-projects': string;
|
|
1418
|
+
'no-description': string;
|
|
1419
|
+
loading: string;
|
|
1420
|
+
invitations: {
|
|
1421
|
+
title: string;
|
|
1422
|
+
helper: string;
|
|
1423
|
+
tooltip: {
|
|
1424
|
+
leave: string;
|
|
1425
|
+
confirm: string;
|
|
1426
|
+
decline: string;
|
|
1427
|
+
};
|
|
1428
|
+
};
|
|
1429
|
+
};
|
|
1430
|
+
'performances-metrics': {
|
|
1431
|
+
projects: {
|
|
1432
|
+
title: string;
|
|
1433
|
+
'count-applications': string;
|
|
1434
|
+
};
|
|
1435
|
+
'abyss-cloud': {
|
|
1436
|
+
'max-size': string;
|
|
1437
|
+
};
|
|
1438
|
+
'abyss-banking': {
|
|
1439
|
+
title: string;
|
|
1440
|
+
'total-bank-accounts': string;
|
|
1441
|
+
'display-balance': string;
|
|
1442
|
+
'hide-balance': string;
|
|
1443
|
+
};
|
|
1444
|
+
'abyss-form': {
|
|
1445
|
+
'total-forms': string;
|
|
1446
|
+
'total-submissions': string;
|
|
1447
|
+
};
|
|
1448
|
+
};
|
|
1449
|
+
credit: {
|
|
1450
|
+
title: string;
|
|
1451
|
+
};
|
|
1452
|
+
};
|
|
1453
|
+
'project-dashboard': {
|
|
1454
|
+
cards: {
|
|
1455
|
+
applications: {
|
|
1456
|
+
title: string;
|
|
1457
|
+
helper: string;
|
|
1458
|
+
};
|
|
1459
|
+
logs: {
|
|
1460
|
+
title: string;
|
|
1461
|
+
helper: string;
|
|
1462
|
+
};
|
|
1463
|
+
files: {
|
|
1464
|
+
title: string;
|
|
1465
|
+
};
|
|
1466
|
+
creation: {
|
|
1467
|
+
title: string;
|
|
1468
|
+
helper: string;
|
|
1469
|
+
};
|
|
1470
|
+
};
|
|
1471
|
+
'storage-usage': {
|
|
1472
|
+
title: string;
|
|
1473
|
+
free: string;
|
|
1474
|
+
};
|
|
1475
|
+
'monitor-usage': {
|
|
1476
|
+
title: string;
|
|
1477
|
+
logs: string;
|
|
1478
|
+
endpoints: string;
|
|
1479
|
+
};
|
|
1480
|
+
'no-application': string;
|
|
1481
|
+
'add-application-button': string;
|
|
1482
|
+
'no-data': string;
|
|
1483
|
+
'spotlight-project': {
|
|
1484
|
+
title: string;
|
|
1485
|
+
'no-spotlight': string;
|
|
1486
|
+
'no-spotlight-helper': string;
|
|
1487
|
+
helper: string;
|
|
1488
|
+
'create-presentation-button': string;
|
|
1489
|
+
'link-to-application': string;
|
|
1490
|
+
'not-linked-to-application': string;
|
|
1491
|
+
};
|
|
1492
|
+
};
|
|
1493
|
+
subscription: {
|
|
1494
|
+
storage: {
|
|
1495
|
+
'pre-signed-url': string;
|
|
1496
|
+
'free-file-per-day-1': string;
|
|
1497
|
+
'free-file-per-day-2': string;
|
|
1498
|
+
'daily-file-cost-1': string;
|
|
1499
|
+
'daily-file-cost-2': string;
|
|
1500
|
+
'increase-free-file-per-day-button': string;
|
|
1501
|
+
'decrease-daily-file-cost': string;
|
|
1502
|
+
'max-storage-size': string;
|
|
1503
|
+
'max-file-size': string;
|
|
1504
|
+
'max-thumbnail-per-file': string;
|
|
1505
|
+
};
|
|
1506
|
+
monitor: {
|
|
1507
|
+
'max-store-entry': string;
|
|
1508
|
+
'max-cron-task': string;
|
|
1509
|
+
};
|
|
1510
|
+
};
|
|
1511
|
+
collection: {
|
|
1512
|
+
'info-box': {
|
|
1513
|
+
'helper-1': string;
|
|
1514
|
+
'helper-2': string;
|
|
1515
|
+
extra: string;
|
|
1516
|
+
'helper-source': string;
|
|
1517
|
+
'save-modal': {
|
|
1518
|
+
title: string;
|
|
1519
|
+
'download-button': string;
|
|
1520
|
+
'save-cloud-button': string;
|
|
1521
|
+
};
|
|
1522
|
+
};
|
|
1523
|
+
};
|
|
1524
|
+
transactions: {
|
|
1525
|
+
'gift-code': string;
|
|
1526
|
+
'subscription-create': string;
|
|
1527
|
+
'subscription-renew': string;
|
|
1528
|
+
'subscription-upgrade': string;
|
|
1529
|
+
'subscription-downgrade': string;
|
|
1530
|
+
'subscription-refund': string;
|
|
1531
|
+
other: string;
|
|
1532
|
+
'signup-sponsor': string;
|
|
1533
|
+
'signup-sponsored': string;
|
|
1534
|
+
'credit-purchase': string;
|
|
1535
|
+
'credit-purchase-refund': string;
|
|
1536
|
+
};
|
|
1537
|
+
modal: {
|
|
1538
|
+
confirm: string;
|
|
1539
|
+
save: string;
|
|
1540
|
+
cancel: string;
|
|
1541
|
+
'confirm-modal': {
|
|
1542
|
+
title: string;
|
|
1543
|
+
};
|
|
1544
|
+
'outside-app-redirection-modal': {
|
|
1545
|
+
title: string;
|
|
1546
|
+
description: string;
|
|
1547
|
+
'information-alert': string;
|
|
1548
|
+
question: string;
|
|
1549
|
+
confirm: string;
|
|
1550
|
+
cancel: string;
|
|
1551
|
+
};
|
|
1552
|
+
};
|
|
1553
|
+
};
|
|
1554
|
+
export default _default;
|