@abtnode/ux 1.15.17 → 1.16.0-beta-b16cb035

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.
Files changed (154) hide show
  1. package/lib/actions.js +111 -0
  2. package/lib/blocklet/access/config-access.js +303 -0
  3. package/lib/blocklet/access/index.js +221 -0
  4. package/lib/blocklet/actions.js +438 -0
  5. package/lib/blocklet/add-cert.js +191 -0
  6. package/lib/blocklet/agreement-app.js +30 -0
  7. package/lib/blocklet/agreement.js +72 -0
  8. package/lib/blocklet/app-avatar.js +74 -0
  9. package/lib/blocklet/audit-logs.js +197 -0
  10. package/lib/blocklet/blocklet-source.js +56 -0
  11. package/lib/blocklet/bundle-avatar.js +80 -0
  12. package/lib/blocklet/component/add.js +1063 -0
  13. package/lib/blocklet/component/configuration.js +124 -0
  14. package/lib/blocklet/component/delete.js +117 -0
  15. package/lib/blocklet/component/environment.js +289 -0
  16. package/lib/blocklet/component/expiration.js +53 -0
  17. package/lib/blocklet/component/index.js +804 -0
  18. package/lib/blocklet/component/line.js +28 -0
  19. package/lib/blocklet/component/navigation/locale-tabs.js +218 -0
  20. package/lib/blocklet/component/navigation/navigation-actions.js +120 -0
  21. package/lib/blocklet/component/navigation/navigation-dialog.js +620 -0
  22. package/lib/blocklet/component/navigation/navigation-preview.js +102 -0
  23. package/lib/blocklet/component/navigation/simple-select.js +131 -0
  24. package/lib/blocklet/component/select-store.js +153 -0
  25. package/lib/blocklet/component/setting.js +151 -0
  26. package/lib/blocklet/component/sortable-tree.js +138 -0
  27. package/lib/blocklet/component/space-gateway-selector.js +174 -0
  28. package/lib/blocklet/component/store-blocklet-list.js +205 -0
  29. package/lib/blocklet/config-navigation.js +344 -0
  30. package/lib/blocklet/configuration.js +574 -0
  31. package/lib/blocklet/disk-info.js +91 -0
  32. package/lib/blocklet/icons.js +26 -0
  33. package/lib/blocklet/install-from-url.js +347 -0
  34. package/lib/blocklet/log.js +62 -0
  35. package/lib/blocklet/migration.js +153 -0
  36. package/lib/blocklet/mode.js +35 -0
  37. package/lib/blocklet/monitor.js +186 -0
  38. package/lib/blocklet/overview.js +236 -0
  39. package/lib/blocklet/preferences/app-sk.js +131 -0
  40. package/lib/blocklet/preferences/index.js +238 -0
  41. package/lib/blocklet/preferences/wallet-type.js +107 -0
  42. package/lib/blocklet/purchase/common.js +103 -0
  43. package/lib/blocklet/purchase/component-purchase.js +253 -0
  44. package/lib/blocklet/purchase/index.js +13 -0
  45. package/lib/blocklet/router/action/add-domain-alias.js +173 -0
  46. package/lib/blocklet/router/action/add-rule.js +204 -0
  47. package/lib/blocklet/router/action/config-routing-rule.js +129 -0
  48. package/lib/blocklet/router/action/delete-domain-alias.js +107 -0
  49. package/lib/blocklet/router/action/delete-rule.js +114 -0
  50. package/lib/blocklet/router/action/update-rule.js +203 -0
  51. package/lib/blocklet/router/domain-actions.js +71 -0
  52. package/lib/blocklet/router/domain-status.js +96 -0
  53. package/lib/blocklet/router/rule-actions.js +77 -0
  54. package/lib/blocklet/router/rule-list.js +181 -0
  55. package/lib/blocklet/router/util.js +146 -0
  56. package/lib/blocklet/runtime-info.js +87 -0
  57. package/lib/blocklet/status.js +105 -0
  58. package/lib/blocklet/storage.js +322 -0
  59. package/lib/blocklet/types.js +25 -0
  60. package/lib/blocklet/util.js +213 -0
  61. package/lib/blocklet/version.js +156 -0
  62. package/lib/card-selector.js +109 -0
  63. package/lib/certificate.js +110 -0
  64. package/lib/click-to-copy.js +38 -0
  65. package/lib/confirm.js +149 -0
  66. package/lib/contexts/audit-log.js +141 -0
  67. package/lib/contexts/blocklet.js +19 -0
  68. package/lib/contexts/deleting-blocklets.js +78 -0
  69. package/lib/contexts/node.js +30 -0
  70. package/lib/contexts/session.js +20 -0
  71. package/lib/contexts/team.js +19 -0
  72. package/lib/delete-confirm.js +127 -0
  73. package/lib/did-address.js +77 -0
  74. package/lib/dot.js +18 -0
  75. package/lib/form/form-text-input.js +266 -0
  76. package/lib/form/form-wrapper.js +13 -0
  77. package/lib/form/required.js +13 -0
  78. package/lib/hooks/blocklet.js +231 -0
  79. package/lib/hooks/mobile-width.js +19 -0
  80. package/lib/hooks/url-evaluation.js +168 -0
  81. package/lib/hooks/use-app-logo.js +25 -0
  82. package/lib/hooks/use-bundle-logo.js +36 -0
  83. package/lib/hooks/use-navigation.js +355 -0
  84. package/lib/hooks/use-passport-id.js +21 -0
  85. package/lib/hooks/use-subscription.js +28 -0
  86. package/lib/icons/long-arrow.svg +5 -0
  87. package/lib/index.js +0 -3
  88. package/lib/invitation/invitation-app.js +51 -0
  89. package/lib/invitation/invitation-login.js +47 -0
  90. package/lib/invitation/invitation-passport.js +130 -0
  91. package/lib/invitation/invitation-receive.js +108 -0
  92. package/lib/invitation/invitation-success.js +82 -0
  93. package/lib/invitation/invitation-user.js +79 -0
  94. package/lib/invitation/invitation.js +80 -0
  95. package/lib/issue-passport.js +84 -84
  96. package/lib/launch-blocklet/content-layout.js +33 -0
  97. package/lib/launch-blocklet/page-header.js +38 -0
  98. package/lib/layout/addon.js +100 -0
  99. package/lib/layout/feedback.js +55 -0
  100. package/lib/locales/en.js +1221 -10
  101. package/lib/locales/index.js +3 -4
  102. package/lib/locales/zh.js +1232 -15
  103. package/lib/logs/clock.js +19 -0
  104. package/lib/logs/download.js +139 -0
  105. package/lib/logs/log-terminal.js +183 -0
  106. package/lib/lost-passport.js +191 -195
  107. package/lib/monitor/card.js +73 -0
  108. package/lib/monitor/cpu.js +109 -0
  109. package/lib/monitor/disk.js +122 -0
  110. package/lib/monitor/memory.js +144 -0
  111. package/lib/nav-logo.js +120 -0
  112. package/lib/passport-tag.js +43 -0
  113. package/lib/permission.js +70 -0
  114. package/lib/relative-time.js +61 -0
  115. package/lib/schema-form/color-input.js +105 -0
  116. package/lib/schema-form/common-prop-types.js +21 -0
  117. package/lib/schema-form/index.js +229 -0
  118. package/lib/schema-form/passport-input.js +66 -0
  119. package/lib/schema-form/text-input.js +72 -0
  120. package/lib/store/add.js +185 -0
  121. package/lib/store/delete.js +102 -0
  122. package/lib/store/item.js +84 -0
  123. package/lib/table-icons.js +42 -0
  124. package/lib/table.js +13 -0
  125. package/lib/tag.js +37 -0
  126. package/lib/team/members/actions.js +99 -0
  127. package/lib/team/members/index.js +503 -0
  128. package/lib/team/members/invitations.js +196 -0
  129. package/lib/team/members/invite-member.js +212 -0
  130. package/lib/team/members/issue-passport.js +155 -0
  131. package/lib/team/members/member.js +300 -0
  132. package/lib/team/members/passport-issuances.js +154 -0
  133. package/lib/team/members/passports.js +336 -0
  134. package/lib/team/members/toggle-user-approval.js +128 -0
  135. package/lib/team/members/transfer-node.js +262 -0
  136. package/lib/team/members/util.js +20 -0
  137. package/lib/team/passports/color.js +132 -0
  138. package/lib/team/passports/detail.js +271 -0
  139. package/lib/team/passports/index.js +233 -0
  140. package/lib/team/passports/mutate-role.js +204 -0
  141. package/lib/team/passports/trusted-issuer.js +297 -0
  142. package/lib/team/passports/trusted-issuers.js +240 -0
  143. package/lib/team/search-input.js +38 -0
  144. package/lib/team/styles/dialog.js +13 -0
  145. package/lib/team/styles/list-header.js +13 -0
  146. package/lib/toast.js +86 -0
  147. package/lib/util/api.js +21 -0
  148. package/lib/util/constants.js +10 -0
  149. package/lib/util/index.js +703 -0
  150. package/lib/util/locales.js +28 -0
  151. package/lib/util/mode.js +11 -0
  152. package/lib/who-can-access/config.js +46 -0
  153. package/lib/wrap-locale.js +12 -13
  154. package/package.json +69 -17
package/lib/locales/en.js CHANGED
@@ -1,9 +1,1136 @@
1
1
  "use strict";
2
2
 
3
- /* eslint-disable import/no-extraneous-dependencies */
4
- const flat = require('flat');
5
-
6
- module.exports = flat({
3
+ module.exports = {
4
+ setup: {
5
+ connect: {
6
+ title: 'Signature Required',
7
+ scan: 'Connect your DID Wallet to become the owner of this server',
8
+ confirm: 'Review this operation on your DID Wallet',
9
+ success: 'Your account is connected to this server'
10
+ },
11
+ keyPair: {
12
+ title: 'Derived KeyPair Required',
13
+ scan: 'Connect your DID Wallet to generate a key-pair for this app',
14
+ confirm: 'Review this operation on your DID Wallet',
15
+ success: 'Your key pair is securely stored'
16
+ },
17
+ verify: {
18
+ title: 'Ownership Credential Required',
19
+ scan: 'Connect your DID Wallet to provide ownership credentials',
20
+ confirm: 'Review this operation on your DID Wallet',
21
+ success: 'Your account is connected to this server'
22
+ },
23
+ accept: {
24
+ title: 'Accepting server require ownership certificates',
25
+ scan: 'Connect your DID Wallet to provide ownership credentials',
26
+ confirm: 'Review this operation on your DID Wallet',
27
+ success: 'Your account is connected to this server'
28
+ },
29
+ title: 'Setup Blocklet Server',
30
+ steps: {
31
+ eula: 'End User License Agreement',
32
+ eulaFooter: 'I have read and agreed to the terms of the EULA',
33
+ connect: 'Connect Owner DID Wallet',
34
+ verify: 'Verify Ownership',
35
+ basicSettings: 'Basic Settings',
36
+ launchApp: 'Launch Application',
37
+ complete: 'Complete'
38
+ },
39
+ congratulation: 'Congratulations! Your Blocklet Server is secure and ready to use',
40
+ redirectButton: 'Take me to dashboard!'
41
+ },
42
+ login: {
43
+ loginTo: 'Connect to',
44
+ description: 'Only server owner and approved members can access the dashboard',
45
+ dialog: {
46
+ title: 'Connect DID Wallet',
47
+ scan: 'Connect your DID Wallet to provide passport',
48
+ confirm: 'Confirm on your DID Wallet',
49
+ success: 'You are successfully connected'
50
+ }
51
+ },
52
+ acceptServer: {
53
+ title: 'Claim Server with Ownership NFT',
54
+ tooltip: 'If you received a server ownership nft, you can claim your owner passport with this link.'
55
+ },
56
+ sidebar: {
57
+ dashboard: 'Dashboard',
58
+ blocklets: 'Blocklets',
59
+ console: 'Console',
60
+ settings: 'Settings'
61
+ },
62
+ system: {
63
+ total: 'Total',
64
+ used: 'Used',
65
+ free: 'Free',
66
+ cores: 'Number of cores',
67
+ instances: 'Number of instances'
68
+ },
69
+ common: {
70
+ about: 'About',
71
+ access: 'Access',
72
+ accessKey: 'Access Keys',
73
+ action: 'Action',
74
+ actions: 'Actions',
75
+ add: 'Add',
76
+ address: 'Address',
77
+ afterTime: 'After {time}',
78
+ allow: 'Allow',
79
+ alreadyExist: 'already exists',
80
+ approve: 'Approve',
81
+ approved: 'approved',
82
+ auditLogs: 'Audit Trail',
83
+ author: 'Author',
84
+ avatar: 'Avatar',
85
+ back: 'Back',
86
+ basic: 'Basic',
87
+ basicInfo: 'Basic Information',
88
+ bind: 'Bind',
89
+ blocklet: 'Blocklet',
90
+ blocklets: 'Blocklets',
91
+ blockletsStorage: 'Blocklets Storage',
92
+ cacheStorage: 'Cache Storage',
93
+ cancel: 'Cancel',
94
+ certificate: 'certificate',
95
+ category: 'Log Topic',
96
+ click: 'Click to copy',
97
+ close: 'Close',
98
+ collapseAll: 'Collapse All',
99
+ community: 'Community',
100
+ complete: 'Complete',
101
+ componentBasicInfo: 'Component Basic Information',
102
+ components: 'Components',
103
+ config: 'Configure',
104
+ configuration: 'Configuration',
105
+ configNavigation: 'Navigation',
106
+ configSuccess: 'Config successfully',
107
+ confirm: 'Confirm',
108
+ connect: 'Connect',
109
+ console: 'Console',
110
+ continueWith: 'Continue With',
111
+ copiedTip: 'Copied',
112
+ copyTip: 'Click To Copy',
113
+ coreStorage: 'Core Storage',
114
+ cpu: 'CPU',
115
+ create: 'Create',
116
+ createSuccess: 'Create Access Key',
117
+ created: 'Created At',
118
+ createdAt: 'Created At',
119
+ createdBy: 'Created By',
120
+ dAddress: 'Decentralized Identifiers (DID)',
121
+ dataStorage: 'Data Storage',
122
+ delConfirm: 'Delete',
123
+ delConfirmDescription: 'Confirm delete?',
124
+ delete: 'Delete',
125
+ dependents: 'Dependents',
126
+ description: 'Description',
127
+ detail: 'Detail',
128
+ did: 'DID',
129
+ disk: 'Disk',
130
+ diskInfo: 'Disk Info',
131
+ docker: 'IS Docker',
132
+ documentation: 'Documentation',
133
+ domain: 'Domain',
134
+ downgradeTo: 'Downgrade to',
135
+ download: 'Download',
136
+ downloading: 'Downloading',
137
+ edit: 'Edit',
138
+ email: 'Email',
139
+ empty: 'Empty',
140
+ emptyData: 'No results found',
141
+ enable: 'Enable',
142
+ engine: 'Engine',
143
+ env: 'Environment',
144
+ environment: 'Environment',
145
+ expandAll: 'Expand All',
146
+ expired: 'Expired',
147
+ expires: 'Expires',
148
+ export: 'Export',
149
+ externalIp: 'External IP',
150
+ failed: 'failed',
151
+ filter: 'Log Filter',
152
+ fingerprint: 'Fingerprint',
153
+ finish: 'Finish',
154
+ forbid: 'Forbid',
155
+ free: 'Free',
156
+ general: 'General',
157
+ gitpod: 'IS Gitpod',
158
+ goEULA: 'Click to view "End User License Agreement"',
159
+ group: 'Group',
160
+ image: 'IS Image',
161
+ install: 'Install',
162
+ installed: 'Installed',
163
+ installedAt: 'Installed At',
164
+ installSuccess: 'Successfully installed',
165
+ installing: 'Installing',
166
+ internalIp: 'Internal IP',
167
+ invite: 'Invite',
168
+ inviting: 'Inviting',
169
+ ip: 'IP',
170
+ isPublic: 'Public',
171
+ issue: 'Issue',
172
+ issuer: 'Issuer',
173
+ item: 'Item',
174
+ joined: 'Joined',
175
+ key: 'Key',
176
+ lastPublishedAt: 'Published At',
177
+ launcher: 'Launcher Information',
178
+ leavePageTip: 'Are you sure to leave the page?',
179
+ loading: 'loading',
180
+ log: 'View Logs',
181
+ logStorage: 'Log Storage',
182
+ login: 'Login',
183
+ logo: 'Logo',
184
+ logout: 'Logout',
185
+ logs: 'Logs',
186
+ manageTeam: 'Manage Team',
187
+ marketplace: 'Marketplace',
188
+ member: 'Member',
189
+ members: 'Members',
190
+ memory: 'Memory',
191
+ meta: 'Meta Data',
192
+ monitor: 'Monitor',
193
+ more: 'More',
194
+ mountPoint: 'MountPoint',
195
+ name: 'Name',
196
+ next: 'Next',
197
+ no: 'No',
198
+ noData: 'No records to display',
199
+ notice: 'Unexpected bad things will happen if you don’t read this!',
200
+ noticeTitle: 'Notice',
201
+ open: 'Open',
202
+ management: 'Management',
203
+ os: 'Operating System',
204
+ overview: 'Overview',
205
+ owner: 'Owner',
206
+ page404: '404 Page',
207
+ passport: 'Passport',
208
+ permission: 'Permission',
209
+ port: 'Port',
210
+ pre: 'Previous',
211
+ preferences: 'Preferences',
212
+ protected: 'Protected',
213
+ protocol: 'Protocol',
214
+ published: 'published',
215
+ purchase: 'Purchase',
216
+ redirect: 'Redirect',
217
+ redirectCode: 'Redirect Code',
218
+ redirectPermanently: 'Permanent Redirect',
219
+ redirectTemporary: 'Temporary Redirect',
220
+ redirectUrl: 'Redirect URL',
221
+ reject: 'Reject',
222
+ reload: 'Reload',
223
+ remark: 'Remark',
224
+ remove: 'Remove',
225
+ renew: 'Renew',
226
+ reportIssue: 'Report an issue',
227
+ required: 'Required',
228
+ requiredErrorText: '{name} is required',
229
+ resource: 'Resource',
230
+ restart: 'Restart',
231
+ retry: 'Retry',
232
+ revoke: 'Revoke',
233
+ role: 'Role',
234
+ running: 'running',
235
+ runtimeInfo: 'Runtime Info',
236
+ save: 'Save',
237
+ saveChanges: 'Save Changes',
238
+ saveSuccess: 'Saved successfully',
239
+ scheduleFailed: 'schedule failed',
240
+ scheduleSuccess: 'successfully scheduled',
241
+ search: 'Search',
242
+ security: 'Security',
243
+ serverDid: 'Server DID',
244
+ serverVersion: 'Server Version',
245
+ setting: 'Settings',
246
+ start: 'Start',
247
+ status: 'Status',
248
+ stop: 'Stop',
249
+ storage: 'Storage',
250
+ store: 'Store',
251
+ success: 'success',
252
+ support: 'Support',
253
+ team: 'Team',
254
+ the: 'The',
255
+ timeAgo: '{time} ago',
256
+ title: 'Title',
257
+ type: 'Type',
258
+ unavailable: 'Unavailable',
259
+ update: 'Update',
260
+ updateAvailable: 'New version {version} available',
261
+ updatedAt: 'Updated At',
262
+ updatedBy: 'Updated By',
263
+ upgrade: 'Upgrade',
264
+ upgradeTo: 'Upgrade to',
265
+ upgrading: 'Upgrading',
266
+ uptime: 'Uptime',
267
+ url: 'URL',
268
+ valid: 'Valid',
269
+ value: 'Value',
270
+ version: 'Version',
271
+ visit: 'Visit',
272
+ waiting: 'Waiting',
273
+ webhook: 'Integrations',
274
+ yes: 'Yes',
275
+ invalidParam: 'Invalid Params',
276
+ launch: 'Launch',
277
+ price: 'Price',
278
+ redirecting: 'Redirecting',
279
+ error: 'Error',
280
+ reminder: 'Reminder',
281
+ normal: 'Normal',
282
+ gateway: 'Gateway',
283
+ verifyNFT: 'Verify NFT',
284
+ errorMessage: 'Error Message:',
285
+ slugifyHint: 'The actual mount point will be: {value}'
286
+ },
287
+ blocklet: {
288
+ external: 'External',
289
+ notFound: 'Blocklet not found on this server, maybe it has been deleted',
290
+ installFromMarket: 'Install New Blocklets',
291
+ installFromUrl: 'Install From Url',
292
+ installFromCreate: 'Create Blocklet',
293
+ installedAt: 'Installed At',
294
+ internal: 'Internal',
295
+ startedAt: 'Started At',
296
+ stoppedAt: 'Stopped At',
297
+ urlEmptyTip: 'No Access URL, ',
298
+ goToAddRule: 'Go To Add',
299
+ services: 'Exposed Services',
300
+ upstreamPort: 'Upstream Port',
301
+ noService: 'No Services',
302
+ appId: 'App ID',
303
+ appPid: 'Permanent ID',
304
+ alsoKnownAs: 'Also Known As',
305
+ reloadSuccess: 'Blocklet was reloaded successfully',
306
+ statusTip: 'Blocklet is {status}',
307
+ initialUptime: 'Less than 1m',
308
+ fromUrl: {
309
+ title: 'Install Blocklet',
310
+ label: 'Blocklet Meta URL',
311
+ description: 'The URL should point to the Meta File of the Blocklet. If you need to refer to a local file, please add the file:// prefix, e.g. file:///Users/foo/blocklet.json.',
312
+ confirm: 'Install',
313
+ step0: 'Input URL',
314
+ step1: 'Confirm Meta Info',
315
+ existTipPrefix: 'Blocklet with the same DID already exists, the version is',
316
+ existTipSuffix: ', Please install a higher version.'
317
+ },
318
+ action: {
319
+ stopDescription: 'Stopping the blocklet will make its public interfaces unaccessible, which may cause end user failures',
320
+ confirmStop: 'Yes, Stop It',
321
+ cancelDownloadDescription: 'Cancel download {name} ?',
322
+ removeDescription: 'Removing the blocklet will erase code and data generated by this blocklet, which is not recoverable if you do not have any backups',
323
+ removeComponentDescription: 'Removing the component will erase code and data generated by this component, which is not recoverable if you do not have any backups',
324
+ forceRemoveDescription: 'Deleting this Blocklet will delete all data',
325
+ removeKeepData: 'Keep data for this blocklet, only remove code',
326
+ removeComponentKeepData: 'Keep data for this component, only remove code',
327
+ removeComplete: 'Remove both code and data for this blocklet',
328
+ confirmRemove: 'Yes, Remove It',
329
+ removeComponentComplete: 'Remove both code and data for this component',
330
+ confirmComponentRemove: 'Yes, Remove It',
331
+ upgradeDescription: 'Upgrading the blocklet will make it temporarily unavailable, are you sure to continue?',
332
+ confirmUpgrade: 'Yes, Upgrade It',
333
+ confirmRestart: 'Yes, Restart It',
334
+ restartDescription: 'Restarting the blocklet will temporarily suspended and may not start because of a configuration change'
335
+ },
336
+ dev: {
337
+ modeTip: 'Please switch Blocklet Server to DEBUG mode'
338
+ },
339
+ index: {
340
+ tableTitle: 'Manage Your Blocklets',
341
+ noBlocklet: 'No blocklets found in this Blocklet Server, install a blocklet from market place to start.'
342
+ },
343
+ admin: {
344
+ iframeTitle: 'Blocklet Admin Interface',
345
+ title: 'Admin Interface',
346
+ noContent: 'This blocklet does not have a admin interface',
347
+ securityError: 'SecurityError: Can not open the admin url from accessing a cross-origin frame'
348
+ },
349
+ config: {
350
+ name: 'Blocklet Name',
351
+ description: 'Blocklet Description',
352
+ sk: 'Secret key for the blocklet wallet',
353
+ logo: '(Deprecated) Logo URL or path for the blocklet',
354
+ logoSquare: 'Square logo URL or path for the blocklet (optional, default to logo from blocklet store)',
355
+ logoRect: 'Horizontal logo URL or path for the blocklet (optional)',
356
+ logoFavicon: 'favicon URL or path for the blocklet (optional, default to square logo)',
357
+ clusterSize: 'Instance count when run this blocklet in cluster mode',
358
+ deletable: {
359
+ name: 'Delete Protection',
360
+ enable: 'This blocklet can NOT currently be deleted',
361
+ disable: 'This blocklet can currently be deleted'
362
+ },
363
+ walletType: {
364
+ name: 'Wallet Type',
365
+ description: 'Blocklet instance wallet type, will change the derived DID'
366
+ },
367
+ passportColor: 'Passport Color',
368
+ appUrl: 'Blocklet URL',
369
+ access: {
370
+ title: 'Who Can Access',
371
+ description: 'Who can access the blocklet',
372
+ useDefault: 'Use default',
373
+ defaultDescription: "Use the application's default configuration",
374
+ whoCanAccess: {
375
+ all: {
376
+ title: 'Accessible to all',
377
+ description: 'Open to the world anyone can access without passport'
378
+ },
379
+ owner: {
380
+ title: 'Only me can access',
381
+ description: 'You must provide owner passport to access this application'
382
+ },
383
+ invited: {
384
+ title: 'Only invited people can access',
385
+ description: 'You can invite members later in the admin page'
386
+ }
387
+ },
388
+ publicToStore: 'Public On Store',
389
+ publicInstanceTip: 'The access address of this blocklet will be displayed in the Store (along with your DID for accepting donations)',
390
+ updatedTip: 'Access Control Modified'
391
+ },
392
+ disabledText: 'Please edit environment variables in ".env" file or "blocklet.yml" file',
393
+ changedTip: 'Configuration updated, please restart Blocklet',
394
+ missingRequired: 'Missing required configuration to start the blocklet',
395
+ gotoFix: 'Go to fix',
396
+ environment: {
397
+ key: 'Configuration key',
398
+ value: 'Configuration value',
399
+ keyValueRequired: 'Configuration key and value must be specified',
400
+ invalidKey: 'Configuration key must not start with BLOCKLET_ or COMPONENT_',
401
+ deleteForbidden: 'This configuration is required and should not be deleted',
402
+ tip: 'Configurations prefixed with BWA_ should not contain sensitive information because they will be sent to the browser'
403
+ },
404
+ dangerZone: 'Danger Zone',
405
+ blockletTypeChangeTip: 'Wallet Type will be changed to <b>{value}</b>',
406
+ appDidChangeTip: 'This operation will change the DID of the application, which will lead to the following problems. Please confirm after careful evaluation:',
407
+ appDidChangeTipL1: "The user's account connected to this application will change",
408
+ appDidChangeTipL2: 'The DID domain name of the application will change, and the original domain name will become invalid',
409
+ appSkChangeTip: 'You are changing application secret key',
410
+ walletTypeTitle: 'Update Wallet Type',
411
+ appSkTitle: 'Update Application Secret Key'
412
+ },
413
+ overview: {
414
+ source: 'Source',
415
+ deployedFrom: 'Deployed From',
416
+ accessControl: 'Access Control',
417
+ viewInStore: 'View It In Store'
418
+ },
419
+ diskInfo: {
420
+ empty: 'Disk info not available now!',
421
+ appDir: 'App Directory',
422
+ dataDir: 'Data Directory',
423
+ logDir: 'Log Directory',
424
+ cacheDir: 'Cache Directory'
425
+ },
426
+ runtimeInfo: {
427
+ noRunning: 'Runtime information will be available when blocklet is running!',
428
+ memoryUsage: 'Memory Usage',
429
+ cpuUsage: 'CPU Usage',
430
+ uptime: 'Uptime',
431
+ port: 'Port',
432
+ processId: 'Process ID'
433
+ },
434
+ dist: {
435
+ downloadLink: 'Download Link',
436
+ verify: 'Verify'
437
+ },
438
+ status: {
439
+ added: 'Added',
440
+ waiting: 'Waiting',
441
+ downloading: 'Downloading',
442
+ installing: 'Installing',
443
+ upgrading: 'Upgrading',
444
+ installed: 'Installed',
445
+ created: 'Created',
446
+ starting: 'Starting',
447
+ running: 'Running',
448
+ stopping: 'Stopping',
449
+ stopped: 'Stopped',
450
+ error: 'Error',
451
+ deleting: 'Deleting',
452
+ corrupted: 'Corrupted',
453
+ purchasing: 'Waiting for purchase',
454
+ purchased: 'Purchased',
455
+ verifying: 'Verifying purchase'
456
+ },
457
+ list: {
458
+ download: 'Download',
459
+ star: 'Star'
460
+ },
461
+ component: {
462
+ checkUpdateTitle: 'Check for Updates',
463
+ updateTitle: 'Update Components',
464
+ noUpdate: 'No components to update',
465
+ add: 'Add Component',
466
+ selectComponent: 'Select Component',
467
+ selectRegistry: 'Select Blocklet Store',
468
+ selectRegistryTip: 'You can switch blocklet store to see more components',
469
+ selectInstance: 'Select Instance',
470
+ selectInstanceTip: 'You can select an existing instance or create a new instance. Existing instances will use previously saved configuration and data',
471
+ newInstance: 'Create New Instance',
472
+ noComponent: 'No components',
473
+ mountPoint: "What's the mount point?",
474
+ mountPointTip: "If you set mount point to '/my-prefix', then all requests that begins with that mount point will be routed to the selected component",
475
+ delete: 'Delete Component',
476
+ deleteDescription: 'This component will not be accessible after deletion. Confirm delete?',
477
+ purchase: 'Payment Required',
478
+ tip: {
479
+ stopBlocklet: 'Please stop running Blocklet first',
480
+ notDynamic: 'Only dynamically added component can be removed',
481
+ requiredBy: 'The component is required by {name}'
482
+ },
483
+ choose: 'Choose',
484
+ addWithName: 'Add Component To {name}',
485
+ installingCanCloseWindowTip: 'Installing component in the background, you can safely close this window',
486
+ installSuccessTip: 'Congratulations, the component was installed successfully!',
487
+ missDownloadTokenTip: 'Cannot add paid component without valid download token',
488
+ purchaseComponentSecondCheckTip: 'Please present your blocklet purchase NFT to continue',
489
+ installComponentError: 'There was an error installing the component, please retry again',
490
+ downloadComponentError: 'There was an error downloading the component, please retry again',
491
+ addComponentTip: {
492
+ introduction: 'Welcome to the Add Component Wizard',
493
+ isFree: 'You can use <b>{name}</b> as a component for free;',
494
+ isPurchase: 'You need to Verify NFT before use <b>{name}</b> as a component;',
495
+ belowInformation: 'Below is the information for the component: ',
496
+ verifyNFT: 'Please select the Verify NFT method',
497
+ config: 'Please fill in the configuration of the component',
498
+ environment: 'Please fill in the environment of the component',
499
+ fromUrl: 'Add Component From Url'
500
+ },
501
+ addNext: 'Add {name}',
502
+ setting: 'Settings'
503
+ },
504
+ router: {
505
+ urlPath: 'URL Path',
506
+ noRunning: 'The blocklet is not currently started. Unable to access through the following address!',
507
+ securitySetting: 'Security Setting',
508
+ checkUrlAccessible: 'Check the accessibility of the address',
509
+ urlInaccessible: 'It may be due to network reasons, the address is temporarily inaccessible',
510
+ noAccessibleUrl: 'No accessible URL',
511
+ domainLockTooltip: 'The system generated Domain cannot be edited.',
512
+ urlLockTooltip: 'The system generated URL Path cannot be edited.'
513
+ },
514
+ export: {
515
+ title: 'Export Blocklet',
516
+ name: 'Bundle Name',
517
+ nameTip: 'e.g. "my-blocklet-name" or "@my-scope/blocklet-name"',
518
+ result: "What's next",
519
+ exportSource: 'Export Source',
520
+ success: 'Blocklet successfully exported',
521
+ resultTipStart: 'With',
522
+ resultTipEnd: 'you can build and publish this blocklet within minutes',
523
+ uploadedComponentTip: 'Directly uploaded components cannot be exported:'
524
+ },
525
+ migrate: {
526
+ title: 'Migrate Application',
527
+ scan: 'Connect your DID Wallet to generate a key-pair for this application',
528
+ confirm: 'Review this operation on your DID Wallet',
529
+ success: 'Your application is successfully migrated, the page will be refreshed in {sec} seconds',
530
+ intro: {
531
+ l1: 'Click here',
532
+ l2: 'to migrate your application to new version (changes are disabled before the migration completes)',
533
+ l3: '1. The application DID will be fully controlled from your DID Wallet.',
534
+ l4: '2. The application data will be migrated, and no further changes required.',
535
+ l5: '3. The new application structure will give you more flexibly when change components.',
536
+ l6: '4. Please do not change component mount points before component new version is out.'
537
+ },
538
+ tip: {
539
+ duplicate: 'Find duplicate component {name}, please delete useless components and migrate again',
540
+ running: 'Please stop blocklet before migration'
541
+ }
542
+ }
543
+ },
544
+ dashboard: {
545
+ nodeDid: 'Node',
546
+ ownerDid: 'Owner',
547
+ routingEngine: 'Routing Engine',
548
+ ownerNftURL: 'Owner NFT',
549
+ expirationLeft: 'Expiration Left',
550
+ startFromCrashTip: 'Blocklet Server did not exit normally last time, please manually start the blocklets that needs to be run.'
551
+ },
552
+ store: {
553
+ nameSort: 'Name',
554
+ popularSort: 'Popularity',
555
+ headerDescription: 'Find and Install Your Blocklets',
556
+ detail: {
557
+ purchase: 'Purchase {name}',
558
+ open: 'Open {name}',
559
+ install: 'Install {name}',
560
+ upgrade: 'Upgrade {name}',
561
+ empty: 'No introduction'
562
+ },
563
+ blockletRegistry: {
564
+ changeFailed: 'Change Blocklet Store Failed: ',
565
+ addFailed: 'Add Blocklet Store Failed: ',
566
+ editFailed: 'Edit Blocklet Store Failed: ',
567
+ switchRegistry: 'Switch Blocklet Store',
568
+ addRegistry: 'Add Blocklet Store',
569
+ editRegistry: 'Edit Blocklet Store',
570
+ deleteRegistry: 'Delete Blocklet Store',
571
+ haveSameRegistry: 'The same blocklet store exists',
572
+ registryName: 'Blocklet Store Name',
573
+ registryUrl: 'Blocklet Store URL',
574
+ registryNameEmpty: 'Blocklet Store name cannot be empty',
575
+ registryUrlEmpty: 'Blocklet store url cannot be empty',
576
+ deleteDesc: 'Confirm Delete blocklet store {name} ?<br/><span style="color: {color}">*After removing this blocklet store, you cannot update the apps installed from this blocklet store unless you add them again.</span>',
577
+ confirmDesc: 'Please input {name} to delete'
578
+ },
579
+ purchase: {
580
+ title: 'Purchase {name}',
581
+ confirmed: 'Your blocklet purchase NFT is verified',
582
+ declined: 'You do not provided valid the blocklet purchase NFT',
583
+ waiting: 'Waiting for purchase complete...',
584
+ purchase: {
585
+ title: 'Purchase NFT',
586
+ description: 'Pay some token before installing this blocklet if you have not purchased this blocklet'
587
+ },
588
+ verify: {
589
+ title: 'Verify NFT',
590
+ description: 'Your NFT will be verified before installing this blocklet if you have purchased and hold the purchase NFT in your DID Wallet',
591
+ auth: {
592
+ title: 'Purchase Credential Required',
593
+ scan: 'Connect DID Wallet to provide blocklet purchase NFT',
594
+ confirm: 'Review this operation on your DID Wallet',
595
+ success: 'Your purchase NFT is verified, and installing has started'
596
+ }
597
+ },
598
+ auth: {
599
+ title: 'Purchase {name}',
600
+ scan: 'Scan following QRCode with your DID Wallet',
601
+ confirm: 'Confirm on your DID Wallet',
602
+ success: 'Purchase NFT sent to your DID Wallet'
603
+ },
604
+ launch: 'Launch {name}',
605
+ autoLaunch: '{name} successfully purchased, redirecting to launch page...'
606
+ }
607
+ },
608
+ setting: {
609
+ saveSuccess: 'Settings Saved Successfully',
610
+ unSavedTip: 'There are unsaved changes, please click "Save Changes" to save them.',
611
+ unSavedLeaveTip: 'There are unsaved changes, are you sure to leave the page?',
612
+ form: {
613
+ name: 'Name Your Server',
614
+ nameRequired: 'Server description is required',
615
+ namePlaceholder: 'Server Name',
616
+ description: 'Describe Your Server',
617
+ descriptionHolder: 'Server Description',
618
+ descriptionRequired: 'Server description is required',
619
+ domain: 'Your Server Domain Name',
620
+ domainPlaceholder: 'Server Domain Name',
621
+ domainRequired: 'Server domain is required',
622
+ ipPlaceholder: 'IP',
623
+ ipRequired: 'IP is required',
624
+ registry: 'Blocklet Store',
625
+ registryPlaceholder: 'Blocklet store to fetch blocklets',
626
+ registryRequired: 'Blocklet store is required ',
627
+ registerUrl: 'Blocklet Launcher URL',
628
+ registerUrlPlaceholder: 'Input the URL of your preferred Blocklet Launcher, you can use the official one safely',
629
+ webWalletUrl: 'DID Wallet URL',
630
+ webWalletUrlPlaceholder: 'Please input the URL of your hosted "DID Wallet", you can use the official one safely',
631
+ enableWelcomePage: 'Enable welcome page',
632
+ welcome: {
633
+ switchLabel: 'Welcome Page'
634
+ },
635
+ upgrade: {
636
+ title: 'Upgrade Blocklet Server to v{version}',
637
+ description: 'During the upgrade, your Blocklet Server will enter maintenance mode for a few minutes while the update is completed.',
638
+ dialog: 'Click on "confirm" to install the update. Blocklet Server will enter maintenance mode until the update is completed and return to production mode automatically.',
639
+ confirm: 'Upgrade',
640
+ switchLabel: 'Auto Update Check',
641
+ setup: 'Preparing the upgrade',
642
+ installing: 'Installing Blocklet Server v{version}',
643
+ restarting: 'Restarting Blocklet Server',
644
+ cleanup: 'Migrating Blocklet Server data',
645
+ verifying: 'Verifying Blocklet Server v{version}',
646
+ rollback: 'Rollback Blocklet Server',
647
+ complete: 'Upgrade complete!',
648
+ progress: 'Upgrading Blocklet Server to v{version}',
649
+ check: 'Check for Updates',
650
+ latest: 'You are running the latest version.'
651
+ },
652
+ restart: {
653
+ title: 'Restart Blocklet Server',
654
+ description: 'During the restarting, your Blocklet Server will enter maintenance mode while the restart is completed.',
655
+ dialog: 'Click on "confirm" to restart. Blocklet Server will enter maintenance mode until the restart is completed and return to production mode automatically.',
656
+ confirm: 'Restart',
657
+ setup: 'Preparing the restart',
658
+ verifying: 'Verifying Blocklet Server',
659
+ restarting: 'Restarting Blocklet Server',
660
+ cleanup: 'Ensure everything is OK',
661
+ rollback: 'Cleanup the dirty state',
662
+ complete: 'Maintain complete!',
663
+ progress: 'Restarting Blocklet Server'
664
+ },
665
+ register: {
666
+ titleAdded: 'Added to Blocklet Launcher',
667
+ title: 'Add to Blocklet Launcher',
668
+ description: 'Once added, you can launch blocklets to this blocklet server from {url}.',
669
+ descriptionOnAdded: 'you can launch blocklets to this blocklet server from {url}.',
670
+ btn: 'Add',
671
+ update: 'Update',
672
+ added: 'Added',
673
+ addSucceed: 'Add succeed',
674
+ updateSucceed: 'Update succeed',
675
+ detecting: 'Detecting',
676
+ timeout: 'Detection timeout, please check if the blocklet launcher is started'
677
+ },
678
+ monitor: {
679
+ diskThreshold: 'Send alert when disk usage exceeds (%)',
680
+ diskThresholdPlaceholder: 'Please set the disk usage alert threshold'
681
+ }
682
+ },
683
+ accessKey: {
684
+ accessKeyId: 'ACCESS KEY',
685
+ lastUsed: 'Last Used At',
686
+ tip: 'Please enter a name for this access key for future reference:',
687
+ saveSecretTip: 'This is the only time that your Access Secret key can be viewed and cannot be recovered. However, you can create new access keys at any time',
688
+ iKnow: 'I have copied and saved the Access Secret',
689
+ showSecret: 'Show Secret Access Key',
690
+ hideSecret: 'Hide Secret',
691
+ title: 'Delete Access Key',
692
+ descriptionNoTime: 'This will permanently delete the access key {key} with name {name}, which is (never used before)',
693
+ description: 'This will permanently delete access key {key} with name {name}, which is (last used on {time}, {timeAge})',
694
+ confirm_desc: 'Please input {name} to delete',
695
+ remark: 'Access Key Name',
696
+ remarkInvalid: 'Access Key Name is required'
697
+ },
698
+ webhook: {
699
+ add: 'Add Integration',
700
+ delTitle: 'Delete Integration',
701
+ requiredError: 'Please provide a valid {type}',
702
+ confirm_desc: 'Please input {name} to delete',
703
+ test: 'Test',
704
+ description: 'This will permanently delete integration with ID {id}',
705
+ columns: {
706
+ description: 'ID',
707
+ params: 'Params',
708
+ createdAt: 'createdAt'
709
+ }
710
+ }
711
+ },
712
+ notification: {
713
+ title: 'Activities',
714
+ empty: 'No activities yet',
715
+ viewAll: 'View All',
716
+ showRead: 'Show Read',
717
+ markAllAsRead: 'Mark All as Read',
718
+ markAsRead: 'Mark As Read'
719
+ },
720
+ router: {
721
+ routerSetting: 'Domains & URLs',
722
+ certSetting: 'SSL Certificates',
723
+ defaultSite: 'Default',
724
+ urlHelperText: 'URL that do not start with HTTP/HTTPS are considered relative paths',
725
+ empty: 'Click on Actions to setup URL Mapping',
726
+ healthy: {
727
+ ok: 'Blocklet or service is running',
728
+ error: 'Blocklet or service is not running or not installed'
729
+ },
730
+ service: {
731
+ select: 'Select Blocklet Services (Optional)',
732
+ what: 'Blocklet Services are pipelines executed against the request before redirecting to upstream blocklet'
733
+ },
734
+ nonProvider: {
735
+ title: 'Engine Change Warning',
736
+ description: 'If you change engine to none, your current page may not work properly because the previous engine will be stopped, are you sure to continue?',
737
+ confirm: 'I understand, continue'
738
+ },
739
+ validation: {
740
+ urlRequired: 'URL is required',
741
+ redirectCodeRequired: 'Redirect code is required',
742
+ didRequired: 'Blocklet is required',
743
+ pathPrefixTooLong: 'The URL Prefix cannot exceed {length} characters',
744
+ pathPrefixCannotBeEmpty: 'The URL Prefix cannot be empty',
745
+ domainRequired: 'Server domain is required',
746
+ invalidUrl: 'Please provide a valid URL',
747
+ pathPrefixRequired: 'URL prefix is required',
748
+ redirectUrlRequired: 'Redirect URL is required'
749
+ },
750
+ domain: {
751
+ validate: {
752
+ emptyTip: 'Site domain cannot be empty',
753
+ suffixTip: 'Site domain cannot include {suffix}'
754
+ },
755
+ add: {
756
+ title: 'Add Site',
757
+ description: 'Please provide a valid site name address',
758
+ confirm: 'Add',
759
+ cancel: 'Cancel',
760
+ blocklet: 'Select the blocklet to handle the traffic',
761
+ redirect: 'Where to redirect the traffic?',
762
+ port: 'What port does your request handler need to listen to?',
763
+ portTip: 'This defaults to the main port of request handler, you can customize this',
764
+ type: 'Traffic Handler'
765
+ },
766
+ update: {
767
+ title: 'Update Site Domain',
768
+ label: 'Site Domain',
769
+ description: 'Please provide a valid site domain'
770
+ },
771
+ verify: {
772
+ ok: 'This site is resolved',
773
+ notResolved: 'This site neither resolved nor accessible, please check your DNS configuration'
774
+ },
775
+ https: {
776
+ ok: 'This domain has https enabled',
777
+ bad: 'This domain has not enabled https'
778
+ },
779
+ delete: {
780
+ title: 'Delete Site',
781
+ description: 'By confirming, you will delete your existing "{name}" site. Type "{name}" below and select Delete to complete the change, or select Cancel if you want to leave your site',
782
+ confirm_desc: 'Please input {name} to confirm'
783
+ }
784
+ },
785
+ domainAlias: {
786
+ add: {
787
+ title: 'Add Additional Domain',
788
+ domainDescription: 'Please provide a valid domain name',
789
+ forceTip: 'Force add if domain name already exists'
790
+ },
791
+ delete: {
792
+ title: 'Delete',
793
+ description: 'After removing a domain alias, access to that alias may not be handled properly.'
794
+ }
795
+ },
796
+ domainSecurity: {
797
+ title: 'Domain Security',
798
+ cors: {
799
+ title: 'Allowed CORS Domains',
800
+ description: 'Domain list that can send cross origin requests to {name}, comma separated, use "*" to allow anyone, which is not recommended',
801
+ domainInvalid: 'Please input a valid list of domain names'
802
+ }
803
+ },
804
+ rule: {
805
+ add: {
806
+ title: 'Add URL Mapping',
807
+ confirm: 'Add',
808
+ pathPrefix: "What's the URL Prefix?",
809
+ pathPrefixTip: "If you set prefix to '/my-prefix', then all requests that begins with that prefix will be routed to the configured blocklet",
810
+ blocklet: 'Which Blocklet will be handling those requests?',
811
+ port: 'Which port of the blocklet will be handling requests?',
812
+ portTip: 'This defaults to the main port of blocklet, if your blocklet listens on multiple ports, you can customize this'
813
+ },
814
+ delete: {
815
+ title: 'Delete URL Mapping',
816
+ description: 'By confirming, you will delete your existing "{name}" URL Mapping. Type "{name}" below and select Delete to complete the change, or select Cancel if you want to leave your URL Mapping.',
817
+ confirm_desc: 'Please input {name} to delete',
818
+ cancel: 'Cancel'
819
+ },
820
+ update: {
821
+ title: 'Update URL Mapping',
822
+ confirm: 'Yes, Update',
823
+ cancel: 'Cancel'
824
+ }
825
+ },
826
+ cert: {
827
+ name: 'Certificate Name',
828
+ domain: 'Domain Name',
829
+ action: 'Action',
830
+ commonName: 'Common Name',
831
+ boundDomains: 'Domains',
832
+ source: 'Source',
833
+ expired: 'Expired',
834
+ leftDays: ' days left',
835
+ issuedOn: 'Issued On',
836
+ expiryOn: 'Expiry On',
837
+ fingerprintAlg: 'Fingerprint Algorithm',
838
+ validityPeriod: 'Validity Period',
839
+ matchedSites: 'Matched Sites',
840
+ upload: 'Manual Upload',
841
+ publicCertHelperText: 'Public certificates can be downloaded',
842
+ nonPublicCertHelperText: 'Non-public certificates cannot be downloaded',
843
+ protectedCertHelperText: 'Protected certificates cannot be edited',
844
+ unprotectedCertHelperText: 'Unprotected certificates can be edited',
845
+ issuing: 'Certificate being generated',
846
+ sourceTypes: {
847
+ upload: 'Manual Upload',
848
+ lets_encrypt: "Let's Encrypt"
849
+ },
850
+ table: {
851
+ nodata: 'No data'
852
+ },
853
+ delete: {
854
+ title: 'Delete Certificate',
855
+ description: 'Confirm delete?',
856
+ confirm: 'Confirm'
857
+ },
858
+ nginx: {
859
+ title: 'Update Certificate',
860
+ titleAdd: 'Add Certificate',
861
+ pem: 'SSL Certificate File',
862
+ pemTip: 'Please drop your server certificate file here, it should ends with ".pem" or ".crt"',
863
+ key: 'Private Key File',
864
+ keyTip: 'Please drop your server private key file here, it should ends with ".pem" or ".key"',
865
+ confirm: 'Save',
866
+ cancel: 'Cancel',
867
+ invalidFile: 'You have selected an invalid file',
868
+ empty: 'No file selected yet',
869
+ source: 'Source',
870
+ sourceTypes: {
871
+ upload: 'Manual Upload',
872
+ lets_encrypt: "Let's Encrypt"
873
+ }
874
+ },
875
+ detail: {
876
+ title: 'Certificate Details'
877
+ },
878
+ genLetsEncryptCert: {
879
+ title: "Generate Let's Encrypt certificate",
880
+ dnsTip: 'Please make sure the domain name has point to the current Blocklet Server.',
881
+ description: 'Adding a certificate will make the service more secure, and Blocklet Server will automatically renew the certificate before it expires.'
882
+ }
883
+ },
884
+ gateway: {
885
+ reqLimit: {
886
+ status: {
887
+ true: 'Enabled',
888
+ false: 'Disabled'
889
+ },
890
+ switchLabel: 'Request Limit',
891
+ rate: 'Request Limit({rate} Request/Second)',
892
+ ipHeaderLabel: 'Customize client IP header(Optional)',
893
+ ipHeaderDesc: "If the Blocklet Server is running behind some proxies, you can set the header of the client's real IP here. Optional, leave empty to use default."
894
+ },
895
+ cacheEnabled: {
896
+ switchLabel: 'Enable Gateway Cache'
897
+ }
898
+ }
899
+ },
900
+ noMatch: {
901
+ desc: "We can't find the page that you're looking for"
902
+ },
903
+ health: {
904
+ connectionErrorTip: "Blocklet Server can't connect to the network, please check if Blocklet Server has been stopped or there is a network issue",
905
+ connectionRecoveryTip: 'Blocklet Server connectivity has been recovered',
906
+ connectionStoppedTip: 'Blocklet Server has been stopped',
907
+ wrongAccessUrlTip: 'Blocklet Server access address is wrong, please use the correct access address'
908
+ },
909
+ debug: {
910
+ title: 'Your Blocklet Server is up and running!'
911
+ },
912
+ team: {
913
+ invite: 'Invite New',
914
+ add: 'Add New',
915
+ member: {
916
+ name: 'Name',
917
+ passport: 'Passport',
918
+ passports: 'Passports',
919
+ lastLogin: 'Last Login',
920
+ lastLoginIp: 'Last Login IP',
921
+ filter: 'Filter by',
922
+ forbidLogin: 'Forbid Login',
923
+ forbidLoginDescription: 'The user will not be able to connect to this application',
924
+ allowLogin: 'Allow Login',
925
+ allowLoginDescription: 'The user will be able to connect to this application',
926
+ updateRole: 'Update Role',
927
+ deleteUser: 'Delete User',
928
+ deleteUserDescription: 'Confirm delete user "{name}"?',
929
+ revokePassport: 'Revoke Passport',
930
+ revokePassportDescription: 'Once the passport is revoked, the passport holder can not use it to login again, are you sure to continue?',
931
+ enablePassport: 'Enable Passport',
932
+ enablePassportDescription: 'Once the revoked passport is enabled again, the passport holder can use it to login again, are you sure to continue?',
933
+ passportPermissionTitle: 'The passport has the following permissions:',
934
+ search: 'Search Member',
935
+ hideBlockedMember: 'Hide Unapproved Members',
936
+ inviteDialog: {
937
+ createInviteLink: 'Generate Invitation Link',
938
+ createSuccessTip: 'The invitation link is successfully created, click to copy and send the link to the invited member, please note that this invitation link can not be reused and will expire on {expireDate}'
939
+ },
940
+ error: {
941
+ passportEmpty: 'Passport should not be empty'
942
+ }
943
+ },
944
+ transferNode: {
945
+ name: 'Transfer Ownership',
946
+ inviteDialog: {
947
+ title: 'Transfer Blocklet Server',
948
+ tips: {
949
+ progress: 'Transfer the server needs to be accepted by the receiver to complete the transfer operation, and once the receiver accepts it, you cannot log in to the server with the current passport again.',
950
+ newOwnerPermissions: 'The new Owner will have the right to manage all operations such as members, passports, and Blocklets.',
951
+ revoke: 'If you want to withdraw the transfer invitation, you can delete the invitation link in the "Team -> Members -> Inviting" page.'
952
+ },
953
+ createInviteLink: 'Generate Invitation Link',
954
+ createSuccessTip: 'The invitation link is successfully created, click to copy and send the link to the invited member, please note that this invitation link can not be reused and will expire on {expireDate}'
955
+ },
956
+ delegateDialog: {
957
+ title: 'Authorize Required',
958
+ scan: 'Scan following QR code with DID Wallet to authorize server to transfer server ownership NFT.',
959
+ confirm: 'Confirm on your DID Wallet',
960
+ success: 'Authorization Successfully'
961
+ }
962
+ },
963
+ permission: {
964
+ create: {
965
+ title: 'Create Permission',
966
+ description: "Format: <action>_<resource>\n e.g. 'query_user', 'mutate_user'"
967
+ },
968
+ delete: {
969
+ title: 'Delete Permission',
970
+ description: 'Confirm delete {name}?'
971
+ },
972
+ error: {
973
+ actionEmpty: 'action cannot be empty',
974
+ resourceEmpty: 'resource cannot be empty',
975
+ permissionTooLong: 'permission cannot exceed {length} characters',
976
+ descriptionTooLong: 'description cannot exceed {length} characters'
977
+ }
978
+ },
979
+ passport: {
980
+ create: {
981
+ title: 'Create Passport',
982
+ titleTip: 'Title cannot be modified after created, recommended within 14 letters'
983
+ },
984
+ bind: {
985
+ title: 'Bind Permission',
986
+ roleTip: 'You will get all the permissions of the selected passport after binding',
987
+ permissionTip: 'You will get the selected permissions after binding',
988
+ transferLeftTitle: 'All permissions',
989
+ transferRightTitle: 'Granted permissions'
990
+ },
991
+ delete: {
992
+ title: 'Delete Passport',
993
+ description: 'The passports holds by user will lose all permissions after it is deleted. Are you sure to continue?'
994
+ },
995
+ error: {
996
+ titleEmpty: 'title cannot be empty',
997
+ titleTooLong: 'title cannot exceed {length} characters',
998
+ descriptionEmpty: 'description cannot be empty'
999
+ },
1000
+ issuance: {
1001
+ pending: 'Pending',
1002
+ create: {
1003
+ title: 'Generate Link'
1004
+ },
1005
+ delete: {
1006
+ title: 'Delete Receive Link',
1007
+ description: 'Confirm delete {link}?'
1008
+ }
1009
+ },
1010
+ issue: 'Issue Passport',
1011
+ disableIssuance: 'Disable Passport Issuance',
1012
+ enableIssuance: 'Enable Passport Issuance',
1013
+ disableIssuanceTip: '"Issue Passport", "Invite Member" and other operations will be disabled',
1014
+ enableIssuanceTip: '"Issue Passport", "Invite Member" and other operations will be enabled',
1015
+ trustedPassportIssuers: 'Trusted Passport Issuers',
1016
+ trustedIssuers: 'Trusted Issuers',
1017
+ externalPassport: 'External Passport',
1018
+ notTrustedIssuerTip: 'The passport cannot be used because the issuer is not on the list of trusted issuers',
1019
+ issuerDid: 'Issuer DID',
1020
+ addNodeToTrustedIssuers: 'Add current server as a trusted passport issuer',
1021
+ revoked: 'Revoked',
1022
+ noPermission: 'No permission to perform this operation',
1023
+ shouldNotDeleteCurrent: 'You can not revoke your passport currently in use',
1024
+ mappingRule: 'Mapping rule',
1025
+ defaultRule: 'Default rule',
1026
+ search: 'Search Passport',
1027
+ searchIssuerDid: 'Search Issuer DID',
1028
+ issueBy: 'Issue by {name}',
1029
+ configColor: 'Config Passport Color',
1030
+ color: 'Passport Color'
1031
+ },
1032
+ inviting: {
1033
+ link: 'Invite Link',
1034
+ inviter: 'Inviter',
1035
+ delete: {
1036
+ title: 'Delete Invite Link',
1037
+ description: 'Confirm delete {link}?'
1038
+ },
1039
+ disabledTip: 'Invitation is not enabled'
1040
+ },
1041
+ whoCanAccess: {
1042
+ all: {
1043
+ title: 'Accessible to all'
1044
+ },
1045
+ owner: {
1046
+ title: 'Owner only'
1047
+ },
1048
+ invited: {
1049
+ title: 'Invited user only'
1050
+ }
1051
+ }
1052
+ },
1053
+ launcher: {
1054
+ provider: 'Provider',
1055
+ adminUrl: 'URL'
1056
+ },
1057
+ session: {
1058
+ forbidLogin: 'You have been blocked from access this server'
1059
+ },
1060
+ launchBlocklet: {
1061
+ appInfo: 'Application Information',
1062
+ appInfoDesc: 'Confirm the application information',
1063
+ author: 'Application Author: {author}',
1064
+ setup: 'Setup Blocklet',
1065
+ redirect: 'Redirect',
1066
+ alreadyRunning: 'Application {name} is already running on this Blocklet Server',
1067
+ alreadyInstalled: 'Application {name} is already installed on this Blocklet Server',
1068
+ alreadyExists: 'This application already exists, redirecting...',
1069
+ selectAbtNode: 'Select Blocklet Server',
1070
+ purchased: 'Already Purchased',
1071
+ purchase: 'Purchase',
1072
+ nextStep: 'Next Step',
1073
+ agreement: 'License Agreement',
1074
+ agreeAll: 'Agree & Continue',
1075
+ installing: 'Installing {appName} on {serverName}, it may take minutes to complete, please stay tuned...',
1076
+ redirecting: '{appName} is successfully installed, now starting...',
1077
+ start: 'Launching',
1078
+ launch: 'Install Blocklet to Server',
1079
+ launchSuccess: '{appName} is successfully launched!',
1080
+ installSuccess: 'Blocklet is successfully installed and launched on {serverName}',
1081
+ openInRegistry: 'View in Blocklet Store',
1082
+ subTitle: 'Ready to install Blocklet {appName} on {serverName}',
1083
+ installingSubTitle: '{appName} installing',
1084
+ access: 'Open the application',
1085
+ viewApplication: 'View Application',
1086
+ newVersion: 'New Version',
1087
+ newVersionDesc: 'The application already exists, but the current version can be upgraded',
1088
+ upgradeNow: 'Upgrade Now',
1089
+ later: 'Later',
1090
+ abtnodeLicenseName: 'Blocklet Server License',
1091
+ introduction: 'Introduction',
1092
+ welcome: 'Welcome to the Blocklet Launch Wizard',
1093
+ accept: 'I agree to the Blocklet EULA',
1094
+ license: 'Application License',
1095
+ next: 'Agree to the EULA and continue',
1096
+ purchaseApp: 'Purchase Blocklet',
1097
+ setupAppDesc: 'Initialize your Blocklet',
1098
+ launched: 'Complete',
1099
+ confirmInstall: 'Confirm Installation',
1100
+ dialog: {
1101
+ title: 'Authorization Required',
1102
+ freeDescription: 'You need to present Blocklet Server Ownership NFT or Blocklet Server Passport to launch application',
1103
+ freeServerlessDescription: 'Please provide serverless NFT',
1104
+ nonFreeDescription: 'You need to present application purchase NFT and Blocklet Server NFT to launch application',
1105
+ confirm: 'Confirm on your DID Wallet',
1106
+ success: 'Authorization Successfully',
1107
+ authorizationTimeout: 'Authorization timeout'
1108
+ },
1109
+ waiting: {
1110
+ verifying: 'Verifying blocklet meta',
1111
+ downloading: 'Downloading blocklet bundle',
1112
+ extracting: 'Extracting blocklet bundle',
1113
+ installing: 'Installing blocklet and setup components',
1114
+ done: 'Installation Complete'
1115
+ },
1116
+ error: {
1117
+ loadMetaFailed: 'Load Blocklet information failed',
1118
+ appMetaNotFound: 'No information found for this Blocklet',
1119
+ downloadFailed: 'Failed to download the Blocklet, please try again',
1120
+ installFailed: 'Failed to install the Blocklet, please try again',
1121
+ startFailed: 'Failed to start the Blocklet, please try again',
1122
+ launchFailed: 'Failed to launch the Blocklet, please try again',
1123
+ installedButStopped: 'The Blocklet is installed successfully, but cannot be started. You can start it manually after resolving blocking issues',
1124
+ installedButError: 'The Blocklet is successfully installed, but failed to start',
1125
+ upgradeFailed: 'Upgrade Failed'
1126
+ },
1127
+ steps: {
1128
+ introduction: 'Introduction',
1129
+ installApp: 'Install Application',
1130
+ purchaseSpace: 'Purchase Space',
1131
+ prepareSpace: 'Prepare Space'
1132
+ }
1133
+ },
7
1134
  issuePassport: {
8
1135
  title: 'Receive Passport',
9
1136
  description: 'Use DID Wallet to receive the passport issued by {name}',
@@ -11,7 +1138,7 @@ module.exports = flat({
11
1138
  scan: 'Use your DID Wallet to claim the passport',
12
1139
  confirm: 'Confirm on your DID Wallet',
13
1140
  success: 'The passport has been successfully added in your wallet',
14
- loginWithPassport: 'Login with this Passport'
1141
+ loginWithPassport: 'Connect with this Passport'
15
1142
  }
16
1143
  },
17
1144
  lostPassport: {
@@ -22,12 +1149,96 @@ module.exports = flat({
22
1149
  confirm: 'Confirm on your DID Wallet',
23
1150
  success: 'The passport has been successfully added in your wallet'
24
1151
  },
25
- return: 'Login with passport',
1152
+ return: 'Connect with passport',
26
1153
  selectPassport: 'Select passport',
27
1154
  receivePassport: 'Receive passport'
28
1155
  },
29
- common: {
30
- next: 'Next',
31
- complete: 'Complete'
1156
+ invite: {
1157
+ message: '{name} invite you to be the {role} of {dapp}',
1158
+ success: 'You have successfully joined {dapp}',
1159
+ receive: 'Receive with',
1160
+ validUntil: 'Valid until:',
1161
+ viewPermission: 'View Permission',
1162
+ emptyPermission: 'Empty Permission',
1163
+ open: 'Open',
1164
+ description: {
1165
+ step1: 'Download and setup your {wallet}',
1166
+ step2: 'Click above button to receive passport',
1167
+ step3: 'Login in {dapp} with received passport'
1168
+ },
1169
+ transferNFTDialog: {
1170
+ title: 'Accept Blocklet Server {name}',
1171
+ scan: 'Connect the Launcher to complete the reception of the Blocklet Server.',
1172
+ confirm: 'Review this operation on your DID Wallet',
1173
+ success: 'Connect successfully, waiting for confirmation of receiving the Server'
1174
+ }
1175
+ },
1176
+ receive: {
1177
+ dialog: {
1178
+ title: 'Use your DID Wallet to receive passport',
1179
+ scan: 'Connect your DID Wallet to receive passport',
1180
+ confirm: 'Confirm on your DID Wallet',
1181
+ success: 'You are successfully connected'
1182
+ }
1183
+ },
1184
+ navigation: {
1185
+ navigation: 'Navigation',
1186
+ actionFailed: 'Action Failed',
1187
+ form: {
1188
+ title: 'Title',
1189
+ titlePlaceholder: 'Please input navigation title',
1190
+ titleTooLong: 'Title length should small than {len}',
1191
+ icon: 'Navigation Icon',
1192
+ iconPlaceholder: 'Please input navigation icon',
1193
+ invalidIcon: 'Icon is invalid',
1194
+ findMoreIcon: 'Find more icons',
1195
+ link: 'Link',
1196
+ linkPlaceholder: 'Please input navigation link',
1197
+ invalidLink: 'Link is invalid',
1198
+ component: 'Component',
1199
+ componentPlaceholder: 'Please select navigation component',
1200
+ role: 'Role',
1201
+ rolePlaceholder: 'Please select navigation role',
1202
+ locale: 'Locale',
1203
+ localePlaceholder: 'Please input locale need to add',
1204
+ localeExists: '{value} is already exists'
1205
+ },
1206
+ action: {
1207
+ add: 'Add navigation',
1208
+ addSub: 'Add sub navigation',
1209
+ edit: 'Edit navigation',
1210
+ hide: 'Hide navigation',
1211
+ show: 'Show navigation',
1212
+ del: 'Delete navigation',
1213
+ noAddSub: "Uninstalled component can't add sub navigation",
1214
+ noEdit: "Uninstalled component can't edit",
1215
+ noDel: 'Not allowed delete built-in navigation'
1216
+ }
1217
+ },
1218
+ storage: {
1219
+ spaces: {
1220
+ tips: 'Tips',
1221
+ label: 'Enter DID Spaces Gateway',
1222
+ connected: 'You have successfully connect to did-space gateway',
1223
+ connect: 'Connect',
1224
+ reconnect: 'Reconnect',
1225
+ addressCannotEmpty: 'Address cannot be empty',
1226
+ addressNotValid: '{url} is not a valid address',
1227
+ authorize: {
1228
+ title: 'Authorize {appName}',
1229
+ scan: 'Use your DID Wallet to scan the QR code below to authorize the app {appName} to access the space in spaces',
1230
+ success: 'Authorized successfully'
1231
+ },
1232
+ backup: 'Backup',
1233
+ backupSuccessfully: 'Backup successfully',
1234
+ restore: 'Restore',
1235
+ restoreSuccessfully: 'Restore successfully'
1236
+ }
1237
+ },
1238
+ log: {
1239
+ lastDays: {
1240
+ 1: 'Last 1 Day',
1241
+ 7: 'Last 1 Week'
1242
+ }
32
1243
  }
33
- });
1244
+ };