en-US.js
40.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
export default {
lang: 'English',
type: {
403: 'Sorry, you do not have permission to access this page',
404: 'Sorry, the page you are trying to access does not exist or you do not have permission to access it',
500: 'Sorry, the server encountered an error',
returnHome: 'Return Home'
},
button: {
ok: 'OK',
search: 'Search',
reset: 'Reset',
new: 'New',
bulkNew: 'Bulk New',
edit: 'Edit',
close: 'Close',
delete: 'Delete',
start: 'Start',
stop: 'Stop',
runOnce: 'Run Once',
more: 'More',
details: 'Details',
expand: 'Expand',
collapse: 'Collapse',
select: 'Select',
selected: 'Selected',
item: 'Item',
clearAll: 'Clear All',
import: 'Import',
export: 'Export',
refresh: 'Refresh',
deletingIt: 'Confirm deletion?',
multiSelectActions: 'Multi-select actions',
print: 'Print',
cancel: 'Cancel',
advancedSearch: 'Advanced Search',
submit: 'Submit',
newlyBuilt: 'Newly built',
selectContainer: 'Select Container',
saveSearchCriteria: 'Save Search Criteria',
configuration: 'Configuration',
},
list: {
showing: 'Total Records',
records: ''
},
home: {
todayInventoryTradingVolume: 'Today\'s inventory trading volume',
todayIncomingStockQuantity: 'Today\'s incoming stock quantity',
todayOutgoingStockQuantity: 'Today\'s outgoing stock quantity',
totalInventoryQuantity: 'Total inventory quantity',
inventoryItemCount: 'Inventory item count',
theNumberOfPendingTasks: 'The number of pending tasks',
dailyHistoricalShipmentVolume: 'Daily Historical Volume',
locationUtilizationRate: 'Location Utilization Rate',
hereIsAChart: 'Here is a chart',
onlineInventoryStatus: 'Online Inventory Status',
inventoryOverview: 'Inventory Overview',
},
system: {
saveAndTask: 'Save and Schedule Tasks',
resourceNotFound: 'Sorry, the resource was not found',
reLogin: "Re-Login",
networkTimeout: "Network timeout",
loginExpired: "Sorry, the login has expired. Please log in again",
name: 'Geli Warehouse Management System',
copyright: ' Copyright @2024 Geli Welding Co., Ltd',
accountLoginWithPassword: 'Account Login with Password',
enterYourAccountName: 'Please enter your account name',
enterYourPassword: 'Please enter your password',
selectYourWarehouse: 'Please select your warehouse',
loginFailed: 'Login Failed',
incorrectPassword: 'Incorrect Password',
oldPassword: 'Old Password',
inputOldPassword: 'Please enter old password',
newPassword: 'New Password',
inputNewPassword: 'Please enter new password',
confirmNewPassword: 'Confirm New Password',
inputConfirmNewPassword: 'Please confirm new password',
passwordsDoNotMatch: 'Passwords do not match',
pleaseSelect: 'Please Select',
pleaseSelectStatus: 'Please select status',
languageSettings: 'Language Settings',
themeSettings: 'Theme Settings',
darkModeMenuStyle: 'Dark Mode Menu Style',
lightModeMenuStyle: 'Light Mode Menu Style',
otherSettings: 'Other Settings',
colorBlindnessMode: 'Color Blindness Mode',
multiTabMode: 'Multi-tab Mode',
logout: 'Logout',
welcome: 'Welcome',
welcome2: 'Welcome',
welcomeToEnterThe: 'Welcome to the',
welcomeBack: 'Welcome back',
searchMenu: 'Search menu',
goodMorning1: 'Good morning',
goodMorning2: 'Good morning',
goodAfternoon1: 'Good afternoon',
goodAfternoon2: 'Good afternoon',
goodEvening: 'Good evening',
requestEncounteredError: 'Request encountered an error, please try again later',
noLoggedInUser: 'Currently, there is no logged-in user in the system',
systemMessage: 'System Message',
systemSettings: 'System Settings',
passwordChange: 'Password Change',
home: 'Dashboard',
systemLicenseExpirationDate: 'System License Expiration Date:',
clearCache: 'Clear Cache',
downloadOperationManual: 'Download Operation Manual',
userManualForHuaHengWMS4: 'Geli Warehouse Management System Operations Manual',
startDownloading: 'Start downloading......',
fileDownloadFailed: 'File download failed',
cacheRefreshed: 'Cache Refreshed',
cacheRefreshFailed: 'Cache Refresh Failed',
refresh: "refresh",
closeTheLeftSide: "Close the left side",
closeTheRightSide: "Close the right side",
closeOthers: "Close others",
message: 'Message',
reminder: 'Reminder',
logoutMessage: 'Are you sure you want to log out?',
advancedConditionBuilder: 'Advanced Condition Builder',
filterConditionMatching: 'Filter Condition Matching',
allConditionsMustMatch: 'All conditions must match',
anyConditionMatches: 'Any condition matches',
selectQueryFields: 'Select query fields',
pleaseEnterANumericalValue: 'Please enter a numerical value',
pleaseEnterAValue: 'Please enter a value',
pleaseSelectADate: 'Please select a date',
pleaseSelectATime: 'Please select a time',
pleaseSelectADepartment: 'Please select a department',
pleaseSelectAUser: 'Please select a user',
savedQuery: 'Saved Query',
noQueriesSaved: 'No queries saved',
matchingRules: 'matching rules',
AdvancedQueryConditionsAreInEffect: 'Advanced query conditions are in effect',
noQueryConditions: 'No query conditions',
emptyConditionsCannotBeSaved: 'Empty conditions cannot be saved',
saveNameCannotBeEmpty: 'Save name cannot be empty',
cannotQueryEmptyConditions: 'Cannot query empty conditions',
pleaseEnterTheNameToSave: 'Please enter name to save',
saveSuccessful: 'Save successful',
alreadyExists: 'Already exists',
whetherToOverwrite: 'Whether to overwrite?',
equals: 'equals',
contains: 'contains',
startsWith: 'starts with',
endsWith: 'ends with',
within: 'with in',
notEqualTo: 'not equal to',
greater: 'greater than',
greaterThanOrEqualTo: 'greater than or equal to',
less: 'less than',
lessThanOrEqualTo: 'less than or equal to',
is: 'is',
notIs: "not is",
select: 'Select',
selected: 'Selected',
createBy: "Creator",
updater: "Updater",
createTime: "Create Time",
updateTime: "Update Time",
options: "Options",
remark: "Remark",
batch: 'Batch',
inputBatch: 'Please enter batch',
content: 'Content',
level: 'level',
monday: 'Monday',
tuesday: 'Tuesday',
wednesday: 'Wednesday',
thursday: 'Thursday',
friday: 'Friday',
saturday: 'Saturday',
sunday: 'Sunday',
recycleBin: 'Recycle',
addUser: 'Add User',
userAccount: 'User Account',
account: 'Account',
userName: 'User Name',
uName: 'Name',
staffId: 'Staff ID',
sex: 'Gender',
role: 'Role',
mobileNumber: 'Mobile Number',
mobile: 'Mobile',
email: 'Email',
warehouse: 'Warehouse',
zone: 'Zone',
region: "Region",
selectRegion: 'Please select region',
status: 'Status',
fuzzyAccountSearch: 'Please select gender',
selectSex: 'Please select gender',
enterUserName: 'Please enter user name',
enterName: 'Please enter name',
enterMobileNumber: 'Please enter mobile number',
userStatus: 'User Status',
selectUserStatus: 'Please select user status',
selectStatus: 'Please select status',
enterUserAccount: 'Please enter user account',
enterAccount: 'Please enter account',
loginPassword: 'Login Password',
enterLoginPassword: 'Please enter login password',
confirmPassword: 'Confirm Password',
pleaseProvideLoginPasswordAgain: 'Please provide login password again',
enterStaffId: 'Please enter staff ID',
selectEmail: 'Please select email',
roleAssignment: 'Role',
selectRole: 'Please select role',
warehouseAllocation: 'Warehouse Allocation',
zoneAllocation: 'Zone Allocation',
selectZone: 'Please select zone',
pleaseEnterAValidLandlinePhoneNumber: 'Please enter a valid landline phone number',
thePasswordsEnteredDoNotMatch: 'The passwords entered do not match',
phoneNumberAlreadyExists: 'Phone number already exists',
pleaseEnterAValidPhoneNumberFormat: 'Please enter a valid phone number format',
emailAddressAlreadyExists: 'Email address already exists',
pleaseEnterAValidEmailFormat: 'Please enter a valid email format',
usernameAlreadyExists: 'Username already exists',
confirmDiscardChanges: 'Confirm Discard Changes?',
password: 'Password',
freeze: 'Freeze',
confirmFreeze: 'Confirm Freeze',
unfreeze: 'Unfreeze',
confirmUnfreeze: 'Confirm Unfreeze?',
agent: 'Agent',
resetPassword: 'Reset Password',
userRecycleBin: 'User Recycle',
avatar: 'Avatar',
bulkRestore: 'Bulk Restore',
bulkDelete: 'Bulk Delete',
restoreUser: 'Restore User',
permanentlyDelete: 'Permanently Delete',
areYouSureYouWantToRestoreThese: 'Are you sure you want to restore these',
users: 'Users?',
users2: 'Users',
areYouSureYouWantToPermanentlyDeleteThese: 'Are you sure you want to permanently delete these',
successfullyRestored: 'Successfully restored',
successfullyPermanentlyDeleted: 'Successfully permanently deleted',
attention: 'Attention: After permanent deletion, it will be impossible to recover. Please proceed with caution',
failedToRetrieveDeletedUsers: 'Failed to retrieve deleted users:',
userInformation: 'User Information',
pleaseSelectARecord: 'Please select a record',
thisOperationIsNotAllowed: 'This operation is not allowed for administrator accounts. Please make a different selection',
confirmOperation: 'Confirm operation',
selectedAccount: 'selected account?',
notAdministratorAccounts: 'This operation is not allowed for administrator accounts',
roleName: 'Role Name',
addRole: 'Add Role',
roleManagement: 'Role Management',
user: 'User',
authorize: 'Authorize',
existingUsers: 'Existing Users',
roleCode: 'Role Code',
creationTime: 'Creation Time',
pleaseSelectARole: 'Please select a role',
confirmDeletionOfSelectedData: 'Confirm deletion of selected data?',
confirmDelete: 'Confirm Delete',
pleaseEnterTheRoleCode: 'Please enter the role code',
pleaseEnterTheRoleName: 'Please enter the role name',
description: 'Description',
pleaseEnterTheDescription: 'Please enter the description',
pleaseEnterTheRoleDescription: 'Please enter the role description',
lengthShouldBeBetween2And30Characters: 'Length should be between 2 and 30 characters',
lengthShouldNotExceed64Characters: 'Length should not exceed 64 characters',
lengthShouldNotExceed126Characters: 'Length should not exceed 126 characters',
theRoleCodeCannotContainChineseCharacters: 'The role code cannot contain Chinese characters',
rolePermissionConfiguration: 'Role Permission Configuration',
ownedPermissions: 'Owned Permissions',
treeOperations: 'Tree Operations',
parentChildAssociation: 'Parent-Child Association',
removeAssociation: 'Remove Association',
selectAll: 'Select All',
deselectAll: 'Deselect All',
expandAll: 'Expand All',
mergeAll: 'Merge All',
saveOnly: 'Save Only',
saveAndClose: 'Save And Close',
addExistingUser: 'Add Existing User',
dictionaryName: 'Dictionary Name',
pleaseEnterTheDictionaryName: 'Please enter the dictionary name',
dictionaryCode: 'Dictionary Code',
pleaseEnterTheDictionaryCode: 'Please enter the dictionary code',
pleaseEnterTheDictionaryDescription: 'Please enter the dictionary description',
add: 'Add',
dictionaryInformation: 'Dictionary Information',
dictionaryConfiguration: 'Dictionary Configuration',
dictionaryList: 'Dictionary List',
name2: 'Name',
pleaseEnterTheName: 'Please enter name',
value: 'Value',
pleaseEnterValue: 'Please enter value',
normal: 'Normal',
disabled: 'Disabled',
dataValue: 'Data Value',
pleaseEnterTheDataValue: 'Please enter data value',
sortValue: 'Sort Value',
theSmallerTheValueTheHigherThePriority: 'The smaller the value, the higher the priority',
enable: 'Enable',
theDataValueCannotContainSpecialCharacters: 'The data value cannot contain special characters',
retrieveDictionary: 'Retrieve Dictionary',
permanentlyDeleteDictionary: 'Permanently Delete Dictionary',
areYouSureYouWantToPermanentlyDeleteThisDictionaryEntry: 'Are you sure you want to permanently delete this dictionary entry?',
code: 'Code',
inputCode: 'Please enter code',
apiName: 'API Name',
apiCode: 'API Code',
inputApiName: 'Please enter API name',
inputApiCode: 'Please enter API code',
url: 'Url',
inputUrl: 'Please enter url',
title: 'Title',
pleaseEnterTheTitle: 'Please enter title',
publisher: 'Publisher',
pleaseEnterThePublisher: 'Please enter the publisher',
markAllAsRead: 'Mark All Read',
view: 'View',
viewMore: 'View More',
messageType: 'Message Type',
notification: 'Notification',
systemMessages: 'System Message',
publishingTime: 'Publishing Time',
priority: 'Priority',
announcement: 'System Announcement',
confirmThePublication: 'Confirm the publication?',
publish: 'Publish',
confirmTheCancellationRevoke: 'Confirm Undo?',
revoke: 'Undo',
viewDetails: 'View Details',
notificationRecipients: 'Notification Recipients',
specifyUsers: 'Specify Users',
allUsers: 'All Users',
publicationStatus: 'Publication Status',
notPublished: 'Not Published',
published: 'Published',
revoked: 'Revoked',
revocationTime: 'Revocation Time',
summary: 'Summary',
pleaseEnterTheSummary: 'Please enter summary',
deadline: 'Deadline',
pleaseSelectTheEndTime: 'Please select end time',
receivingUsers: 'Receiving Users',
pleaseSelectDesignatedUsers: 'Please select designated users',
pleaseSelectThePriority: 'Please select priority',
low: 'Low',
medium: 'Medium',
high: 'High',
pleaseSelectTheMessageType: 'Please select message type',
SelectTheRecipientType: 'Please select the recipient type for the announcement',
theSpecifiedUsersCannotBeEmpty: 'The specified users cannot be empty',
startTimeShouldBeEarlierThanTheEndTime: 'The start time should be earlier than the end time',
endTimeShouldBeLaterThanTheStartTime: 'The end time should be later than the start time',
messageReminder: 'Message Reminder',
generalMessage: 'General Message',
importantMessage: 'Important Message',
urgentMessage: 'Urgent Message',
notificationMessage: 'Notification Message',
goToDealWith: 'Go to Deal with',
},
task: {
scheduledTaskName: 'Task Name',
inputScheduledTaskName: 'Please enter task name',
scheduledTaskClass: 'Task Class',
inputScheduledTaskClass: 'Please enter task class',
cronExpression: 'Cron Expression',
inputCronExpression: 'Please enter cron expression',
parameter: 'Parameter',
taskStatus: 'Status',
inputTaskStatus: 'Please select status',
taskStatusAll: 'All',
taskStatusStarted: 'Started',
taskStatusPaused: 'Paused',
emptyIn: 'Empty Container Inbound',
emptyOut: 'Empty Container Outbound',
moveTask: 'Inventory Transfer',
checkOutTask: 'Outbound Viewing',
zone: 'Zone',
selectZone: 'Please select zone',
taskId: 'Task ID',
inputTaskId: 'Please enter the task ID',
taskType: 'Type',
inputTaskType: 'Please select the task type',
containerCode: 'Container Code',
container: 'Container',
inputContainerCode: 'Please enter container code',
fromLocationCode: 'From Location',
inputFromLocationCode: 'Please enter from location',
toLocationCode: 'To Location',
inputToLocationCode: 'Please enter to location',
fromStationCode: 'From Station',
inputFromStationCode: 'Please enter from station',
toStationCode: 'To Station',
inputToStationCode: 'Please enter to station',
shipmentId: 'Outbound Order ID',
inputShipmentId: 'Please enter outbound order ID',
receiptId: 'Order ID',
receiptId2: 'Inbound Order ID',
inputReceiptId: 'Please enter order ID',
outboundId: 'Outbound ID',
inputOutboundId: 'Please enter outbound ID',
creationTime: 'Create Time',
inputStartTime: 'Please select a start time',
inputEndTime: 'Please select an end time',
exceptionCode: "Exception Information",
dispatchTime: 'Dispatch Time',
inputDispatchTime: 'Please select dispatch time',
allocationTime: 'Allocation Time',
arrivalTime: 'Arrival Time',
completionTime: 'Completion Time',
execute: 'Execute',
createInventoryTransferTask: 'Create Inventory Transfer Task',
toPortCode: 'Outbound Dock',
inputToPortCode: 'Please enter outbound dock',
selectToPortCode: 'Please select outbound dock',
select: 'Select',
pleaseSelect: 'Please select ',
pleaseInput: 'Please enter ',
carNo: 'Car Number',
priority: 'Priority',
ensureCancelTask: 'Are you sure you want to cancel the task?',
taskDetail: 'Task Detail',
taskDetailId: 'Task Detail ID',
detailId: 'Detail ID',
startPoint: 'Start Point',
pleaseEnterStartPoint: 'Please enter start point',
targetPoint: 'Target Point',
pleaseEnterTargetPoint: 'Please enter Target Point',
inventoryRegistration: 'Inventory Registration',
inventoryCountQuality: 'Quality',
enterInventoryCountQuality: 'Please enter inventory count quality',
},
api: {
apiName: 'API Name',
inputApiName: 'Please enter API name',
apiMethod: 'API Method',
inputApiMethod: 'Please enter API method',
ip: 'Request IP',
inputIp: 'Please enter request IP',
requestFrom: 'Request From',
inputRequestFrom: 'Please enter request from',
inputResponseBy: 'Please enter response by',
url: 'Request Url',
inputUrl: 'Please enter request url',
duration: 'Duration (ms)',
inputDuration: 'Please enter duration (ms)',
retCode: 'Status Code',
inputRetCode: 'Please enter status code',
requestTime: 'Request Time',
selectStartTime: 'Please select start time',
selectEndTime: 'Please select end time',
requestBody: 'Request Body',
responseBy: 'Response By',
responseBody: 'Response Body',
responseTime: 'Response Time',
exception: 'Exception Stack'
},
parameter: {
name: 'Parameter Name',
inputName: 'Please enter parameter name',
code: 'Parameter Code',
inputCode: 'Please enter parameter code',
value: 'Value',
inputValue: 'Please enter parameter value',
configuration: 'Parameter Configuration',
},
address: {
remark: 'API Name',
inputRemark: 'Please enter API name',
param: 'API Code',
inputParam: 'Please enter API code',
url: 'API Url',
inputUrl: 'Please enter API url',
},
translate: {
relateTable: 'Relate Table',
relateId: 'Relate ID',
chinese: 'Chinese',
inputChinese: 'Please enter chinese',
english: 'English',
inputEnglish: 'Please enter english',
},
config: {
location: 'Location',
locationCode: 'Location Code',
inputLocationCode: 'Please enter location code',
container: 'Container',
containerCode: 'Container Code',
inputContainerCode: 'Please enter container code',
status: 'Status',
selectStatus: 'Please select a status',
inputStatus: 'Please enter a status',
zoneCode: 'Zone Code',
zone: 'Zone',
selectZone: 'Please select zone',
inputZoneCode: 'Please enter zone code',
locationType: 'Location Type',
selectLocationType: 'Please select location type',
inputLocationType: 'Please enter location type',
roadway: 'Aisle',
inputRoadway: 'Please enter aisle',
iRow: 'Row',
inputIRow: 'Please enter row',
iColumn: 'Column',
inputIColumn: 'Please enter column',
iLayer: 'layer',
inputILayer: 'Please enter layer',
highLow: 'High-Low Position',
inputHighLow: 'Please enter high and low positions',
selectHighLow: 'Please select high and low positions',
rowFlag: 'Side Selection',
selectRowFlag: 'Please select a side',
inputRowFlag: 'Please enter a side',
materialAreaCode: 'Partition',
inputMaterialAreaCode: 'Please enter partition',
isThereAContainer: 'Has Container',
selectIsThereContainer: 'Please select whether there are Containers in the location',
usable: 'Available Status',
selectUsable: 'Please select available status',
inputUsable: 'Please enter available status',
code: 'Code',
inputCode: 'Please enter code',
name: 'Name',
inputName: 'Please enter name',
length: 'Length',
inputLength: 'Please enter length',
width: 'Width',
inputWidth: 'Please enter width',
height: 'Height',
inputHeight: 'Please enter height',
maxWeight: 'Maximum Load',
inputMaxWeight: 'Please enter maximum load',
highLevel: 'Height Value',
inputHighLevel: 'Please enter height value',
encodingPrefix: 'Encoding Prefix',
inputEncodingPrefix: 'Please enter encoding prefix',
startLine: 'Start Line',
inputStartLine: 'Please enter start line',
lastRow: 'Last Row',
inputLastRow: 'Please enter last row',
startColumn: 'Start Column',
inputStartColumn: 'Please enter start column',
lastColumn: 'Last Column',
inputLastColumn: 'Please enter last column',
startLayer: 'Start Layer',
inputStartLayer: 'Please enter start layer',
lastLayer: 'Last Layer',
inputLastLayer: 'Please enter last layer',
containerTypeCode: 'Container Type',
selectContainerTypeCode: 'Please select container type',
containerStatus: 'Container Status',
selectContainerStatus: 'Please select container status',
containerFillStatus: 'Fill Status',
selectContainerFillStatus: 'Please select fill status',
position: 'Position',
selectPosition: 'Please select position',
totalTaskCount: 'Total Task Count',
moveTaskTimes: 'Move Task Count',
number: 'Number',
inputNumber: 'Please enter number',
emptyContainerWeight: 'Empty Container Weight',
pleaseEmptyContainerWeight: 'Please enter empty container weight',
maxContainerWeight: 'Maximum load capacity of container',
inputMaxContainerWeight: 'Please enter maximum load capacity of container',
inputFromPort: 'Please enter AGV point location',
materialCode: 'Material Code',
inputMaterialCode: 'Please enter material code',
materialName: 'Material Name',
inputMaterialName: 'Please enter material name',
usableStatus: 'Available Status',
selectUsableStatus: 'Please select available status',
materialNumber: 'Material Number',
company: 'Cargo Owner',
companyCode: 'Cargo Owner Code',
companyName: 'Cargo Owner Name',
inputCompanyName: 'Please enter cargo owner name',
selectCompany: 'Please select cargo owner',
inputCompanyCode: 'Please enter cargo owner code',
specification: 'Specification',
inputSpecification: 'Please enter specification',
unit: 'Unit',
inputUnit: 'Please enter unit',
selectUnit: 'Please select unit',
type: 'Type',
inputType: 'Please enter Type',
selectType: 'Please select type',
abcClassification: 'ABC Classification',
inputABCClassification: 'Please enter ABC classification',
shelfLife: 'Shelf Life',
inputShelfLife: 'Please enter shelf life',
nearExpiryAlertDays: 'Near Expiry Alert Days',
inputNearExpiryAlertDays: 'Please enter near expiry alert days',
locatingRule: 'Locating Rule',
inputLocatingRule: 'Please enter locating rule',
allocationRule: 'Allocation Rule',
inputAllocationRule: 'Please enter allocation rule',
emptyLocationRule: 'Empty Location Rule',
inputEmptyLocationRule: 'Please enter empty location rule',
pickingRule: 'Picking Rule',
inputPickingRule: 'Please enter picking rule',
receivingFlow: 'Receiving Flow',
inputReceivingFlow: 'Please enter receiving flow',
shippingFlow: 'Shipping Flow',
inputshippingFlow: 'Please enter shipping flow',
minShelfLifeDays: 'Receiving Alert Days',
inputMinShelfLifeDays: 'Please enter receiving alert days',
warehouseCode: 'Warehouse Code',
inputWarehousecode: 'Please enter warehouse code',
alarmType: 'Warning Category Code',
inputAlarmType: 'Please enter warning category code',
max: 'Maximum',
inputMax: 'Please enter maximum',
min: 'Minimum',
inputMin: 'Please enter minimum',
upper: 'Upper Limit Warning Value',
inputUpper: 'Please enter upper limit warning value',
lower: 'Lower Limit Warning Value',
inputLower: 'Please enter lower limit warning value',
remark: 'Remark',
inputRemark: 'Please enter remark',
address: 'Address',
inputAddress: 'Please enter address',
district: 'District',
inputDistrict: 'Please enter district',
city: 'City',
inputCity: 'Please enter city',
state: 'Province',
inputState: 'Please enter province',
country: 'Country',
inputCountry: 'Please enter country',
attentionto: 'Contacts',
inputAttentionto: 'Please enter contacts',
phone: 'Phone',
inputPhone: 'Please enter phone number',
postalcode: 'Zip Code',
inputPostalcode: 'Please enter zip code',
locationTypeCode: 'Including Location Types',
boundLocationType: 'Bound Location Types',
locking: 'locking',
pleaseLocking: 'Please enter the reason for locking',
infomation: 'Abnormal cause'
},
receipt: {
inboundOrderReport: 'Inbound Order Report',
return: 'Return',
returingIt: 'Confirm return?',
cross: 'Cross Docking',
crossingIt: 'Confirm cross docking?',
group: 'Grouping',
submitReview: "Submit For Review",
review: 'Review',
reason: 'Reason',
reviewProgress: 'Review Progress',
receiptCode: 'Order Code',
inputReceiptCode: 'Please enter order code',
receiptDetailID: 'Order Detail ID',
receiptType: 'Order Type',
selectReceiptType: 'Please select order type',
inputReceiptType: 'Please enter order type',
firstStatus: 'Start Status',
selectFirstStatus: 'Please select start status',
lastStatus: 'End Status',
selectLastStatus: 'Please select end status',
referCode: 'Upstream Order',
inputReferCode: 'Please enter upstream inbound order code',
supplier: 'Supplier',
selectSupplier: 'Please select supplier',
totalNumber: 'Total Qty',
totalLines: 'Total Lines',
remark: 'Remark',
backFailureReason: 'Back Error Msg',
materialSpecification: 'Material Specification',
materialUnit: 'Material Unit',
documentQty: 'Order Qty',
groupingQty: 'Grouping Qty',
inboundQty: 'Inbound Qty',
inventoryStatus: 'Inventory Status',
selectInventoryStatus: 'Please select inventory status',
batch: 'Batch',
inputBatch: 'Please enter batch',
documentStatus: 'Order Status',
selectDocumentStatus: 'Please select order status',
inputCreateBy: 'Please enter creator',
batchTask: 'Batch generation task',
batchGroup: 'Cancel grouping in batch',
addInbound: 'Additional inbound',
receiptContainerHeaderId: 'Header Id',
receiptContainerDetailId: 'Details Id',
serialNumber: 'Serial Number',
receivedQty: 'Received Qty',
inputReceivedQty: 'Please enter received qty',
receivableQty: 'Receivable Qty',
inboundNoDetails: 'Inbound order has no details',
inboundDetail: 'Order Details',
inboundGroup: 'Inbound Grouping Details',
historyReceiptDetail: 'Historical Order Details',
auditResult: 'Audit Result',
selectProcessType: 'Please select process type',
sortingInboundPort: 'Inbound Port',
selectSortInboundPort: 'Please select sorting inbound port',
selectSortInboundPort2: 'Select sorting inbound port',
selectOneContainer: 'Please select a container data',
generateTask: 'Generate Task',
cancelGroup: 'Cancel Grouping',
ensureCancelGroup: 'Are you sure you want to cancel the grouping?',
pleaseSelectLeastOneRecord: 'Please select at least one record',
noRecordsEligibleForCancellation: 'No records eligible for cancellation',
noRecordsEligibleForGeneration: 'No records eligible for generation',
},
log: {
// 操作日志
bizId: 'Business ID',
bizType: 'Business Type',
bizTag: 'Business Tag',
operationMsg: 'Operation Content',
createTime: 'Creation Date',
operationStatus: 'Operation Result Status',
operationTime: 'Operation Time',
operationCostTime: 'Operation Duration',
inputOperationCostTime: 'Please enter the operation duration',
inputOperationTime: 'Please select the operation time',
methodReturnsContent: 'Method return the content',
inputMethodReturnsContent: 'Please enter the method return the content',
methodExceptionContents: 'Method Exception Content',
inputMethodExceptionContents: 'Please enter the method exception content',
inputOperatorName: 'Please enter the operator name',
operatorName: 'Operator Name',
inputBizId: 'Please enter the business ID',
inputBizType: 'Please enter the business type',
selectBizType: 'Please select the business type',
inputBizTag: 'Please enter the business tag',
inputOperationMsg: 'Please enter the operation content',
inputOperationTime_begin: 'Please select the start time',
inputOperationTime_end: 'Please select the end time',
inputOperationStatus: 'Please enter the operation result status',
// 接口日志
apiName: 'API Name',
requestFrom: 'Request Party Name',
responseBy: 'Response Party Name',
url: 'Request Address',
requestBody: 'Request Content',
responseBody: 'Response Content',
requestTime: 'Request Time',
retCode: 'Business Response Code',
httpCode: 'HTTP Code',
duration_begin: 'Response Time (ms)',
expandHeader: 'Expand Header',
exceptionStackInfo: 'Exception Stack Information',
apiMethod: 'API Method',
ip: 'Request IP',
responseTime: 'Response Time',
inputApiName: 'Please enter the API name',
inputRequestFrom: 'Please enter the request party name',
inputResponseBy: 'Please enter the response party name',
inputUrl: 'Please enter the request address',
inputRequestBody: 'Please enter the request content',
inputResponseBody: 'Please enter the response content',
inputRequestTime_begin: 'Please select the start time',
inputRequestTime_end: 'Please select the end time',
inputRetCode: 'Please enter the business response code',
inputHttpCode: 'Please enter the HTTP response code',
inputDuration_begin: 'Please enter the response time (ms)',
loginlog: 'Login Log',
operationlog: 'Operation Log',
keyWord: 'Keyword',
inputKeyWord: 'Please enter the keyword',
createTimeRange: 'Start date ~ End date',
operateType: 'Operate Type',
inputOperateType: 'Please select the operate type',
logContent: 'Log Content',
userid: 'User ID',
username: 'User Name',
costTime: 'Cost Time (ms)',
logType_dictText: 'Log Type',
operateType_dictText: 'Operate Type',
requestMethod: 'Request Method',
requestParams: 'Request Parameters',
},
monitor: {
zone: 'Zone',
inputZone: 'Please select the zone',
row: ' Row',
line: ' Line',
layer: ' Layer',
grid_rest: 'Empty Location Vacant',
grid_empty: 'Empty Container Vacant',
grid_all: 'Entire Container Vacant',
grid_emp_lock: 'Empty Location Lock',
grid_empty_lock: 'Empty Container Lock',
grid_all_lock: 'Entire Container Lock',
location_statistical: 'Location Statistical',
locationCode: 'Location Code',
inputLocationCode: 'Please enter the location code',
containerCode: 'Container Code',
material: 'Material',
the: '',
none: 'None',
locationTotalNum: 'Total Location',
locationEmptyNum: 'Empty Location',
locationEmptyNumContainer: 'Empty Container Location',
locationEmptyNumPallet: 'Entire Container Location',
batch: 'Batch',
materialName: 'Material Name',
materialCode: 'Material Code',
num: 'Num',
wmsId: 'WMS ID',
inputWmsId: 'Please enter the WMS ID',
wcsId: 'WCS ID',
inputWcsId: 'Please enter the WCS ID',
consistencyStatus: 'Consistency Status',
inputConsistencyStatus: 'Please select the consistency status',
taskCreateTime: 'Task Creation Time',
inputTaskCreateTimeBegin: 'Please select the start time',
inputTaskCreateTimeEnd: 'Please select the end time',
taskType: 'WMS Task Type',
fromLocationCode: 'WMS From Location',
wcsFromLocationCode: 'WCS from Location',
toLocationCode: 'WMS To Location',
wcsToLocationCode: 'WCS To Location',
wcsContainerCode: 'WCS Container Code',
taskStatus: 'WMS Task Ttatus',
wcsTaskStatus: 'WCS Task Status',
wcsTaskCreateTime: 'WCS Task Creation Time',
locationStatus: 'Location Status',
wcsLocationStatus: 'WCS Location Status',
locationContainerCode: 'Location Table Container Code',
containerContainerCode: 'Container Table Container Code',
inventoryContainerCode: 'Inventory Table Container Code',
containerStatus: 'Container Status',
locationTaskDetail: 'Location Task Detail',
// 定时任务
cronExpression: 'Cron expression',
inputCronExpression: 'Please enter the cron expression',
scheduledTaskClassName: 'Scheduled task class name',
inputScheduledTaskClassName: 'Please enter the scheduled task class name',
parameter: 'Parameter',
inputParam: 'Please enter the parameter',
description: 'Description',
inputDescription: 'Please enter description',
status: 'Status',
jobClassName: 'Task Class Name',
inputJobClassName: 'Please enter the task class name',
jobStatus: 'Job Status',
inputJobStatus: 'Please enter the job status',
whole: 'Whole',
normalcy: 'Normalcy',
disable: 'Disable',
stop: 'Stop',
activated: 'Activated',
paused: 'Paused',
routerId: 'Router ID',
routerName: 'Router Rame',
routerURI: 'Router URI',
routingCondition: 'Routing Condition',
addRoutingCondition: 'Add Routing Condition',
filter: 'Filter',
addFilter: 'Add Filter',
addParameters: 'Add Parameters',
fusibleLink: 'Fusible link',
restrictionFilters: 'Restriction filters',
routingEditor: 'Routing editor',
birthdays: 'Birthdays',
forceSbToQuit: 'Force SB. to quit',
forceLogoutOfUser: 'Force logout of users',
forceLogoutOfUsers: 'Force logout of users?',
successes: 'Successes',
},
inventory: {
inventory: 'Inventory',
total: 'Total',
selectZone: 'Please select zone',
inputContainerCode: 'Please enter the container code',
inputLocationCode: 'Please enter the location code',
inputMaterialCode: 'Please enter the material code',
inputMaterialName: 'Please enter the material name',
inputRoadway: 'Please enter Aisle',
selectContainerStatus: 'Please select the container status',
inputOperationTime_begin: 'Please select the start time',
inputOperationTime_end: 'Please select the end time',
selectInventoryStatus: 'Please select the inventory status',
selectUsableStatus: 'Please select the available status',
selectCompany: 'Please select the Cargo Owner',
enterReceiptCode: 'Please enter the inbound order code',
enterShipmentCode: 'Please enter the Outbound Order code',
inputFromLocationCode: 'Please enter the from location code',
inputToLocationCode: 'Please enter the to location code',
selectTranscationType: 'Please select the transaction type',
enterInventoryCheckCode: 'Please enter the inventory check code',
selectWarnStatus: 'Please select the warning status',
inputBatch: 'Please enter the batch',
inputSerialNumber: 'Please enter the serial number',
inputMaterialSpec: 'Please enter the material specification',
inputMaterialUnit: 'Please enter the material unit',
inputAgeGreaterThan: 'Please enter the inventory age greater than (days)',
zone: 'Zone',
location: 'Location',
container: 'Container',
outboundPort: 'Outbound Port',
selectOutboundPort: 'Please select the outbound port',
selectOutboundPort2: 'Select The Outbound Port',
containerCode: 'Container Code',
locationCode: 'Location Code',
material: 'Material',
materialCode: 'Material Code',
selectMaterial: 'Please select the material',
materialName: 'Material Name',
containerStatus: 'Container Status',
roadway: 'Aisle',
createTime: 'Create Time',
companyName: 'Cargo Owner',
inventoryStatus: 'Inventory Status',
usableStatus: 'Usable Status',
materialSpec: 'Material Specification',
materialUnit: 'Material Unit',
batch: 'Batch',
serialNumber: 'Serial Number',
ageGreaterThan: 'Age Greater Than (days)',
receiptCode: 'Inbound Order Code',
shipmentCode: 'Outbound Order Code',
fromLocationCode: 'From Location Code',
fromLocation: 'From Location',
toLocationCode: 'To Location Code',
toLocation: 'To Location',
transcationType: 'Transaction Type',
createBy: 'Creator',
inputCreateBy: 'Please enter the creator',
inventoryCheckCode: 'Inventory Check Code',
inventoryCheckDetail: 'Inventory Check Detail',
materialDetails: 'Material Details',
systemQty: 'System Qty',
actualQty: 'Actual Qty',
enterActualQty: 'Please enter th actual Qty',
discrepancyQty: 'Discrepancy Qty',
reasonForFailure: 'Reason For Failure',
completer: 'Completer',
completionTime: 'Completion Time',
createTask: 'Create Task',
inventoryRegistration: 'Inventory Registration',
warnStatus: 'Warning Status',
inventoryId: 'Inventory ID',
inventoryAge: 'Inventory Age',
inventoryDetailId: 'Inventory Detail ID',
detailId: 'Detail ID',
inventoryDetail: 'Inventory Detail',
totalQty: 'Total Qty',
qty: 'Qty',
totalLine: 'Total Line',
inboundDate: 'Inbound Date',
inventoryTransferId: 'Inventory Transfer ID',
inboundQty: 'Inbound Qty',
outboundQty: 'Outbound Qty',
taskLockQty: 'Lock Qty',
company: 'Cargo Owner',
companyCode: 'Cargo Owner Code',
totalLocation: 'Total Location',
checkType: 'Check Type',
mainCheckStatus: 'Check Status',
checkStatus: 'Check Status',
mainCheckCode: 'Main Check Code',
checkPerson: 'Designated Inventory Personnel',
realCheckPerson: 'Actual Inventory Personnel',
pleaseSelectTheCheckType: 'Please select the check type',
inventoryQty: 'Inventory Qty',
warningPeriod: 'Warning Period',
shelfLife: 'Shelf Life',
min: 'Min',
lower: 'Lower',
upper: 'Upper',
max: 'Max',
effective: 'Effective',
remark: 'Remark',
containerFillRate: 'Container Fill Rate',
},
shipment: {
id: 'ID',
code: 'Order Code',
company: 'Cargo Owner',
companyCode: 'Cargo Owner Code',
companyName: 'Cargo Owner Name',
type: 'Order Type',
firstStatus: 'First Status',
lastStatus: 'Last Status',
referCode: 'Upstream Order',
customer: 'Customer',
totalQty: 'Total Qty',
totalLines: 'Total Lines',
remark: 'Remark',
backErrorMsg: 'Back Error Msg',
zone: 'Zone',
selectZone: 'Please select zone',
shipmentCode: 'Order Code',
enterShipmentCode: 'Please enter the outbound order code',
selectCompany: 'Please select the Cargo Owner',
selectShipmentType: 'Please select the outbound order type',
selectFirstStatus: 'Please select the first status',
selectLastStatus: 'Please select the last status',
inputReferCode: 'Please enter the refer code',
selectCustomer: 'Please select the customer',
inputRemark: 'Please enter the remark',
inputCreateBy: 'Please enter the creator',
inputStartTime: 'Please select the start time',
inputEndTime: 'Please select the end time',
group: 'Palletization',
createBy: 'Creator',
createTime: 'Create Time',
automaticGroup: 'Automatic Palletization',
shipmentDetail: 'Order Detail',
shipmentDetailId: 'Order Detail ID',
materialCode: 'Material Code',
materialName: 'Material Name',
materialSpec: 'Material Specification',
materialUnit: 'Material Unit',
documentQty: 'Order Qty',
groupingQty: 'Grouping Qty',
outboundQty: 'Shipment Qty',
availableQty: 'Available Qty',
inventoryQty: 'Inventory Qty',
inventoryStatus: 'Inventory Status',
batch: 'Batch',
documentStatus: 'Order Status',
selectMaterialCode: 'Please select the material code',
inputDocumentQty: 'Please enter the order qty',
selectInventoryStatus: 'Please select inventory status',
inputBatch: 'Please enter the batch',
inputShipmenQty: 'Please enter the shipment qty',
containerCode: 'Container Code',
locationCode: 'Location Code',
lockQty: 'Lock Qty',
reason: 'Reason',
historicalShipmentDetails: 'Historical Outbound Order Details',
inputContainerCode: 'Please enter the container code',
status: 'Status',
selectStatus: 'Please select the status',
toPort: 'Outbound Port',
pleaseEnterTargetPort: 'Please enter the target port',
generateTask: 'Generate Task',
cancelGroup: 'Cancel Group',
areSureCancelGroup: 'Are you sure to cancel the group?',
storageShipment: 'Outbound from flat storage',
deductInventory: 'Deduct inventory',
outboundGroupDetails: 'Outbound group details',
selectOutboundPort: 'Select the outbound port',
pleaseSelectLeastOneRecord: 'Please select at least one record',
destinationLocation: 'Destination Location',
selectDestinationLocation: 'Please enter the destination location',
shipmentContainerDetailId: 'Details ID',
}
}