@ibiz-template/runtime 0.7.16 → 0.7.17-alpha.0

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 (43) hide show
  1. package/dist/index.esm.js +1177 -19
  2. package/dist/index.system.min.js +1 -1
  3. package/out/controller/control/form/edit-form/edit-form.service.d.ts +1 -1
  4. package/out/controller/control/form/edit-form/edit-form.service.d.ts.map +1 -1
  5. package/out/controller/control/form/edit-form/edit-form.service.js +3 -2
  6. package/out/controller/control/grid/grid/grid.service.d.ts +1 -1
  7. package/out/controller/control/grid/grid/grid.service.d.ts.map +1 -1
  8. package/out/controller/control/grid/grid/grid.service.js +3 -2
  9. package/out/controller/hub.controller.d.ts +2 -2
  10. package/out/controller/hub.controller.d.ts.map +1 -1
  11. package/out/controller/utils/data-file-util/data-file-util.js +2 -2
  12. package/out/index.d.ts +1 -0
  13. package/out/index.d.ts.map +1 -1
  14. package/out/index.js +1 -0
  15. package/out/interface/controller/app.d.ts +3 -2
  16. package/out/interface/controller/app.d.ts.map +1 -1
  17. package/out/interface/service/i-auth-result/i-auth-result.d.ts +23 -0
  18. package/out/interface/service/i-auth-result/i-auth-result.d.ts.map +1 -0
  19. package/out/interface/service/i-auth-result/i-auth-result.js +1 -0
  20. package/out/interface/service/index.d.ts +1 -0
  21. package/out/interface/service/index.d.ts.map +1 -1
  22. package/out/interface/service/service/i-auth.service.d.ts +3 -2
  23. package/out/interface/service/service/i-auth.service.d.ts.map +1 -1
  24. package/out/interface/util/i-app-util/i-app-util.d.ts +3 -2
  25. package/out/interface/util/i-app-util/i-app-util.d.ts.map +1 -1
  26. package/out/locale/en/index.d.ts +571 -0
  27. package/out/locale/en/index.d.ts.map +1 -0
  28. package/out/locale/en/index.js +571 -0
  29. package/out/locale/index.d.ts +3 -0
  30. package/out/locale/index.d.ts.map +1 -0
  31. package/out/locale/index.js +2 -0
  32. package/out/locale/zh-CN/index.d.ts +569 -0
  33. package/out/locale/zh-CN/index.d.ts.map +1 -0
  34. package/out/locale/zh-CN/index.js +569 -0
  35. package/out/service/service/auth/v7-auth.service.d.ts +3 -3
  36. package/out/service/service/auth/v7-auth.service.d.ts.map +1 -1
  37. package/out/service/service/auth/v7-auth.service.js +4 -4
  38. package/out/service/service/entity/method/de-action.d.ts.map +1 -1
  39. package/out/service/service/entity/method/de-action.js +9 -3
  40. package/out/ui-action/provider/loginout-ui-action-provider.js +1 -1
  41. package/out/ui-logic/ui-logic-node/msg-box-node/msg-box-node.d.ts.map +1 -1
  42. package/out/ui-logic/ui-logic-node/msg-box-node/msg-box-node.js +4 -4
  43. package/package.json +2 -2
package/dist/index.esm.js CHANGED
@@ -12052,17 +12052,17 @@ var V7AuthService = class {
12052
12052
  * @date 2024-05-14 17:05:22
12053
12053
  * @param {string} oldPwd
12054
12054
  * @param {string} newPwd
12055
- * @return {*} {Promise<boolean>}
12055
+ * @return {*} {Promise<IAuthResult>}
12056
12056
  */
12057
12057
  async changePwd(oldPwd, newPwd) {
12058
12058
  try {
12059
- await ibiz.net.post("/uaa/changepwd", {
12059
+ const res = await ibiz.net.post("/uaa/changepwd", {
12060
12060
  oldPwd,
12061
12061
  newPwd
12062
12062
  });
12063
- return true;
12063
+ return { ok: true, result: res };
12064
12064
  } catch (err) {
12065
- return false;
12065
+ return { ok: false, result: err };
12066
12066
  }
12067
12067
  }
12068
12068
  /**
@@ -12517,11 +12517,15 @@ var DEActionMethod = class extends Method {
12517
12517
  * @return {*} {(Promise<IData | IData[]>)}
12518
12518
  */
12519
12519
  async inputFormat(context, data) {
12520
- const handleListMap = (arg) => {
12520
+ const handleListMap = async (arg) => {
12521
12521
  return this.input.format(context, arg);
12522
12522
  };
12523
12523
  if (Array.isArray(data)) {
12524
- return data.map((item) => handleListMap(item));
12524
+ const result = [];
12525
+ for (let i = 0; i < data.length; i++) {
12526
+ result.push(await handleListMap(data[i]));
12527
+ }
12528
+ return result;
12525
12529
  }
12526
12530
  return handleListMap(data);
12527
12531
  }
@@ -12589,7 +12593,9 @@ var DEActionMethod = class extends Method {
12589
12593
  path2 = "".concat(path2, "/").concat(srfkey);
12590
12594
  }
12591
12595
  const res = await this.request(path2, context, data, params, header);
12592
- res.data = await this.result.handle(context, res.data);
12596
+ if (!(params && params.srfupdateitem)) {
12597
+ res.data = await this.result.handle(context, res.data);
12598
+ }
12593
12599
  result = res;
12594
12600
  }
12595
12601
  }
@@ -16259,7 +16265,7 @@ function listenAsyncAction(id) {
16259
16265
  }
16260
16266
  async function asyncImportData(file, appDataEntity, dataImport, context) {
16261
16267
  ibiz.notification.info({
16262
- desc: ibiz.i18n.t("component.dataImport.startImport")
16268
+ desc: ibiz.i18n.t("runtime.controller.utils.dataFileUtil.startImport")
16263
16269
  });
16264
16270
  const data = new FormData();
16265
16271
  data.append("file", file);
@@ -16495,7 +16501,7 @@ async function asyncImportData2(opts) {
16495
16501
  params: queryData
16496
16502
  });
16497
16503
  ibiz.notification.info({
16498
- desc: ibiz.i18n.t("component.dataImport.startImport")
16504
+ desc: ibiz.i18n.t("runtime.controller.utils.dataFileUtil.startImport")
16499
16505
  });
16500
16506
  }
16501
16507
  function calcImportSchemaData(opts) {
@@ -22028,14 +22034,18 @@ var MsgBoxNode = class extends UILogicNode {
22028
22034
  resultTags = ["yes", "no"];
22029
22035
  break;
22030
22036
  case "OK":
22031
- modalParams.confirmButtonText = ibiz.i18n.t("control.common.determine");
22037
+ modalParams.confirmButtonText = ibiz.i18n.t(
22038
+ "runtime.uiLogic.determine"
22039
+ );
22032
22040
  modalParams.showConfirmButton = true;
22033
22041
  modalParams.showCancelButton = false;
22034
22042
  resultTags = ["ok"];
22035
22043
  break;
22036
22044
  case "OKCANCEL":
22037
- modalParams.confirmButtonText = ibiz.i18n.t("control.common.determine");
22038
- modalParams.cancelButtonText = ibiz.i18n.t("app.cancel");
22045
+ modalParams.confirmButtonText = ibiz.i18n.t(
22046
+ "runtime.uiLogic.determine"
22047
+ );
22048
+ modalParams.cancelButtonText = ibiz.i18n.t("runtime.uiLogic.cancel");
22039
22049
  modalParams.showConfirmButton = true;
22040
22050
  modalParams.showCancelButton = true;
22041
22051
  resultTags = ["ok", "cancel"];
@@ -22043,7 +22053,7 @@ var MsgBoxNode = class extends UILogicNode {
22043
22053
  default:
22044
22054
  throw new ModelError23(
22045
22055
  this.model,
22046
- ibiz.i18n.t("control.common.noSupportItem", {
22056
+ ibiz.i18n.t("runtime.uiLogic.noSupportItem", {
22047
22057
  name: buttonsType
22048
22058
  })
22049
22059
  );
@@ -23646,7 +23656,7 @@ var WFWithdrawUIActionProvider = class extends UIActionProviderBase {
23646
23656
  var LoginOutUIActionProvider = class extends UIActionProviderBase {
23647
23657
  async execAction(_action, _params) {
23648
23658
  const confirm = await ibiz.confirm.info({
23649
- title: ibiz.i18n.t("app.logout"),
23659
+ title: ibiz.i18n.t("runtime.uiAction.logout"),
23650
23660
  desc: ibiz.i18n.t("runtime.uiAction.wantLogout")
23651
23661
  });
23652
23662
  if (confirm) {
@@ -28621,8 +28631,9 @@ var EditFormService = class extends FormService {
28621
28631
  * @param {IParams} [params={}]
28622
28632
  * @returns {*} {Promise<IHttpResponse<ControlVO>>}
28623
28633
  */
28624
- async updateFormItem(methodName, context, params = {}) {
28625
- let res = await this.exec(methodName, context, params);
28634
+ async updateFormItem(methodName, context, data = {}, params = {}) {
28635
+ Object.assign(params, { srfupdateitem: true });
28636
+ let res = await this.exec(methodName, context, data, params);
28626
28637
  res = this.handleResponse(res);
28627
28638
  return res;
28628
28639
  }
@@ -29603,12 +29614,13 @@ var GridService = class extends MDControlService {
29603
29614
  * @param {IParams} [params={}]
29604
29615
  * @returns {*} {Promise<IHttpResponse<ControlVO>>}
29605
29616
  */
29606
- async updateGridEditItem(methodName, context, params = {}) {
29617
+ async updateGridEditItem(methodName, context, data = {}, params = {}) {
29607
29618
  const entityService = await this.app.deService.getService(
29608
29619
  context,
29609
29620
  this.model.appDataEntityId
29610
29621
  );
29611
- let res = await entityService.exec(methodName, context, params);
29622
+ Object.assign(params, { srfupdateitem: true });
29623
+ let res = await entityService.exec(methodName, context, data, params);
29612
29624
  res = this.handleResponse(res);
29613
29625
  return res;
29614
29626
  }
@@ -42681,6 +42693,1150 @@ var RemotePluginItem = class {
42681
42693
  this.config = config;
42682
42694
  }
42683
42695
  };
42696
+
42697
+ // src/locale/en/index.ts
42698
+ var en = {
42699
+ // runtime
42700
+ runtime: {
42701
+ common: {
42702
+ unrealized: "unrealized"
42703
+ },
42704
+ command: {
42705
+ app: {
42706
+ noFindApplicationFunction: "An app feature called {appFuncId} cannot be found",
42707
+ noFindApplicationFunctionYype: "Unsupported application function type: {appFuncType}",
42708
+ noFindApplicationView: "The application view [{appViewId}] does not exist",
42709
+ unsupportedPopup: "Unsupported view opening modes: POPUP",
42710
+ unsupportedPopupapp: "Unsupported view opening modes: POPUPAPP",
42711
+ missingEvent: "Bubble opening missing event"
42712
+ }
42713
+ },
42714
+ controller: {
42715
+ common: {
42716
+ control: {
42717
+ componentActivation: "Component [{name}] ({id}) is active",
42718
+ componentPause: "Component [{name}] ({id}) is pause",
42719
+ unsupportedType: "Unsupported entity data change type: {type}",
42720
+ uncheckedData: "Unchecked data",
42721
+ dataDeletion: "data deletion",
42722
+ confirmDataDeletion: "Confirm deletion of data?",
42723
+ noImportModel: "No import model is configured!"
42724
+ },
42725
+ editor: {
42726
+ editorNoConfigured: "Editor type [{editorType}], code table not configured"
42727
+ },
42728
+ view: {
42729
+ viewActivation: "View [{name}] ({id}) is active",
42730
+ viewPause: "View [{name}] ({id}) is pause",
42731
+ viewDestroy: "View [{name}] ({id}) is destroy",
42732
+ noFoundViewEngine: "The View Engine implementation was not found:",
42733
+ noSupportBehavior: "No engine support for pre-built interface behavior {key}"
42734
+ }
42735
+ },
42736
+ control: {
42737
+ menu: {
42738
+ noFindMenu: "Cannot find menu item named {id}",
42739
+ noConfigured: "No application functionality configured"
42740
+ },
42741
+ calendar: {
42742
+ missingViewLogic: "Missing {itemType}_opendata view logic",
42743
+ noFoundModel: "Calendar item model not found"
42744
+ },
42745
+ chart: {
42746
+ noConfiguredX: "Sequence is not configured with X-axis",
42747
+ noConfiguredY: "Sequence is not configured with Y-axis",
42748
+ missingClassification: "Missing classification attribute configuration",
42749
+ missingValue: "Missing value attribute configuration",
42750
+ noSupportSequence: "Charts do not support sequence types at this time {seriesType}",
42751
+ noFindSequence: "Cannot find generator for {seriesIndex} sequence!",
42752
+ noInitialised: "The chart object is not properly initialised",
42753
+ noCalculated: "Options have not been calculated."
42754
+ },
42755
+ dataView: {
42756
+ noBehaviourGroup: "No interface behaviour group is configured for the action",
42757
+ noBehaviourGroupAction: "No interface behaviour is configured for the action item interface behaviour group",
42758
+ propertiesNoConfigured: "Grouping properties are not configured",
42759
+ tableNoConfigured: "The grouping code table is not configured",
42760
+ sortingItems: "Items with sorting enabled must be associated with an entity attribute"
42761
+ },
42762
+ expBar: {
42763
+ unableMore: "Unable to get multiple data widgets [{xdataControlName}] controller",
42764
+ multiNode: "Multi-node views are implemented by subclasses",
42765
+ noFindNodeModel: "Cannot find node model for {nodeId}"
42766
+ },
42767
+ form: {
42768
+ formCompletion: "Please check the form completion!",
42769
+ savedSuccessfully: "{srfmajortext}Saved successfully!",
42770
+ prompt: "prompt",
42771
+ deletion: "Confirm deletion?",
42772
+ itemUpdate: "No {formItemUpdateId} form item update was found.",
42773
+ processStarted: "Process started successfully",
42774
+ processSubmitted: "Process submitted successfully",
42775
+ lackBehavior: "Lack of return operation entity behavior",
42776
+ initializationException: "Initialization Exception: Form member [{id}]({detailType}) already exists, duplicate form item identifier Please check configuration!",
42777
+ relationshipInterface: "Receive data change events from the relationship interface",
42778
+ fillIn: "Please fill in {caption} ",
42779
+ unconfiguredWidgets: "Multi-data widgets unconfigured content widgets",
42780
+ noFoundFormController: "No form controller corresponding to {id} found",
42781
+ multiDataAddData: "Multi-data widget type {contentType} does not support adding data at the moment",
42782
+ mdControllerNoExist: "mdController does not exist",
42783
+ repeaterNoSupported: "Repeater styles are not supported at this time {detailStyle}",
42784
+ searchTerms: "No search terms found to apply",
42785
+ saveSearch: "No saved search criteria found"
42786
+ },
42787
+ gantt: {
42788
+ noNode: "Not entity gantt node data",
42789
+ rowData: "Row data does not exist",
42790
+ simpleMode: "Simple mode, no saving",
42791
+ nonentity: "Non-entity node data cannot be saved",
42792
+ noChange: "The value has not changed",
42793
+ dataDeleted: "Data [{str}] deleted successfully!",
42794
+ firstComplete: "Please complete the current line in the line editor first",
42795
+ noSupport: "{treeNodeType} node type not supported"
42796
+ },
42797
+ grid: {
42798
+ unsupported: "Unsupported types {type}",
42799
+ attributeColumns: "Attribute columns with no grouping attributes configured",
42800
+ noCodeTable: "The attribute column {groupFieldName} of the grouping attribute does not have a configuration code table",
42801
+ configureFirstColumn: "Please configure the grouping attribute column {groupFieldName} as the first column",
42802
+ requiresCodeTable: "Code table grouping mode requires code table configuration",
42803
+ noMatchCodeTable: "The grouping code table does not match the code table for the attribute column {groupFieldName}",
42804
+ convertedValue: "The sort attribute of {srfmajortext} cannot be converted to a value",
42805
+ missingConfiguration: "Missing configuration of aggregated entities or aggregated datasets",
42806
+ newRows: "New rows are not supported",
42807
+ saveCancel: "Row data validation failed, save cancel",
42808
+ noSupportRowEditing: "The current form does not support row editing, and you cannot toggle on row editing.",
42809
+ lineEditing: "Only one line can be open for line editing at the same time",
42810
+ updateColumns: "No {updateId} edit columns found for update",
42811
+ exported: "No exported data",
42812
+ tabularColumns: "No tabular columns",
42813
+ corresponding: "Corresponding table data item not found [{deField}].",
42814
+ pickedUpData: "The value of {valueItem} is not picked up in the row data.",
42815
+ noSupportedMode: "Attribute column aggregation mode {aggMode} is not supported yet.",
42816
+ remoteAggregation: "Remote aggregation is not supported yet",
42817
+ aggregateMode: "Aggregate mode is not supported yet {aggMode}",
42818
+ formattingError: "{aggValue} value formatting error",
42819
+ checksumErrors: "{codeName}Checksum errors, {fieldName}",
42820
+ behaviorGroup: "The action column does not have an interface behavior group configured",
42821
+ interfaceBehavior: "No interface behavior is configured for the action column interface behavior group"
42822
+ },
42823
+ kanban: {
42824
+ sortingProperties: "Sorting properties are not configured",
42825
+ sortDirection: "Sort direction is not configured",
42826
+ groupedOn: "Kanban components must be grouped on",
42827
+ adjustmentsGroup: "The current Kanban does not allow adjustments to the grouping!",
42828
+ noAllowReorder: "Current Kanban does not allow reordering!"
42829
+ },
42830
+ meditViewPanel: {
42831
+ DraftNew: "Draft - New",
42832
+ dataExist: "Edit View Panel widget UI data does not exist"
42833
+ },
42834
+ panel: {
42835
+ panelData: "Panel data not captured"
42836
+ },
42837
+ reportPanel: {
42838
+ reportType: "Report panel generator factory parameter error, report panel does not specify report type",
42839
+ noImplemented: "Specify the report {reportType} type report panel generator not implemented yet"
42840
+ },
42841
+ searchBar: {
42842
+ noFoundEntity: "Cannot find the associated entity corresponding to the attribute {targetField}.",
42843
+ missingModel: "Missing editor model",
42844
+ JSONFormat: "{data} non-standard JSON format:"
42845
+ },
42846
+ toolbar: {
42847
+ noFound: "Interface behavior model {actionId} not found"
42848
+ },
42849
+ tree: {
42850
+ noFoundTreeData: "Cannot find corresponding tree node data",
42851
+ sortAttribute: "Missing Configuration Sort Attribute",
42852
+ editMode: "The tree node is not configured for edit mode: name",
42853
+ nodeData: "Not entity tree node data",
42854
+ noFoundTreeNode: "Tree node not found"
42855
+ },
42856
+ treeGrid: {
42857
+ columnsSchema: "TreeTable Unvalued Columns Schema",
42858
+ columnMode: "Tree table without parent column mode"
42859
+ },
42860
+ treeGridEx: {
42861
+ noConfigured: "The node is not configured with a data item that corresponds to the table column {name}",
42862
+ editItem: "Edit item model corresponding to table column {name} was not found",
42863
+ noPickedUp: "The value of {valueItem} is not picked up in the row data.",
42864
+ behaviorGroup: "The {id} action column does not have an interface behavior group configured.",
42865
+ noSupportCreation: "Does not support the creation of new",
42866
+ updateBehavior: "Tree nodes are not configured to update entity behavior"
42867
+ },
42868
+ wizardPanel: {
42869
+ wizardForm: "Cannot find the wizard form for {activeFormTag}.",
42870
+ formController: "Cannot find a form controller for {activeFormTag}.",
42871
+ noConfiguration: "There is no Configuration Wizard form collection",
42872
+ wizardFormIdentifier: "Cannot find the wizard form with the {tag} identifier.",
42873
+ noPreviousForm: "No previous form",
42874
+ nextStep: "Cannot find next wizard step",
42875
+ nextForm: "Cannot find the next wizard form"
42876
+ }
42877
+ },
42878
+ utils: {
42879
+ buttonState: {
42880
+ isFinitenconsistency: "Inconsistency between entity {appDeName} of {uiActionId} interface behavior and entity {appDeId} of data"
42881
+ },
42882
+ counter: {
42883
+ decrement: "Decrement cannot be called for a count of 0!"
42884
+ },
42885
+ dataFileUtil: {
42886
+ startImport: "Start importing. Please refer to the application notification for detailed progress and results",
42887
+ noExist: "ibiz.util.getExportExcel does not exist",
42888
+ loadError: "Export module loading error",
42889
+ importData: "No corresponding import data model was found"
42890
+ },
42891
+ valueDefault: {
42892
+ noExist: "appdata.context does not exist",
42893
+ nosupported: "Default value type [{valueType}] not supported"
42894
+ },
42895
+ valueEx: {
42896
+ objectNameField: "Missing objectNameField"
42897
+ },
42898
+ valueRule: {
42899
+ length: "The length of the content must be less than or equal to {maxLength}, the current length is {length}."
42900
+ },
42901
+ viewMsg: {
42902
+ message: "Cannot find model for view message group {msgGroupId}",
42903
+ noFound: "No {message} view message model found",
42904
+ unconfigured: "Unconfigured entity dataset",
42905
+ unconfiguredEntities: "Application entities not configured"
42906
+ }
42907
+ }
42908
+ },
42909
+ deLogic: {
42910
+ deLogicLink: {
42911
+ connectionConditional: "Interface Connection Conditional Logic Group Unconfigured Logic Item",
42912
+ entityConnectionConditional: "Entity Logic Connection Condition Group Name: {name} - Condition Group Identifier: {id} - Run Result:",
42913
+ missingConditionValue: "The current condition value type is [Data object attribute], and the configuration condition value is missing.",
42914
+ sourceDataMissingConditionValue: "The current condition value type is [Source Data Object Attribute], and the configuration condition value is missing.",
42915
+ noSupportedTime: "Conditional value type [current time] is not supported at this time",
42916
+ entityLogicalConnection: "Entity Logical Connection Condition Item: {name} - Condition Value Type: {type} - Source Attribute Name: {dstField} - Source Object Value:",
42917
+ comparisonCondition: "-comparison condition: {op}",
42918
+ comparisonValue: "-comparison value",
42919
+ compareResults: "-Compare and contrast results:"
42920
+ },
42921
+ deLogicNode: {
42922
+ missingTargetParameter: "Missing target parameter object or source parameter object configuration",
42923
+ additionalParameter: "Entity logic node (appended to the array): {id} - additional parameter:",
42924
+ addedValue: "-Added value:",
42925
+ logicNodeParameterName: "Entity Logic Node (Binding Parameters): {id} - Parameter Name: {dstDELogicParamId} - Value:",
42926
+ copyParameter: "Entity logic node (copy parameter): {id} - parameter name: {dstDELogicParamId} - value:",
42927
+ dataSet: "Entity Logic Node (Data Set): {id} - Dataset Entity Id: {dstAppDataEntityId} - Dataset Id: {dstAppDEDataSetId} - Parameter Name: {retDELogicParamId} - Value:",
42928
+ unspecifiedEntity: "Unspecified application entity",
42929
+ unspecifiedBehavior: "Behavior of unspecified entities",
42930
+ entityActions: "Entity Logic Node (Entity Actions): {id} - Entity to which the interface action belongs: {dstAppDataEntityId} - Entity Activity Identifier: {dstAppDEActionId} - Parameter Name: {retDELogicParamId} - Value:",
42931
+ unsupportedReturnType: "Unsupported end node return type: {returnType}",
42932
+ endNode: "Entity logic node (end node): {id} - return value type: {returnType} - return value:",
42933
+ noSupportedLogic: "Logic handling of parameter actions {paramAction} is not supported at this time.",
42934
+ preparationParameter: "Entity Logic Node (Preparation Parameter): {id} - Parameter Processing Action: {paramAction} - Target Logic Parameter: {dstDELogicParamId} - Source Parameter (value):",
42935
+ targetParameter: "-Target parameter (value):",
42936
+ missingConfiguration: "Missing target parameter object configuration",
42937
+ rebuildParameter: "Entity Logic Node (rebuild parameter): {id} - rebuild parameter: {dstDELogicParamId}",
42938
+ resetParameter: "Entity logic node (reset parameter): {id} - reset parameter: {dstDELogicParamId}",
42939
+ missingParameterProperty: "Missing target parameter object or target property configuration",
42940
+ sortedArrayParameters: "Entity Logic Node (Sorted Array Parameters): {id} - Sort Attribute: {dstFieldName} - Sort Mode: {dstSortDir} - Parameter Name: {dstDELogicParamId} - Sorted Array:",
42941
+ startupNode: "Entity logical node (startup node): {id}",
42942
+ throwsException: "Entity Logic Node (throws exception): {id} - Error Code: {errorCode} - Error Message: {errorInfo}",
42943
+ environmentVariables: "Unsupported logical parameter types: system environment variables",
42944
+ fileObjectListVariable: "Unsupported logical parameter type: file object list variable",
42945
+ fileObjectVariables: "Unsupported logical parameter types: file object variables",
42946
+ filterObjectVariables: "Unsupported logical parameter types: filter object variables",
42947
+ finalDataVariables: "Unsupported logical parameter types: final data variables",
42948
+ rawDataObjects: "Unsupported logical parameter types: Raw Data Objects",
42949
+ operationSessionVariables: "Unsupported Logical Parameter Types: Operation Session Variables",
42950
+ calculateEntity: "Calculated entity logic parameter, identifier: {tag}",
42951
+ value: "-value:",
42952
+ recreatingVariables: "Unsupported logical parameter types recreating variables",
42953
+ reEstablish: "Re-establish the entity logic parameter, identifier: {tag}",
42954
+ expressionEmpty: "Expression is empty",
42955
+ sourceValueType: "The source value type {srcValueType} is not supported yet.",
42956
+ fetchingAttribute: "Fetching the attribute {srcField} from the source parameter reports an error, source parameter:",
42957
+ noScriptCode: "Script code mode has no script code configured",
42958
+ noConfigurationLogicNode: "The entity logic does not have a configuration logic node",
42959
+ unsupportedLogical: "Unsupported logical node types: {logicNodeType}",
42960
+ noSetStartNode: "No start node set",
42961
+ startExecuting: "Start executing entity logic, logic identifier: {id} - logic name: {name}",
42962
+ endExecution: "End execution entity logic, logic identifier: {id} - logic name: {name}",
42963
+ noFoundEntityLogic: "{dataEntityId} entity logic not found {deDELogicId}"
42964
+ }
42965
+ },
42966
+ engine: {
42967
+ correspondingEngine: "There is no {key} corresponding engine",
42968
+ logicOpendata: "Missing view logic for opendata",
42969
+ logicNewdata: "Missing view logic for newdata",
42970
+ deleteModel: "{codeName} Delete model: {name}",
42971
+ childComponentsMounted: "The child components of {id}: {childName} are mounted.",
42972
+ minimization: "The current view is opened in [{mode}], minimization is not supported!",
42973
+ loadEntityData: "The view has no entities and cannot load entity data"
42974
+ },
42975
+ global: {
42976
+ noImplemented: "Getting application global variables is not implemented",
42977
+ noImplementedRouting: "Getting view routing parameter variables is not implemented"
42978
+ },
42979
+ hub: {
42980
+ failedParse: "View parameter modalOption failed to parse: {error}",
42981
+ noExist: "View [{id}] does not exist"
42982
+ },
42983
+ logicScheduler: {
42984
+ executor: {
42985
+ noConfiguredLogic: "No entity interface logic is configured",
42986
+ missingTrigger: "Missing trigger application entity interface behavior id in logic",
42987
+ noActionableData: "There is no actionable data for opendata!",
42988
+ defaultOpendataViewLogic: "opendata view logic is not configured to open the view by default",
42989
+ noActuallyReference: "The default open view for opendata view logic does not actually reference the view",
42990
+ attributeConfiguration: "{codeName}[Multiple Form Entity] or [Index Entity] missing type attribute configuration",
42991
+ entityAttributeValues: "Data Source No Form Type Applied Entity Attribute Values",
42992
+ editViews: "No edit views were found for the entity associated with the form type {formTypeValue}.",
42993
+ selectionView: "Selection view that needs to be opened for batch add was not found",
42994
+ noSupportedBatchAddOnly: "batchAddOnly is not supported yet.",
42995
+ newdataViewLogic: "The newdata view logic is not configured to default to a new data view",
42996
+ indexEntity: "Missing Default Index Entity Selection View",
42997
+ checkOne: "Please check one piece of data",
42998
+ entitiesAssociated: "No edit view found for entities associated with index type {indexType}",
42999
+ relationships: "Entities do not have a collection of relationships from!",
43000
+ foreignKey: "No foreign key attribute found for {pickParentDeName} in the current entity",
43001
+ mappingProperties: "Batch New Conversion Mapping Properties",
43002
+ newCreationData: "Batch new creation data",
43003
+ logicType: "Logic type {logicType} Not supported yet!",
43004
+ noImplementedMethod: "Method not implemented."
43005
+ },
43006
+ trigger: {
43007
+ triggerType: "The trigger type for the predefined logical type {type} can only be a script",
43008
+ noSupportedType: "Trigger type {triggerType} Not supported yet!",
43009
+ noExecutorBound: "{id} No executor bound.",
43010
+ timerLacks: "Timer lacks timing intervals",
43011
+ parameterCallback: "Timer missing default parameter callback"
43012
+ }
43013
+ },
43014
+ model: {
43015
+ utils: {
43016
+ noFoundApplication: "Application not found",
43017
+ unconfiguredPlugins: "Apply unconfigured plug-ins",
43018
+ noFound: "Plugin not found {id}"
43019
+ },
43020
+ view: {
43021
+ engineClassifications: "Unsupported engine classifications: {engineType}"
43022
+ }
43023
+ },
43024
+ platform: {
43025
+ failedDownload: "Failed to download file",
43026
+ fileStreamData: "File stream data does not exist"
43027
+ },
43028
+ register: {
43029
+ helper: {
43030
+ adapter: "Cannot find the adapter corresponding to the system counter plugin {pluginKey}.",
43031
+ customizedSystemAdapter: "Cannot find the adapter corresponding to the customized system counter {codeName}.",
43032
+ noFoundSystemCounter: "Adapter for system counter type {counterType} is not found.",
43033
+ applicationMenu: "Cannot find the adapter corresponding to the application menu item plugin {pluginKey}.",
43034
+ asynchronousAction: "Find the adapter that does not correspond to the asynchronous action type {actiontype}.",
43035
+ matchedPlugin: "Not matched to plugin [{pluginId}] model",
43036
+ customRegistration: "Cannot find an adapter with a custom registration ID of [{registerKey}].",
43037
+ widgetPlugin: "Cannot find the adapter corresponding to the widget plugin {pluginKey}.",
43038
+ widgetStyleType: "Cannot find the adapter corresponding to the widget style: [{controlStyle}] for the widget type: [{controlType}].",
43039
+ widgetType: "Cannot find an adapter for widget type {controlType}.",
43040
+ entityBehaviorPlugin: "Cannot find the adapter corresponding to the entity behavior plugin {pluginKey}.",
43041
+ entityBehaviorMethod: "Find adapters that donnot have an entity behavior method type of {methodType}",
43042
+ editorPlugin: "Cannot find the adapter corresponding to the editor plugin {pluginKey}.",
43043
+ editorStyleType: "Cannot find the adapter corresponding to editor style: [{editorStyle}] for editor type: [{editorType}].",
43044
+ editorTypePredefinedType: "Cannot find an adapter corresponding to editorType: [{editorType}] for predefinedType: [{predefinedType}].",
43045
+ editorType: "Cannot find the adapter corresponding to editor type {editorType}.",
43046
+ formMemberPlugin: "Cannot find the adapter corresponding to the form member plugin {pluginKey}.",
43047
+ formMemberType: "Cannot find an adapter for form member type {detailType}.",
43048
+ tableColumnPlugin: "Cannot find the adapter corresponding to the table column plugin {pluginKey}.",
43049
+ tableColumnType: "Cannot find an adapter for table column type {key}.",
43050
+ messageType: "Cannot find the adapter corresponding to the message type {content_type}.",
43051
+ panelMemberPlugin: "The adapter corresponding to the panel member plugin {pluginKey} could not be found.",
43052
+ panelContainerPredefined: "Cannot find an adapter with panel container predefined type {predefinedType}, registered key {key}",
43053
+ panelMemberDirectContent: "Cannot find adapter with panel member direct content predefined type {predefinedType}, registered key {key}",
43054
+ panelMemberType: "The adapter corresponding to the panel member type {itemType} could not be found.",
43055
+ portalWidgetPlugin: "Cannot find the adapter corresponding to the portal widget plugin {pluginKey}.",
43056
+ portalWidgetMemberType: "Adapter corresponding to portal widget member type {portletType} not found",
43057
+ treeTableColumnPlugin: "Cannot find the adapter corresponding to the tree table column plugin {pluginKey}.",
43058
+ interfaceBehaviorPlugin: "Cannot find the adapter corresponding to the interface behavior plugin {pluginKey}.",
43059
+ interfaceBehaviorMode: "Find the adapter that does not correspond to the interface behavior mode {uiactionMode}.",
43060
+ frontEndPluginNode: "Cannot find interface logic front-end plugin node, plugin {pluginKey} corresponding adapter",
43061
+ viewPlugin: "Cannot find the adapter corresponding to the view plugin {pluginKey}.",
43062
+ correspondViewTypeStyle: "Cannot find an adapter for view type: [{viewType}] corresponding to view style: [{viewStyle}].",
43063
+ toolbarItem: "Cannot find the adapter corresponding to the toolbar item plugin {pluginKey}.",
43064
+ acItem: "Cannot find the adapter corresponding to the ac item plugin {pluginKey}."
43065
+ }
43066
+ },
43067
+ service: {
43068
+ noConfiguredPrimary: "Entity [{codeName}] is not configured with a primary key field",
43069
+ noConfiguredField: "Entity [{codeName}] is not configured with a primary text field",
43070
+ convertedNumber: "{value} cannot be converted to a number.",
43071
+ subRelationships: "Sub-relationships not configured with a nested relational dataset will result in a recursive query death loop, please configure it!",
43072
+ unsupportedMethod: "Unsupported application entity method input attribute type: {type}",
43073
+ noFoundUsernamePassword: "Anonymous login configuration username or password not found",
43074
+ loginFailure: "Login Failure",
43075
+ logoutFailure: "Logout failure",
43076
+ noFound: "Application entity not found [{id}]",
43077
+ masterState: "{codeName} entity does not exist or is enabled for master state, return true",
43078
+ operationIdentifier: "Operation identifier {dataAccessAction} main state calculation started",
43079
+ matchMasterState: "Match master state",
43080
+ masterStatePermissions: "Collection of allowed master state permissions",
43081
+ noMatchedState: "Returns false if the main state is not matched.",
43082
+ permissionCalculation: "Operation identifier {dataAccessAction} end of permission calculation: {result}",
43083
+ noFindCodeList: "Cannot find {tag} code list",
43084
+ noConfiguredCounters: "Application counters not configured!",
43085
+ lackEntityLogic: "Lack of entity handling logic",
43086
+ createBehavior: "The create behavior does not pass data",
43087
+ updateBehavior: "The update behavior does not pass data",
43088
+ deletionDeletion: "Currently, only [DER1N] relationship type association deletion deletion is supported.",
43089
+ unableDelete: "Unable to delete [{logicName}-{srfmajortext}], data referenced by [{modelLogicName}-{msg}].",
43090
+ noSupportedDataSource: "Data source type {dataSetType} not supported yet",
43091
+ sourceCodeTable: "No data is specified for the source code table",
43092
+ requestMethods: "Unsupported request methods: {requestMethod}",
43093
+ noConfiguredRequestMethod: "Request method not configured",
43094
+ unsupportedBehaviorTypes: "Unsupported Behavior Types [{actionType}]",
43095
+ noFoundServiceMethod: "Service method not found: {id}",
43096
+ UnsupportedServiceMethod: "Unsupported service method types: {methodType}",
43097
+ noSupportedMethod: "The \u300C{id}\u300D method is not supported by {codeName}.",
43098
+ noFoundStorageEntity: "Application function [{name}] storage entity not found [{stoageAppDataEntityId}]",
43099
+ noExist: "Application function [{name}] does not exist",
43100
+ noFoundEntity: "Storage Entity Not Found [{stoageAppDataEntityId}]",
43101
+ noImplemented: "\u300C{methodName}\u300D is not implemented.",
43102
+ noImplementedCounter: "Counter loading method not implemented",
43103
+ noFoundCounterBehavior: "Get counter behavior not found!",
43104
+ createPrimaryKeyData: "Failed to create new joint primary key data with existing primary key {srfkey}",
43105
+ updatePrimaryKeyData: "Failed to update joint primary key data with existing primary key {srfkey}",
43106
+ noExistNoUpdated: "Data does not exist and cannot be updated!",
43107
+ dataNoExistNoUpdated: "Data [{srfdename}-{srfmajortext}({srfkey})] does not exist and cannot be updated!",
43108
+ noDeleted: "The following data \u300C{notRemoveKey}\u300D was not found and could not be deleted!",
43109
+ noAttributeName: "No attribute name is specified",
43110
+ noContextParameterName: "No context parameter name is specified",
43111
+ conditionalObjects: "Unrecognizable Conditional Objects",
43112
+ mustArray: "The value must be an array",
43113
+ unsupportedQueryTypes: "Unsupported query types: {condType}",
43114
+ predefinedType: "Predefined type {predefinedType} is not supported at this time.",
43115
+ dynamicCodeTable: "The return value of a dynamic code table data property is not an object-formatted string and cannot be converted!",
43116
+ unconfiguredDataset: "Unconfigured dataset",
43117
+ processedWithout: "Execution of \u300C{funcName}\u300D cannot be processed without \u300Csrfkey\u300D.",
43118
+ noExistProcessed: "Execution of \u300C{funcName}\u300D does not exist and \u300Csrfsessionid\u300D cannot be processed.",
43119
+ missingDetreeColumnId: "Model exception missing detreeColumnId or dataItemName."
43120
+ },
43121
+ uiAction: {
43122
+ noEntityOrBehavior: "No entity or entity behavior configured",
43123
+ noConfiguredopenView: "Not configured to open the view",
43124
+ frontProcessingModes: "Unsupported front processing modes [{frontProcessType}]",
43125
+ missingConfigurationScriptCode: "Custom types are missing configuration script code",
43126
+ dataPrimaryKey: "Data primary key not found",
43127
+ printFailure: "print failure",
43128
+ physicalPrint: "No physical print items found",
43129
+ exportRequestFailed: "Export request failed",
43130
+ noEntityExportsFound: "No entity exports found",
43131
+ lackNativeEvent: "Lack of native JS event objects",
43132
+ wantLogout: "Are you sure you want to log out?",
43133
+ logout: "Logout",
43134
+ operationConfirmation: "Operation Confirmation",
43135
+ viewParameterModalOption: "View parameter modalOption failed to parse: {error}",
43136
+ withdrawalConfirmed: "Is the execution of the withdrawal confirmed?",
43137
+ noFoundBehaviorModel: "No interface behavior model found for {actionId}."
43138
+ },
43139
+ uiLogic: {
43140
+ interfaceConnectionConditional: "Interface Connection Conditional Logic Group Unconfigured Logic Item",
43141
+ connectionConditionGroup: "Interface Logic Connection Condition Group Name: {name} - Condition Group Identifier: {id} - Run Result:",
43142
+ currentConditionValue: "The current condition value type is [Data object attribute], and the configuration condition value is missing.",
43143
+ sourceDataObjectAttribute: "The current condition value type is [Source Data Object Attribute], and the configuration condition value is missing.",
43144
+ currentTime: "Conditional value type [current time] is not supported at this time",
43145
+ interfaceConnectionConditionalTypeName: "Interface Logic Connection Condition Item: {name} - Condition Value Type: {type} - Source Property Name: {dstField} - Source Object Value:",
43146
+ asynchronousTermination: "Unsupported logical connection type: asynchronous termination",
43147
+ asynchronousRejection: "Unsupported logical connection type: asynchronous rejection",
43148
+ exceptionHandling: "Unsupported Logical Connection Type: Exception Handling",
43149
+ logicalLinkTypes: "Unsupported logical link types:{linkMode}",
43150
+ missingTargetParameter: "Missing target parameter object or source parameter object configuration",
43151
+ appendedArray: "Interface logic node (appended to the array): {id} - additional parameter:",
43152
+ bindingParameters: "Interface Logic Node (Binding Parameters): {id} - Parameter Name: {dstDEUILogicParamId} - Value:",
43153
+ copyParameter: "Interface logic node (copy parameter): {id} - parameter name: {dstDEUILogicParamId} - value:",
43154
+ missingfilter: "Missing configuration filter parameters",
43155
+ interfaceLogicNodeDataSet: "Interface Logic Node (Data Set): {id} - Dataset Entity Identifier: {dstAppDataEntityId} - Dataset Identifier: {dstAppDEDataSetId} - Parameter Name: {retDEUILogicParamId} - Value:",
43156
+ interfaceLogicNodeEntityActions: "Interface Logic Node (Entity Actions): {id} - Entity to which the interface action belongs: {dstAppDataEntityId} - Entity Activity Identifier: {dstAppDEActionId} - Parameter Name: {retDEUILogicParamId} - Value:",
43157
+ noConfiguredInterfaceBehavior: "Interface behavior not configured",
43158
+ 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}",
43159
+ logicalNodeOperation: "Logical node {name} operation parameter value:",
43160
+ unsupportedEndNode: "Unsupported end node return value types: {returnType}",
43161
+ interfaceLogicNodeEndNode: "Interface logic node (end node): {id} - return value type: {returnType} - return value:",
43162
+ noEntityConfigured: "No entity configured",
43163
+ noEntityLogicConfigured: "No entity logic configured",
43164
+ noIncomingLogic: "No incoming logic parameters are configured",
43165
+ passedParameter: "Passed parameter {dstDEUILogicParamId} not found",
43166
+ interfaceLogicNodeExecutingEntityLogic: "Interface logic node (executing entity logic): {id} - entity logic identifier: {dstAppDELogicId} - entity to which the entity logic belongs: {dstAppDataEntityId} - parameter name: {retDEUILogicParamId} - value:",
43167
+ missingMessageTypeConfiguration: "Missing message type configuration",
43168
+ missingButtonTypeConfiguration: "Missing button type configuration",
43169
+ interfaceLogicNodeMessagePopup: "Interface logic node (message popup): {id} - message type: {type} - message: {message}",
43170
+ message: "messages",
43171
+ yes: "yes",
43172
+ no: "no",
43173
+ determine: "Determine",
43174
+ cancel: "Cancel",
43175
+ noSupportItem: "{name} is currently not supported",
43176
+ interfaceLogicNodeFrontendPlugin: "Interface Logic Node (Frontend Plugin): {id} - Plugin Id: {sysPFPluginId}",
43177
+ interfaceLogicNodePreparationParameter: "Interface Logic Node (Preparation Parameter): {id} - Parameter Processing Action: {paramAction} - Target Logic Parameter: {dstDEUILogicParamId} - Source Parameter (value):",
43178
+ noTargetParameter: "No target parameter object id",
43179
+ targetParameter: "Assigning a value to the target parameter attribute {dstFieldName} reports an error, target parameter:",
43180
+ interfaceLogicNodeDirectCode: "Interface logic node (direct code): {id}-direct code:",
43181
+ interfaceLogicNodeRebuildParameter: "Interface Logic Node (rebuild parameter): {id} - rebuild parameter: {dstDEUILogicParamId}",
43182
+ interfaceLogicNodeResetParameter: "Interface Logic Node (Reset Parameter): {id} - Reset Parameter: {dstDEUILogicParamId}",
43183
+ interfaceLogicNodeSortedArrayParameters: "Interface Logic Node (Sorted Array Parameters): {id} - Sort Attribute: {dstFieldName} - Sort Mode: {dstSortDir} - Parameter Name: {dstDEUILogicParamId} - Sorted Array:",
43184
+ interfaceLogicNodeStartupNode: "Interface logic node (startup node): {id}",
43185
+ interfaceLogicNodeThrowingExceptions: "Interface Logic node (throwing exceptions): {id} - error message: {errorInfo}",
43186
+ noConfiguredTriggerObject: "No trigger object is configured",
43187
+ noConfiguredEvent: "The event name parameter is not configured",
43188
+ noConfiguredEventParameters: "No event parameters are configured",
43189
+ noFoundTriggerObject: "Trigger object not found {fireCtrlId}",
43190
+ noFoundEventParameterObject: "Event parameter object not found {eventParamId}",
43191
+ 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:",
43192
+ noConfiguredInterfaceObject: "No interface object is configured",
43193
+ noConfiguredOperatingParameters: "No operating parameters are configured",
43194
+ noConfiguredCallMethod: "No call method is configured",
43195
+ noFoundOperationParameter: "The operation parameter {invokeParamId} was not found.",
43196
+ noFoundInterfaceObject: "Interface object {invokeCtrlId} was not found.",
43197
+ noFoundInvokeMethod: "The invoke method {invokeMethod} was not found.",
43198
+ interfaceLogicNodeViewWidgetInvocation: "Interface logic node (view widget invocation): {id} - name of the invoking view widget: {invokeCtrlId} - name of the invoking method: {invokeMethod} - trigger parameter:",
43199
+ viewLogicInitializationParameter: "View logic initialization parameter, {codeName} specified widget object not found",
43200
+ calculateInterfaceLogicParameters: "Calculate interface logic parameters, identifier: {tag}",
43201
+ restablishInterfaceLogic: "Re-establish the interface logic parameters, identifying: {tag}",
43202
+ interfaceLogic: "Interface logic {deUILogicId} for entity {appDataEntityId} not found",
43203
+ startExecutingInterfaceLogic: "Start executing the interface logic, entity: {appDataEntityId} - logic name: {name}",
43204
+ endExecutionInterfaceLogic: "End execution interface logic, entity: {appDataEntityId} - logic name: {name}",
43205
+ noLogicalNodesConfigured: "The interface logic has no logical nodes configured"
43206
+ },
43207
+ utils: {
43208
+ anime: {
43209
+ noExistEndpointElement: "The endpoint element does not exist",
43210
+ noExistAnimationElement: "Animation element does not exist",
43211
+ noClone: "Cannot clone a null or undefined element."
43212
+ },
43213
+ errorHandler: {
43214
+ noPermissionless: "No permissionless error handler registered",
43215
+ noProcessor: "No processor was found that can handle this error"
43216
+ },
43217
+ fileUtil: {
43218
+ fileUploadFailed: "File upload failed"
43219
+ },
43220
+ handlebars: {
43221
+ noInitHandlebars: "handlebars not init"
43222
+ },
43223
+ modal: {
43224
+ externalClosureCapability: "External closure capability not registered",
43225
+ shouldDismissResult: "The result of shouldDismiss is false, closing the interrupt."
43226
+ },
43227
+ openRedirectView: {
43228
+ parseSrfnavctxParameter: "Failed to parse srfnavctx parameter in redirection [{urlStr}].",
43229
+ missingEntityName: "Entity name missing from redirection parameter",
43230
+ noFoundSpecifiedEntity: "CodeName not found for the specified entity: {deName}",
43231
+ unsupportedLinkUrl: "Unsupported linkUrl format: {linkUrl}",
43232
+ noConfiguredActualReference: "Actual reference view not configured",
43233
+ redirectingViewReferences: "Redirecting view references there:",
43234
+ redirectionIdentifier: "Redirection identifier [{rdTag}] or [{deRdTag}] or workflow [{wfRdTag}] corresponding to view not found",
43235
+ noMatchActualReferenceView: "Identifies that [{rdTag}] did not match the actual reference view",
43236
+ redirectionView: "Redirection view [{name}] custom category attribute [{typeFieldId}] value is null"
43237
+ },
43238
+ script: {
43239
+ errorReportingScript: "Error Reporting Script"
43240
+ },
43241
+ shortCut: {
43242
+ invalidIndexNewIndex: "Invalid index newIndex: {newIndex}, oldIndex: {oldIndex}, current array length {length}"
43243
+ },
43244
+ uiDomain: {
43245
+ transactionOpen: "Transaction has been opened, only one transaction can be opened for a single interface domain.",
43246
+ currentTransaction: "The current transaction has not been committed and cannot be closed directly."
43247
+ },
43248
+ uiDomainManager: {
43249
+ invalidInterfaceDomain: "Invalid interface domain identifier [{id}]"
43250
+ },
43251
+ verify: {
43252
+ contentConform: "Content must conform to value rules",
43253
+ scopeRules: "Content length must conform to scope rules",
43254
+ valueNull: "The value is null",
43255
+ regularRules: "The value must conform to the regular rules",
43256
+ rangeRules: "Values must conform to the value range rules",
43257
+ scriptRules: "The value must conform to the script rules",
43258
+ emptyLogicGroups: "Empty logic groups were found and the logic could not be executed properly!",
43259
+ unsupportedLogicTypes: "Unsupported logic types {logicType}",
43260
+ emptyLogicGroupsProperly: "Empty logic groups were found and the logic could not be executed properly!",
43261
+ valueOperations: "Value operations: {op}, not yet supported",
43262
+ noCompared: "{value} and {value2} cannot be compared.",
43263
+ conditionalValues: "Conditional values for range comparisons do not exist or are not strings"
43264
+ },
43265
+ firstregister: "Please register the model loading adapter first"
43266
+ }
43267
+ }
43268
+ };
43269
+
43270
+ // src/locale/zh-CN/index.ts
43271
+ var zhCn = {
43272
+ // runtime
43273
+ runtime: {
43274
+ common: {
43275
+ unrealized: "\u672A\u5B9E\u73B0"
43276
+ },
43277
+ command: {
43278
+ app: {
43279
+ noFindApplicationFunction: "\u627E\u4E0D\u5230\u53EB{appFuncId}\u7684\u5E94\u7528\u529F\u80FD",
43280
+ noFindApplicationFunctionYype: "\u672A\u652F\u6301\u7684\u5E94\u7528\u529F\u80FD\u7C7B\u578B:{appFuncType}",
43281
+ noFindApplicationView: "\u5E94\u7528\u89C6\u56FE[{appViewId}]\u4E0D\u5B58\u5728",
43282
+ unsupportedPopup: "\u672A\u652F\u6301\u7684\u89C6\u56FE\u6253\u5F00\u6A21\u5F0F: POPUP",
43283
+ unsupportedPopupapp: "\u672A\u652F\u6301\u7684\u89C6\u56FE\u6253\u5F00\u6A21\u5F0F: POPUPAPP",
43284
+ missingEvent: "\u6C14\u6CE1\u6253\u5F00\u7F3A\u5C11event"
43285
+ }
43286
+ },
43287
+ controller: {
43288
+ common: {
43289
+ control: {
43290
+ componentActivation: "\u90E8\u4EF6[{name}]({id})\u6FC0\u6D3B",
43291
+ componentPause: "\u90E8\u4EF6[{name}]({id})\u6682\u505C",
43292
+ unsupportedType: "\u4E0D\u652F\u6301\u7684\u5B9E\u4F53\u6570\u636E\u53D8\u66F4\u7C7B\u578B: {type}",
43293
+ uncheckedData: "\u672A\u9009\u4E2D\u6570\u636E",
43294
+ dataDeletion: "\u6570\u636E\u5220\u9664",
43295
+ confirmDataDeletion: "\u786E\u8BA4\u5220\u9664\u6570\u636E\uFF1F",
43296
+ noImportModel: "\u6CA1\u6709\u914D\u7F6E\u5BFC\u5165\u6A21\u578B\uFF01"
43297
+ },
43298
+ editor: {
43299
+ editorNoConfigured: "\u7F16\u8F91\u5668\u7C7B\u578B[{editorType}]\uFF0C\u672A\u914D\u7F6E\u4EE3\u7801\u8868"
43300
+ },
43301
+ view: {
43302
+ viewActivation: "\u89C6\u56FE[{name}]({id})\u6FC0\u6D3B",
43303
+ viewPause: "\u89C6\u56FE[{name}]({id})\u6682\u505C",
43304
+ viewDestroy: "\u89C6\u56FE[{name}]({id})\u9500\u6BC1",
43305
+ noFoundViewEngine: "\u672A\u627E\u5230\u89C6\u56FE\u5F15\u64CE\u5B9E\u73B0\uFF1A",
43306
+ noSupportBehavior: "\u6CA1\u6709\u5F15\u64CE\u652F\u6301\u9884\u7F6E\u754C\u9762\u884C\u4E3A{key}"
43307
+ }
43308
+ },
43309
+ control: {
43310
+ menu: {
43311
+ noFindMenu: "\u627E\u4E0D\u5230\u540D\u4E3A{id}\u7684\u83DC\u5355\u9879",
43312
+ noConfigured: "\u6CA1\u6709\u914D\u7F6E\u5E94\u7528\u529F\u80FD"
43313
+ },
43314
+ calendar: {
43315
+ missingViewLogic: "\u7F3A\u5C11{itemType}_opendata\u7684\u89C6\u56FE\u903B\u8F91",
43316
+ noFoundModel: "\u672A\u627E\u5230\u65E5\u5386\u9879\u6A21\u578B"
43317
+ },
43318
+ chart: {
43319
+ noConfiguredX: "\u5E8F\u5217\u6CA1\u6709\u914D\u7F6EX\u5750\u6807\u8F74",
43320
+ noConfiguredY: "\u5E8F\u5217\u6CA1\u6709\u914D\u7F6EY\u5750\u6807\u8F74",
43321
+ missingClassification: "\u7F3A\u5C11\u5206\u7C7B\u5C5E\u6027\u914D\u7F6E",
43322
+ missingValue: "\u7F3A\u5C11\u503C\u5C5E\u6027\u914D\u7F6E",
43323
+ noSupportSequence: "\u56FE\u8868\u6682\u672A\u652F\u6301\u5E8F\u5217\u7C7B\u578B{seriesType}",
43324
+ noFindSequence: "\u627E\u4E0D\u5230{seriesIndex}\u5E8F\u5217\u7684generator\uFF01",
43325
+ noInitialised: "chart\u5BF9\u8C61\u6CA1\u6709\u6B63\u786E\u521D\u59CB\u5316",
43326
+ noCalculated: "options\u8FD8\u6CA1\u8BA1\u7B97"
43327
+ },
43328
+ dataView: {
43329
+ noBehaviourGroup: "\u64CD\u4F5C\u9879\u6CA1\u6709\u914D\u7F6E\u754C\u9762\u884C\u4E3A\u7EC4",
43330
+ noBehaviourGroupAction: "\u64CD\u4F5C\u9879\u754C\u9762\u884C\u4E3A\u7EC4\u6CA1\u6709\u914D\u7F6E\u754C\u9762\u884C\u4E3A",
43331
+ propertiesNoConfigured: "\u5206\u7EC4\u5C5E\u6027\u6CA1\u6709\u914D\u7F6E",
43332
+ tableNoConfigured: "\u5206\u7EC4\u4EE3\u7801\u8868\u6CA1\u6709\u914D\u7F6E",
43333
+ sortingItems: "\u542F\u7528\u6392\u5E8F\u7684\u9879\u5FC5\u987B\u5173\u8054\u5B9E\u4F53\u5C5E\u6027"
43334
+ },
43335
+ expBar: {
43336
+ unableMore: "\u65E0\u6CD5\u83B7\u53D6\u591A\u6570\u636E\u90E8\u4EF6[{xdataControlName}]\u63A7\u5236\u5668",
43337
+ multiNode: "\u591A\u8282\u70B9\u89C6\u56FE\u7531\u5B50\u7C7B\u5B9E\u73B0",
43338
+ noFindNodeModel: "\u627E\u4E0D\u5230{nodeId}\u7684\u8282\u70B9\u6A21\u578B"
43339
+ },
43340
+ form: {
43341
+ formCompletion: "\u8BF7\u68C0\u67E5\u8868\u5355\u586B\u5199\uFF01",
43342
+ savedSuccessfully: "{srfmajortext}\u4FDD\u5B58\u6210\u529F",
43343
+ prompt: "\u63D0\u793A",
43344
+ deletion: "\u786E\u8BA4\u5220\u9664\u5417\uFF1F",
43345
+ itemUpdate: "\u6CA1\u627E\u5230{formItemUpdateId}\u8868\u5355\u9879\u66F4\u65B0",
43346
+ processStarted: "\u6D41\u7A0B\u542F\u52A8\u6210\u529F",
43347
+ processSubmitted: "\u6D41\u7A0B\u63D0\u4EA4\u6210\u529F",
43348
+ lackBehavior: "\u7F3A\u5C11\u8FD4\u56DE\u64CD\u4F5C\u5B9E\u4F53\u884C\u4E3A",
43349
+ 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",
43350
+ relationshipInterface: "\u63A5\u6536\u5230\u5173\u7CFB\u754C\u9762\u7684\u6570\u636E\u53D8\u66F4\u4E8B\u4EF6",
43351
+ fillIn: "\u8BF7\u586B\u5199{caption}",
43352
+ unconfiguredWidgets: "\u591A\u6570\u636E\u90E8\u4EF6\u672A\u914D\u7F6E\u5185\u5BB9\u90E8\u4EF6",
43353
+ noFoundFormController: "\u6CA1\u6709\u627E\u5230\u5BF9\u5E94{id}\u7684\u8868\u5355\u63A7\u5236\u5668",
43354
+ multiDataAddData: "\u591A\u6570\u636E\u90E8\u4EF6\u7C7B\u578B{contentType}\u6682\u4E0D\u652F\u6301\u6DFB\u52A0\u6570\u636E",
43355
+ mdControllerNoExist: "mdController\u4E0D\u5B58\u5728",
43356
+ repeaterNoSupported: "\u6682\u4E0D\u652F\u6301\u91CD\u590D\u5668\u6837\u5F0F{detailStyle}",
43357
+ searchTerms: "\u6CA1\u6709\u627E\u5230\u53EF\u4EE5\u5E94\u7528\u7684\u641C\u7D22\u6761\u4EF6",
43358
+ saveSearch: "\u6CA1\u6709\u627E\u5230\u4FDD\u5B58\u7684\u641C\u7D22\u6761\u4EF6"
43359
+ },
43360
+ gantt: {
43361
+ noNode: "\u4E0D\u662F\u5B9E\u4F53\u7518\u7279\u8282\u70B9\u6570\u636E",
43362
+ rowData: "\u884C\u6570\u636E\u4E0D\u5B58\u5728",
43363
+ simpleMode: "\u7B80\u5355\u6A21\u5F0F\uFF0C\u4E0D\u4FDD\u5B58",
43364
+ nonentity: "\u975E\u5B9E\u4F53\u8282\u70B9\u6570\u636E\u4E0D\u80FD\u4FDD\u5B58",
43365
+ noChange: "\u503C\u6CA1\u6709\u53D1\u751F\u6539\u53D8",
43366
+ dataDeleted: "\u6570\u636E[{str}]\u5220\u9664\u6210\u529F!",
43367
+ firstComplete: "\u8BF7\u5148\u5B8C\u6210\u5F53\u524D\u884C\u7F16\u8F91\u4E2D\u7684\u884C\u7684\u64CD\u4F5C",
43368
+ noSupport: "{treeNodeType}\u8282\u70B9\u7C7B\u578B\u672A\u652F\u6301"
43369
+ },
43370
+ grid: {
43371
+ unsupported: "\u672A\u652F\u6301\u7684\u7C7B\u578B{type}",
43372
+ attributeColumns: "\u6CA1\u6709\u914D\u7F6E\u5206\u7EC4\u5C5E\u6027\u7684\u5C5E\u6027\u5217",
43373
+ noCodeTable: "\u5206\u7EC4\u5C5E\u6027\u7684\u5C5E\u6027\u5217{groupFieldName}\u6CA1\u6709\u914D\u7F6E\u4EE3\u7801\u8868",
43374
+ configureFirstColumn: "\u8BF7\u5C06\u5206\u7EC4\u5C5E\u6027\u5217{groupFieldName}\u914D\u7F6E\u4E3A\u7B2C\u4E00\u5217",
43375
+ requiresCodeTable: "\u4EE3\u7801\u8868\u5206\u7EC4\u6A21\u5F0F\u9700\u8981\u914D\u7F6E\u4EE3\u7801\u8868",
43376
+ noMatchCodeTable: "\u5206\u7EC4\u4EE3\u7801\u8868\u4E0E\u5C5E\u6027\u5217{groupFieldName}\u7684\u4EE3\u7801\u8868\u4E0D\u4E00\u81F4",
43377
+ convertedValue: "{srfmajortext}\u7684\u6392\u5E8F\u5C5E\u6027\u65E0\u6CD5\u8F6C\u6362\u6210\u6570\u503C",
43378
+ missingConfiguration: "\u7F3A\u5C11\u914D\u7F6E\u805A\u5408\u5B9E\u4F53\u6216\u805A\u5408\u6570\u636E\u96C6",
43379
+ newRows: "\u4E0D\u652F\u6301\u65B0\u5EFA\u884C",
43380
+ saveCancel: "\u884C\u6570\u636E\u6821\u9A8C\u4E0D\u901A\u8FC7\uFF0C\u4FDD\u5B58\u53D6\u6D88",
43381
+ noSupportRowEditing: "\u5F53\u524D\u8868\u683C\u4E0D\u652F\u6301\u884C\u7F16\u8F91\uFF0C\u65E0\u6CD5\u5207\u6362\u5F00\u542F\u884C\u7F16\u8F91",
43382
+ lineEditing: "\u540C\u65F6\u53EA\u80FD\u6709\u4E00\u884C\u5F00\u542F\u884C\u7F16\u8F91",
43383
+ updateColumns: "\u6CA1\u627E\u5230{updateId}\u7F16\u8F91\u5217\u66F4\u65B0",
43384
+ exported: "\u65E0\u5BFC\u51FA\u6570\u636E",
43385
+ tabularColumns: "\u65E0\u8868\u683C\u5217",
43386
+ corresponding: "\u672A\u627E\u5230\u5BF9\u5E94\u7684\u8868\u683C\u6570\u636E\u9879[{deField}]",
43387
+ pickedUpData: "\u672A\u5728\u884C\u6570\u636E\u4E2D\u53D6\u5230 {valueItem} \u7684\u503C",
43388
+ noSupportedMode: "\u6682\u672A\u652F\u6301\u5C5E\u6027\u5217\u805A\u5408\u6A21\u5F0F{aggMode}",
43389
+ remoteAggregation: "\u8FDC\u7A0B\u805A\u5408\u6682\u672A\u652F\u6301",
43390
+ aggregateMode: "\u6682\u672A\u652F\u6301\u805A\u5408\u6A21\u5F0F{aggMode}",
43391
+ formattingError: "{aggValue} \u503C\u683C\u5F0F\u5316\u9519\u8BEF",
43392
+ checksumErrors: "{codeName}\u6821\u9A8C\u62A5\u9519,{fieldName}",
43393
+ behaviorGroup: "\u64CD\u4F5C\u5217\u6CA1\u6709\u914D\u7F6E\u754C\u9762\u884C\u4E3A\u7EC4",
43394
+ interfaceBehavior: "\u64CD\u4F5C\u5217\u754C\u9762\u884C\u4E3A\u7EC4\u6CA1\u6709\u914D\u7F6E\u754C\u9762\u884C\u4E3A"
43395
+ },
43396
+ kanban: {
43397
+ sortingProperties: "\u6392\u5E8F\u5C5E\u6027\u6CA1\u914D\u7F6E",
43398
+ sortDirection: "\u6392\u5E8F\u65B9\u5411\u6CA1\u914D\u7F6E",
43399
+ groupedOn: "\u770B\u677F\u90E8\u4EF6\u5FC5\u987B\u5F00\u542F\u5206\u7EC4",
43400
+ adjustmentsGroup: "\u5F53\u524D\u770B\u677F\u4E0D\u5141\u8BB8\u8C03\u6574\u5206\u7EC4\uFF01",
43401
+ noAllowReorder: "\u5F53\u524D\u770B\u677F\u4E0D\u5141\u8BB8\u8C03\u6574\u6B21\u5E8F\uFF01"
43402
+ },
43403
+ meditViewPanel: {
43404
+ DraftNew: "\u8349\u7A3F--\u65B0\u5EFA",
43405
+ dataExist: "\u7F16\u8F91\u89C6\u56FE\u9762\u677F\u90E8\u4EF6UI\u6570\u636E\u4E0D\u5B58\u5728"
43406
+ },
43407
+ panel: {
43408
+ panelData: "\u672A\u83B7\u53D6\u5230\u9762\u677F\u6570\u636E"
43409
+ },
43410
+ reportPanel: {
43411
+ 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",
43412
+ noImplemented: "\u6307\u5B9A\u62A5\u8868{reportType}\u7C7B\u578B\u62A5\u8868\u9762\u677F\u751F\u6210\u5668\u6682\u672A\u5B9E\u73B0"
43413
+ },
43414
+ searchBar: {
43415
+ noFoundEntity: "\u627E\u4E0D\u5230\u5C5E\u6027{targetField}\u5BF9\u5E94\u7684\u5173\u8054\u5B9E\u4F53",
43416
+ missingModel: "\u7F3A\u5C11\u7F16\u8F91\u5668\u6A21\u578B",
43417
+ JSONFormat: "{data}\u975E\u6807\u51C6JSON\u683C\u5F0F:"
43418
+ },
43419
+ toolbar: {
43420
+ noFound: "\u6CA1\u6709\u627E\u5230\u754C\u9762\u884C\u4E3A\u6A21\u578B{actionId}"
43421
+ },
43422
+ tree: {
43423
+ noFoundTreeData: "\u627E\u4E0D\u5230\u5BF9\u5E94\u7684\u6811\u8282\u70B9\u6570\u636E",
43424
+ sortAttribute: "\u7F3A\u5C11\u914D\u7F6E\u6392\u5E8F\u5C5E\u6027",
43425
+ editMode: "\u6811\u8282\u70B9\u6CA1\u6709\u914D\u7F6E\u7F16\u8F91\u6A21\u5F0F\uFF1A\u540D\u79F0",
43426
+ nodeData: "\u4E0D\u662F\u5B9E\u4F53\u6811\u8282\u70B9\u6570\u636E",
43427
+ noFoundTreeNode: "\u672A\u627E\u5230\u6811\u8282\u70B9"
43428
+ },
43429
+ treeGrid: {
43430
+ columnsSchema: "\u6811\u8868\u683C\u65E0\u503C\u5217\u6A21\u5F0F",
43431
+ columnMode: "\u6811\u8868\u683C\u65E0\u7236\u503C\u5217\u6A21\u5F0F"
43432
+ },
43433
+ treeGridEx: {
43434
+ noConfigured: "\u8282\u70B9\u6CA1\u6709\u914D\u7F6E\u5BF9\u5E94\u8868\u683C\u5217{name}\u7684\u6570\u636E\u9879",
43435
+ editItem: "\u6CA1\u6709\u627E\u5230\u5BF9\u5E94\u8868\u683C\u5217{name}\u7684\u7F16\u8F91\u9879\u6A21\u578B",
43436
+ noPickedUp: "\u672A\u5728\u884C\u6570\u636E\u4E2D\u53D6\u5230 {valueItem} \u7684\u503C",
43437
+ behaviorGroup: "{id}\u64CD\u4F5C\u5217\u6CA1\u6709\u914D\u7F6E\u754C\u9762\u884C\u4E3A\u7EC4",
43438
+ noSupportCreation: "\u6682\u4E0D\u652F\u6301\u65B0\u5EFA",
43439
+ updateBehavior: "\u6811\u8282\u70B9\u6CA1\u6709\u914D\u7F6E\u66F4\u65B0\u5B9E\u4F53\u884C\u4E3A"
43440
+ },
43441
+ wizardPanel: {
43442
+ wizardForm: "\u627E\u4E0D\u5230{activeFormTag}\u7684\u5411\u5BFC\u8868\u5355",
43443
+ formController: "\u627E\u4E0D\u5230{activeFormTag}\u7684\u8868\u5355\u63A7\u5236\u5668",
43444
+ noConfiguration: "\u6CA1\u6709\u914D\u7F6E\u5411\u5BFC\u8868\u5355\u96C6\u5408",
43445
+ wizardFormIdentifier: "\u627E\u4E0D\u5230\u6807\u8BC6\u4E3A{tag}\u7684\u5411\u5BFC\u8868\u5355",
43446
+ noPreviousForm: "\u6CA1\u6709\u4E0A\u4E00\u4E2A\u8868\u5355",
43447
+ nextStep: "\u627E\u4E0D\u5230\u4E0B\u4E00\u4E2A\u5411\u5BFC\u6B65\u9AA4",
43448
+ nextForm: "\u627E\u4E0D\u5230\u4E0B\u4E00\u4E2A\u5411\u5BFC\u8868\u5355"
43449
+ }
43450
+ },
43451
+ utils: {
43452
+ buttonState: {
43453
+ isFinitenconsistency: "{uiActionId}\u754C\u9762\u884C\u4E3A\u7684\u5B9E\u4F53{appDeName}\u548C\u6570\u636E\u7684\u5B9E\u4F53{appDeId}\u4E0D\u4E00\u81F4"
43454
+ },
43455
+ counter: {
43456
+ decrement: "\u9519\u8BEF\u7684\u8C03\u7528\uFF01decrement\u4E0D\u80FD\u5BF9count\u4E3A0\u8C03\u7528"
43457
+ },
43458
+ dataFileUtil: {
43459
+ startImport: "\u5F00\u59CB\u5BFC\u5165\uFF0C\u8BE6\u7EC6\u8FDB\u5EA6\u548C\u7ED3\u679C\u8BF7\u770B\u5E94\u7528\u901A\u77E5",
43460
+ noExist: "ibiz.util.getExportExcel\u4E0D\u5B58\u5728",
43461
+ loadError: "\u5BFC\u51FA\u6A21\u5757\u52A0\u8F7D\u9519\u8BEF",
43462
+ importData: "\u6CA1\u6709\u627E\u5230\u5BF9\u5E94\u7684\u5BFC\u5165\u6570\u636E\u6A21\u578B"
43463
+ },
43464
+ valueDefault: {
43465
+ noExist: "appdata.context\u4E0D\u5B58\u5728",
43466
+ nosupported: "\u9ED8\u8BA4\u503C\u7C7B\u578B[{valueType}]\u672A\u652F\u6301"
43467
+ },
43468
+ valueEx: {
43469
+ objectNameField: "\u7F3A\u5C11objectNameField"
43470
+ },
43471
+ valueRule: {
43472
+ length: "\u5185\u5BB9\u957F\u5EA6\u5FC5\u987B\u5C0F\u4E8E\u7B49\u4E8E{maxLength},\u5F53\u524D\u957F\u5EA6\u4E3A{length}"
43473
+ },
43474
+ viewMsg: {
43475
+ message: "\u627E\u4E0D\u5230\u89C6\u56FE\u6D88\u606F\u7EC4{msgGroupId}\u7684\u6A21\u578B",
43476
+ noFound: "\u6CA1\u6709\u627E\u5230{message}\u89C6\u56FE\u6D88\u606F\u6A21\u578B",
43477
+ unconfigured: "\u672A\u914D\u7F6E\u5B9E\u4F53\u6570\u636E\u96C6",
43478
+ unconfiguredEntities: "\u672A\u914D\u7F6E\u5E94\u7528\u5B9E\u4F53"
43479
+ }
43480
+ }
43481
+ },
43482
+ deLogic: {
43483
+ deLogicLink: {
43484
+ connectionConditional: "\u754C\u9762\u8FDE\u63A5\u6761\u4EF6\u903B\u8F91\u7EC4\u672A\u914D\u7F6E\u903B\u8F91\u9879",
43485
+ 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",
43486
+ missingConditionValue: "\u5F53\u524D\u6761\u4EF6\u503C\u7C7B\u578B\u4E3A[\u6570\u636E\u5BF9\u8C61\u5C5E\u6027],\u7F3A\u5C11\u914D\u7F6E\u6761\u4EF6\u503C",
43487
+ sourceDataMissingConditionValue: "\u5F53\u524D\u6761\u4EF6\u503C\u7C7B\u578B\u4E3A[\u6E90\u6570\u636E\u5BF9\u8C61\u5C5E\u6027],\u7F3A\u5C11\u914D\u7F6E\u6761\u4EF6\u503C",
43488
+ noSupportedTime: "\u6682\u672A\u652F\u6301\u6761\u4EF6\u503C\u7C7B\u578B\u4E3A[\u5F53\u524D\u65F6\u95F4]",
43489
+ 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",
43490
+ comparisonCondition: "-\u5BF9\u6BD4\u6761\u4EF6\uFF1A{op}",
43491
+ comparisonValue: "-\u5BF9\u6BD4\u503C\uFF1A",
43492
+ compareResults: "-\u5BF9\u6BD4\u7ED3\u679C\uFF1A"
43493
+ },
43494
+ deLogicNode: {
43495
+ missingTargetParameter: "\u7F3A\u5C11\u76EE\u6807\u53C2\u6570\u5BF9\u8C61\u6216\u8005\u6E90\u53C2\u6570\u5BF9\u8C61\u914D\u7F6E",
43496
+ additionalParameter: "\u5B9E\u4F53\u903B\u8F91\u8282\u70B9\uFF08\u9644\u52A0\u5230\u6570\u7EC4\uFF09\uFF1A{id}-\u9644\u52A0\u53C2\u6570\uFF1A",
43497
+ addedValue: "-\u9644\u52A0\u503C\uFF1A",
43498
+ logicNodeParameterName: "\u5B9E\u4F53\u903B\u8F91\u8282\u70B9\uFF08\u7ED1\u5B9A\u53C2\u6570\uFF09\uFF1A{id}-\u53C2\u6570\u540D\u79F0\uFF1A{dstDELogicParamId}-\u503C\uFF1A",
43499
+ copyParameter: "\u5B9E\u4F53\u903B\u8F91\u8282\u70B9\uFF08\u62F7\u8D1D\u53C2\u6570\uFF09\uFF1A{id}-\u53C2\u6570\u540D\u79F0\uFF1A{dstDELogicParamId}-\u503C\uFF1A",
43500
+ 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",
43501
+ unspecifiedEntity: "\u672A\u6307\u5B9A\u5E94\u7528\u5B9E\u4F53",
43502
+ unspecifiedBehavior: "\u672A\u6307\u5B9A\u5B9E\u4F53\u884C\u4E3A",
43503
+ 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",
43504
+ unsupportedReturnType: "\u6682\u672A\u652F\u6301\u7684\u7ED3\u675F\u8282\u70B9\u8FD4\u56DE\u503C\u7C7B\u578B: {returnType}",
43505
+ 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",
43506
+ noSupportedLogic: "\u6682\u672A\u652F\u6301\u903B\u8F91\u5904\u7406\u53C2\u6570\u64CD\u4F5C{paramAction}",
43507
+ 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",
43508
+ targetParameter: "-\u76EE\u6807\u53C2\u6570\uFF08\u503C\uFF09\uFF1A",
43509
+ missingConfiguration: "\u7F3A\u5C11\u76EE\u6807\u53C2\u6570\u5BF9\u8C61\u914D\u7F6E",
43510
+ rebuildParameter: "\u5B9E\u4F53\u903B\u8F91\u8282\u70B9\uFF08\u91CD\u65B0\u5EFA\u7ACB\u53C2\u6570\uFF09\uFF1A{id}-\u91CD\u5EFA\u53C2\u6570\uFF1A{dstDELogicParamId}",
43511
+ resetParameter: "\u5B9E\u4F53\u903B\u8F91\u8282\u70B9\uFF08\u91CD\u7F6E\u53C2\u6570\uFF09\uFF1A{id}-\u91CD\u7F6E\u53C2\u6570\uFF1A{dstDELogicParamId}",
43512
+ missingParameterProperty: "\u7F3A\u5C11\u76EE\u6807\u53C2\u6570\u5BF9\u8C61\u6216\u76EE\u6807\u5C5E\u6027\u914D\u7F6E",
43513
+ 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",
43514
+ startupNode: "\u5B9E\u4F53\u903B\u8F91\u8282\u70B9\uFF08\u542F\u52A8\u8282\u70B9\uFF09\uFF1A{id}",
43515
+ 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}",
43516
+ environmentVariables: "\u672A\u652F\u6301\u7684\u903B\u8F91\u53C2\u6570\u7C7B\u578B: \u7CFB\u7EDF\u73AF\u5883\u53D8\u91CF",
43517
+ fileObjectListVariable: "\u672A\u652F\u6301\u7684\u903B\u8F91\u53C2\u6570\u7C7B\u578B: \u6587\u4EF6\u5BF9\u8C61\u5217\u8868\u53D8\u91CF",
43518
+ fileObjectVariables: "\u672A\u652F\u6301\u7684\u903B\u8F91\u53C2\u6570\u7C7B\u578B: \u6587\u4EF6\u5BF9\u8C61\u53D8\u91CF",
43519
+ filterObjectVariables: "\u672A\u652F\u6301\u7684\u903B\u8F91\u53C2\u6570\u7C7B\u578B: \u8FC7\u6EE4\u5668\u5BF9\u8C61\u53D8\u91CF",
43520
+ finalDataVariables: "\u672A\u652F\u6301\u7684\u903B\u8F91\u53C2\u6570\u7C7B\u578B: \u6700\u540E\u6570\u636E\u53D8\u91CF",
43521
+ rawDataObjects: "\u672A\u652F\u6301\u7684\u903B\u8F91\u53C2\u6570\u7C7B\u578B: \u539F\u59CB\u6570\u636E\u5BF9\u8C61",
43522
+ operationSessionVariables: "\u672A\u652F\u6301\u7684\u903B\u8F91\u53C2\u6570\u7C7B\u578B: \u64CD\u4F5C\u4F1A\u8BDD\u53D8\u91CF",
43523
+ calculateEntity: "\u8BA1\u7B97\u5B9E\u4F53\u903B\u8F91\u53C2\u6570\uFF0C\u6807\u8BC6\uFF1A{tag}",
43524
+ value: "-\u503C\uFF1A",
43525
+ recreatingVariables: "\u672A\u652F\u6301\u7684\u903B\u8F91\u53C2\u6570\u7C7B\u578B\u91CD\u65B0\u5EFA\u7ACB\u53D8\u91CF",
43526
+ reEstablish: "\u91CD\u65B0\u5EFA\u7ACB\u5B9E\u4F53\u903B\u8F91\u53C2\u6570\uFF0C\u6807\u8BC6\uFF1A{tag}",
43527
+ expressionEmpty: "\u8868\u8FBE\u5F0F\u4E3A\u7A7A",
43528
+ sourceValueType: "\u6682\u672A\u652F\u6301\u6E90\u503C\u7C7B\u578B{srcValueType}",
43529
+ fetchingAttribute: "\u4ECE\u6E90\u53C2\u6570\u53D6\u5C5E\u6027{srcField}\u62A5\u9519\uFF0C\u6E90\u53C2\u6570\uFF1A",
43530
+ noScriptCode: "\u811A\u672C\u4EE3\u7801\u6A21\u5F0F\u6CA1\u6709\u914D\u7F6E\u811A\u672C\u4EE3\u7801",
43531
+ noConfigurationLogicNode: "\u5B9E\u4F53\u903B\u8F91\u6CA1\u6709\u914D\u7F6E\u903B\u8F91\u8282\u70B9",
43532
+ unsupportedLogical: "\u672A\u652F\u6301\u7684\u903B\u8F91\u8282\u70B9\u7C7B\u578B: {logicNodeType}",
43533
+ noSetStartNode: "\u672A\u8BBE\u7F6E\u8D77\u59CB\u8282\u70B9",
43534
+ startExecuting: "\u5F00\u59CB\u6267\u884C\u5B9E\u4F53\u903B\u8F91\uFF0C\u903B\u8F91\u6807\u8BC6\uFF1A{id}-\u903B\u8F91\u540D\u79F0\uFF1A{name}",
43535
+ endExecution: "\u7ED3\u675F\u6267\u884C\u5B9E\u4F53\u903B\u8F91\uFF0C\u903B\u8F91\u6807\u8BC6\uFF1A{id}-\u903B\u8F91\u540D\u79F0\uFF1A{name}",
43536
+ noFoundEntityLogic: "{dataEntityId}\u627E\u4E0D\u5230\u5B9E\u4F53\u903B\u8F91{deDELogicId}"
43537
+ }
43538
+ },
43539
+ engine: {
43540
+ correspondingEngine: "\u6CA1\u6709{key}\u5BF9\u5E94\u7684\u5F15\u64CE",
43541
+ logicOpendata: "\u7F3A\u5C11opendata\u7684\u89C6\u56FE\u903B\u8F91",
43542
+ logicNewdata: "\u7F3A\u5C11newdata\u7684\u89C6\u56FE\u903B\u8F91",
43543
+ deleteModel: "{codeName}\u5220\u9664\u6A21\u578B\uFF1A{name}",
43544
+ childComponentsMounted: "{id}\u7684\u5B50\u7EC4\u4EF6\uFF1A{childName}\u90FD\u5DF2mounted",
43545
+ minimization: "\u5F53\u524D\u89C6\u56FE\u6253\u5F00\u65B9\u5F0F\u4E3A [{mode}], \u4E0D\u652F\u6301\u6700\u5C0F\u5316!",
43546
+ loadEntityData: "\u8BE5\u89C6\u56FE\u6CA1\u6709\u5B9E\u4F53\uFF0C\u65E0\u6CD5\u52A0\u8F7D\u5B9E\u4F53\u6570\u636E"
43547
+ },
43548
+ global: {
43549
+ noImplemented: "\u83B7\u53D6\u5E94\u7528\u5168\u5C40\u53D8\u91CF\u6CA1\u6709\u5B9E\u73B0"
43550
+ },
43551
+ hub: {
43552
+ failedParse: "\u89C6\u56FE\u53C2\u6570modalOption \u89E3\u6790\u5931\u8D25\uFF1A{error}",
43553
+ noExist: "\u89C6\u56FE[{id}]\u4E0D\u5B58\u5728"
43554
+ },
43555
+ logicScheduler: {
43556
+ executor: {
43557
+ noConfiguredLogic: "\u6CA1\u6709\u914D\u7F6E\u5B9E\u4F53\u754C\u9762\u903B\u8F91",
43558
+ missingTrigger: "\u903B\u8F91\u4E2D\u7F3A\u5C11\u89E6\u53D1\u5E94\u7528\u5B9E\u4F53\u754C\u9762\u884C\u4E3Aid",
43559
+ noActionableData: "opendata\u6CA1\u6709\u53EF\u64CD\u4F5C\u6570\u636E\uFF01",
43560
+ defaultOpendataViewLogic: "opendata\u89C6\u56FE\u903B\u8F91\u6CA1\u6709\u914D\u7F6E\u9ED8\u8BA4\u6253\u5F00\u89C6\u56FE",
43561
+ noActuallyReference: "opendata\u89C6\u56FE\u903B\u8F91\u7684\u9ED8\u8BA4\u6253\u5F00\u89C6\u56FE\u6CA1\u6709\u5B9E\u9645\u5F15\u7528\u89C6\u56FE",
43562
+ attributeConfiguration: "{codeName}[\u591A\u8868\u5355\u5B9E\u4F53] or [\u7D22\u5F15\u5B9E\u4F53]\u7F3A\u5C11\u7C7B\u578B\u5C5E\u6027\u914D\u7F6E",
43563
+ entityAttributeValues: "\u6570\u636E\u6E90\u65E0\u8868\u5355\u7C7B\u578B\u5E94\u7528\u5B9E\u4F53\u5C5E\u6027\u503C",
43564
+ editViews: "\u6CA1\u6709\u627E\u5230\u4E0E\u8868\u5355\u7C7B\u578B{formTypeValue}\u76F8\u5173\u7684\u5B9E\u4F53\u7684\u7F16\u8F91\u89C6\u56FE",
43565
+ selectionView: "\u6CA1\u6709\u627E\u5230\u6279\u6DFB\u52A0\u9700\u8981\u6253\u5F00\u7684\u9009\u62E9\u89C6\u56FE",
43566
+ noSupportedBatchAddOnly: "batchAddOnly\u6682\u672A\u652F\u6301",
43567
+ newdataViewLogic: "newdata\u89C6\u56FE\u903B\u8F91\u6CA1\u6709\u914D\u7F6E\u9ED8\u8BA4\u65B0\u5EFA\u6570\u636E\u89C6\u56FE",
43568
+ indexEntity: "\u7F3A\u5C11\u9ED8\u8BA4\u7D22\u5F15\u5B9E\u4F53\u9009\u62E9\u89C6\u56FE",
43569
+ checkOne: "\u8BF7\u9009\u4E2D\u4E00\u6761\u6570\u636E",
43570
+ entitiesAssociated: "\u6CA1\u6709\u627E\u5230\u4E0E\u7D22\u5F15\u7C7B\u578B{indexType}\u76F8\u5173\u7684\u5B9E\u4F53\u7684\u7F16\u8F91\u89C6\u56FE",
43571
+ relationships: "\u5B9E\u4F53\u6CA1\u6709\u4ECE\u5173\u7CFB\u96C6\u5408\uFF01",
43572
+ foreignKey: "\u6CA1\u6709\u627E\u5230{pickParentDeName}\u5728\u5F53\u524D\u5B9E\u4F53\u7684\u5916\u952E\u5C5E\u6027",
43573
+ mappingProperties: "\u6279\u91CF\u65B0\u5EFA\u8F6C\u6362\u6620\u5C04\u5C5E\u6027",
43574
+ newCreationData: "\u6279\u91CF\u65B0\u5EFA\u521B\u5EFA\u6570\u636E",
43575
+ logicType: "\u903B\u8F91\u7C7B\u578B {logicType} \u6682\u672A\u652F\u6301\uFF01",
43576
+ noImplementedMethod: "\u65B9\u6CD5\u672A\u6267\u884C\u3002"
43577
+ },
43578
+ trigger: {
43579
+ triggerType: "\u9884\u5B9A\u4E49\u903B\u8F91\u7C7B\u578B{type}\u7684\u89E6\u53D1\u5668\u7C7B\u578B\u53EA\u80FD\u662F\u811A\u672C",
43580
+ noSupportedType: "\u89E6\u53D1\u5668\u7C7B\u578B {triggerType} \u6682\u672A\u652F\u6301\uFF01",
43581
+ noExecutorBound: "{id}\u6CA1\u6709\u7ED1\u5B9Aexecutor",
43582
+ timerLacks: "\u5B9A\u65F6\u5668\u7F3A\u5C11\u5B9A\u65F6\u95F4\u9694",
43583
+ parameterCallback: "\u5B9A\u65F6\u5668\u7F3A\u5C11\u9ED8\u8BA4\u53C2\u6570\u56DE\u8C03"
43584
+ }
43585
+ },
43586
+ model: {
43587
+ utils: {
43588
+ noFoundApplication: "\u672A\u627E\u5230\u5E94\u7528",
43589
+ unconfiguredPlugins: "\u5E94\u7528\u672A\u914D\u7F6E\u63D2\u4EF6",
43590
+ noFound: "\u672A\u627E\u5230\u63D2\u4EF6{id}"
43591
+ },
43592
+ view: {
43593
+ engineClassifications: "\u672A\u652F\u6301\u7684\u5F15\u64CE\u5206\u7C7B\uFF1A{engineType}"
43594
+ }
43595
+ },
43596
+ platform: {
43597
+ failedDownload: "\u4E0B\u8F7D\u6587\u4EF6\u5931\u8D25",
43598
+ fileStreamData: "\u6587\u4EF6\u6D41\u6570\u636E\u4E0D\u5B58\u5728"
43599
+ },
43600
+ register: {
43601
+ helper: {
43602
+ adapter: "\u627E\u4E0D\u5230\u7CFB\u7EDF\u8BA1\u6570\u5668\u63D2\u4EF6{pluginKey}\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43603
+ customizedSystemAdapter: "\u627E\u4E0D\u5230\u81EA\u5B9A\u4E49\u7CFB\u7EDF\u8BA1\u6570\u5668{codeName}\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43604
+ noFoundSystemCounter: "\u627E\u4E0D\u7CFB\u7EDF\u8BA1\u6570\u5668\u7C7B\u578B{counterType}\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43605
+ applicationMenu: "\u627E\u4E0D\u5230\u5E94\u7528\u83DC\u5355\u9879\u63D2\u4EF6{pluginKey}\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43606
+ asynchronousAction: "\u627E\u4E0D\u5F02\u6B65\u64CD\u4F5C\u7C7B\u578B{actiontype}\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43607
+ matchedPlugin: "\u672A\u5339\u914D\u5230\u63D2\u4EF6[{pluginId}]\u6A21\u578B",
43608
+ customRegistration: "\u627E\u4E0D\u5230\u81EA\u5B9A\u4E49\u6CE8\u518C\u6807\u8BC6\u4E3A[{registerKey}]\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43609
+ widgetPlugin: "\u627E\u4E0D\u5230\u90E8\u4EF6\u63D2\u4EF6{pluginKey}\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43610
+ widgetStyleType: "\u627E\u4E0D\u5230\u90E8\u4EF6\u7C7B\u578B\uFF1A[{controlType}]\u7684\u90E8\u4EF6\u6837\u5F0F\uFF1A[{controlStyle}]\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43611
+ widgetType: "\u627E\u4E0D\u5230\u90E8\u4EF6\u7C7B\u578B{controlType}\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43612
+ entityBehaviorPlugin: "\u627E\u4E0D\u5230\u5B9E\u4F53\u884C\u4E3A\u63D2\u4EF6{pluginKey}\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43613
+ entityBehaviorMethod: "\u627E\u4E0D\u5B9E\u4F53\u884C\u4E3A\u65B9\u6CD5\u7C7B\u578B\u4E3A{methodType}\u7684\u9002\u914D\u5668",
43614
+ editorPlugin: "\u627E\u4E0D\u5230\u7F16\u8F91\u5668\u63D2\u4EF6{pluginKey}\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43615
+ 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",
43616
+ editorTypePredefinedType: "\u627E\u4E0D\u5230\u7F16\u8F91\u5668\u7C7B\u578B\uFF1A[{editorType}]\u7684\u9884\u7F6E\u7C7B\u578B\uFF1A[{predefinedType}]\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43617
+ editorType: "\u627E\u4E0D\u5230\u7F16\u8F91\u5668\u7C7B\u578B{editorType}\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43618
+ formMemberType: "\u627E\u4E0D\u5230\u8868\u5355\u6210\u5458\u7C7B\u578B{detailType}\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43619
+ tableColumnPlugin: "\u627E\u4E0D\u5230\u8868\u683C\u5217\u63D2\u4EF6{pluginKey}\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43620
+ tableColumnType: "\u627E\u4E0D\u5230\u8868\u683C\u5217\u7C7B\u578B{key}\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43621
+ messageType: "\u627E\u4E0D\u7AD9\u5185\u4FE1\u7C7B\u578B{content_type}\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43622
+ panelMemberPlugin: "\u627E\u4E0D\u5230\u9762\u677F\u6210\u5458\u63D2\u4EF6{pluginKey}\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43623
+ panelContainerPredefined: "\u627E\u4E0D\u5230\u9762\u677F\u5BB9\u5668\u9884\u7F6E\u7C7B\u578B\u4E3A{predefinedType}\u7684\u9002\u914D\u5668\uFF0C\u6CE8\u518Ckey\u4E3A{key}",
43624
+ 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}",
43625
+ panelMemberType: "\u627E\u4E0D\u5230\u9762\u677F\u6210\u5458\u7C7B\u578B{itemType}\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43626
+ portalWidgetPlugin: "\u627E\u4E0D\u5230\u95E8\u6237\u90E8\u4EF6\u63D2\u4EF6{pluginKey}\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43627
+ portalWidgetMemberType: "\u627E\u4E0D\u5230\u95E8\u6237\u90E8\u4EF6\u6210\u5458\u7C7B\u578B{portletType}\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43628
+ treeTableColumnPlugin: "\u627E\u4E0D\u5230\u6811\u8868\u683C\u5217\u63D2\u4EF6{pluginKey}\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43629
+ interfaceBehaviorPlugin: "\u627E\u4E0D\u5230\u754C\u9762\u884C\u4E3A\u63D2\u4EF6{pluginKey}\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43630
+ interfaceBehaviorMode: "\u627E\u4E0D\u754C\u9762\u884C\u4E3A\u6A21\u5F0F{uiactionMode}\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43631
+ frontEndPluginNode: "\u627E\u4E0D\u5230\u754C\u9762\u903B\u8F91\u524D\u7AEF\u63D2\u4EF6\u8282\u70B9\uFF0C\u63D2\u4EF6{pluginKey}\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43632
+ viewPlugin: "\u627E\u4E0D\u5230\u89C6\u56FE\u63D2\u4EF6{pluginKey}\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43633
+ correspondViewTypeStyle: "\u627E\u4E0D\u5230\u89C6\u56FE\u7C7B\u578B\uFF1A[{viewType}]\u7684\u89C6\u56FE\u6837\u5F0F\uFF1A[{viewStyle}]\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43634
+ toolbarItem: "\u627E\u4E0D\u5230\u5DE5\u5177\u680F\u9879\u63D2\u4EF6{pluginKey}\u5BF9\u5E94\u7684\u9002\u914D\u5668",
43635
+ acItem: "\u627E\u4E0D\u5230\u81EA\u586B\u5217\u8868\u9879\u63D2\u4EF6{pluginKey}\u5BF9\u5E94\u7684\u9002\u914D\u5668"
43636
+ }
43637
+ },
43638
+ service: {
43639
+ noConfiguredPrimary: "\u5B9E\u4F53[{codeName}]\u672A\u914D\u7F6E\u4E3B\u952E\u5B57\u6BB5",
43640
+ noConfiguredField: "\u5B9E\u4F53[{codeName}]\u672A\u914D\u7F6E\u4E3B\u6587\u672C\u5B57\u6BB5",
43641
+ convertedNumber: "{value}\u4E0D\u80FD\u8F6C\u6362\u6210\u6570\u5B57",
43642
+ 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!",
43643
+ unsupportedMethod: "\u672A\u652F\u6301\u7684\u5E94\u7528\u5B9E\u4F53\u65B9\u6CD5\u8F93\u5165\u5C5E\u6027\u7C7B\u578B: {type}",
43644
+ noFoundUsernamePassword: "\u672A\u627E\u5230\u533F\u540D\u767B\u5F55\u914D\u7F6E\u7528\u6237\u540D\u6216\u5BC6\u7801",
43645
+ loginFailure: "\u767B\u5F55\u5931\u8D25",
43646
+ logoutFailure: "\u767B\u51FA\u5931\u8D25",
43647
+ noFound: "\u672A\u627E\u5230\u5E94\u7528\u5B9E\u4F53[{id}]",
43648
+ masterState: "{codeName}\u5B9E\u4F53\u4E0D\u5B58\u5728\u6216\u8005\u4E3A\u542F\u7528\u4E3B\u72B6\u6001\uFF0C\u8FD4\u56DEtrue",
43649
+ operationIdentifier: "\u64CD\u4F5C\u6807\u8BC6{dataAccessAction}\u4E3B\u72B6\u6001\u8BA1\u7B97\u5F00\u59CB",
43650
+ matchMasterState: "\u5339\u914D\u4E3B\u72B6\u6001",
43651
+ masterStatePermissions: "\u5141\u8BB8\u7684\u4E3B\u72B6\u6001\u6743\u9650\u96C6\u5408",
43652
+ noMatchedState: "\u6CA1\u5339\u914D\u4E3B\u72B6\u6001\uFF0C\u8FD4\u56DEfalse",
43653
+ permissionCalculation: "\u64CD\u4F5C\u6807\u8BC6{dataAccessAction}\u6743\u9650\u8BA1\u7B97\u7ED3\u675F\uFF1A{result}",
43654
+ noFindCodeList: "\u627E\u4E0D\u5230{tag}\u4EE3\u7801\u8868",
43655
+ noConfiguredCounters: "\u672A\u914D\u7F6E\u5E94\u7528\u8BA1\u6570\u5668!",
43656
+ lackEntityLogic: "\u7F3A\u5C11\u5B9E\u4F53\u5904\u7406\u903B\u8F91",
43657
+ createBehavior: "create\u884C\u4E3A\u6CA1\u6709\u4F20data",
43658
+ updateBehavior: "update\u884C\u4E3A\u6CA1\u6709\u4F20data",
43659
+ deletionDeletion: "\u76EE\u524D\u53EA\u652F\u6301[DER1N]\u5173\u7CFB\u7C7B\u578B\u5173\u8054\u5220\u9664\u5220\u9664",
43660
+ unableDelete: "\u65E0\u6CD5\u5220\u9664[{logicName}-{srfmajortext}], \u6570\u636E\u88AB[{modelLogicName}-{msg}]\u5F15\u7528",
43661
+ noSupportedDataSource: "\u6570\u636E\u6765\u6E90\u7C7B\u578B{dataSetType}\u6682\u672A\u652F\u6301",
43662
+ sourceCodeTable: "\u6CA1\u6709\u6307\u5B9A\u6570\u636E\u6765\u6E90\u4EE3\u7801\u8868",
43663
+ requestMethods: "\u672A\u652F\u6301\u7684\u8BF7\u6C42\u65B9\u5F0F: {requestMethod}",
43664
+ noConfiguredRequestMethod: "\u672A\u914D\u7F6E\u8BF7\u6C42\u65B9\u5F0F",
43665
+ unsupportedBehaviorTypes: "\u672A\u652F\u6301\u7684\u884C\u4E3A\u7C7B\u578B[{actionType}]",
43666
+ noFoundServiceMethod: "\u672A\u627E\u5230\u670D\u52A1\u65B9\u6CD5: {id}",
43667
+ UnsupportedServiceMethod: "\u672A\u652F\u6301\u7684\u670D\u52A1\u65B9\u6CD5\u7C7B\u578B: {methodType}",
43668
+ noSupportedMethod: "{codeName}\u672A\u652F\u6301\u300C{id}\u300D\u65B9\u6CD5",
43669
+ noFoundStorageEntity: "\u5E94\u7528\u529F\u80FD[{name}]\u672A\u627E\u5230\u5B58\u50A8\u5B9E\u4F53[{stoageAppDataEntityId}]",
43670
+ noExist: "\u5E94\u7528\u529F\u80FD[{name}]\u4E0D\u5B58\u5728",
43671
+ noFoundEntity: "\u672A\u627E\u5230\u5B58\u50A8\u5B9E\u4F53[{stoageAppDataEntityId}]",
43672
+ noImplemented: "\u300C{methodName}\u300D\u672A\u5B9E\u73B0",
43673
+ noImplementedCounter: "\u672A\u5B9E\u73B0\u8BA1\u6570\u5668\u52A0\u8F7D\u65B9\u6CD5",
43674
+ noFoundCounterBehavior: "\u672A\u627E\u5230\u83B7\u53D6\u8BA1\u6570\u5668\u884C\u4E3A!",
43675
+ createPrimaryKeyData: "\u65B0\u5EFA\u8054\u5408\u4E3B\u952E\u6570\u636E\u5931\u8D25\uFF0C\u5DF2\u6709\u4E3B\u952E\u4E3A{srfkey}\u7684\u6570\u636E",
43676
+ updatePrimaryKeyData: "\u66F4\u65B0\u8054\u5408\u4E3B\u952E\u6570\u636E\u5931\u8D25\uFF0C\u5DF2\u6709\u4E3B\u952E\u4E3A{srfkey}\u7684\u6570\u636E",
43677
+ noExistNoUpdated: "\u6570\u636E\u4E0D\u5B58\u5728\uFF0C\u65E0\u6CD5\u66F4\u65B0!",
43678
+ dataNoExistNoUpdated: "\u6570\u636E[{srfdename}-{srfmajortext}({srfkey})]\u4E0D\u5B58\u5728\uFF0C\u65E0\u6CD5\u66F4\u65B0!",
43679
+ noDeleted: "\u672A\u627E\u5230\u4EE5\u4E0B\u6570\u636E\u300C{notRemoveKey}\u300D\uFF0C\u65E0\u6CD5\u5220\u9664!",
43680
+ noAttributeName: "\u6CA1\u6709\u6307\u5B9A\u5C5E\u6027\u540D\u79F0",
43681
+ noContextParameterName: "\u6CA1\u6709\u6307\u5B9A\u4E0A\u4E0B\u6587\u53C2\u6570\u540D\u79F0",
43682
+ conditionalObjects: "\u65E0\u6CD5\u8BC6\u522B\u7684\u6761\u4EF6\u5BF9\u8C61",
43683
+ mustArray: "\u503C\u5FC5\u987B\u4E3A\u6570\u7EC4",
43684
+ unsupportedQueryTypes: "\u6682\u672A\u652F\u6301\u7684\u67E5\u8BE2\u6761\u4EF6\u7C7B\u578B: {condType}",
43685
+ predefinedType: "\u9884\u5B9A\u4E49\u7C7B\u578B{predefinedType}\u6682\u4E0D\u652F\u6301",
43686
+ 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",
43687
+ unconfiguredDataset: "\u672A\u914D\u7F6E\u6570\u636E\u96C6",
43688
+ processedWithout: "\u6267\u884C\u300C{funcName}\u300D\u4E0D\u5B58\u5728\u300Csrfkey\u300D\u65E0\u6CD5\u5904\u7406",
43689
+ noExistProcessed: "\u6267\u884C\u300C{funcName}\u300D\u4E0D\u5B58\u5728\u300Csrfsessionid\u300D\u65E0\u6CD5\u5904\u7406",
43690
+ missingDetreeColumnId: "\u6A21\u578B\u5F02\u5E38\u7F3A\u5C11detreeColumnId\u6216\u8005dataItemName"
43691
+ },
43692
+ uiAction: {
43693
+ noEntityOrBehavior: "\u672A\u914D\u7F6E\u5B9E\u4F53\u6216\u5B9E\u4F53\u884C\u4E3A",
43694
+ noConfiguredopenView: "\u672A\u914D\u7F6E\u6253\u5F00\u89C6\u56FE",
43695
+ frontProcessingModes: "\u672A\u652F\u6301\u7684\u524D\u53F0\u5904\u7406\u6A21\u5F0F[{frontProcessType}]",
43696
+ missingConfigurationScriptCode: "\u81EA\u5B9A\u4E49\u7C7B\u578B\u7F3A\u5C11\u914D\u7F6E\u811A\u672C\u4EE3\u7801",
43697
+ dataPrimaryKey: "\u6CA1\u6709\u627E\u5230\u6570\u636E\u4E3B\u952E",
43698
+ printFailure: "\u6253\u5370\u5931\u8D25",
43699
+ physicalPrint: "\u6CA1\u6709\u627E\u5230\u5B9E\u4F53\u6253\u5370\u9879",
43700
+ exportRequestFailed: "\u5BFC\u51FA\u8BF7\u6C42\u5931\u8D25",
43701
+ noEntityExportsFound: "\u6CA1\u6709\u627E\u5230\u5B9E\u4F53\u5BFC\u51FA\u9879",
43702
+ lackNativeEvent: "\u7F3A\u5C11\u539F\u751FJS\u4E8B\u4EF6\u5BF9\u8C61",
43703
+ logout: "\u9000\u51FA\u767B\u5F55",
43704
+ wantLogout: "\u60A8\u786E\u5B9A\u8981\u9000\u51FA\u767B\u5F55\u5417\uFF1F",
43705
+ operationConfirmation: "\u64CD\u4F5C\u786E\u8BA4",
43706
+ viewParameterModalOption: "\u89C6\u56FE\u53C2\u6570modalOption \u89E3\u6790\u5931\u8D25\uFF1A{error}",
43707
+ withdrawalConfirmed: "\u662F\u5426\u786E\u8BA4\u6267\u884C\u64A4\u56DE\u64CD\u4F5C\uFF1F",
43708
+ noFoundBehaviorModel: "\u6CA1\u627E\u5230{actionId}\u7684\u754C\u9762\u884C\u4E3A\u6A21\u578B"
43709
+ },
43710
+ uiLogic: {
43711
+ interfaceConnectionConditional: "\u754C\u9762\u8FDE\u63A5\u6761\u4EF6\u903B\u8F91\u7EC4\u672A\u914D\u7F6E\u903B\u8F91\u9879",
43712
+ 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",
43713
+ currentConditionValue: "\u5F53\u524D\u6761\u4EF6\u503C\u7C7B\u578B\u4E3A[\u6570\u636E\u5BF9\u8C61\u5C5E\u6027],\u7F3A\u5C11\u914D\u7F6E\u6761\u4EF6\u503C",
43714
+ sourceDataObjectAttribute: "\u5F53\u524D\u6761\u4EF6\u503C\u7C7B\u578B\u4E3A[\u6E90\u6570\u636E\u5BF9\u8C61\u5C5E\u6027],\u7F3A\u5C11\u914D\u7F6E\u6761\u4EF6\u503C",
43715
+ currentTime: "\u6682\u672A\u652F\u6301\u6761\u4EF6\u503C\u7C7B\u578B\u4E3A[\u5F53\u524D\u65F6\u95F4]",
43716
+ 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",
43717
+ asynchronousTermination: "\u672A\u652F\u6301\u7684\u903B\u8F91\u8FDE\u63A5\u7C7B\u578B: \u5F02\u6B65\u7ED3\u675F",
43718
+ asynchronousRejection: "\u672A\u652F\u6301\u7684\u903B\u8F91\u8FDE\u63A5\u7C7B\u578B: \u5F02\u6B65\u62D2\u7EDD",
43719
+ exceptionHandling: "\u672A\u652F\u6301\u7684\u903B\u8F91\u8FDE\u63A5\u7C7B\u578B: \u5F02\u5E38\u5904\u7406",
43720
+ logicalLinkTypes: "\u672A\u652F\u6301\u7684\u903B\u8F91\u8FDE\u63A5\u7C7B\u578B:{linkMode}",
43721
+ missingTargetParameter: "\u7F3A\u5C11\u76EE\u6807\u53C2\u6570\u5BF9\u8C61\u6216\u8005\u6E90\u53C2\u6570\u5BF9\u8C61\u914D\u7F6E",
43722
+ appendedArray: "\u754C\u9762\u903B\u8F91\u8282\u70B9\uFF08\u9644\u52A0\u5230\u6570\u7EC4\uFF09\uFF1A{id}-\u9644\u52A0\u53C2\u6570\uFF1A",
43723
+ bindingParameters: "\u754C\u9762\u903B\u8F91\u8282\u70B9\uFF08\u7ED1\u5B9A\u53C2\u6570\uFF09\uFF1A{id}-\u53C2\u6570\u540D\u79F0\uFF1A{dstDEUILogicParamId}-\u503C\uFF1A",
43724
+ copyParameter: "\u754C\u9762\u903B\u8F91\u8282\u70B9\uFF08\u62F7\u8D1D\u53C2\u6570\uFF09\uFF1A{id}-\u53C2\u6570\u540D\u79F0\uFF1A{dstDEUILogicParamId}-\u503C\uFF1A",
43725
+ missingfilter: "\u7F3A\u5C11\u914D\u7F6E\u8FC7\u6EE4\u53C2\u6570",
43726
+ 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",
43727
+ 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",
43728
+ noConfiguredInterfaceBehavior: "\u672A\u914D\u7F6E\u754C\u9762\u884C\u4E3A",
43729
+ 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}",
43730
+ logicalNodeOperation: "\u903B\u8F91\u8282\u70B9{name}\u64CD\u4F5C\u53C2\u6570\u503C:",
43731
+ unsupportedEndNode: "\u6682\u672A\u652F\u6301\u7684\u7ED3\u675F\u8282\u70B9\u8FD4\u56DE\u503C\u7C7B\u578B: {returnType}",
43732
+ 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",
43733
+ noEntityConfigured: "\u6CA1\u6709\u914D\u7F6E\u5B9E\u4F53",
43734
+ noEntityLogicConfigured: "\u6CA1\u6709\u914D\u7F6E\u5B9E\u4F53\u903B\u8F91",
43735
+ noIncomingLogic: "\u6CA1\u6709\u914D\u7F6E\u4F20\u5165\u903B\u8F91\u53C2\u6570",
43736
+ passedParameter: "\u6CA1\u6709\u627E\u5230\u4F20\u5165\u53C2\u6570{dstDEUILogicParamId}",
43737
+ 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",
43738
+ missingMessageTypeConfiguration: "\u7F3A\u5C11\u6D88\u606F\u7C7B\u578B\u7684\u914D\u7F6E",
43739
+ missingButtonTypeConfiguration: "\u7F3A\u5C11\u6309\u94AE\u7C7B\u578B\u7684\u914D\u7F6E",
43740
+ 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}",
43741
+ message: "\u6D88\u606F",
43742
+ yes: "\u662F",
43743
+ no: "\u5426",
43744
+ determine: "\u786E\u5B9A",
43745
+ cancel: "\u53D6\u6D88",
43746
+ noSupportItem: "{name}\u6682\u672A\u652F\u6301",
43747
+ interfaceLogicNodeFrontendPlugin: "\u754C\u9762\u903B\u8F91\u8282\u70B9\uFF08\u524D\u7AEF\u63D2\u4EF6\uFF09\uFF1A{id}-\u63D2\u4EF6\u6807\u8BC6\uFF1A{sysPFPluginId}",
43748
+ 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",
43749
+ noTargetParameter: "\u6CA1\u6709\u76EE\u6807\u53C2\u6570\u5BF9\u8C61id",
43750
+ targetParameter: "\u7ED9\u76EE\u6807\u53C2\u6570\u5C5E\u6027{dstFieldName}\u8D4B\u503C\u62A5\u9519\uFF0C\u76EE\u6807\u53C2\u6570\uFF1A",
43751
+ interfaceLogicNodeDirectCode: "\u754C\u9762\u903B\u8F91\u8282\u70B9\uFF08\u76F4\u63A5\u4EE3\u7801\uFF09\uFF1A{id}-\u76F4\u63A5\u4EE3\u7801\uFF1A",
43752
+ interfaceLogicNodeRebuildParameter: "\u754C\u9762\u903B\u8F91\u8282\u70B9\uFF08\u91CD\u65B0\u5EFA\u7ACB\u53C2\u6570\uFF09\uFF1A{id}-\u91CD\u5EFA\u53C2\u6570\uFF1A{dstDEUILogicParamId}",
43753
+ interfaceLogicNodeResetParameter: "\u754C\u9762\u903B\u8F91\u8282\u70B9\uFF08\u91CD\u7F6E\u53C2\u6570\uFF09\uFF1A{id}-\u91CD\u7F6E\u53C2\u6570\uFF1A{dstDEUILogicParamId}",
43754
+ 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",
43755
+ interfaceLogicNodeStartupNode: "\u754C\u9762\u903B\u8F91\u8282\u70B9\uFF08\u542F\u52A8\u8282\u70B9\uFF09\uFF1A{id}",
43756
+ interfaceLogicNodeThrowingExceptions: "\u754C\u9762\u903B\u8F91\u8282\u70B9\uFF08\u629B\u51FA\u5F02\u5E38\uFF09\uFF1A{id}-\u9519\u8BEF\u4FE1\u606F\uFF1A{errorInfo}",
43757
+ noConfiguredTriggerObject: "\u6CA1\u6709\u914D\u7F6E\u89E6\u53D1\u5BF9\u8C61",
43758
+ noConfiguredEvent: "\u6CA1\u6709\u914D\u7F6E\u4E8B\u4EF6\u540D\u79F0\u53C2\u6570",
43759
+ noConfiguredEventParameters: "\u6CA1\u6709\u914D\u7F6E\u4E8B\u4EF6\u53C2\u6570",
43760
+ noFoundTriggerObject: "\u6CA1\u6709\u627E\u5230\u89E6\u53D1\u5BF9\u8C61{fireCtrlId}",
43761
+ noFoundEventParameterObject: "\u6CA1\u6709\u627E\u5230\u4E8B\u4EF6\u53C2\u6570\u5BF9\u8C61{eventParamId}",
43762
+ 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",
43763
+ noConfiguredInterfaceObject: "\u6CA1\u6709\u914D\u7F6E\u754C\u9762\u5BF9\u8C61",
43764
+ noConfiguredOperatingParameters: "\u6CA1\u6709\u914D\u7F6E\u64CD\u4F5C\u53C2\u6570",
43765
+ noConfiguredCallMethod: "\u6CA1\u6709\u914D\u7F6E\u8C03\u7528\u65B9\u6CD5",
43766
+ noFoundOperationParameter: "\u6CA1\u6709\u627E\u5230\u64CD\u4F5C\u53C2\u6570{invokeParamId}",
43767
+ noFoundInterfaceObject: "\u6CA1\u6709\u627E\u5230\u754C\u9762\u5BF9\u8C61{invokeCtrlId}",
43768
+ noFoundInvokeMethod: "\u6CA1\u6709\u627E\u5230\u8C03\u7528\u65B9\u6CD5{invokeMethod}",
43769
+ 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",
43770
+ viewLogicInitializationParameter: "\u89C6\u56FE\u903B\u8F91\u521D\u59CB\u5316\u53C2\u6570\uFF0C\u672A\u627E\u5230{codeName}\u6307\u5B9A\u90E8\u4EF6\u5BF9\u8C61",
43771
+ calculateInterfaceLogicParameters: "\u8BA1\u7B97\u754C\u9762\u903B\u8F91\u53C2\u6570\uFF0C\u6807\u8BC6\uFF1A{tag}",
43772
+ restablishInterfaceLogic: "\u91CD\u65B0\u5EFA\u7ACB\u754C\u9762\u903B\u8F91\u53C2\u6570\uFF0C\u6807\u8BC6\uFF1A{tag}",
43773
+ interfaceLogic: "\u627E\u4E0D\u5230\u5B9E\u4F53{appDataEntityId}\u7684\u754C\u9762\u903B\u8F91{deUILogicId}",
43774
+ startExecutingInterfaceLogic: "\u5F00\u59CB\u6267\u884C\u754C\u9762\u903B\u8F91\uFF0C\u5B9E\u4F53\uFF1A{appDataEntityId}-\u903B\u8F91\u540D\u79F0\uFF1A{name}",
43775
+ endExecutionInterfaceLogic: "\u7ED3\u675F\u6267\u884C\u754C\u9762\u903B\u8F91\uFF0C\u5B9E\u4F53\uFF1A{appDataEntityId}-\u903B\u8F91\u540D\u79F0\uFF1A{name}",
43776
+ noLogicalNodesConfigured: "\u754C\u9762\u903B\u8F91\u6CA1\u6709\u914D\u7F6E\u903B\u8F91\u8282\u70B9"
43777
+ },
43778
+ utils: {
43779
+ anime: {
43780
+ noExistEndpointElement: "\u7EC8\u70B9\u5143\u7D20\u4E0D\u5B58\u5728",
43781
+ noExistAnimationElement: "\u52A8\u753B\u5143\u7D20\u4E0D\u5B58\u5728",
43782
+ noClone: "\u4E0D\u80FD\u514B\u9686\u7A7A\u6216\u672A\u5B9A\u4E49\u7684\u5143\u7D20"
43783
+ },
43784
+ errorHandler: {
43785
+ noPermissionless: "\u6CA1\u6709\u6CE8\u518C\u65E0\u6743\u9650\u9519\u8BEF\u5904\u7406\u5668",
43786
+ noProcessor: "\u6CA1\u6709\u627E\u5230\u80FD\u5904\u7406\u8BE5\u9519\u8BEF\u7684\u5904\u7406\u5668"
43787
+ },
43788
+ fileUtil: {
43789
+ fileUploadFailed: "\u6587\u4EF6\u4E0A\u4F20\u5931\u8D25"
43790
+ },
43791
+ handlebars: {
43792
+ noInitHandlebars: "handlebars\u672A\u521D\u59CB\u5316"
43793
+ },
43794
+ modal: {
43795
+ externalClosureCapability: "\u5916\u90E8\u5173\u95ED\u80FD\u529B\u672A\u6CE8\u518C",
43796
+ shouldDismissResult: "shouldDismiss\u7ED3\u679C\u4E3Afalse,\u5173\u95ED\u4E2D\u65AD"
43797
+ },
43798
+ openRedirectView: {
43799
+ parseSrfnavctxParameter: "\u91CD\u5B9A\u5411[{urlStr}] \u4E2D srfnavctx \u53C2\u6570\u89E3\u6790\u5931\u8D25",
43800
+ missingEntityName: "\u91CD\u5B9A\u5411\u53C2\u6570\u7F3A\u5C11\u5B9E\u4F53\u540D\u79F0",
43801
+ noFoundSpecifiedEntity: "\u672A\u627E\u5230\u6307\u5B9A\u5B9E\u4F53\u7684codeName: {deName}",
43802
+ unsupportedLinkUrl: "\u672A\u652F\u6301\u7684linkUrl\u683C\u5F0F:{linkUrl}",
43803
+ noConfiguredActualReference: "\u672A\u914D\u7F6E\u5B9E\u9645\u5F15\u7528\u89C6\u56FE",
43804
+ redirectingViewReferences: "\u91CD\u5B9A\u5411\u89C6\u56FE\u5F15\u7528\u6709\uFF1A",
43805
+ redirectionIdentifier: "\u672A\u627E\u5230\u91CD\u5B9A\u5411\u6807\u8BC6[{rdTag}]\u6216[{deRdTag}]\u6216\u5DE5\u4F5C\u6D41[{wfRdTag}]\u5BF9\u5E94\u89C6\u56FE",
43806
+ noMatchActualReferenceView: "\u6807\u8BC6[{rdTag}]\u672A\u5339\u914D\u5230\u5B9E\u9645\u5F15\u7528\u89C6\u56FE",
43807
+ redirectionView: "\u91CD\u5B9A\u5411\u89C6\u56FE[{name}]\u81EA\u5B9A\u4E49\u7C7B\u522B\u5C5E\u6027[{typeFieldId}]\u503C\u4E3A\u7A7A"
43808
+ },
43809
+ script: {
43810
+ errorReportingScript: "\u62A5\u9519\u811A\u672C"
43811
+ },
43812
+ shortCut: {
43813
+ invalidIndexNewIndex: "\u65E0\u6548\u7684\u7D22\u5F15 newIndex: {newIndex}, oldIndex: {oldIndex}, \u5F53\u524D\u6570\u7EC4\u957F\u5EA6\u4E3A {length}"
43814
+ },
43815
+ uiDomain: {
43816
+ transactionOpen: "\u4E8B\u52A1\u5DF2\u7ECF\u5F00\u542F, \u5355\u4E2A\u754C\u9762\u57DF\u53EA\u80FD\u5F00\u542F\u4E00\u4E2A\u4E8B\u52A1",
43817
+ currentTransaction: "\u5F53\u524D\u4E8B\u52A1\u672A\u63D0\u4EA4\uFF0C\u4E0D\u53EF\u4EE5\u76F4\u63A5\u5173\u95ED\u4E8B\u52A1"
43818
+ },
43819
+ uiDomainManager: {
43820
+ invalidInterfaceDomain: "\u65E0\u6548\u7684\u754C\u9762\u57DF\u6807\u8BC6[{id}]"
43821
+ },
43822
+ verify: {
43823
+ contentConform: "\u5185\u5BB9\u5FC5\u987B\u7B26\u5408\u503C\u89C4\u5219",
43824
+ scopeRules: "\u5185\u5BB9\u957F\u5EA6\u5FC5\u987B\u7B26\u5408\u8303\u56F4\u89C4\u5219",
43825
+ valueNull: "\u503C\u4E3A\u7A7A",
43826
+ regularRules: "\u503C\u5FC5\u987B\u7B26\u5408\u6B63\u5219\u89C4\u5219",
43827
+ rangeRules: "\u503C\u5FC5\u987B\u7B26\u5408\u503C\u8303\u56F4\u89C4\u5219",
43828
+ scriptRules: "\u503C\u5FC5\u987B\u7B26\u5408\u811A\u672C\u89C4\u5219",
43829
+ emptyLogicGroups: "\u53D1\u73B0\u7A7A\u903B\u8F91\u7EC4\uFF0C\u903B\u8F91\u65E0\u6CD5\u6B63\u5E38\u6267\u884C\uFF01",
43830
+ unsupportedLogicTypes: "\u672A\u652F\u6301\u7684\u903B\u8F91\u7C7B\u578B{logicType}",
43831
+ emptyLogicGroupsProperly: "\u53D1\u73B0\u7A7A\u903B\u8F91\u7EC4\uFF0C\u903B\u8F91\u65E0\u6CD5\u6B63\u5E38\u6267\u884C\uFF01",
43832
+ valueOperations: "\u503C\u64CD\u4F5C\uFF1A{op}\uFF0C\u6682\u672A\u652F\u6301",
43833
+ noCompared: "{value} \u548C {value2} \u65E0\u6CD5\u6BD4\u8F83\u5927\u5C0F",
43834
+ conditionalValues: "\u8303\u56F4\u6BD4\u8F83\u7684\u6761\u4EF6\u503C\u4E0D\u5B58\u6216\u8005\u4E0D\u662F\u5B57\u7B26\u4E32"
43835
+ },
43836
+ firstregister: "\u8BF7\u5148\u6CE8\u518C\u6A21\u578B\u52A0\u8F7D\u9002\u914D\u5668"
43837
+ }
43838
+ }
43839
+ };
42684
43840
  export {
42685
43841
  AC_ITEM_PROVIDER_PREFIX,
42686
43842
  APPMENUITEM_PROVIDER_PREFIX,
@@ -42949,6 +44105,7 @@ export {
42949
44105
  createImportSchema,
42950
44106
  deleteImportSchema,
42951
44107
  downloadImportTemplate,
44108
+ en,
42952
44109
  execDELogic,
42953
44110
  execDELogicAction,
42954
44111
  execDELogicById,
@@ -43064,6 +44221,7 @@ export {
43064
44221
  validateFilterNodes,
43065
44222
  verifyDeRules,
43066
44223
  verifyFormGroupLogic,
43067
- verifyPanelGroupLogic
44224
+ verifyPanelGroupLogic,
44225
+ zhCn
43068
44226
  };
43069
44227
  //! 只有动态走这个逻辑,全代码确保所有视图都设置了viewConfig