@ibiz-template/runtime 0.7.16 → 0.7.17

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 (66) hide show
  1. package/dist/index.esm.js +1422 -166
  2. package/dist/index.system.min.js +1 -1
  3. package/out/controller/control/app-menu/app-menu.controller.d.ts +23 -0
  4. package/out/controller/control/app-menu/app-menu.controller.d.ts.map +1 -1
  5. package/out/controller/control/app-menu/app-menu.controller.js +38 -0
  6. package/out/controller/control/app-menu/custom-app-menu.controller.d.ts +1 -1
  7. package/out/controller/control/app-menu/custom-app-menu.controller.d.ts.map +1 -1
  8. package/out/controller/control/app-menu/custom-app-menu.controller.js +11 -4
  9. package/out/controller/control/data-view/data-view.controller.d.ts.map +1 -1
  10. package/out/controller/control/data-view/data-view.controller.js +1 -1
  11. package/out/controller/control/form/edit-form/edit-form.service.d.ts +1 -1
  12. package/out/controller/control/form/edit-form/edit-form.service.d.ts.map +1 -1
  13. package/out/controller/control/form/edit-form/edit-form.service.js +3 -2
  14. package/out/controller/control/grid/grid/grid.service.d.ts +1 -1
  15. package/out/controller/control/grid/grid/grid.service.d.ts.map +1 -1
  16. package/out/controller/control/grid/grid/grid.service.js +3 -2
  17. package/out/controller/control/kanban/kanban.controller.d.ts.map +1 -1
  18. package/out/controller/control/kanban/kanban.controller.js +1 -0
  19. package/out/controller/control/tree-grid-ex/tree-grid-ex-row.state.d.ts.map +1 -1
  20. package/out/controller/control/tree-grid-ex/tree-grid-ex-row.state.js +21 -0
  21. package/out/controller/hub.controller.d.ts +2 -2
  22. package/out/controller/hub.controller.d.ts.map +1 -1
  23. package/out/controller/utils/data-file-util/data-file-util.js +2 -2
  24. package/out/index.d.ts +1 -0
  25. package/out/index.d.ts.map +1 -1
  26. package/out/index.js +1 -0
  27. package/out/interface/controller/app.d.ts +3 -2
  28. package/out/interface/controller/app.d.ts.map +1 -1
  29. package/out/interface/controller/state/control/i-kanban.state.d.ts +4 -0
  30. package/out/interface/controller/state/control/i-kanban.state.d.ts.map +1 -1
  31. package/out/interface/service/i-auth-result/i-auth-result.d.ts +23 -0
  32. package/out/interface/service/i-auth-result/i-auth-result.d.ts.map +1 -0
  33. package/out/interface/service/i-auth-result/i-auth-result.js +1 -0
  34. package/out/interface/service/index.d.ts +1 -0
  35. package/out/interface/service/index.d.ts.map +1 -1
  36. package/out/interface/service/service/i-auth.service.d.ts +3 -2
  37. package/out/interface/service/service/i-auth.service.d.ts.map +1 -1
  38. package/out/interface/util/i-app-util/i-app-util.d.ts +3 -2
  39. package/out/interface/util/i-app-util/i-app-util.d.ts.map +1 -1
  40. package/out/locale/en/index.d.ts +571 -0
  41. package/out/locale/en/index.d.ts.map +1 -0
  42. package/out/locale/en/index.js +571 -0
  43. package/out/locale/index.d.ts +3 -0
  44. package/out/locale/index.d.ts.map +1 -0
  45. package/out/locale/index.js +2 -0
  46. package/out/locale/zh-CN/index.d.ts +569 -0
  47. package/out/locale/zh-CN/index.d.ts.map +1 -0
  48. package/out/locale/zh-CN/index.js +569 -0
  49. package/out/service/dto/method.dto.d.ts.map +1 -1
  50. package/out/service/dto/method.dto.js +11 -4
  51. package/out/service/service/auth/v7-auth.service.d.ts +3 -3
  52. package/out/service/service/auth/v7-auth.service.d.ts.map +1 -1
  53. package/out/service/service/auth/v7-auth.service.js +4 -4
  54. package/out/service/service/entity/method/de-action.d.ts.map +1 -1
  55. package/out/service/service/entity/method/de-action.js +9 -3
  56. package/out/service/service/entity/method/fetch.d.ts.map +1 -1
  57. package/out/service/service/entity/method/fetch.js +4 -0
  58. package/out/service/service/entity/method/method-input.d.ts +1 -1
  59. package/out/service/service/entity/method/method-input.js +1 -1
  60. package/out/service/service/entity/method/method-renturn.d.ts +10 -0
  61. package/out/service/service/entity/method/method-renturn.d.ts.map +1 -1
  62. package/out/service/service/entity/method/method-renturn.js +15 -0
  63. package/out/ui-action/provider/loginout-ui-action-provider.js +1 -1
  64. package/out/ui-logic/ui-logic-node/msg-box-node/msg-box-node.d.ts.map +1 -1
  65. package/out/ui-logic/ui-logic-node/msg-box-node/msg-box-node.js +4 -4
  66. package/package.json +4 -3
package/dist/index.esm.js CHANGED
@@ -10620,6 +10620,7 @@ var MethodDto = class {
10620
10620
  */
10621
10621
  async get(context, data, ignore = false) {
10622
10622
  if (context.srfsimple === true && this.isLocalMode === false) {
10623
+ data = this.format(context, data);
10623
10624
  return data;
10624
10625
  }
10625
10626
  const params = {};
@@ -10710,6 +10711,9 @@ var MethodDto = class {
10710
10711
  async sets(context, data) {
10711
10712
  if (context.srfsimple === true && this.isLocalMode === false) {
10712
10713
  if (data && data.length > 0) {
10714
+ for (let i = 0; i < data.length; i++) {
10715
+ data[i] = this.format(context, data[i]);
10716
+ }
10713
10717
  return data.map((item) => {
10714
10718
  return this.service.createEntity(item);
10715
10719
  });
@@ -10808,8 +10812,13 @@ var MethodDto = class {
10808
10812
  for (let i = 0; i < this.fields.length; i++) {
10809
10813
  const field = this.fields[i];
10810
10814
  const key = field.codeName.toLowerCase();
10811
- if (field.type === "DTOS" && field.listMap && typeof data[key] === "object") {
10812
- params[key] = convertListMapToArray(data[key]);
10815
+ if (field.type === "DTOS" && field.listMap) {
10816
+ if (Object.prototype.toString.call(data[key]) === "[object Object]") {
10817
+ params[key] = convertListMapToArray(data[key]);
10818
+ }
10819
+ if (Object.prototype.toString.call(data[key]) === "[object Array]") {
10820
+ params[key] = convertArrayToListMap(data[key]);
10821
+ }
10813
10822
  }
10814
10823
  }
10815
10824
  return { ...data, ...params };
@@ -12052,17 +12061,17 @@ var V7AuthService = class {
12052
12061
  * @date 2024-05-14 17:05:22
12053
12062
  * @param {string} oldPwd
12054
12063
  * @param {string} newPwd
12055
- * @return {*} {Promise<boolean>}
12064
+ * @return {*} {Promise<IAuthResult>}
12056
12065
  */
12057
12066
  async changePwd(oldPwd, newPwd) {
12058
12067
  try {
12059
- await ibiz.net.post("/uaa/changepwd", {
12068
+ const res = await ibiz.net.post("/uaa/changepwd", {
12060
12069
  oldPwd,
12061
12070
  newPwd
12062
12071
  });
12063
- return true;
12072
+ return { ok: true, result: res };
12064
12073
  } catch (err) {
12065
- return false;
12074
+ return { ok: false, result: err };
12066
12075
  }
12067
12076
  }
12068
12077
  /**
@@ -12284,7 +12293,7 @@ var MethodInput = class {
12284
12293
  return data;
12285
12294
  }
12286
12295
  /**
12287
- * 格式化本地模式入参
12296
+ * 格式化
12288
12297
  *
12289
12298
  * @author tony001
12290
12299
  * @date 2024-05-21 23:05:38
@@ -12365,6 +12374,21 @@ var MethodReturn = class {
12365
12374
  }
12366
12375
  return new AppDataEntity(this.entity, data);
12367
12376
  }
12377
+ /**
12378
+ * 格式化
12379
+ *
12380
+ * @author tony001
12381
+ * @date 2024-05-23 18:05:35
12382
+ * @param {IContext} context
12383
+ * @param {IData} data
12384
+ * @return {*} {Promise<IData>}
12385
+ */
12386
+ async format(context, data) {
12387
+ if (this.dto) {
12388
+ return this.dto.format(context, data);
12389
+ }
12390
+ return data;
12391
+ }
12368
12392
  };
12369
12393
 
12370
12394
  // src/service/service/entity/method/method.ts
@@ -12517,11 +12541,15 @@ var DEActionMethod = class extends Method {
12517
12541
  * @return {*} {(Promise<IData | IData[]>)}
12518
12542
  */
12519
12543
  async inputFormat(context, data) {
12520
- const handleListMap = (arg) => {
12544
+ const handleListMap = async (arg) => {
12521
12545
  return this.input.format(context, arg);
12522
12546
  };
12523
12547
  if (Array.isArray(data)) {
12524
- return data.map((item) => handleListMap(item));
12548
+ const result = [];
12549
+ for (let i = 0; i < data.length; i++) {
12550
+ result.push(await handleListMap(data[i]));
12551
+ }
12552
+ return result;
12525
12553
  }
12526
12554
  return handleListMap(data);
12527
12555
  }
@@ -12589,7 +12617,9 @@ var DEActionMethod = class extends Method {
12589
12617
  path2 = "".concat(path2, "/").concat(srfkey);
12590
12618
  }
12591
12619
  const res = await this.request(path2, context, data, params, header);
12592
- res.data = await this.result.handle(context, res.data);
12620
+ if (!(params && params.srfupdateitem)) {
12621
+ res.data = await this.result.handle(context, res.data);
12622
+ }
12593
12623
  result = res;
12594
12624
  }
12595
12625
  }
@@ -13062,6 +13092,9 @@ var FetchMethod = class extends Method {
13062
13092
  );
13063
13093
  }
13064
13094
  const items = res.data || [];
13095
+ for (let i = 0; i < items.length; i++) {
13096
+ items[i] = await this.result.format(context, items[i]);
13097
+ }
13065
13098
  res.data = items.map((item) => this.createEntity(item));
13066
13099
  }
13067
13100
  if (res.data) {
@@ -16259,7 +16292,7 @@ function listenAsyncAction(id) {
16259
16292
  }
16260
16293
  async function asyncImportData(file, appDataEntity, dataImport, context) {
16261
16294
  ibiz.notification.info({
16262
- desc: ibiz.i18n.t("component.dataImport.startImport")
16295
+ desc: ibiz.i18n.t("runtime.controller.utils.dataFileUtil.startImport")
16263
16296
  });
16264
16297
  const data = new FormData();
16265
16298
  data.append("file", file);
@@ -16495,7 +16528,7 @@ async function asyncImportData2(opts) {
16495
16528
  params: queryData
16496
16529
  });
16497
16530
  ibiz.notification.info({
16498
- desc: ibiz.i18n.t("component.dataImport.startImport")
16531
+ desc: ibiz.i18n.t("runtime.controller.utils.dataFileUtil.startImport")
16499
16532
  });
16500
16533
  }
16501
16534
  function calcImportSchemaData(opts) {
@@ -18910,6 +18943,158 @@ import {
18910
18943
  RuntimeError as RuntimeError37,
18911
18944
  RuntimeModelError as RuntimeModelError27
18912
18945
  } from "@ibiz-template/core";
18946
+
18947
+ // src/controller/control/app-menu/custom-app-menu.controller.ts
18948
+ var CustomAppMenuController = class {
18949
+ /**
18950
+ * Creates an instance of CustomAppMenuController.
18951
+ * @author tony001
18952
+ * @date 2024-05-09 15:05:33
18953
+ * @param {IAppMenu} model
18954
+ * @param {AppMenuController} menu
18955
+ */
18956
+ constructor(model, menu) {
18957
+ this.model = model;
18958
+ this.menu = menu;
18959
+ /**
18960
+ *自定义定制范围类型(public:公开,personal:个人,data:数据,默认是按照个人区分,配置了应用功能组件才生效)
18961
+ *
18962
+ * @author tony001
18963
+ * @date 2024-05-09 17:05:43
18964
+ * @type {('public' | 'personal' | 'data')}
18965
+ */
18966
+ this.type = "personal";
18967
+ /**
18968
+ *所属数据类型(仅限自定义定制为data类型时生效,配置了应用功能组件才生效)
18969
+ *
18970
+ * @author tony001
18971
+ * @date 2024-05-09 17:05:55
18972
+ * @type {string}
18973
+ */
18974
+ this.ownerType = "";
18975
+ /**
18976
+ *所属数据标识(仅限自定义定制为data类型时生效,配置了应用功能组件才生效)
18977
+ *
18978
+ * @author tony001
18979
+ * @date 2024-05-09 17:05:10
18980
+ * @type {string}
18981
+ */
18982
+ this.ownerId = "";
18983
+ this.context = menu.context;
18984
+ this.params = menu.params;
18985
+ this.init();
18986
+ }
18987
+ /**
18988
+ * 初始化
18989
+ *
18990
+ * @author tony001
18991
+ * @date 2024-05-09 15:05:40
18992
+ * @private
18993
+ */
18994
+ init() {
18995
+ var _a;
18996
+ this.type = "personal";
18997
+ this.ownerId = this.context.srfpersonid;
18998
+ const app = ibiz.hub.getApp(this.context.srfappid);
18999
+ const menuUtil = app.getAppUtil("DYNAMENU", "CUSTOM");
19000
+ if (menuUtil) {
19001
+ this.util = new UtilService(menuUtil);
19002
+ } else {
19003
+ this.config = new ConfigService(
19004
+ this.model.appId,
19005
+ "menu",
19006
+ "menu_".concat(this.menu.view.name.toLowerCase(), "_").concat((_a = this.model.codeName) == null ? void 0 : _a.toLowerCase())
19007
+ );
19008
+ }
19009
+ }
19010
+ /**
19011
+ * 获取资源标识(仅用于功能组件服务)
19012
+ *
19013
+ * @author tony001
19014
+ * @date 2024-05-09 16:05:48
19015
+ * @private
19016
+ * @return {*} {string}
19017
+ */
19018
+ getResourceTag() {
19019
+ var _a;
19020
+ const base = "".concat(this.context.srfappid, "_menu_").concat(this.menu.view.name.toLowerCase(), "_").concat((_a = this.model.codeName) == null ? void 0 : _a.toLowerCase());
19021
+ switch (this.type) {
19022
+ case "personal":
19023
+ return "".concat(base, "_").concat(this.context.srfpersonid);
19024
+ case "data":
19025
+ return "".concat(base, "_").concat(this.ownerType, "_").concat(this.ownerId);
19026
+ default:
19027
+ return base;
19028
+ }
19029
+ }
19030
+ /**
19031
+ * 加载自定义模型
19032
+ *
19033
+ * @author tony001
19034
+ * @date 2024-05-09 17:05:57
19035
+ * @return {*} {Promise<IData>}
19036
+ */
19037
+ async loadCustomModelData() {
19038
+ let res;
19039
+ if (this.util) {
19040
+ res = await this.util.load(
19041
+ this.getResourceTag(),
19042
+ this.context,
19043
+ this.params
19044
+ );
19045
+ } else {
19046
+ res = await this.config.load();
19047
+ }
19048
+ if (res && res.model) {
19049
+ const result = JSON.parse(res.model);
19050
+ return result;
19051
+ }
19052
+ return [];
19053
+ }
19054
+ /**
19055
+ * 重置自定义模型
19056
+ *
19057
+ * @author tony001
19058
+ * @date 2024-05-09 17:05:14
19059
+ * @return {*} {Promise<IData>}
19060
+ */
19061
+ async resetCustomModelData() {
19062
+ return this.saveCustomModelData([]);
19063
+ }
19064
+ /**
19065
+ * 保存自定义模型
19066
+ *
19067
+ * @author tony001
19068
+ * @date 2024-05-09 17:05:51
19069
+ * @param {IData[]} model
19070
+ * @param {IData} [opts={}]
19071
+ * @return {*} {Promise<IData>}
19072
+ */
19073
+ async saveCustomModelData(model, opts = {}) {
19074
+ const data = {
19075
+ model: JSON.stringify(model)
19076
+ };
19077
+ if (this.util) {
19078
+ await this.util.save(
19079
+ this.getResourceTag(),
19080
+ this.context,
19081
+ {
19082
+ ...this.params,
19083
+ type: this.type,
19084
+ ownerType: this.ownerType,
19085
+ ownerId: this.ownerId,
19086
+ modelId: this.model.id
19087
+ },
19088
+ data
19089
+ );
19090
+ } else {
19091
+ await this.config.save(data);
19092
+ }
19093
+ return model;
19094
+ }
19095
+ };
19096
+
19097
+ // src/controller/control/app-menu/app-menu.controller.ts
18913
19098
  var AppMenuController = class extends ControlController {
18914
19099
  constructor(model, context, params, ctx) {
18915
19100
  super(model, context, params, ctx);
@@ -18920,7 +19105,24 @@ var AppMenuController = class extends ControlController {
18920
19105
  * @type {{ [key: string]: IProvider }}
18921
19106
  */
18922
19107
  this.itemProviders = {};
19108
+ /**
19109
+ * 自定义菜单控制器
19110
+ *
19111
+ * @type {(CustomAppMenuController | null)}
19112
+ * @memberof AppMenuController
19113
+ */
19114
+ this.customController = null;
19115
+ /**
19116
+ * 自定义配置
19117
+ *
19118
+ * @type {IData[]}
19119
+ * @memberof AppMenuController
19120
+ */
19121
+ this.saveConfigs = [];
18923
19122
  this.flattenAllItems();
19123
+ if (model.enableCustomized) {
19124
+ this.customController = new CustomAppMenuController(model, this);
19125
+ }
18924
19126
  }
18925
19127
  initState() {
18926
19128
  super.initState();
@@ -18944,6 +19146,24 @@ var AppMenuController = class extends ControlController {
18944
19146
  (_a = this.model.appMenuItems) == null ? void 0 : _a.forEach((item) => {
18945
19147
  this.initMenuItemState(item);
18946
19148
  });
19149
+ if (this.customController) {
19150
+ await this.loadCustomMenusModel();
19151
+ }
19152
+ }
19153
+ /**
19154
+ * 加载自定义菜单模型
19155
+ *
19156
+ * @private
19157
+ * @return {*} {Promise<void>}
19158
+ * @memberof AppMenuController
19159
+ */
19160
+ async loadCustomMenusModel() {
19161
+ const customConfigs = await this.customController.loadCustomModelData();
19162
+ if (!customConfigs || customConfigs.length === 0) {
19163
+ this.saveConfigs = [];
19164
+ } else {
19165
+ this.saveConfigs = customConfigs;
19166
+ }
18947
19167
  }
18948
19168
  /**
18949
19169
  * 初始化菜单项的适配器
@@ -19108,149 +19328,6 @@ var AppMenuController = class extends ControlController {
19108
19328
  }
19109
19329
  };
19110
19330
 
19111
- // src/controller/control/app-menu/custom-app-menu.controller.ts
19112
- var CustomAppMenuController = class {
19113
- /**
19114
- * Creates an instance of CustomAppMenuController.
19115
- * @author tony001
19116
- * @date 2024-05-09 15:05:33
19117
- * @param {IAppMenu} model
19118
- * @param {AppMenuController} menu
19119
- */
19120
- constructor(model, menu) {
19121
- this.model = model;
19122
- this.menu = menu;
19123
- /**
19124
- *自定义定制范围类型(public:公开,personal:个人,data:数据,默认是按照个人区分,配置了应用功能组件才生效)
19125
- *
19126
- * @author tony001
19127
- * @date 2024-05-09 17:05:43
19128
- * @type {('public' | 'personal' | 'data')}
19129
- */
19130
- this.type = "personal";
19131
- /**
19132
- *所属数据类型(仅限自定义定制为data类型时生效,配置了应用功能组件才生效)
19133
- *
19134
- * @author tony001
19135
- * @date 2024-05-09 17:05:55
19136
- * @type {string}
19137
- */
19138
- this.ownerType = "";
19139
- /**
19140
- *所属数据标识(仅限自定义定制为data类型时生效,配置了应用功能组件才生效)
19141
- *
19142
- * @author tony001
19143
- * @date 2024-05-09 17:05:10
19144
- * @type {string}
19145
- */
19146
- this.ownerId = "";
19147
- this.context = menu.context;
19148
- this.params = menu.params;
19149
- this.init();
19150
- }
19151
- /**
19152
- * 初始化
19153
- *
19154
- * @author tony001
19155
- * @date 2024-05-09 15:05:40
19156
- * @private
19157
- */
19158
- init() {
19159
- var _a;
19160
- this.type = "personal";
19161
- this.ownerId = this.context.srfpersonid;
19162
- const app = ibiz.hub.getApp(this.context.srfappid);
19163
- const menuUtil = app.getAppUtil("DYNAMENU", "CUSTOM");
19164
- if (menuUtil) {
19165
- this.util = new UtilService(menuUtil);
19166
- } else {
19167
- this.config = new ConfigService(
19168
- this.model.appId,
19169
- "menu",
19170
- "menu_".concat(this.menu.view.name.toLowerCase(), "_").concat((_a = this.model.codeName) == null ? void 0 : _a.toLowerCase())
19171
- );
19172
- }
19173
- }
19174
- /**
19175
- * 获取资源标识(仅用于功能组件服务)
19176
- *
19177
- * @author tony001
19178
- * @date 2024-05-09 16:05:48
19179
- * @private
19180
- * @return {*} {string}
19181
- */
19182
- getResourceTag() {
19183
- var _a;
19184
- const base = "".concat(this.context.srfappid, "_menu_").concat(this.menu.view.name.toLowerCase(), "_").concat((_a = this.model.codeName) == null ? void 0 : _a.toLowerCase());
19185
- switch (this.type) {
19186
- case "personal":
19187
- return "".concat(base, "_").concat(this.context.srfpersonid);
19188
- case "data":
19189
- return "".concat(base, "_").concat(this.ownerType, "_").concat(this.ownerId);
19190
- default:
19191
- return base;
19192
- }
19193
- }
19194
- /**
19195
- * 加载自定义模型
19196
- *
19197
- * @author tony001
19198
- * @date 2024-05-09 17:05:57
19199
- * @return {*} {Promise<IData>}
19200
- */
19201
- async loadCustomModelData() {
19202
- let res;
19203
- if (this.util) {
19204
- res = await this.util.load(
19205
- this.getResourceTag(),
19206
- this.context,
19207
- this.params
19208
- );
19209
- } else {
19210
- res = await this.config.load();
19211
- }
19212
- return res;
19213
- }
19214
- /**
19215
- * 重置自定义模型
19216
- *
19217
- * @author tony001
19218
- * @date 2024-05-09 17:05:14
19219
- * @return {*} {Promise<IData>}
19220
- */
19221
- async resetCustomModelData() {
19222
- return {};
19223
- }
19224
- /**
19225
- * 保存自定义模型
19226
- *
19227
- * @author tony001
19228
- * @date 2024-05-09 17:05:51
19229
- * @param {IData[]} model
19230
- * @param {IData} [opts={}]
19231
- * @return {*} {Promise<IData>}
19232
- */
19233
- async saveCustomModelData(model, opts = {}) {
19234
- if (this.util) {
19235
- await this.util.save(
19236
- this.getResourceTag(),
19237
- this.context,
19238
- {
19239
- ...this.params,
19240
- type: this.type,
19241
- ownerType: this.ownerType,
19242
- ownerId: this.ownerId,
19243
- modelId: this.model.id
19244
- },
19245
- model
19246
- );
19247
- } else {
19248
- await this.config.save(model);
19249
- }
19250
- return model;
19251
- }
19252
- };
19253
-
19254
19331
  // src/controller/control/app-menu-icon-view/app-menu-icon-view.controller.ts
19255
19332
  import {
19256
19333
  findRecursiveChild as findRecursiveChild2,
@@ -22028,14 +22105,18 @@ var MsgBoxNode = class extends UILogicNode {
22028
22105
  resultTags = ["yes", "no"];
22029
22106
  break;
22030
22107
  case "OK":
22031
- modalParams.confirmButtonText = ibiz.i18n.t("control.common.determine");
22108
+ modalParams.confirmButtonText = ibiz.i18n.t(
22109
+ "runtime.uiLogic.determine"
22110
+ );
22032
22111
  modalParams.showConfirmButton = true;
22033
22112
  modalParams.showCancelButton = false;
22034
22113
  resultTags = ["ok"];
22035
22114
  break;
22036
22115
  case "OKCANCEL":
22037
- modalParams.confirmButtonText = ibiz.i18n.t("control.common.determine");
22038
- modalParams.cancelButtonText = ibiz.i18n.t("app.cancel");
22116
+ modalParams.confirmButtonText = ibiz.i18n.t(
22117
+ "runtime.uiLogic.determine"
22118
+ );
22119
+ modalParams.cancelButtonText = ibiz.i18n.t("runtime.uiLogic.cancel");
22039
22120
  modalParams.showConfirmButton = true;
22040
22121
  modalParams.showCancelButton = true;
22041
22122
  resultTags = ["ok", "cancel"];
@@ -22043,7 +22124,7 @@ var MsgBoxNode = class extends UILogicNode {
22043
22124
  default:
22044
22125
  throw new ModelError23(
22045
22126
  this.model,
22046
- ibiz.i18n.t("control.common.noSupportItem", {
22127
+ ibiz.i18n.t("runtime.uiLogic.noSupportItem", {
22047
22128
  name: buttonsType
22048
22129
  })
22049
22130
  );
@@ -23646,7 +23727,7 @@ var WFWithdrawUIActionProvider = class extends UIActionProviderBase {
23646
23727
  var LoginOutUIActionProvider = class extends UIActionProviderBase {
23647
23728
  async execAction(_action, _params) {
23648
23729
  const confirm = await ibiz.confirm.info({
23649
- title: ibiz.i18n.t("app.logout"),
23730
+ title: ibiz.i18n.t("runtime.uiAction.logout"),
23650
23731
  desc: ibiz.i18n.t("runtime.uiAction.wantLogout")
23651
23732
  });
23652
23733
  if (confirm) {
@@ -24733,7 +24814,11 @@ var DataViewControlController = class extends MDControlController {
24733
24814
  containerState.addState(detail.id, buttonState);
24734
24815
  }
24735
24816
  });
24736
- await containerState.update(this.context);
24817
+ await containerState.update(
24818
+ this.context,
24819
+ void 0,
24820
+ this.model.appDataEntityId
24821
+ );
24737
24822
  group.groupActionGroupState = containerState;
24738
24823
  });
24739
24824
  }
@@ -28621,8 +28706,9 @@ var EditFormService = class extends FormService {
28621
28706
  * @param {IParams} [params={}]
28622
28707
  * @returns {*} {Promise<IHttpResponse<ControlVO>>}
28623
28708
  */
28624
- async updateFormItem(methodName, context, params = {}) {
28625
- let res = await this.exec(methodName, context, params);
28709
+ async updateFormItem(methodName, context, data = {}, params = {}) {
28710
+ Object.assign(params, { srfupdateitem: true });
28711
+ let res = await this.exec(methodName, context, data, params);
28626
28712
  res = this.handleResponse(res);
28627
28713
  return res;
28628
28714
  }
@@ -29603,12 +29689,13 @@ var GridService = class extends MDControlService {
29603
29689
  * @param {IParams} [params={}]
29604
29690
  * @returns {*} {Promise<IHttpResponse<ControlVO>>}
29605
29691
  */
29606
- async updateGridEditItem(methodName, context, params = {}) {
29692
+ async updateGridEditItem(methodName, context, data = {}, params = {}) {
29607
29693
  const entityService = await this.app.deService.getService(
29608
29694
  context,
29609
29695
  this.model.appDataEntityId
29610
29696
  );
29611
- let res = await entityService.exec(methodName, context, params);
29697
+ Object.assign(params, { srfupdateitem: true });
29698
+ let res = await entityService.exec(methodName, context, data, params);
29612
29699
  res = this.handleResponse(res);
29613
29700
  return res;
29614
29701
  }
@@ -36336,6 +36423,7 @@ var KanbanController = class extends DataViewControlController {
36336
36423
  this.state.updating = false;
36337
36424
  this.state.batching = false;
36338
36425
  this.state.selectGroupKey = "";
36426
+ this.state.readonly = !!(this.context.srfreadonly === true || this.context.srfreadonly === "true");
36339
36427
  this.state.draggable = this.enableEditOrder || this.enableEditGroup;
36340
36428
  this.state.uaState = {};
36341
36429
  }
@@ -36890,6 +36978,28 @@ var TreeGridExRowState = class {
36890
36978
  editable: ibiz.config.grid.editShowMode === "all",
36891
36979
  required: false
36892
36980
  };
36981
+ let $readonly;
36982
+ Object.defineProperty(
36983
+ this.editColStates[fieldColumn.name],
36984
+ "readonly",
36985
+ {
36986
+ enumerable: true,
36987
+ configurable: true,
36988
+ get() {
36989
+ if ($readonly !== void 0) {
36990
+ return $readonly;
36991
+ }
36992
+ if (treeGrid.context) {
36993
+ return !!(treeGrid.context.srfreadonly === true || treeGrid.context.srfreadonly === "true");
36994
+ }
36995
+ return false;
36996
+ },
36997
+ set(val) {
36998
+ $readonly = val;
36999
+ return true;
37000
+ }
37001
+ }
37002
+ );
36893
37003
  });
36894
37004
  }
36895
37005
  }
@@ -42681,6 +42791,1150 @@ var RemotePluginItem = class {
42681
42791
  this.config = config;
42682
42792
  }
42683
42793
  };
42794
+
42795
+ // src/locale/en/index.ts
42796
+ var en = {
42797
+ // runtime
42798
+ runtime: {
42799
+ common: {
42800
+ unrealized: "unrealized"
42801
+ },
42802
+ command: {
42803
+ app: {
42804
+ noFindApplicationFunction: "An app feature called {appFuncId} cannot be found",
42805
+ noFindApplicationFunctionYype: "Unsupported application function type: {appFuncType}",
42806
+ noFindApplicationView: "The application view [{appViewId}] does not exist",
42807
+ unsupportedPopup: "Unsupported view opening modes: POPUP",
42808
+ unsupportedPopupapp: "Unsupported view opening modes: POPUPAPP",
42809
+ missingEvent: "Bubble opening missing event"
42810
+ }
42811
+ },
42812
+ controller: {
42813
+ common: {
42814
+ control: {
42815
+ componentActivation: "Component [{name}] ({id}) is active",
42816
+ componentPause: "Component [{name}] ({id}) is pause",
42817
+ unsupportedType: "Unsupported entity data change type: {type}",
42818
+ uncheckedData: "Unchecked data",
42819
+ dataDeletion: "data deletion",
42820
+ confirmDataDeletion: "Confirm deletion of data?",
42821
+ noImportModel: "No import model is configured!"
42822
+ },
42823
+ editor: {
42824
+ editorNoConfigured: "Editor type [{editorType}], code table not configured"
42825
+ },
42826
+ view: {
42827
+ viewActivation: "View [{name}] ({id}) is active",
42828
+ viewPause: "View [{name}] ({id}) is pause",
42829
+ viewDestroy: "View [{name}] ({id}) is destroy",
42830
+ noFoundViewEngine: "The View Engine implementation was not found:",
42831
+ noSupportBehavior: "No engine support for pre-built interface behavior {key}"
42832
+ }
42833
+ },
42834
+ control: {
42835
+ menu: {
42836
+ noFindMenu: "Cannot find menu item named {id}",
42837
+ noConfigured: "No application functionality configured"
42838
+ },
42839
+ calendar: {
42840
+ missingViewLogic: "Missing {itemType}_opendata view logic",
42841
+ noFoundModel: "Calendar item model not found"
42842
+ },
42843
+ chart: {
42844
+ noConfiguredX: "Sequence is not configured with X-axis",
42845
+ noConfiguredY: "Sequence is not configured with Y-axis",
42846
+ missingClassification: "Missing classification attribute configuration",
42847
+ missingValue: "Missing value attribute configuration",
42848
+ noSupportSequence: "Charts do not support sequence types at this time {seriesType}",
42849
+ noFindSequence: "Cannot find generator for {seriesIndex} sequence!",
42850
+ noInitialised: "The chart object is not properly initialised",
42851
+ noCalculated: "Options have not been calculated."
42852
+ },
42853
+ dataView: {
42854
+ noBehaviourGroup: "No interface behaviour group is configured for the action",
42855
+ noBehaviourGroupAction: "No interface behaviour is configured for the action item interface behaviour group",
42856
+ propertiesNoConfigured: "Grouping properties are not configured",
42857
+ tableNoConfigured: "The grouping code table is not configured",
42858
+ sortingItems: "Items with sorting enabled must be associated with an entity attribute"
42859
+ },
42860
+ expBar: {
42861
+ unableMore: "Unable to get multiple data widgets [{xdataControlName}] controller",
42862
+ multiNode: "Multi-node views are implemented by subclasses",
42863
+ noFindNodeModel: "Cannot find node model for {nodeId}"
42864
+ },
42865
+ form: {
42866
+ formCompletion: "Please check the form completion!",
42867
+ savedSuccessfully: "{srfmajortext}Saved successfully!",
42868
+ prompt: "prompt",
42869
+ deletion: "Confirm deletion?",
42870
+ itemUpdate: "No {formItemUpdateId} form item update was found.",
42871
+ processStarted: "Process started successfully",
42872
+ processSubmitted: "Process submitted successfully",
42873
+ lackBehavior: "Lack of return operation entity behavior",
42874
+ initializationException: "Initialization Exception: Form member [{id}]({detailType}) already exists, duplicate form item identifier Please check configuration!",
42875
+ relationshipInterface: "Receive data change events from the relationship interface",
42876
+ fillIn: "Please fill in {caption} ",
42877
+ unconfiguredWidgets: "Multi-data widgets unconfigured content widgets",
42878
+ noFoundFormController: "No form controller corresponding to {id} found",
42879
+ multiDataAddData: "Multi-data widget type {contentType} does not support adding data at the moment",
42880
+ mdControllerNoExist: "mdController does not exist",
42881
+ repeaterNoSupported: "Repeater styles are not supported at this time {detailStyle}",
42882
+ searchTerms: "No search terms found to apply",
42883
+ saveSearch: "No saved search criteria found"
42884
+ },
42885
+ gantt: {
42886
+ noNode: "Not entity gantt node data",
42887
+ rowData: "Row data does not exist",
42888
+ simpleMode: "Simple mode, no saving",
42889
+ nonentity: "Non-entity node data cannot be saved",
42890
+ noChange: "The value has not changed",
42891
+ dataDeleted: "Data [{str}] deleted successfully!",
42892
+ firstComplete: "Please complete the current line in the line editor first",
42893
+ noSupport: "{treeNodeType} node type not supported"
42894
+ },
42895
+ grid: {
42896
+ unsupported: "Unsupported types {type}",
42897
+ attributeColumns: "Attribute columns with no grouping attributes configured",
42898
+ noCodeTable: "The attribute column {groupFieldName} of the grouping attribute does not have a configuration code table",
42899
+ configureFirstColumn: "Please configure the grouping attribute column {groupFieldName} as the first column",
42900
+ requiresCodeTable: "Code table grouping mode requires code table configuration",
42901
+ noMatchCodeTable: "The grouping code table does not match the code table for the attribute column {groupFieldName}",
42902
+ convertedValue: "The sort attribute of {srfmajortext} cannot be converted to a value",
42903
+ missingConfiguration: "Missing configuration of aggregated entities or aggregated datasets",
42904
+ newRows: "New rows are not supported",
42905
+ saveCancel: "Row data validation failed, save cancel",
42906
+ noSupportRowEditing: "The current form does not support row editing, and you cannot toggle on row editing.",
42907
+ lineEditing: "Only one line can be open for line editing at the same time",
42908
+ updateColumns: "No {updateId} edit columns found for update",
42909
+ exported: "No exported data",
42910
+ tabularColumns: "No tabular columns",
42911
+ corresponding: "Corresponding table data item not found [{deField}].",
42912
+ pickedUpData: "The value of {valueItem} is not picked up in the row data.",
42913
+ noSupportedMode: "Attribute column aggregation mode {aggMode} is not supported yet.",
42914
+ remoteAggregation: "Remote aggregation is not supported yet",
42915
+ aggregateMode: "Aggregate mode is not supported yet {aggMode}",
42916
+ formattingError: "{aggValue} value formatting error",
42917
+ checksumErrors: "{codeName}Checksum errors, {fieldName}",
42918
+ behaviorGroup: "The action column does not have an interface behavior group configured",
42919
+ interfaceBehavior: "No interface behavior is configured for the action column interface behavior group"
42920
+ },
42921
+ kanban: {
42922
+ sortingProperties: "Sorting properties are not configured",
42923
+ sortDirection: "Sort direction is not configured",
42924
+ groupedOn: "Kanban components must be grouped on",
42925
+ adjustmentsGroup: "The current Kanban does not allow adjustments to the grouping!",
42926
+ noAllowReorder: "Current Kanban does not allow reordering!"
42927
+ },
42928
+ meditViewPanel: {
42929
+ DraftNew: "Draft - New",
42930
+ dataExist: "Edit View Panel widget UI data does not exist"
42931
+ },
42932
+ panel: {
42933
+ panelData: "Panel data not captured"
42934
+ },
42935
+ reportPanel: {
42936
+ reportType: "Report panel generator factory parameter error, report panel does not specify report type",
42937
+ noImplemented: "Specify the report {reportType} type report panel generator not implemented yet"
42938
+ },
42939
+ searchBar: {
42940
+ noFoundEntity: "Cannot find the associated entity corresponding to the attribute {targetField}.",
42941
+ missingModel: "Missing editor model",
42942
+ JSONFormat: "{data} non-standard JSON format:"
42943
+ },
42944
+ toolbar: {
42945
+ noFound: "Interface behavior model {actionId} not found"
42946
+ },
42947
+ tree: {
42948
+ noFoundTreeData: "Cannot find corresponding tree node data",
42949
+ sortAttribute: "Missing Configuration Sort Attribute",
42950
+ editMode: "The tree node is not configured for edit mode: name",
42951
+ nodeData: "Not entity tree node data",
42952
+ noFoundTreeNode: "Tree node not found"
42953
+ },
42954
+ treeGrid: {
42955
+ columnsSchema: "TreeTable Unvalued Columns Schema",
42956
+ columnMode: "Tree table without parent column mode"
42957
+ },
42958
+ treeGridEx: {
42959
+ noConfigured: "The node is not configured with a data item that corresponds to the table column {name}",
42960
+ editItem: "Edit item model corresponding to table column {name} was not found",
42961
+ noPickedUp: "The value of {valueItem} is not picked up in the row data.",
42962
+ behaviorGroup: "The {id} action column does not have an interface behavior group configured.",
42963
+ noSupportCreation: "Does not support the creation of new",
42964
+ updateBehavior: "Tree nodes are not configured to update entity behavior"
42965
+ },
42966
+ wizardPanel: {
42967
+ wizardForm: "Cannot find the wizard form for {activeFormTag}.",
42968
+ formController: "Cannot find a form controller for {activeFormTag}.",
42969
+ noConfiguration: "There is no Configuration Wizard form collection",
42970
+ wizardFormIdentifier: "Cannot find the wizard form with the {tag} identifier.",
42971
+ noPreviousForm: "No previous form",
42972
+ nextStep: "Cannot find next wizard step",
42973
+ nextForm: "Cannot find the next wizard form"
42974
+ }
42975
+ },
42976
+ utils: {
42977
+ buttonState: {
42978
+ isFinitenconsistency: "Inconsistency between entity {appDeName} of {uiActionId} interface behavior and entity {appDeId} of data"
42979
+ },
42980
+ counter: {
42981
+ decrement: "Decrement cannot be called for a count of 0!"
42982
+ },
42983
+ dataFileUtil: {
42984
+ startImport: "Start importing. Please refer to the application notification for detailed progress and results",
42985
+ noExist: "ibiz.util.getExportExcel does not exist",
42986
+ loadError: "Export module loading error",
42987
+ importData: "No corresponding import data model was found"
42988
+ },
42989
+ valueDefault: {
42990
+ noExist: "appdata.context does not exist",
42991
+ nosupported: "Default value type [{valueType}] not supported"
42992
+ },
42993
+ valueEx: {
42994
+ objectNameField: "Missing objectNameField"
42995
+ },
42996
+ valueRule: {
42997
+ length: "The length of the content must be less than or equal to {maxLength}, the current length is {length}."
42998
+ },
42999
+ viewMsg: {
43000
+ message: "Cannot find model for view message group {msgGroupId}",
43001
+ noFound: "No {message} view message model found",
43002
+ unconfigured: "Unconfigured entity dataset",
43003
+ unconfiguredEntities: "Application entities not configured"
43004
+ }
43005
+ }
43006
+ },
43007
+ deLogic: {
43008
+ deLogicLink: {
43009
+ connectionConditional: "Interface Connection Conditional Logic Group Unconfigured Logic Item",
43010
+ entityConnectionConditional: "Entity Logic Connection Condition Group Name: {name} - Condition Group Identifier: {id} - Run Result:",
43011
+ missingConditionValue: "The current condition value type is [Data object attribute], and the configuration condition value is missing.",
43012
+ sourceDataMissingConditionValue: "The current condition value type is [Source Data Object Attribute], and the configuration condition value is missing.",
43013
+ noSupportedTime: "Conditional value type [current time] is not supported at this time",
43014
+ entityLogicalConnection: "Entity Logical Connection Condition Item: {name} - Condition Value Type: {type} - Source Attribute Name: {dstField} - Source Object Value:",
43015
+ comparisonCondition: "-comparison condition: {op}",
43016
+ comparisonValue: "-comparison value",
43017
+ compareResults: "-Compare and contrast results:"
43018
+ },
43019
+ deLogicNode: {
43020
+ missingTargetParameter: "Missing target parameter object or source parameter object configuration",
43021
+ additionalParameter: "Entity logic node (appended to the array): {id} - additional parameter:",
43022
+ addedValue: "-Added value:",
43023
+ logicNodeParameterName: "Entity Logic Node (Binding Parameters): {id} - Parameter Name: {dstDELogicParamId} - Value:",
43024
+ copyParameter: "Entity logic node (copy parameter): {id} - parameter name: {dstDELogicParamId} - value:",
43025
+ dataSet: "Entity Logic Node (Data Set): {id} - Dataset Entity Id: {dstAppDataEntityId} - Dataset Id: {dstAppDEDataSetId} - Parameter Name: {retDELogicParamId} - Value:",
43026
+ unspecifiedEntity: "Unspecified application entity",
43027
+ unspecifiedBehavior: "Behavior of unspecified entities",
43028
+ entityActions: "Entity Logic Node (Entity Actions): {id} - Entity to which the interface action belongs: {dstAppDataEntityId} - Entity Activity Identifier: {dstAppDEActionId} - Parameter Name: {retDELogicParamId} - Value:",
43029
+ unsupportedReturnType: "Unsupported end node return type: {returnType}",
43030
+ endNode: "Entity logic node (end node): {id} - return value type: {returnType} - return value:",
43031
+ noSupportedLogic: "Logic handling of parameter actions {paramAction} is not supported at this time.",
43032
+ preparationParameter: "Entity Logic Node (Preparation Parameter): {id} - Parameter Processing Action: {paramAction} - Target Logic Parameter: {dstDELogicParamId} - Source Parameter (value):",
43033
+ targetParameter: "-Target parameter (value):",
43034
+ missingConfiguration: "Missing target parameter object configuration",
43035
+ rebuildParameter: "Entity Logic Node (rebuild parameter): {id} - rebuild parameter: {dstDELogicParamId}",
43036
+ resetParameter: "Entity logic node (reset parameter): {id} - reset parameter: {dstDELogicParamId}",
43037
+ missingParameterProperty: "Missing target parameter object or target property configuration",
43038
+ sortedArrayParameters: "Entity Logic Node (Sorted Array Parameters): {id} - Sort Attribute: {dstFieldName} - Sort Mode: {dstSortDir} - Parameter Name: {dstDELogicParamId} - Sorted Array:",
43039
+ startupNode: "Entity logical node (startup node): {id}",
43040
+ throwsException: "Entity Logic Node (throws exception): {id} - Error Code: {errorCode} - Error Message: {errorInfo}",
43041
+ environmentVariables: "Unsupported logical parameter types: system environment variables",
43042
+ fileObjectListVariable: "Unsupported logical parameter type: file object list variable",
43043
+ fileObjectVariables: "Unsupported logical parameter types: file object variables",
43044
+ filterObjectVariables: "Unsupported logical parameter types: filter object variables",
43045
+ finalDataVariables: "Unsupported logical parameter types: final data variables",
43046
+ rawDataObjects: "Unsupported logical parameter types: Raw Data Objects",
43047
+ operationSessionVariables: "Unsupported Logical Parameter Types: Operation Session Variables",
43048
+ calculateEntity: "Calculated entity logic parameter, identifier: {tag}",
43049
+ value: "-value:",
43050
+ recreatingVariables: "Unsupported logical parameter types recreating variables",
43051
+ reEstablish: "Re-establish the entity logic parameter, identifier: {tag}",
43052
+ expressionEmpty: "Expression is empty",
43053
+ sourceValueType: "The source value type {srcValueType} is not supported yet.",
43054
+ fetchingAttribute: "Fetching the attribute {srcField} from the source parameter reports an error, source parameter:",
43055
+ noScriptCode: "Script code mode has no script code configured",
43056
+ noConfigurationLogicNode: "The entity logic does not have a configuration logic node",
43057
+ unsupportedLogical: "Unsupported logical node types: {logicNodeType}",
43058
+ noSetStartNode: "No start node set",
43059
+ startExecuting: "Start executing entity logic, logic identifier: {id} - logic name: {name}",
43060
+ endExecution: "End execution entity logic, logic identifier: {id} - logic name: {name}",
43061
+ noFoundEntityLogic: "{dataEntityId} entity logic not found {deDELogicId}"
43062
+ }
43063
+ },
43064
+ engine: {
43065
+ correspondingEngine: "There is no {key} corresponding engine",
43066
+ logicOpendata: "Missing view logic for opendata",
43067
+ logicNewdata: "Missing view logic for newdata",
43068
+ deleteModel: "{codeName} Delete model: {name}",
43069
+ childComponentsMounted: "The child components of {id}: {childName} are mounted.",
43070
+ minimization: "The current view is opened in [{mode}], minimization is not supported!",
43071
+ loadEntityData: "The view has no entities and cannot load entity data"
43072
+ },
43073
+ global: {
43074
+ noImplemented: "Getting application global variables is not implemented",
43075
+ noImplementedRouting: "Getting view routing parameter variables is not implemented"
43076
+ },
43077
+ hub: {
43078
+ failedParse: "View parameter modalOption failed to parse: {error}",
43079
+ noExist: "View [{id}] does not exist"
43080
+ },
43081
+ logicScheduler: {
43082
+ executor: {
43083
+ noConfiguredLogic: "No entity interface logic is configured",
43084
+ missingTrigger: "Missing trigger application entity interface behavior id in logic",
43085
+ noActionableData: "There is no actionable data for opendata!",
43086
+ defaultOpendataViewLogic: "opendata view logic is not configured to open the view by default",
43087
+ noActuallyReference: "The default open view for opendata view logic does not actually reference the view",
43088
+ attributeConfiguration: "{codeName}[Multiple Form Entity] or [Index Entity] missing type attribute configuration",
43089
+ entityAttributeValues: "Data Source No Form Type Applied Entity Attribute Values",
43090
+ editViews: "No edit views were found for the entity associated with the form type {formTypeValue}.",
43091
+ selectionView: "Selection view that needs to be opened for batch add was not found",
43092
+ noSupportedBatchAddOnly: "batchAddOnly is not supported yet.",
43093
+ newdataViewLogic: "The newdata view logic is not configured to default to a new data view",
43094
+ indexEntity: "Missing Default Index Entity Selection View",
43095
+ checkOne: "Please check one piece of data",
43096
+ entitiesAssociated: "No edit view found for entities associated with index type {indexType}",
43097
+ relationships: "Entities do not have a collection of relationships from!",
43098
+ foreignKey: "No foreign key attribute found for {pickParentDeName} in the current entity",
43099
+ mappingProperties: "Batch New Conversion Mapping Properties",
43100
+ newCreationData: "Batch new creation data",
43101
+ logicType: "Logic type {logicType} Not supported yet!",
43102
+ noImplementedMethod: "Method not implemented."
43103
+ },
43104
+ trigger: {
43105
+ triggerType: "The trigger type for the predefined logical type {type} can only be a script",
43106
+ noSupportedType: "Trigger type {triggerType} Not supported yet!",
43107
+ noExecutorBound: "{id} No executor bound.",
43108
+ timerLacks: "Timer lacks timing intervals",
43109
+ parameterCallback: "Timer missing default parameter callback"
43110
+ }
43111
+ },
43112
+ model: {
43113
+ utils: {
43114
+ noFoundApplication: "Application not found",
43115
+ unconfiguredPlugins: "Apply unconfigured plug-ins",
43116
+ noFound: "Plugin not found {id}"
43117
+ },
43118
+ view: {
43119
+ engineClassifications: "Unsupported engine classifications: {engineType}"
43120
+ }
43121
+ },
43122
+ platform: {
43123
+ failedDownload: "Failed to download file",
43124
+ fileStreamData: "File stream data does not exist"
43125
+ },
43126
+ register: {
43127
+ helper: {
43128
+ adapter: "Cannot find the adapter corresponding to the system counter plugin {pluginKey}.",
43129
+ customizedSystemAdapter: "Cannot find the adapter corresponding to the customized system counter {codeName}.",
43130
+ noFoundSystemCounter: "Adapter for system counter type {counterType} is not found.",
43131
+ applicationMenu: "Cannot find the adapter corresponding to the application menu item plugin {pluginKey}.",
43132
+ asynchronousAction: "Find the adapter that does not correspond to the asynchronous action type {actiontype}.",
43133
+ matchedPlugin: "Not matched to plugin [{pluginId}] model",
43134
+ customRegistration: "Cannot find an adapter with a custom registration ID of [{registerKey}].",
43135
+ widgetPlugin: "Cannot find the adapter corresponding to the widget plugin {pluginKey}.",
43136
+ widgetStyleType: "Cannot find the adapter corresponding to the widget style: [{controlStyle}] for the widget type: [{controlType}].",
43137
+ widgetType: "Cannot find an adapter for widget type {controlType}.",
43138
+ entityBehaviorPlugin: "Cannot find the adapter corresponding to the entity behavior plugin {pluginKey}.",
43139
+ entityBehaviorMethod: "Find adapters that donnot have an entity behavior method type of {methodType}",
43140
+ editorPlugin: "Cannot find the adapter corresponding to the editor plugin {pluginKey}.",
43141
+ editorStyleType: "Cannot find the adapter corresponding to editor style: [{editorStyle}] for editor type: [{editorType}].",
43142
+ editorTypePredefinedType: "Cannot find an adapter corresponding to editorType: [{editorType}] for predefinedType: [{predefinedType}].",
43143
+ editorType: "Cannot find the adapter corresponding to editor type {editorType}.",
43144
+ formMemberPlugin: "Cannot find the adapter corresponding to the form member plugin {pluginKey}.",
43145
+ formMemberType: "Cannot find an adapter for form member type {detailType}.",
43146
+ tableColumnPlugin: "Cannot find the adapter corresponding to the table column plugin {pluginKey}.",
43147
+ tableColumnType: "Cannot find an adapter for table column type {key}.",
43148
+ messageType: "Cannot find the adapter corresponding to the message type {content_type}.",
43149
+ panelMemberPlugin: "The adapter corresponding to the panel member plugin {pluginKey} could not be found.",
43150
+ panelContainerPredefined: "Cannot find an adapter with panel container predefined type {predefinedType}, registered key {key}",
43151
+ panelMemberDirectContent: "Cannot find adapter with panel member direct content predefined type {predefinedType}, registered key {key}",
43152
+ panelMemberType: "The adapter corresponding to the panel member type {itemType} could not be found.",
43153
+ portalWidgetPlugin: "Cannot find the adapter corresponding to the portal widget plugin {pluginKey}.",
43154
+ portalWidgetMemberType: "Adapter corresponding to portal widget member type {portletType} not found",
43155
+ treeTableColumnPlugin: "Cannot find the adapter corresponding to the tree table column plugin {pluginKey}.",
43156
+ interfaceBehaviorPlugin: "Cannot find the adapter corresponding to the interface behavior plugin {pluginKey}.",
43157
+ interfaceBehaviorMode: "Find the adapter that does not correspond to the interface behavior mode {uiactionMode}.",
43158
+ frontEndPluginNode: "Cannot find interface logic front-end plugin node, plugin {pluginKey} corresponding adapter",
43159
+ viewPlugin: "Cannot find the adapter corresponding to the view plugin {pluginKey}.",
43160
+ correspondViewTypeStyle: "Cannot find an adapter for view type: [{viewType}] corresponding to view style: [{viewStyle}].",
43161
+ toolbarItem: "Cannot find the adapter corresponding to the toolbar item plugin {pluginKey}.",
43162
+ acItem: "Cannot find the adapter corresponding to the ac item plugin {pluginKey}."
43163
+ }
43164
+ },
43165
+ service: {
43166
+ noConfiguredPrimary: "Entity [{codeName}] is not configured with a primary key field",
43167
+ noConfiguredField: "Entity [{codeName}] is not configured with a primary text field",
43168
+ convertedNumber: "{value} cannot be converted to a number.",
43169
+ subRelationships: "Sub-relationships not configured with a nested relational dataset will result in a recursive query death loop, please configure it!",
43170
+ unsupportedMethod: "Unsupported application entity method input attribute type: {type}",
43171
+ noFoundUsernamePassword: "Anonymous login configuration username or password not found",
43172
+ loginFailure: "Login Failure",
43173
+ logoutFailure: "Logout failure",
43174
+ noFound: "Application entity not found [{id}]",
43175
+ masterState: "{codeName} entity does not exist or is enabled for master state, return true",
43176
+ operationIdentifier: "Operation identifier {dataAccessAction} main state calculation started",
43177
+ matchMasterState: "Match master state",
43178
+ masterStatePermissions: "Collection of allowed master state permissions",
43179
+ noMatchedState: "Returns false if the main state is not matched.",
43180
+ permissionCalculation: "Operation identifier {dataAccessAction} end of permission calculation: {result}",
43181
+ noFindCodeList: "Cannot find {tag} code list",
43182
+ noConfiguredCounters: "Application counters not configured!",
43183
+ lackEntityLogic: "Lack of entity handling logic",
43184
+ createBehavior: "The create behavior does not pass data",
43185
+ updateBehavior: "The update behavior does not pass data",
43186
+ deletionDeletion: "Currently, only [DER1N] relationship type association deletion deletion is supported.",
43187
+ unableDelete: "Unable to delete [{logicName}-{srfmajortext}], data referenced by [{modelLogicName}-{msg}].",
43188
+ noSupportedDataSource: "Data source type {dataSetType} not supported yet",
43189
+ sourceCodeTable: "No data is specified for the source code table",
43190
+ requestMethods: "Unsupported request methods: {requestMethod}",
43191
+ noConfiguredRequestMethod: "Request method not configured",
43192
+ unsupportedBehaviorTypes: "Unsupported Behavior Types [{actionType}]",
43193
+ noFoundServiceMethod: "Service method not found: {id}",
43194
+ UnsupportedServiceMethod: "Unsupported service method types: {methodType}",
43195
+ noSupportedMethod: "The \u300C{id}\u300D method is not supported by {codeName}.",
43196
+ noFoundStorageEntity: "Application function [{name}] storage entity not found [{stoageAppDataEntityId}]",
43197
+ noExist: "Application function [{name}] does not exist",
43198
+ noFoundEntity: "Storage Entity Not Found [{stoageAppDataEntityId}]",
43199
+ noImplemented: "\u300C{methodName}\u300D is not implemented.",
43200
+ noImplementedCounter: "Counter loading method not implemented",
43201
+ noFoundCounterBehavior: "Get counter behavior not found!",
43202
+ createPrimaryKeyData: "Failed to create new joint primary key data with existing primary key {srfkey}",
43203
+ updatePrimaryKeyData: "Failed to update joint primary key data with existing primary key {srfkey}",
43204
+ noExistNoUpdated: "Data does not exist and cannot be updated!",
43205
+ dataNoExistNoUpdated: "Data [{srfdename}-{srfmajortext}({srfkey})] does not exist and cannot be updated!",
43206
+ noDeleted: "The following data \u300C{notRemoveKey}\u300D was not found and could not be deleted!",
43207
+ noAttributeName: "No attribute name is specified",
43208
+ noContextParameterName: "No context parameter name is specified",
43209
+ conditionalObjects: "Unrecognizable Conditional Objects",
43210
+ mustArray: "The value must be an array",
43211
+ unsupportedQueryTypes: "Unsupported query types: {condType}",
43212
+ predefinedType: "Predefined type {predefinedType} is not supported at this time.",
43213
+ dynamicCodeTable: "The return value of a dynamic code table data property is not an object-formatted string and cannot be converted!",
43214
+ unconfiguredDataset: "Unconfigured dataset",
43215
+ processedWithout: "Execution of \u300C{funcName}\u300D cannot be processed without \u300Csrfkey\u300D.",
43216
+ noExistProcessed: "Execution of \u300C{funcName}\u300D does not exist and \u300Csrfsessionid\u300D cannot be processed.",
43217
+ missingDetreeColumnId: "Model exception missing detreeColumnId or dataItemName."
43218
+ },
43219
+ uiAction: {
43220
+ noEntityOrBehavior: "No entity or entity behavior configured",
43221
+ noConfiguredopenView: "Not configured to open the view",
43222
+ frontProcessingModes: "Unsupported front processing modes [{frontProcessType}]",
43223
+ missingConfigurationScriptCode: "Custom types are missing configuration script code",
43224
+ dataPrimaryKey: "Data primary key not found",
43225
+ printFailure: "print failure",
43226
+ physicalPrint: "No physical print items found",
43227
+ exportRequestFailed: "Export request failed",
43228
+ noEntityExportsFound: "No entity exports found",
43229
+ lackNativeEvent: "Lack of native JS event objects",
43230
+ wantLogout: "Are you sure you want to log out?",
43231
+ logout: "Logout",
43232
+ operationConfirmation: "Operation Confirmation",
43233
+ viewParameterModalOption: "View parameter modalOption failed to parse: {error}",
43234
+ withdrawalConfirmed: "Is the execution of the withdrawal confirmed?",
43235
+ noFoundBehaviorModel: "No interface behavior model found for {actionId}."
43236
+ },
43237
+ uiLogic: {
43238
+ interfaceConnectionConditional: "Interface Connection Conditional Logic Group Unconfigured Logic Item",
43239
+ connectionConditionGroup: "Interface Logic Connection Condition Group Name: {name} - Condition Group Identifier: {id} - Run Result:",
43240
+ currentConditionValue: "The current condition value type is [Data object attribute], and the configuration condition value is missing.",
43241
+ sourceDataObjectAttribute: "The current condition value type is [Source Data Object Attribute], and the configuration condition value is missing.",
43242
+ currentTime: "Conditional value type [current time] is not supported at this time",
43243
+ interfaceConnectionConditionalTypeName: "Interface Logic Connection Condition Item: {name} - Condition Value Type: {type} - Source Property Name: {dstField} - Source Object Value:",
43244
+ asynchronousTermination: "Unsupported logical connection type: asynchronous termination",
43245
+ asynchronousRejection: "Unsupported logical connection type: asynchronous rejection",
43246
+ exceptionHandling: "Unsupported Logical Connection Type: Exception Handling",
43247
+ logicalLinkTypes: "Unsupported logical link types:{linkMode}",
43248
+ missingTargetParameter: "Missing target parameter object or source parameter object configuration",
43249
+ appendedArray: "Interface logic node (appended to the array): {id} - additional parameter:",
43250
+ bindingParameters: "Interface Logic Node (Binding Parameters): {id} - Parameter Name: {dstDEUILogicParamId} - Value:",
43251
+ copyParameter: "Interface logic node (copy parameter): {id} - parameter name: {dstDEUILogicParamId} - value:",
43252
+ missingfilter: "Missing configuration filter parameters",
43253
+ interfaceLogicNodeDataSet: "Interface Logic Node (Data Set): {id} - Dataset Entity Identifier: {dstAppDataEntityId} - Dataset Identifier: {dstAppDEDataSetId} - Parameter Name: {retDEUILogicParamId} - Value:",
43254
+ interfaceLogicNodeEntityActions: "Interface Logic Node (Entity Actions): {id} - Entity to which the interface action belongs: {dstAppDataEntityId} - Entity Activity Identifier: {dstAppDEActionId} - Parameter Name: {retDEUILogicParamId} - Value:",
43255
+ noConfiguredInterfaceBehavior: "Interface behavior not configured",
43256
+ interfaceLogicNodeEntityInterfaceAction: "Interface Logic Node (Entity Interface Action): {id} - Interface Action Identifier: {dstAppDEUIActionId} - Entity to which the Interface Action belongs: {dstAppDataEntityId} - Target Logic Parameter Object: {dstDEUILogicParamId}",
43257
+ logicalNodeOperation: "Logical node {name} operation parameter value:",
43258
+ unsupportedEndNode: "Unsupported end node return value types: {returnType}",
43259
+ interfaceLogicNodeEndNode: "Interface logic node (end node): {id} - return value type: {returnType} - return value:",
43260
+ noEntityConfigured: "No entity configured",
43261
+ noEntityLogicConfigured: "No entity logic configured",
43262
+ noIncomingLogic: "No incoming logic parameters are configured",
43263
+ passedParameter: "Passed parameter {dstDEUILogicParamId} not found",
43264
+ interfaceLogicNodeExecutingEntityLogic: "Interface logic node (executing entity logic): {id} - entity logic identifier: {dstAppDELogicId} - entity to which the entity logic belongs: {dstAppDataEntityId} - parameter name: {retDEUILogicParamId} - value:",
43265
+ missingMessageTypeConfiguration: "Missing message type configuration",
43266
+ missingButtonTypeConfiguration: "Missing button type configuration",
43267
+ interfaceLogicNodeMessagePopup: "Interface logic node (message popup): {id} - message type: {type} - message: {message}",
43268
+ message: "messages",
43269
+ yes: "yes",
43270
+ no: "no",
43271
+ determine: "Determine",
43272
+ cancel: "Cancel",
43273
+ noSupportItem: "{name} is currently not supported",
43274
+ interfaceLogicNodeFrontendPlugin: "Interface Logic Node (Frontend Plugin): {id} - Plugin Id: {sysPFPluginId}",
43275
+ interfaceLogicNodePreparationParameter: "Interface Logic Node (Preparation Parameter): {id} - Parameter Processing Action: {paramAction} - Target Logic Parameter: {dstDEUILogicParamId} - Source Parameter (value):",
43276
+ noTargetParameter: "No target parameter object id",
43277
+ targetParameter: "Assigning a value to the target parameter attribute {dstFieldName} reports an error, target parameter:",
43278
+ interfaceLogicNodeDirectCode: "Interface logic node (direct code): {id}-direct code:",
43279
+ interfaceLogicNodeRebuildParameter: "Interface Logic Node (rebuild parameter): {id} - rebuild parameter: {dstDEUILogicParamId}",
43280
+ interfaceLogicNodeResetParameter: "Interface Logic Node (Reset Parameter): {id} - Reset Parameter: {dstDEUILogicParamId}",
43281
+ interfaceLogicNodeSortedArrayParameters: "Interface Logic Node (Sorted Array Parameters): {id} - Sort Attribute: {dstFieldName} - Sort Mode: {dstSortDir} - Parameter Name: {dstDEUILogicParamId} - Sorted Array:",
43282
+ interfaceLogicNodeStartupNode: "Interface logic node (startup node): {id}",
43283
+ interfaceLogicNodeThrowingExceptions: "Interface Logic node (throwing exceptions): {id} - error message: {errorInfo}",
43284
+ noConfiguredTriggerObject: "No trigger object is configured",
43285
+ noConfiguredEvent: "The event name parameter is not configured",
43286
+ noConfiguredEventParameters: "No event parameters are configured",
43287
+ noFoundTriggerObject: "Trigger object not found {fireCtrlId}",
43288
+ noFoundEventParameterObject: "Event parameter object not found {eventParamId}",
43289
+ interfaceLogicNodeViewWidgetEventTriggerLogic: "Interface logic node (view widget event trigger logic): {id} - name of the calling view widget: {fireCtrlId} - name of the triggering event: {eventName} - triggering parameters:",
43290
+ noConfiguredInterfaceObject: "No interface object is configured",
43291
+ noConfiguredOperatingParameters: "No operating parameters are configured",
43292
+ noConfiguredCallMethod: "No call method is configured",
43293
+ noFoundOperationParameter: "The operation parameter {invokeParamId} was not found.",
43294
+ noFoundInterfaceObject: "Interface object {invokeCtrlId} was not found.",
43295
+ noFoundInvokeMethod: "The invoke method {invokeMethod} was not found.",
43296
+ interfaceLogicNodeViewWidgetInvocation: "Interface logic node (view widget invocation): {id} - name of the invoking view widget: {invokeCtrlId} - name of the invoking method: {invokeMethod} - trigger parameter:",
43297
+ viewLogicInitializationParameter: "View logic initialization parameter, {codeName} specified widget object not found",
43298
+ calculateInterfaceLogicParameters: "Calculate interface logic parameters, identifier: {tag}",
43299
+ restablishInterfaceLogic: "Re-establish the interface logic parameters, identifying: {tag}",
43300
+ interfaceLogic: "Interface logic {deUILogicId} for entity {appDataEntityId} not found",
43301
+ startExecutingInterfaceLogic: "Start executing the interface logic, entity: {appDataEntityId} - logic name: {name}",
43302
+ endExecutionInterfaceLogic: "End execution interface logic, entity: {appDataEntityId} - logic name: {name}",
43303
+ noLogicalNodesConfigured: "The interface logic has no logical nodes configured"
43304
+ },
43305
+ utils: {
43306
+ anime: {
43307
+ noExistEndpointElement: "The endpoint element does not exist",
43308
+ noExistAnimationElement: "Animation element does not exist",
43309
+ noClone: "Cannot clone a null or undefined element."
43310
+ },
43311
+ errorHandler: {
43312
+ noPermissionless: "No permissionless error handler registered",
43313
+ noProcessor: "No processor was found that can handle this error"
43314
+ },
43315
+ fileUtil: {
43316
+ fileUploadFailed: "File upload failed"
43317
+ },
43318
+ handlebars: {
43319
+ noInitHandlebars: "handlebars not init"
43320
+ },
43321
+ modal: {
43322
+ externalClosureCapability: "External closure capability not registered",
43323
+ shouldDismissResult: "The result of shouldDismiss is false, closing the interrupt."
43324
+ },
43325
+ openRedirectView: {
43326
+ parseSrfnavctxParameter: "Failed to parse srfnavctx parameter in redirection [{urlStr}].",
43327
+ missingEntityName: "Entity name missing from redirection parameter",
43328
+ noFoundSpecifiedEntity: "CodeName not found for the specified entity: {deName}",
43329
+ unsupportedLinkUrl: "Unsupported linkUrl format: {linkUrl}",
43330
+ noConfiguredActualReference: "Actual reference view not configured",
43331
+ redirectingViewReferences: "Redirecting view references there:",
43332
+ redirectionIdentifier: "Redirection identifier [{rdTag}] or [{deRdTag}] or workflow [{wfRdTag}] corresponding to view not found",
43333
+ noMatchActualReferenceView: "Identifies that [{rdTag}] did not match the actual reference view",
43334
+ redirectionView: "Redirection view [{name}] custom category attribute [{typeFieldId}] value is null"
43335
+ },
43336
+ script: {
43337
+ errorReportingScript: "Error Reporting Script"
43338
+ },
43339
+ shortCut: {
43340
+ invalidIndexNewIndex: "Invalid index newIndex: {newIndex}, oldIndex: {oldIndex}, current array length {length}"
43341
+ },
43342
+ uiDomain: {
43343
+ transactionOpen: "Transaction has been opened, only one transaction can be opened for a single interface domain.",
43344
+ currentTransaction: "The current transaction has not been committed and cannot be closed directly."
43345
+ },
43346
+ uiDomainManager: {
43347
+ invalidInterfaceDomain: "Invalid interface domain identifier [{id}]"
43348
+ },
43349
+ verify: {
43350
+ contentConform: "Content must conform to value rules",
43351
+ scopeRules: "Content length must conform to scope rules",
43352
+ valueNull: "The value is null",
43353
+ regularRules: "The value must conform to the regular rules",
43354
+ rangeRules: "Values must conform to the value range rules",
43355
+ scriptRules: "The value must conform to the script rules",
43356
+ emptyLogicGroups: "Empty logic groups were found and the logic could not be executed properly!",
43357
+ unsupportedLogicTypes: "Unsupported logic types {logicType}",
43358
+ emptyLogicGroupsProperly: "Empty logic groups were found and the logic could not be executed properly!",
43359
+ valueOperations: "Value operations: {op}, not yet supported",
43360
+ noCompared: "{value} and {value2} cannot be compared.",
43361
+ conditionalValues: "Conditional values for range comparisons do not exist or are not strings"
43362
+ },
43363
+ firstregister: "Please register the model loading adapter first"
43364
+ }
43365
+ }
43366
+ };
43367
+
43368
+ // src/locale/zh-CN/index.ts
43369
+ var zhCn = {
43370
+ // runtime
43371
+ runtime: {
43372
+ common: {
43373
+ unrealized: "\u672A\u5B9E\u73B0"
43374
+ },
43375
+ command: {
43376
+ app: {
43377
+ noFindApplicationFunction: "\u627E\u4E0D\u5230\u53EB{appFuncId}\u7684\u5E94\u7528\u529F\u80FD",
43378
+ noFindApplicationFunctionYype: "\u672A\u652F\u6301\u7684\u5E94\u7528\u529F\u80FD\u7C7B\u578B:{appFuncType}",
43379
+ noFindApplicationView: "\u5E94\u7528\u89C6\u56FE[{appViewId}]\u4E0D\u5B58\u5728",
43380
+ unsupportedPopup: "\u672A\u652F\u6301\u7684\u89C6\u56FE\u6253\u5F00\u6A21\u5F0F: POPUP",
43381
+ unsupportedPopupapp: "\u672A\u652F\u6301\u7684\u89C6\u56FE\u6253\u5F00\u6A21\u5F0F: POPUPAPP",
43382
+ missingEvent: "\u6C14\u6CE1\u6253\u5F00\u7F3A\u5C11event"
43383
+ }
43384
+ },
43385
+ controller: {
43386
+ common: {
43387
+ control: {
43388
+ componentActivation: "\u90E8\u4EF6[{name}]({id})\u6FC0\u6D3B",
43389
+ componentPause: "\u90E8\u4EF6[{name}]({id})\u6682\u505C",
43390
+ unsupportedType: "\u4E0D\u652F\u6301\u7684\u5B9E\u4F53\u6570\u636E\u53D8\u66F4\u7C7B\u578B: {type}",
43391
+ uncheckedData: "\u672A\u9009\u4E2D\u6570\u636E",
43392
+ dataDeletion: "\u6570\u636E\u5220\u9664",
43393
+ confirmDataDeletion: "\u786E\u8BA4\u5220\u9664\u6570\u636E\uFF1F",
43394
+ noImportModel: "\u6CA1\u6709\u914D\u7F6E\u5BFC\u5165\u6A21\u578B\uFF01"
43395
+ },
43396
+ editor: {
43397
+ editorNoConfigured: "\u7F16\u8F91\u5668\u7C7B\u578B[{editorType}]\uFF0C\u672A\u914D\u7F6E\u4EE3\u7801\u8868"
43398
+ },
43399
+ view: {
43400
+ viewActivation: "\u89C6\u56FE[{name}]({id})\u6FC0\u6D3B",
43401
+ viewPause: "\u89C6\u56FE[{name}]({id})\u6682\u505C",
43402
+ viewDestroy: "\u89C6\u56FE[{name}]({id})\u9500\u6BC1",
43403
+ noFoundViewEngine: "\u672A\u627E\u5230\u89C6\u56FE\u5F15\u64CE\u5B9E\u73B0\uFF1A",
43404
+ noSupportBehavior: "\u6CA1\u6709\u5F15\u64CE\u652F\u6301\u9884\u7F6E\u754C\u9762\u884C\u4E3A{key}"
43405
+ }
43406
+ },
43407
+ control: {
43408
+ menu: {
43409
+ noFindMenu: "\u627E\u4E0D\u5230\u540D\u4E3A{id}\u7684\u83DC\u5355\u9879",
43410
+ noConfigured: "\u6CA1\u6709\u914D\u7F6E\u5E94\u7528\u529F\u80FD"
43411
+ },
43412
+ calendar: {
43413
+ missingViewLogic: "\u7F3A\u5C11{itemType}_opendata\u7684\u89C6\u56FE\u903B\u8F91",
43414
+ noFoundModel: "\u672A\u627E\u5230\u65E5\u5386\u9879\u6A21\u578B"
43415
+ },
43416
+ chart: {
43417
+ noConfiguredX: "\u5E8F\u5217\u6CA1\u6709\u914D\u7F6EX\u5750\u6807\u8F74",
43418
+ noConfiguredY: "\u5E8F\u5217\u6CA1\u6709\u914D\u7F6EY\u5750\u6807\u8F74",
43419
+ missingClassification: "\u7F3A\u5C11\u5206\u7C7B\u5C5E\u6027\u914D\u7F6E",
43420
+ missingValue: "\u7F3A\u5C11\u503C\u5C5E\u6027\u914D\u7F6E",
43421
+ noSupportSequence: "\u56FE\u8868\u6682\u672A\u652F\u6301\u5E8F\u5217\u7C7B\u578B{seriesType}",
43422
+ noFindSequence: "\u627E\u4E0D\u5230{seriesIndex}\u5E8F\u5217\u7684generator\uFF01",
43423
+ noInitialised: "chart\u5BF9\u8C61\u6CA1\u6709\u6B63\u786E\u521D\u59CB\u5316",
43424
+ noCalculated: "options\u8FD8\u6CA1\u8BA1\u7B97"
43425
+ },
43426
+ dataView: {
43427
+ noBehaviourGroup: "\u64CD\u4F5C\u9879\u6CA1\u6709\u914D\u7F6E\u754C\u9762\u884C\u4E3A\u7EC4",
43428
+ noBehaviourGroupAction: "\u64CD\u4F5C\u9879\u754C\u9762\u884C\u4E3A\u7EC4\u6CA1\u6709\u914D\u7F6E\u754C\u9762\u884C\u4E3A",
43429
+ propertiesNoConfigured: "\u5206\u7EC4\u5C5E\u6027\u6CA1\u6709\u914D\u7F6E",
43430
+ tableNoConfigured: "\u5206\u7EC4\u4EE3\u7801\u8868\u6CA1\u6709\u914D\u7F6E",
43431
+ sortingItems: "\u542F\u7528\u6392\u5E8F\u7684\u9879\u5FC5\u987B\u5173\u8054\u5B9E\u4F53\u5C5E\u6027"
43432
+ },
43433
+ expBar: {
43434
+ unableMore: "\u65E0\u6CD5\u83B7\u53D6\u591A\u6570\u636E\u90E8\u4EF6[{xdataControlName}]\u63A7\u5236\u5668",
43435
+ multiNode: "\u591A\u8282\u70B9\u89C6\u56FE\u7531\u5B50\u7C7B\u5B9E\u73B0",
43436
+ noFindNodeModel: "\u627E\u4E0D\u5230{nodeId}\u7684\u8282\u70B9\u6A21\u578B"
43437
+ },
43438
+ form: {
43439
+ formCompletion: "\u8BF7\u68C0\u67E5\u8868\u5355\u586B\u5199\uFF01",
43440
+ savedSuccessfully: "{srfmajortext}\u4FDD\u5B58\u6210\u529F",
43441
+ prompt: "\u63D0\u793A",
43442
+ deletion: "\u786E\u8BA4\u5220\u9664\u5417\uFF1F",
43443
+ itemUpdate: "\u6CA1\u627E\u5230{formItemUpdateId}\u8868\u5355\u9879\u66F4\u65B0",
43444
+ processStarted: "\u6D41\u7A0B\u542F\u52A8\u6210\u529F",
43445
+ processSubmitted: "\u6D41\u7A0B\u63D0\u4EA4\u6210\u529F",
43446
+ lackBehavior: "\u7F3A\u5C11\u8FD4\u56DE\u64CD\u4F5C\u5B9E\u4F53\u884C\u4E3A",
43447
+ initializationException: "\u521D\u59CB\u5316\u5F02\u5E38: \u8868\u5355\u6210\u5458[{id}]({detailType})\u5DF2\u5B58\u5728\uFF0C\u8868\u5355\u9879\u6807\u8BC6\u91CD\u590D\u8BF7\u68C0\u67E5\u914D\u7F6E",
43448
+ relationshipInterface: "\u63A5\u6536\u5230\u5173\u7CFB\u754C\u9762\u7684\u6570\u636E\u53D8\u66F4\u4E8B\u4EF6",
43449
+ fillIn: "\u8BF7\u586B\u5199{caption}",
43450
+ unconfiguredWidgets: "\u591A\u6570\u636E\u90E8\u4EF6\u672A\u914D\u7F6E\u5185\u5BB9\u90E8\u4EF6",
43451
+ noFoundFormController: "\u6CA1\u6709\u627E\u5230\u5BF9\u5E94{id}\u7684\u8868\u5355\u63A7\u5236\u5668",
43452
+ multiDataAddData: "\u591A\u6570\u636E\u90E8\u4EF6\u7C7B\u578B{contentType}\u6682\u4E0D\u652F\u6301\u6DFB\u52A0\u6570\u636E",
43453
+ mdControllerNoExist: "mdController\u4E0D\u5B58\u5728",
43454
+ repeaterNoSupported: "\u6682\u4E0D\u652F\u6301\u91CD\u590D\u5668\u6837\u5F0F{detailStyle}",
43455
+ searchTerms: "\u6CA1\u6709\u627E\u5230\u53EF\u4EE5\u5E94\u7528\u7684\u641C\u7D22\u6761\u4EF6",
43456
+ saveSearch: "\u6CA1\u6709\u627E\u5230\u4FDD\u5B58\u7684\u641C\u7D22\u6761\u4EF6"
43457
+ },
43458
+ gantt: {
43459
+ noNode: "\u4E0D\u662F\u5B9E\u4F53\u7518\u7279\u8282\u70B9\u6570\u636E",
43460
+ rowData: "\u884C\u6570\u636E\u4E0D\u5B58\u5728",
43461
+ simpleMode: "\u7B80\u5355\u6A21\u5F0F\uFF0C\u4E0D\u4FDD\u5B58",
43462
+ nonentity: "\u975E\u5B9E\u4F53\u8282\u70B9\u6570\u636E\u4E0D\u80FD\u4FDD\u5B58",
43463
+ noChange: "\u503C\u6CA1\u6709\u53D1\u751F\u6539\u53D8",
43464
+ dataDeleted: "\u6570\u636E[{str}]\u5220\u9664\u6210\u529F!",
43465
+ firstComplete: "\u8BF7\u5148\u5B8C\u6210\u5F53\u524D\u884C\u7F16\u8F91\u4E2D\u7684\u884C\u7684\u64CD\u4F5C",
43466
+ noSupport: "{treeNodeType}\u8282\u70B9\u7C7B\u578B\u672A\u652F\u6301"
43467
+ },
43468
+ grid: {
43469
+ unsupported: "\u672A\u652F\u6301\u7684\u7C7B\u578B{type}",
43470
+ attributeColumns: "\u6CA1\u6709\u914D\u7F6E\u5206\u7EC4\u5C5E\u6027\u7684\u5C5E\u6027\u5217",
43471
+ noCodeTable: "\u5206\u7EC4\u5C5E\u6027\u7684\u5C5E\u6027\u5217{groupFieldName}\u6CA1\u6709\u914D\u7F6E\u4EE3\u7801\u8868",
43472
+ configureFirstColumn: "\u8BF7\u5C06\u5206\u7EC4\u5C5E\u6027\u5217{groupFieldName}\u914D\u7F6E\u4E3A\u7B2C\u4E00\u5217",
43473
+ requiresCodeTable: "\u4EE3\u7801\u8868\u5206\u7EC4\u6A21\u5F0F\u9700\u8981\u914D\u7F6E\u4EE3\u7801\u8868",
43474
+ noMatchCodeTable: "\u5206\u7EC4\u4EE3\u7801\u8868\u4E0E\u5C5E\u6027\u5217{groupFieldName}\u7684\u4EE3\u7801\u8868\u4E0D\u4E00\u81F4",
43475
+ convertedValue: "{srfmajortext}\u7684\u6392\u5E8F\u5C5E\u6027\u65E0\u6CD5\u8F6C\u6362\u6210\u6570\u503C",
43476
+ missingConfiguration: "\u7F3A\u5C11\u914D\u7F6E\u805A\u5408\u5B9E\u4F53\u6216\u805A\u5408\u6570\u636E\u96C6",
43477
+ newRows: "\u4E0D\u652F\u6301\u65B0\u5EFA\u884C",
43478
+ saveCancel: "\u884C\u6570\u636E\u6821\u9A8C\u4E0D\u901A\u8FC7\uFF0C\u4FDD\u5B58\u53D6\u6D88",
43479
+ noSupportRowEditing: "\u5F53\u524D\u8868\u683C\u4E0D\u652F\u6301\u884C\u7F16\u8F91\uFF0C\u65E0\u6CD5\u5207\u6362\u5F00\u542F\u884C\u7F16\u8F91",
43480
+ lineEditing: "\u540C\u65F6\u53EA\u80FD\u6709\u4E00\u884C\u5F00\u542F\u884C\u7F16\u8F91",
43481
+ updateColumns: "\u6CA1\u627E\u5230{updateId}\u7F16\u8F91\u5217\u66F4\u65B0",
43482
+ exported: "\u65E0\u5BFC\u51FA\u6570\u636E",
43483
+ tabularColumns: "\u65E0\u8868\u683C\u5217",
43484
+ corresponding: "\u672A\u627E\u5230\u5BF9\u5E94\u7684\u8868\u683C\u6570\u636E\u9879[{deField}]",
43485
+ pickedUpData: "\u672A\u5728\u884C\u6570\u636E\u4E2D\u53D6\u5230 {valueItem} \u7684\u503C",
43486
+ noSupportedMode: "\u6682\u672A\u652F\u6301\u5C5E\u6027\u5217\u805A\u5408\u6A21\u5F0F{aggMode}",
43487
+ remoteAggregation: "\u8FDC\u7A0B\u805A\u5408\u6682\u672A\u652F\u6301",
43488
+ aggregateMode: "\u6682\u672A\u652F\u6301\u805A\u5408\u6A21\u5F0F{aggMode}",
43489
+ formattingError: "{aggValue} \u503C\u683C\u5F0F\u5316\u9519\u8BEF",
43490
+ checksumErrors: "{codeName}\u6821\u9A8C\u62A5\u9519,{fieldName}",
43491
+ behaviorGroup: "\u64CD\u4F5C\u5217\u6CA1\u6709\u914D\u7F6E\u754C\u9762\u884C\u4E3A\u7EC4",
43492
+ interfaceBehavior: "\u64CD\u4F5C\u5217\u754C\u9762\u884C\u4E3A\u7EC4\u6CA1\u6709\u914D\u7F6E\u754C\u9762\u884C\u4E3A"
43493
+ },
43494
+ kanban: {
43495
+ sortingProperties: "\u6392\u5E8F\u5C5E\u6027\u6CA1\u914D\u7F6E",
43496
+ sortDirection: "\u6392\u5E8F\u65B9\u5411\u6CA1\u914D\u7F6E",
43497
+ groupedOn: "\u770B\u677F\u90E8\u4EF6\u5FC5\u987B\u5F00\u542F\u5206\u7EC4",
43498
+ adjustmentsGroup: "\u5F53\u524D\u770B\u677F\u4E0D\u5141\u8BB8\u8C03\u6574\u5206\u7EC4\uFF01",
43499
+ noAllowReorder: "\u5F53\u524D\u770B\u677F\u4E0D\u5141\u8BB8\u8C03\u6574\u6B21\u5E8F\uFF01"
43500
+ },
43501
+ meditViewPanel: {
43502
+ DraftNew: "\u8349\u7A3F--\u65B0\u5EFA",
43503
+ dataExist: "\u7F16\u8F91\u89C6\u56FE\u9762\u677F\u90E8\u4EF6UI\u6570\u636E\u4E0D\u5B58\u5728"
43504
+ },
43505
+ panel: {
43506
+ panelData: "\u672A\u83B7\u53D6\u5230\u9762\u677F\u6570\u636E"
43507
+ },
43508
+ reportPanel: {
43509
+ reportType: "\u62A5\u8868\u9762\u677F\u751F\u6210\u5668\u5DE5\u5382\u53C2\u6570\u9519\u8BEF\uFF0C\u62A5\u8868\u9762\u677F\u672A\u6307\u5B9A\u62A5\u8868\u7C7B\u578B",
43510
+ noImplemented: "\u6307\u5B9A\u62A5\u8868{reportType}\u7C7B\u578B\u62A5\u8868\u9762\u677F\u751F\u6210\u5668\u6682\u672A\u5B9E\u73B0"
43511
+ },
43512
+ searchBar: {
43513
+ noFoundEntity: "\u627E\u4E0D\u5230\u5C5E\u6027{targetField}\u5BF9\u5E94\u7684\u5173\u8054\u5B9E\u4F53",
43514
+ missingModel: "\u7F3A\u5C11\u7F16\u8F91\u5668\u6A21\u578B",
43515
+ JSONFormat: "{data}\u975E\u6807\u51C6JSON\u683C\u5F0F:"
43516
+ },
43517
+ toolbar: {
43518
+ noFound: "\u6CA1\u6709\u627E\u5230\u754C\u9762\u884C\u4E3A\u6A21\u578B{actionId}"
43519
+ },
43520
+ tree: {
43521
+ noFoundTreeData: "\u627E\u4E0D\u5230\u5BF9\u5E94\u7684\u6811\u8282\u70B9\u6570\u636E",
43522
+ sortAttribute: "\u7F3A\u5C11\u914D\u7F6E\u6392\u5E8F\u5C5E\u6027",
43523
+ editMode: "\u6811\u8282\u70B9\u6CA1\u6709\u914D\u7F6E\u7F16\u8F91\u6A21\u5F0F\uFF1A\u540D\u79F0",
43524
+ nodeData: "\u4E0D\u662F\u5B9E\u4F53\u6811\u8282\u70B9\u6570\u636E",
43525
+ noFoundTreeNode: "\u672A\u627E\u5230\u6811\u8282\u70B9"
43526
+ },
43527
+ treeGrid: {
43528
+ columnsSchema: "\u6811\u8868\u683C\u65E0\u503C\u5217\u6A21\u5F0F",
43529
+ columnMode: "\u6811\u8868\u683C\u65E0\u7236\u503C\u5217\u6A21\u5F0F"
43530
+ },
43531
+ treeGridEx: {
43532
+ noConfigured: "\u8282\u70B9\u6CA1\u6709\u914D\u7F6E\u5BF9\u5E94\u8868\u683C\u5217{name}\u7684\u6570\u636E\u9879",
43533
+ editItem: "\u6CA1\u6709\u627E\u5230\u5BF9\u5E94\u8868\u683C\u5217{name}\u7684\u7F16\u8F91\u9879\u6A21\u578B",
43534
+ noPickedUp: "\u672A\u5728\u884C\u6570\u636E\u4E2D\u53D6\u5230 {valueItem} \u7684\u503C",
43535
+ behaviorGroup: "{id}\u64CD\u4F5C\u5217\u6CA1\u6709\u914D\u7F6E\u754C\u9762\u884C\u4E3A\u7EC4",
43536
+ noSupportCreation: "\u6682\u4E0D\u652F\u6301\u65B0\u5EFA",
43537
+ updateBehavior: "\u6811\u8282\u70B9\u6CA1\u6709\u914D\u7F6E\u66F4\u65B0\u5B9E\u4F53\u884C\u4E3A"
43538
+ },
43539
+ wizardPanel: {
43540
+ wizardForm: "\u627E\u4E0D\u5230{activeFormTag}\u7684\u5411\u5BFC\u8868\u5355",
43541
+ formController: "\u627E\u4E0D\u5230{activeFormTag}\u7684\u8868\u5355\u63A7\u5236\u5668",
43542
+ noConfiguration: "\u6CA1\u6709\u914D\u7F6E\u5411\u5BFC\u8868\u5355\u96C6\u5408",
43543
+ wizardFormIdentifier: "\u627E\u4E0D\u5230\u6807\u8BC6\u4E3A{tag}\u7684\u5411\u5BFC\u8868\u5355",
43544
+ noPreviousForm: "\u6CA1\u6709\u4E0A\u4E00\u4E2A\u8868\u5355",
43545
+ nextStep: "\u627E\u4E0D\u5230\u4E0B\u4E00\u4E2A\u5411\u5BFC\u6B65\u9AA4",
43546
+ nextForm: "\u627E\u4E0D\u5230\u4E0B\u4E00\u4E2A\u5411\u5BFC\u8868\u5355"
43547
+ }
43548
+ },
43549
+ utils: {
43550
+ buttonState: {
43551
+ isFinitenconsistency: "{uiActionId}\u754C\u9762\u884C\u4E3A\u7684\u5B9E\u4F53{appDeName}\u548C\u6570\u636E\u7684\u5B9E\u4F53{appDeId}\u4E0D\u4E00\u81F4"
43552
+ },
43553
+ counter: {
43554
+ decrement: "\u9519\u8BEF\u7684\u8C03\u7528\uFF01decrement\u4E0D\u80FD\u5BF9count\u4E3A0\u8C03\u7528"
43555
+ },
43556
+ dataFileUtil: {
43557
+ startImport: "\u5F00\u59CB\u5BFC\u5165\uFF0C\u8BE6\u7EC6\u8FDB\u5EA6\u548C\u7ED3\u679C\u8BF7\u770B\u5E94\u7528\u901A\u77E5",
43558
+ noExist: "ibiz.util.getExportExcel\u4E0D\u5B58\u5728",
43559
+ loadError: "\u5BFC\u51FA\u6A21\u5757\u52A0\u8F7D\u9519\u8BEF",
43560
+ importData: "\u6CA1\u6709\u627E\u5230\u5BF9\u5E94\u7684\u5BFC\u5165\u6570\u636E\u6A21\u578B"
43561
+ },
43562
+ valueDefault: {
43563
+ noExist: "appdata.context\u4E0D\u5B58\u5728",
43564
+ nosupported: "\u9ED8\u8BA4\u503C\u7C7B\u578B[{valueType}]\u672A\u652F\u6301"
43565
+ },
43566
+ valueEx: {
43567
+ objectNameField: "\u7F3A\u5C11objectNameField"
43568
+ },
43569
+ valueRule: {
43570
+ length: "\u5185\u5BB9\u957F\u5EA6\u5FC5\u987B\u5C0F\u4E8E\u7B49\u4E8E{maxLength},\u5F53\u524D\u957F\u5EA6\u4E3A{length}"
43571
+ },
43572
+ viewMsg: {
43573
+ message: "\u627E\u4E0D\u5230\u89C6\u56FE\u6D88\u606F\u7EC4{msgGroupId}\u7684\u6A21\u578B",
43574
+ noFound: "\u6CA1\u6709\u627E\u5230{message}\u89C6\u56FE\u6D88\u606F\u6A21\u578B",
43575
+ unconfigured: "\u672A\u914D\u7F6E\u5B9E\u4F53\u6570\u636E\u96C6",
43576
+ unconfiguredEntities: "\u672A\u914D\u7F6E\u5E94\u7528\u5B9E\u4F53"
43577
+ }
43578
+ }
43579
+ },
43580
+ deLogic: {
43581
+ deLogicLink: {
43582
+ connectionConditional: "\u754C\u9762\u8FDE\u63A5\u6761\u4EF6\u903B\u8F91\u7EC4\u672A\u914D\u7F6E\u903B\u8F91\u9879",
43583
+ entityConnectionConditional: "\u5B9E\u4F53\u903B\u8F91\u8FDE\u63A5\u6761\u4EF6\u7EC4\u540D\u79F0\uFF1A{name}-\u6761\u4EF6\u7EC4\u6807\u8BC6\uFF1A{id}-\u8FD0\u884C\u7ED3\u679C\uFF1A",
43584
+ missingConditionValue: "\u5F53\u524D\u6761\u4EF6\u503C\u7C7B\u578B\u4E3A[\u6570\u636E\u5BF9\u8C61\u5C5E\u6027],\u7F3A\u5C11\u914D\u7F6E\u6761\u4EF6\u503C",
43585
+ sourceDataMissingConditionValue: "\u5F53\u524D\u6761\u4EF6\u503C\u7C7B\u578B\u4E3A[\u6E90\u6570\u636E\u5BF9\u8C61\u5C5E\u6027],\u7F3A\u5C11\u914D\u7F6E\u6761\u4EF6\u503C",
43586
+ noSupportedTime: "\u6682\u672A\u652F\u6301\u6761\u4EF6\u503C\u7C7B\u578B\u4E3A[\u5F53\u524D\u65F6\u95F4]",
43587
+ entityLogicalConnection: "\u5B9E\u4F53\u903B\u8F91\u8FDE\u63A5\u6761\u4EF6\u9879\uFF1A{name}-\u6761\u4EF6\u503C\u7C7B\u578B\uFF1A{type}-\u6E90\u5C5E\u6027\u540D\u79F0\uFF1A{dstField}-\u6E90\u5BF9\u8C61\u503C\uFF1A",
43588
+ comparisonCondition: "-\u5BF9\u6BD4\u6761\u4EF6\uFF1A{op}",
43589
+ comparisonValue: "-\u5BF9\u6BD4\u503C\uFF1A",
43590
+ compareResults: "-\u5BF9\u6BD4\u7ED3\u679C\uFF1A"
43591
+ },
43592
+ deLogicNode: {
43593
+ missingTargetParameter: "\u7F3A\u5C11\u76EE\u6807\u53C2\u6570\u5BF9\u8C61\u6216\u8005\u6E90\u53C2\u6570\u5BF9\u8C61\u914D\u7F6E",
43594
+ additionalParameter: "\u5B9E\u4F53\u903B\u8F91\u8282\u70B9\uFF08\u9644\u52A0\u5230\u6570\u7EC4\uFF09\uFF1A{id}-\u9644\u52A0\u53C2\u6570\uFF1A",
43595
+ addedValue: "-\u9644\u52A0\u503C\uFF1A",
43596
+ logicNodeParameterName: "\u5B9E\u4F53\u903B\u8F91\u8282\u70B9\uFF08\u7ED1\u5B9A\u53C2\u6570\uFF09\uFF1A{id}-\u53C2\u6570\u540D\u79F0\uFF1A{dstDELogicParamId}-\u503C\uFF1A",
43597
+ copyParameter: "\u5B9E\u4F53\u903B\u8F91\u8282\u70B9\uFF08\u62F7\u8D1D\u53C2\u6570\uFF09\uFF1A{id}-\u53C2\u6570\u540D\u79F0\uFF1A{dstDELogicParamId}-\u503C\uFF1A",
43598
+ dataSet: "\u5B9E\u4F53\u903B\u8F91\u8282\u70B9\uFF08\u6570\u636E\u96C6\u5408\uFF09\uFF1A{id}-\u6570\u636E\u96C6\u5B9E\u4F53\u6807\u8BC6\uFF1A{dstAppDataEntityId}-\u6570\u636E\u96C6\u6807\u8BC6\uFF1A{dstAppDEDataSetId}-\u53C2\u6570\u540D\u79F0\uFF1A{retDELogicParamId}-\u503C\uFF1A",
43599
+ unspecifiedEntity: "\u672A\u6307\u5B9A\u5E94\u7528\u5B9E\u4F53",
43600
+ unspecifiedBehavior: "\u672A\u6307\u5B9A\u5B9E\u4F53\u884C\u4E3A",
43601
+ entityActions: "\u5B9E\u4F53\u903B\u8F91\u8282\u70B9\uFF08\u5B9E\u4F53\u884C\u4E3A\uFF09\uFF1A{id}-\u754C\u9762\u884C\u4E3A\u6240\u5C5E\u5B9E\u4F53\uFF1A{dstAppDataEntityId}-\u5B9E\u4F53\u884C\u4E3A\u6807\u8BC6\uFF1A{dstAppDEActionId}-\u53C2\u6570\u540D\u79F0\uFF1A{retDELogicParamId}-\u503C\uFF1A",
43602
+ unsupportedReturnType: "\u6682\u672A\u652F\u6301\u7684\u7ED3\u675F\u8282\u70B9\u8FD4\u56DE\u503C\u7C7B\u578B: {returnType}",
43603
+ endNode: "\u5B9E\u4F53\u903B\u8F91\u8282\u70B9\uFF08\u7ED3\u675F\u8282\u70B9\uFF09\uFF1A{id}-\u8FD4\u56DE\u503C\u7C7B\u578B\uFF1A{returnType}-\u8FD4\u56DE\u503C\uFF1A",
43604
+ noSupportedLogic: "\u6682\u672A\u652F\u6301\u903B\u8F91\u5904\u7406\u53C2\u6570\u64CD\u4F5C{paramAction}",
43605
+ preparationParameter: "\u5B9E\u4F53\u903B\u8F91\u8282\u70B9\uFF08\u51C6\u5907\u53C2\u6570\uFF09\uFF1A{id}-\u53C2\u6570\u5904\u7406\u64CD\u4F5C\uFF1A{paramAction}-\u76EE\u6807\u903B\u8F91\u53C2\u6570\uFF1A{dstDELogicParamId}-\u6E90\u53C2\u6570\uFF08\u503C\uFF09\uFF1A",
43606
+ targetParameter: "-\u76EE\u6807\u53C2\u6570\uFF08\u503C\uFF09\uFF1A",
43607
+ missingConfiguration: "\u7F3A\u5C11\u76EE\u6807\u53C2\u6570\u5BF9\u8C61\u914D\u7F6E",
43608
+ rebuildParameter: "\u5B9E\u4F53\u903B\u8F91\u8282\u70B9\uFF08\u91CD\u65B0\u5EFA\u7ACB\u53C2\u6570\uFF09\uFF1A{id}-\u91CD\u5EFA\u53C2\u6570\uFF1A{dstDELogicParamId}",
43609
+ resetParameter: "\u5B9E\u4F53\u903B\u8F91\u8282\u70B9\uFF08\u91CD\u7F6E\u53C2\u6570\uFF09\uFF1A{id}-\u91CD\u7F6E\u53C2\u6570\uFF1A{dstDELogicParamId}",
43610
+ missingParameterProperty: "\u7F3A\u5C11\u76EE\u6807\u53C2\u6570\u5BF9\u8C61\u6216\u76EE\u6807\u5C5E\u6027\u914D\u7F6E",
43611
+ sortedArrayParameters: "\u5B9E\u4F53\u903B\u8F91\u8282\u70B9\uFF08\u6392\u5E8F\u6570\u7EC4\u53C2\u6570\uFF09\uFF1A{id}-\u6392\u5E8F\u5C5E\u6027\uFF1A{dstFieldName}-\u6392\u5E8F\u6A21\u5F0F\uFF1A{dstSortDir}-\u53C2\u6570\u540D\u79F0\uFF1A{dstDELogicParamId}-\u6392\u5E8F\u540E\u6570\u7EC4\uFF1A",
43612
+ startupNode: "\u5B9E\u4F53\u903B\u8F91\u8282\u70B9\uFF08\u542F\u52A8\u8282\u70B9\uFF09\uFF1A{id}",
43613
+ throwsException: "\u5B9E\u4F53\u903B\u8F91\u8282\u70B9\uFF08\u629B\u51FA\u5F02\u5E38\uFF09\uFF1A{id}-\u9519\u8BEF\u4EE3\u7801\uFF1A{errorCode}-\u9519\u8BEF\u4FE1\u606F\uFF1A{errorInfo}",
43614
+ environmentVariables: "\u672A\u652F\u6301\u7684\u903B\u8F91\u53C2\u6570\u7C7B\u578B: \u7CFB\u7EDF\u73AF\u5883\u53D8\u91CF",
43615
+ fileObjectListVariable: "\u672A\u652F\u6301\u7684\u903B\u8F91\u53C2\u6570\u7C7B\u578B: \u6587\u4EF6\u5BF9\u8C61\u5217\u8868\u53D8\u91CF",
43616
+ fileObjectVariables: "\u672A\u652F\u6301\u7684\u903B\u8F91\u53C2\u6570\u7C7B\u578B: \u6587\u4EF6\u5BF9\u8C61\u53D8\u91CF",
43617
+ filterObjectVariables: "\u672A\u652F\u6301\u7684\u903B\u8F91\u53C2\u6570\u7C7B\u578B: \u8FC7\u6EE4\u5668\u5BF9\u8C61\u53D8\u91CF",
43618
+ finalDataVariables: "\u672A\u652F\u6301\u7684\u903B\u8F91\u53C2\u6570\u7C7B\u578B: \u6700\u540E\u6570\u636E\u53D8\u91CF",
43619
+ rawDataObjects: "\u672A\u652F\u6301\u7684\u903B\u8F91\u53C2\u6570\u7C7B\u578B: \u539F\u59CB\u6570\u636E\u5BF9\u8C61",
43620
+ operationSessionVariables: "\u672A\u652F\u6301\u7684\u903B\u8F91\u53C2\u6570\u7C7B\u578B: \u64CD\u4F5C\u4F1A\u8BDD\u53D8\u91CF",
43621
+ calculateEntity: "\u8BA1\u7B97\u5B9E\u4F53\u903B\u8F91\u53C2\u6570\uFF0C\u6807\u8BC6\uFF1A{tag}",
43622
+ value: "-\u503C\uFF1A",
43623
+ recreatingVariables: "\u672A\u652F\u6301\u7684\u903B\u8F91\u53C2\u6570\u7C7B\u578B\u91CD\u65B0\u5EFA\u7ACB\u53D8\u91CF",
43624
+ reEstablish: "\u91CD\u65B0\u5EFA\u7ACB\u5B9E\u4F53\u903B\u8F91\u53C2\u6570\uFF0C\u6807\u8BC6\uFF1A{tag}",
43625
+ expressionEmpty: "\u8868\u8FBE\u5F0F\u4E3A\u7A7A",
43626
+ sourceValueType: "\u6682\u672A\u652F\u6301\u6E90\u503C\u7C7B\u578B{srcValueType}",
43627
+ fetchingAttribute: "\u4ECE\u6E90\u53C2\u6570\u53D6\u5C5E\u6027{srcField}\u62A5\u9519\uFF0C\u6E90\u53C2\u6570\uFF1A",
43628
+ noScriptCode: "\u811A\u672C\u4EE3\u7801\u6A21\u5F0F\u6CA1\u6709\u914D\u7F6E\u811A\u672C\u4EE3\u7801",
43629
+ noConfigurationLogicNode: "\u5B9E\u4F53\u903B\u8F91\u6CA1\u6709\u914D\u7F6E\u903B\u8F91\u8282\u70B9",
43630
+ unsupportedLogical: "\u672A\u652F\u6301\u7684\u903B\u8F91\u8282\u70B9\u7C7B\u578B: {logicNodeType}",
43631
+ noSetStartNode: "\u672A\u8BBE\u7F6E\u8D77\u59CB\u8282\u70B9",
43632
+ startExecuting: "\u5F00\u59CB\u6267\u884C\u5B9E\u4F53\u903B\u8F91\uFF0C\u903B\u8F91\u6807\u8BC6\uFF1A{id}-\u903B\u8F91\u540D\u79F0\uFF1A{name}",
43633
+ endExecution: "\u7ED3\u675F\u6267\u884C\u5B9E\u4F53\u903B\u8F91\uFF0C\u903B\u8F91\u6807\u8BC6\uFF1A{id}-\u903B\u8F91\u540D\u79F0\uFF1A{name}",
43634
+ noFoundEntityLogic: "{dataEntityId}\u627E\u4E0D\u5230\u5B9E\u4F53\u903B\u8F91{deDELogicId}"
43635
+ }
43636
+ },
43637
+ engine: {
43638
+ correspondingEngine: "\u6CA1\u6709{key}\u5BF9\u5E94\u7684\u5F15\u64CE",
43639
+ logicOpendata: "\u7F3A\u5C11opendata\u7684\u89C6\u56FE\u903B\u8F91",
43640
+ logicNewdata: "\u7F3A\u5C11newdata\u7684\u89C6\u56FE\u903B\u8F91",
43641
+ deleteModel: "{codeName}\u5220\u9664\u6A21\u578B\uFF1A{name}",
43642
+ childComponentsMounted: "{id}\u7684\u5B50\u7EC4\u4EF6\uFF1A{childName}\u90FD\u5DF2mounted",
43643
+ minimization: "\u5F53\u524D\u89C6\u56FE\u6253\u5F00\u65B9\u5F0F\u4E3A [{mode}], \u4E0D\u652F\u6301\u6700\u5C0F\u5316!",
43644
+ loadEntityData: "\u8BE5\u89C6\u56FE\u6CA1\u6709\u5B9E\u4F53\uFF0C\u65E0\u6CD5\u52A0\u8F7D\u5B9E\u4F53\u6570\u636E"
43645
+ },
43646
+ global: {
43647
+ noImplemented: "\u83B7\u53D6\u5E94\u7528\u5168\u5C40\u53D8\u91CF\u6CA1\u6709\u5B9E\u73B0"
43648
+ },
43649
+ hub: {
43650
+ failedParse: "\u89C6\u56FE\u53C2\u6570modalOption \u89E3\u6790\u5931\u8D25\uFF1A{error}",
43651
+ noExist: "\u89C6\u56FE[{id}]\u4E0D\u5B58\u5728"
43652
+ },
43653
+ logicScheduler: {
43654
+ executor: {
43655
+ noConfiguredLogic: "\u6CA1\u6709\u914D\u7F6E\u5B9E\u4F53\u754C\u9762\u903B\u8F91",
43656
+ missingTrigger: "\u903B\u8F91\u4E2D\u7F3A\u5C11\u89E6\u53D1\u5E94\u7528\u5B9E\u4F53\u754C\u9762\u884C\u4E3Aid",
43657
+ noActionableData: "opendata\u6CA1\u6709\u53EF\u64CD\u4F5C\u6570\u636E\uFF01",
43658
+ defaultOpendataViewLogic: "opendata\u89C6\u56FE\u903B\u8F91\u6CA1\u6709\u914D\u7F6E\u9ED8\u8BA4\u6253\u5F00\u89C6\u56FE",
43659
+ noActuallyReference: "opendata\u89C6\u56FE\u903B\u8F91\u7684\u9ED8\u8BA4\u6253\u5F00\u89C6\u56FE\u6CA1\u6709\u5B9E\u9645\u5F15\u7528\u89C6\u56FE",
43660
+ attributeConfiguration: "{codeName}[\u591A\u8868\u5355\u5B9E\u4F53] or [\u7D22\u5F15\u5B9E\u4F53]\u7F3A\u5C11\u7C7B\u578B\u5C5E\u6027\u914D\u7F6E",
43661
+ entityAttributeValues: "\u6570\u636E\u6E90\u65E0\u8868\u5355\u7C7B\u578B\u5E94\u7528\u5B9E\u4F53\u5C5E\u6027\u503C",
43662
+ editViews: "\u6CA1\u6709\u627E\u5230\u4E0E\u8868\u5355\u7C7B\u578B{formTypeValue}\u76F8\u5173\u7684\u5B9E\u4F53\u7684\u7F16\u8F91\u89C6\u56FE",
43663
+ selectionView: "\u6CA1\u6709\u627E\u5230\u6279\u6DFB\u52A0\u9700\u8981\u6253\u5F00\u7684\u9009\u62E9\u89C6\u56FE",
43664
+ noSupportedBatchAddOnly: "batchAddOnly\u6682\u672A\u652F\u6301",
43665
+ newdataViewLogic: "newdata\u89C6\u56FE\u903B\u8F91\u6CA1\u6709\u914D\u7F6E\u9ED8\u8BA4\u65B0\u5EFA\u6570\u636E\u89C6\u56FE",
43666
+ indexEntity: "\u7F3A\u5C11\u9ED8\u8BA4\u7D22\u5F15\u5B9E\u4F53\u9009\u62E9\u89C6\u56FE",
43667
+ checkOne: "\u8BF7\u9009\u4E2D\u4E00\u6761\u6570\u636E",
43668
+ entitiesAssociated: "\u6CA1\u6709\u627E\u5230\u4E0E\u7D22\u5F15\u7C7B\u578B{indexType}\u76F8\u5173\u7684\u5B9E\u4F53\u7684\u7F16\u8F91\u89C6\u56FE",
43669
+ relationships: "\u5B9E\u4F53\u6CA1\u6709\u4ECE\u5173\u7CFB\u96C6\u5408\uFF01",
43670
+ foreignKey: "\u6CA1\u6709\u627E\u5230{pickParentDeName}\u5728\u5F53\u524D\u5B9E\u4F53\u7684\u5916\u952E\u5C5E\u6027",
43671
+ mappingProperties: "\u6279\u91CF\u65B0\u5EFA\u8F6C\u6362\u6620\u5C04\u5C5E\u6027",
43672
+ newCreationData: "\u6279\u91CF\u65B0\u5EFA\u521B\u5EFA\u6570\u636E",
43673
+ logicType: "\u903B\u8F91\u7C7B\u578B {logicType} \u6682\u672A\u652F\u6301\uFF01",
43674
+ noImplementedMethod: "\u65B9\u6CD5\u672A\u6267\u884C\u3002"
43675
+ },
43676
+ trigger: {
43677
+ triggerType: "\u9884\u5B9A\u4E49\u903B\u8F91\u7C7B\u578B{type}\u7684\u89E6\u53D1\u5668\u7C7B\u578B\u53EA\u80FD\u662F\u811A\u672C",
43678
+ noSupportedType: "\u89E6\u53D1\u5668\u7C7B\u578B {triggerType} \u6682\u672A\u652F\u6301\uFF01",
43679
+ noExecutorBound: "{id}\u6CA1\u6709\u7ED1\u5B9Aexecutor",
43680
+ timerLacks: "\u5B9A\u65F6\u5668\u7F3A\u5C11\u5B9A\u65F6\u95F4\u9694",
43681
+ parameterCallback: "\u5B9A\u65F6\u5668\u7F3A\u5C11\u9ED8\u8BA4\u53C2\u6570\u56DE\u8C03"
43682
+ }
43683
+ },
43684
+ model: {
43685
+ utils: {
43686
+ noFoundApplication: "\u672A\u627E\u5230\u5E94\u7528",
43687
+ unconfiguredPlugins: "\u5E94\u7528\u672A\u914D\u7F6E\u63D2\u4EF6",
43688
+ noFound: "\u672A\u627E\u5230\u63D2\u4EF6{id}"
43689
+ },
43690
+ view: {
43691
+ engineClassifications: "\u672A\u652F\u6301\u7684\u5F15\u64CE\u5206\u7C7B\uFF1A{engineType}"
43692
+ }
43693
+ },
43694
+ platform: {
43695
+ failedDownload: "\u4E0B\u8F7D\u6587\u4EF6\u5931\u8D25",
43696
+ fileStreamData: "\u6587\u4EF6\u6D41\u6570\u636E\u4E0D\u5B58\u5728"
43697
+ },
43698
+ register: {
43699
+ helper: {
43700
+ adapter: "\u627E\u4E0D\u5230\u7CFB\u7EDF\u8BA1\u6570\u5668\u63D2\u4EF6{pluginKey}\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43701
+ customizedSystemAdapter: "\u627E\u4E0D\u5230\u81EA\u5B9A\u4E49\u7CFB\u7EDF\u8BA1\u6570\u5668{codeName}\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43702
+ noFoundSystemCounter: "\u627E\u4E0D\u7CFB\u7EDF\u8BA1\u6570\u5668\u7C7B\u578B{counterType}\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43703
+ applicationMenu: "\u627E\u4E0D\u5230\u5E94\u7528\u83DC\u5355\u9879\u63D2\u4EF6{pluginKey}\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43704
+ asynchronousAction: "\u627E\u4E0D\u5F02\u6B65\u64CD\u4F5C\u7C7B\u578B{actiontype}\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43705
+ matchedPlugin: "\u672A\u5339\u914D\u5230\u63D2\u4EF6[{pluginId}]\u6A21\u578B",
43706
+ customRegistration: "\u627E\u4E0D\u5230\u81EA\u5B9A\u4E49\u6CE8\u518C\u6807\u8BC6\u4E3A[{registerKey}]\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43707
+ widgetPlugin: "\u627E\u4E0D\u5230\u90E8\u4EF6\u63D2\u4EF6{pluginKey}\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43708
+ widgetStyleType: "\u627E\u4E0D\u5230\u90E8\u4EF6\u7C7B\u578B\uFF1A[{controlType}]\u7684\u90E8\u4EF6\u6837\u5F0F\uFF1A[{controlStyle}]\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43709
+ widgetType: "\u627E\u4E0D\u5230\u90E8\u4EF6\u7C7B\u578B{controlType}\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43710
+ entityBehaviorPlugin: "\u627E\u4E0D\u5230\u5B9E\u4F53\u884C\u4E3A\u63D2\u4EF6{pluginKey}\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43711
+ entityBehaviorMethod: "\u627E\u4E0D\u5B9E\u4F53\u884C\u4E3A\u65B9\u6CD5\u7C7B\u578B\u4E3A{methodType}\u7684\u9002\u914D\u5668",
43712
+ editorPlugin: "\u627E\u4E0D\u5230\u7F16\u8F91\u5668\u63D2\u4EF6{pluginKey}\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43713
+ editorStyleType: "\u627E\u4E0D\u5230\u7F16\u8F91\u5668\u7C7B\u578B\uFF1A[{editorType}]\u7684\u7F16\u8F91\u5668\u6837\u5F0F\uFF1A[{editorStyle}]\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43714
+ editorTypePredefinedType: "\u627E\u4E0D\u5230\u7F16\u8F91\u5668\u7C7B\u578B\uFF1A[{editorType}]\u7684\u9884\u7F6E\u7C7B\u578B\uFF1A[{predefinedType}]\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43715
+ editorType: "\u627E\u4E0D\u5230\u7F16\u8F91\u5668\u7C7B\u578B{editorType}\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43716
+ formMemberType: "\u627E\u4E0D\u5230\u8868\u5355\u6210\u5458\u7C7B\u578B{detailType}\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43717
+ tableColumnPlugin: "\u627E\u4E0D\u5230\u8868\u683C\u5217\u63D2\u4EF6{pluginKey}\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43718
+ tableColumnType: "\u627E\u4E0D\u5230\u8868\u683C\u5217\u7C7B\u578B{key}\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43719
+ messageType: "\u627E\u4E0D\u7AD9\u5185\u4FE1\u7C7B\u578B{content_type}\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43720
+ panelMemberPlugin: "\u627E\u4E0D\u5230\u9762\u677F\u6210\u5458\u63D2\u4EF6{pluginKey}\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43721
+ panelContainerPredefined: "\u627E\u4E0D\u5230\u9762\u677F\u5BB9\u5668\u9884\u7F6E\u7C7B\u578B\u4E3A{predefinedType}\u7684\u9002\u914D\u5668\uFF0C\u6CE8\u518Ckey\u4E3A{key}",
43722
+ panelMemberDirectContent: "\u627E\u4E0D\u5230\u9762\u677F\u6210\u5458\u76F4\u63A5\u5185\u5BB9\u9884\u7F6E\u7C7B\u578B\u4E3A{predefinedType}\u7684\u9002\u914D\u5668\uFF0C\u6CE8\u518Ckey\u4E3A{key}",
43723
+ panelMemberType: "\u627E\u4E0D\u5230\u9762\u677F\u6210\u5458\u7C7B\u578B{itemType}\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43724
+ portalWidgetPlugin: "\u627E\u4E0D\u5230\u95E8\u6237\u90E8\u4EF6\u63D2\u4EF6{pluginKey}\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43725
+ portalWidgetMemberType: "\u627E\u4E0D\u5230\u95E8\u6237\u90E8\u4EF6\u6210\u5458\u7C7B\u578B{portletType}\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43726
+ treeTableColumnPlugin: "\u627E\u4E0D\u5230\u6811\u8868\u683C\u5217\u63D2\u4EF6{pluginKey}\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43727
+ interfaceBehaviorPlugin: "\u627E\u4E0D\u5230\u754C\u9762\u884C\u4E3A\u63D2\u4EF6{pluginKey}\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43728
+ interfaceBehaviorMode: "\u627E\u4E0D\u754C\u9762\u884C\u4E3A\u6A21\u5F0F{uiactionMode}\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43729
+ frontEndPluginNode: "\u627E\u4E0D\u5230\u754C\u9762\u903B\u8F91\u524D\u7AEF\u63D2\u4EF6\u8282\u70B9\uFF0C\u63D2\u4EF6{pluginKey}\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43730
+ viewPlugin: "\u627E\u4E0D\u5230\u89C6\u56FE\u63D2\u4EF6{pluginKey}\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43731
+ correspondViewTypeStyle: "\u627E\u4E0D\u5230\u89C6\u56FE\u7C7B\u578B\uFF1A[{viewType}]\u7684\u89C6\u56FE\u6837\u5F0F\uFF1A[{viewStyle}]\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43732
+ toolbarItem: "\u627E\u4E0D\u5230\u5DE5\u5177\u680F\u9879\u63D2\u4EF6{pluginKey}\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43733
+ acItem: "\u627E\u4E0D\u5230\u81EA\u586B\u5217\u8868\u9879\u63D2\u4EF6{pluginKey}\u5BF9\u5E94\u7684\u9002\u914D\u5668"
43734
+ }
43735
+ },
43736
+ service: {
43737
+ noConfiguredPrimary: "\u5B9E\u4F53[{codeName}]\u672A\u914D\u7F6E\u4E3B\u952E\u5B57\u6BB5",
43738
+ noConfiguredField: "\u5B9E\u4F53[{codeName}]\u672A\u914D\u7F6E\u4E3B\u6587\u672C\u5B57\u6BB5",
43739
+ convertedNumber: "{value}\u4E0D\u80FD\u8F6C\u6362\u6210\u6570\u5B57",
43740
+ subRelationships: "\u5B50\u5173\u7CFB\u672A\u914D\u7F6E\u5D4C\u5957\u5173\u7CFB\u6570\u636E\u96C6, \u4F1A\u5BFC\u81F4\u9012\u5F52\u67E5\u8BE2\u6B7B\u5FAA\u73AF\uFF0C\u8BF7\u914D\u7F6E!",
43741
+ unsupportedMethod: "\u672A\u652F\u6301\u7684\u5E94\u7528\u5B9E\u4F53\u65B9\u6CD5\u8F93\u5165\u5C5E\u6027\u7C7B\u578B: {type}",
43742
+ noFoundUsernamePassword: "\u672A\u627E\u5230\u533F\u540D\u767B\u5F55\u914D\u7F6E\u7528\u6237\u540D\u6216\u5BC6\u7801",
43743
+ loginFailure: "\u767B\u5F55\u5931\u8D25",
43744
+ logoutFailure: "\u767B\u51FA\u5931\u8D25",
43745
+ noFound: "\u672A\u627E\u5230\u5E94\u7528\u5B9E\u4F53[{id}]",
43746
+ masterState: "{codeName}\u5B9E\u4F53\u4E0D\u5B58\u5728\u6216\u8005\u4E3A\u542F\u7528\u4E3B\u72B6\u6001\uFF0C\u8FD4\u56DEtrue",
43747
+ operationIdentifier: "\u64CD\u4F5C\u6807\u8BC6{dataAccessAction}\u4E3B\u72B6\u6001\u8BA1\u7B97\u5F00\u59CB",
43748
+ matchMasterState: "\u5339\u914D\u4E3B\u72B6\u6001",
43749
+ masterStatePermissions: "\u5141\u8BB8\u7684\u4E3B\u72B6\u6001\u6743\u9650\u96C6\u5408",
43750
+ noMatchedState: "\u6CA1\u5339\u914D\u4E3B\u72B6\u6001\uFF0C\u8FD4\u56DEfalse",
43751
+ permissionCalculation: "\u64CD\u4F5C\u6807\u8BC6{dataAccessAction}\u6743\u9650\u8BA1\u7B97\u7ED3\u675F\uFF1A{result}",
43752
+ noFindCodeList: "\u627E\u4E0D\u5230{tag}\u4EE3\u7801\u8868",
43753
+ noConfiguredCounters: "\u672A\u914D\u7F6E\u5E94\u7528\u8BA1\u6570\u5668!",
43754
+ lackEntityLogic: "\u7F3A\u5C11\u5B9E\u4F53\u5904\u7406\u903B\u8F91",
43755
+ createBehavior: "create\u884C\u4E3A\u6CA1\u6709\u4F20data",
43756
+ updateBehavior: "update\u884C\u4E3A\u6CA1\u6709\u4F20data",
43757
+ deletionDeletion: "\u76EE\u524D\u53EA\u652F\u6301[DER1N]\u5173\u7CFB\u7C7B\u578B\u5173\u8054\u5220\u9664\u5220\u9664",
43758
+ unableDelete: "\u65E0\u6CD5\u5220\u9664[{logicName}-{srfmajortext}], \u6570\u636E\u88AB[{modelLogicName}-{msg}]\u5F15\u7528",
43759
+ noSupportedDataSource: "\u6570\u636E\u6765\u6E90\u7C7B\u578B{dataSetType}\u6682\u672A\u652F\u6301",
43760
+ sourceCodeTable: "\u6CA1\u6709\u6307\u5B9A\u6570\u636E\u6765\u6E90\u4EE3\u7801\u8868",
43761
+ requestMethods: "\u672A\u652F\u6301\u7684\u8BF7\u6C42\u65B9\u5F0F: {requestMethod}",
43762
+ noConfiguredRequestMethod: "\u672A\u914D\u7F6E\u8BF7\u6C42\u65B9\u5F0F",
43763
+ unsupportedBehaviorTypes: "\u672A\u652F\u6301\u7684\u884C\u4E3A\u7C7B\u578B[{actionType}]",
43764
+ noFoundServiceMethod: "\u672A\u627E\u5230\u670D\u52A1\u65B9\u6CD5: {id}",
43765
+ UnsupportedServiceMethod: "\u672A\u652F\u6301\u7684\u670D\u52A1\u65B9\u6CD5\u7C7B\u578B: {methodType}",
43766
+ noSupportedMethod: "{codeName}\u672A\u652F\u6301\u300C{id}\u300D\u65B9\u6CD5",
43767
+ noFoundStorageEntity: "\u5E94\u7528\u529F\u80FD[{name}]\u672A\u627E\u5230\u5B58\u50A8\u5B9E\u4F53[{stoageAppDataEntityId}]",
43768
+ noExist: "\u5E94\u7528\u529F\u80FD[{name}]\u4E0D\u5B58\u5728",
43769
+ noFoundEntity: "\u672A\u627E\u5230\u5B58\u50A8\u5B9E\u4F53[{stoageAppDataEntityId}]",
43770
+ noImplemented: "\u300C{methodName}\u300D\u672A\u5B9E\u73B0",
43771
+ noImplementedCounter: "\u672A\u5B9E\u73B0\u8BA1\u6570\u5668\u52A0\u8F7D\u65B9\u6CD5",
43772
+ noFoundCounterBehavior: "\u672A\u627E\u5230\u83B7\u53D6\u8BA1\u6570\u5668\u884C\u4E3A!",
43773
+ createPrimaryKeyData: "\u65B0\u5EFA\u8054\u5408\u4E3B\u952E\u6570\u636E\u5931\u8D25\uFF0C\u5DF2\u6709\u4E3B\u952E\u4E3A{srfkey}\u7684\u6570\u636E",
43774
+ updatePrimaryKeyData: "\u66F4\u65B0\u8054\u5408\u4E3B\u952E\u6570\u636E\u5931\u8D25\uFF0C\u5DF2\u6709\u4E3B\u952E\u4E3A{srfkey}\u7684\u6570\u636E",
43775
+ noExistNoUpdated: "\u6570\u636E\u4E0D\u5B58\u5728\uFF0C\u65E0\u6CD5\u66F4\u65B0!",
43776
+ dataNoExistNoUpdated: "\u6570\u636E[{srfdename}-{srfmajortext}({srfkey})]\u4E0D\u5B58\u5728\uFF0C\u65E0\u6CD5\u66F4\u65B0!",
43777
+ noDeleted: "\u672A\u627E\u5230\u4EE5\u4E0B\u6570\u636E\u300C{notRemoveKey}\u300D\uFF0C\u65E0\u6CD5\u5220\u9664!",
43778
+ noAttributeName: "\u6CA1\u6709\u6307\u5B9A\u5C5E\u6027\u540D\u79F0",
43779
+ noContextParameterName: "\u6CA1\u6709\u6307\u5B9A\u4E0A\u4E0B\u6587\u53C2\u6570\u540D\u79F0",
43780
+ conditionalObjects: "\u65E0\u6CD5\u8BC6\u522B\u7684\u6761\u4EF6\u5BF9\u8C61",
43781
+ mustArray: "\u503C\u5FC5\u987B\u4E3A\u6570\u7EC4",
43782
+ unsupportedQueryTypes: "\u6682\u672A\u652F\u6301\u7684\u67E5\u8BE2\u6761\u4EF6\u7C7B\u578B: {condType}",
43783
+ predefinedType: "\u9884\u5B9A\u4E49\u7C7B\u578B{predefinedType}\u6682\u4E0D\u652F\u6301",
43784
+ dynamicCodeTable: "\u52A8\u6001\u4EE3\u7801\u8868\u6570\u636E\u5C5E\u6027\u8FD4\u56DE\u503C\u4E0D\u4E3A\u5BF9\u8C61\u683C\u5F0F\u7684\u5B57\u7B26\u4E32\uFF0C\u65E0\u6CD5\u8F6C\u6362\uFF01",
43785
+ unconfiguredDataset: "\u672A\u914D\u7F6E\u6570\u636E\u96C6",
43786
+ processedWithout: "\u6267\u884C\u300C{funcName}\u300D\u4E0D\u5B58\u5728\u300Csrfkey\u300D\u65E0\u6CD5\u5904\u7406",
43787
+ noExistProcessed: "\u6267\u884C\u300C{funcName}\u300D\u4E0D\u5B58\u5728\u300Csrfsessionid\u300D\u65E0\u6CD5\u5904\u7406",
43788
+ missingDetreeColumnId: "\u6A21\u578B\u5F02\u5E38\u7F3A\u5C11detreeColumnId\u6216\u8005dataItemName"
43789
+ },
43790
+ uiAction: {
43791
+ noEntityOrBehavior: "\u672A\u914D\u7F6E\u5B9E\u4F53\u6216\u5B9E\u4F53\u884C\u4E3A",
43792
+ noConfiguredopenView: "\u672A\u914D\u7F6E\u6253\u5F00\u89C6\u56FE",
43793
+ frontProcessingModes: "\u672A\u652F\u6301\u7684\u524D\u53F0\u5904\u7406\u6A21\u5F0F[{frontProcessType}]",
43794
+ missingConfigurationScriptCode: "\u81EA\u5B9A\u4E49\u7C7B\u578B\u7F3A\u5C11\u914D\u7F6E\u811A\u672C\u4EE3\u7801",
43795
+ dataPrimaryKey: "\u6CA1\u6709\u627E\u5230\u6570\u636E\u4E3B\u952E",
43796
+ printFailure: "\u6253\u5370\u5931\u8D25",
43797
+ physicalPrint: "\u6CA1\u6709\u627E\u5230\u5B9E\u4F53\u6253\u5370\u9879",
43798
+ exportRequestFailed: "\u5BFC\u51FA\u8BF7\u6C42\u5931\u8D25",
43799
+ noEntityExportsFound: "\u6CA1\u6709\u627E\u5230\u5B9E\u4F53\u5BFC\u51FA\u9879",
43800
+ lackNativeEvent: "\u7F3A\u5C11\u539F\u751FJS\u4E8B\u4EF6\u5BF9\u8C61",
43801
+ logout: "\u9000\u51FA\u767B\u5F55",
43802
+ wantLogout: "\u60A8\u786E\u5B9A\u8981\u9000\u51FA\u767B\u5F55\u5417\uFF1F",
43803
+ operationConfirmation: "\u64CD\u4F5C\u786E\u8BA4",
43804
+ viewParameterModalOption: "\u89C6\u56FE\u53C2\u6570modalOption \u89E3\u6790\u5931\u8D25\uFF1A{error}",
43805
+ withdrawalConfirmed: "\u662F\u5426\u786E\u8BA4\u6267\u884C\u64A4\u56DE\u64CD\u4F5C\uFF1F",
43806
+ noFoundBehaviorModel: "\u6CA1\u627E\u5230{actionId}\u7684\u754C\u9762\u884C\u4E3A\u6A21\u578B"
43807
+ },
43808
+ uiLogic: {
43809
+ interfaceConnectionConditional: "\u754C\u9762\u8FDE\u63A5\u6761\u4EF6\u903B\u8F91\u7EC4\u672A\u914D\u7F6E\u903B\u8F91\u9879",
43810
+ connectionConditionGroup: "\u754C\u9762\u903B\u8F91\u8FDE\u63A5\u6761\u4EF6\u7EC4\u540D\u79F0\uFF1A{name}-\u6761\u4EF6\u7EC4\u6807\u8BC6\uFF1A{id}-\u8FD0\u884C\u7ED3\u679C\uFF1A",
43811
+ currentConditionValue: "\u5F53\u524D\u6761\u4EF6\u503C\u7C7B\u578B\u4E3A[\u6570\u636E\u5BF9\u8C61\u5C5E\u6027],\u7F3A\u5C11\u914D\u7F6E\u6761\u4EF6\u503C",
43812
+ sourceDataObjectAttribute: "\u5F53\u524D\u6761\u4EF6\u503C\u7C7B\u578B\u4E3A[\u6E90\u6570\u636E\u5BF9\u8C61\u5C5E\u6027],\u7F3A\u5C11\u914D\u7F6E\u6761\u4EF6\u503C",
43813
+ currentTime: "\u6682\u672A\u652F\u6301\u6761\u4EF6\u503C\u7C7B\u578B\u4E3A[\u5F53\u524D\u65F6\u95F4]",
43814
+ interfaceConnectionConditionalTypeName: "\u754C\u9762\u903B\u8F91\u8FDE\u63A5\u6761\u4EF6\u9879\uFF1A{name}-\u6761\u4EF6\u503C\u7C7B\u578B\uFF1A{type}-\u6E90\u5C5E\u6027\u540D\u79F0\uFF1A{dstField}-\u6E90\u5BF9\u8C61\u503C\uFF1A",
43815
+ asynchronousTermination: "\u672A\u652F\u6301\u7684\u903B\u8F91\u8FDE\u63A5\u7C7B\u578B: \u5F02\u6B65\u7ED3\u675F",
43816
+ asynchronousRejection: "\u672A\u652F\u6301\u7684\u903B\u8F91\u8FDE\u63A5\u7C7B\u578B: \u5F02\u6B65\u62D2\u7EDD",
43817
+ exceptionHandling: "\u672A\u652F\u6301\u7684\u903B\u8F91\u8FDE\u63A5\u7C7B\u578B: \u5F02\u5E38\u5904\u7406",
43818
+ logicalLinkTypes: "\u672A\u652F\u6301\u7684\u903B\u8F91\u8FDE\u63A5\u7C7B\u578B:{linkMode}",
43819
+ missingTargetParameter: "\u7F3A\u5C11\u76EE\u6807\u53C2\u6570\u5BF9\u8C61\u6216\u8005\u6E90\u53C2\u6570\u5BF9\u8C61\u914D\u7F6E",
43820
+ appendedArray: "\u754C\u9762\u903B\u8F91\u8282\u70B9\uFF08\u9644\u52A0\u5230\u6570\u7EC4\uFF09\uFF1A{id}-\u9644\u52A0\u53C2\u6570\uFF1A",
43821
+ bindingParameters: "\u754C\u9762\u903B\u8F91\u8282\u70B9\uFF08\u7ED1\u5B9A\u53C2\u6570\uFF09\uFF1A{id}-\u53C2\u6570\u540D\u79F0\uFF1A{dstDEUILogicParamId}-\u503C\uFF1A",
43822
+ copyParameter: "\u754C\u9762\u903B\u8F91\u8282\u70B9\uFF08\u62F7\u8D1D\u53C2\u6570\uFF09\uFF1A{id}-\u53C2\u6570\u540D\u79F0\uFF1A{dstDEUILogicParamId}-\u503C\uFF1A",
43823
+ missingfilter: "\u7F3A\u5C11\u914D\u7F6E\u8FC7\u6EE4\u53C2\u6570",
43824
+ interfaceLogicNodeDataSet: "\u754C\u9762\u903B\u8F91\u8282\u70B9\uFF08\u6570\u636E\u96C6\u5408\uFF09\uFF1A{id}-\u6570\u636E\u96C6\u5B9E\u4F53\u6807\u8BC6\uFF1A{dstAppDataEntityId}-\u6570\u636E\u96C6\u6807\u8BC6\uFF1A{dstAppDEDataSetId}-\u53C2\u6570\u540D\u79F0\uFF1A{retDEUILogicParamId}-\u503C\uFF1A",
43825
+ interfaceLogicNodeEntityActions: "\u754C\u9762\u903B\u8F91\u8282\u70B9\uFF08\u5B9E\u4F53\u884C\u4E3A\uFF09\uFF1A{id}-\u754C\u9762\u884C\u4E3A\u6240\u5C5E\u5B9E\u4F53\uFF1A{dstAppDataEntityId}-\u5B9E\u4F53\u884C\u4E3A\u6807\u8BC6\uFF1A{dstAppDEActionId}-\u53C2\u6570\u540D\u79F0\uFF1A{retDEUILogicParamId}-\u503C\uFF1A",
43826
+ noConfiguredInterfaceBehavior: "\u672A\u914D\u7F6E\u754C\u9762\u884C\u4E3A",
43827
+ interfaceLogicNodeEntityInterfaceAction: "\u754C\u9762\u903B\u8F91\u8282\u70B9\uFF08\u5B9E\u4F53\u754C\u9762\u884C\u4E3A\uFF09\uFF1A{id}-\u754C\u9762\u884C\u4E3A\u6807\u8BC6\uFF1A{dstAppDEUIActionId}-\u754C\u9762\u884C\u4E3A\u6240\u5C5E\u5B9E\u4F53\uFF1A{dstAppDataEntityId}-\u76EE\u6807\u903B\u8F91\u53C2\u6570\u5BF9\u8C61\uFF1A{dstDEUILogicParamId}",
43828
+ logicalNodeOperation: "\u903B\u8F91\u8282\u70B9{name}\u64CD\u4F5C\u53C2\u6570\u503C:",
43829
+ unsupportedEndNode: "\u6682\u672A\u652F\u6301\u7684\u7ED3\u675F\u8282\u70B9\u8FD4\u56DE\u503C\u7C7B\u578B: {returnType}",
43830
+ interfaceLogicNodeEndNode: "\u754C\u9762\u903B\u8F91\u8282\u70B9\uFF08\u7ED3\u675F\u8282\u70B9\uFF09\uFF1A{id}-\u8FD4\u56DE\u503C\u7C7B\u578B\uFF1A{returnType}-\u8FD4\u56DE\u503C\uFF1A",
43831
+ noEntityConfigured: "\u6CA1\u6709\u914D\u7F6E\u5B9E\u4F53",
43832
+ noEntityLogicConfigured: "\u6CA1\u6709\u914D\u7F6E\u5B9E\u4F53\u903B\u8F91",
43833
+ noIncomingLogic: "\u6CA1\u6709\u914D\u7F6E\u4F20\u5165\u903B\u8F91\u53C2\u6570",
43834
+ passedParameter: "\u6CA1\u6709\u627E\u5230\u4F20\u5165\u53C2\u6570{dstDEUILogicParamId}",
43835
+ interfaceLogicNodeExecutingEntityLogic: "\u754C\u9762\u903B\u8F91\u8282\u70B9\uFF08\u6267\u884C\u5B9E\u4F53\u903B\u8F91\uFF09\uFF1A{id}-\u5B9E\u4F53\u903B\u8F91\u6807\u8BC6\uFF1A{dstAppDELogicId}-\u5B9E\u4F53\u903B\u8F91\u6240\u5C5E\u5B9E\u4F53\uFF1A{dstAppDataEntityId}-\u53C2\u6570\u540D\u79F0\uFF1A{retDEUILogicParamId}-\u503C\uFF1A",
43836
+ missingMessageTypeConfiguration: "\u7F3A\u5C11\u6D88\u606F\u7C7B\u578B\u7684\u914D\u7F6E",
43837
+ missingButtonTypeConfiguration: "\u7F3A\u5C11\u6309\u94AE\u7C7B\u578B\u7684\u914D\u7F6E",
43838
+ interfaceLogicNodeMessagePopup: "\u754C\u9762\u903B\u8F91\u8282\u70B9\uFF08\u6D88\u606F\u5F39\u7A97\uFF09\uFF1A{id}-\u6D88\u606F\u7C7B\u578B\uFF1A{type}-\u6D88\u606F\uFF1A{message}",
43839
+ message: "\u6D88\u606F",
43840
+ yes: "\u662F",
43841
+ no: "\u5426",
43842
+ determine: "\u786E\u5B9A",
43843
+ cancel: "\u53D6\u6D88",
43844
+ noSupportItem: "{name}\u6682\u672A\u652F\u6301",
43845
+ interfaceLogicNodeFrontendPlugin: "\u754C\u9762\u903B\u8F91\u8282\u70B9\uFF08\u524D\u7AEF\u63D2\u4EF6\uFF09\uFF1A{id}-\u63D2\u4EF6\u6807\u8BC6\uFF1A{sysPFPluginId}",
43846
+ interfaceLogicNodePreparationParameter: "\u754C\u9762\u903B\u8F91\u8282\u70B9\uFF08\u51C6\u5907\u53C2\u6570\uFF09\uFF1A{id}-\u53C2\u6570\u5904\u7406\u64CD\u4F5C\uFF1A{paramAction}-\u76EE\u6807\u903B\u8F91\u53C2\u6570\uFF1A{dstDEUILogicParamId}-\u6E90\u53C2\u6570\uFF08\u503C\uFF09\uFF1A",
43847
+ noTargetParameter: "\u6CA1\u6709\u76EE\u6807\u53C2\u6570\u5BF9\u8C61id",
43848
+ targetParameter: "\u7ED9\u76EE\u6807\u53C2\u6570\u5C5E\u6027{dstFieldName}\u8D4B\u503C\u62A5\u9519\uFF0C\u76EE\u6807\u53C2\u6570\uFF1A",
43849
+ interfaceLogicNodeDirectCode: "\u754C\u9762\u903B\u8F91\u8282\u70B9\uFF08\u76F4\u63A5\u4EE3\u7801\uFF09\uFF1A{id}-\u76F4\u63A5\u4EE3\u7801\uFF1A",
43850
+ interfaceLogicNodeRebuildParameter: "\u754C\u9762\u903B\u8F91\u8282\u70B9\uFF08\u91CD\u65B0\u5EFA\u7ACB\u53C2\u6570\uFF09\uFF1A{id}-\u91CD\u5EFA\u53C2\u6570\uFF1A{dstDEUILogicParamId}",
43851
+ interfaceLogicNodeResetParameter: "\u754C\u9762\u903B\u8F91\u8282\u70B9\uFF08\u91CD\u7F6E\u53C2\u6570\uFF09\uFF1A{id}-\u91CD\u7F6E\u53C2\u6570\uFF1A{dstDEUILogicParamId}",
43852
+ interfaceLogicNodeSortedArrayParameters: "\u754C\u9762\u903B\u8F91\u8282\u70B9\uFF08\u6392\u5E8F\u6570\u7EC4\u53C2\u6570\uFF09\uFF1A{id}-\u6392\u5E8F\u5C5E\u6027\uFF1A{dstFieldName}-\u6392\u5E8F\u6A21\u5F0F\uFF1A{dstSortDir}-\u53C2\u6570\u540D\u79F0\uFF1A{dstDEUILogicParamId}-\u6392\u5E8F\u540E\u6570\u7EC4\uFF1A",
43853
+ interfaceLogicNodeStartupNode: "\u754C\u9762\u903B\u8F91\u8282\u70B9\uFF08\u542F\u52A8\u8282\u70B9\uFF09\uFF1A{id}",
43854
+ interfaceLogicNodeThrowingExceptions: "\u754C\u9762\u903B\u8F91\u8282\u70B9\uFF08\u629B\u51FA\u5F02\u5E38\uFF09\uFF1A{id}-\u9519\u8BEF\u4FE1\u606F\uFF1A{errorInfo}",
43855
+ noConfiguredTriggerObject: "\u6CA1\u6709\u914D\u7F6E\u89E6\u53D1\u5BF9\u8C61",
43856
+ noConfiguredEvent: "\u6CA1\u6709\u914D\u7F6E\u4E8B\u4EF6\u540D\u79F0\u53C2\u6570",
43857
+ noConfiguredEventParameters: "\u6CA1\u6709\u914D\u7F6E\u4E8B\u4EF6\u53C2\u6570",
43858
+ noFoundTriggerObject: "\u6CA1\u6709\u627E\u5230\u89E6\u53D1\u5BF9\u8C61{fireCtrlId}",
43859
+ noFoundEventParameterObject: "\u6CA1\u6709\u627E\u5230\u4E8B\u4EF6\u53C2\u6570\u5BF9\u8C61{eventParamId}",
43860
+ interfaceLogicNodeViewWidgetEventTriggerLogic: "\u754C\u9762\u903B\u8F91\u8282\u70B9\uFF08\u89C6\u56FE\u90E8\u4EF6\u4E8B\u4EF6\u89E6\u53D1\u903B\u8F91\uFF09\uFF1A{id}-\u8C03\u7528\u89C6\u56FE\u90E8\u4EF6\u540D\u79F0\uFF1A{fireCtrlId}-\u89E6\u53D1\u4E8B\u4EF6\u540D\u79F0\uFF1A{eventName}-\u89E6\u53D1\u53C2\u6570\uFF1A",
43861
+ noConfiguredInterfaceObject: "\u6CA1\u6709\u914D\u7F6E\u754C\u9762\u5BF9\u8C61",
43862
+ noConfiguredOperatingParameters: "\u6CA1\u6709\u914D\u7F6E\u64CD\u4F5C\u53C2\u6570",
43863
+ noConfiguredCallMethod: "\u6CA1\u6709\u914D\u7F6E\u8C03\u7528\u65B9\u6CD5",
43864
+ noFoundOperationParameter: "\u6CA1\u6709\u627E\u5230\u64CD\u4F5C\u53C2\u6570{invokeParamId}",
43865
+ noFoundInterfaceObject: "\u6CA1\u6709\u627E\u5230\u754C\u9762\u5BF9\u8C61{invokeCtrlId}",
43866
+ noFoundInvokeMethod: "\u6CA1\u6709\u627E\u5230\u8C03\u7528\u65B9\u6CD5{invokeMethod}",
43867
+ interfaceLogicNodeViewWidgetInvocation: "\u754C\u9762\u903B\u8F91\u8282\u70B9\uFF08\u89C6\u56FE\u90E8\u4EF6\u8C03\u7528\uFF09\uFF1A{id}-\u8C03\u7528\u89C6\u56FE\u90E8\u4EF6\u540D\u79F0\uFF1A{invokeCtrlId}-\u8C03\u7528\u65B9\u6CD5\u540D\u79F0\uFF1A{invokeMethod}-\u89E6\u53D1\u53C2\u6570\uFF1A",
43868
+ viewLogicInitializationParameter: "\u89C6\u56FE\u903B\u8F91\u521D\u59CB\u5316\u53C2\u6570\uFF0C\u672A\u627E\u5230{codeName}\u6307\u5B9A\u90E8\u4EF6\u5BF9\u8C61",
43869
+ calculateInterfaceLogicParameters: "\u8BA1\u7B97\u754C\u9762\u903B\u8F91\u53C2\u6570\uFF0C\u6807\u8BC6\uFF1A{tag}",
43870
+ restablishInterfaceLogic: "\u91CD\u65B0\u5EFA\u7ACB\u754C\u9762\u903B\u8F91\u53C2\u6570\uFF0C\u6807\u8BC6\uFF1A{tag}",
43871
+ interfaceLogic: "\u627E\u4E0D\u5230\u5B9E\u4F53{appDataEntityId}\u7684\u754C\u9762\u903B\u8F91{deUILogicId}",
43872
+ startExecutingInterfaceLogic: "\u5F00\u59CB\u6267\u884C\u754C\u9762\u903B\u8F91\uFF0C\u5B9E\u4F53\uFF1A{appDataEntityId}-\u903B\u8F91\u540D\u79F0\uFF1A{name}",
43873
+ endExecutionInterfaceLogic: "\u7ED3\u675F\u6267\u884C\u754C\u9762\u903B\u8F91\uFF0C\u5B9E\u4F53\uFF1A{appDataEntityId}-\u903B\u8F91\u540D\u79F0\uFF1A{name}",
43874
+ noLogicalNodesConfigured: "\u754C\u9762\u903B\u8F91\u6CA1\u6709\u914D\u7F6E\u903B\u8F91\u8282\u70B9"
43875
+ },
43876
+ utils: {
43877
+ anime: {
43878
+ noExistEndpointElement: "\u7EC8\u70B9\u5143\u7D20\u4E0D\u5B58\u5728",
43879
+ noExistAnimationElement: "\u52A8\u753B\u5143\u7D20\u4E0D\u5B58\u5728",
43880
+ noClone: "\u4E0D\u80FD\u514B\u9686\u7A7A\u6216\u672A\u5B9A\u4E49\u7684\u5143\u7D20"
43881
+ },
43882
+ errorHandler: {
43883
+ noPermissionless: "\u6CA1\u6709\u6CE8\u518C\u65E0\u6743\u9650\u9519\u8BEF\u5904\u7406\u5668",
43884
+ noProcessor: "\u6CA1\u6709\u627E\u5230\u80FD\u5904\u7406\u8BE5\u9519\u8BEF\u7684\u5904\u7406\u5668"
43885
+ },
43886
+ fileUtil: {
43887
+ fileUploadFailed: "\u6587\u4EF6\u4E0A\u4F20\u5931\u8D25"
43888
+ },
43889
+ handlebars: {
43890
+ noInitHandlebars: "handlebars\u672A\u521D\u59CB\u5316"
43891
+ },
43892
+ modal: {
43893
+ externalClosureCapability: "\u5916\u90E8\u5173\u95ED\u80FD\u529B\u672A\u6CE8\u518C",
43894
+ shouldDismissResult: "shouldDismiss\u7ED3\u679C\u4E3Afalse,\u5173\u95ED\u4E2D\u65AD"
43895
+ },
43896
+ openRedirectView: {
43897
+ parseSrfnavctxParameter: "\u91CD\u5B9A\u5411[{urlStr}] \u4E2D srfnavctx \u53C2\u6570\u89E3\u6790\u5931\u8D25",
43898
+ missingEntityName: "\u91CD\u5B9A\u5411\u53C2\u6570\u7F3A\u5C11\u5B9E\u4F53\u540D\u79F0",
43899
+ noFoundSpecifiedEntity: "\u672A\u627E\u5230\u6307\u5B9A\u5B9E\u4F53\u7684codeName: {deName}",
43900
+ unsupportedLinkUrl: "\u672A\u652F\u6301\u7684linkUrl\u683C\u5F0F:{linkUrl}",
43901
+ noConfiguredActualReference: "\u672A\u914D\u7F6E\u5B9E\u9645\u5F15\u7528\u89C6\u56FE",
43902
+ redirectingViewReferences: "\u91CD\u5B9A\u5411\u89C6\u56FE\u5F15\u7528\u6709\uFF1A",
43903
+ redirectionIdentifier: "\u672A\u627E\u5230\u91CD\u5B9A\u5411\u6807\u8BC6[{rdTag}]\u6216[{deRdTag}]\u6216\u5DE5\u4F5C\u6D41[{wfRdTag}]\u5BF9\u5E94\u89C6\u56FE",
43904
+ noMatchActualReferenceView: "\u6807\u8BC6[{rdTag}]\u672A\u5339\u914D\u5230\u5B9E\u9645\u5F15\u7528\u89C6\u56FE",
43905
+ redirectionView: "\u91CD\u5B9A\u5411\u89C6\u56FE[{name}]\u81EA\u5B9A\u4E49\u7C7B\u522B\u5C5E\u6027[{typeFieldId}]\u503C\u4E3A\u7A7A"
43906
+ },
43907
+ script: {
43908
+ errorReportingScript: "\u62A5\u9519\u811A\u672C"
43909
+ },
43910
+ shortCut: {
43911
+ invalidIndexNewIndex: "\u65E0\u6548\u7684\u7D22\u5F15 newIndex: {newIndex}, oldIndex: {oldIndex}, \u5F53\u524D\u6570\u7EC4\u957F\u5EA6\u4E3A {length}"
43912
+ },
43913
+ uiDomain: {
43914
+ transactionOpen: "\u4E8B\u52A1\u5DF2\u7ECF\u5F00\u542F, \u5355\u4E2A\u754C\u9762\u57DF\u53EA\u80FD\u5F00\u542F\u4E00\u4E2A\u4E8B\u52A1",
43915
+ currentTransaction: "\u5F53\u524D\u4E8B\u52A1\u672A\u63D0\u4EA4\uFF0C\u4E0D\u53EF\u4EE5\u76F4\u63A5\u5173\u95ED\u4E8B\u52A1"
43916
+ },
43917
+ uiDomainManager: {
43918
+ invalidInterfaceDomain: "\u65E0\u6548\u7684\u754C\u9762\u57DF\u6807\u8BC6[{id}]"
43919
+ },
43920
+ verify: {
43921
+ contentConform: "\u5185\u5BB9\u5FC5\u987B\u7B26\u5408\u503C\u89C4\u5219",
43922
+ scopeRules: "\u5185\u5BB9\u957F\u5EA6\u5FC5\u987B\u7B26\u5408\u8303\u56F4\u89C4\u5219",
43923
+ valueNull: "\u503C\u4E3A\u7A7A",
43924
+ regularRules: "\u503C\u5FC5\u987B\u7B26\u5408\u6B63\u5219\u89C4\u5219",
43925
+ rangeRules: "\u503C\u5FC5\u987B\u7B26\u5408\u503C\u8303\u56F4\u89C4\u5219",
43926
+ scriptRules: "\u503C\u5FC5\u987B\u7B26\u5408\u811A\u672C\u89C4\u5219",
43927
+ emptyLogicGroups: "\u53D1\u73B0\u7A7A\u903B\u8F91\u7EC4\uFF0C\u903B\u8F91\u65E0\u6CD5\u6B63\u5E38\u6267\u884C\uFF01",
43928
+ unsupportedLogicTypes: "\u672A\u652F\u6301\u7684\u903B\u8F91\u7C7B\u578B{logicType}",
43929
+ emptyLogicGroupsProperly: "\u53D1\u73B0\u7A7A\u903B\u8F91\u7EC4\uFF0C\u903B\u8F91\u65E0\u6CD5\u6B63\u5E38\u6267\u884C\uFF01",
43930
+ valueOperations: "\u503C\u64CD\u4F5C\uFF1A{op}\uFF0C\u6682\u672A\u652F\u6301",
43931
+ noCompared: "{value} \u548C {value2} \u65E0\u6CD5\u6BD4\u8F83\u5927\u5C0F",
43932
+ conditionalValues: "\u8303\u56F4\u6BD4\u8F83\u7684\u6761\u4EF6\u503C\u4E0D\u5B58\u6216\u8005\u4E0D\u662F\u5B57\u7B26\u4E32"
43933
+ },
43934
+ firstregister: "\u8BF7\u5148\u6CE8\u518C\u6A21\u578B\u52A0\u8F7D\u9002\u914D\u5668"
43935
+ }
43936
+ }
43937
+ };
42684
43938
  export {
42685
43939
  AC_ITEM_PROVIDER_PREFIX,
42686
43940
  APPMENUITEM_PROVIDER_PREFIX,
@@ -42949,6 +44203,7 @@ export {
42949
44203
  createImportSchema,
42950
44204
  deleteImportSchema,
42951
44205
  downloadImportTemplate,
44206
+ en,
42952
44207
  execDELogic,
42953
44208
  execDELogicAction,
42954
44209
  execDELogicById,
@@ -43064,6 +44319,7 @@ export {
43064
44319
  validateFilterNodes,
43065
44320
  verifyDeRules,
43066
44321
  verifyFormGroupLogic,
43067
- verifyPanelGroupLogic
44322
+ verifyPanelGroupLogic,
44323
+ zhCn
43068
44324
  };
43069
44325
  //! 只有动态走这个逻辑,全代码确保所有视图都设置了viewConfig