@nocobase/plugin-client 1.6.0-alpha.3 → 1.6.0-alpha.30
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/dist/client/ClearCache.d.ts +10 -0
- package/dist/client/DesktopRoutesManager.d.ts +10 -0
- package/dist/client/MobileRoutesManager.d.ts +10 -0
- package/dist/client/RestartApplication.d.ts +10 -0
- package/dist/client/index.js +1 -1
- package/dist/client/locale/index.d.ts +12 -0
- package/dist/client/routesTableSchema.d.ts +1245 -0
- package/dist/client/useTableBlockProps.d.ts +26 -0
- package/dist/client/utils.d.ts +10 -0
- package/dist/collections/desktopRoutes.d.ts +10 -0
- package/dist/collections/desktopRoutes.js +434 -0
- package/dist/collections/mobileRoutes.d.ts +10 -0
- package/dist/collections/mobileRoutes.js +368 -0
- package/dist/externalVersion.js +11 -4
- package/dist/locale/en-US.js +40 -2
- package/dist/locale/es-ES.js +35 -1
- package/dist/locale/fr-FR.js +35 -1
- package/dist/locale/it-IT.js +870 -0
- package/dist/locale/ja-JP.js +35 -1
- package/dist/locale/ko-KR.js +35 -1
- package/dist/locale/pt-BR.js +35 -1
- package/dist/locale/ru-RU.js +27 -1
- package/dist/locale/tr-TR.js +27 -1
- package/dist/locale/uk-UA.js +35 -1
- package/dist/locale/zh-CN.js +56 -7
- package/dist/locale/zh-TW.js +36 -1
- package/dist/node_modules/cronstrue/package.json +1 -1
- package/dist/server/collections/desktopRoutes.d.ts +10 -0
- package/dist/server/collections/desktopRoutes.js +44 -0
- package/dist/server/collections/extendRoleField.d.ts +14 -0
- package/dist/server/collections/extendRoleField.js +44 -0
- package/dist/server/migrations/2024122912211-transform-menu-schema-to-routes.d.ts +18 -0
- package/dist/server/migrations/2024122912211-transform-menu-schema-to-routes.js +193 -0
- package/dist/server/migrations/202502071837-fix-permissions.d.ts +17 -0
- package/dist/server/migrations/202502071837-fix-permissions.js +85 -0
- package/dist/server/server.d.ts +7 -0
- package/dist/server/server.js +138 -5
- package/package.json +3 -2
|
@@ -0,0 +1,368 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
var __defProp = Object.defineProperty;
|
|
11
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
12
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
13
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
14
|
+
var __export = (target, all) => {
|
|
15
|
+
for (var name in all)
|
|
16
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
17
|
+
};
|
|
18
|
+
var __copyProps = (to, from, except, desc) => {
|
|
19
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
20
|
+
for (let key of __getOwnPropNames(from))
|
|
21
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
22
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
23
|
+
}
|
|
24
|
+
return to;
|
|
25
|
+
};
|
|
26
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
27
|
+
var mobileRoutes_exports = {};
|
|
28
|
+
__export(mobileRoutes_exports, {
|
|
29
|
+
default: () => mobileRoutes_default
|
|
30
|
+
});
|
|
31
|
+
module.exports = __toCommonJS(mobileRoutes_exports);
|
|
32
|
+
var mobileRoutes_default = {
|
|
33
|
+
name: "mobileRoutes",
|
|
34
|
+
dumpRules: "required",
|
|
35
|
+
migrationRules: ["overwrite", "schema-only"],
|
|
36
|
+
inherit: false,
|
|
37
|
+
hidden: false,
|
|
38
|
+
description: null,
|
|
39
|
+
fields: [
|
|
40
|
+
{
|
|
41
|
+
key: "ymgf0jxu1kg",
|
|
42
|
+
name: "parentId",
|
|
43
|
+
type: "bigInt",
|
|
44
|
+
interface: "integer",
|
|
45
|
+
description: null,
|
|
46
|
+
collectionName: "mobileRoutes",
|
|
47
|
+
parentKey: null,
|
|
48
|
+
reverseKey: null,
|
|
49
|
+
isForeignKey: true,
|
|
50
|
+
uiSchema: {
|
|
51
|
+
type: "number",
|
|
52
|
+
title: '{{t("Parent ID")}}',
|
|
53
|
+
"x-component": "InputNumber",
|
|
54
|
+
"x-read-pretty": true
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
key: "b07aqgs2shv",
|
|
59
|
+
name: "parent",
|
|
60
|
+
type: "belongsTo",
|
|
61
|
+
interface: "m2o",
|
|
62
|
+
description: null,
|
|
63
|
+
collectionName: "mobileRoutes",
|
|
64
|
+
parentKey: null,
|
|
65
|
+
reverseKey: null,
|
|
66
|
+
foreignKey: "parentId",
|
|
67
|
+
treeParent: true,
|
|
68
|
+
onDelete: "CASCADE",
|
|
69
|
+
uiSchema: {
|
|
70
|
+
title: '{{t("Parent")}}',
|
|
71
|
+
"x-component": "AssociationField",
|
|
72
|
+
"x-component-props": {
|
|
73
|
+
multiple: false,
|
|
74
|
+
fieldNames: {
|
|
75
|
+
label: "id",
|
|
76
|
+
value: "id"
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
},
|
|
80
|
+
target: "mobileRoutes",
|
|
81
|
+
targetKey: "id"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
key: "p8sxllsgin1",
|
|
85
|
+
name: "children",
|
|
86
|
+
type: "hasMany",
|
|
87
|
+
interface: "o2m",
|
|
88
|
+
description: null,
|
|
89
|
+
collectionName: "mobileRoutes",
|
|
90
|
+
parentKey: null,
|
|
91
|
+
reverseKey: null,
|
|
92
|
+
foreignKey: "parentId",
|
|
93
|
+
treeChildren: true,
|
|
94
|
+
onDelete: "CASCADE",
|
|
95
|
+
uiSchema: {
|
|
96
|
+
title: '{{t("Children")}}',
|
|
97
|
+
"x-component": "AssociationField",
|
|
98
|
+
"x-component-props": {
|
|
99
|
+
multiple: true,
|
|
100
|
+
fieldNames: {
|
|
101
|
+
label: "id",
|
|
102
|
+
value: "id"
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
},
|
|
106
|
+
target: "mobileRoutes",
|
|
107
|
+
targetKey: "id",
|
|
108
|
+
sourceKey: "id"
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
key: "7y601o9bmih",
|
|
112
|
+
name: "id",
|
|
113
|
+
type: "bigInt",
|
|
114
|
+
interface: "integer",
|
|
115
|
+
description: null,
|
|
116
|
+
collectionName: "mobileRoutes",
|
|
117
|
+
parentKey: null,
|
|
118
|
+
reverseKey: null,
|
|
119
|
+
autoIncrement: true,
|
|
120
|
+
primaryKey: true,
|
|
121
|
+
allowNull: false,
|
|
122
|
+
uiSchema: {
|
|
123
|
+
type: "number",
|
|
124
|
+
title: '{{t("ID")}}',
|
|
125
|
+
"x-component": "InputNumber",
|
|
126
|
+
"x-read-pretty": true
|
|
127
|
+
}
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
key: "m8s9b94amz3",
|
|
131
|
+
name: "createdAt",
|
|
132
|
+
type: "date",
|
|
133
|
+
interface: "createdAt",
|
|
134
|
+
description: null,
|
|
135
|
+
collectionName: "mobileRoutes",
|
|
136
|
+
parentKey: null,
|
|
137
|
+
reverseKey: null,
|
|
138
|
+
field: "createdAt",
|
|
139
|
+
uiSchema: {
|
|
140
|
+
type: "datetime",
|
|
141
|
+
title: '{{t("Created at")}}',
|
|
142
|
+
"x-component": "DatePicker",
|
|
143
|
+
"x-component-props": {},
|
|
144
|
+
"x-read-pretty": true
|
|
145
|
+
}
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
key: "p3p69woziuu",
|
|
149
|
+
name: "createdBy",
|
|
150
|
+
type: "belongsTo",
|
|
151
|
+
interface: "createdBy",
|
|
152
|
+
description: null,
|
|
153
|
+
collectionName: "mobileRoutes",
|
|
154
|
+
parentKey: null,
|
|
155
|
+
reverseKey: null,
|
|
156
|
+
target: "users",
|
|
157
|
+
foreignKey: "createdById",
|
|
158
|
+
uiSchema: {
|
|
159
|
+
type: "object",
|
|
160
|
+
title: '{{t("Created by")}}',
|
|
161
|
+
"x-component": "AssociationField",
|
|
162
|
+
"x-component-props": {
|
|
163
|
+
fieldNames: {
|
|
164
|
+
value: "id",
|
|
165
|
+
label: "nickname"
|
|
166
|
+
}
|
|
167
|
+
},
|
|
168
|
+
"x-read-pretty": true
|
|
169
|
+
},
|
|
170
|
+
targetKey: "id"
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
key: "s0gw1blo4hm",
|
|
174
|
+
name: "updatedAt",
|
|
175
|
+
type: "date",
|
|
176
|
+
interface: "updatedAt",
|
|
177
|
+
description: null,
|
|
178
|
+
collectionName: "mobileRoutes",
|
|
179
|
+
parentKey: null,
|
|
180
|
+
reverseKey: null,
|
|
181
|
+
field: "updatedAt",
|
|
182
|
+
uiSchema: {
|
|
183
|
+
type: "string",
|
|
184
|
+
title: '{{t("Last updated at")}}',
|
|
185
|
+
"x-component": "DatePicker",
|
|
186
|
+
"x-component-props": {},
|
|
187
|
+
"x-read-pretty": true
|
|
188
|
+
}
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
key: "d1l988n09gd",
|
|
192
|
+
name: "updatedBy",
|
|
193
|
+
type: "belongsTo",
|
|
194
|
+
interface: "updatedBy",
|
|
195
|
+
description: null,
|
|
196
|
+
collectionName: "mobileRoutes",
|
|
197
|
+
parentKey: null,
|
|
198
|
+
reverseKey: null,
|
|
199
|
+
target: "users",
|
|
200
|
+
foreignKey: "updatedById",
|
|
201
|
+
uiSchema: {
|
|
202
|
+
type: "object",
|
|
203
|
+
title: '{{t("Last updated by")}}',
|
|
204
|
+
"x-component": "AssociationField",
|
|
205
|
+
"x-component-props": {
|
|
206
|
+
fieldNames: {
|
|
207
|
+
value: "id",
|
|
208
|
+
label: "nickname"
|
|
209
|
+
}
|
|
210
|
+
},
|
|
211
|
+
"x-read-pretty": true
|
|
212
|
+
},
|
|
213
|
+
targetKey: "id"
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
key: "bo7btzkbyan",
|
|
217
|
+
name: "title",
|
|
218
|
+
type: "string",
|
|
219
|
+
interface: "input",
|
|
220
|
+
description: null,
|
|
221
|
+
collectionName: "mobileRoutes",
|
|
222
|
+
parentKey: null,
|
|
223
|
+
reverseKey: null,
|
|
224
|
+
translation: true,
|
|
225
|
+
uiSchema: {
|
|
226
|
+
type: "string",
|
|
227
|
+
"x-component": "Input",
|
|
228
|
+
title: '{{t("Title")}}'
|
|
229
|
+
}
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
key: "ozl5d8t2d5e",
|
|
233
|
+
name: "icon",
|
|
234
|
+
type: "string",
|
|
235
|
+
interface: "input",
|
|
236
|
+
description: null,
|
|
237
|
+
collectionName: "mobileRoutes",
|
|
238
|
+
parentKey: null,
|
|
239
|
+
reverseKey: null,
|
|
240
|
+
uiSchema: {
|
|
241
|
+
type: "string",
|
|
242
|
+
"x-component": "Input",
|
|
243
|
+
title: '{{t("Icon")}}'
|
|
244
|
+
}
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
key: "6bbyhv00bp4",
|
|
248
|
+
name: "schemaUid",
|
|
249
|
+
type: "string",
|
|
250
|
+
interface: "input",
|
|
251
|
+
description: null,
|
|
252
|
+
collectionName: "mobileRoutes",
|
|
253
|
+
parentKey: null,
|
|
254
|
+
reverseKey: null,
|
|
255
|
+
uiSchema: {
|
|
256
|
+
type: "string",
|
|
257
|
+
"x-component": "Input",
|
|
258
|
+
title: '{{t("Schema UID")}}'
|
|
259
|
+
}
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
key: "m0k5qbaktab",
|
|
263
|
+
name: "type",
|
|
264
|
+
type: "string",
|
|
265
|
+
interface: "input",
|
|
266
|
+
description: null,
|
|
267
|
+
collectionName: "mobileRoutes",
|
|
268
|
+
parentKey: null,
|
|
269
|
+
reverseKey: null,
|
|
270
|
+
uiSchema: {
|
|
271
|
+
type: "string",
|
|
272
|
+
"x-component": "Input",
|
|
273
|
+
title: '{{t("Type")}}'
|
|
274
|
+
}
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
key: "ssuml1j2v1b",
|
|
278
|
+
name: "options",
|
|
279
|
+
type: "json",
|
|
280
|
+
interface: "json",
|
|
281
|
+
description: null,
|
|
282
|
+
collectionName: "mobileRoutes",
|
|
283
|
+
parentKey: null,
|
|
284
|
+
reverseKey: null,
|
|
285
|
+
defaultValue: null,
|
|
286
|
+
uiSchema: {
|
|
287
|
+
type: "object",
|
|
288
|
+
"x-component": "Input.JSON",
|
|
289
|
+
"x-component-props": {
|
|
290
|
+
autoSize: {
|
|
291
|
+
minRows: 5
|
|
292
|
+
}
|
|
293
|
+
},
|
|
294
|
+
default: null,
|
|
295
|
+
title: '{{t("Options")}}'
|
|
296
|
+
}
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
key: "jjmosjqhz8l",
|
|
300
|
+
name: "sort",
|
|
301
|
+
type: "sort",
|
|
302
|
+
interface: "sort",
|
|
303
|
+
description: null,
|
|
304
|
+
collectionName: "mobileRoutes",
|
|
305
|
+
parentKey: null,
|
|
306
|
+
reverseKey: null,
|
|
307
|
+
scopeKey: "parentId",
|
|
308
|
+
uiSchema: {
|
|
309
|
+
type: "number",
|
|
310
|
+
"x-component": "InputNumber",
|
|
311
|
+
"x-component-props": {
|
|
312
|
+
stringMode: true,
|
|
313
|
+
step: "1"
|
|
314
|
+
},
|
|
315
|
+
"x-validator": "integer",
|
|
316
|
+
title: '{{t("Sort")}}'
|
|
317
|
+
}
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
type: "belongsToMany",
|
|
321
|
+
name: "roles",
|
|
322
|
+
through: "rolesMobileRoutes",
|
|
323
|
+
target: "roles",
|
|
324
|
+
onDelete: "CASCADE"
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
type: "boolean",
|
|
328
|
+
name: "hideInMenu",
|
|
329
|
+
interface: "checkbox",
|
|
330
|
+
uiSchema: {
|
|
331
|
+
type: "boolean",
|
|
332
|
+
"x-component": "Checkbox",
|
|
333
|
+
title: '{{t("Hide in menu")}}'
|
|
334
|
+
}
|
|
335
|
+
},
|
|
336
|
+
{
|
|
337
|
+
type: "boolean",
|
|
338
|
+
name: "enableTabs",
|
|
339
|
+
interface: "checkbox",
|
|
340
|
+
uiSchema: {
|
|
341
|
+
type: "boolean",
|
|
342
|
+
"x-component": "Checkbox",
|
|
343
|
+
title: '{{t("Enable tabs")}}'
|
|
344
|
+
}
|
|
345
|
+
},
|
|
346
|
+
{
|
|
347
|
+
type: "boolean",
|
|
348
|
+
name: "hidden",
|
|
349
|
+
interface: "checkbox",
|
|
350
|
+
uiSchema: {
|
|
351
|
+
type: "boolean",
|
|
352
|
+
"x-component": "Checkbox",
|
|
353
|
+
title: '{{t("Hidden")}}'
|
|
354
|
+
}
|
|
355
|
+
}
|
|
356
|
+
],
|
|
357
|
+
category: [],
|
|
358
|
+
logging: true,
|
|
359
|
+
autoGenId: true,
|
|
360
|
+
createdAt: true,
|
|
361
|
+
createdBy: true,
|
|
362
|
+
updatedAt: true,
|
|
363
|
+
updatedBy: true,
|
|
364
|
+
template: "tree",
|
|
365
|
+
view: false,
|
|
366
|
+
tree: "adjacencyList",
|
|
367
|
+
filterTargetKey: "id"
|
|
368
|
+
};
|
package/dist/externalVersion.js
CHANGED
|
@@ -8,8 +8,15 @@
|
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
10
|
module.exports = {
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
"@nocobase/
|
|
14
|
-
"
|
|
11
|
+
"react": "18.2.0",
|
|
12
|
+
"react-i18next": "11.18.6",
|
|
13
|
+
"@nocobase/client": "1.6.0-alpha.30",
|
|
14
|
+
"antd": "5.12.8",
|
|
15
|
+
"@ant-design/icons": "5.6.1",
|
|
16
|
+
"@formily/react": "2.3.0",
|
|
17
|
+
"@nocobase/utils": "1.6.0-alpha.30",
|
|
18
|
+
"lodash": "4.17.21",
|
|
19
|
+
"@nocobase/database": "1.6.0-alpha.30",
|
|
20
|
+
"@nocobase/plugin-localization": "1.6.0-alpha.30",
|
|
21
|
+
"@nocobase/server": "1.6.0-alpha.30"
|
|
15
22
|
};
|
package/dist/locale/en-US.js
CHANGED
|
@@ -55,6 +55,7 @@ module.exports = {
|
|
|
55
55
|
Icon: "Icon",
|
|
56
56
|
Group: "Group",
|
|
57
57
|
Link: "Link",
|
|
58
|
+
Tab: "Tab",
|
|
58
59
|
"Save conditions": "Save conditions",
|
|
59
60
|
"Edit menu item": "Edit menu item",
|
|
60
61
|
"Move to": "Move to",
|
|
@@ -172,6 +173,7 @@ module.exports = {
|
|
|
172
173
|
"Chart type": "Chart type",
|
|
173
174
|
"Chart config": "Chart config",
|
|
174
175
|
Templates: "Templates",
|
|
176
|
+
Template: "Template",
|
|
175
177
|
"Select template": "Select template",
|
|
176
178
|
"Action logs": "Action logs",
|
|
177
179
|
"Create template": "Create template",
|
|
@@ -529,6 +531,14 @@ module.exports = {
|
|
|
529
531
|
Small: "Small",
|
|
530
532
|
Middle: "Middle",
|
|
531
533
|
Large: "Large",
|
|
534
|
+
Size: "Size",
|
|
535
|
+
Oversized: "Oversized",
|
|
536
|
+
Auto: "Auto",
|
|
537
|
+
"Object Fit": "Object Fit",
|
|
538
|
+
Cover: "Cover",
|
|
539
|
+
Fill: "Fill",
|
|
540
|
+
Contain: "Contain",
|
|
541
|
+
"Scale Down": "Scale Down",
|
|
532
542
|
"Menu item title": "Menu item title",
|
|
533
543
|
"Menu item icon": "Menu item icon",
|
|
534
544
|
Target: "Target",
|
|
@@ -785,7 +795,7 @@ module.exports = {
|
|
|
785
795
|
"Quick duplicate": "Quick duplicate",
|
|
786
796
|
"Duplicate and continue": "Duplicate and continue",
|
|
787
797
|
"Please configure the duplicate fields": "Please configure the duplicate fields",
|
|
788
|
-
Add: "
|
|
798
|
+
Add: "Add",
|
|
789
799
|
"Add new mode": "Add new mode",
|
|
790
800
|
"Quick add": "Quick add",
|
|
791
801
|
"Modal add": "Modal add",
|
|
@@ -858,5 +868,33 @@ module.exports = {
|
|
|
858
868
|
Notification: "Notification",
|
|
859
869
|
"Ellipsis overflow content": "Ellipsis overflow content",
|
|
860
870
|
"Hide column": "Hide column",
|
|
861
|
-
"In configuration mode, the entire column becomes transparent. In non-configuration mode, the entire column will be hidden. Even if the entire column is hidden, its configured default values and other settings will still take effect.": "In configuration mode, the entire column becomes transparent. In non-configuration mode, the entire column will be hidden. Even if the entire column is hidden, its configured default values and other settings will still take effect."
|
|
871
|
+
"In configuration mode, the entire column becomes transparent. In non-configuration mode, the entire column will be hidden. Even if the entire column is hidden, its configured default values and other settings will still take effect.": "In configuration mode, the entire column becomes transparent. In non-configuration mode, the entire column will be hidden. Even if the entire column is hidden, its configured default values and other settings will still take effect.",
|
|
872
|
+
"Unauthenticated. Please sign in to continue.": "Unauthenticated. Please sign in to continue.",
|
|
873
|
+
"User not found. Please sign in again to continue.": "User not found. Please sign in again to continue.",
|
|
874
|
+
"Your session has expired. Please sign in again.": "Your session has expired. Please sign in again.",
|
|
875
|
+
"User password changed, please signin again.": "User password changed, please signin again.",
|
|
876
|
+
"Desktop routes": "Desktop routes",
|
|
877
|
+
"Route permissions": "Route permissions",
|
|
878
|
+
"New routes are allowed to be accessed by default": "New routes are allowed to be accessed by default",
|
|
879
|
+
"Route name": "Route name",
|
|
880
|
+
"Mobile routes": "Mobile routes",
|
|
881
|
+
"Show in menu": "Show in menu",
|
|
882
|
+
"Hide in menu": "Hide in menu",
|
|
883
|
+
Path: "Path",
|
|
884
|
+
Type: "Type",
|
|
885
|
+
Access: "Access",
|
|
886
|
+
Routes: "Routes",
|
|
887
|
+
"Add child route": "Add child",
|
|
888
|
+
"Delete routes": "Delete routes",
|
|
889
|
+
"Delete route": "Delete route",
|
|
890
|
+
"Are you sure you want to hide these routes in menu?": "Are you sure you want to hide these routes in menu?",
|
|
891
|
+
"Are you sure you want to show these routes in menu?": "Are you sure you want to show these routes in menu?",
|
|
892
|
+
"Are you sure you want to hide this menu?": "Are you sure you want to hide this menu?",
|
|
893
|
+
"After hiding, this menu will no longer appear in the menu bar. To show it again, you need to go to the route management page to configure it.": "After hiding, this menu will no longer appear in the menu bar. To show it again, you need to go to the route management page to configure it.",
|
|
894
|
+
"If selected, the page will display Tab pages.": "If selected, the page will display Tab pages.",
|
|
895
|
+
"If selected, the route will be displayed in the menu.": "If selected, the route will be displayed in the menu.",
|
|
896
|
+
"Are you sure you want to hide this tab?": "Are you sure you want to hide this tab?",
|
|
897
|
+
"After hiding, this tab will no longer appear in the tab bar. To show it again, you need to go to the route management page to set it.": "After hiding, this tab will no longer appear in the tab bar. To show it again, you need to go to the route management page to set it.",
|
|
898
|
+
Deprecated: "Deprecated",
|
|
899
|
+
"The following old template features have been deprecated and will be removed in next version.": "The following old template features have been deprecated and will be removed in next version."
|
|
862
900
|
};
|
package/dist/locale/es-ES.js
CHANGED
|
@@ -50,6 +50,7 @@ module.exports = {
|
|
|
50
50
|
Logo: "Logo",
|
|
51
51
|
"Add menu item": "A\xF1adir elemento al men\xFA",
|
|
52
52
|
Page: "P\xE1gina",
|
|
53
|
+
Tab: "Pesta\xF1a",
|
|
53
54
|
Name: "Nombre",
|
|
54
55
|
Icon: "Icono",
|
|
55
56
|
Group: "Grupo",
|
|
@@ -156,6 +157,7 @@ module.exports = {
|
|
|
156
157
|
"Chart type": "Tipo del gr\xE1fico",
|
|
157
158
|
"Chart config": "Configuraci\xF3n del gr\xE1fico",
|
|
158
159
|
Templates: "Plantillas",
|
|
160
|
+
Template: "Plantilla",
|
|
159
161
|
"Select template": "Seleccione plantilla",
|
|
160
162
|
"Action logs": "Acci\xF3n logs",
|
|
161
163
|
"Create template": "Crear plantilla",
|
|
@@ -498,6 +500,14 @@ module.exports = {
|
|
|
498
500
|
Small: "Peque\xF1o",
|
|
499
501
|
Middle: "Medio",
|
|
500
502
|
Large: "Grande",
|
|
503
|
+
Size: "Tama\xF1o",
|
|
504
|
+
Oversized: "Sobredimensionado",
|
|
505
|
+
Auto: "Autom\xE1tico",
|
|
506
|
+
"Object Fit": "Ajuste de objeto",
|
|
507
|
+
Cover: "Cubrir",
|
|
508
|
+
Fill: "Llenar",
|
|
509
|
+
Contain: "Contener",
|
|
510
|
+
"Scale Down": "Reducir",
|
|
501
511
|
"Menu item title": "T\xEDtulo del elemento del men\xFA",
|
|
502
512
|
"Menu item icon": "Icono del elemento del men\xFA",
|
|
503
513
|
Target: "Objetivo",
|
|
@@ -779,5 +789,29 @@ module.exports = {
|
|
|
779
789
|
"Parent object": "Objeto padre",
|
|
780
790
|
"Ellipsis overflow content": "Contenido de desbordamiento de elipsis",
|
|
781
791
|
"Hide column": "Ocultar columna",
|
|
782
|
-
"In configuration mode, the entire column becomes transparent. In non-configuration mode, the entire column will be hidden. Even if the entire column is hidden, its configured default values and other settings will still take effect.": "En modo de configuraci\xF3n, toda la columna se vuelve transparente. En modo de no configuraci\xF3n, toda la columna se ocultar\xE1. Incluso si toda la columna est\xE1 oculta, sus valores predeterminados configurados y otras configuraciones seguir\xE1n tomando efecto."
|
|
792
|
+
"In configuration mode, the entire column becomes transparent. In non-configuration mode, the entire column will be hidden. Even if the entire column is hidden, its configured default values and other settings will still take effect.": "En modo de configuraci\xF3n, toda la columna se vuelve transparente. En modo de no configuraci\xF3n, toda la columna se ocultar\xE1. Incluso si toda la columna est\xE1 oculta, sus valores predeterminados configurados y otras configuraciones seguir\xE1n tomando efecto.",
|
|
793
|
+
"Desktop routes": "Rutas de escritorio",
|
|
794
|
+
"Route permissions": "Permisos de ruta",
|
|
795
|
+
"New routes are allowed to be accessed by default": "Las nuevas rutas se permiten acceder por defecto",
|
|
796
|
+
"Route name": "Nombre de ruta",
|
|
797
|
+
"Mobile routes": "Rutas m\xF3viles",
|
|
798
|
+
"Show in menu": "Mostrar en men\xFA",
|
|
799
|
+
"Hide in menu": "Ocultar en men\xFA",
|
|
800
|
+
Path: "Ruta",
|
|
801
|
+
Type: "Tipo",
|
|
802
|
+
Access: "Acceso",
|
|
803
|
+
Routes: "Rutas",
|
|
804
|
+
"Add child route": "Agregar ruta secundaria",
|
|
805
|
+
"Delete routes": "Eliminar rutas",
|
|
806
|
+
"Delete route": "Eliminar ruta",
|
|
807
|
+
"Are you sure you want to hide these routes in menu?": "\xBFEst\xE1s seguro de que quieres ocultar estas rutas en el men\xFA?",
|
|
808
|
+
"Are you sure you want to show these routes in menu?": "\xBFEst\xE1s seguro de que quieres mostrar estas rutas en el men\xFA?",
|
|
809
|
+
"Are you sure you want to hide this menu?": "\xBFEst\xE1s seguro de que quieres ocultar este men\xFA?",
|
|
810
|
+
"After hiding, this menu will no longer appear in the menu bar. To show it again, you need to go to the route management page to configure it.": "Despu\xE9s de ocultar, este men\xFA ya no aparecer\xE1 en la barra de men\xFA. Para mostrarlo de nuevo, debe ir a la p\xE1gina de administraci\xF3n de rutas para configurarlo.",
|
|
811
|
+
"If selected, the page will display Tab pages.": "Si se selecciona, la p\xE1gina mostrar\xE1 p\xE1ginas de pesta\xF1as.",
|
|
812
|
+
"If selected, the route will be displayed in the menu.": "Si se selecciona, la ruta se mostrar\xE1 en el men\xFA.",
|
|
813
|
+
"Are you sure you want to hide this tab?": "\xBFEst\xE1s seguro de que quieres ocultar esta pesta\xF1a?",
|
|
814
|
+
"After hiding, this tab will no longer appear in the tab bar. To show it again, you need to go to the route management page to set it.": "Despu\xE9s de ocultar, esta pesta\xF1a ya no aparecer\xE1 en la barra de pesta\xF1as. Para mostrarla de nuevo, deber\xE1s ir a la p\xE1gina de gesti\xF3n de rutas para configurarla.",
|
|
815
|
+
Deprecated: "Obsoleto",
|
|
816
|
+
"The following old template features have been deprecated and will be removed in next version.": "Las siguientes caracter\xEDsticas de plantilla antigua han quedado obsoletas y se eliminar\xE1n en la pr\xF3xima versi\xF3n."
|
|
783
817
|
};
|
package/dist/locale/fr-FR.js
CHANGED
|
@@ -50,6 +50,7 @@ module.exports = {
|
|
|
50
50
|
Logo: "Logo",
|
|
51
51
|
"Add menu item": "Ajouter un \xE9l\xE9ment de menu",
|
|
52
52
|
Page: "Page",
|
|
53
|
+
Tab: "Onglet",
|
|
53
54
|
Name: "Nom",
|
|
54
55
|
Icon: "Ic\xF4ne",
|
|
55
56
|
Group: "Groupe",
|
|
@@ -167,6 +168,7 @@ module.exports = {
|
|
|
167
168
|
"Chart type": "Type de graphique",
|
|
168
169
|
"Chart config": "Configuration du graphique",
|
|
169
170
|
Templates: "Mod\xE8les",
|
|
171
|
+
Template: "Mod\xE8le",
|
|
170
172
|
"Select template": "S\xE9lectionner un mod\xE8le",
|
|
171
173
|
"Action logs": "Logs d'action",
|
|
172
174
|
"Create template": "Cr\xE9er un mod\xE8le",
|
|
@@ -513,6 +515,14 @@ module.exports = {
|
|
|
513
515
|
Small: "Petite",
|
|
514
516
|
Middle: "Moyenne",
|
|
515
517
|
Large: "Grande",
|
|
518
|
+
Size: "Taille",
|
|
519
|
+
Oversized: "Surdimensionn\xE9",
|
|
520
|
+
Auto: "Auto",
|
|
521
|
+
"Object Fit": "Ajustement de l'objet",
|
|
522
|
+
Cover: "Couvrir",
|
|
523
|
+
Fill: "Remplir",
|
|
524
|
+
Contain: "Contenir",
|
|
525
|
+
"Scale Down": "R\xE9duire",
|
|
516
526
|
"Menu item title": "Titre de l'\xE9l\xE9ment de menu",
|
|
517
527
|
"Menu item icon": "Ic\xF4ne de l'\xE9l\xE9ment de menu",
|
|
518
528
|
Target: "Cible",
|
|
@@ -799,5 +809,29 @@ module.exports = {
|
|
|
799
809
|
"Parent object": "Objet parent",
|
|
800
810
|
"Ellipsis overflow content": "Contenu de d\xE9bordement avec ellipse",
|
|
801
811
|
"Hide column": "Masquer la colonne",
|
|
802
|
-
"In configuration mode, the entire column becomes transparent. In non-configuration mode, the entire column will be hidden. Even if the entire column is hidden, its configured default values and other settings will still take effect.": "En mode de configuration, toute la colonne devient transparente. En mode de non-configuration, toute la colonne sera masqu\xE9e. M\xEAme si toute la colonne est masqu\xE9e, ses valeurs par d\xE9faut configur\xE9es et les autres param\xE8tres resteront toujours en vigueur."
|
|
812
|
+
"In configuration mode, the entire column becomes transparent. In non-configuration mode, the entire column will be hidden. Even if the entire column is hidden, its configured default values and other settings will still take effect.": "En mode de configuration, toute la colonne devient transparente. En mode de non-configuration, toute la colonne sera masqu\xE9e. M\xEAme si toute la colonne est masqu\xE9e, ses valeurs par d\xE9faut configur\xE9es et les autres param\xE8tres resteront toujours en vigueur.",
|
|
813
|
+
"Desktop routes": "Routes de bureau",
|
|
814
|
+
"Route permissions": "Permissions de route",
|
|
815
|
+
"New routes are allowed to be accessed by default": "Les nouvelles routes sont autoris\xE9es \xE0 \xEAtre accessibles par d\xE9faut",
|
|
816
|
+
"Route name": "Nom de route",
|
|
817
|
+
"Mobile routes": "Routes mobiles",
|
|
818
|
+
"Show in menu": "Afficher dans le menu",
|
|
819
|
+
"Hide in menu": "Masquer dans le menu",
|
|
820
|
+
Path: "Chemin",
|
|
821
|
+
Type: "Genre",
|
|
822
|
+
Access: "Acc\xE8s",
|
|
823
|
+
Routes: "Routes",
|
|
824
|
+
"Add child route": "Ajouter une route enfant",
|
|
825
|
+
"Delete routes": "Supprimer les routes",
|
|
826
|
+
"Delete route": "Supprimer la route",
|
|
827
|
+
"Are you sure you want to hide these routes in menu?": "\xCAtes-vous s\xFBr de vouloir masquer ces routes dans le menu ?",
|
|
828
|
+
"Are you sure you want to show these routes in menu?": "\xCAtes-vous s\xFBr de vouloir afficher ces routes dans le menu ?",
|
|
829
|
+
"Are you sure you want to hide this menu?": "\xCAtes-vous s\xFBr de vouloir masquer ce menu ?",
|
|
830
|
+
"After hiding, this menu will no longer appear in the menu bar. To show it again, you need to go to the route management page to configure it.": "Apr\xE8s avoir masqu\xE9, ce menu ne sera plus affich\xE9 dans la barre de menu. Pour le r\xE9afficher, vous devez aller \xE0 la page de gestion des routes pour le configurer.",
|
|
831
|
+
"If selected, the page will display Tab pages.": "Si s\xE9lectionn\xE9, la page affichera des onglets.",
|
|
832
|
+
"If selected, the route will be displayed in the menu.": "Si s\xE9lectionn\xE9, la route sera affich\xE9e dans le menu.",
|
|
833
|
+
"Are you sure you want to hide this tab?": "\xCAtes-vous s\xFBr de vouloir masquer cet onglet ?",
|
|
834
|
+
"After hiding, this tab will no longer appear in the tab bar. To show it again, you need to go to the route management page to set it.": "Apr\xE8s avoir masqu\xE9, cette tab ne sera plus affich\xE9e dans la barre de tab. Pour la montrer \xE0 nouveau, vous devez vous rendre sur la page de gestion des routes pour la configurer.",
|
|
835
|
+
Deprecated: "D\xE9pr\xE9ci\xE9",
|
|
836
|
+
"The following old template features have been deprecated and will be removed in next version.": "Les fonctionnalit\xE9s des anciens mod\xE8les ont \xE9t\xE9 d\xE9pr\xE9ci\xE9es et seront supprim\xE9es dans la prochaine version."
|
|
803
837
|
};
|