@nocobase/client 2.0.0-beta.9 → 2.0.1

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 (137) hide show
  1. package/.dumirc.ts +8 -0
  2. package/es/ai/ai-manager.d.ts +15 -0
  3. package/es/ai/index.d.ts +11 -0
  4. package/es/ai/tools-manager/hooks/context.d.ts +17 -0
  5. package/es/ai/tools-manager/hooks/index.d.ts +11 -0
  6. package/es/ai/tools-manager/hooks/provider.d.ts +16 -0
  7. package/es/ai/tools-manager/index.d.ts +21 -0
  8. package/es/ai/tools-manager/types.d.ts +80 -0
  9. package/es/ai/utils.d.ts +10 -0
  10. package/es/api-client/APIClient.d.ts +1 -0
  11. package/es/application/Application.d.ts +2 -0
  12. package/es/application/Plugin.d.ts +1 -0
  13. package/es/application/globalOperators.d.ts +11 -0
  14. package/es/block-provider/TableUidContext.d.ts +10 -0
  15. package/es/data-source/collection/utils.d.ts +2 -4
  16. package/es/flow/actions/blockHeight.d.ts +9 -0
  17. package/es/flow/actions/filterFormDefaultValues.d.ts +9 -0
  18. package/es/flow/actions/formAssignRules.d.ts +9 -0
  19. package/es/flow/actions/index.d.ts +4 -0
  20. package/es/flow/actions/numberFormat.d.ts +9 -0
  21. package/es/flow/components/BlockItemCard.d.ts +1 -0
  22. package/es/flow/components/ConditionBuilder.d.ts +2 -0
  23. package/es/flow/components/DefaultValue.d.ts +1 -0
  24. package/es/flow/components/FieldAssignEditor.d.ts +32 -0
  25. package/es/flow/components/FieldAssignExactDatePicker.d.ts +23 -0
  26. package/es/flow/components/FieldAssignRulesEditor.d.ts +70 -0
  27. package/es/flow/components/FieldAssignValueInput.d.ts +42 -1
  28. package/es/flow/components/RunJSValueEditor.d.ts +19 -0
  29. package/es/flow/components/code-editor/core/EditorCore.d.ts +3 -1
  30. package/es/flow/components/code-editor/formatDocInfo.d.ts +17 -0
  31. package/es/flow/components/code-editor/hooks/useCodeRunner.d.ts +3 -1
  32. package/es/flow/components/code-editor/index.d.ts +1 -0
  33. package/es/flow/components/code-editor/linter.d.ts +10 -2
  34. package/es/flow/components/code-editor/runjsCompletionSource.d.ts +20 -0
  35. package/es/flow/components/code-editor/runjsDiagnostics.d.ts +43 -0
  36. package/es/flow/components/fieldAssignOptions.d.ts +23 -0
  37. package/es/flow/components/filter/LinkageFilterItem.d.ts +4 -1
  38. package/es/flow/components/useAssociationTitleFieldSync.d.ts +13 -0
  39. package/es/flow/index.d.ts +1 -0
  40. package/es/flow/internal/utils/modelUtils.d.ts +23 -0
  41. package/es/flow/internal/utils/saveStepParamsWithSubModels.d.ts +11 -0
  42. package/es/flow/internal/utils/titleFieldQuickSync.d.ts +35 -0
  43. package/es/flow/models/base/BlockModel.d.ts +3 -1
  44. package/es/flow/models/base/CollectionBlockModel.d.ts +29 -56
  45. package/es/flow/models/base/PageModel/PageModel.d.ts +16 -0
  46. package/es/flow/models/blocks/details/DetailsGridModel.d.ts +1 -0
  47. package/es/flow/models/blocks/details/utils.d.ts +16 -0
  48. package/es/flow/models/blocks/filter-form/FieldOperatorSelect.d.ts +10 -0
  49. package/es/flow/models/blocks/filter-form/FilterFormBlockModel.d.ts +6 -0
  50. package/es/flow/models/blocks/filter-form/FilterFormItemModel.d.ts +5 -37
  51. package/es/flow/models/blocks/filter-form/customFieldOperators.d.ts +34 -0
  52. package/es/flow/models/blocks/filter-form/fields/FilterFormCustomFieldModel.d.ts +16 -0
  53. package/es/flow/models/blocks/filter-form/fields/FilterFormCustomRecordSelectFieldModel.d.ts +20 -0
  54. package/es/flow/models/blocks/filter-form/fields/FilterFormRecordSelectFieldModel.d.ts +12 -0
  55. package/es/flow/models/blocks/filter-form/fields/index.d.ts +2 -0
  56. package/es/flow/models/blocks/filter-form/index.d.ts +4 -0
  57. package/es/flow/models/blocks/filter-form/legacyDefaultValueMigration.d.ts +13 -0
  58. package/es/flow/models/blocks/filter-form/valueNormalization.d.ts +17 -0
  59. package/es/flow/models/blocks/filter-manager/flow-actions/defaultOperator.d.ts +1 -3
  60. package/es/flow/models/blocks/form/CreateFormModel.d.ts +2 -1
  61. package/es/flow/models/blocks/form/EditFormModel.d.ts +2 -1
  62. package/es/flow/models/blocks/form/FormAssociationFieldGroupModel.d.ts +12 -0
  63. package/es/flow/models/blocks/form/FormAssociationItemModel.d.ts +39 -0
  64. package/es/flow/models/blocks/form/FormBlockModel.d.ts +34 -2
  65. package/es/flow/models/blocks/form/FormGridModel.d.ts +1 -0
  66. package/es/flow/models/blocks/form/QuickEditFormModel.d.ts +4 -1
  67. package/es/flow/models/blocks/form/assignRulesUpdateAssociationValues.d.ts +18 -0
  68. package/es/flow/models/blocks/form/dynamicNamePath.d.ts +19 -0
  69. package/es/flow/models/blocks/form/index.d.ts +2 -0
  70. package/es/flow/models/blocks/form/legacyDefaultValueMigration.d.ts +13 -0
  71. package/es/flow/models/blocks/form/submitHandler.d.ts +1 -1
  72. package/es/flow/models/blocks/form/submitValues.d.ts +19 -0
  73. package/es/flow/models/blocks/form/value-runtime/conditions.d.ts +9 -0
  74. package/es/flow/models/blocks/form/value-runtime/deps.d.ts +23 -0
  75. package/es/flow/models/blocks/form/value-runtime/form-patch.d.ts +19 -0
  76. package/es/flow/models/blocks/form/value-runtime/index.d.ts +11 -0
  77. package/es/flow/models/blocks/form/value-runtime/path.d.ts +25 -0
  78. package/es/flow/models/blocks/form/value-runtime/rules.d.ts +129 -0
  79. package/es/flow/models/blocks/form/value-runtime/runtime.d.ts +75 -0
  80. package/es/flow/models/blocks/form/value-runtime/types.d.ts +62 -0
  81. package/es/flow/models/blocks/form/value-runtime/utils.d.ts +12 -0
  82. package/es/flow/models/blocks/shared/legacyDefaultValueMigrationBase.d.ts +20 -0
  83. package/es/flow/models/blocks/table/TableSelectModel.d.ts +0 -1
  84. package/es/flow/models/blocks/table/dragSort/dragSortComponents.d.ts +14 -0
  85. package/es/flow/models/blocks/table/dragSort/dragSortHooks.d.ts +13 -0
  86. package/es/flow/models/blocks/table/dragSort/dragSortSettings.d.ts +39 -0
  87. package/es/flow/models/blocks/table/dragSort/dragSortUtils.d.ts +37 -0
  88. package/es/flow/models/blocks/table/dragSort/index.d.ts +12 -0
  89. package/es/flow/models/blocks/table/utils.d.ts +8 -8
  90. package/es/flow/models/fields/AssociationFieldModel/CascadeSelectFieldModel.d.ts +16 -0
  91. package/es/flow/models/fields/AssociationFieldModel/PopupSubTableFieldModel/PopupSubTableActionGroupModel.d.ts +11 -0
  92. package/es/flow/models/fields/AssociationFieldModel/PopupSubTableFieldModel/PopupSubTableActionsColumnModel.d.ts +19 -0
  93. package/es/flow/models/fields/AssociationFieldModel/PopupSubTableFieldModel/PopupSubTableFieldModel.d.ts +30 -0
  94. package/es/flow/models/fields/AssociationFieldModel/PopupSubTableFieldModel/actions/PopupSubTableEditActionModel.d.ts +28 -0
  95. package/es/flow/models/fields/AssociationFieldModel/PopupSubTableFieldModel/actions/PopupSubTableFormSubmitActionModel.d.ts +16 -0
  96. package/es/flow/models/fields/AssociationFieldModel/PopupSubTableFieldModel/actions/PopupSubTableRemoveActionModel.d.ts +14 -0
  97. package/es/flow/models/fields/AssociationFieldModel/PopupSubTableFieldModel/blocks/PopupSubTableFormModel.d.ts +36 -0
  98. package/es/flow/models/fields/AssociationFieldModel/PopupSubTableFieldModel/index.d.ts +17 -0
  99. package/es/flow/models/fields/AssociationFieldModel/RecordPickerFieldModel.d.ts +8 -1
  100. package/es/flow/models/fields/AssociationFieldModel/RecordSelectFieldModel.d.ts +15 -0
  101. package/es/flow/models/fields/AssociationFieldModel/SubTableFieldModel/SubTableColumnModel.d.ts +4 -1
  102. package/es/flow/models/fields/AssociationFieldModel/index.d.ts +1 -0
  103. package/es/flow/models/fields/AssociationFieldModel/itemChain.d.ts +94 -0
  104. package/es/flow/models/fields/AssociationFieldModel/recordSelectShared.d.ts +15 -5
  105. package/es/flow/models/fields/RichTextFieldModel/registerFontSize.d.ts +9 -0
  106. package/es/flow/models/fields/RichTextFieldModel/registerImageResize.d.ts +9 -0
  107. package/es/flow/models/fields/RichTextFieldModel/registerSmartBreak.d.ts +12 -0
  108. package/es/flow/models/fields/index.d.ts +0 -1
  109. package/es/flow/utils/useJsonTemplateResolver.d.ts +9 -0
  110. package/es/index.d.ts +1 -0
  111. package/es/index.mjs +35733 -24106
  112. package/es/route-switch/antd/admin-layout/index.d.ts +1 -1
  113. package/es/schema-component/antd/form-item/hooks/useLazyLoadDisplayAssociationFieldsOfForm.d.ts +26 -0
  114. package/es/variables/index.d.ts +1 -1
  115. package/lib/index.js +444 -297
  116. package/lib/locale/de-DE.json +2 -0
  117. package/lib/locale/en-US.json +51 -0
  118. package/lib/locale/es-ES.json +2 -0
  119. package/lib/locale/fr-FR.json +2 -0
  120. package/lib/locale/hu-HU.json +2 -0
  121. package/lib/locale/id-ID.json +2 -0
  122. package/lib/locale/it-IT.json +2 -0
  123. package/lib/locale/ja-JP.json +2 -0
  124. package/lib/locale/ko-KR.json +2 -0
  125. package/lib/locale/nl-NL.json +2 -0
  126. package/lib/locale/pt-BR.json +2 -0
  127. package/lib/locale/ru-RU.json +2 -0
  128. package/lib/locale/tr-TR.json +2 -0
  129. package/lib/locale/uk-UA.json +2 -0
  130. package/lib/locale/vi-VN.json +2 -0
  131. package/lib/locale/zh-CN.json +77 -7
  132. package/lib/locale/zh-TW.json +12 -0
  133. package/package.json +8 -7
  134. package/es/flow/models/fields/UploadFieldModel.d.ts +0 -22
  135. package/es/index-C3fHjsMw.mjs +0 -279
  136. package/lib/index-C3fHjsMw-Phbdz1-R.js +0 -2249
  137. package/lib/style.css +0 -1
@@ -1424,6 +1424,8 @@
1424
1424
  "Use simple pagination mode": "Use simple pagination mode",
1425
1425
  "Use the same time zone (GMT) for all users": "Verwenden Sie die gleiche Zeitzone (GMT) für alle Benutzer",
1426
1426
  "Used for drag and drop sorting scenarios, supporting grouping sorting": "Wird für Drag & Drop-Sortierungsszenarien verwendet und unterstützt Gruppensortierung",
1427
+ "Used as the browser tab title when this tab is active. Supports variables. Leave empty to use Tab name.": "Used as the browser tab title when this tab is active. Supports variables. Leave empty to use Tab name.",
1428
+ "Used as the browser tab title when tabs are disabled. Supports variables. Leave empty to use Page title.": "Used as the browser tab title when tabs are disabled. Supports variables. Leave empty to use Page title.",
1427
1429
  "User": "Benutzer",
1428
1430
  "User not found. Please sign in again to continue.": "Benutzer nicht gefunden. Bitte melden Sie sich erneut an, um fortzufahren.",
1429
1431
  "User password changed, please signin again.": "Benutzerpasswort geändert, bitte melden Sie sich erneut an.",
@@ -71,8 +71,17 @@
71
71
  "Add {{type}} after \"{{title}}\"": "Add {{type}} after \"{{title}}\"",
72
72
  "Add {{type}} before \"{{title}}\"": "Add {{type}} before \"{{title}}\"",
73
73
  "Add {{type}} in \"{{title}}\"": "Add {{type}} in \"{{title}}\"",
74
+ "Advanced": "Advanced",
74
75
  "Advanced type": "Advanced",
76
+ "No available title fields": "No available title fields",
77
+ "Please choose a different title field before syncing": "Please choose a different title field before syncing",
78
+ "Sync selected title field to collection": "Sync selected title field to collection",
79
+ "Sync title field": "Sync title field",
80
+ "This will update the collection title field globally. Continue?": "This will update the collection title field globally. Continue?",
75
81
  "After": "After",
82
+ "After built-in flow": "After specific flow",
83
+ "After built-in flows": "After all flows",
84
+ "After built-in flow step": "After specific flow step",
76
85
  "After change": "After change",
77
86
  "After clicking the custom button, the following field values will be assigned according to the following form.": "After clicking the custom button, the following field values will be assigned according to the following form.",
78
87
  "After clicking the custom button, the following fields of the current record will be saved according to the following form.": "After clicking the custom button, the following fields of the current record will be saved according to the following form.",
@@ -146,11 +155,16 @@
146
155
  "Assign data scope for the template": "Assign data scope for the template",
147
156
  "Assign field values": "Assign field values",
148
157
  "Assign value": "Assign value",
158
+ "A pre-filled value. Editable, for new entries only, and won’t affect existing data (including empty values).": "A pre-filled value. Editable, for new entries only, and won’t affect existing data (including empty values)",
159
+ "A system-set value. Read-only.": "A system-set value. Read-only",
149
160
  "Assignment mode": "Assignment mode",
150
161
  "Associate": "Associate",
162
+ "Field values": "Field values",
163
+ "Fixed value": "Fixed value",
151
164
  "Associated records": "Associated records",
152
165
  "Association field settings": "Association field settings",
153
166
  "Association fields": "Association fields",
167
+ "Search association fields": "Search association fields",
154
168
  "Association fields filter": "Association fields filter",
155
169
  "Association select settings": "Association select settings",
156
170
  "Association table settings": "Association table settings",
@@ -178,6 +192,9 @@
178
192
  "Basic": "Basic",
179
193
  "Basic configuration": "Basic configuration",
180
194
  "Before": "Before",
195
+ "Before all flows": "Before all flows",
196
+ "Before built-in flow": "Before specific flow",
197
+ "Before built-in flow step": "Before specific flow step",
181
198
  "Before change": "Before change",
182
199
  "Before render": "Before render",
183
200
  "Blank block": "Blank block",
@@ -188,6 +205,8 @@
188
205
  "Block template": "Block template",
189
206
  "Block templates": "Block templates",
190
207
  "Block title": "Block title",
208
+ "Built-in flow": "Specific flow",
209
+ "Built-in flow step": "Specific flow step",
191
210
  "Block type": "Block type",
192
211
  "Blocks": "Blocks",
193
212
  "Blue": "Blue",
@@ -203,6 +222,7 @@
203
222
  "Button icon": "Button icon",
204
223
  "Button settings": "Button settings",
205
224
  "Button title": "Button title",
225
+ "Button tooltip": "Button tooltip",
206
226
  "Button type": "Button type",
207
227
  "Calculation engine": "Calculation engine",
208
228
  "Calendar": "Calendar",
@@ -337,6 +357,7 @@
337
357
  "Current device type": "Current device type",
338
358
  "Current form": "Current form",
339
359
  "Current object": "Current object",
360
+ "Current item": "Current item",
340
361
  "Current popup": "Current popup",
341
362
  "Current popup parent record": "Current popup parent record",
342
363
  "Current popup record": "Current popup record",
@@ -550,6 +571,7 @@
550
571
  "Enter collection name": "Enter collection name",
551
572
  "Enter end accessor": "Enter end accessor",
552
573
  "Enter field title": "Enter field title",
574
+ "Enter flow title": "Enter flow title",
553
575
  "Enter number of rows to display": "Enter number of rows to display",
554
576
  "Enter page title": "Enter page title",
555
577
  "Enter placeholder text": "Enter placeholder text",
@@ -564,6 +586,9 @@
564
586
  "Exact day": "Exact day",
565
587
  "Execute": "Execute",
566
588
  "Execute JavaScript": "Execute JavaScript",
589
+ "Execution succeeded": "Execution succeeded",
590
+ "Execution timed out": "Execution timed out",
591
+ "Execution timing": "Execution timing",
567
592
  "Exists": "Exists",
568
593
  "Exit fullscreen": "Exit fullscreen",
569
594
  "Expand All": "Expand All",
@@ -581,6 +606,7 @@
581
606
  "Feedback": "Feedback",
582
607
  "Field": "Field",
583
608
  "Field Linkage rules": "Field Linkage rules",
609
+ "Assignment takes precedence over form field assignment": "Assignment takes precedence over form field assignment",
584
610
  "Field assignment": "Field assignment",
585
611
  "Field component": "Field component",
586
612
  "Field display name": "Field display name",
@@ -638,6 +664,7 @@
638
664
  "Form field assignment": "Form field assignment",
639
665
  "Form item settings": "Form item settings",
640
666
  "Form settings": "Form settings",
667
+ "Form block settings": "Form block settings",
641
668
  "Form values": "Form values",
642
669
  "Form values change": "Form values change",
643
670
  "Form variable": "Form variable",
@@ -703,6 +730,8 @@
703
730
  "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.",
704
731
  "Incomplete uploading files need to be resolved": "Incomplete uploading files need to be resolved",
705
732
  "Index": "Index",
733
+ "Index (starts from 0)": "Index (starts from 0)",
734
+ "Attributes": "Attributes",
706
735
  "Individual": "Individual",
707
736
  "Inherited fields": "Inherited fields",
708
737
  "Inherited template": "Inherited template",
@@ -777,6 +806,7 @@
777
806
  "Log in with an existing account": "Log in with an existing account",
778
807
  "Logging and monitoring": "Logging and monitoring",
779
808
  "Logo": "Logo",
809
+ "Logs": "Logs",
780
810
  "Long text": "Long text",
781
811
  "MATHJS_DOC_URL": "https://v2.docs.nocobase.com/calculation-engine/math",
782
812
  "Magenta": "Magenta",
@@ -868,9 +898,11 @@
868
898
  "No configuration available.": "No configuration available.",
869
899
  "No data": "No data",
870
900
  "No event flows": "No event flows",
901
+ "No built-in flows for this event": "No flows available for this event",
871
902
  "No form available for reset.": "No form available for reset.",
872
903
  "No form available for submission.": "No form available for submission.",
873
904
  "No linkage rules": "No linkage rules",
905
+ "No logs yet. Click Run to execute.": "No logs yet. Click Run to execute.",
874
906
  "No pages yet, please configure first": "No pages yet, please configure first",
875
907
  "A 53-bit Snowflake ID designed to be compatible with JavaScript’s safe integer range, providing both time-ordering and uniqueness.": "A 53-bit Snowflake ID designed to be compatible with JavaScript’s safe integer range, providing both time-ordering and uniqueness.",
876
908
  "No parent popup": "No parent popup",
@@ -957,6 +989,7 @@
957
989
  "Parent ID": "Parent ID",
958
990
  "Parent collection fields": "Parent collection fields",
959
991
  "Parent object": "Parent object",
992
+ "Parent item": "Parent item",
960
993
  "Parent popup": "Parent popup",
961
994
  "Parent popup record": "Parent popup record",
962
995
  "Parent record": "Parent record",
@@ -1001,6 +1034,11 @@
1001
1034
  "Please input target block uid": "Please input target block uid",
1002
1035
  "Please input target form uid": "Please input target form uid",
1003
1036
  "Please select": "Please select",
1037
+ "Used for display in the dropdown and selected tags.": "Used for display in the dropdown and selected tags.",
1038
+ "Stored as the field value for filtering (usually the primary key).": "Stored as the field value for filtering (usually the primary key).",
1039
+ "Value field": "Value field",
1040
+ "Please select a built-in flow": "Please select a flow",
1041
+ "Please select a built-in flow step": "Please select a step",
1004
1042
  "Please select field": "Please select field",
1005
1043
  "Please select fields": "Please select fields",
1006
1044
  "Please select fields to filter": "Please select fields to filter",
@@ -1071,6 +1109,7 @@
1071
1109
  "Record ID": "Record ID",
1072
1110
  "Record deleted successfully": "Record deleted successfully",
1073
1111
  "Record picker": "Record picker",
1112
+ "Record select": "Record select",
1074
1113
  "Record unique key": "Record unique key",
1075
1114
  "RecordPicker settings": "RecordPicker settings",
1076
1115
  "Records can be sorted": "Records can be sorted",
@@ -1130,6 +1169,8 @@
1130
1169
  "Routes": "Routes",
1131
1170
  "Row click": "Row click",
1132
1171
  "Rows": "Rows",
1172
+ "Run": "Run",
1173
+ "Run preview failed": "Run preview failed",
1133
1174
  "SQL collection": "SQL collection",
1134
1175
  "Save": "Save",
1135
1176
  "Save action": "Save action",
@@ -1155,10 +1196,13 @@
1155
1196
  "Search parameters": "Search parameters",
1156
1197
  "Search plugin": "Search plugin",
1157
1198
  "Search plugin...": "Search plugin...",
1199
+ "Search snippets (name / prefix / body / group)": "Search snippets (name / prefix / body / group)",
1158
1200
  "Second": "Second",
1159
1201
  "Secondary confirmation": "Secondary confirmation",
1160
1202
  "Security": "Security",
1161
1203
  "Select": "Select",
1204
+ "Select a built-in flow": "Select a flow",
1205
+ "Select a built-in flow step": "Select a step",
1162
1206
  "Select a source field to use metadata of the field": "Select a source field to use metadata of the field",
1163
1207
  "Select a variable": "Select a variable",
1164
1208
  "Select all": "Select all",
@@ -1207,6 +1251,7 @@
1207
1251
  "Set field value": "Set field value",
1208
1252
  "Set form field state": "Set form field state",
1209
1253
  "Set form field value": "Set form field value",
1254
+ "This setting has been moved to": "This setting has been moved to",
1210
1255
  "Set state": "Set state",
1211
1256
  "Set the count of columns displayed in a row": "Set the count of columns displayed in a row",
1212
1257
  "Set the data scope": "Set the data scope",
@@ -1241,6 +1286,7 @@
1241
1286
  "Skip getting the total number of table records during paging to speed up loading. It is recommended to enable this option for data tables with a large amount of data": "Skip getting the total number of table records during paging to speed up loading. It is recommended to enable this option for data tables with a large amount of data",
1242
1287
  "Skip required validation": "Skip required validation",
1243
1288
  "Small": "Small",
1289
+ "Snippets": "Snippets",
1244
1290
  "Snowflake ID (53-bit)": "Snowflake ID (53-bit)",
1245
1291
  "SmartTv": "SmartTv",
1246
1292
  "Some files are not uploaded correctly, please check.": "Some files are not uploaded correctly, please check.",
@@ -1385,6 +1431,7 @@
1385
1431
  "Tooltip": "Tooltip",
1386
1432
  "Top left": "Top left",
1387
1433
  "Top right": "Top right",
1434
+ "Total count": "Total count",
1388
1435
  "Total {{count}} items": "Total {{count}} items",
1389
1436
  "Tree collection": "Tree collection",
1390
1437
  "Tree table": "Tree table",
@@ -1408,6 +1455,7 @@
1408
1455
  "Unique": "Unique",
1409
1456
  "Unit conversion": "Unit conversion",
1410
1457
  "Unix Timestamp": "Unix Timestamp",
1458
+ "Unknown error": "Unknown error",
1411
1459
  "Unknown field type": "Unknown field type",
1412
1460
  "Unnamed": "Unnamed",
1413
1461
  "Unpinned": "Unpinned",
@@ -1429,9 +1477,12 @@
1429
1477
  "Upload new version": "Upload new version",
1430
1478
  "Upload plugin": "Upload plugin",
1431
1479
  "Uploading": "Uploading",
1480
+ "Use return to output value": "Use return to output value",
1432
1481
  "Use simple pagination mode": "Use simple pagination mode",
1433
1482
  "Use the same time zone (GMT) for all users": "Use the same time zone (GMT) for all users",
1434
1483
  "Used for drag and drop sorting scenarios, supporting grouping sorting": "Used for drag and drop sorting scenarios, supporting grouping sorting",
1484
+ "Used as the browser tab title when this tab is active. Supports variables. Leave empty to use Tab name.": "Used as the browser tab title when this tab is active. Supports variables. Leave empty to use Tab name.",
1485
+ "Used as the browser tab title when tabs are disabled. Supports variables. Leave empty to use Page title.": "Used as the browser tab title when tabs are disabled. Supports variables. Leave empty to use Page title.",
1435
1486
  "User": "User",
1436
1487
  "User not found. Please sign in again to continue.": "User not found. Please sign in again to continue.",
1437
1488
  "User password changed, please signin again.": "User password changed, please signin again.",
@@ -1449,6 +1449,8 @@
1449
1449
  "Use the built-in static file server": "Utilizar el servidor de archivos estático incorporado",
1450
1450
  "Use the same time zone (GMT) for all users": "Utilizar la misma zona horaria (GMT) para todos los usuarios",
1451
1451
  "Used for drag and drop sorting scenarios, supporting grouping sorting": "Used for drag and drop sorting scenarios, supporting grouping sorting",
1452
+ "Used as the browser tab title when this tab is active. Supports variables. Leave empty to use Tab name.": "Used as the browser tab title when this tab is active. Supports variables. Leave empty to use Tab name.",
1453
+ "Used as the browser tab title when tabs are disabled. Supports variables. Leave empty to use Page title.": "Used as the browser tab title when tabs are disabled. Supports variables. Leave empty to use Page title.",
1452
1454
  "User": "Usuario",
1453
1455
  "User not found. Please sign in again to continue.": "User not found. Please sign in again to continue.",
1454
1456
  "User password changed, please signin again.": "User password changed, please signin again.",
@@ -1428,6 +1428,8 @@
1428
1428
  "Use simple pagination mode": "Use simple pagination mode",
1429
1429
  "Use the same time zone (GMT) for all users": "Utiliser le même fuseau horaire (GMT) pour tous les utilisateurs",
1430
1430
  "Used for drag and drop sorting scenarios, supporting grouping sorting": "Used for drag and drop sorting scenarios, supporting grouping sorting",
1431
+ "Used as the browser tab title when this tab is active. Supports variables. Leave empty to use Tab name.": "Used as the browser tab title when this tab is active. Supports variables. Leave empty to use Tab name.",
1432
+ "Used as the browser tab title when tabs are disabled. Supports variables. Leave empty to use Page title.": "Used as the browser tab title when tabs are disabled. Supports variables. Leave empty to use Page title.",
1431
1433
  "User": "Utilisateur",
1432
1434
  "User not found. Please sign in again to continue.": "User not found. Please sign in again to continue.",
1433
1435
  "User password changed, please signin again.": "User password changed, please signin again.",
@@ -1424,6 +1424,8 @@
1424
1424
  "Use simple pagination mode": "Egyszerű lapozási mód használata",
1425
1425
  "Use the same time zone (GMT) for all users": "Minden felhasználó számára ugyanazt az időzónát (GMT) használja",
1426
1426
  "Used for drag and drop sorting scenarios, supporting grouping sorting": "Húzd és ejts rendezési forgatókönyvekhez használva, csoportosítási rendezés támogatásával",
1427
+ "Used as the browser tab title when this tab is active. Supports variables. Leave empty to use Tab name.": "Used as the browser tab title when this tab is active. Supports variables. Leave empty to use Tab name.",
1428
+ "Used as the browser tab title when tabs are disabled. Supports variables. Leave empty to use Page title.": "Used as the browser tab title when tabs are disabled. Supports variables. Leave empty to use Page title.",
1427
1429
  "User": "Felhasználó",
1428
1430
  "User not found. Please sign in again to continue.": "Felhasználó nem található. Kérjük, jelentkezzen be újra a folytatáshoz.",
1429
1431
  "User password changed, please signin again.": "A felhasználói jelszó megváltozott, kérjük, jelentkezzen be újra.",
@@ -1425,6 +1425,8 @@
1425
1425
  "Use simple pagination mode": "Gunakan mode penomoran halaman sederhana",
1426
1426
  "Use the same time zone (GMT) for all users": "Gunakan zona waktu yang sama (GMT) untuk semua pengguna",
1427
1427
  "Used for drag and drop sorting scenarios, supporting grouping sorting": "Digunakan untuk skenario pengurutan seret dan lepas, mendukung pengurutan kelompok",
1428
+ "Used as the browser tab title when this tab is active. Supports variables. Leave empty to use Tab name.": "Used as the browser tab title when this tab is active. Supports variables. Leave empty to use Tab name.",
1429
+ "Used as the browser tab title when tabs are disabled. Supports variables. Leave empty to use Page title.": "Used as the browser tab title when tabs are disabled. Supports variables. Leave empty to use Page title.",
1428
1430
  "User": "Pengguna",
1429
1431
  "User not found. Please sign in again to continue.": "Pengguna tidak ditemukan. Harap masuk lagi untuk melanjutkan.",
1430
1432
  "User password changed, please signin again.": "Kata sandi pengguna berubah, harap masuk lagi.",
@@ -1424,6 +1424,8 @@
1424
1424
  "Use simple pagination mode": "Usa modalità di paginazione semplice",
1425
1425
  "Use the same time zone (GMT) for all users": "Usa lo stesso fuso orario (GMT) per tutti gli utenti",
1426
1426
  "Used for drag and drop sorting scenarios, supporting grouping sorting": "Utilizzato per scenari con drag and drop, supporta ordinamento raggruppato",
1427
+ "Used as the browser tab title when this tab is active. Supports variables. Leave empty to use Tab name.": "Used as the browser tab title when this tab is active. Supports variables. Leave empty to use Tab name.",
1428
+ "Used as the browser tab title when tabs are disabled. Supports variables. Leave empty to use Page title.": "Used as the browser tab title when tabs are disabled. Supports variables. Leave empty to use Page title.",
1427
1429
  "User": "Utente",
1428
1430
  "User not found. Please sign in again to continue.": "Impossibile trovare l'utente. Accedi nuovamente per continuare.",
1429
1431
  "User password changed, please signin again.": "La password dell'utente è stata modificata, accedi di nuovo.",
@@ -1441,6 +1441,8 @@
1441
1441
  "Use simple pagination mode": "シンプルなページネーションモードを使用",
1442
1442
  "Use the same time zone (GMT) for all users": "すべてのユーザーが同じタイムゾーン(GMT)を使用する",
1443
1443
  "Used for drag and drop sorting scenarios, supporting grouping sorting": "ドラッグ&ドロップによる並べ替えで使用され、グループ分けソートをサポート",
1444
+ "Used as the browser tab title when this tab is active. Supports variables. Leave empty to use Tab name.": "Used as the browser tab title when this tab is active. Supports variables. Leave empty to use Tab name.",
1445
+ "Used as the browser tab title when tabs are disabled. Supports variables. Leave empty to use Page title.": "Used as the browser tab title when tabs are disabled. Supports variables. Leave empty to use Page title.",
1444
1446
  "User": "ユーザー",
1445
1447
  "User not found. Please sign in again to continue.": "ユーザーが見つかりません。再度ログインしてください。",
1446
1448
  "User password changed, please signin again.": "ユーザーパスワードが変更されました。再度ログインしてください。",
@@ -1437,6 +1437,8 @@
1437
1437
  "Use simple pagination mode": "간단한 페이지네이션 모드 사용",
1438
1438
  "Use the same time zone (GMT) for all users": "모든 사용자가 동일한 시간대(GMT)를 사용합니다",
1439
1439
  "Used for drag and drop sorting scenarios, supporting grouping sorting": "드래그 앤 드롭 정렬 시나리오에 사용되며, 그룹별 정렬을 지원합니다.",
1440
+ "Used as the browser tab title when this tab is active. Supports variables. Leave empty to use Tab name.": "Used as the browser tab title when this tab is active. Supports variables. Leave empty to use Tab name.",
1441
+ "Used as the browser tab title when tabs are disabled. Supports variables. Leave empty to use Page title.": "Used as the browser tab title when tabs are disabled. Supports variables. Leave empty to use Page title.",
1440
1442
  "User": "사용자",
1441
1443
  "User not found. Please sign in again to continue.": "사용자를 찾을 수 없습니다. 계속하려면 다시 로그인하세요.",
1442
1444
  "User password changed, please signin again.": "사용자 비밀번호가 변경되었습니다. 다시 로그인해 주세요.",
@@ -1426,6 +1426,8 @@
1426
1426
  "Use simple pagination mode": "Gebruik eenvoudige paginering",
1427
1427
  "Use the same time zone (GMT) for all users": "Gebruik dezelfde tijdzone (GMT) voor alle gebruikers",
1428
1428
  "Used for drag and drop sorting scenarios, supporting grouping sorting": "Gebruikt voor drag and drop sorteren, met ondersteuning voor groeperen",
1429
+ "Used as the browser tab title when this tab is active. Supports variables. Leave empty to use Tab name.": "Used as the browser tab title when this tab is active. Supports variables. Leave empty to use Tab name.",
1430
+ "Used as the browser tab title when tabs are disabled. Supports variables. Leave empty to use Page title.": "Used as the browser tab title when tabs are disabled. Supports variables. Leave empty to use Page title.",
1429
1431
  "User": "Gebruiker",
1430
1432
  "User not found. Please sign in again to continue.": "Gebruiker niet gevonden. Meld je opnieuw aan om verder te gaan.",
1431
1433
  "User password changed, please signin again.": "Gebruikerswachtwoord gewijzigd, meld je opnieuw aan.",
@@ -1487,6 +1487,8 @@
1487
1487
  "Use the built-in static file server": "Usar o servidor de arquivo estático integrado",
1488
1488
  "Use the same time zone (GMT) for all users": "Use the same time zone (GMT) for all users",
1489
1489
  "Used for drag and drop sorting scenarios, supporting grouping sorting": "Used for drag and drop sorting scenarios, supporting grouping sorting",
1490
+ "Used as the browser tab title when this tab is active. Supports variables. Leave empty to use Tab name.": "Used as the browser tab title when this tab is active. Supports variables. Leave empty to use Tab name.",
1491
+ "Used as the browser tab title when tabs are disabled. Supports variables. Leave empty to use Page title.": "Used as the browser tab title when tabs are disabled. Supports variables. Leave empty to use Page title.",
1490
1492
  "User": "User",
1491
1493
  "User not found. Please sign in again to continue.": "User not found. Please sign in again to continue.",
1492
1494
  "User password changed, please signin again.": "User password changed, please signin again.",
@@ -1430,6 +1430,8 @@
1430
1430
  "Use simple pagination mode": "Использовать простой режим пагинации",
1431
1431
  "Use the same time zone (GMT) for all users": "Использовать одну временную зону (GMT) для всех пользователей",
1432
1432
  "Used for drag and drop sorting scenarios, supporting grouping sorting": "Используется для сценариев сортировки перетаскиванием, поддерживает групповую сортировку",
1433
+ "Used as the browser tab title when this tab is active. Supports variables. Leave empty to use Tab name.": "Used as the browser tab title when this tab is active. Supports variables. Leave empty to use Tab name.",
1434
+ "Used as the browser tab title when tabs are disabled. Supports variables. Leave empty to use Page title.": "Used as the browser tab title when tabs are disabled. Supports variables. Leave empty to use Page title.",
1433
1435
  "User": "Пользователь",
1434
1436
  "User not found. Please sign in again to continue.": "Пользователь не найден. Пожалуйста, войдите снова, чтобы продолжить.",
1435
1437
  "User password changed, please signin again.": "Пароль пользователя изменен, пожалуйста, войдите снова.",
@@ -1431,6 +1431,8 @@
1431
1431
  "Use simple pagination mode": "Use simple pagination mode",
1432
1432
  "Use the same time zone (GMT) for all users": "Tüm kullanıcılar için aynı saat dilimini (GMT) kullanın",
1433
1433
  "Used for drag and drop sorting scenarios, supporting grouping sorting": "Used for drag and drop sorting scenarios, supporting grouping sorting",
1434
+ "Used as the browser tab title when this tab is active. Supports variables. Leave empty to use Tab name.": "Used as the browser tab title when this tab is active. Supports variables. Leave empty to use Tab name.",
1435
+ "Used as the browser tab title when tabs are disabled. Supports variables. Leave empty to use Page title.": "Used as the browser tab title when tabs are disabled. Supports variables. Leave empty to use Page title.",
1434
1436
  "User": "Kullanıcı",
1435
1437
  "User not found. Please sign in again to continue.": "User not found. Please sign in again to continue.",
1436
1438
  "User password changed, please signin again.": "User password changed, please signin again.",
@@ -1449,6 +1449,8 @@
1449
1449
  "Use the built-in static file server": "Використовувати вбудований статичний файловий сервер",
1450
1450
  "Use the same time zone (GMT) for all users": "Використовувати одну і ту ж часову зону (GMT) для всіх користувачів",
1451
1451
  "Used for drag and drop sorting scenarios, supporting grouping sorting": "Used for drag and drop sorting scenarios, supporting grouping sorting",
1452
+ "Used as the browser tab title when this tab is active. Supports variables. Leave empty to use Tab name.": "Used as the browser tab title when this tab is active. Supports variables. Leave empty to use Tab name.",
1453
+ "Used as the browser tab title when tabs are disabled. Supports variables. Leave empty to use Page title.": "Used as the browser tab title when tabs are disabled. Supports variables. Leave empty to use Page title.",
1452
1454
  "User": "Користувач",
1453
1455
  "User not found. Please sign in again to continue.": "User not found. Please sign in again to continue.",
1454
1456
  "User password changed, please signin again.": "User password changed, please signin again.",
@@ -1424,6 +1424,8 @@
1424
1424
  "Use simple pagination mode": "Use simple pagination mode",
1425
1425
  "Use the same time zone (GMT) for all users": "Use the same time zone (GMT) for all users",
1426
1426
  "Used for drag and drop sorting scenarios, supporting grouping sorting": "Used for drag and drop sorting scenarios, supporting grouping sorting",
1427
+ "Used as the browser tab title when this tab is active. Supports variables. Leave empty to use Tab name.": "Used as the browser tab title when this tab is active. Supports variables. Leave empty to use Tab name.",
1428
+ "Used as the browser tab title when tabs are disabled. Supports variables. Leave empty to use Page title.": "Used as the browser tab title when tabs are disabled. Supports variables. Leave empty to use Page title.",
1427
1429
  "User": "Người dùng",
1428
1430
  "User not found. Please sign in again to continue.": "User not found. Please sign in again to continue.",
1429
1431
  "User password changed, please signin again.": "User password changed, please signin again.",