syntec3-0-ui-components-test 1.0.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 (99) hide show
  1. package/README.md +5 -0
  2. package/dist/S3_0UC_main.csv +4 -0
  3. package/dist/S3_0UC_sub.csv +2 -0
  4. package/dist/globalVariableS3_0UC.json +1 -0
  5. package/dist/style.css +1 -0
  6. package/dist/syntec3-0-ui-components.es.js +19518 -0
  7. package/dist/syntec3-0-ui-components.es.js.map +1 -0
  8. package/dist/syntec3-0-ui-components.umd.js +23 -0
  9. package/dist/syntec3-0-ui-components.umd.js.map +1 -0
  10. package/dist/vite.svg +1 -0
  11. package/dist/web.config +17 -0
  12. package/package.json +137 -0
  13. package/src/App.vue +31 -0
  14. package/src/assets/fonts/genYoGothicTW-normal.js +7 -0
  15. package/src/assets/image/defaultImage.png +0 -0
  16. package/src/assets/vue.svg +1 -0
  17. package/src/components/Layout/modules/fullPageGlobal.vue +113 -0
  18. package/src/components/Layout/modules/viewFile/config.js +65 -0
  19. package/src/components/Layout/modules/viewFile/createView.vue +1000 -0
  20. package/src/components/Layout/modules/viewFile/filterCriteria.vue +816 -0
  21. package/src/components/Layout/modules/viewFile/viewList.vue +291 -0
  22. package/src/components/Layout/modules/viewFile/viewManageTool.js +271 -0
  23. package/src/components/Layout/modules/viewFile/viewRecord.vue +472 -0
  24. package/src/components/Layout/modules/viewFile/viewTabs.vue +542 -0
  25. package/src/components/Layout/tools/GlobalDialog.vue +115 -0
  26. package/src/components/Pagination.vue +139 -0
  27. package/src/components/columnConfigNext.vue +273 -0
  28. package/src/components/customFilter/customFilter.vue +492 -0
  29. package/src/components/customFilter/filterCriteria.vue +769 -0
  30. package/src/components/customTable/components/headerOperation/index.vue +136 -0
  31. package/src/components/customTable/components/headerTabs/index.vue +171 -0
  32. package/src/components/customTable/components/tableContent/index.vue +440 -0
  33. package/src/components/customTable/index.vue +305 -0
  34. package/src/components/dialog.vue +85 -0
  35. package/src/components/pageContent.vue +48 -0
  36. package/src/components/popover.vue +402 -0
  37. package/src/configFiles/apiFile/baseApiList.json +11 -0
  38. package/src/configFiles/apiFile/coreApiList.json +24 -0
  39. package/src/configFiles/apiFile/mesApiList.json +4 -0
  40. package/src/configFiles/apiFile/mmsApiList.json +3 -0
  41. package/src/configFiles/errorCode.json +291 -0
  42. package/src/configFiles/version.js +2 -0
  43. package/src/i18n/lang/en-us.json +2060 -0
  44. package/src/i18n/lang/errorCodeTranslate.mjs +847 -0
  45. package/src/i18n/lang/zh-cn.json +2062 -0
  46. package/src/i18n/lang/zh-tw.json +2059 -0
  47. package/src/index.js +115 -0
  48. package/src/main.js +51 -0
  49. package/src/plugins/excel.js +88 -0
  50. package/src/router/index.js +41 -0
  51. package/src/scriptFiles/apiConfig/baseApis.js +10 -0
  52. package/src/scriptFiles/apiConfig/mesApis.js +10 -0
  53. package/src/scriptFiles/apiConfig/mmsApis.js +10 -0
  54. package/src/scriptFiles/apiConfig/privateCloudCoreApis.js +13 -0
  55. package/src/scriptFiles/apiConfig/serviceRoute.js +23 -0
  56. package/src/scriptFiles/apis/baseApiFunction.js +63 -0
  57. package/src/scriptFiles/apis/mesApiFunction.js +15 -0
  58. package/src/scriptFiles/apis/mmsApiFunction.js +9 -0
  59. package/src/scriptFiles/apis/privateCloudCoreApiFunction.js +101 -0
  60. package/src/scriptFiles/backendApiFunction.js +11 -0
  61. package/src/scriptFiles/checkApiErrorMechanism.js +137 -0
  62. package/src/scriptFiles/common/objectDataProcessing.js +65 -0
  63. package/src/scss/base/commom.scss +1068 -0
  64. package/src/scss/base/dialog.scss +45 -0
  65. package/src/scss/base/index.scss +3 -0
  66. package/src/scss/base/table.scss +28 -0
  67. package/src/store/index.js +25 -0
  68. package/src/store/module/langStore.js +116 -0
  69. package/src/style.css +52 -0
  70. package/src/utils/excel.js +86 -0
  71. package/src/utils/formula.js +69 -0
  72. package/src/utils/https.js +13 -0
  73. package/src/utils/i18n.js +42 -0
  74. package/src/utils/shiftSelect.js +164 -0
  75. package/src/utils/summation.js +77 -0
  76. package/src/utils/tableWidth.js +29 -0
  77. package/src/utils/toolFun.js +93 -0
  78. package/src/views/productionWorkOrder/components/columnConfig.vue +242 -0
  79. package/src/views/productionWorkOrder/components/docCustomFieldForm.vue +739 -0
  80. package/src/views/productionWorkOrder/components/filePreview.vue +148 -0
  81. package/src/views/productionWorkOrder/components/querySearch.vue +363 -0
  82. package/src/views/productionWorkOrder/configFiles/excelImportErrorCode.json +94 -0
  83. package/src/views/productionWorkOrder/configFiles/pdfDefaultConfig.js +933 -0
  84. package/src/views/productionWorkOrder/configFiles/planMakingScript.js +600 -0
  85. package/src/views/productionWorkOrder/configFiles/productionRelatedScript.js +368 -0
  86. package/src/views/productionWorkOrder/configFiles/rulse.js +23 -0
  87. package/src/views/productionWorkOrder/configFiles/status.js +50 -0
  88. package/src/views/productionWorkOrder/index.vue +2174 -0
  89. package/src/views/productionWorkOrder/productionFlowLabel/component/addCirculationLabel.vue +394 -0
  90. package/src/views/productionWorkOrder/productionFlowLabel/component/circulationLabelTable.vue +124 -0
  91. package/src/views/productionWorkOrder/productionFlowLabel/component/materialPartFilePreview.vue +167 -0
  92. package/src/views/productionWorkOrder/productionFlowLabel/component/workOrderInformation.vue +28 -0
  93. package/src/views/productionWorkOrder/productionFlowLabel/index.vue +604 -0
  94. package/src/views/production_work_order/components/priorityTooltip.vue +53 -0
  95. package/src/views/production_work_order/index.vue +1307 -0
  96. package/src/views/review_record/components/materialInfo.vue +50 -0
  97. package/src/views/review_record/components/rootCause.vue +42 -0
  98. package/src/views/review_record/components/workDetail.vue +115 -0
  99. package/src/views/review_record/index.vue +884 -0
@@ -0,0 +1,2060 @@
1
+ {
2
+ "setting": "Settings",
3
+ "personalInfo": "Personal Info",
4
+ "language": "Language",
5
+ "homepage": "Homepage",
6
+ "all": "all",
7
+ "Notyetstarted": "Not yet started",
8
+ "Alreadystarted": "Already started",
9
+ "PauseProcessing ": "Pause processin",
10
+ "Latecommencement": "Late commencement of work",
11
+ "workReport": "Work Report",
12
+
13
+ "productionManage": "Production Management",
14
+ "import": "Import",
15
+ "export": "Data Export",
16
+ "submit": "submit",
17
+ "saleOrder": "Sale Order",
18
+ "productionPlan": "Plan Development",
19
+ "assemblyWorkOrder": "Assembly work order",
20
+ "systemConfiguration": "System Configuration",
21
+ "hello": "Hello",
22
+ "user": "User",
23
+ "workOrder": "Work order reporting",
24
+ "task": "Task",
25
+ "workReporting": "Work Reporting",
26
+ "department": "Department Management",
27
+ "actory": "Actory",
28
+ "basicData": "Basic Data",
29
+ "productDefinition": "Material Master",
30
+ "password": "Password",
31
+ "bom": "BOM",
32
+ "unit": "Unit of measurement",
33
+ "defectiveItems": "Setting of adverse causes",
34
+ "productionProcesses": "Production Processes",
35
+ "processRoute": "Product Process",
36
+ "productRouteManagement": "Process route management",
37
+ "procesManagement": "Process Management",
38
+ "logout": "Logout",
39
+ "log": "Log On",
40
+ "perRow": "Per Row",
41
+ "items": "Items",
42
+ "fullName": "Full Name",
43
+ "state": "State",
44
+ "accountNumber": "Account Number",
45
+ "query": "Query",
46
+ "identity": "Identity",
47
+ "role": "Role",
48
+ "newUsers": "New Users",
49
+ "actions": "Action",
50
+ "index": "Index",
51
+ "mobilePhone": "Mobile Phone",
52
+ "departmentName": "Department Name",
53
+ "position": "Position",
54
+ "edit": "Edit",
55
+ "permissionConfiguration": "Permission Configuration",
56
+ "delete": "Delete",
57
+ "workShift": "Shift",
58
+ "roleManagement": "Role Management",
59
+ "roleName": "Role Name",
60
+ "createStaff": "Create Staff",
61
+ "createTime": "Creation Time",
62
+ "roleRemark": "Role Description",
63
+ "addRole": "Add Role",
64
+ "editRole": "Edit Role",
65
+ "rolePersonSetting": "Role Personnel Setting",
66
+ "roleInfo": "Role Information",
67
+ "addStaffList": "Add Staff",
68
+ "employee": "Employee",
69
+ "multiple": "Multiple",
70
+ "staffList": "Staff List",
71
+ "empNumber": "Employee ID",
72
+ "addShift": "Add Shift",
73
+ "breakTimeTable": "Break time table",
74
+ "shiftMode": "Shift mode name",
75
+ "defaultShift": "Default Shift",
76
+ "shiftItemName": "Shift Name",
77
+ "shiftItemTime": "Shift Time",
78
+ "editAndDelete": "Edit and Delete",
79
+ "nextDay": "Next Day",
80
+ "addBreakTime": "Add break time",
81
+ "editBreakTime": "Edit break time",
82
+ "shift": "Shift",
83
+ "timePeriod": "Time Period",
84
+ "breakStart": "Break Start",
85
+ "breakEnd": "Break End",
86
+ "description": "Description",
87
+ "remarkLengthLimit": "String length cannot exceed 50 characters",
88
+ "timeInterval": "Time Interval",
89
+ "type": "Type",
90
+ "break": "Break",
91
+ "editShift": "Edit Shift",
92
+ "selectShift": "Please select shift",
93
+ "editshiftItemTime": "Edit shift time",
94
+ "shiftStartTime": "Start Name",
95
+ "shiftEndTime": "End Name",
96
+ "oneShift": "one-shift",
97
+ "twoShift": "two-shift",
98
+ "threeShift": "three-shift",
99
+ "fourShift": "four-shift",
100
+ "systemSnformation": "System Information",
101
+ "processManagement": "Process Management",
102
+ "WorkReportRecords": "Work report records",
103
+ "userManage": "User Manage",
104
+ "userManages": "User Manage(super management)",
105
+ "save": "Save",
106
+ "cancellation": "Cancellation",
107
+ "addDepartment": "New Department",
108
+ "editDepartment": "Editing Department",
109
+ "isInUse": "Enable or not",
110
+ "disable": "Deactivate",
111
+ "finished": "Completed",
112
+ "unfinished": "Incomplete",
113
+ "orderNumber": "Order Number",
114
+ "deliveryDate": "Delivery Date",
115
+ "contractNumber": "Contract Number",
116
+ "customerName": "Customer Name",
117
+ "woCount": "Number of work orders",
118
+ "addSuccess": "Add Success",
119
+ "editSuccess": "Edit Success",
120
+ "woNumber": "Work order number",
121
+ "productPartNumber": "Material Number",
122
+ "productName": "Material Name",
123
+ "submitError": "Submit Error",
124
+ "addSyShiftFail": "Failed to add shift system",
125
+ "addShiftFail": "There are shifts with failed addition",
126
+ "editShiftFail": "There are shifts with failed editing",
127
+ "craftPath": "Process Route",
128
+ "SNnotEmpty": "Sub work order number cannot be empty",
129
+ "canNotBeEmpty": "Material number, process path, process cannot be empty",
130
+ "inputError": "Production work order number input error",
131
+ "clearAll": "Clear All",
132
+ "standardParam": "Standard Parameters",
133
+ "processFile": "Process File",
134
+ "mainFile": "Main Program",
135
+ "subFile": "Sub Program",
136
+ "fileName": "File Name",
137
+ "fileType": "File Type",
138
+ "preview": "Preview",
139
+ "typeNotSupport": "Preview does not support this format",
140
+ "dataPathError": "File path error",
141
+ "otherFile": "Other Files",
142
+ "synchronization": "Serial Synchronization",
143
+ "customField": "Custom Field",
144
+ "product": "Product",
145
+ "productionOrderNumber": "MO Number",
146
+ "stationNumber": "Station sub work order number",
147
+ "stringSearch": "String Search",
148
+ "partNumber": "Material Number",
149
+ "productionProcess": "Sub Process",
150
+ "routeProcessID": "Route Process ID",
151
+ "equipmentStation": "Equipment/Station",
152
+ "standardTime": "Standard lead time",
153
+ "sizeBig": "Big",
154
+ "sizeMedium": "Medium",
155
+ "sizeSmall": "Small",
156
+ "customerNameDigiwin": "Customer Name",
157
+ "orderExpectedDue": "Sales order delivery date",
158
+ "requiredThroughput": "Number of pieces required",
159
+ "startDate": "Expected start time",
160
+ "finishDate": "Expected due time",
161
+ "requiredField": " Cannot be empty",
162
+ "processName": "Process Name",
163
+ "processNumber": "Process Number",
164
+ "workOrderSerialNumber": "Sub MO",
165
+ "cantBeEarly": "The expected start time cannot be later than the expected completion time",
166
+ "cantAfEarly": "The expected completion time cannot be earlier than the expected start time",
167
+ "sortSetting": "Sort Setting",
168
+ "ascending": "Ascending",
169
+ "descending": "Descending",
170
+ "startTime": "Start Time",
171
+ "total": "Total",
172
+ "actualEmp": "Actual executive staff",
173
+ "processThroughput": "Production Quantity",
174
+ "quantityOfGoodProducts": "Number of good products",
175
+ "quantityOfDefectiveProducts": "Number of defective products",
176
+ "moreInfo": "More Information",
177
+ "adverseCausesRecord": "Record of adverse causes",
178
+ "badCauseNum": "Number of adverse causes",
179
+ "myWorkOrder": "My work order",
180
+ "manualReport": "Manual Reporting",
181
+ "planDate": "Scheduled Time",
182
+ "remainingRequired": "Number of remaining required workpieces",
183
+ "totalRequired": "Total number of required workpieces",
184
+ "workStart": "Start",
185
+ "pause": "Pause",
186
+ "workEnd": "To be finished",
187
+ "designate": "Assign",
188
+ "jobSpecification": "Job Specification",
189
+ "errorAlert": "Error",
190
+ "loadMore": "Load More",
191
+ "action": "Action",
192
+ "add": "Add",
193
+ "confirm": "Confirm",
194
+ "haveSpace": "Cannot have spaces at the beginning and end",
195
+ "modifiedSuccessfully_api": "Modified Successfully",
196
+ "modificationFailed_api": "Modification Failed",
197
+ "search": "Search",
198
+ "badCause": "Adverse Causes",
199
+ "remark": "Notes",
200
+ "submitFail": "Submit Fail",
201
+ "displayDeactivatedItems": "Display deactivated items",
202
+ "enableNot": "Enable or not",
203
+ "code": "Code",
204
+ "nameCause": "Name of defect cause",
205
+ "addReasonsDefects": "Newly added reasons for defects",
206
+ "editReasonsDefects": "Edit reasons for defects",
207
+ "enable": "Enable",
208
+ "required": "Required",
209
+ "noSpaces": "Prohibit entering spaces",
210
+ "onlyEnglishNumbers": "Only English numbers can be entered",
211
+ "no20Characters": "Cannot exceed 20 characters",
212
+ "no50Characters": "Cannot exceed 50 characters",
213
+ "typeDuplicated": "Type cannot be duplicated",
214
+ "deactivate": "Disable Field Reminder",
215
+ "confirmDeactivation": "Confirm Deactivation",
216
+ "noData": "No Data",
217
+ "apiError": "Function connection failed! Your network status may be unstable. Please make sure the network connection is normal and try again. If you still can’t use it please contact your system administrator.",
218
+ "requestError": "Request Failure",
219
+ "requestSuccess": "Request Successful",
220
+ "codeRepeat": "Code cannot be repeated",
221
+ "PleaseSelect": "Please Select",
222
+ "startDateInterval": "Start time interval",
223
+ "closeCamera": "Close",
224
+ "excelExport": "Excel Export",
225
+ "exportExcelData": "Excel Export",
226
+ "columnConfiguration": "Column Configuration",
227
+ "goodProducts": "Number of Good Products",
228
+ "defectivesNum": "Number of defective products",
229
+ "cycleStartTime": "Processing start time",
230
+ "cycleEndTime": "Processing end time",
231
+ "endTime": "Completion Time",
232
+ "noDateRangeSelected": "No date range selected",
233
+ "number": "Number",
234
+ "cancel": "Cancel",
235
+ "noDispatch": "Not Dispatched",
236
+ "noStart": "Not Started",
237
+ "overdueStart": "Overdue Start",
238
+ "overdueEnd": "Overdue End",
239
+ "closed": "Closed",
240
+ "suspendProcess": "To be reprocessed",
241
+ "changing": "In the process of machine adjustment",
242
+ "handling": "Exception handling",
243
+ "pauseProcessing": "Pause Processing",
244
+ "staff": "Personnel",
245
+ "processOrderNumber": "Operation sub work order number",
246
+ "exceptStartDateInterval": "Expected Start Time Interval",
247
+ "cantLessZero": "The number of required workpieces should be greater than 0",
248
+ "goodProductTotalCount": "Total number of good products",
249
+ "badProductTotalCount": "Total number of defective products",
250
+ "needClickPlus": "Click\"+\"to add a new defect reason, otherwise it will not be added",
251
+ "selectBadCase": "Select the reason for the defective product ",
252
+ "inputBadProductCount": "Enter the number of defective products",
253
+ "selectDepartment": "Select Department",
254
+ "selectPerson": "Select Person",
255
+ "automatically": "Automatically generate work order number",
256
+ "maintain": "Maintain process path",
257
+ "numerical": "The value needs to be an integer greater than 0",
258
+ "fullNumber": "The value needs to be an integer",
259
+ "information": "No product name information",
260
+ "specifications": "No specification and model",
261
+ "failed": "Add Failed",
262
+ "containing": "Please check the required fields containing (*)",
263
+ "processEmpty": "Process is empty",
264
+ "startSuccess": "Successfully started",
265
+ "finishSuccess": "Completed successfully",
266
+ "pauseSuccess": "Paused successfully",
267
+ "designSuccess": "Assignment succeeded",
268
+ "circulation": "Work order circulation card",
269
+ "progress": "Process Progress",
270
+ "createWorkOrder": "Create work order",
271
+ "expectEmp": "Expected executive staff",
272
+ "requiredNotZero": "The number of required artifacts must not be zero or negative",
273
+ "assignPersonnel": "Assign Personnel",
274
+ "assignmentFailed": "Assignment Failed",
275
+ "pleaseCause": "Please select the cause of the defect",
276
+ "reportSuccess": "Report Success",
277
+ "reportFail": "Report Fail",
278
+ "negative": "Value must not be zero or negative",
279
+ "totalReportCount": "Total processing quantity",
280
+ "tooLess": "The production quantity should not be less than the number of defective products",
281
+ "toMoreThenZero": "The production quantity should be greater than 0",
282
+ "operator": "Operator",
283
+ "workOrderStatus": "Work order status",
284
+ "advancedSearch": "Advanced Search",
285
+ "more": "More",
286
+ "print": "Print",
287
+ "newPlan": "New Plan",
288
+ "dispatchWorkOrders": "Dispatch work orders",
289
+ "viewProgress": "View Progress",
290
+ "underExecution": "Under Execution",
291
+ "editSchedule": "Edit Schedule",
292
+ "deletedWorkOrder": "The relevant work order tasks will be deleted together. Are you sure to execute?",
293
+ "successfullyDeleted": "Successfully Deleted",
294
+ "dataImport": "Data Import",
295
+ "exportTemplate": "Excel Template",
296
+ "excelImport": "Excel Import",
297
+ "duplicateName": "Duplicate name of defect cause",
298
+ "importTheTemplate": "Defect Cause Template",
299
+ "importFail": "Import Fail",
300
+ "fileTypeErrorAndUploadXlsxOrXls": "Import file type must be (.xls) or (.xls) file.",
301
+ "excelImportNoData": "The excel has no data",
302
+ "excelSyntecTemplateError": "The EXCEL template is inconsistent with the system language family or does not comply with the standard EXCEL format",
303
+ "importDataCheck": "Import data check",
304
+ "totalNumber": "Total number of articles",
305
+ "success": "Success",
306
+ "fail": "Fail",
307
+ "exportResults": "Export of abnormal results",
308
+ "theFollowing": "The following are the detailed reasons for the import failure",
309
+ "payAttTo": "Pay attention to",
310
+ "failureReason": "Failure Reason",
311
+ "checkResult": "Check Result",
312
+ "InsItemIsHas": "Data already exists!",
313
+ "emptyStr": "Empty",
314
+ "do": "Do",
315
+ "notEN": "Not an English number",
316
+ "lengthExceeds": "Length Exceeds",
317
+ "notSpe": "Cannot contain spaces",
318
+ "repeat": "Repeat",
319
+ "inputIsCorrectButRequestFailed": "The input format is correct, but the import request failed",
320
+ "succImportedAll": "Successfully imported all items",
321
+ "previewSubmit": "Submit Data Preview",
322
+ "requestResults": "Request Results",
323
+ "transactions500": "Excel data transaction limit is 500",
324
+ "numberEmpty": "Order number is empty",
325
+ "numberMaximum50": "Order number and work order number can have a maximum of 50 digits",
326
+ "productEmpty": "The material number and process path cannot be empty",
327
+ "processDoesNotExist": "Process does not exist",
328
+ "processPathDoesNotExist": "The process path does not exist",
329
+ "partNumberDoesNotExist": "Material number does not exist",
330
+ "requiredNumber": "The required number of sub work orders in the process should be an integer greater than 0",
331
+ "workOrderNumber": "The required number of work orders should be an integer greater than 0",
332
+ "jobNumberDoesNotExist": "Job number does not exist",
333
+ "operationSubWorkOrder": "Operation sub work order",
334
+ "dispatchSuccessful": "Dispatch Successful",
335
+ "dispatchFailed": "Dispatch Failed",
336
+ "workOrderDelivery": "Please confirm that the status of the work order you have selected is Not Dispatched before proceeding with work order delivery",
337
+ "beenDispatched": "Please select a work order that has not been dispatched",
338
+ "planDevelopmentReport": "Plan development report",
339
+ "successfullyImported": "Successfully Imported",
340
+ "productManagement": "Product Management",
341
+ "enterProductPartNumber": "Please enter the material number",
342
+ "enterProductName": "Please enter the material name",
343
+ "productType": "Product Type",
344
+ "addProducts": "Add Products",
345
+ "importExcel": "Excel Import",
346
+ "excelTemplate": "Excel Template",
347
+ "productTypeManagement": "Product type management",
348
+ "deactivated": "Deactivate",
349
+ "spec": "Specification and model",
350
+ "unity": "Unit",
351
+ "productProperty": "Product Attributes",
352
+ "productStatus": "Product Status",
353
+ "supplierName": "Supplier Name",
354
+ "illustrate": "Illustrate",
355
+ "delProductConfirm": "Do you want to delete the product",
356
+ "productImportTemplate": "Product import template",
357
+ "selfMadePart": "Production",
358
+ "purchasePart": "Procurement",
359
+ "notHave": "None",
360
+ "pleaseEnter": "Enter",
361
+ "cannotBeEmpty": "Required items cannot be empty",
362
+ "cannotExceed20": "The length cannot exceed 20",
363
+ "cannotExceed50": "The length cannot exceed 50",
364
+ "cannotExceed80": "The length cannot exceed 80",
365
+ "cannotExceed100": "The length cannot exceed 100",
366
+ "cannotExceed200": "The length cannot exceed 200",
367
+ "successfullyEdited": "Successfully Edited",
368
+ "editingFailed": "Editing Failed",
369
+ "addingFailedProductDup": "Adding failed! The material number is duplicated.",
370
+ "editProduct": "Edit Product",
371
+ "endProduct": "Finish Product",
372
+ "semiFinishedProduct": "Semi-finished Products",
373
+ "rawMaterial": "Raw Material",
374
+ "cuttingTool": "Cutting Tool",
375
+ "mold": "Mold",
376
+ "productPropertyError": "Product attribute format error, optional: Production, Procurement, None",
377
+ "saveSuccess": "Successfully Saved",
378
+ "saveFail": "Save Failed",
379
+ "notExcel": "Non Excel files",
380
+ "emptyExcel": "Excel is empty",
381
+ "headerError": "Incorrect meter header",
382
+ "productTypeList": "Product type list",
383
+ "defaultCannotDel": "The preset cannot be deleted",
384
+ "typeName": "Type Name",
385
+ "dataDuplication": "Data Duplication",
386
+ "delProductTypeConfirm": "Delete product type?",
387
+ "productTypeInUse": "The product type has already been used",
388
+ "delSuccess": "Successfully Deleted",
389
+ "delFail": "Delete Failed",
390
+ "productImportNum": "Material number format error",
391
+ "productImportName": "Material name format error",
392
+ "productImportSpec": "Specification and model format error",
393
+ "productImportUnit": "Unit format error",
394
+ "productImportType": "Product type format error",
395
+ "productImportPro": "Supplier name format error",
396
+ "productImportA": "Product attribute format error, optional: Production, Procurement, None",
397
+ "productImportD": "Description format error",
398
+ "importSuccess": "Import Success",
399
+ "importProductFailRes": "The following are the product details that failed to import",
400
+ "addProcess": "Add a new process",
401
+ "selfControl": "Self-Control",
402
+ "outsource": "Outsource",
403
+ "delReminder": "Delete Reminder",
404
+ "processType": "Process Type",
405
+ "manufacturingType": "Manufacturing Type",
406
+ "processingProcess": "Processing Process",
407
+ "inspectionProcess": "Inspection Process",
408
+ "assemblyProcess": "Assembly Process",
409
+ "transportationProcess": "Transportation Process",
410
+ "confirmDeleProcess": "Confirm deletion of process",
411
+ "thisProcessDele": "This process has already been used and cannot be deleted!!",
412
+ "deleFailed": "Delete Failed!",
413
+ "processImportTemplate": "Process Import Template",
414
+ "processCodeNot": "Process number must not be duplicated",
415
+ "saveFailed": "Save Failed",
416
+ "requiredItemsNotEmpty": "Required items cannot be empty",
417
+ "procCodeFormatError": "Process number format error",
418
+ "procNameFormatError": "Incorrect format of process name",
419
+ "procTypeFormatError": "Process type format error",
420
+ "manufTypeFormatError": "Manufacturing type format error",
421
+ "importSuccessful": "Import was successful",
422
+ "nonExcelFiles": "Non Excel files",
423
+ "excelEmpty": "Excel is empty",
424
+ "inMeterHeader": "Incorrect meter header",
425
+ "enter": "Enter",
426
+ "processRouteName": "Process route name",
427
+ "addProcessRoute": "Add process route",
428
+ "editProcessRoute": "Edit process route",
429
+ "isDefaultRoute": "Default Route",
430
+ "processCount": "Number of processes",
431
+ "yes": "Yes",
432
+ "no": "No",
433
+ "delConfirmPR": "Confirm deletion of process path",
434
+ "processRouteTemplate": "Process import template",
435
+ "prNamehaveExit": "The path name already exists under the same product",
436
+ "productNumCannotNull": "The material number cannot be empty",
437
+ "processRouteCannotNull": "The process path name cannot be empty",
438
+ "processRouteW": "Incorrect format of process path name",
439
+ "productNumNotExist": "Material number does not exist",
440
+ "processCannotNull": "Process cannot be empty",
441
+ "processNotExist": "Process does not exist",
442
+ "importFailPR": "The following are the details of the process paths that failed to import",
443
+ "isDefaultRoutes": "Is it a default path",
444
+ "saveFields": "Store related fields",
445
+ "addMoreProcess": "Add Process",
446
+ "clearProcess": "Clear Process",
447
+ "addProcessRouteMsg": "Real time saving of process information support for processes",
448
+ "choosePlm": "Please select a file",
449
+ "processSequence": "Process Sequence",
450
+ "plmSetting": "File Settings",
451
+ "sort": "Sort",
452
+ "selectProcess": "Please select a process",
453
+ "dataDup": "Data Redundancy",
454
+ "errorProcessNumName": "The process path name or number must not be duplicated!",
455
+ "delProcessRoute": "Delete process route",
456
+ "onlyEnNum": "Only English and numbers can be entered",
457
+ "dataRedundancy": "Data Redundancy",
458
+ "editingProc": "Editing Process",
459
+ "uploads": "Uploads",
460
+ "deleFiles": "Delete Files",
461
+ "fileSize": "File Size",
462
+ "uploader": "Uploader",
463
+ "confDeleFile": "Confirm deletion of file",
464
+ "drawing": "Drawing",
465
+ "geneSpecif": "General Specifications",
466
+ "inspecSpecif": "Inspection Specifications",
467
+ "toolSpecif": "Tool Specifications",
468
+ "procProgram": "Processing Program",
469
+ "material": "Material",
470
+ "other": "Other",
471
+ "selectProfile": "Select Profile",
472
+ "uploading": "Uploading",
473
+ "uploadSuccess": "Upload Successful",
474
+ "uploadFailed": "Upload Failed",
475
+ "duplicateFile": "Duplicate File",
476
+ "uploadStatus": "Upload Status",
477
+ "procCorrel": "Process Correlation",
478
+ "editProcCorrel": "Edit Operation Association",
479
+ "theFollo": "The following are the details of the failed import operations",
480
+ "ordersFailed": "The following are the details of the work orders that failed to import",
481
+ "MESManagement": "MES Management",
482
+ "fileManagement": "File Management",
483
+ "failedContentExport": "Exception failed content export",
484
+ "materialsPerPage": "Number of materials per page",
485
+ "beenUploaded": "Currently, no data has been uploaded",
486
+ "contentFirst": "Please clear the content first",
487
+ "noHttps": "The scan function only supports domain names with HTTPS",
488
+ "numberIsEmpty": "The production work order number is empty",
489
+ "workOrderIsEmptyOr0": "The required number of workpieces in the work order is empty or 0",
490
+ "workOrderIsEmptysOr0": "The required number of workpieces for the process is either empty or 0",
491
+ "workOrderIsEmpty0": "The required number of workpieces for the work order must not be less than 0",
492
+ "workOrderIsEmptys0": "The required number of workpieces for the process must not be less than 0",
493
+ "pathIsEmpty": "The process path is empty",
494
+ "productnumberIsEmpty": "The material number is empty",
495
+ "processInformation": "Successfully modified process information",
496
+ "inspect": "There is a failure item in line [{index}]",
497
+ "workOrderNumerical": "The work order value must be an integer and must not have a decimal point",
498
+ "processesNumerical": "The process value must be an integer and must not have a decimal point",
499
+ "empty": "Empty",
500
+ "zhEnNum": "Only Chinese, English, and numbers can be entered",
501
+ "typeIncorrect": "The attachment type is incorrect! Supported formats",
502
+ "sizeExceeds10MB": "Attachment size exceeds 10MB!",
503
+ "strLengthLimit50": "String length cannot exceed 50 characters",
504
+ "strLengthLimit15": "String length cannot exceed 15 characters",
505
+ "formCategory": "Form Category",
506
+ "formName": "Form Name",
507
+ "formNumber": "Form Number",
508
+ "customFieldQueryFailed": "Custom field query failed",
509
+ "additionalForms": "Additional Forms",
510
+ "fillIn": "Fill In",
511
+ "fileNoHasEmpty": "The required document cannot be empty",
512
+ "mustNumber": "Please enter a number",
513
+ "numberOfJobApplications": "Number of job applications",
514
+ "clickEdit": "Click to modify",
515
+ "aProdNumNotIs0": "The number of added defective products cannot be 0",
516
+ "numIs0IsDel": "A quantity of 0 represents the deletion of this record. Do you want to continue?",
517
+ "timeRulesSSP": "The start time should be less than or equal to the start of processing",
518
+ "timeRulesSEP": "The start time should be less than or equal to the end of processing",
519
+ "timeRulesSAC": "The start time should be less than or equal to the completion time",
520
+ "timeRulesWS": "Processing start should be greater than or equal to the start time",
521
+ "timeRulesWEP": "Processing start should be less than or equal to processing end",
522
+ "timeRulesWAC": "The start of processing should be less than or equal to the completion time",
523
+ "timeRulesWSP": "Processing end should be greater than or equal to processing start",
524
+ "timeRulesWEAC": "The end of processing should be less than or equal to the completion time",
525
+ "timeRulesWES": "Processing end should be greater than or equal to the start time",
526
+ "timeRulesEEP": "The completion time should be greater than or equal to the end of processing",
527
+ "timeRulesESP": "The completion time should be greater than or equal to the start of processing",
528
+ "timeRulesES": "The completion time should be greater than or equal to the start time",
529
+ "modifyWorkReportRecords": "Work report modification record",
530
+ "modifyWorkReportRecord": "Modification of work report records",
531
+ "previousProcesses": "Total number of work reports for subsequent processes <= total number of work reports for previous processes",
532
+ "workReportSetting": "Manual reporting restriction setting",
533
+ "restrictionSetting": "Work reporting restriction setting",
534
+ "basicSettings": "Basic Settings",
535
+ "noEquipment": "There are currently no non networked devices available. Please go to the device settings page under the [Settings] module to maintain a different device",
536
+ "addNoEquipment": "There are currently no non networked devices available. Please go to the device settings page under the PC [Settings] module to maintain a different device",
537
+ "getDeviceInfoFailed": "Failed to obtain device information",
538
+ "topPriority": "Top Priority",
539
+ "priority": "Priority",
540
+ "secondary": "Secondary",
541
+ "leastImportant": "Least Important",
542
+ "normal": "Normal",
543
+ "importantSort": "Important Sort",
544
+ "remind": "There is currently no work report record for the current work order. Please confirm if it has been completed?",
545
+ "editTime": "Modification Time",
546
+ "editPersonnel": "Modify Personnel",
547
+ "editProject": "Modify Project",
548
+ "editContent": "Modify Content",
549
+ "originalContent": "Original Content",
550
+ "productionTime": "Production Time(Hour)",
551
+ "assignSaveFailed": "Please assign at least one person!",
552
+ "startedConstruction": "The current work order has been started, there is no need to start again",
553
+ "completed": "The current work order has been completed and cannot be started again",
554
+ "completeds": "The current work order has been completed, no need to repeat the operation",
555
+ "notStarted": "The current work order has not been started yet and cannot be completed",
556
+ "paused": "The current work order has been suspended, no need to repeat the operation",
557
+ "nonCommencement": "The current work order is not in the start status and cannot be paused",
558
+ "nonProcessing": "The current work order status is no longer in processing and cannot be reported for work",
559
+ "enterTheCorrectTime": "Please enter the correct time",
560
+ "filledBy": "Filled By",
561
+ "fillTime": "Fill in the time",
562
+ "formFillingRecord": "Form filling record",
563
+ "customizeFormSettings": "Customize Form Settings",
564
+ "formSettings": "Form Settings",
565
+ "associatedSuccess": "Successfully associated",
566
+ "selectPartNumber": "Please select the material number",
567
+ "PLM_DRAWING_IMG": "Drawing image",
568
+ "PLM_STANDARD_RULE": "Standard Rule",
569
+ "PLM_QUALITY_CONTROL_RULE": "Quality control rule",
570
+ "PLM_CUTTING_TOOLS_RULE": "Cutting tools rule",
571
+ "PLM_NC_PROGRAM": "Program",
572
+ "PLM_PART_DATA": "Part data",
573
+ "PLM_OTHERS": "Others",
574
+ "downloadFile": "Download File",
575
+ "currentAssignedPersonnel": "Current assigned personnel",
576
+ "hasBeenAssigned": "Has been assigned",
577
+ "workRequiredThroughput": "Number of pieces required",
578
+ "reportFailForCount": "Report failed, report count can not be 0",
579
+ "view": "View",
580
+ "negatives": "The numerical value must not be negative",
581
+ "requireds": "The field name containing (*) is a mandatory field, please fill it out completely according to the specifications",
582
+ "processDeployment": "Process deployment",
583
+ "dateRange": "The selection date cannot exceed the range of three months",
584
+ "dateRanges": "The selection date cannot exceed the range of one month",
585
+ "fileDownload": "File Download",
586
+ "productSpec": "Specification and model",
587
+ "reportForms": "Export of adverse statistical reports",
588
+ "reportingForWork": "Reporting for work",
589
+ "statisticalDimension": "Statistical Dimension",
590
+ "productSpecifications": "Specification and model",
591
+ "disassemble": "Unable to disassemble",
592
+ "reportProcessSetting": "Work Order Approval Settings",
593
+ "reviewStatus": "Review Status",
594
+ "reviewer": "Reviewer",
595
+ "reviewTimeRange": "Review time interval",
596
+ "reviewTime": "Review Time",
597
+ "approved": "Approved",
598
+ "recordRemark": "Job application notes",
599
+ "audited": "Audited",
600
+ "unaudited": "Unaudited",
601
+ "pendingReviewRecords": "Pending review record",
602
+ "reviewNotice": "[Note] This is for global settings. After opening the audit, all work report records need to be audited before they can take effect!",
603
+ "openReview": "Enable Review",
604
+ "closeReview": "Close Review",
605
+ "reportReview": "Work application review",
606
+ "closeReviewNote": "If the review is closed, all work report records will be deemed approved by default. Are you sure to close?",
607
+ "passReview": "Approved",
608
+ "cancelReview": "Cancel Review",
609
+ "actualRecordEmp": "Actual job applicants",
610
+ "reviewSuccess": "Review Success",
611
+ "rejectRate": "Reject Rate",
612
+ "poorProportion": "The proportion of defective products",
613
+ "proportion": "Proportion",
614
+ "negativeStatistics": "Negative Statistics",
615
+ "getReviewStatusFail": "Failed to obtain review status",
616
+ "customerForm": "Customer Form",
617
+ "previewFile": "File Preview",
618
+ "actualRepWorkEmp": "Actual job applicants",
619
+ "dragToSort": "Drag and drop sorting",
620
+ "confirmCompletion": "Confirm Completion?",
621
+ "currentCompletion": "The current process has not yet reached the required number of workpieces. Do you want to force completion?",
622
+ "compulsoryCompletion": "Compulsory Completion",
623
+ "currConfirmCompletion": "There are currently unapproved work report records. Do you want to confirm completion?",
624
+ "afterThisReport": "After this work report, the number of work reports for the current process will exceed the required number of workpieces. Are you sure to confirm the work report?",
625
+ "currentIs0": "The current reported work quantity is 0. Are you sure to complete it?",
626
+ "batchPrint": "Batch Print",
627
+ "selectPrintTemplate": "Select Print Template",
628
+ "orderQrcode": "Order QR code",
629
+ "productionWorkOrder": "Work order circulation card",
630
+ "batchSize": "Batch Size",
631
+ "processList": "Process List",
632
+ "exportOrderPreview": "Export Order Preview",
633
+ "pleaseSelectOrder": "Please select the work order that needs to be printed first.",
634
+ "processQRCode": "Process QR code",
635
+ "getSubOrderInfoFail": "Get sub-work orders information fail",
636
+ "getOrderSerialNumberInfoFail": "Get order serial numbers information fail",
637
+ "getOrderAllSerialNumberFail": "Get all serial numbers fail",
638
+ "processOrderNum": "Process sub work order number",
639
+ "withoutSpacingRules": "No blank characters allowed",
640
+ "countFrontRearProcessControlInfo": "The total number of work reports for subsequent processes<=the total number of work reports for previous processes",
641
+ "countKeyProcessControlInfo": "Enable critical process control. There is no limit on the number of work reports for all previous processes in critical processes; the total number of work reports for subsequent processes in critical processes cannot exceed the total number of work reports for critical processes.",
642
+ "statusFrontRearProcessControlInfo": "The previous process status is completed, and the subsequent process can only start",
643
+ "statusKeyProcessControlInfo": "Enable critical process control, with no limit on the number of work reports for all previous processes in the critical process. If the critical process is not completed, all subsequent processes in the critical process cannot start.",
644
+ "countControl": "Process reporting quantity control",
645
+ "statusControl": "Process start status card control",
646
+ "frontRearControl": "Front and rear station process card control",
647
+ "keyProcessControl": "Critical process control",
648
+ "keyProcesses": "Critical Process",
649
+ "reportFailed": "Report Fail!",
650
+ "WorkReportOne": "The control of the number of processes in the front and rear stations has been activated, and the total number of reported processes in the back station cannot exceed that in the front station!",
651
+ "WorkReportTwo": "The quantity control of critical processes has been activated, and the total number of post station work reports for critical processes cannot exceed that of critical processes!",
652
+ "startFailed": "Start Fail!",
653
+ "StartOne": "The front and rear station process status control has been activated. The previous process status is completed, and the subsequent process can only start!",
654
+ "StartTwo": "The critical process status control has been activated, and the critical process is completed before the subsequent process can start!",
655
+ "criticalProcess": "Is critical process",
656
+ "criticalProcessError": "The key process input does not meet the requirements. Please enter 'Yes' or' No '",
657
+ "columnSetting": "Column Configuration",
658
+ "returnToDefault": "Return to default",
659
+ "productionOrderLevel": "Production Order Level",
660
+ "processOrderLevel": "Process Order Level",
661
+ "columnLimit18": "The displayed fields must not exceed 18 fields",
662
+ "columnLimit7": "The displayed fields must not exceed 7 fields",
663
+ "setSuccessfully": "Set Successfully",
664
+ "columnLimit2": "The work order hierarchy display field must not be less than 2 fields",
665
+ "orderDispatchToReporting": "Dispatch work orders to the site and report work orders",
666
+ "orderSharing": "Order Sharing",
667
+ "sharedSelectOrder": "Please check the order you want to share first!",
668
+ "errorDifferentOrders": "The currently selected work order belongs to different orders. Please select work orders under the same order to share!",
669
+ "orderSharingQR": "Order tracking QR code",
670
+ "download": "Download",
671
+ "orderProgress": "Order Progress",
672
+ "orderTracking": "Order Tracking",
673
+ "no250Characters": "Cannot exceed 250 characters",
674
+ "processNotes": "Process Notes",
675
+ "lastUpTime": "Last update time",
676
+ "processRemark": "Process Remarks",
677
+ "departmentPersonnel": "Department",
678
+ "deactivateds": "Deactivated",
679
+ "plannedCompleteDate": "Planned completion date",
680
+ "planExpectedDate": "Estimated Time",
681
+ "turnOffScanning": "Turn off scanning",
682
+ "deviceGroup": "Machine Group",
683
+ "device": "Equipment/Station",
684
+ "stopUse": "Deactivated ",
685
+ "noGroup": "No Group",
686
+ "salaryFailed": "Salary calculation failed",
687
+ "openRepporting": "If the setting up for reporting work directly without starting work is enabled, the manual reporting restriction setting will become invalid. Are you sure to enable it?",
688
+ "reportDirectly": "Setting up for reporting work directly without starting work",
689
+ "open": "Open",
690
+ "close": "Close",
691
+ "reportNotice": "[Note] This is for MES global settings!",
692
+ "reportTimeInterval": "Reporting time interval",
693
+ "completeTimeInterval": "Completion time interval",
694
+ "showMyOrder": "Only display [My Work Orders]",
695
+ "showMyRecords": "Only display [My Records]",
696
+ "cycleEndTimeInterval": "Processing end time interval",
697
+ "yearRange": "The maximum filtering time interval cannot exceed one year",
698
+ "reviewWarning": "There may be other users reviewing, please refresh before proceeding",
699
+ "agentReportingFunction": "Agent reporting function",
700
+ "workOrderCustomSetting": "Custom settings for work orders",
701
+ "workReportCustomSetting": "Custom settings for reporting work",
702
+ "addCustomField": "Add custom field",
703
+ "editCustomField": "Edit custom field",
704
+ "showDisabledField": "Display disabled fields",
705
+ "customSettingNotice": "Supports adding up to 80 (excluding deactivation)",
706
+ "batchAction": "Batch Operation",
707
+ "cancelBatchAction": "Cancel batch operation",
708
+ "batchEnable": "Batch Enable",
709
+ "batchDisabled": "Batch Disabled",
710
+ "dragSort": "Drag and drop sort",
711
+ "fieldName": "Field Name",
712
+ "fieldType": "Field Type",
713
+ "itemIndex": "Item",
714
+ "fieldProperty": "Field Properties",
715
+ "regardText": "Guiding Text",
716
+ "regardTextPlaceholder": "Please enter the guiding text when filling in the field",
717
+ "textType": "Text",
718
+ "numberType": "Number",
719
+ "dateType": "Date",
720
+ "copy": "Copy",
721
+ "copyAddProcessPath": "Copy and add process path",
722
+ "presetPathModified": "If the preset path of the product already exists, it cannot be modified",
723
+ " processUnderPath": "There must be a process under a path",
724
+ "workOrderImportTemplate": "Work order import template",
725
+ "workOrderProcessImportTemplate": "Work order&process import TMPL",
726
+ "fillingOutExcelTemplates": "Instructions for filling out Excel templates:",
727
+ "customersSameOrderDate": "1.The customer name of the same order and the order delivery date need to be the same. If the customer name of the work order with the same order number is different from the order delivery date, the relevant data of the first work order will be overwritten by default",
728
+ "workOrderEnteredGenerated": "1.The production work order number cannot be duplicated. If not entered, it will be automatically generated after importing",
729
+ "importantSorting": "2. Important sorting input numbers (0-4), the larger the number, the higher the priority. If not filled in. After importing, the system automatically brings in 2 (indicating normal)",
730
+ "processPathName": "3.Enter the corresponding process path name in the process path field",
731
+ "processPathFieldNumber": "5.The content filled in the process field is the process sequence (number), which needs to be the maintained process in the process path",
732
+ "executorsJobNumbers": "6.If there are multiple expected executors (job numbers) of the process, separate them with English commas",
733
+ "severalProcessesFewLines": "7.For each work order, there are several processes in the process path, and there are only a few lines of data",
734
+ "fillingInstructions": "Filling Instructions",
735
+ "selectImportTemplate": "Select import template",
736
+ "onlyImportWork": "Only import work orders",
737
+ "workOrdersProcessDetails": "Import work orders and process details",
738
+ "planWorkOrderImportTemplate": "Plan to develop a work order import template",
739
+ "planWorkOrderProcessImportTemplate": "Plan to develop work orders and process import templates",
740
+ "importantSortIsEmpty": "Important sorting is empty",
741
+ "fileTypeErrorAndUploadXlsx": "The imported file type must be a (.xlsx) file",
742
+ "repeatedOperations": "Repeated processes with the same production order number",
743
+ "containsFailed": "Contains failed verification, please check",
744
+ "customizationProcessPath": "Customization of process path",
745
+ "jumpToThe": "Jump to the",
746
+ "page": "Page",
747
+ "addWorkOrder": "Add work order",
748
+ "editWorkOrder": "Edit work order",
749
+ "buildWorkOrder": "Work order creation",
750
+ "baseField": "Base Field",
751
+ "selectCustomField": "Please select custom field",
752
+ "processedGoodProductsNum": "Number of good products",
753
+ "processedDefectiveProductsNum": "Number of defective products",
754
+ "processOrderStatus": "Process sub work order status",
755
+ "deviceWorkNum": "Equipment production quantity",
756
+ "basicWorkReportFieldFilling": "Basic work report field filling",
757
+ "customWorkReportFieldFilling": "Custom work report field filling",
758
+ "customFormFilling": "Custom form filling",
759
+ "basicFieldModification": "Basic field modification",
760
+ "customFieldModification": "Custom field modification",
761
+ "customFieldReocrd": "Custom record for job reporting",
762
+ "customFieldName": "Custom field name",
763
+ "customFieldValue": "Custom field record",
764
+ "insufficientAvailableInventoryTip": "The available inventory for work order [{arr}] is insufficient. Please confirm if a delivery work order needs to be executed",
765
+ "reportNumSetting": "The production quantity is automatically entered into the setting",
766
+ "autoCompleteSetting": "Automatic completion function setting for process",
767
+ "defaultShow": "Default Display",
768
+ "defaultShowThroughput": "Default display of required number of workpieces",
769
+ "cantOpenReview": "When the automatic completion function is turned on, the review function cannot be enabled!",
770
+ "cantOpenAutoComplete": "When the review function is turned on, the automatic completion function cannot be enabled!",
771
+ "dataCollection": "Data Collection",
772
+ "getDataRequired": "The start time, end time, and device fields must be filled in!",
773
+ "onlyNetEquip": "Data collection can only collect data from connected devices!",
774
+ "outserviceDevice": "The machine is out of service and cannot be delivered",
775
+ "eightDigits": "The numerical value shall not exceed eight digits",
776
+ "pathProcesslimitation": "The number of processes in the process path cannot exceed 200",
777
+ "auditFail": "The manual reporting restriction setting has been enabled, and the audit cannot be closed",
778
+ "consumptionAmount": "Consumption",
779
+ "procurementNotProgress": "Procurement Not Progressing",
780
+ "stockModel": "Stock Model",
781
+ "finishedProductMarket": "Finished Product Inventory",
782
+ "patchInventory": "Patch Inventory",
783
+ "bsInventory": "BS Inventory",
784
+ "adjustedInventory": "Adjusted Inventory",
785
+ "batchRollingInventory": "Batch Rolling Inventory",
786
+ "batchInventory": "Batch Inventory",
787
+ "rollingInventory": "Rolling Inventory",
788
+ "mrpSetting": "MRP Setting",
789
+ "replenishment": "Replenishment Quantity",
790
+ "turnoverDays": "Number of Turnover Days",
791
+ "adjustMagnification": "Adjust Magnification",
792
+ "minimumOrderQuantity": "Minimum Order Quantity (MOQ)",
793
+ "minimumPackQuantity": "Minimum Pack Quantity (MPQ)",
794
+ "reorderPoint": "Reorder Point",
795
+ "safetyStock": "Safety Stock",
796
+ "inventoryReplenishmentAmount": "Inventory Replenishment Amount",
797
+ "deliveryDay": "Delivery Date",
798
+ "valueNotBeNegativeAndZero": "The value must not be zero or negative",
799
+ "day": "Day",
800
+ "valueNotBeFloat": "The value must be an integer without a decimal point",
801
+ "productData": "Material Info",
802
+ "valueNotBeNegative": "The value must not be negative",
803
+ "MRPSettingRequired": "Inventory mode has been selected, MRP setting related content is required",
804
+ "hour": "Hour",
805
+ "minute": "Minute",
806
+ "second": "Second",
807
+ "workTimeUnit": "Working hour unit",
808
+ "technologicalRequirements": "Process Requirements",
809
+ "intMoreThan8": "Integer bits cannot exceed 8 bits",
810
+ "floatMoreThan3": "The decimal place cannot exceed 3 digits",
811
+ "wrongImportTimeUnit": "Working hour unit import format error",
812
+ "standardTimeMustPositive": "Standard working hours must be positive numbers",
813
+ "productFile": "Product File",
814
+ "workOrderRequirementsNumber": "Number of work order requirements",
815
+ "processRequirementsNumber": "Number of process requirements",
816
+ "productionReport": "Production Report",
817
+ "processRequires": "Number of process requirements",
818
+ "expectedProcessingEquipment": "Expected processing equipment",
819
+ "change": "Switching machines and lines",
820
+ "changeItem": "Debugging Item",
821
+ "changeMark": "Debugging Instructions",
822
+ "startAdjustMachine": "Start adjusting the machine",
823
+ "changeStatusSuccess": "Machine adjustment successful!",
824
+ "changeStatusFail": "Failed to switch the state during machine adjustment!",
825
+ "changeError": "The current station sub work order has not yet set a station",
826
+ "SystemError_api": "System Error",
827
+ "adjustmentEquip": "Adjustment Equipment",
828
+ "resourceAssign": "Resource Assignment",
829
+ "personnelAssign": "Personnel Assignment",
830
+ "deviceAssign": "Device Assignment",
831
+ "currentAssignedDevice": "Current assigned device",
832
+ "selectGroup": "Select Group",
833
+ "selectDevice": "Select Device",
834
+ "manufactureSettings": "Manufacturing execution settings",
835
+ "reportWorkQRcode": "Generate work QRcode",
836
+ "personnelWorkLog": "Personnel work log",
837
+ "settingPage": "Settings Page",
838
+ "settingItem": "Setting Item",
839
+ "reset": "Reset",
840
+ "generateQrcode": "Generate QRcode",
841
+ "downloadQrcode": "Download QRcode",
842
+ "settingQrcodeSize": "Setting Size",
843
+ "settingQrcodeFirst": "Please set QRcode first",
844
+ "qrcode": "QRcode",
845
+ "copyQrcodeURL": "Copy QRcode URL",
846
+ "sizeLimit": "Size must be 0 to 450",
847
+ "workProject": "Work Project",
848
+ "adjustmentProject": "Adjustment Project",
849
+ "adjustmentPersonnel": "Adjustment Personnel",
850
+ "adjustmentTimeInterval": "Adjustment time interval",
851
+ "adjustmentWaringOne": "The current device is undergoing machine adjustment in process",
852
+ "adjustmentWaringTwo": " . Continuing the operation will end the previous machine adjustment task. Do you want to continue?",
853
+ "adjustmentStartTime": "Adjustment StartTime",
854
+ "adjustmentEndTime": "Adjustment EndTime",
855
+ "adjustmentDuration": "Adjustment Duration(Hour)",
856
+ "production": "Production",
857
+ "prodWorkOrder": "Production Work Order",
858
+ "speedOfProgress": "Speed of progress",
859
+ "defectiveRate": "Defective Rate",
860
+ "actualStartDate": "Actual start time",
861
+ "actualCompletionDate": "Actual completion time",
862
+ "selectEquip": "Select Device",
863
+ "selectedItems": "Selected【{num}】Items",
864
+ "creator": "Creator",
865
+ "updatePerson": "Update Person",
866
+ "updateTime": "Update Time",
867
+ "templatename": "Process template name",
868
+ "templatenameSave": "The process information of the process template supports real-time saving",
869
+ "abnormalProcess": "The currently selected process has an exception",
870
+ "templatenameRepeat": "Duplicate process template names",
871
+ "newTemplate": "Add process template",
872
+ "editTemplate": "Edit process template",
873
+ "selected": "Selected",
874
+ "term": "Term",
875
+ "templatEmpty": "The process template name cannot be empty",
876
+ "templatError": "Process template name format error",
877
+ "importProcessTemplate": "Import process template",
878
+ "processTemplate": "Process Template",
879
+ "columnConfigurationFail": "Column configuration information query failed",
880
+ "administration": "Administration",
881
+ "keepOne": "There must be a process under a template",
882
+ "fileMassDelete": "Files Delete",
883
+ "dataError": "Data Error",
884
+ "fileNotSelected": "Please select files",
885
+ "addCustomColumn": "Add Custom Column",
886
+ "showDisableColumn": "Show Disabled Column and Sort Settings",
887
+ "upOrder": "Sort Up",
888
+ "downOrder": "Sort Down",
889
+ "reuse": "Restart",
890
+ "orderFail": "Sorting Failed",
891
+ "stopCustomRemind": "Confirm the disabled column",
892
+ "itemOrder": "Item Order",
893
+ "customAttributeName": "Custom Attribute Name",
894
+ "displayType": "Display Type",
895
+ "optionsNumber": "Options Number",
896
+ "customColClass": "Process Level",
897
+ "customSelectCol": "Custom drop-down option",
898
+ "textField": "Hand Input",
899
+ "selectField": "Drop-down option",
900
+ "hyperLink": "Hyperlink",
901
+ "editCustomColumn": "Edit Custom Column",
902
+ "dropOptionSetting": "Drop-down Option Setting",
903
+ "dropOptionIsRequired": "Drop options is required.",
904
+ "someColumnRequired": "Please complete the required fields",
905
+ "customLimit": "Corresponding class can only add {number} custom attributes",
906
+ "colNoSpecialCharacters": "Column cannot have special characters",
907
+ "addCustomColumnOption": "Add a custom option",
908
+ "saveBasicCol": "Save Basic Column",
909
+ "confirmToDeleteOption": "If you select this option in this custom field, the system will not keep it. Do you confirm to delete this option?",
910
+ "machineGroup": "Machine Group",
911
+ "productRouteVersion": "Product Route Version",
912
+ "fileTypeName": "File type name",
913
+ "defaultFileTypeNoEditAndDelete": "Default data cannot be update",
914
+ "getFileTypeFail": "Get file type failed",
915
+ "fileTypeIsUsedCannotDelete": "The file Type has been used and cannot be deleted",
916
+ "machineAdjustmentProject": "Debugging Item",
917
+ "addMAjroject": "Add machine adjustment project",
918
+ "modifyMAjroject": "Modify machine adjustment project",
919
+ "machineAdjustmentInstructions": "Machine adjustment instructions",
920
+ "writeBackWorkPiecesNum": "Write back the number of work pieces",
921
+ "confirmToDelete": "Are you sure to delete this data?",
922
+ "strLengthLimit200": "String length cannot exceed 200 characters",
923
+ "duplicateMAjroject": "Duplicate machine adjustment project name",
924
+ "fileArchiveManagement": "File Archive Management",
925
+ "documentCustomField": "Document Custom Field",
926
+ "materialCustomization": "Material Customization",
927
+ "processCustomization": "Process Customization",
928
+ "customizationOfProcessRoute": "Customization of process route",
929
+ "customFileType": "Custom file type",
930
+ "workOrderCustomization": "Work order customization",
931
+ "customizedJobReporting": "Customized job reporting",
932
+ "customizedReasonsForDefects": "Customized reasons for defects",
933
+ "customTuning": "Custom Tuning",
934
+ "templateIssue": "Template has issues",
935
+ "inspectedQuantity": "Please check the number of header fields",
936
+ "inspectionContent": "Please check the order or content of the header fields",
937
+ "pathProcessOrderLimitation": "The number of processes added to a work order cannot exceed 200",
938
+ "to": "To",
939
+ "starttime": "Start Time",
940
+ "endtime": "End Time",
941
+ "productNumber": "Material Number",
942
+ "materialSpec": "Specification and model",
943
+ "expectedStartDate": "Expected Start Time",
944
+ "expectedDueDate": "Due Time",
945
+ "materialUnit": "Unit",
946
+ "materialType": "Product Type",
947
+ "materialProperty": "Product Properties",
948
+ "materialState": "Product State",
949
+ "processOrderSn": "Process work order number",
950
+ "batchNumber": "Batch Number",
951
+ "productionOrderRequiredThroughput": "Part Count Required",
952
+ "productionOrderExpectedStartDate": "Expected Start Time",
953
+ "productionOrderExpectedDueDate": "Expected Due Time",
954
+ "productionOrderPriority": "Important Order",
955
+ "createBySelf": "Homemadeware",
956
+ "purchasedParts": "Purchased Parts",
957
+ "none": "None",
958
+ "finishedMaterial": "Finished Product",
959
+ "semiFinishedMaterial": "Semifinished Material",
960
+ "moldTool": "Mold",
961
+ "partCountRequired": "Part RQD",
962
+ "productionFileName": "CNC Program",
963
+ "orderNumberIsNullOrEmpty": "The order number must be required",
964
+ "orderNumberLengthExceeded": "The length of the order number cannot exceed 50 characters",
965
+ "orderCustomerNameLengthExceeded": "Customer name length cannot exceed 50 characters",
966
+ "orderExpectedDueIsNotDate": "Order expected due must be in date format",
967
+ "orderCustomerNameInconsistent": "For the same order number, the customer name must be consistent",
968
+ "orderExpectedDueInconsistent": "For the same order number, order expected due must be consistent",
969
+ "productionOrderNumberIsNullOrEmpty": "The production order number must be required",
970
+ "productionOrderNumberLengthExceeded": "The length of the production order number cannot exceed 30 characters",
971
+ "productionOrderNumberIsExist": "The production order number already exists in the system",
972
+ "partNumberIsNullOrEmpty": "The part number must be required",
973
+ "partNumberNotExist": "The part number must exist in the system",
974
+ "productionOrderRequiredThroughputIsNullOrEmpty": "Production order required throughput must be required",
975
+ "productionOrderRequiredThroughputIsNotNumber": "Production order required throughput must be a numerical value",
976
+ "productionOrderRequiredThroughputIsNotGreaterThanZero": "Production order required throughput must be greater than 0",
977
+ "productionOrderRequiredThroughputIsNotGreaterThanIntMaxValue": "Production order required throughput cannot be greater than int.MaxValue",
978
+ "productionOrderExpectedStartDateIsNotDate": "Production order expected start time must be in date format",
979
+ "productionOrderExpectedDueDateIsNotDate": "Production order expected due time must be in date format",
980
+ "productRouteNameIsNullOrEmpty": "Product route name must be required",
981
+ "productRouteNameNotExist": "Product route name must exist in the system",
982
+ "productionOrderPriorityIsNotCorrectType": "Production order priority format error",
983
+ "productionOrderPartNumberInconsistent": "For the same production order, the part number must be consistent",
984
+ "productionOrderRequiredThroughputInconsistent": "For the same production order, production order required throughput must be consistent",
985
+ "productionOrderExpectedStartDateInconsistent": "For the same production order, production order expected start time must be the same",
986
+ "productionOrderExpectedDueDateInconsistent": "For the same production order, production order expected due time must be consistent",
987
+ "productionOrderProductRouteNameInconsistent": "For the same production order, product route name must be consistent",
988
+ "productionOrderPriorityInconsistent": "For the same production order, production order priority must be consistent",
989
+ "productionOrderOrderInconsistent": "For the same production order, the order number must be consistent",
990
+ "productionOrderNumberDuplicate": "Duplicate production order number",
991
+ "productionOrderBatchNumberIsExist": "Production order batch number already exists in the system",
992
+ "partNumberStatusIsDisable": "Part Number is disabled",
993
+ "productionOrderCustomFieldValueLengthError": "Production order custom field value length error",
994
+ "processOrderCustomFieldValueLengthError": "Process order custom field value length error",
995
+ "workOrderCustomFieldValueLengthError": "Work order custom field value length error",
996
+ "productionOrderNotFindCustomOption": "Work order custom field value not find option",
997
+ "productionOrderDateFormatError": "Work order custom field value date format error",
998
+ "productionOrderCustomFieldInconsistent": "For the same production order number, the custom field must be consistent",
999
+ "productionProcessIsNullOrEmpty": "The production process must be required",
1000
+ "productionProcessIsNotNumber": "The production process must be numerical",
1001
+ "productionProcessNotExist": "The production process does not exist in the system",
1002
+ "processOrderRequiredThroughputIsNullOrEmpty": "Process order required throughput must be required",
1003
+ "processOrderRequiredThroughputIsNotNumber": "Process order required throughput must be a numerical value",
1004
+ "processOrderRequiredThroughputIsNotGreaterThanZero": "Process order required throughput must be greater than 0",
1005
+ "processOrderRequiredThroughputIsNotGreaterThanIntMaxValue": "Process order required throughput cannot be greater than int.MaxValue",
1006
+ "processOrderExpectedStartDateIsNotDate": "Process order expected start time must be in date format",
1007
+ "processOrderExpectedDueDateIsNotDate": "Process order expected due time must be in date format",
1008
+ "processOrderPriorityIsNotCorrectType": "Process order priority format error",
1009
+ "processOrderRequiredThroughputInconsistent": "For the same process order, process order required throughput must be consistent",
1010
+ "processOrderExpectedStartDateInconsistent": "Process order expected start time of the same process must be consistent",
1011
+ "processOrderExpectedDueDateInconsistent": "Process order expected due time of the same process must be consistent",
1012
+ "processOrderPriorityInconsistent": "For the same process process order, process order priority must be consistent",
1013
+ "processOrderNotFindCustomOption": "The option cannot be found in the custom attributes of the process order",
1014
+ "processOrderDateFormatError": "The date format of the custom attribute of the process order is wrong",
1015
+ "processOrderCustomFieldInconsistent": "For the same process process order, the custom field must be consistent",
1016
+ "workOrderEquipGroupNameNotExist": "The work order group field must exist in the system",
1017
+ "workOrderEquipNameNotExist": "The work order equipment field must exist in the system",
1018
+ "workOrderShiftNameNotExist": "The work order shift name must exist in the system",
1019
+ "workOrderEmpNumberNotExist": "The work order employee number field must exist in the system",
1020
+ "workOrderRequiredThroughputIsNotNumber": "The work order required throughput must be a numerical value",
1021
+ "workOrderRequiredThroughputIsNotGreaterThanZero": "The work order required throughput must be greater than 0",
1022
+ "workOrderRequiredThroughputIsNotGreaterThanIntMaxValue": "The work order required throughput cannot be greater than int.MaxValue",
1023
+ "workOrderExpectedStartDateIsNotDate": "The expected start time of the work order must be in date format",
1024
+ "workOrderExpectedDueDateIsNotDate": "The expected due time of the work order must be in date format",
1025
+ "workOrderRequiredThroughputKeyIsNullOrEmpty": "The work order required throughput Key is required",
1026
+ "workOrderBatchNumberIsNotBelongToProductionOrder": "The batch number of the work order does not belong to the work order",
1027
+ "workOrderNotFindCustomOption": "The option cannot be found in the custom attributes of the work order",
1028
+ "workOrderDateFormatError": "Work order custom attribute date format error",
1029
+ "onlyOrderProductionOrderDataLegal": "Only order and production order data are legal",
1030
+ "productionOrderOtherRowDataError": "Under the same produciton order, there are other row data errors",
1031
+ "notFindCustomFieldId": "Not find custom field ID",
1032
+ "salespersonMustExistWithinTheSystem": "The salesperson does not exist or has been deactivated",
1033
+ "theLengthEmployeeNumberExceed20": "The length of the business employee number cannot exceed 20 characters",
1034
+ "theLengthSourceOrderNumberExceed50Characters": "The length of the work order source order number cannot exceed 50 characters",
1035
+ "theFormatError": "The format of the work order source order number is incorrect",
1036
+ "theLengthProductionNumberExceed50Characters": "The length of the work order production number cannot exceed 50 characters",
1037
+ "workOrderProductionNumberFormatError": "Work order production number format error",
1038
+ "duplicateWorkOrderProductionNumber": "Duplicate work order production number",
1039
+ "theProductionNumberAlreadyExistsInTheSystem": "The production number of the work order already exists in the system",
1040
+ "orderSalesmanIsDisable": "The salesperson does not exist or has been deactivated",
1041
+ "sameOrderNumberSalespersonConsistent": "Same order number, salesperson must be consistent",
1042
+ "deviceName": "Machine Name",
1043
+ "itemsPerPage": "Items Per Page",
1044
+ "dispatch": "Dispatch",
1045
+ "loading": "Loading",
1046
+ "consDate": "Creation Time",
1047
+ "machineName": "Machine Name",
1048
+ "serialNumber": "Controller SN",
1049
+ "planMaking": "Plan Making",
1050
+ "planProgress": "Plan Progress",
1051
+ "standardTotalTime": "Standard total lead time",
1052
+ "standardTimeSecondPerItem": "Standard lead time(Second Per Item)",
1053
+ "exportSyntecOrder": "Export Syntec Order",
1054
+ "exportExcel": "Export Excel",
1055
+ "someColumnIsRequired": "(*) is required",
1056
+ "partCount": "Actual/Expected Part Count",
1057
+ "actualProgress": "Actual Progress",
1058
+ "expectedProgress": "Expected Progress",
1059
+ "excelCustomize": "Excel Custom",
1060
+ "tableHeaderCustomize": "Headers",
1061
+ "chooseTimeRange": "Please choose Time Range",
1062
+ "groupName": "Group Name",
1063
+ "progressStatus": "progress status",
1064
+ "sortBy": "Sort By",
1065
+ "orderStatus": "Status",
1066
+ "hide": "Hide",
1067
+ "cloudImport": "Cloud Import",
1068
+ "orderSchedulePreview": "Production Order Schedule Preview",
1069
+ "deviceSchedulePreview": "Device Schedule Preview",
1070
+ "productionOrderNumDetail": "MO Info.",
1071
+ "actualThroughput": "Actual part count",
1072
+ "abnormal": "abnormal",
1073
+ "order": "Order",
1074
+ "subOrder": "Sub Order",
1075
+ "saveOrder": "Save Order Level",
1076
+ "dataSaveSuccess": "Data saved successfully",
1077
+ "warning": "Warning",
1078
+ "serialNumberRuleSetting": "SN Rule Settings",
1079
+ "snBatchSetting": "Batch/SN Rules",
1080
+ "serialNumberPreview": "Serial Number Preview",
1081
+ "prefixWord": "Prefix Word",
1082
+ "middleWord": "Middle Word",
1083
+ "sequenceNumberCount": "Number of Serial Numbers",
1084
+ "nowDate": "Date",
1085
+ "noSelect": "None",
1086
+ "partNumBefore": "Before",
1087
+ "partNumAfter": "After",
1088
+ "partNumCount": "Number",
1089
+ "year": "Year",
1090
+ "month": "Month",
1091
+ "yearMonth": "Year Month",
1092
+ "yearMonthDay": "Year Month Day",
1093
+ "numberLimitTen": "Number limit is 10",
1094
+ "numberLimitFifty": "Total number limit is 50. The current number : ",
1095
+ "numberLimitPositive": "Number must be positive",
1096
+ "shiftName": "Shift",
1097
+ "submitSuccess": "Submit Success",
1098
+ "deleteSuccess": "Delete Success",
1099
+ "numberNotInteger": "It can only be integers.",
1100
+ "workOrderReport": "Work order report",
1101
+ "status": "Status",
1102
+ "inUseStatus": "Status of Use",
1103
+ "stop": "Disabled",
1104
+ "batchStop": "Batch Disable",
1105
+ "editAndStop": "Edit And Disable",
1106
+ "serialNumBinding": "SN Binding",
1107
+ "showBindProductionOrder": "Show Binded Production Orders",
1108
+ "serialNumGeneration": "Serial Number Generation",
1109
+ "productionOrderCount": "Number of Production Orders",
1110
+ "bindedNumber": "Binded Number",
1111
+ "addSerialNum": "Add Serial Number",
1112
+ "batchSerialNum": "Add Serial Numbers in Batches",
1113
+ "autoGenCount": "Auto-generate count",
1114
+ "autoGen": "Auto-generate",
1115
+ "binded": "Binding",
1116
+ "bindedSerialNumberTable": "binded serial number list",
1117
+ "deleteDuplicated": "Delete Duplicated",
1118
+ "serialNumExample": "Serial Number Example ",
1119
+ "serialNum": "Serial Number",
1120
+ "colNum": "number of columns",
1121
+ "reason": "Reason",
1122
+ "importFailInfo": "Import failed information",
1123
+ "check": "Check",
1124
+ "importProductionOrderQuantity": "Import Work Order Quantity",
1125
+ "importSerialNumCount": "Number of imported serial numbers",
1126
+ "importInfoCorrect": "Imported data is correct",
1127
+ "importSuccessSerialNumCount": "Number of serial numbers imported successfully",
1128
+ "enterCorrectQuantity": "Please enter the correct quantity",
1129
+ "numLessRequired": "The number of bindings is less than the number of required artifacts",
1130
+ "serialNumExcel": "Serial Number Binding Report",
1131
+ "serialDuplicated": "Duplicated serial number",
1132
+ "serialDuplicatedCount": "Duplicated number of binding serial numbers:",
1133
+ "manualAddNum": "Manually add serial number",
1134
+ "unbindedNotEnough": "The unbound serial number is not enough to bind",
1135
+ "bindedDate": "Binded Date",
1136
+ "machineAndStation": "Machine/Station",
1137
+ "importantOrder": "Important Order",
1138
+ "result": "Result",
1139
+ "importSerial": "Import",
1140
+ "availableCount": "Available number of bindings",
1141
+ "notAddNewSerial": "Operation error, serial number has not been added",
1142
+ "serialNumUnbinding": "Serial number unbinding",
1143
+ "reportStatus": "Report Status",
1144
+ "sequenceNumber": "Sequence Number",
1145
+ "unbinded": "Unbinded",
1146
+ "allUnbinded": "All Unbinded",
1147
+ "isReportWork": "Reported Work",
1148
+ "notReportWork": "not reported work",
1149
+ "confirmUnbindAll": "Are you sure you want to unbind all the serial numbers found?",
1150
+ "includeIsReportWork": "The unbinding sequence number includes the reported process number, please confirm whether you still want to unbind",
1151
+ "exportSerialNumber": "Export Serial Number",
1152
+ "snExportPreview": "SN Export Preview",
1153
+ "snExportSetting": "SN Export",
1154
+ "snPrintSize": "Serial number print size ",
1155
+ "centimeter": "(CM)",
1156
+ "orderSerialNumber": "Order Serial Number",
1157
+ "pageSizeLimit": "QRCode size setting limit is 0.5 cm to 15 cm",
1158
+ "defaultPrintSize": "QRcode default print size",
1159
+ "noSerialNumberData": "No Serial Number Data",
1160
+ "importTime": "Inbound Time",
1161
+ "exportTime": "Export Time",
1162
+ "processingType": "Processing Type",
1163
+ "batch": "Batch",
1164
+ "currentSN": "current serial number",
1165
+ "processSetting": "Process Setting",
1166
+ "returnDispatch": "Return Dispatch",
1167
+ "week": "Week",
1168
+ "expectedTuningTime": "Expected tuning time",
1169
+ "productionOrderSort": "Production Order Sort",
1170
+ "productionOrderSortSetting": "Production order sorting setting",
1171
+ "singlePieceCycle": "Single Piece Cycle (seconds)",
1172
+ "scheduleMethodSetting": "Schedule Method Settings",
1173
+ "NStationSetting": "NStation Settings",
1174
+ "defaultScheduleMethod": "Default Schedule Method",
1175
+ "basicDaySetting": "Basic Time Setting",
1176
+ "defaultStart": "Default Start",
1177
+ "startStationComputing": "Start Station Computing",
1178
+ "NStationCalculation": "NStation Calculation",
1179
+ "completionStationComputing": "Completion Station Computing",
1180
+ "plus": "Plus",
1181
+ "minus": "Minus",
1182
+ "NStation": "NStation",
1183
+ "firstStationTime": "Start station start time",
1184
+ "NStationTime": "Tick start time",
1185
+ "endStationTime": "Completion Station Completion Time",
1186
+ "processOrder": "Process work order",
1187
+ "expectedImplementStaff": "Expected Implementation Staff",
1188
+ "transferTime": "Transfer Time",
1189
+ "productionProcessTransferCount": "Minimum transfer count",
1190
+ "showNoProcessOrderExpectedStartDate": "Show process order with no start date",
1191
+ "pageShowSetting": "Page Display Setting",
1192
+ "processOrderExpectedStartDate": "Expected Start Date(process work order)",
1193
+ "processOrderExpectedDueDate": "Expected Due Date(process work order)",
1194
+ "processOrderRequiredThroughput": "Part Count Required(process orders)",
1195
+ "equipGroupName": "Group Name",
1196
+ "equipName": "machine/station",
1197
+ "processOrderPriority": "Important Order(process order)",
1198
+ "routeID": "Route Process ID",
1199
+ "snBindedOther": "This serial number has been bound to other work orders, whether to still confirm the binding",
1200
+ "numberLimitTwenty": "The number of digits must not exceed twenty yards",
1201
+ "adjustMachine": "Tuning",
1202
+ "statusError": "Exception",
1203
+ "serialNumRule": "Serial Number Rule",
1204
+ "customParameter": "Custom Parameter",
1205
+ "ruleName": "Serial number rule name",
1206
+ "showDisable": "Show Disabled",
1207
+ "digits": "Digits",
1208
+ "ruleState": "Rule State",
1209
+ "defaultRule": "Default Rule",
1210
+ "snRange": "Serial number range setting",
1211
+ "paramName": "Parameter Name",
1212
+ "selectCount": "Number of options",
1213
+ "latestModiDate": "Last updated time",
1214
+ "selectName": "Option Name",
1215
+ "displayString": "Display String",
1216
+ "default": "Default",
1217
+ "param": "Options",
1218
+ "snNameExist": "The serial number parameter name already exists",
1219
+ "optionExist": "The option name or serial number display string already exists",
1220
+ "deleteOptionWarn": "Are you sure you want to remove this option?",
1221
+ "needParamName": "Please select the serial number parameter name",
1222
+ "needFullRange": "Please fill in the correct serial number range",
1223
+ "deleteCustomParamWarn": "Are you sure to delete the custom variable?",
1224
+ "paramIsUsed": "The serial number parameter is being used. Please remove the metaword that uses this parameter in the rule before deleting it.",
1225
+ "prodOrderBind": "Work order binding",
1226
+ "partNumBind": "Material number binding",
1227
+ "snParam": "Serial number parameter",
1228
+ "bindedRecord": "Binded Record",
1229
+ "serialRuleInfo": "Serial number rule data",
1230
+ "bindedEmp": "Binded Person",
1231
+ "bindedTime": "Binding Time",
1232
+ "snStart": "Start with serial number",
1233
+ "snEnd": "End of sequence number",
1234
+ "count": "Quantity",
1235
+ "modiSnBinding": "Change serial number binding",
1236
+ "batchAdd": "Batch Add",
1237
+ "pnReplacement": "Material number replacement",
1238
+ "snAddStart": "Serial number starts",
1239
+ "snAddEnd": "End of sequence number",
1240
+ "snWasBinded": "The serial number has been bound to other material numbers",
1241
+ "snExcelLimitOnePn": "Excel imports only one material number",
1242
+ "pnNotUseProdNum": "The material number binding cannot use the metaword containing the work order number, please confirm the serial number rules",
1243
+ "generatedCount": "[{count}] pen serial numbers have been generated",
1244
+ "selectPnWarn": "Please select the material number",
1245
+ "needGenFirst": "Please generate this [{partSerialNumber}] serial number first",
1246
+ "serialNumberQuery": "Serial Number Query",
1247
+ "snNameAlreadyExist": "The SN name already exists.",
1248
+ "materialName": "Material Name",
1249
+ "getDetail": "Detail",
1250
+ "networkError": "Network or Host Exception",
1251
+ "mutiSelect": "Multiple selection",
1252
+ "level": "Level",
1253
+ "columnName": "Column Name",
1254
+ "workOrderLevel": "Work Order Level",
1255
+ "makeType": "Make Type",
1256
+ "rebatchSplitting": "Rebatch Splitting",
1257
+ "saveBatch": "Save Changes",
1258
+ "partNumberHasNoRuleSetting": "No batch number rule is set for this material.",
1259
+ "batchNumberRule": "Batch Number Rule",
1260
+ "batchRuleName": "Batch Number Rule Name",
1261
+ "batchNumberRuleSetting": "Batch Number Rule Setting",
1262
+ "batchNumberPreview": "Batch Number Preview",
1263
+ "batchCount": "The number of batch",
1264
+ "batchCountLimit": "The number of batch must be greater than 0",
1265
+ "batchNameAlreadyExist": "The batch number rule name already exists",
1266
+ "illegalEmpty": "Cannot be empty",
1267
+ "exportData": "Export Data",
1268
+ "group": "Group",
1269
+ "getProductRouteListError": "Get product route list error.",
1270
+ "use": "Enable",
1271
+ "productRouteName": "Product Route Name",
1272
+ "processInfo": "Process Information",
1273
+ "showMore": "Show More",
1274
+ "customCol": "Custom Field",
1275
+ "finishProduct": "Finished",
1276
+ "semiFinishProduct": "Semi-Finish",
1277
+ "knives": "Tools",
1278
+ "item": "Item",
1279
+ "batchQrcode": "Batch QRcode",
1280
+ "operationEmp": "Operator",
1281
+ "operationTime": "Operation Time",
1282
+ "searchSetting": "Conditional Search",
1283
+ "conditionName": "Condition Name",
1284
+ "defaultValue": "Default Value",
1285
+ "workOrderEquipment": "Machine Group/Machine Station",
1286
+ "processOrderProgressStatus": "Progress Status(process order)",
1287
+ "past": "Past",
1288
+ "future": "Next",
1289
+ "current": "Current",
1290
+ "timeLine": "Time Line",
1291
+ "timeUnit": "Time Unit",
1292
+ "customColSetting": "Custom field settings",
1293
+ "orderLevel": "Production order level",
1294
+ "string": "Input",
1295
+ "singleSelect": "Selection",
1296
+ "date": "Date",
1297
+ "yearMonthDate": "Year-Month-Date",
1298
+ "productionOrderStatus": "Order Status",
1299
+ "productionOrderStatusList": "Order Status",
1300
+ "processOrderStatusList": "Progress Status",
1301
+ "inProgress": "In Progress",
1302
+ "craftPathName": "Craft Path",
1303
+ "productionProcessName": "Process Name",
1304
+ "productionProcessNumber": "Process number",
1305
+ "sourceType": "Cloud Import",
1306
+ "sourceTypeList": "Cloud Import",
1307
+ "processOrderLastModify": "process order update time",
1308
+ "processOrderRemark": "Remarks",
1309
+ "goodAndDefectiveCount": "Total number of good/defective products",
1310
+ "getDataError": "Get data error",
1311
+ "getCustomColFail": "Get custom column fail",
1312
+ "workOrderExpectedStartDate": "Expected Start Date(work order)",
1313
+ "workOrderExpectedEndDate": "Expected Due Date(work order)",
1314
+ "workOrderProgressStatus": "Progress Status(work order)",
1315
+ "productionOrderConsDate": "Creation Date(Order)",
1316
+ "serialNumberCount": "Bound Number",
1317
+ "isCriticalProcess": "Critical Process",
1318
+ "empName": "Personnel",
1319
+ "excelImportLimit1000Rows": "The number of data must not exceed 1000.",
1320
+ "productionOrder": "Production Work Order",
1321
+ "productionManagementSetting": "Production Management Setting",
1322
+ "sequenceNumberHierarchy": "Sequence Number Hierarchy",
1323
+ "serialNumberHistory": "Serial Number History",
1324
+ "alter": "Change",
1325
+ "jobDescription": "Job Description",
1326
+ "bindWorkOrders": "Bind Work Orders",
1327
+ "unbindWorkOrders": "Nnbind Work Orders",
1328
+ "bindingPartNumber": "Binding part number",
1329
+ "unbindingMaterialNumber": "Unbinding material number",
1330
+ "changeBindingMaterialNumber": "Binding part number",
1331
+ "numberManagement": "Number Management",
1332
+ "batchCountLimitInteger": "The quantity of work order splitting batches must be an integer",
1333
+ "allRecordsNum": "There are a total of {total} records",
1334
+ "selectedRecordsNum": "{selectedNum} have been selected",
1335
+ "currentCount": "This page has {currentSize} records",
1336
+ "dragFileHereOr": "Drag the file here, or",
1337
+ "clickToUpload": "Click to upload",
1338
+ "pleaseEnterQualifiedHyperlink": "Please enter a qualified hyperlink",
1339
+ "pleaseCheckUploaded": "Please check if the form items with * attachments have not been uploaded",
1340
+ "numberUploadsCannotExceed5": "The number of uploads cannot exceed 5",
1341
+ "uploadFileSize20MB": "Upload file size must be less than 20MB!",
1342
+ "downloadSuccessful": "Download Successful",
1343
+ "dateRangeArea": "Date Range",
1344
+ "annex": "Annex",
1345
+ "radioButton": "Radio Button",
1346
+ "checkBoxButton": "Check Box",
1347
+ "customFieldIDIsIllegal": "Custom field ID is illegal",
1348
+ "illegalDocumentType": "Illegal document type",
1349
+ "customFieldsAreRequired": "Custom fields are required",
1350
+ "customTextCannotExceed50Characters": "Custom text cannot exceed 50 characters",
1351
+ "customNumbersExceed15Characters": "Custom numbers cannot exceed 15 characters",
1352
+ "customHyperlinkFillingIsIllegal": "Custom hyperlink filling is illegal",
1353
+ "customSingleChoiceFillingIsIllegal": "Custom single choice filling is illegal",
1354
+ "customMultipleChoiceFillingIsIllegal": "Custom multiple choice filling is illegal",
1355
+ "illegalCustomTimeFilling": "Illegal custom time filling",
1356
+ "illegalFillingCustomTimeInterval": "Illegal filling of custom time interval",
1357
+ "customNumberFillingIsIllegal": "Custom number filling is illegal",
1358
+ "ProductionOrderExpectedStartDateLatterThanDueDate": "Expected due time(Work order number)>=Expected start time(Work order number)",
1359
+ "alreadyOverdue": "Already Overdue",
1360
+ "materialCategory": "Material Category",
1361
+ "materialProperties": "Material Properties",
1362
+ "materialStatus": "Material Status",
1363
+ "mainSupplierName": "Main supplier name",
1364
+ "duplicateColumnData": "The data in this field has been entered, please select another field",
1365
+ "progressCheck": "Progress Check",
1366
+ "maxSupportedSimultaneousEdits": "Supports up to 20 work orders to be edited simultaneously!",
1367
+ "unableToEditClosedTickets": "Work orders with a 'closed' status cannot be edited multiple times",
1368
+ "supportReopenClosedTickets": "Only work orders that have been closed support anti closure",
1369
+ "undistributedOrder": "Only work orders in the 'unassigned' status support delivery",
1370
+ "unstartedOrderSupportsReturn": "Only work orders in the 'not yet started' status support returning",
1371
+ "pleaseSelectWorkOrder": "Please select a work order first",
1372
+ "retreatSuccess": "Returned Successfully",
1373
+ "currentTicketClosed": "The current work order has been closed",
1374
+ "closedTicketConfirmation": "The closed work order will not be able to perform any operations. Are you sure you want to close it?",
1375
+ "closeSuccess": "Close Successfully",
1376
+ "antiCloseSuccess": "Anti closure successful",
1377
+ "importExcelData": "Excel Import",
1378
+ "multiTaskEdit": "Multi work order editing",
1379
+ "batchUpdate": "Batch Update",
1380
+ "deliveryOrder": "Delivery work order",
1381
+ "returnWorkOrder": "Return work order",
1382
+ "antiClose": "Anti Closure",
1383
+ "newMaterial": "Add new materials",
1384
+ "deleteMaterial": "Delete Material",
1385
+ "workOrderList": "Work order list",
1386
+ "workOrderCustomRequiredFields": "Please check the required fields for customizing the work order",
1387
+ "workOrderInfoSavedSuccessfully": "Work order information saved successfully",
1388
+ "workOrderInfoSaveFailed": "Failed to save work order information",
1389
+ "isConfirmCancel": "Please confirm whether to cancel?",
1390
+ "ticketCorrespondingInfo": "Please check the information corresponding to the work order {workOrderNumber}",
1391
+ "attachmentUpload": "Attachment Upload",
1392
+ "workOrderNumbers": "Work order number",
1393
+ "currentTableHasNoTickets": "There are currently no work orders in the table",
1394
+ "expectedStartDay": "Expected commencement date",
1395
+ "expectedCompletion": "Expected completion date",
1396
+ "salesOrderNumber": "Pre sales order number",
1397
+ "checkWorkOrderRequiredFields": "Please check the required fields on the work order",
1398
+ "duplicateWorkOrderId": "There are duplicate work order numbers",
1399
+ "productionStation": "Production Workstation",
1400
+ "productionEquipment": "Production Equipment",
1401
+ "remainingProcessCannotDelete": "There is currently only one process left, which cannot be deleted",
1402
+ "selectionNumber": "Number Selection",
1403
+ "identificationName": "Number and name",
1404
+ "codePreview": "Number Preview",
1405
+ "selectNumberingRuleFirst": "Please select the numbering rule first",
1406
+ "creationTimeRange": "Create time interval",
1407
+ "expectedConstructionStartDateRange": "Expected start date interval",
1408
+ "batchUpdateContent": "Batch update content",
1409
+ "batchUpdateSuccessful": "Batch update successful",
1410
+ "batchUpdateFailed": "Batch update failed",
1411
+ "failedToObtainSubWorkOrdersForTheProcess": "Failed to obtain sub work orders for the process",
1412
+ "fillInTheBatchUpdateDataFirst": "Please fill in the batch update data first",
1413
+ "selectTheFieldNameFirst": "Please select the field name first",
1414
+ "noAttachment": "Attachment cannot be modified",
1415
+ "integerBitsMustNotExceed10Digits": "Integer bits must not exceed 10 digits",
1416
+ "notExceeding30Characters": "Not exceeding 30 characters",
1417
+ "notExceeding50Characters": "Not exceeding 50 characters",
1418
+ "modifyMaterial": "Modify Materials",
1419
+ "workstationData": "Contains workstation data, this option cannot be empty",
1420
+ "nextWorkstationInfo": "Update failed, please check the workstation information corresponding to the process under the work order",
1421
+ "closedTicketsUpdate": "The 'closed' plan cannot be updated in bulk",
1422
+ "workOrderGenerationFail": "Work order number generation failed",
1423
+ "materialNoImage": "This material has no image preview available",
1424
+ "materialDetails": "Material Details",
1425
+ "confirmToDeleteAction": "Please confirm whether to delete it?",
1426
+ "startDateIsAfterEndDate": "Expected start date greater than expected completion date",
1427
+ "completionDateBeforeStartDate": "Expected completion date is less than the expected start date",
1428
+ "processInfoIncorrect": "Please check the process information",
1429
+ "pleaseSelectData": "Please select data first",
1430
+ "circulationTagNumber": "Circulation tag number",
1431
+ "numberOfTags": "Quantity of each circulation card",
1432
+ "numberRuleName": "Number Rule Name",
1433
+ "previewOfNumberingRules": "Preview of numbering rules",
1434
+ "batchIssuanceQuantity": "Batch issuance quantity",
1435
+ "manuallyAddCirculationLabels": "Manually add circulation labels",
1436
+ "batchIssuanceOfCirculationLabels": "Batch issuance of circulation labels",
1437
+ "bindFlowLabelList": "Bind flow label list",
1438
+ "labelingIssuance": "Labeling Issuance",
1439
+ "tagPreview": "Tag Preview",
1440
+ "unbindSuccessfully": "Unbind Successfully",
1441
+ "closeAddTagNumber": "If cancelled, the newly added tags will not be saved. Are you sure you want to cancel?",
1442
+ "countOfTags": "Number of tags",
1443
+ "exportLabelIssuanceTemplate": "If the number of labels is not filled in, it defaults to 1",
1444
+ "theFileSizeCannotExceed5Mb": "The file size cannot exceed 5MB",
1445
+ "duplicateCirculationTagNumber": "There are duplicate circulation tag numbers, please adjust them again",
1446
+ "onlySupportsPositiveIntegers": "Only supports positive integers",
1447
+ "insufficientNumberOfBindingsAvailable": "The current number of bindings is insufficient, please adjust again",
1448
+ "flowLabelSpecification": "The circulation tag number only supports inputting uppercase and lowercase English letters and numbers, and cannot have spaces",
1449
+ "duplicateCirculationTagNumberWithNewlyAddedData": "Duplicate circulation tag number with newly added data",
1450
+ "batchUnbinding": "Batch Unbinding",
1451
+ "pleaseSelectTheBoundLabelFirst": "Please select the bound label first",
1452
+ "areYouSureToUnbind": "The label will take effect immediately after unbinding. Are you sure you want to unbind it?",
1453
+ "batchUnbindingSuccessful": "Batch unbinding successful",
1454
+ "pleaseSelectUnboundTagsFirst": "Please select unbound tags first",
1455
+ "batchDeletionSuccessful": "Batch deletion successful",
1456
+ "cannotSaveInPreviewState": "Cannot save in preview state",
1457
+ "generate": "Generate",
1458
+ "remainingBindingQuantity": "The remaining number of available bindings is",
1459
+ "theCirculationTagNumberIsAUniqueCodeAndCannotBeDuplicated": "The circulation tag number is a unique code and cannot be duplicated",
1460
+ "insufficientRemainingIssuableQuantity": "Insufficient remaining issuable quantity",
1461
+ "thereIsNoCirculationLabelNumberingRule": "There is no circulation label numbering rule",
1462
+ "boundQuantity": "Bound Quantity",
1463
+ "successfullyGenerated": "Successfully Generated",
1464
+ "generationFailed": "Generation Failed",
1465
+ "selectTheCirculationTagNumber": "Please select the circulation tag number",
1466
+ "duplicateFileNameExistingFile": "Duplicate file name, do you want to overwrite the existing file?",
1467
+ "materialLabelIssuance": "Material label issuance",
1468
+ "labelType": "Label Type",
1469
+ "labelSourceObject": "Label source object",
1470
+ "tagsNumber": "Number of tags",
1471
+ "latestLabelIssuer": "Latest issuer of tags",
1472
+ "latestLabelReleaseTime": "Latest release date of tags",
1473
+ "labelIssuer": "Label Issuer",
1474
+ "labelReleaseTime": "Label issuance time",
1475
+ "materialLabel": "Material Label",
1476
+ "noType": "No Type",
1477
+ "materialMasterData": "Material master data",
1478
+ "tagSourceNumber": "Tag source number",
1479
+ "tagNumberingRules": "Tag numbering rules",
1480
+ "rowExport": "Export",
1481
+ "labelIssuanceSource": "Source of label issuance",
1482
+ "manuallyAddTags": "Manually add tags",
1483
+ "tagNumber": "Tag Number",
1484
+ "quantityPerLabel": "Quantity per label",
1485
+ "batchReleaseLabels": "Batch release labels",
1486
+ "labelRulesPreview": "Preview of label rules",
1487
+ "productionWorkOrderNumber": "Production work order number",
1488
+ "labelImportTemplate": "Label import template",
1489
+ "excelTemplateFields": "Template Fields",
1490
+ "orderNotExist": "Production work order number does not exist",
1491
+ "materialNotExist": "Material number does not exist",
1492
+ "releaseTagsList": "List of Release Tags",
1493
+ "selectMaterialMasterData": "Select material master data",
1494
+ "selectProductionWorkOrder": "Select production work order",
1495
+ "return": "Return",
1496
+ "confirmReturn": "Confirm Return?",
1497
+ "returnTip": "Are you sure to cancel",
1498
+ "deleteTagEmptyMsg": "Please select the label to be deleted first",
1499
+ "deleteTagTip": "The tag will take effect immediately after deletion. Are you sure you want to confirm the deletion?",
1500
+ "plsSelectLabelSource": "Please select the source of label issuance",
1501
+ "documentNumber": "Document Number",
1502
+ "productionTagExcelTemplate": " Importing document labels template",
1503
+ "materialTagExcelTemplate": "Material label import template",
1504
+ "tagExcelTemplate": "Label import template",
1505
+ "firProductionTip": "Please fill in the corresponding document number in the document number field",
1506
+ "secProductionTip": "The different document numbers imported will be automatically split and summarized",
1507
+ "firMaterialTip": "Please fill in the corresponding material number in the material number field",
1508
+ "secMaterialTip": "The different material numbers imported will be automatically split and summarized",
1509
+ "firDefaultTip": "The tag number field cannot be repeated",
1510
+ "secDefaultTip": "If the number of labels is not filled in, it defaults to 1 when importing",
1511
+ "labelReplacementBinding": "Label replacement binding",
1512
+ "availableRemainingNumber": "The remaining number of available bindings is",
1513
+ "noAvailableNumber": "Insufficient remaining issuable quantity, please re-enter",
1514
+ "tagChangeBindingMsg": "Tag change binding cannot be selected multiple times",
1515
+ "tagSelectBindingMsg": "Please select the data with the signing source object being 'Production Work Order' or 'Material Master Data' for data conversion and binding",
1516
+ "successfullyChangedBinding": "Successfully changed binding",
1517
+ "orderNotChange": "Production work order number not modified",
1518
+ "productNumNotChange": "Unmodified material number",
1519
+ "columnNotLessSix": "The minimum number of columns on the page should not be less than 6",
1520
+ "columnFrozenFour": "Up to 4 columns of data can be frozen",
1521
+ "selectBindData": "Please select the data that needs to be re bound first",
1522
+ "tagPublishQR": "Material Label",
1523
+ "plsSelectData": "Please select data",
1524
+ "printTag": "Label Printing",
1525
+ "positiveInteger": "Please enter a positive integer",
1526
+ "onlyUseOneTag": "Only one work order can be tagged at a time",
1527
+ "closedTicketsNotIssueTags": "Closed tickets cannot issue tags",
1528
+ "selectData": "Please select data first",
1529
+ "endDate": "End Date",
1530
+ "selectPrintingTemplate": "Select printing template",
1531
+ "printTemplateName": "Template Name",
1532
+ "templatesSystem": "The system has built-in templates",
1533
+ "size": "Size",
1534
+ "printedFirstData": "Please select the data to be printed first",
1535
+ "numberExceedsLimit": "The coding principle has exceeded the upper limit. Please go to the numbering rule setting in the factory modeling",
1536
+ "submitReviewSettings": "Submit/Review Settings",
1537
+ "productionPlanSetting": "Production plan setting",
1538
+ "salesOrderSetting": "Sales Order Setting",
1539
+ "autocommit": "autocommit",
1540
+ "automaticReview": "Automatic Review",
1541
+ "automaticallySubmitAndReview": "Automatically submit and review",
1542
+ "planExcelExport": "Excel Export",
1543
+ "productionPlanNumberCannotBeRepeated": "1.The production plan number cannot be duplicated. If not entered, the system will automatically generate it according to the numbering rules corresponding to the production plan after importing",
1544
+ "enterTheCorrespondingProcessPathNameInTheProcessPathField": "2.Enter the corresponding process path name in the process path field",
1545
+ "afterFillingInTheRequiredFields": "3.After filling in the required fields, you can proceed with the import",
1546
+ "planToImportTemplate": "Plan to import template",
1547
+ "productionPlanImportTemplate": "Production plan import template",
1548
+ "productionPlanNumber": "Production Plan Number",
1549
+ "plannedQuantity": "Planned Quantity",
1550
+ "requestDeliveryDate": "Request delivery date",
1551
+ "plannedCommencementDate": "Planned commencement date",
1552
+ "plannedCompletionDate": "Planned completion date",
1553
+ "fatherPlanNumber": "Father Plan Number",
1554
+ "mainPlanNumber": "Main Plan Number",
1555
+ "submittedFirst": "Please select the data to be submitted first",
1556
+ "submissionFailed": "Submission failed, documents in pending submission status can only be submitted",
1557
+ "pendingSubmissionStatusSubmission": "Only documents in the pending submission status can be submitted, and the following plan statuses are not met:",
1558
+ "resubmittedFirst": "Please select the data that needs to be resubmitted first",
1559
+ "antiSubmissionFailed": "Failed to resubmit, only documents in the pending review status can be resubmitted",
1560
+ "pendingReviewStatusForResubmission": "Only documents in the pending review status can be resubmitted. The following plan statuses are not met:",
1561
+ "reviewedFirst": "Please select the data that needs to be reviewed first",
1562
+ "auditFailed": "Approval failed, documents in pending approval status can only be approved",
1563
+ "pendingStatusReview": "Only documents in the pending approval status can be approved. The following plan statuses are not met:",
1564
+ "resubmittedSuccess": "Reverse submission successful",
1565
+ "reviewedSuccess": "Audit Successful",
1566
+ "auditedSuccess": "Anti audit successful",
1567
+ "closedSuccess": "Close Successfully",
1568
+ "antiClosureSuccess": "Anti closure successful",
1569
+ "auditedFirst": "Please select the data that needs to be de audited first",
1570
+ "antiAuditFailed": "Anti audit failed, only documents in the approved state can be de audited",
1571
+ "reviewedStatusUnapproved": "Only documents in the approved status can be unapproved. The following plan statuses are not met:",
1572
+ "closedFirst": "Please select the data to be closed first",
1573
+ "shutdownReason": "Shutdown Reason",
1574
+ "fillInTheReasonForClosure": "Please fill in the reason for closure",
1575
+ "reverseClosedFirst": "Please select the data that needs to be reverse closed first",
1576
+ "antiClosureFailed": "Failed to close, only documents in closed status can be closed",
1577
+ "closedStatusReverseClosure": "Only documents that are in a closed state can be de closed. The following plan states are not met:",
1578
+ "deletedFirst": "Please select the data to be deleted first",
1579
+ "deleteFailed": "Delete failed, only documents in pending submission status can be deleted",
1580
+ "toBeSubmittedStatusDeleted": "Documents in the pending submission status can only be deleted, and the following plan statuses are not met:",
1581
+ "planStatus": "Plan Status",
1582
+ "bomVersion": "BOM version",
1583
+ "remainingPlanCount": "Remaining planned quantity",
1584
+ "completionQuantity": "Completed Quantity",
1585
+ "orderQuantity": "Order Quantity",
1586
+ "workStartDate": "Actual commencement date",
1587
+ "workEndDate": "Actual completion date",
1588
+ "creationDate": "Creation Date",
1589
+ "submitter": "Presenter",
1590
+ "submitTime": "Submission Time",
1591
+ "avoidSubmitter": "Anti Submitter",
1592
+ "antiSubmitTime": "Reverse submission time",
1593
+ "antiReviewer": "Anti Reviewer",
1594
+ "antiReviewTime": "Anti audit time",
1595
+ "closePerson": "Close People",
1596
+ "closeTime": "Closing Time",
1597
+ "antiClosePerson": "Anti closure person",
1598
+ "antiCloseTime": "Anti closing time",
1599
+ "treatSubmit": "To be submitted",
1600
+ "treatAudit": "Pending Approval",
1601
+ "minColumnCountInPage": "The minimum number of columns on the page should not be less than 6",
1602
+ "maxFrozenCols": "Up to 4 columns of data can be frozen",
1603
+ "adjustNumber": "Adjust Quantity",
1604
+ "exportOfProductionPlan": "Export of production plan",
1605
+ "productionWorkOrderRemittance": "Production work order remittance",
1606
+ "selectPlanFirst": "Please select a plan first",
1607
+ "closedPlansUpdate": "Only 'pending submission' or 'pending review' work orders can be batch updated",
1608
+ "planLevel": "planning hierarchy",
1609
+ "mustBeAPositiveInteger": "Must be a positive integer",
1610
+ "materialAlreadyExists": "The material already exists, adding failed, please select again!",
1611
+ "checkPlanCorrespondingInfo": "Please check the information corresponding to plan {planNumber}",
1612
+ "pendingSubmitEditable": "Only for submission, the plan awaiting review can be edited",
1613
+ "maxEditPlans": "Supports editing up to 20 plans simultaneously",
1614
+ "planList": "Plan List",
1615
+ "productBomList": "Product bom list",
1616
+ "checkPlanCustomFields": "Please check the custom fields in the plan",
1617
+ "planInfoSavedSuccess": "Plan information saved successfully",
1618
+ "planInfoSaveFailure": "Failed to save plan information",
1619
+ "addMaterial": "Add Materials",
1620
+ "materialTypeId": "Material Type",
1621
+ "unitUsage": "Quantity Per",
1622
+ "demandQuantity": "Demand Quantity",
1623
+ "inventoryQuantity": "Inventory Quantity",
1624
+ "inventoryStorageQuantity": "Inventory Quantity",
1625
+ "positiveIntegerCheck": "Only positive integers greater than 0 can be input",
1626
+ "bomDeleteValidation": "The current BOM list only has one item left, deletion failed",
1627
+ "standardWorkHourValidation": "The integer bits must not exceed 8, and the decimal places must not exceed 3",
1628
+ "maxTenDigitInt": "Only integers up to 10 digits can be input",
1629
+ "orderQuantityValidation": "Only positive integers up to 10 digits can be input",
1630
+ "planStartDateAfterPlanEndDate": "The planned start date is later than the planned completion date",
1631
+ "planCompletionDateBeforePlanStartDate": "The planned completion date is less than the planned commencement date",
1632
+ "noDataInTable": "There is currently no data available in the table",
1633
+ "checkRequiredFieldsInPlan": "Please check the required fields in the plan",
1634
+ "hasDuplicatePlanId": "There are duplicate plan numbers",
1635
+ "system": "System",
1636
+ "reverseSubmission": "Reverse Submission",
1637
+ "toExamine": "To Examine",
1638
+ "antiAudit": "Anti Audit",
1639
+ "generateWorkOrder": "Generate work order",
1640
+ "adjustNumberValid": "The input box can only input numbers (including positive and negative integers), and can only input up to 10 digits",
1641
+ "noDataCopy": "Please select the data to be copied first",
1642
+ "plannedStartDateIsIllegal": "Filling in the format of the planned start date is illegal",
1643
+ "plannedDueDateIsIllegal": "Filling in the format of the planned completion date is illegal",
1644
+ "productionPlanList": "Production Plan",
1645
+ "productionPlanningProcess": "Production Planning Process",
1646
+ "multiPlanEdit": "Multi plan editing",
1647
+ "maxEditProductionPlans": "Supports editing up to 20 production plans simultaneously!",
1648
+ "editableProductionPlans": "Only production plans in the 'pending submission' and 'pending review' states can be edited with multiple plans. Please select again",
1649
+ "submitTooltip": "Only documents in the pending submission status can be submitted",
1650
+ "reverseSubmitTooltip": "Only documents in the pending review status can be resubmitted",
1651
+ "toExamineTooltip": "Only documents in the pending review status can be reviewed",
1652
+ "autiAuditTooltip": "Only documents in the approved state can be unapproved",
1653
+ "closeTooltip": "Documents in closed status cannot be closed",
1654
+ "antiCloseTooltip": "Only documents that are in a closed state can be de closed",
1655
+ "deleteTooltip": "Only documents in a pending submission status can be deleted",
1656
+ "parentMaterialNotAsChildMaterial": "Parent and child materials cannot be the same",
1657
+ "copyPlan": "Copy Plan",
1658
+ "confirmDelete": "Confirm to delete",
1659
+ "confirmCancel": "Are you sure to cancel?",
1660
+ "changeTagPublishBindFail": "The current production order does not have enough quantity to bind, switching failed!",
1661
+ "pushDown": "Push Down",
1662
+ "associativeQueries": "Associative Queries",
1663
+ "theMinimumColumns6": "The minimum number of columns on the page should not be less than 6",
1664
+ "upTo4ColumnsFrozen": "Up to 4 columns of data can be frozen",
1665
+ "returnQuantity": "Return Quantity",
1666
+ "inboundRemain": "Inventory not yet completed",
1667
+ "listOfDocuments": "List of Documents",
1668
+ "warehousingEntry": "Warehousing Entry",
1669
+ "outboundOrder": "Outbound Order",
1670
+ "warehouseEntryNotice": "Warehouse Entry Notice",
1671
+ "deliveryNotice": "Delivery Notice",
1672
+ "inventoryList": "Inventory List",
1673
+ "listOutboundOrders": "List of outbound orders",
1674
+ "sourceOrderType": "Source order type",
1675
+ "sourceOrderNumber": "Source Order Number",
1676
+ "sourceSingleLineNumber": "Source single line number",
1677
+ "purchaseOrder": "Purchase Order",
1678
+ "movementsName": "Anomalous Type",
1679
+ "changeFile": "Alterative File",
1680
+ "itemNoName": "Material number/Material name",
1681
+ "storageSpace": "Storage Location",
1682
+ "aberrationTime": "Aberration Time",
1683
+ "productionInventoryPreset": "Production inventory (preset)",
1684
+ "productionReturnMaterialPreset": "Production return material (preset)",
1685
+ "productionMaterialRequisitionPreset": "Production material requisition (preset)",
1686
+ "productionReturnPreset": "Production return (preset)",
1687
+ "warehouseNumber": "Warehouse Number",
1688
+ "storage_nameForm": "Storage Name",
1689
+ "storageLocationNumber": "Storage location number",
1690
+ "materialId": "Material No",
1691
+ "change_amount": "Number of changes",
1692
+ "productionReceipt": "Production Receipt",
1693
+ "selectDocument": "Select Document",
1694
+ "productionMaterialRequisitionForm": "Production Material Requisition Form",
1695
+ "theWorkOrderNotBOMListDown": "The work order does not have a BOM list, so the production material requisition cannot be pushed down",
1696
+ "pleaseSelectDownFirst": "Please select the data to be pushed down first",
1697
+ "crossDocumentNotSupported": "Cross document push is not supported",
1698
+ "downFailedDocumentsClosedState": "Push down failed, documents in closed state cannot be pushed down",
1699
+ "pleaseFirstSelectQuery": "Please first select the data that needs to be associated with the query",
1700
+ "crossDocumentQueryNotSupported": "Cross document query is not supported",
1701
+ "defaultStoragePreset": "Default warehouse (preset)",
1702
+ "productBOMList": "Product BOM List",
1703
+ "inventorySurplusReceiptPreset": "Inventory surplus storage (preset)",
1704
+ "inventoryLossOutboundPreset": "Inventory loss outbound (preset)",
1705
+ "frozenInventoryPreset": "Freeze inventory (preset)",
1706
+ "removeFrozenInventoryPreset": "Remove frozen inventory (preset)",
1707
+ "salesOutboundPreset": "Sales outbound (preset)",
1708
+ "otherOutboundPreset": "Other outbound (preset)",
1709
+ "purchaseReturnMaterialPreset": "Purchase return material (preset)",
1710
+ "purchaseInventoryPreset": "Purchase inventory (preset)",
1711
+ "salesReturnsPreset": "Sales returns (preset)",
1712
+ "otherInventoryPreset": "Other inventory (preset)",
1713
+ "startDates": "Start Date",
1714
+ "endDates": "End Date",
1715
+ "selectedRangeNotExceedMAXdays": "The selected time range cannot exceed {MAX_DAYS} days",
1716
+ "materialTypes": "Material Type",
1717
+ "quantityOfMaterialsUsed": "Quantity of materials used",
1718
+ "outboundQuantity": "Outbound Quantity",
1719
+ "unfinishedOutbound": "Unfinished Outbound",
1720
+ "inventoryQuantitys": "Inventory Quantity",
1721
+ "automaticMaterialSuccessful": "Automatic material requisition successful",
1722
+ "inventoryChangeDocNumber": "Inventory change document number",
1723
+ "workNotProductBOM": "The work order has not yet maintained the product BOM, unable to automatically pick up materials, and dispatching has failed",
1724
+ "insufficientInventory": "Insufficient material inventory, dispatch failed, please replenish inventory first",
1725
+ "selectPrintDoc": "Select to print documents",
1726
+ "equipmentSchedule": "EquipmentSchedule",
1727
+ "workOrderSchedule": "workOrderSchedule",
1728
+ "programmeSetting": "Schedule setting",
1729
+ "Date": "Day",
1730
+ "monday": "Monday",
1731
+ "tuesday": "Tuesday",
1732
+ "wednesday": "Wednesday",
1733
+ "thursday": "Thursday",
1734
+ "friday": "Friday",
1735
+ "saturday": "Saturday",
1736
+ "sunday": "Sunday",
1737
+ "subWorkorderLinkage": "Sub work order linkage",
1738
+ "linkageMode": "Linkage mode",
1739
+ "moveAllProcessesTogether": "Move all processes together",
1740
+ "allSubWorkOrderLinkage": "Only this process is linked to all sub work orders under the subsequent process",
1741
+ "displayAbnormalContentDuringLinkage": "Display abnormal content during linkage",
1742
+ "display": "Display",
1743
+ "donotDisplay": "Do not display",
1744
+ "adjustmentLinkedToSameEquipment": "Adjustment linked to the same equipment work order",
1745
+ "adjustMode": "Adjust mode",
1746
+ "adjustPrevious": "Adjustment of previous work order",
1747
+ "adjustBehind": "Post work order adjustment",
1748
+ "simultaneouslyAdjusted": "Simultaneous adjustment of front/back work orders",
1749
+ "rangeOfInfluence": "Range of influence",
1750
+ "dispatchProcessLocking": "Dispatch process locking",
1751
+ "sortReset": "Sort Reset",
1752
+ "workOrderEidt": "Work order edit",
1753
+ "splitTask": "Split task",
1754
+ "splitNumber": "Split number",
1755
+ "split": "Split",
1756
+ "statusColorDescription": "Status color description",
1757
+ "noDispatchDesc": "All unassigned work orders within the date range",
1758
+ "noStartDesc": "All work orders that have not yet started within the date range",
1759
+ "underExecutionDesc": "All work orders that have already started within the date range",
1760
+ "finishedDesc": "All completed work orders within the date range",
1761
+ "closedDesc": "All closed work orders within the date range",
1762
+ "alreadyOverdueDesc": "All overdue work orders within the date range",
1763
+ "productpartNumber": "Product part number",
1764
+ "productname": "Product name",
1765
+ "splitTip": "The splitting quantity cannot exceed the original work order quantity",
1766
+ "updateNotification": "Update notifications",
1767
+ "updateNotice": "Update the following work order content in a linked manner",
1768
+ "segmentCode": "Segment code",
1769
+ "station": "Work station",
1770
+ "equipment": "Equipment",
1771
+ "old": "Old",
1772
+ "new": "New",
1773
+ "splitNumberTip": "Please enter a positive integer less than or equal to the required quantity of the original work order",
1774
+ "sourceOrderNo": "Source Order Number",
1775
+ "isVerifiedOrExecutingOrFinished": "Only production plans in the 'approved', 'in progress', or 'completed' status support generating work orders. Please select again!",
1776
+ "menuImport": "Menu Import",
1777
+ "selectProductionPlan": "Select Production Plan",
1778
+ "Self": "Homemadeware",
1779
+ "Purchase": "Purchased Parts",
1780
+ "None": "None",
1781
+ "workingHoursCaculate": "Calculation of working hours",
1782
+ "calculationSetting": "Calculation Setting",
1783
+ "automaticSchedulingSetting": "Automatic scheduling setting",
1784
+ "startingStationStartTime": "Starting time of the starting station",
1785
+ "beatPointStartTime": "Starting time at the beat point",
1786
+ "completionStationStartTime": "Completion station start time",
1787
+ "fillDateTimeCompletely": "Please fill in the date and time completely",
1788
+ "calculationSuccess": "Work hour calculation successful",
1789
+ "calculationFail": "Calculation of working hours failed",
1790
+ "plsFillStartEndTime": "Please fill in the expected start date and expected completion date",
1791
+ "plsSetInfo": "Please set complete information first",
1792
+ "batchClose": "Batch Closure",
1793
+ "planNumGenerateFail": "Production plan number generation failed",
1794
+ "daily": "Day",
1795
+ "printPreview": "Print Preview",
1796
+ "printClientInstall": "Print client installation",
1797
+ "batchPrintClient": "Before batch printing, you need to install the printing client and configure the default printer. Please click to download",
1798
+ "selectMaterials": "Select Materials",
1799
+ "inventorySetting": "Inventory Setting",
1800
+ "basicField": "Basic Field",
1801
+ "unitSetting": "Unit Setting",
1802
+ "batchShutdown": "The original batch number rule has been discontinued, please reset it",
1803
+ "imageImport": "Image Import",
1804
+ "enableDefaultRepository": "Enable default repository",
1805
+ "enableShelfLifeManagement": "Enable shelf life management",
1806
+ "outboundWarehouse": "Outbound Warehouse",
1807
+ "shelfLifeUnit": "Shelf life unit",
1808
+ "outboundWarehouseLocation": "Outbound warehouse location",
1809
+ "qualityGuaranteePeriod": "Shelf Life",
1810
+ "reorderPoints": "Reorder Point",
1811
+ "storageWarehouse": "Warehousing Warehouse",
1812
+ "warehouseSelection": "Warehouse Selection",
1813
+ "positionSelection": "Position Selection",
1814
+ "parentCategory": "Parent Category",
1815
+ "sun": "Day",
1816
+ "qualityGuaranteePeriodRulesText": "The input must be greater than 0 and have no decimals, with a maximum of 10 digits",
1817
+ "sixDigitDecimalVerificationRulesText": "The input must be greater than 0, with a maximum of 10 integer digits and 6 decimal digits",
1818
+ "materialNameNoSpace": "There must be no spaces before or after the material name",
1819
+ "batchQueryFailed": "Batch query failed",
1820
+ "tenMbLimit": "The image size limit is 10MB. Please select a new image",
1821
+ "imgFormatError": "The image format does not match. Please select a new image",
1822
+ "chooseFinalCategory": "Please select the final category",
1823
+ "requiredNotEmpty": "Required fields cannot be empty",
1824
+ "continueAddInfo": "Continue to add product information",
1825
+ "storageType": "Warehouse category",
1826
+ "storage_id": "Warehouse Number",
1827
+ "storage_name": "Warehouse Name",
1828
+ "storage_address": "Warehouse Address",
1829
+ "storage_manager": "Warehouse Manager",
1830
+ "storage_phone": "Telephone",
1831
+ "storage": "Warehouse",
1832
+ "editMaterial": "Edit Materials",
1833
+ "unitList": "Unit List",
1834
+ "unitName": "Unit Name",
1835
+ "unitVerify": "The unit does not support special characters",
1836
+ "unitRepeat": "Duplicate material units",
1837
+ "deleteUnit": "Do you want to delete the current unit",
1838
+ "customerCode": "Customer Code",
1839
+ "customerAbbreviation": "Customer Abbreviation",
1840
+ "contacts": "Contacts",
1841
+ "contactNumber": "Contact Number",
1842
+ "contactAddress": "Contact Address",
1843
+ "email": "Email",
1844
+ "fax": "Fax",
1845
+ "area": "Area",
1846
+ "detailedAddress": "Detailed Address",
1847
+ "filePreview": "File Preview",
1848
+ "generateNumber": "If not filled in, it will be automatically generated when saving",
1849
+ "systemTag": "System Label",
1850
+ "cancelTip": "If cancelled, all modifications made this time will not be saved. Are you sure you want to cancel",
1851
+ "materialNumberGeneration": "If not filled in, it will be automatically generated according to the default rules when saving",
1852
+ "unitVerification": "The input must be greater than 0, with a maximum of 6 decimal places",
1853
+ "customTextCannotExceed200Characters": "Custom text cannot exceed 200 characters",
1854
+ "unitUsed": "The current unit is in use and cannot be deleted",
1855
+ "orderDateRules": "Please select the order date",
1856
+ "name": "Name",
1857
+ "salesCategory": "Sales Category",
1858
+ "orderDate": "Order Date",
1859
+ "materialNumber": "Material Number",
1860
+ "ThisOutboundQuantity": "Outbound Quantity",
1861
+ "outboundRemaining": "Outbound Remaining",
1862
+ "customerOrderNumber": "Customer Order Number",
1863
+ "salesEmp": "Sales Emp",
1864
+ "followEmp": "Follow Emp",
1865
+ "dispatchLocation": "Dispatch Location",
1866
+ "salesBatchNumber": "Sales Batch Number",
1867
+ "customerModelCode": "Customer Model Code",
1868
+ "customerProductCode": "Customer Product Code",
1869
+ "cartons": "Cartons",
1870
+ "quantityPerCarton": "Quantity Per Carton",
1871
+ "salesRemark": "Sales Remark",
1872
+ "materialRemark": "Material Remark",
1873
+ "priceIncludingTax": "Price Including Tax",
1874
+ "priceExcludingTax": "Price Excluding Tax",
1875
+ "amountIncludingTax": "Amount Including Tax",
1876
+ "amountExcludingTax": "Amount Excluding Tax",
1877
+ "createEmpName": "Create Emp Name",
1878
+ "auditEmpName": "Audit Emp Name",
1879
+ "auditTime": "Audit Time",
1880
+ "pushPlanNum": "Push Plan Num",
1881
+ "pushEmpNum": "Push Emp Num",
1882
+ "plsSelectSaleOrder": "Please select a sales order first",
1883
+ "standardSales": "Standard Sales",
1884
+ "outsourcedSales": "Outsourced Sales",
1885
+ "salesReturn": "Sales Return",
1886
+ "pendingReview": "Pending Review",
1887
+ "deliveryInProgressFa": "Delivery In Progress",
1888
+ "review": "Review",
1889
+ "materialInventoryInsufficient": "{material} material inventory is insufficient, missing {number}, whether to confirm to create production plan",
1890
+ "materialInventoryInsufficientOrder": "{material} material inventory is insufficient, missing {number}, whether to confirm to create production order",
1891
+ "planNumberIsEmpty": "Production plan number is not maintained, whether to confirm to create production plan",
1892
+ "orderNumberIsEmpty": "Row number is not maintained, whether to confirm to create production order",
1893
+ "remainingAvailableQuantity": "Remaining available quantity",
1894
+ "salesOrderPushDownFailurePrompt": "Sales Order Push Down Failed, Sales Order has already been pushed down to production order, cannot be pushed down to production plan",
1895
+ "salesOrderPushDownFailurePromptDetail": "Sales Order has already been pushed down to production plan, cannot be pushed down to production order",
1896
+ "ticketDeleteConfirmation": "The work order will be permanently deleted and cannot be recovered. Are you sure you want to delete it?",
1897
+ "unassignedWorkOrderCanDelete": "Only unassigned work orders can be deleted",
1898
+ "template": "Template",
1899
+ "materialFile": "Material File",
1900
+ "stockView": "Inventory Inbound",
1901
+ "stockOut": "Inventory Outflow",
1902
+ "operationLog": "Operation Log",
1903
+ "toBeFinished": "to be finished",
1904
+ "viewOperationRecord": "Order operation record",
1905
+ "operationType": "Operation Type",
1906
+ "operationDetails": "Operation Details",
1907
+ "operationTimeInterval": "Operation time interval",
1908
+ "operationTips": "Only retain operation records within six months",
1909
+ "addOrder": "Add Order",
1910
+ "editOrder": "Edit Order",
1911
+ "deleteOrder": "Delete Order",
1912
+ "toBeFinishedTips": "Only work orders that are 'in progress' or 'overdue' can be completed",
1913
+ "toBeFinishedConfirmTips": "The completed work order will not be able to perform any other operations. Can you confirm if it has been completed?",
1914
+ "customerList": "Customer List",
1915
+ "sizeLimitSingleFileIs10MB": "The size limit for a single file is 10MB",
1916
+ "fileIsExitTooltip": "This is an existing file. Are you sure you want to update it?",
1917
+ "fileUpdataTooltip": "File Update Reminder",
1918
+ "numberUploadsCannotExceed10": "The number of uploads cannot exceed 10",
1919
+ "materialPicture": "Material Picture",
1920
+ "materialImages10MBHaveOneImage": "Material images only support importing image type files, with a file size not exceeding 10MB. Each material can only have one image",
1921
+ "upTo10MaterialFilesButFileNotExceed10MB": "Up to 10 material files can be uploaded, with no limit on file types, but each file size should not exceed 10MB",
1922
+ "customer": "Customer",
1923
+ "pleaseSelect": "Please Select",
1924
+ "batchOperation": "Batch Operation",
1925
+ "moreActions": "More Actions",
1926
+ "batchImport": "Batch Import",
1927
+ "batchExport": "Batch Export",
1928
+ "advancedOperation": "Advanced Operations",
1929
+ "parentSpecModel": "Parent Spec Model",
1930
+ "childSpecModel": "Child Spec Model",
1931
+ "manufacturerIDOfPOM": "Manufacturer ID",
1932
+ "businessName": "Business Name",
1933
+ "manufacturerAbbreviationOfPOM": "Manufacturer Abbreviation",
1934
+ "contactOfPOM": "Contact",
1935
+ "contactNumberOfPOM": "Contact Number",
1936
+ "emailOfPOM": "Email",
1937
+ "faxOfPOM": "Fax",
1938
+ "contactAddressOfPOM": "Contact Address",
1939
+ "remarksOfPOM": "Remarks",
1940
+ "manufacturerListOfPOM": "Manufacturer List",
1941
+ "manufacturer": "Manufacturer",
1942
+ "productionOrderProcess": "Production work order (process)",
1943
+ "productionProcessTemplate": "Work order process flow card",
1944
+ "checkBOMList": "Please check the BOM information",
1945
+ "goodStorageWarehouse": "Good storage warehouse",
1946
+ "goodStorageSpace": "Good storage space",
1947
+ "defectiveStorageWarehouse": "Defective storage warehouse",
1948
+ "defectiveStorageSpace": "Defective storage space",
1949
+ "purchaseStorage": "Purchase storage warehouse",
1950
+ "purchaseStorageSpace": "Purchase storage space",
1951
+ "storageImportWarn": "For four warehouses, if one is filled in, the other three are required to be filled in.",
1952
+ "shelfLifeImportWarn": "If one of the 'shelf life unit' and 'shelf life' is filled in, the other must also be filled in",
1953
+ "intervalStart": "Interval Start",
1954
+ "intervalEnd": "Interval End",
1955
+ "viewOperationRecordTxt": "View OperationRecord",
1956
+ "viewOperationRecordTips": "Only retain operation records within the past six months.",
1957
+ "operationTimeRange": "Operation time interval",
1958
+ "newView": "New View",
1959
+ "editView": "Edit View",
1960
+ "copyView": "Copy View",
1961
+ "deleteView": "Delete View",
1962
+ "viewList": "View List",
1963
+ "viewListTips": "Up to 20 views can be created at most",
1964
+ "createView": "Create a View",
1965
+ "viewName": "View Name",
1966
+ "basicInfo": "Basic Information",
1967
+ "dataFilter": "Data Filtering",
1968
+ "dataFilterTips": "The view defaults to displaying data within one year",
1969
+ "viewIcon": "Icon",
1970
+ "viewPermission": "Check Permission",
1971
+ "quarter": "Quarter",
1972
+ "addFilterConditions": "Add filtering conditions",
1973
+ "greaterThan": "Greater Than",
1974
+ "greaterThanOrEqualTo": "Greater than or equal to",
1975
+ "lessThan": "Less Than",
1976
+ "lessThanOrEqualTo": "Less than or equal to",
1977
+ "equalTo": "Equal To",
1978
+ "notEqualTo": " Not equal to",
1979
+ "yesEmpty": " Empty",
1980
+ "notEmpty": " Not Empty",
1981
+ "selectRange": " Select Range",
1982
+ "dynamicFiltering": " Dynamic Screening",
1983
+ "contains": "Contain",
1984
+ "notContains": "Not Included",
1985
+ "inRange": "Within the range",
1986
+ "notInRange": "Not within the range",
1987
+ "isOneOf": "Is one of them",
1988
+ "notAnyOf": "Not any of",
1989
+ "today": "Today",
1990
+ "yesterday": "Yesterday",
1991
+ "thisWeek": "This Week",
1992
+ "lastWeek": "Last Week",
1993
+ "thisMonth": "this Month",
1994
+ "lastMonth": "Last Month",
1995
+ "lastThreeMonths": "Nearly three months",
1996
+ "custom": "Self-Defined",
1997
+ "customRange": "Custom (Range)",
1998
+ "maxValue": "Max Value",
1999
+ "minValue": "Min Value",
2000
+ "moreView": "More View",
2001
+ "viewDeleteTip": "Once deleted, it cannot be restored. Please confirm whether it has been deleted?",
2002
+ "duplicateViewNames": "Duplicate ViewNames",
2003
+ "originalOrderNumber": "Original Order Number",
2004
+ "orderDemander": "Demander",
2005
+ "consUserName": "Creator",
2006
+ "modiUserName": "Update Person",
2007
+ "modiDate": "Update Time",
2008
+ "inboundQuantity": "Inbound Quantity",
2009
+ "originalOrderType": "Original Order Type",
2010
+ "closeNonClosedTickets": "Only supports closing tickets that are not in the 'Closed' status",
2011
+ "selectOperation": "Selection Operation",
2012
+ "startOrEndTime": "Start or end time",
2013
+ "inputText": "Please enter text",
2014
+ "selectOptions": "Please select an option",
2015
+ "timePrecision": "Precision",
2016
+ "selectTime": "Select Time",
2017
+ "pastOrFuture": "Past or future",
2018
+ "selectOperator": "Please select an operator",
2019
+ "inputRangeValue": "Please enter a range value",
2020
+ "inputValidRange": "Please enter a valid range",
2021
+ "startValueCannotGreaterThanEndValue": "The starting value cannot be greater than the ending value",
2022
+ "selectTimeAndPrecision": "Please select time and precision",
2023
+ "selectStartOrEnd": "Please choose a start or end time",
2024
+ "selectTimeRange": "Please select a time range",
2025
+ "selectCompleteTimeRange": "Please select the complete time range",
2026
+ "selectDynamicFilteringType": "Please select the dynamic filtering type",
2027
+ "pleaseInput": "Please Enter",
2028
+ "checkForm": "Please check the form",
2029
+ "closeReason": "Close Reason",
2030
+ "materialFileName": "Material File",
2031
+ "viewEditSuccessful": "The view editing was successful",
2032
+ "adjustDataFiltering": "[{name}] [Data Filtering] has been adjusted",
2033
+ "adjustViewPermission": "[{name}] [View Permission] has been adjusted",
2034
+ "adjustViewName": "[{name}] [View Name] is changed to [{newName}]",
2035
+ "deleteViewSuccessful": "The view has been successfully deleted, and the name of the deleted view is [{name}]",
2036
+ "addViewSuccessful": "New view successfully added, view name is [{name}]",
2037
+ "currentUser": "Current User",
2038
+ "numIntegerExceedTen": "Integer bits cannot exceed 10 bits",
2039
+ "numDecimalExceedSix": "The decimal place cannot exceed 6 digits",
2040
+ "moreFilter": "More Filtering",
2041
+ "addFilterCriteria": "Add filtering criteria",
2042
+ "maxFilterConditions": "At most 10 filtering conditions can be added at a time, please remove other filtering conditions first",
2043
+ "sum": "Total",
2044
+ "resourceType": "Resource Type",
2045
+ "resourceName": "Resource Name",
2046
+ "processResourceList": "Process Resource List",
2047
+ "beatPoint": "Beat Point",
2048
+ "leadTime": "Lead Time",
2049
+ "minimumTransferCount": "Minimum Transfer Quantity",
2050
+ "loadingTime": "Loading Time",
2051
+ "unloadingTime": "Unloading Time",
2052
+ "minimumTimeIntervalMinutes": "Minimum Time Interval (minutes)",
2053
+ "devices": "Devices",
2054
+ "multipleFilesCannotBeSelected": "Multiple files cannot be selected",
2055
+ "zeroPositiveInteger": "Please enter 0 or a positive integer",
2056
+ "checkProcessResource": "Please check the process resource",
2057
+ "checkProcessResourceName": "Please enter the process resource name",
2058
+ "checkCalWorkingHours": "Please check the working hours calculation",
2059
+ "calWorkHour": "Calculation of working hours"
2060
+ }