@nocobase/plugin-client 1.6.0-alpha.2 → 1.6.0-alpha.21

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 (33) hide show
  1. package/dist/client/DesktopRoutesManager.d.ts +10 -0
  2. package/dist/client/MobileRoutesManager.d.ts +10 -0
  3. package/dist/client/index.js +1 -1
  4. package/dist/client/locale/index.d.ts +12 -0
  5. package/dist/client/routesTableSchema.d.ts +1242 -0
  6. package/dist/client/useTableBlockProps.d.ts +23 -0
  7. package/dist/client/utils.d.ts +10 -0
  8. package/dist/collections/desktopRoutes.d.ts +10 -0
  9. package/dist/collections/desktopRoutes.js +420 -0
  10. package/dist/collections/mobileRoutes.d.ts +10 -0
  11. package/dist/collections/mobileRoutes.js +368 -0
  12. package/dist/externalVersion.js +10 -4
  13. package/dist/locale/en-US.js +35 -2
  14. package/dist/locale/es-ES.js +30 -1
  15. package/dist/locale/fr-FR.js +30 -1
  16. package/dist/locale/ja-JP.js +30 -1
  17. package/dist/locale/ko-KR.js +30 -1
  18. package/dist/locale/pt-BR.js +30 -1
  19. package/dist/locale/ru-RU.js +22 -1
  20. package/dist/locale/tr-TR.js +22 -1
  21. package/dist/locale/uk-UA.js +30 -1
  22. package/dist/locale/zh-CN.js +52 -6
  23. package/dist/locale/zh-TW.js +31 -1
  24. package/dist/node_modules/cronstrue/package.json +1 -1
  25. package/dist/server/collections/desktopRoutes.d.ts +10 -0
  26. package/dist/server/collections/desktopRoutes.js +44 -0
  27. package/dist/server/collections/extendRoleField.d.ts +14 -0
  28. package/dist/server/collections/extendRoleField.js +44 -0
  29. package/dist/server/migrations/2024122912211-transform-menu-schema-to-routes.d.ts +14 -0
  30. package/dist/server/migrations/2024122912211-transform-menu-schema-to-routes.js +184 -0
  31. package/dist/server/server.d.ts +6 -0
  32. package/dist/server/server.js +92 -5
  33. package/package.json +2 -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
+ };
@@ -8,8 +8,14 @@
8
8
  */
9
9
 
10
10
  module.exports = {
11
- "@nocobase/client": "1.6.0-alpha.2",
12
- "@nocobase/utils": "1.6.0-alpha.2",
13
- "@nocobase/server": "1.6.0-alpha.2",
14
- "@nocobase/database": "1.6.0-alpha.2"
11
+ "@nocobase/client": "1.6.0-alpha.21",
12
+ "antd": "5.12.8",
13
+ "react": "18.2.0",
14
+ "@ant-design/icons": "5.2.6",
15
+ "@formily/react": "2.3.0",
16
+ "@nocobase/utils": "1.6.0-alpha.21",
17
+ "lodash": "4.17.21",
18
+ "react-i18next": "11.18.6",
19
+ "@nocobase/database": "1.6.0-alpha.21",
20
+ "@nocobase/server": "1.6.0-alpha.21"
15
21
  };
@@ -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",
@@ -529,6 +530,14 @@ module.exports = {
529
530
  Small: "Small",
530
531
  Middle: "Middle",
531
532
  Large: "Large",
533
+ Size: "Size",
534
+ Oversized: "Oversized",
535
+ Auto: "Auto",
536
+ "Object Fit": "Object Fit",
537
+ Cover: "Cover",
538
+ Fill: "Fill",
539
+ Contain: "Contain",
540
+ "Scale Down": "Scale Down",
532
541
  "Menu item title": "Menu item title",
533
542
  "Menu item icon": "Menu item icon",
534
543
  Target: "Target",
@@ -785,7 +794,7 @@ module.exports = {
785
794
  "Quick duplicate": "Quick duplicate",
786
795
  "Duplicate and continue": "Duplicate and continue",
787
796
  "Please configure the duplicate fields": "Please configure the duplicate fields",
788
- Add: "Create",
797
+ Add: "Add",
789
798
  "Add new mode": "Add new mode",
790
799
  "Quick add": "Quick add",
791
800
  "Modal add": "Modal add",
@@ -858,5 +867,29 @@ module.exports = {
858
867
  Notification: "Notification",
859
868
  "Ellipsis overflow content": "Ellipsis overflow content",
860
869
  "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."
870
+ "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
+ "Unauthenticated. Please sign in to continue.": "Unauthenticated. Please sign in to continue.",
872
+ "User not found. Please sign in again to continue.": "User not found. Please sign in again to continue.",
873
+ "Your session has expired. Please sign in again.": "Your session has expired. Please sign in again.",
874
+ "User password changed, please signin again.": "User password changed, please signin again.",
875
+ "Desktop routes": "Desktop routes",
876
+ "Route permissions": "Route permissions",
877
+ "New routes are allowed to be accessed by default": "New routes are allowed to be accessed by default",
878
+ "Route name": "Route name",
879
+ "Mobile routes": "Mobile routes",
880
+ "Show in menu": "Show in menu",
881
+ "Hide in menu": "Hide in menu",
882
+ Path: "Path",
883
+ Type: "Type",
884
+ Access: "Access",
885
+ Routes: "Routes",
886
+ "Add child route": "Add child",
887
+ "Delete routes": "Delete routes",
888
+ "Delete route": "Delete route",
889
+ "Are you sure you want to hide these routes in menu?": "Are you sure you want to hide these routes in menu?",
890
+ "Are you sure you want to show these routes in menu?": "Are you sure you want to show these routes in menu?",
891
+ "Are you sure you want to hide this menu?": "Are you sure you want to hide this menu?",
892
+ "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.",
893
+ "If selected, the page will display Tab pages.": "If selected, the page will display Tab pages.",
894
+ "If selected, the route will be displayed in the menu.": "If selected, the route will be displayed in the menu."
862
895
  };
@@ -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",
@@ -498,6 +499,14 @@ module.exports = {
498
499
  Small: "Peque\xF1o",
499
500
  Middle: "Medio",
500
501
  Large: "Grande",
502
+ Size: "Tama\xF1o",
503
+ Oversized: "Sobredimensionado",
504
+ Auto: "Autom\xE1tico",
505
+ "Object Fit": "Ajuste de objeto",
506
+ Cover: "Cubrir",
507
+ Fill: "Llenar",
508
+ Contain: "Contener",
509
+ "Scale Down": "Reducir",
501
510
  "Menu item title": "T\xEDtulo del elemento del men\xFA",
502
511
  "Menu item icon": "Icono del elemento del men\xFA",
503
512
  Target: "Objetivo",
@@ -779,5 +788,25 @@ module.exports = {
779
788
  "Parent object": "Objeto padre",
780
789
  "Ellipsis overflow content": "Contenido de desbordamiento de elipsis",
781
790
  "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."
791
+ "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
+ "Desktop routes": "Rutas de escritorio",
793
+ "Route permissions": "Permisos de ruta",
794
+ "New routes are allowed to be accessed by default": "Las nuevas rutas se permiten acceder por defecto",
795
+ "Route name": "Nombre de ruta",
796
+ "Mobile routes": "Rutas m\xF3viles",
797
+ "Show in menu": "Mostrar en men\xFA",
798
+ "Hide in menu": "Ocultar en men\xFA",
799
+ Path: "Ruta",
800
+ Type: "Tipo",
801
+ Access: "Acceso",
802
+ Routes: "Rutas",
803
+ "Add child route": "Agregar ruta secundaria",
804
+ "Delete routes": "Eliminar rutas",
805
+ "Delete route": "Eliminar ruta",
806
+ "Are you sure you want to hide these routes in menu?": "\xBFEst\xE1s seguro de que quieres ocultar estas rutas en el men\xFA?",
807
+ "Are you sure you want to show these routes in menu?": "\xBFEst\xE1s seguro de que quieres mostrar estas rutas en el men\xFA?",
808
+ "Are you sure you want to hide this menu?": "\xBFEst\xE1s seguro de que quieres ocultar este men\xFA?",
809
+ "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.",
810
+ "If selected, the page will display Tab pages.": "Si se selecciona, la p\xE1gina mostrar\xE1 p\xE1ginas de pesta\xF1as.",
811
+ "If selected, the route will be displayed in the menu.": "Si se selecciona, la ruta se mostrar\xE1 en el men\xFA."
783
812
  };
@@ -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",
@@ -513,6 +514,14 @@ module.exports = {
513
514
  Small: "Petite",
514
515
  Middle: "Moyenne",
515
516
  Large: "Grande",
517
+ Size: "Taille",
518
+ Oversized: "Surdimensionn\xE9",
519
+ Auto: "Auto",
520
+ "Object Fit": "Ajustement de l'objet",
521
+ Cover: "Couvrir",
522
+ Fill: "Remplir",
523
+ Contain: "Contenir",
524
+ "Scale Down": "R\xE9duire",
516
525
  "Menu item title": "Titre de l'\xE9l\xE9ment de menu",
517
526
  "Menu item icon": "Ic\xF4ne de l'\xE9l\xE9ment de menu",
518
527
  Target: "Cible",
@@ -799,5 +808,25 @@ module.exports = {
799
808
  "Parent object": "Objet parent",
800
809
  "Ellipsis overflow content": "Contenu de d\xE9bordement avec ellipse",
801
810
  "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."
811
+ "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
+ "Desktop routes": "Routes de bureau",
813
+ "Route permissions": "Permissions de route",
814
+ "New routes are allowed to be accessed by default": "Les nouvelles routes sont autoris\xE9es \xE0 \xEAtre accessibles par d\xE9faut",
815
+ "Route name": "Nom de route",
816
+ "Mobile routes": "Routes mobiles",
817
+ "Show in menu": "Afficher dans le menu",
818
+ "Hide in menu": "Masquer dans le menu",
819
+ Path: "Chemin",
820
+ Type: "Genre",
821
+ Access: "Acc\xE8s",
822
+ Routes: "Routes",
823
+ "Add child route": "Ajouter une route enfant",
824
+ "Delete routes": "Supprimer les routes",
825
+ "Delete route": "Supprimer la route",
826
+ "Are you sure you want to hide these routes in menu?": "\xCAtes-vous s\xFBr de vouloir masquer ces routes dans le menu ?",
827
+ "Are you sure you want to show these routes in menu?": "\xCAtes-vous s\xFBr de vouloir afficher ces routes dans le menu ?",
828
+ "Are you sure you want to hide this menu?": "\xCAtes-vous s\xFBr de vouloir masquer ce menu ?",
829
+ "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.",
830
+ "If selected, the page will display Tab pages.": "Si s\xE9lectionn\xE9, la page affichera des onglets.",
831
+ "If selected, the route will be displayed in the menu.": "Si s\xE9lectionn\xE9, la route sera affich\xE9e dans le menu."
803
832
  };
@@ -50,6 +50,7 @@ module.exports = {
50
50
  Logo: "\u30ED\u30B4",
51
51
  "Add menu item": "\u30E1\u30CB\u30E5\u30FC\u9805\u76EE\u3092\u8FFD\u52A0",
52
52
  Page: "\u30DA\u30FC\u30B8",
53
+ Tab: "\u30BF\u30D6",
53
54
  Name: "\u540D\u79F0",
54
55
  Icon: "\u30A2\u30A4\u30B3\u30F3",
55
56
  Group: "\u30B0\u30EB\u30FC\u30D7",
@@ -795,6 +796,14 @@ module.exports = {
795
796
  Small: "\u30B9\u30E2\u30FC\u30EB",
796
797
  Middle: "\u30DF\u30C9\u30EB",
797
798
  Large: "\u30E9\u30FC\u30B8",
799
+ Size: "\u30B5\u30A4\u30BA",
800
+ Oversized: "\u7279\u5927",
801
+ Auto: "\u81EA\u52D5",
802
+ "Object Fit": "\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8\u30D5\u30A3\u30C3\u30C8",
803
+ Cover: "\u30AB\u30D0\u30FC",
804
+ Fill: "\u30D5\u30A3\u30EB",
805
+ Contain: "\u30B3\u30F3\u30C6\u30A4\u30F3",
806
+ "Scale Down": "\u30B9\u30B1\u30FC\u30EB\u30C0\u30A6\u30F3",
798
807
  "Identifier for program usage. Support letters, numbers and underscores, must start with an letter.": "\u30D7\u30ED\u30B0\u30E9\u30E0\u4F7F\u7528\u306E\u305F\u3081\u306E\u8B58\u5225\u5B50\u3002\u6587\u5B57\u3001\u6570\u5B57\u3001...",
799
808
  Style: "\u30B9\u30BF\u30A4\u30EB",
800
809
  "Allows to configure interface": "\u30A4\u30F3\u30BF\u30FC\u30D5\u30A7\u30FC\u30B9\u306E\u8A2D\u5B9A\u3092\u8A31\u53EF",
@@ -1017,5 +1026,25 @@ module.exports = {
1017
1026
  "Allow multiple selection": "\u8907\u6570\u9078\u629E\u3092\u8A31\u53EF",
1018
1027
  "Parent object": "\u89AA\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8",
1019
1028
  "Hide column": "\u5217\u3092\u975E\u8868\u793A",
1020
- "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.": "\u8A2D\u5B9A\u30E2\u30FC\u30C9\u3067\u306F\u3001\u5217\u5168\u4F53\u304C\u900F\u660E\u306B\u306A\u308A\u307E\u3059\u3002\u975E\u8A2D\u5B9A\u30E2\u30FC\u30C9\u3067\u306F\u3001\u5217\u5168\u4F53\u304C\u975E\u8868\u793A\u306B\u306A\u308A\u307E\u3059\u3002\u5217\u5168\u4F53\u304C\u975E\u8868\u793A\u306B\u306A\u3063\u3066\u3082\u3001\u8A2D\u5B9A\u3055\u308C\u305F\u30C7\u30D5\u30A9\u30EB\u30C8\u5024\u3084\u305D\u306E\u4ED6\u306E\u8A2D\u5B9A\u306F\u4F9D\u7136\u3068\u3057\u3066\u6709\u52B9\u3067\u3059\u3002"
1029
+ "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.": "\u8A2D\u5B9A\u30E2\u30FC\u30C9\u3067\u306F\u3001\u5217\u5168\u4F53\u304C\u900F\u660E\u306B\u306A\u308A\u307E\u3059\u3002\u975E\u8A2D\u5B9A\u30E2\u30FC\u30C9\u3067\u306F\u3001\u5217\u5168\u4F53\u304C\u975E\u8868\u793A\u306B\u306A\u308A\u307E\u3059\u3002\u5217\u5168\u4F53\u304C\u975E\u8868\u793A\u306B\u306A\u3063\u3066\u3082\u3001\u8A2D\u5B9A\u3055\u308C\u305F\u30C7\u30D5\u30A9\u30EB\u30C8\u5024\u3084\u305D\u306E\u4ED6\u306E\u8A2D\u5B9A\u306F\u4F9D\u7136\u3068\u3057\u3066\u6709\u52B9\u3067\u3059\u3002",
1030
+ "Desktop routes": "\u30C7\u30B9\u30AF\u30C8\u30C3\u30D7\u30EB\u30FC\u30C8",
1031
+ "Route permissions": "\u30EB\u30FC\u30C8\u306E\u6A29\u9650",
1032
+ "New routes are allowed to be accessed by default": "\u65B0\u3057\u3044\u30EB\u30FC\u30C8\u306F\u30C7\u30D5\u30A9\u30EB\u30C8\u3067\u30A2\u30AF\u30BB\u30B9\u53EF\u80FD",
1033
+ "Route name": "\u30EB\u30FC\u30C8\u540D",
1034
+ "Mobile routes": "\u30E2\u30D0\u30A4\u30EB\u30EB\u30FC\u30C8",
1035
+ "Show in menu": "\u30E1\u30CB\u30E5\u30FC\u306B\u8868\u793A",
1036
+ "Hide in menu": "\u30E1\u30CB\u30E5\u30FC\u306B\u975E\u8868\u793A",
1037
+ Path: "\u30D1\u30B9",
1038
+ Type: "\u30BF\u30A4\u30D7",
1039
+ Access: "\u30A2\u30AF\u30BB\u30B9",
1040
+ Routes: "\u30EB\u30FC\u30C8",
1041
+ "Add child route": "\u5B50\u30EB\u30FC\u30C8\u3092\u8FFD\u52A0",
1042
+ "Delete routes": "\u30EB\u30FC\u30C8\u3092\u524A\u9664",
1043
+ "Delete route": "\u30EB\u30FC\u30C8\u3092\u524A\u9664",
1044
+ "Are you sure you want to hide these routes in menu?": "\u3053\u308C\u3089\u306E\u30EB\u30FC\u30C8\u3092\u30E1\u30CB\u30E5\u30FC\u306B\u975E\u8868\u793A\u306B\u3057\u307E\u3059\u304B\uFF1F",
1045
+ "Are you sure you want to show these routes in menu?": "\u3053\u308C\u3089\u306E\u30EB\u30FC\u30C8\u3092\u30E1\u30CB\u30E5\u30FC\u306B\u8868\u793A\u3057\u307E\u3059\u304B\uFF1F",
1046
+ "Are you sure you want to hide this menu?": "\u3053\u306E\u30E1\u30CB\u30E5\u30FC\u3092\u975E\u8868\u793A\u306B\u3057\u307E\u3059\u304B\uFF1F",
1047
+ "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.": "\u975E\u8868\u793A\u306B\u3059\u308B\u3068\u3001\u3053\u306E\u30E1\u30CB\u30E5\u30FC\u306F\u30E1\u30CB\u30E5\u30FC\u30D0\u30FC\u306B\u8868\u793A\u3055\u308C\u306A\u304F\u306A\u308A\u307E\u3059\u3002\u518D\u8868\u793A\u3059\u308B\u306B\u306F\u3001\u30EB\u30FC\u30C8\u7BA1\u7406\u30DA\u30FC\u30B8\u3067\u8A2D\u5B9A\u3059\u308B\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059\u3002",
1048
+ "If selected, the page will display Tab pages.": "\u9078\u629E\u3055\u308C\u3066\u3044\u308B\u5834\u5408\u3001\u30DA\u30FC\u30B8\u306F\u30BF\u30D6\u30DA\u30FC\u30B8\u3092\u8868\u793A\u3057\u307E\u3059\u3002",
1049
+ "If selected, the route will be displayed in the menu.": "\u9078\u629E\u3055\u308C\u3066\u3044\u308B\u5834\u5408\u3001\u30EB\u30FC\u30C8\u306F\u30E1\u30CB\u30E5\u30FC\u306B\u8868\u793A\u3055\u308C\u307E\u3059\u3002"
1021
1050
  };
@@ -58,6 +58,7 @@ module.exports = {
58
58
  Logo: "\uB85C\uACE0",
59
59
  "Add menu item": "\uBA54\uB274 \uD56D\uBAA9 \uCD94\uAC00",
60
60
  Page: "\uD398\uC774\uC9C0",
61
+ Tab: "\uD0ED",
61
62
  Name: "\uC774\uB984",
62
63
  Icon: "\uC544\uC774\uCF58",
63
64
  Group: "\uADF8\uB8F9",
@@ -545,6 +546,14 @@ module.exports = {
545
546
  Small: "\uC791\uC740",
546
547
  Middle: "\uC911\uAC04",
547
548
  Large: "\uD070",
549
+ Size: "\uD06C\uAE30",
550
+ Oversized: "\uCD08\uB300\uD615",
551
+ Auto: "\uC790\uB3D9",
552
+ "Object Fit": "\uAC1D\uCCB4 \uB9DE\uCDA4",
553
+ Cover: "\uCEE4\uBC84",
554
+ Fill: "\uCC44\uC6B0\uAE30",
555
+ Contain: "\uD3EC\uD568",
556
+ "Scale Down": "\uCD95\uC18C",
548
557
  "Menu item title": "\uBA54\uB274 \uD56D\uBAA9 \uC81C\uBAA9",
549
558
  "Menu item icon": "\uBA54\uB274 \uD56D\uBAA9 \uC544\uC774\uCF58",
550
559
  Target: "\uB300\uC0C1",
@@ -890,5 +899,25 @@ module.exports = {
890
899
  "Parent object": "\uBD80\uBAA8 \uAC1D\uCCB4",
891
900
  "Ellipsis overflow content": "\uC0DD\uB7B5 \uBD80\uD638\uB85C \uB0B4\uC6A9 \uC904\uC784",
892
901
  "Hide column": "\uC5F4 \uC228\uAE30\uAE30",
893
- "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.": "\uAD6C\uC131 \uBAA8\uB4DC\uC5D0\uC11C\uB294 \uC804\uCCB4 \uC5F4\uC774 \uD22C\uBA85\uD574\uC9D1\uB2C8\uB2E4. \uBE44\uAD6C\uC131 \uBAA8\uB4DC\uC5D0\uC11C\uB294 \uC804\uCCB4 \uC5F4\uC774 \uC228\uACA8\uC9D1\uB2C8\uB2E4. \uC804\uCCB4 \uC5F4\uC774 \uC228\uACA8\uC838\uB3C4 \uAD6C\uC131\uB41C \uAE30\uBCF8\uAC12 \uBC0F \uAE30\uD0C0 \uC124\uC815\uC740 \uC5EC\uC804\uD788 \uC801\uC6A9\uB429\uB2C8\uB2E4."
902
+ "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.": "\uAD6C\uC131 \uBAA8\uB4DC\uC5D0\uC11C\uB294 \uC804\uCCB4 \uC5F4\uC774 \uD22C\uBA85\uD574\uC9D1\uB2C8\uB2E4. \uBE44\uAD6C\uC131 \uBAA8\uB4DC\uC5D0\uC11C\uB294 \uC804\uCCB4 \uC5F4\uC774 \uC228\uACA8\uC9D1\uB2C8\uB2E4. \uC804\uCCB4 \uC5F4\uC774 \uC228\uACA8\uC838\uB3C4 \uAD6C\uC131\uB41C \uAE30\uBCF8\uAC12 \uBC0F \uAE30\uD0C0 \uC124\uC815\uC740 \uC5EC\uC804\uD788 \uC801\uC6A9\uB429\uB2C8\uB2E4.",
903
+ "Desktop routes": "\uB370\uC2A4\uD06C\uD1B1 \uB77C\uC6B0\uD2B8",
904
+ "Route permissions": "\uB77C\uC6B0\uD2B8 \uAD8C\uD55C",
905
+ "New routes are allowed to be accessed by default": "\uC0C8\uB85C\uC6B4 \uB77C\uC6B0\uD2B8\uB294 \uAE30\uBCF8\uC801\uC73C\uB85C \uC561\uC138\uC2A4\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4",
906
+ "Route name": "\uB77C\uC6B0\uD2B8 \uC774\uB984",
907
+ "Mobile routes": "\uBAA8\uBC14\uC77C \uB77C\uC6B0\uD2B8",
908
+ "Show in menu": "\uBA54\uB274\uC5D0 \uD45C\uC2DC",
909
+ "Hide in menu": "\uBA54\uB274\uC5D0 \uC228\uAE30\uAE30",
910
+ Path: "\uACBD\uB85C",
911
+ Type: "\uC720\uD615",
912
+ Access: "\uC561\uC138\uC2A4",
913
+ Routes: "\uB77C\uC6B0\uD2B8",
914
+ "Add child route": "\uD558\uC704 \uB77C\uC6B0\uD2B8 \uCD94\uAC00",
915
+ "Delete routes": "\uB77C\uC6B0\uD2B8 \uC0AD\uC81C",
916
+ "Delete route": "\uB77C\uC6B0\uD2B8 \uC0AD\uC81C",
917
+ "Are you sure you want to hide these routes in menu?": "\uC774 \uB77C\uC6B0\uD2B8\uB97C \uBA54\uB274\uC5D0 \uC228\uAE30\uC2DC\uACA0\uC2B5\uB2C8\uAE4C?",
918
+ "Are you sure you want to show these routes in menu?": "\uC774 \uB77C\uC6B0\uD2B8\uB97C \uBA54\uB274\uC5D0 \uD45C\uC2DC\uD558\uC2DC\uACA0\uC2B5\uB2C8\uAE4C?",
919
+ "Are you sure you want to hide this menu?": "\uC774 \uBA54\uB274\uB97C \uC228\uAE30\uC2DC\uACA0\uC2B5\uB2C8\uAE4C?",
920
+ "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.": "\uC228\uAE30\uBA74 \uC774 \uBA54\uB274\uB294 \uBA54\uB274 \uBC14\uC5D0 \uB354 \uC774\uC0C1 \uD45C\uC2DC\uB418\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4. \uB2E4\uC2DC \uD45C\uC2DC\uD558\uB824\uBA74 \uB77C\uC6B0\uD2B8 \uAD00\uB9AC \uD398\uC774\uC9C0\uC5D0\uC11C \uC124\uC815\uD574\uC57C \uD569\uB2C8\uB2E4.",
921
+ "If selected, the page will display Tab pages.": "\uC120\uD0DD\uB418\uBA74 \uD398\uC774\uC9C0\uB294 \uD0ED \uD398\uC774\uC9C0\uB97C \uD45C\uC2DC\uD569\uB2C8\uB2E4.",
922
+ "If selected, the route will be displayed in the menu.": "\uC120\uD0DD\uB418\uBA74 \uB77C\uC6B0\uD2B8\uB294 \uBA54\uB274\uC5D0 \uD45C\uC2DC\uB429\uB2C8\uB2E4."
894
923
  };