@nocobase/client 0.9.0-alpha.1 → 0.9.0-alpha.2
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/es/antd-config-provider/index.d.ts +3 -1
- package/es/antd-config-provider/index.js +25 -6
- package/es/antd-config-provider/loadConstrueLocale.d.ts +1 -0
- package/es/antd-config-provider/loadConstrueLocale.js +293 -0
- package/es/i18n/i18n.js +7 -12
- package/es/index.d.ts +1 -1
- package/es/index.js +2 -2
- package/es/locale/en_US.d.ts +104 -28
- package/es/locale/en_US.js +104 -28
- package/es/locale/index.d.ts +201 -4
- package/es/locale/index.js +191 -58
- package/es/schema-component/antd/association-filter/AssociationFilter.Item.js +12 -3
- package/es/schema-component/antd/cron/Cron.d.ts +0 -1
- package/es/schema-component/antd/cron/Cron.js +16 -19
- package/es/schema-component/antd/cron/locale/index.d.ts +37 -0
- package/es/schema-component/antd/cron/locale/index.js +6 -0
- package/es/schema-component/antd/filter/useFilterActionProps.js +10 -6
- package/es/schema-component/antd/table-v2/TableBlockDesigner.js +24 -8
- package/es/system-settings/SystemSettingsShortcut.js +1 -1
- package/lib/antd-config-provider/index.d.ts +3 -1
- package/lib/antd-config-provider/index.js +40 -6
- package/lib/antd-config-provider/loadConstrueLocale.d.ts +1 -0
- package/lib/antd-config-provider/loadConstrueLocale.js +304 -0
- package/lib/i18n/i18n.js +7 -14
- package/lib/index.d.ts +1 -1
- package/lib/index.js +13 -13
- package/lib/locale/en_US.d.ts +104 -28
- package/lib/locale/en_US.js +104 -28
- package/lib/locale/index.d.ts +201 -4
- package/lib/locale/index.js +197 -67
- package/lib/schema-component/antd/association-filter/AssociationFilter.Item.js +12 -3
- package/lib/schema-component/antd/cron/Cron.d.ts +0 -1
- package/lib/schema-component/antd/cron/Cron.js +19 -24
- package/lib/schema-component/antd/cron/locale/index.d.ts +37 -0
- package/lib/schema-component/antd/cron/locale/index.js +18 -0
- package/lib/schema-component/antd/filter/useFilterActionProps.js +10 -6
- package/lib/schema-component/antd/table-v2/TableBlockDesigner.js +25 -8
- package/lib/system-settings/SystemSettingsShortcut.js +1 -1
- package/package.json +6 -5
package/lib/locale/en_US.d.ts
CHANGED
|
@@ -43,6 +43,7 @@ declare const _default: {
|
|
|
43
43
|
"Super admin": string;
|
|
44
44
|
Language: string;
|
|
45
45
|
"Allow sign up": string;
|
|
46
|
+
"Enable SMS authentication": string;
|
|
46
47
|
"Sign out": string;
|
|
47
48
|
Cancel: string;
|
|
48
49
|
Submit: string;
|
|
@@ -53,12 +54,12 @@ declare const _default: {
|
|
|
53
54
|
Form: string;
|
|
54
55
|
"Select data source": string;
|
|
55
56
|
Calendar: string;
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
57
|
+
"Delete events": string;
|
|
58
|
+
"This event": string;
|
|
59
|
+
"This and following events": string;
|
|
60
|
+
"All events": string;
|
|
61
|
+
"Delete this event?": string;
|
|
62
|
+
"Delete Event": string;
|
|
62
63
|
Kanban: string;
|
|
63
64
|
"Select grouping field": string;
|
|
64
65
|
Media: string;
|
|
@@ -114,11 +115,12 @@ declare const _default: {
|
|
|
114
115
|
"Collection display name": string;
|
|
115
116
|
"Collection name": string;
|
|
116
117
|
Inherits: string;
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
118
|
+
"Generate ID field automatically": string;
|
|
119
|
+
"Store the creation user of each record": string;
|
|
120
|
+
"Store the last update user of each record": string;
|
|
121
|
+
"Store the creation time of each record": string;
|
|
122
|
+
"Store the last update time of each record": string;
|
|
123
|
+
"More options": string;
|
|
122
124
|
"Records can be sorted": string;
|
|
123
125
|
"Collection template": string;
|
|
124
126
|
"Calendar collection": string;
|
|
@@ -136,9 +138,9 @@ declare const _default: {
|
|
|
136
138
|
"Association fields filter": string;
|
|
137
139
|
"PK & FK fields": string;
|
|
138
140
|
"Association fields": string;
|
|
139
|
-
"Parent collection fields": string;
|
|
140
141
|
"System fields": string;
|
|
141
142
|
"General fields": string;
|
|
143
|
+
"Parent collection fields": string;
|
|
142
144
|
Basic: string;
|
|
143
145
|
"Single line text": string;
|
|
144
146
|
"Long text": string;
|
|
@@ -183,6 +185,7 @@ declare const _default: {
|
|
|
183
185
|
"12 hour": string;
|
|
184
186
|
"24 hour": string;
|
|
185
187
|
"Relationship type": string;
|
|
188
|
+
"Inverse relationship type": string;
|
|
186
189
|
"Source collection": string;
|
|
187
190
|
"Source key": string;
|
|
188
191
|
"Target collection": string;
|
|
@@ -193,12 +196,28 @@ declare const _default: {
|
|
|
193
196
|
"One to many": string;
|
|
194
197
|
"Many to one": string;
|
|
195
198
|
"Many to many": string;
|
|
199
|
+
"Foreign key 1": string;
|
|
200
|
+
"Foreign key 2": string;
|
|
196
201
|
"One to one description": string;
|
|
197
202
|
"One to many description": string;
|
|
198
203
|
"Many to one description": string;
|
|
199
204
|
"Many to many description": string;
|
|
200
|
-
"
|
|
201
|
-
"
|
|
205
|
+
"Generated automatically if left blank": string;
|
|
206
|
+
"Display association fields": string;
|
|
207
|
+
"Field component": string;
|
|
208
|
+
Subtable: string;
|
|
209
|
+
Subform: string;
|
|
210
|
+
"Record picker": string;
|
|
211
|
+
"Toggles the subfield mode": string;
|
|
212
|
+
"Selector mode": string;
|
|
213
|
+
"Subtable mode": string;
|
|
214
|
+
"Subform mode": string;
|
|
215
|
+
"Edit block title": string;
|
|
216
|
+
"Block title": string;
|
|
217
|
+
Pattern: string;
|
|
218
|
+
Editable: string;
|
|
219
|
+
Readonly: string;
|
|
220
|
+
"Easy-reading": string;
|
|
202
221
|
"Add filter": string;
|
|
203
222
|
"Add filter group": string;
|
|
204
223
|
Comparision: string;
|
|
@@ -219,6 +238,7 @@ declare const _default: {
|
|
|
219
238
|
"Edit button": string;
|
|
220
239
|
Hide: string;
|
|
221
240
|
"Enable actions": string;
|
|
241
|
+
Import: string;
|
|
222
242
|
Export: string;
|
|
223
243
|
Customize: string;
|
|
224
244
|
Function: string;
|
|
@@ -239,9 +259,30 @@ declare const _default: {
|
|
|
239
259
|
"Custom column name": string;
|
|
240
260
|
"Edit description": string;
|
|
241
261
|
Required: string;
|
|
262
|
+
Unique: string;
|
|
242
263
|
"Label field": string;
|
|
243
264
|
"Default is the ID field": string;
|
|
244
265
|
"Set default sorting rules": string;
|
|
266
|
+
"Set validation rules": string;
|
|
267
|
+
"Max length": string;
|
|
268
|
+
"Min length": string;
|
|
269
|
+
Maximum: string;
|
|
270
|
+
Minimum: string;
|
|
271
|
+
"Max length must greater than min length": string;
|
|
272
|
+
"Min length must less than max length": string;
|
|
273
|
+
"Maximum must greater than minimum": string;
|
|
274
|
+
"Minimum must less than maximum": string;
|
|
275
|
+
"Validation rule": string;
|
|
276
|
+
"Add validation rule": string;
|
|
277
|
+
Format: string;
|
|
278
|
+
"Regular expression": string;
|
|
279
|
+
"Error message": string;
|
|
280
|
+
Length: string;
|
|
281
|
+
"The field value cannot be greater than ": string;
|
|
282
|
+
"The field value cannot be less than ": string;
|
|
283
|
+
"The field value is not an integer number": string;
|
|
284
|
+
"Set default value": string;
|
|
285
|
+
"Default value": string;
|
|
245
286
|
"is before": string;
|
|
246
287
|
"is after": string;
|
|
247
288
|
"is on or after": string;
|
|
@@ -275,6 +316,7 @@ declare const _default: {
|
|
|
275
316
|
"Configure calendar": string;
|
|
276
317
|
"Title field": string;
|
|
277
318
|
"Custom title": string;
|
|
319
|
+
"Show lunar": string;
|
|
278
320
|
"Start date field": string;
|
|
279
321
|
"End date field": string;
|
|
280
322
|
Navigate: string;
|
|
@@ -282,10 +324,13 @@ declare const _default: {
|
|
|
282
324
|
Description: string;
|
|
283
325
|
"Select view": string;
|
|
284
326
|
Reset: string;
|
|
327
|
+
"Importable fields": string;
|
|
285
328
|
"Exportable fields": string;
|
|
286
329
|
"Saved successfully": string;
|
|
287
330
|
Nickname: string;
|
|
288
331
|
"Sign in": string;
|
|
332
|
+
"Sign in via account": string;
|
|
333
|
+
"Sign in via phone": string;
|
|
289
334
|
"Create an account": string;
|
|
290
335
|
"Sign up": string;
|
|
291
336
|
"Confirm password": string;
|
|
@@ -293,6 +338,9 @@ declare const _default: {
|
|
|
293
338
|
"Signed up successfully. It will jump to the login page.": string;
|
|
294
339
|
"Password mismatch": string;
|
|
295
340
|
Users: string;
|
|
341
|
+
"Verification code": string;
|
|
342
|
+
"Send code": string;
|
|
343
|
+
"Retry after {{count}} seconds": string;
|
|
296
344
|
Roles: string;
|
|
297
345
|
"Add role": string;
|
|
298
346
|
"Role name": string;
|
|
@@ -355,6 +403,7 @@ declare const _default: {
|
|
|
355
403
|
DESC: string;
|
|
356
404
|
"Add sort field": string;
|
|
357
405
|
ID: string;
|
|
406
|
+
"Identifier for program usage. Support letters, numbers and underscores, must start with an letter.": string;
|
|
358
407
|
Drawer: string;
|
|
359
408
|
Dialog: string;
|
|
360
409
|
"Delete action": string;
|
|
@@ -377,6 +426,7 @@ declare const _default: {
|
|
|
377
426
|
exists: string;
|
|
378
427
|
"not exists": string;
|
|
379
428
|
"is current logged-in user": string;
|
|
429
|
+
"is not current logged-in user": string;
|
|
380
430
|
"=": string;
|
|
381
431
|
"\u2260": string;
|
|
382
432
|
">": string;
|
|
@@ -406,6 +456,7 @@ declare const _default: {
|
|
|
406
456
|
"Create calendar block": string;
|
|
407
457
|
"Create kanban block": string;
|
|
408
458
|
"Grouping field": string;
|
|
459
|
+
"Single select and radio fields can be used as the grouping field": string;
|
|
409
460
|
"Tab name": string;
|
|
410
461
|
"Current record blocks": string;
|
|
411
462
|
"Popup message": string;
|
|
@@ -423,6 +474,9 @@ declare const _default: {
|
|
|
423
474
|
"Allow to desgin pages": string;
|
|
424
475
|
"Allow to manage plugins": string;
|
|
425
476
|
"Allow to configure plugins": string;
|
|
477
|
+
"Allows to configure interface": string;
|
|
478
|
+
"Allows to install, activate, disable plugins": string;
|
|
479
|
+
"Allows to configure plugins": string;
|
|
426
480
|
"Action display name": string;
|
|
427
481
|
Allow: string;
|
|
428
482
|
"Data scope": string;
|
|
@@ -449,8 +503,11 @@ declare const _default: {
|
|
|
449
503
|
"Use the built-in static file server": string;
|
|
450
504
|
"Local storage": string;
|
|
451
505
|
"Aliyun OSS": string;
|
|
452
|
-
"Tencent COS": string;
|
|
453
506
|
"Amazon S3": string;
|
|
507
|
+
"Tencent COS": string;
|
|
508
|
+
Region: string;
|
|
509
|
+
Bucket: string;
|
|
510
|
+
Path: string;
|
|
454
511
|
"Unsaved changes": string;
|
|
455
512
|
"Are you sure you don't want to save?": string;
|
|
456
513
|
Dragging: string;
|
|
@@ -462,6 +519,7 @@ declare const _default: {
|
|
|
462
519
|
"Dynamic value": string;
|
|
463
520
|
"Current user": string;
|
|
464
521
|
"Current record": string;
|
|
522
|
+
"Current time": string;
|
|
465
523
|
"Popup close method": string;
|
|
466
524
|
"Automatic close": string;
|
|
467
525
|
"Manually close": string;
|
|
@@ -489,29 +547,40 @@ declare const _default: {
|
|
|
489
547
|
"Record ID": string;
|
|
490
548
|
User: string;
|
|
491
549
|
Field: string;
|
|
550
|
+
Select: string;
|
|
551
|
+
"Select Field": string;
|
|
492
552
|
"Field value changes": string;
|
|
493
553
|
"One to one (has one)": string;
|
|
494
554
|
"One to one (belongs to)": string;
|
|
495
555
|
"Use the same time zone (GMT) for all users": string;
|
|
496
|
-
"Block title": string;
|
|
497
|
-
"Edit block title": string;
|
|
498
556
|
"Province/city/area name": string;
|
|
499
|
-
"Field component": string;
|
|
500
|
-
Subtable: string;
|
|
501
|
-
Subform: string;
|
|
502
|
-
"Regular expression": string;
|
|
503
557
|
"Enabled languages": string;
|
|
504
558
|
"View all plugins": string;
|
|
505
559
|
Print: string;
|
|
506
|
-
|
|
507
|
-
|
|
560
|
+
Done: string;
|
|
561
|
+
"Sign up successfully, and automatically jump to the sign in page": string;
|
|
562
|
+
"File manager": string;
|
|
563
|
+
ACL: string;
|
|
564
|
+
"Collection manager": string;
|
|
565
|
+
"Plugin manager": string;
|
|
566
|
+
Local: string;
|
|
567
|
+
"Built-in": string;
|
|
568
|
+
Marketplace: string;
|
|
569
|
+
"Coming soon...": string;
|
|
570
|
+
"All plugin settings": string;
|
|
571
|
+
Bookmark: string;
|
|
572
|
+
"Manage all settings": string;
|
|
573
|
+
"Create inverse field in the target collection": string;
|
|
574
|
+
"Inverse field name": string;
|
|
575
|
+
"Inverse field display name": string;
|
|
576
|
+
"Bulk update": string;
|
|
508
577
|
"After successful bulk update": string;
|
|
509
|
-
All: string;
|
|
510
|
-
"Update selected data?": string;
|
|
511
|
-
"Update all data?": string;
|
|
512
578
|
"Bulk edit": string;
|
|
513
579
|
"Data will be updated": string;
|
|
514
580
|
Selected: string;
|
|
581
|
+
All: string;
|
|
582
|
+
"Update selected data?": string;
|
|
583
|
+
"Update all data?": string;
|
|
515
584
|
"Remains the same": string;
|
|
516
585
|
"Changed to": string;
|
|
517
586
|
Clear: string;
|
|
@@ -520,7 +589,14 @@ declare const _default: {
|
|
|
520
589
|
Selector: string;
|
|
521
590
|
Inner: string;
|
|
522
591
|
"Search and select collection": string;
|
|
523
|
-
|
|
524
|
-
|
|
592
|
+
"Please fill in the iframe URL": string;
|
|
593
|
+
"Fix block": string;
|
|
594
|
+
"Plugin name": string;
|
|
595
|
+
"Plugin tab name": string;
|
|
596
|
+
AutoGenId: string;
|
|
597
|
+
CreatedBy: string;
|
|
598
|
+
UpdatedBy: string;
|
|
599
|
+
CreatedAt: string;
|
|
600
|
+
UpdatedAt: string;
|
|
525
601
|
};
|
|
526
602
|
export default _default;
|
package/lib/locale/en_US.js
CHANGED
|
@@ -49,6 +49,7 @@ var _default = {
|
|
|
49
49
|
"Super admin": "Super admin",
|
|
50
50
|
"Language": "Language",
|
|
51
51
|
"Allow sign up": "Allow sign up",
|
|
52
|
+
"Enable SMS authentication": "Enable SMS authentication",
|
|
52
53
|
"Sign out": "Sign out",
|
|
53
54
|
"Cancel": "Cancel",
|
|
54
55
|
"Submit": "Submit",
|
|
@@ -59,12 +60,12 @@ var _default = {
|
|
|
59
60
|
"Form": "Form",
|
|
60
61
|
"Select data source": "Select data source",
|
|
61
62
|
"Calendar": "Calendar",
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
63
|
+
"Delete events": "Delete events",
|
|
64
|
+
"This event": "This event",
|
|
65
|
+
"This and following events": "This and following events",
|
|
66
|
+
"All events": "All events",
|
|
67
|
+
"Delete this event?": "Delete this event?",
|
|
68
|
+
"Delete Event": "Delete Event",
|
|
68
69
|
"Kanban": "Kanban",
|
|
69
70
|
"Select grouping field": "Select grouping field",
|
|
70
71
|
"Media": "Media",
|
|
@@ -120,11 +121,12 @@ var _default = {
|
|
|
120
121
|
"Collection display name": "Collection display name",
|
|
121
122
|
"Collection name": "Collection name",
|
|
122
123
|
"Inherits": "Inherits",
|
|
123
|
-
"
|
|
124
|
-
"
|
|
125
|
-
"
|
|
126
|
-
"
|
|
127
|
-
"
|
|
124
|
+
"Generate ID field automatically": "Generate ID field automatically",
|
|
125
|
+
"Store the creation user of each record": "Store the creation user of each record",
|
|
126
|
+
"Store the last update user of each record": "Store the last update user of each record",
|
|
127
|
+
"Store the creation time of each record": "Store the creation time of each record",
|
|
128
|
+
"Store the last update time of each record": "Store the last update time of each record",
|
|
129
|
+
"More options": "More options",
|
|
128
130
|
"Records can be sorted": "Records can be sorted",
|
|
129
131
|
"Collection template": "Collection template",
|
|
130
132
|
"Calendar collection": "Calendar collection",
|
|
@@ -142,9 +144,9 @@ var _default = {
|
|
|
142
144
|
"Association fields filter": "Association fields filter",
|
|
143
145
|
"PK & FK fields": "PK & FK fields",
|
|
144
146
|
"Association fields": "Association fields",
|
|
145
|
-
"Parent collection fields": "Parent collection fields",
|
|
146
147
|
"System fields": "System fields",
|
|
147
148
|
"General fields": "General fields",
|
|
149
|
+
"Parent collection fields": "Parent collection fields",
|
|
148
150
|
"Basic": "Basic",
|
|
149
151
|
"Single line text": "Single line text",
|
|
150
152
|
"Long text": "Long text",
|
|
@@ -189,6 +191,7 @@ var _default = {
|
|
|
189
191
|
"12 hour": "12 hour",
|
|
190
192
|
"24 hour": "24 hour",
|
|
191
193
|
"Relationship type": "Relationship type",
|
|
194
|
+
"Inverse relationship type": "Inverse relationship type",
|
|
192
195
|
"Source collection": "Source collection",
|
|
193
196
|
"Source key": "Source key",
|
|
194
197
|
"Target collection": "Target collection",
|
|
@@ -199,12 +202,28 @@ var _default = {
|
|
|
199
202
|
"One to many": "One to many",
|
|
200
203
|
"Many to one": "Many to one",
|
|
201
204
|
"Many to many": "Many to many",
|
|
205
|
+
"Foreign key 1": "Foreign key 1",
|
|
206
|
+
"Foreign key 2": "Foreign key 2",
|
|
202
207
|
"One to one description": "Used to create one-to-one relationships. For example, a user has a profile.",
|
|
203
208
|
"One to many description": "Used to create a one-to-many relationship. For example, a country will have many cities and a city can only be in one country. When present as a field, it is a sub-table that displays the records of the associated collection. When created, a Many-to-one field is automatically generated in the associated collection.",
|
|
204
209
|
"Many to one description": "Used to create many-to-one relationships. For example, a city can belong to only one country and a country can have many cities. When present as a field, it is a drop-down selection used to select record from the associated collection. Once created, a One-to-many field is automatically generated in the associated collection.",
|
|
205
210
|
"Many to many description": "Used to create many-to-many relationships. For example, a student will have many teachers and a teacher will have many students. When present as a field, it is a drop-down selection used to select records from the associated collection.",
|
|
206
|
-
"
|
|
207
|
-
"
|
|
211
|
+
"Generated automatically if left blank": "Generated automatically if left blank",
|
|
212
|
+
"Display association fields": "Display association fields",
|
|
213
|
+
"Field component": "Field component",
|
|
214
|
+
"Subtable": "Subtable",
|
|
215
|
+
"Subform": "Subform",
|
|
216
|
+
"Record picker": "Record picker",
|
|
217
|
+
"Toggles the subfield mode": "Toggles the subfield mode",
|
|
218
|
+
"Selector mode": "Selector mode",
|
|
219
|
+
"Subtable mode": "Subtable mode",
|
|
220
|
+
"Subform mode": "Subform mode",
|
|
221
|
+
"Edit block title": "Edit block title",
|
|
222
|
+
"Block title": "Block title",
|
|
223
|
+
"Pattern": "Pattern",
|
|
224
|
+
"Editable": "Editable",
|
|
225
|
+
"Readonly": "Readonly",
|
|
226
|
+
"Easy-reading": "Easy-reading",
|
|
208
227
|
"Add filter": "Add filter",
|
|
209
228
|
"Add filter group": "Add filter group",
|
|
210
229
|
"Comparision": "Comparision",
|
|
@@ -225,6 +244,7 @@ var _default = {
|
|
|
225
244
|
"Edit button": "Edit button",
|
|
226
245
|
"Hide": "Hide",
|
|
227
246
|
"Enable actions": "Enable actions",
|
|
247
|
+
"Import": "Import",
|
|
228
248
|
"Export": "Export",
|
|
229
249
|
"Customize": "Customize",
|
|
230
250
|
"Function": "Function",
|
|
@@ -245,9 +265,30 @@ var _default = {
|
|
|
245
265
|
"Custom column name": "Custom column name",
|
|
246
266
|
"Edit description": "Edit description",
|
|
247
267
|
"Required": "Required",
|
|
268
|
+
"Unique": "Unique",
|
|
248
269
|
"Label field": "Label field",
|
|
249
270
|
"Default is the ID field": "Default is the ID field",
|
|
250
271
|
"Set default sorting rules": "Set default sorting rules",
|
|
272
|
+
"Set validation rules": "Set validation rules",
|
|
273
|
+
"Max length": "Max length",
|
|
274
|
+
"Min length": "Min length",
|
|
275
|
+
"Maximum": "Maximum",
|
|
276
|
+
"Minimum": "Minimum",
|
|
277
|
+
"Max length must greater than min length": "Max length must greater than min length",
|
|
278
|
+
"Min length must less than max length": "Min length must less than max length",
|
|
279
|
+
"Maximum must greater than minimum": "Maximum must greater than minimum",
|
|
280
|
+
"Minimum must less than maximum": "Minimum must less than maximum",
|
|
281
|
+
"Validation rule": "Validation rule",
|
|
282
|
+
"Add validation rule": "Add validation rule",
|
|
283
|
+
"Format": "Format",
|
|
284
|
+
"Regular expression": "Pattern",
|
|
285
|
+
"Error message": "Error message",
|
|
286
|
+
"Length": "Length",
|
|
287
|
+
"The field value cannot be greater than ": "The field value cannot be greater than ",
|
|
288
|
+
"The field value cannot be less than ": "The field value cannot be less than ",
|
|
289
|
+
"The field value is not an integer number": "The field value is not an integer number",
|
|
290
|
+
"Set default value": "Set default value",
|
|
291
|
+
"Default value": "Default value",
|
|
251
292
|
"is before": "is before",
|
|
252
293
|
"is after": "is after",
|
|
253
294
|
"is on or after": "is on or after",
|
|
@@ -281,6 +322,7 @@ var _default = {
|
|
|
281
322
|
"Configure calendar": "Configure calendar",
|
|
282
323
|
"Title field": "Title field",
|
|
283
324
|
"Custom title": "Custom title",
|
|
325
|
+
"Show lunar": "Show lunar",
|
|
284
326
|
"Start date field": "Start date field",
|
|
285
327
|
"End date field": "End date field",
|
|
286
328
|
"Navigate": "Navigate",
|
|
@@ -288,10 +330,13 @@ var _default = {
|
|
|
288
330
|
"Description": "Description",
|
|
289
331
|
"Select view": "Select view",
|
|
290
332
|
"Reset": "Reset",
|
|
333
|
+
"Importable fields": "Importable fields",
|
|
291
334
|
"Exportable fields": "Exportable fields",
|
|
292
335
|
"Saved successfully": "Saved successfully",
|
|
293
336
|
"Nickname": "Nickname",
|
|
294
337
|
"Sign in": "Sign in",
|
|
338
|
+
"Sign in via account": "Sign in via account",
|
|
339
|
+
"Sign in via phone": "Sign in via phone",
|
|
295
340
|
"Create an account": "Create an account",
|
|
296
341
|
"Sign up": "Sign up",
|
|
297
342
|
"Confirm password": "Confirm password",
|
|
@@ -299,6 +344,9 @@ var _default = {
|
|
|
299
344
|
"Signed up successfully. It will jump to the login page.": "Signed up successfully. It will jump to the login page.",
|
|
300
345
|
"Password mismatch": "Password mismatch",
|
|
301
346
|
"Users": "Users",
|
|
347
|
+
"Verification code": "Verification code",
|
|
348
|
+
"Send code": "Send code",
|
|
349
|
+
"Retry after {{count}} seconds": "Retry after {{count}} seconds",
|
|
302
350
|
"Roles": "Roles",
|
|
303
351
|
"Add role": "Add role",
|
|
304
352
|
"Role name": "Role name",
|
|
@@ -361,6 +409,7 @@ var _default = {
|
|
|
361
409
|
"DESC": "DESC",
|
|
362
410
|
"Add sort field": "Add sort field",
|
|
363
411
|
"ID": "ID",
|
|
412
|
+
"Identifier for program usage. Support letters, numbers and underscores, must start with an letter.": "Identifier for program usage. Support letters, numbers and underscores, must start with an letter.",
|
|
364
413
|
"Drawer": "Drawer",
|
|
365
414
|
"Dialog": "Dialog",
|
|
366
415
|
"Delete action": "Delete action",
|
|
@@ -383,6 +432,7 @@ var _default = {
|
|
|
383
432
|
"exists": "exists",
|
|
384
433
|
"not exists": "not exists",
|
|
385
434
|
"is current logged-in user": "is current logged-in user",
|
|
435
|
+
"is not current logged-in user": "is not current logged-in user",
|
|
386
436
|
"=": "=",
|
|
387
437
|
"≠": "≠",
|
|
388
438
|
">": ">",
|
|
@@ -412,6 +462,7 @@ var _default = {
|
|
|
412
462
|
"Create calendar block": "Create calendar block",
|
|
413
463
|
"Create kanban block": "Create kanban block",
|
|
414
464
|
"Grouping field": "Grouping field",
|
|
465
|
+
"Single select and radio fields can be used as the grouping field": "Single select and radio fields can be used as the grouping field",
|
|
415
466
|
"Tab name": "Tab name",
|
|
416
467
|
"Current record blocks": "Current record blocks",
|
|
417
468
|
"Popup message": "Popup message",
|
|
@@ -429,6 +480,9 @@ var _default = {
|
|
|
429
480
|
"Allow to desgin pages": "Allow to desgin pages",
|
|
430
481
|
"Allow to manage plugins": "Allow to manage plugins",
|
|
431
482
|
"Allow to configure plugins": "Allow to configure plugins",
|
|
483
|
+
"Allows to configure interface": "Allows to configure interface",
|
|
484
|
+
"Allows to install, activate, disable plugins": "Allows to install, activate, disable plugins",
|
|
485
|
+
"Allows to configure plugins": "Allows to configure plugins",
|
|
432
486
|
"Action display name": "Action display name",
|
|
433
487
|
"Allow": "Allow",
|
|
434
488
|
"Data scope": "Data scope",
|
|
@@ -455,8 +509,11 @@ var _default = {
|
|
|
455
509
|
"Use the built-in static file server": "Use the built-in static file server",
|
|
456
510
|
"Local storage": "Local storage",
|
|
457
511
|
"Aliyun OSS": "Aliyun OSS",
|
|
458
|
-
"Tencent COS": "Tencent COS",
|
|
459
512
|
"Amazon S3": "Amazon S3",
|
|
513
|
+
"Tencent COS": "Tencent COS",
|
|
514
|
+
"Region": "Region",
|
|
515
|
+
"Bucket": "Bucket",
|
|
516
|
+
"Path": "Path",
|
|
460
517
|
"Unsaved changes": "Unsaved changes",
|
|
461
518
|
"Are you sure you don't want to save?": "Are you sure you don't want to save?",
|
|
462
519
|
"Dragging": "Dragging",
|
|
@@ -468,6 +525,7 @@ var _default = {
|
|
|
468
525
|
"Dynamic value": "Dynamic value",
|
|
469
526
|
"Current user": "Current user",
|
|
470
527
|
"Current record": "Current record",
|
|
528
|
+
"Current time": "Current time",
|
|
471
529
|
"Popup close method": "Popup close method",
|
|
472
530
|
"Automatic close": "Automatic close",
|
|
473
531
|
"Manually close": "Manually close",
|
|
@@ -495,29 +553,40 @@ var _default = {
|
|
|
495
553
|
"Record ID": "Record ID",
|
|
496
554
|
"User": "User",
|
|
497
555
|
"Field": "Field",
|
|
556
|
+
"Select": "Select",
|
|
557
|
+
"Select Field": "Select Field",
|
|
498
558
|
"Field value changes": "Field value changes",
|
|
499
559
|
"One to one (has one)": "One to one (has one)",
|
|
500
560
|
"One to one (belongs to)": "One to one (belongs to)",
|
|
501
561
|
"Use the same time zone (GMT) for all users": "Use the same time zone (GMT) for all users",
|
|
502
|
-
"Block title": "Block title",
|
|
503
|
-
"Edit block title": "Edit block title",
|
|
504
562
|
"Province/city/area name": "Province/city/area name",
|
|
505
|
-
"Field component": "Field component",
|
|
506
|
-
"Subtable": "Subtable",
|
|
507
|
-
"Subform": "Subform",
|
|
508
|
-
"Regular expression": "Pattern",
|
|
509
563
|
"Enabled languages": "Enabled languages",
|
|
510
564
|
"View all plugins": "View all plugins",
|
|
511
565
|
"Print": "Print",
|
|
512
|
-
|
|
513
|
-
|
|
566
|
+
"Done": "Done",
|
|
567
|
+
"Sign up successfully, and automatically jump to the sign in page": "Sign up successfully, and automatically jump to the sign in page",
|
|
568
|
+
"File manager": "File manager",
|
|
569
|
+
"ACL": "ACL",
|
|
570
|
+
"Collection manager": "Collection manager",
|
|
571
|
+
"Plugin manager": "Plugin manager",
|
|
572
|
+
"Local": "Local",
|
|
573
|
+
"Built-in": "Built-in",
|
|
574
|
+
"Marketplace": "Marketplace",
|
|
575
|
+
"Coming soon...": "Coming soon...",
|
|
576
|
+
"All plugin settings": "All plugin settings",
|
|
577
|
+
"Bookmark": "Bookmark",
|
|
578
|
+
"Manage all settings": "Manage all settings",
|
|
579
|
+
"Create inverse field in the target collection": "Create inverse field in the target collection",
|
|
580
|
+
"Inverse field name": "Inverse field name",
|
|
581
|
+
"Inverse field display name": "Inverse field display name",
|
|
582
|
+
"Bulk update": "Bulk update",
|
|
514
583
|
"After successful bulk update": "After successful bulk update",
|
|
515
|
-
"All": "All",
|
|
516
|
-
"Update selected data?": "Update selected data?",
|
|
517
|
-
"Update all data?": "Update all data?",
|
|
518
584
|
"Bulk edit": "Bulk edit",
|
|
519
585
|
"Data will be updated": "Data will be updated",
|
|
520
586
|
"Selected": "Selected",
|
|
587
|
+
"All": "All",
|
|
588
|
+
"Update selected data?": "Update selected data?",
|
|
589
|
+
"Update all data?": "Update all data?",
|
|
521
590
|
"Remains the same": "Remains the same",
|
|
522
591
|
"Changed to": "Changed to",
|
|
523
592
|
"Clear": "Clear",
|
|
@@ -526,7 +595,14 @@ var _default = {
|
|
|
526
595
|
"Selector": "Selector",
|
|
527
596
|
"Inner": "Inner",
|
|
528
597
|
"Search and select collection": "Search and select collection",
|
|
529
|
-
|
|
530
|
-
|
|
598
|
+
"Please fill in the iframe URL": "Please fill in the iframe URL",
|
|
599
|
+
"Fix block": "Fix block",
|
|
600
|
+
"Plugin name": "Plugin name",
|
|
601
|
+
"Plugin tab name": "Plugin tab name",
|
|
602
|
+
"AutoGenId": "Auto-generated ID field",
|
|
603
|
+
"CreatedBy": "Recording a row's created user",
|
|
604
|
+
"UpdatedBy": "Recording a row's last updated user",
|
|
605
|
+
"CreatedAt": "Recording a row's created time ",
|
|
606
|
+
"UpdatedAt": "Recording a row's last updated user"
|
|
531
607
|
};
|
|
532
608
|
exports.default = _default;
|