vc-en.js
520 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
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
/**
* 英文包
*/
(function(window) {
window.lang = {
"systemName": "西荣物业 Community System",
"systemSimpleName": "西荣物业",
"subSystemName": "CommunityManagement",
"companyTeam": "java110 Round data team",
"welcome": "welcome community management",
"signOut": "sign out",
"signIn": "sign in",
"register": "register",
"moreCommunity": "more community",
"moreMsg": "more message",
"title": "CommunityManagement",
"noAccount": "no account?",
"areyouhasaccount": "are you has account?",
"保存": "Save",
"取消": "Cancel",
"查询": "Query",
"添加": "Add",
"修改": "Modify",
"删除": "Delete",
"返回": "Back",
"审核": "Audit",
"解绑": "Unbind",
"重置密码": "Reset Password",
"打印": "Print",
"indexContext": { "业主": "owner", "房屋": "Room", "停车位": "Parking Space", "商铺": "shop", "业主信息": "owner", "已入住": "Checked in", "未入住": "No check in", "房屋信息": "Housing", "空闲": "idle", "车位信息": "Parking Space", "已使用": "used", "商铺信息": "Shop", "已出售": "sold " },
"indexArrears": { "待办已办": "To Do", "待办": "to do", "已办": "done", "投诉": "complaint", "报修": "Repair", "采购": "purchase", "领用": "acquisition " },
"feePrintPageManage": { "小区": "community", "修改": "modification", "操作": "operation", "状态": "status", "查询条件": "query condition", "名称": "name", "请输入状态": "please enter status", "删除": "delete", "收据页面": "receipt page", "查询": "query", "请输入页面": "please enter page", "收据模板": "receipt template", "启用": "enable", "收据": "receipt", "请输入名称": "please input name" },
"printContract": { "取消": "cancel", "合同打印": "contract print" },
"ownerDetail": {},
"roomStructure": { "元": "element", "欠费": "Arrears", "双击查看详情": "Double-click to view details" },
"feeReceipt": { "押金单据": "Deposit Doc", "查询条件": "Query Condition", "费用类型": "Expense Type", "车辆单据": "Vehicle Document", "请选择收费类型": "Please select a charge type", "查询": "Inquiry", "重置": "Reset", "请输入房屋或车位信息": "Please enter Room or parking space", "车位费": "Parking Space Fee", "总金额": "Total Amount", "装修单据": "Renovation Document", "房屋": "Room", "操作": "Operation", "请选择开始时间": "Please select a start time", "收据信息": "Receipt Info", "业主": "Owner", "费用项": "Expense item", "请选择结束时间": "Please select the end time", "房屋费": "Housing fee", "打印": "Print", "缴费时间": "Payment time", "收据": "Receipt", "请选择打印类型": "Please select a print type", "日常收费": "Daily Charges", "车位": "Parking Spaces", "公摊费票据": "Public Fee Bills", "补打收据": "receipt for reprinting", "请输入收据": "please enter the receipt" },
"contractApplyDetail": { "序号": "serial number", "开始时间": "start time", "状态": "Status", "合同类型": "Contract Type", "甲方": "Party A", "乙方": "Party B", "合同信息": "Contract", "乙方联系人": "Party BContact Person", "经办人": "Manager", "联系电话": "Contact Phone", "关联房屋": "Related Housing", "合同编号": "Contract Number", "结束时间": "end time", "签订时间": "signing time", "房屋编号": "Room number", "意见": "opinion", "房屋": "Room", "甲方联系人": "Party Acontact person", "乙方联系电话": "Party Bcontact number", "平方米": "Square meter", "处理人": "Processor", "房屋状态": "Room Status", "建筑面积": "Building Area", "工单流转": "Work Order Circulation", "合同金额": "Contract Amount", "耗时": "Time Time", "相关附件": "Related attachments", "甲方联系电话": "Party Aphone number", "处理时间": "Processing time", "合同名称": "Contract name" },
"accountDetailManage": { "账户名称": "Account Name", "明细编号": "Detail Number", "交易时间": "Transaction Time", "明细类型": "Detail Type", "说明": "Description", "账户明细": "Account Details", "交易编号": "Transaction ID", "金额": "Amount" },
"activitiesBeautifulStaffManage": { "最美员工": "The most beautiful employee", "操作": "Operation", "查询条件": "query condition", "员工": "employee", "申请": "application", "活动规则": "activity rule", "查询": "query", "请输入员工名称": "please input employee name", "请输入评选编号": "please enter the evaluation number", "重置": "reset", "评选编号": "evaluation number", "创建时间": "creation time", "请选择活动规则": "Please select an activity rule" },
"prestoreFeeManage": { "房屋": "Room", "修改": "Modify", "操作": "Operation", "预付信息": "Prepaid Payment", "状态": "Status", "查询条件": "Inquiry Condition", "水费": "Water Bill", "请选择预存类型": "Please select a pre-storage type", "备注": "Remarks", "电费": "Electricity Bill", "预付费用": "Prepaid Fee", "预付金额": "Prepaid Amount", "删除": "Delete", "预付类型": "Prepaid Type", "查询": "query", "已使用": "used", "重置": "reset", "请选择状态": "please select state", "对象类型": "object type", "车位": "Parking Space", "未使用": "Unused" },
"todayAttendanceManage": { "请输入班组名称": "Please enter the team name", "今日考勤": "Attendance today", "操作": "operation", "查询条件": "query condition", "请输入部门名称": "please enter the department name", "考勤时间": "attendance time", "请选择打卡时间": "please select Punch Time", "考勤班组": "Attendance Team", "详情": "Details", "查询": "Query", "员工名称": "Employee Name", "重置": "Reset", "考勤状态": "Attendance Status", "部门名称": "Department Name" },
"businessDatabusManage": { "修改": "Modify", "操作": "Operation", "状态": "Status", "查询条件": "query condition", "顺序": "order", "添加": "add", "名称": "name", "请输入业务类型": "please enter business type", "删除": "delete", "查询": "query", "业务类型": "business type", "适配器": "adapter", "请输入适配器": "please enter adapter", "请输入": "Please enter" },
"accountWithdrawalApplyShManage": { "查询": "query", "操作": "operation", "状态": "status", "查询条件": "query condition", "请输入申请人电话": "Please enter the applicantphone number", "申请人名称": "Applicant name", "提现审核": "Withdrawal review", "申请说明": "Application description", "申请人电话": "Applicant Phone", "审核": "Audit", "请输入申请人名称": "Please enter the applicantname", "提现金额": "Withdrawal amount" },
"myAuditHistoryOrders": { "订单号": "order number", "订单类型": "order type", "操作": "operation", "创建时间": "creation time", "查看": "view", "订单状态": "Order Status", "采购已办单": "Purchase Order", "申请人": "Applicant" },
"clueMineManage": { "项目名称": "Project Name", "请输入项目名称": "Please enter the project name", "项目位置": "Project location", "修改": "Modify", "投资方简介": "Investor profile", "线索管理信息": "Lead Management", "目前进展情况": "Current Progress", "操作": "Operation", "查询条件": "Inquiry Condition", "电话": "Telephone", "请输入投资方名称": "Please enter the name of the investor", "投资额": "Investment amount", "跟进": "Follow up", "删除": "Delete", "查询": "Inquiry", "详细": "Details", "项目概述": "Project Overview", "下一步推进计划": "Next Step Promotion Plan", "投资方名称": "Investor Name" },
"listOweFee": { "请填写业主名称": "Please fill in the ownername", "序号": "serial number", "元": "element", "单元": "unit", "开始时间": "start time", "查询条件": "query condition", "查询": "query", "选择": "select", "大计": "big plan", "请选择楼栋": "please select a building", "重置": "reset", "合计": "Total", "收费对象": "Charge object", "业主名称": "Owner name", "请选择单元": "Please select the unit", "请填写房屋编号": "Please Fill in the Room number", "请选择付费对象类型": "Please select the type of payment object", "欠费清单": "Arrears list", "结束时间": "End time", "面积": "Area", "请选择收费项": "Please select a charge item", "请填写车位编号": "Please fill in the parking space number", "更新时间": "Update time", "导出": "Export", "请选择房屋类型": "Please select a Room type", "小计": "Subtotal" },
"shopCommunity": { "小区商铺": "community shop", "操作": "operation", "审核通过": "approval passed", "入驻时间": "occupancy time", "开始时间": "start time", "状态": "status", "查询条件": "query condition", "商铺名称": "Store Name", "审核不通过": "review failed", "查询": "query", "小区名称": "community name", "撤回": "withdrawal", "小区编码": "community code", "结束时间": "end time", "店铺名称": "" },
"serviceBinding": { "上一步": "Previous", "下一步": "Next", "完成": "Complete" },
"rentingConfigManage": { "每月租金比例": "Monthly Rent Proportion", "修改": "Modify", "操作": "Operation", "查询条件": "Query Condition", "整租": "Entire Rent", "物业分账比率": "Property split ratio", "请选择收费公式": "Please select the charging formula", "服务费": "Service fee", "请输入配置": "Please enter the configuration", "租赁配置": "Leasing configuration", "运营分账比率": "Operational Share Ratio", "租客收费比率": "Tenant Charge Ratio", "固定值": "Fixed Value", "删除": "Delete", "查询": "Query", "配置": "Configuration", "租赁类型": "Rental Type", "请选择租赁类型": "Please select a rental type", "收费公式": "Charge formula", "合租": "Share tenancy", "业主收费比率": "Owner charge rate" },
"inspectionRoutePoint": { "巡检位置": "Inspection location", "巡检点名称": "Inspection point name", "修改": "modify", "操作": "operation", "开始时间": "start time", "添加": "add", "巡检点类型": "inspection point type", "删除": "delete", "排序": "sort", "巡检点信息": "inspection point", "巡检点": "inspection point", "返回": "return", "结束时间": "end time" },
"reportHuaning": { "请选择收费类型": "Please select a charge type", "查询": "query", "未收情况表": "unpaid status table", "请选择楼栋": "Please select a building", "重置": "Reset", "请填写年份": "Please fill in the year", "查询条件": "Search conditions", "请填写月份": "Please fill in the month", "当月收费情况表": "Charges of the current month", "请选择收费项": "Please select the item to be charged", "物业费欠费明细表": "Details of arrears of property fees table" },
"allocationStoreRoomAuditOrders": { "调拨数量": "Allocation Quantity", "时间": "Time", "操作": "Operation", "审批": "Approve", "结束": "End", "状态": "status", "确认调拨": "confirmed transfer", "待办单": "to-do order", "调度编号": "scheduling number", "详情": "details", "申请人": "applicant" },
"myAuditHistoryComplaints": { "房屋": "Room", "操作": "action", "单元": "unit", "室": "room", "投诉人": "Complainant", "投诉类型": "Complaint Type", "详情": "Details", "号楼": "Building", "投诉状态": "Complaint Status", "投诉历史单": "Complaint History List", "投诉电话": "Complaint Phone", "投诉": "Complaint", "创建时间": "Creation Time" },
"newOaWorkflowFormEdit": { "编辑": "Edit", "取消": "Cancel" },
"waterFeeImport": { "导入": "Import", "选择文件": "Select file", "请填写备注信息": "Please fill in the remark", "资产信息": "Asset", "备注": "Remarks", "必填": "Required" },
"mainCategoryProductManage": { "修改": "Modify", "操作": "Operation", "审核通过": "Approved", "开始时间": "Start Time", "状态": "Status", "查询条件": "Query Condition", "请选择目录": "Please select a directory", "目录": "Category", "名称": "Name", "请输入编号": "Please enter a number", "待审核": "To be reviewed", "编号": "number", "删除": "delete", "查询": "query", "排序": "sort", "审核失败": "audit failure", "请选择状态": "please Select status", "请输入名称": "Please enter the name", "专区商品信息": "Product in the special area", "结束时间": "End time" },
"addRoomRepair": { "报修内容": "Repair content", "电话报修": "Telephone repair", "提交": "Submit", "联系方式": "Contact", "报修类型": "Repair type", "返回": "Return", "预约时间": "reservation time", "必填": "required", "报修人": "requester" },
"resourceEnterManage": { "物品规格": "item specification", "申请数量": "Request Quantity", "采购数量": "Purchase Quantity", "物品类型": "Item Type", "单号": "Order Number", "采购单价": "Purchase Unit Price", "请选择": "please select", "备注": "remarks", "必填": "required", "物品名称": "item name", "物品库存": "item inventory", "物品编码": "Item code", "可填": "fillable", "提交": "submit", "供应商": "supplier", "参考单价": "reference unit price" },
"reportCustomManage": { "请输入选项标题": "Please enter option title", "修改": "Modify", "报表组": "Report group", "选项标题": "Option title", "请输入报表编号": "Please enter Report number", "请输入组编号": "Please enter group number", "报表编号": "Report number", "操作": "Operation", "关联组件": "Associated component", "查询条件": "query condition", "描述": "description", "删除": "delete", "查询": "query", "报表信息": "report info", "排序": "sort" },
"activitiesManage": { "修改": "modify", "操作": "action", "请输入标题": "please enter a title", "发布信息": "post", "信息": "information", "开始时间": "start time", "查询条件": "query condition", "请输入信息": "please input", "发布人": "poster", "删除": "delete", "查询": "query", "重置": "reset", "请选择信息类型": "please select a message type", "信息类型": "message type", "发布": "publish", "请输入发布人名称": "Please enter the name of the publisher", "标题": "Title", "结束时间": "End Time" },
"contractAudit": { "合同审核": "Contract Audit", "操作": "Operation", "开始时间": "Start Time", "状态": "Status", "查询条件": "Query Condition", "合同类型": "Contract Type", "甲方": "Party A", "乙方": "Party B", "请输入合同编号": "Please enter the contract number", "经办人": "Assignee", "详情": "Details", "请输入合同名称": "Please Enter contract name", "查询": "query", "合同金额": "contract amount", "请输入合同类型": "please enter contract type", "合同编号": "contract number", "审核": "Review", "结束时间": "End Time", "合同名称": "Contract Name" },
"rentingHistoryManage": { "房屋": "Room", "操作": "Operation", "请输入租房名称": "Please enter the rental name", "押一付三": "Bet one to pay three", "状态": "Status", "查询条件": "Query conditions", "出租历史": "Rental History", "押一付六": "One Pay Six", "出租标题": "Rental Title", "详情": "Details", "预付类型": "Prepaid Type", "查询": "Inquiry", "请输入业主名称": "Please Enter owner name", "业主名称": "owner name", "请选择预付类型": "please select a prepayment type", "出租配置": "rental configuration", "押一付一": "deposit one pay one", "业主电话": "owner phone", "租金": "rent", "入住时间": "occupancy time" },
"resourceStoreSpecificationManage": { "操作": "operation", "查询条件": "query condition", "物品类型名称": "item type name", "规格名称": "specification name", "描述": "description", "物品类型编号": "item type number", "规格编号": "specification number", "查询": "query", "重置": "reset", "物品规格信息": "item specification", "请选择二级分类": "please select a secondary category Category", "请选择物品类型": "Please select the item type", "请输入规格编号": "Please enter the specification number", "请输入规格名称": "Please enter the specification name" },
"listOwnerMember": { "修改": "Modify", "操作": "Operation", "成员": "Member", "名称": "Name", "联系方式": "Contact", "备注": "Remarks", "年龄": "age", "创建员工": "create employee", "身份证": "ID", "删除": "delete", "性别": "gender", "类型": "Type" },
"historyFeeDetailImport": { "房屋": "Room", "车辆": "Vehicle", "费用对象": "Expense Object", "导入": "Import", "选择文件": "Select file", "资产信息": "asset info", "说明": "description", "必填": "required" },
"repairTypeUser": { "操作": "action", "状态": "Status", "师傅": "Master", "变更": "Change", "师傅名称": "Master Name", "报修师傅": "Repair Master", "创建时间": "Creation Time", "报修类型": "Repair type", "说明": "Description", "删除": "Delete" },
"accountWithdrawalApplyFkManage": { "操作": "", "状态": "", "查询条件": "", "请输入申请人电话": "", "申请人名称": "", "删除": "", "提现金额": "", "付款": "", "查询": "", "申请说明": "", "申请人电话": "", "提现付款": "", "请输入申请人名称": "" },
"viewClueInfo": { "项目名称": "Project Name", "项目位置": "Project Location", "投资方简介": "Investor Profile", "目前进展情况": "Current Progress", "序号": "Serial Number", "线索明细信息": "Lead Details", "电话": "Telephone", "跟进记录": "Follow-up Record", "投资额": "Investment Amount", "跟进": "Follow -up", "项目概述": "Project Overview", "下一步推进计划": "Next Promotion Plan", "跟进时间": "Follow-up Time", "投资方名称": "Investor Name" },
"reportCustomComponentRelManage": { "关系编号": "Relation ID", "报表编号": "Report ID", "操作": "Operation", "关联时间": "Relation Time", "组件": "Component", "组件序号": "component number", "删除": "delete" },
"addRoomComplaint": { "咨询": "consultation", "登记投诉建议": "registered complaints and suggestions", "投诉人": "Complainant", "投诉电话": "Complaint Phone", "投诉类型": "Complaint Type", "投诉": "Complaint", "建议": "Suggestion", "提交": "Submit", "返回": "return", "必填": "required", "投诉内容": "complaint content" },
"attendanceClassesManage": { "修改": "modify", "班组名称": "class name", "请输入班组名称": "Please enter the team name", "操作": "Operation", "请选择打卡类型": "Please select Punch Type", "打卡范围": "Punch Range", "打卡类型": "Punch Type", "打卡次数": "Punch Times", "查询条件": "Query Condition", "添加": "Add", "早退范围": "early leave range", "迟到范围": "late range", "删除": "delete", "查询": "query", "重置": "reset", "分钟": "minute", "班组": "shift", "考勤部门": "attendance department", "考勤班组信息": "attendance shift", "请输入班组": "please enter the shift", "打卡规则": "Pick-in Rules" },
"repairPoolManage": { "修改": "Modify", "请选择报修状态": "Please select the repair status", "请输入报修电话": "Please enter the repair phone number", "操作": "Operation", "状态": "Status", "查询条件": "Query condition", "联系方式": "Contact", "位置": "Location", "报修类型": "Repair Type", "工单编码": "Work Order Code", "报修人": "Repair Requester", "详情": "Details", "删除": "Delete", "请输入报修": "Please Enter Repair", "查询": "Inquiry", "报修工单池": "Repair Work Order Pool", "重置": "Reset", "请输入报修人": "Please Enter Repair Requester", "请选择报修类型": "Please select the repair type", "请选择报修设置类型": "Please select the repair setting type", "派单": "Dispatch", "预约时间": "Appointment time", "抢单": "Pick up order" },
"remainingParkingSpace": { "操作": "Operation", "刷新": "Refresh", "剩余车位": "Remaining parking space", "采集时间": "Collection time", "总车位数": "Total Parking Space", "剩余车位数": "Remaining Parking Space", "位": "Position" },
"resourceEnterDetailManage": { "申请时间": "Application Time", "物资编码": "Material Code", "入库数量": "Inbound Quantity", "申请数量": "Request Quantity", "操作": "Operation", "入库": "Inbound", "单价": "unit price", "备注": "Remarks", "申请信息": "Application", "库存": "Inventory", "物资": "Materials", "申请说明": "Application Instructions", "申请物资": "Application materials", "审核状态": "Approval status", "申请人": "Applicant" },
"listCarFee": { "创建费用": "Create fee", "建账时间": "Account establishment time", "应收金额": "Should Amount charged", "操作": "Operation", "附加费": "Additional fee", "计费结束时间": "Billing end time", "状态": "Status", "费用类型": "Fee Type", "本期度数": "Current Period", "单价": "Unit Price", "用量": "Usage", "取消费用": "Cancommunityation Fee", "缴费": "Payment", "注意": "Note", "说明": "Description", "固定费": "Flat Fee", "算法": "Algorithm", "计费起始时间": "Billing Start Time", "上期度数": "Last period degree", "费用项目": "Expense item", "费用标识": "Expense ID", "费用": "Expense", "缴费历史": "Payment history", "费用变更": "cost change" },
"allocationStoreRoomDetail": { "是否是固定物品": "is it a fixed item", "物品规格": "item specification", "原库存": "original inventory", "调拨数量": "Allocation Quantity", "申请时间": "Application Time", "序号": "Serial Number", "处理人": "Processor", "状态": "Status", "物品类型": "Item Type", "申请信息": "Application", "工单流转": "Work Order Circulation", "耗时": "Time Time", "物品名称": "Item Name", "物品编码": "item code", "物品": "item", "处理时间": "processing time", "目标仓库": "target wareRoom", "申请说明": "application description", "调拨物品": "transfer item", "意见": "opinion", "申请人": "applicant", "类型": "type" },
"urgentPurchaseApplyStep": { "上一步": "previous step", "提交": "Submit", "下一步": "Next step" },
"inspectionRoute": { "修改": "Modify", "操作": "Operation", "查询条件": "Query condition", "顺序": "Order", "添加": "Add", "备注": "Remarks", "删除": "Delete", "请输入路线名称": "Please enter the route name", "查询": "Query", "巡检路线信息": "Inspection route", "重置": "Reset", "请输入路线顺序": "Please enter the route sequence", "巡检点": "Inspection point", "路线名称": "route name", "创建时间": "created time", "请输入路线": "please enter route", "线路": "line" },
"ownerRepairManage": { "修改": "modify", "请输入报修电话": "Please enter the repair call", "请选择报修状态": "Please select the repair status", "操作": "Operation", "报修": "Repair", "状态": "Status", "查询条件": "Query condition", "联系方式": "Contact", "注意": "Attention", "位置": "Location", "报修类型": "Repair type", "报修人": "Repair requester", "删除": "Delete", "一般业主房屋报修": "Repair for general ownerRoom", "请输入报修": "Please enter the repair report", "查询": "Inquiry", "报修设置中设置相关信息": "Set related in repair settings", "重置": "Reset", "请输入报修人": "Please enter the repairer", "请选择报修类型": "Please select Repair Type", "报修信息": "Repair", "登记": "Registration", "预约时间": "Reservation Time" },
"myAuditComplaints": { "房屋": "Room", "修改": "modify", "操作": "action", "结束": "end", "单元": "unit", "室": "room", "投诉人": "complainant", "重新提交": "Resubmit", "投诉类型": "Complaint Type", "详情": "Details", "投诉单信息": "Complaint", "号楼": "Building", "投诉状态": "Complaint status", "投诉电话": "complaint phone", "投诉": "complaint", "创建时间": "creation time", "审核": "review" },
"hireParkingSpace": { "上一步": "previous step", "提交": "Submit", "下一步": "Next" },
"payFeeConfigDiscountManage": { "折扣终止时间": "Discount End Time", "折扣名称": "Discount Name", "缴费起始时间": "Payment Start Time", "操作": "Operation", "规则": "Rule", "添加": "Add", "折扣类型": "Discount Type", "这样所有欠费的费用则不享受优惠": "So all outstanding expenses do not enjoy discounts", "费用折扣": "Expense discounts", "删除": "Delete", "费用项名称": "Expense item name", "缴费结束时间": "Payment end time", "缴费起始时间和缴费结束时间": "Payment start time and payment end time", "如果本年度费用不能享受优惠": "If this yearfees are not eligible for discounts" },
"componentConditionManage": { "修改": "Modify", "序号": "Order", "操作": "Operation", "参数": "Parameter", "提示": "Prompt", "条件": "condition", "名称": "name", "描述": "description", "删除": "remove", "类型": "type" },
"newOaWorkflowManage": {},
"repairReturnVisit": { "请输入报修电话": "Please enter the repair telephone number", "操作": "Operation", "报修回访": "Repair return visit", "查询条件": "Inquiry conditions", "联系方式": "Contact Method", "回访": "Return visit", "位置": "Location", "报修类型": "Repair type", "工单编码": "Work order code", "报修人": "Repair person", "详情": "details", "请输入报修": "please enter the repair report", "查询": "inquiry", "待回访": "pending return visit", "请输入报修人": "please enter the repair report Person", "已回访": "Revised", "请选择报修类型": "Please select the repair type", "预约时间": "appointment time" },
"configMenu": { "上一步": "previous step", "下一步": "next step", "完成": "finished" },
"wechatSmsTemplateManage": { "模板信息": "Template", "修改": "Modify", "操作": "Operation", "请输入微信模板": "Please enter the WeChat template", "查询条件": "Query conditions", "微信模板": "WeChat Template", "请输入模板编码": "Please enter the template code", "请选择模板类型": "Please select the template type", "停水通知": "Water cutoff notice", "删除": "Delete", "欠费催缴": "Arrears Payment", "查询": "Inquiry", "停电通知": "Power Outage Notice", "模板编码": "Template Code", "模板类型": "template type" },
"machineTranslateManage": { "小区": "community", "对象名称": "object name", "同步时间": "sync time", "操作": "action", "请输入对象名称": "Please enter the object name", "状态": "status", "查询条件": "query condition", "设备同步信息": "device synchronization", "业主": "owner", "说明": "description", "请输入对象": "please enter an object", "请选择同步类型": "please select a synchronization type", "删除": "delete", "查询": "query", "设备编码": "device code", "指令": "command", "设备名称": "device name", "重新同步": "resync", "对象类型": "object type", "请输入设备编码": "Please enter the device code" },
"workflowManage": { "操作": "operation", "信息": "information", "查询条件": "query condition", "流程信息": "Process", "设置流程": "Setting process", "请输入信息": "Please enter", "请输入流程名称": "Please enter process name", "查询": "Inquiry", "流程名称": "Process name", "请输入流程编码": "Please enter the process code", "流程编码": "Process code", "请选择流程": "Please select the process", "流程类型": "process type", "创建时间": "creation time", "流程图": "flowchart" },
"reportCustomGroupManage": { "查询": "query", "组名称": "Group Name", "修改": "Modify", "报表组信息": "Report Group", "操作": "Operation", "请输入组名称": "Please enter a group name", "组": "group", "查询条件": "query condition", "描述": "description", "请输入组": "please enter a group", "删除": "delete" },
"auditApplicationKeyManage": { "审核完成": "Review completed", "申请时间": "Application time", "操作": "Operation", "手机号码": "Mobile number", "状态": "Status", "查询条件": "Inquiry condition", "请输入手机号码": "Please enter the mobile phone number", "保安": "Security", "请选择审核状态": "Please select the audit status", "请输入身份证号": "Please enter ID number", "审核钥匙": "Audit key", "位置": "Location", "请选择用户类型": "Please select a user type", "保洁": "Cleaning", "未审核": "Unapproved", "查询": "Inquiry", "姓名": "Name", "审核拒绝": "Approval Rejection", "身份证号": "ID No.", "审核": "audit", "结束时间": "end time", "用户类型": "user type", "请输入姓名": "please enter name" },
"resourceStoreManage": { "修改": "modify", "收费标准": "Charge standard", "物品均价": "Average item price", "元": "Yuan", "请选择仓库": "Please select a wareRoom", "请选择物品是否固定": "Please select whether the item is fixed", "查询条件": "query condition", "添加": "add", "删除": "delete", "请选择物品规格": "please select item specification", "查询": "Inquiry", "物品库存": "Item Inventory", "大计": "Total Plan", "重置": "Reset", "调拨": "Transfer", "请输入物品名称": "Please enter Product Name", "入库与领用": "Storage and Receipt", "物品总价": "Item Total Price", "采购参考价格": "Purchase Reference Price", "最小计量": "Minimum measure", "仓库名称": "wareRoom name", "物品规格": "item specification", "操作": "operation", "物品类型": "item type", "最小计量总数": "minimum Total measurement", "物品信息": "Item", "是否固定物品": "Whether the item is fixed", "物品名称": "Item name", "物品编码": "Item code", "导出": "Export", "请选择二级分类": "Please select a secondary category", "物品": "Item", "请选择物品类型": "Please select an item type", "小计": "Subtotal", "请输入物品编码": "please enter the item code", "请输入物品": "please enter the item" },
"listSonResourceStoreType": { "修改": "modify", "操作": "operation", "查询条件": "query condition", "请输入物品类型": "please enter item type", "物品类型": "item type", "添加": "add", "物品类型名称": "item TypeName", "二级分类": "Secondary Category", "描述": "Description", "删除": "Delete", "查询": "Query", "重置": "Reset", "请输入物品类型名称": "Please enter the item type name", "创建时间": "Create time", "返回": "Return" },
"printRepairDetail": { "打印时间": "Print Time", "元": "yuan", "序号": "serial number", "状态": "status", "报修用料": "repair materials", "客户签字": "customer signature", "备注": "Remarks", "报修类型": "Repair Type", "位置": "Location", "预约内容": "Reservation Content", "报修人": "Repair Requester", "联系电话": "Contact Number", "无偿服务": "free service", "报修信息": "repair", "有偿服务": "paid service", "预约时间": "appointment time", "维修人员签字": "maintenance Personnel signature", "意见": "opinion", "处理人": "handler", "报修单号": "repair order number", "工单流转": "work order circulation", "报修内容": "repair content", "耗时": "Time -consuming", "费用明细": "Expense Details", "时间": "Time", "处理时间": "Processing Time", "取消": "Cancel" },
"meterTypeManage": { "修改": "modify", "抄表类型": "meter reading type", "操作": "operation", "名称": "name", "创建时间": "creation time", "如果一个房屋有多个电表水表": "If a Room has multiple meters and water meters", "说明": "Description", "删除": "Delete" },
"mainCategoryManage": { "修改": "Modify", "操作": "Operation", "开始时间": "start time", "查询条件": "query condition", "商圈": "business district", "目录名称": "catalog name", "目录编号": "catalog number", "描述": "description", "删除": "delete", "查询": "query", "排序": "sort", "请选择目录类别": "please select a catalog category", "商品目录": "product catalog", "目录类别": "catalog category", "服务": "service", "请输入目录名称": "please enter catalog name", "请输入目录编号": "please enter catalog number", "结束时间": "end time" },
"serviceRegisterManage": { "请输入服务名称": "please enter service name", "服务编码": "service code", "修改": "modify", "订单类型": "Order Type", "操作": "Operation", "查询条件": "Query Condition", "绑定": "Binding", "服务绑定信息": "Service Binding Specify", "请输入服务编码": "Please enter service code", "删除": "Delete", "服务名称": "Service name", "查询": "Inquiry", "选择": "Select", "请输入调用地址": "please enter the calling address", "应用名称": "app name", "服务": "service", "请选择应用名称": "please select the app name", "应用": "Apply" },
"advertManage": { "修改": "modify", "请选择广告分类": "please select an ad category", "查询条件": "query condition", "发布类型": "post type", "餐饮": "Dining", "删除": "Delete", "查询": "Inquiry", "酒店": "Hotel", "请选择状态": "Please select a status", "未播放": "Not playing", "广告名称": "ad name", "发布": "posting", "播放中": "playing", "投放位置": "placement", "结束时间": "end time", "投放时间": "running time", "旅游": "tourism", "广告": "advertising", "广告信息": "advertising", "操作": "operation", "审核通过": "approved", "未审核": "unreviewed", "请输入广告名称": "please enter an ad name", "教育": "education", "查看广告": "view ad", "物流": "logistics", "审核拒绝": "Review Rejection", "互联网": "Internet", "创建时间": "Creation Time" },
"propertyRightRegistrationManage": { "房屋": "Room", "添加房屋产权": "Add Property", "操作": "Operation", "单元": "Unit", "请输入地址": "Please Enter Address", "房屋产权": "Property Ownership", "状态": "Status", "查询条件": "query condition", "请输入房屋": "please enter the Room", "请输入身份证号": "please input the ID number", "请选择审核状态": "please select Review status", "联系方式": "Contact", "查询": "Inquiry", "姓名": "Name", "重置": "Reset", "请选择楼栋": "Please select Building", "请选择单元": "Please select the unit", "请填写房屋编号": "Please fill in the Room number", "请输入联系方式": "Please enter the contact", "房屋产权信息": "Room title", "地址": "Address", "身份证号": "ID number", "房屋编号": "Room number", "请输入姓名": "Please enter your name" },
"reportDeadlineFee": { "单元": "Unit", "信息": "Information", "费用结束时间": "Fee end time", "查询条件": "Query", "费用编号": "Fee code", "费用项": "Fee setting", "查询": "Query", "选择": "Choose", "费用到期提醒": "Fee end", "距离费用结束时间": "Fee end time", "请选择楼栋": "Choose floow", "重置": "Reset", "房号": "Room code", "导出": "Export", "请选择单元": "Choose unit", "请填写房屋编号": "Room code" },
"parkingSpaceApplyManage": { "汽车品牌": "car brand", "修改": "modification", "颜色": "color", "查询条件": "query condition", "请输入车辆品牌": "please input car brand", "车辆类型": "car type", "待审核": "to be reviewed", "删除": "Delete", "完成": "Complete", "查询": "Inquiry", "车位申请信息": "Parking Space Application", "请选择状态": "Please Select Status", "结租时间": "Lease end time", "审核结果": "Review result", "申请人": "Applicant", "起租时间": "Lease start time", "操作": "Operation", "请输入申请人电话": "Please enter the applicantphone number", "申请失败": "Application failed", "申请": "Application", "请输入车牌号": "Please enter the license plate number", "车牌号": "License plate number", "待缴费": "To be paid", "审核": "Review", "请输入申请人名称": "Please enter the applicantname" },
"staff": { "修改": "modify", "操作": "operation", "查询条件": "query condition", "公司": "company", "员工": "employee", "名称": "name", "重置密码": "reset password", "必填": "required", "请输入员工": "please enter employee", "添加员工": "add employee", "请输入手机号": "Please enter the phone number", "删除": "delete", "性别": "gender", "查询": "query", "邮箱": "Email", "部门": "Department", "请输入员工名称": "Please enter employee name", "重置": "Reset", "员工管理": "Employee management", "手机号": "Mobile Number", "地址": "Address", "岗位": "Post" },
"parkingBoxAreaManage": { "操作": "Operation", "创建时间": "Creation Time", "默认停车场": "default parking lot", "备注": "remarks", "停车场编号": "parking lot number", "删除": "delete", "停车场": "parking lot" },
"printPayFees": { "大写人民币": "Uppercase RMB", "收款时间": "Payment Time", "单号": "Single Number", "单价": "Unit Price", "备注": "Remarks", "据": "According to", "客户服务中心": "Customer Service Center", "数量": "Quantity", "合计": "Total", "房号": "Room Number", "收": "Receipt", "车牌号码": "License Plate Number", "实收金额": "Actual Amount", "取消": "Cancel", "车牌号": "User Name", "用户名": "Payee", "收款人": "Payment", "款": "Area", "面积": "Charge Item", "收费项目": "Billing start and end time", "计费起止时间": "" },
"smallWeChatManage": { "修改": "Modify", "应用密钥": "AppKey", "操作": "Operation", "支付密码": "Payment password", "我的小程序": "My applet", "名称": "Name", "商户": "Merchant", "描述": "Description" },
"allocationStoreRoomManage": { "调拨记录": "transfer record", "流程管理中设置": "setting in process management", "状态": "status", "查询条件": "query condition", "物品调拨流程": "item transfer process", "请输入申请人姓名": "Please enter the applicantname", "申请调拨": "Apply for transfer", "详情": "Details", "查询": "Inquiry", "请输入申请人": "Please enter applicant", "请输入申请": "Please enter the application", "请选择调拨开始时间": "Please select the transfer start time", "重置": "Reset", "调拨": "Transfer", "申请人": "Applicant", "操作": "Operation", "请选择调拨结束时间": "Please select the transfer end time", "申请": "Apply", "注意": "Note", "请选择类型": "Please select a type", "时间": "Time", "导出": "Export", "请选择调拨状态": "Please select a transfer status", "流程图": "Flowchart", "类型": "Type", "取消调拨": "Cancel Allocation" },
"allocationStoreRoomDetailed": { "调拨数量": "Allocation Quantity", "状态": "Status", "查询条件": "Query Condition", "必填": "Required", "调拨申请": "Transfer Application", "请选择物品规格": "Please select the item specification", "被调仓库原库存": "Original inventory of the transferred wareRoom", "查询": "Inquiry", "请输入申请人": "Please enter the applicant", "重置": "Reset", "请输入物品名称": "Please enter the item name", "调拨明细": "Transfer Details", "目标仓库": "Target WareRoom", "请输入调拨申请": "Please enter the transfer application", "申请人": "Applicant", "是否是固定物品": "Whether it is a fixed item Item", "物品规格": "Item Specification", "物品类型": "Item Type", "被调仓库": "Transfer WareRoom", "请选择类型": "Please select a type", "物品名称": "Item name", "时间": "Time", "导出": "Export", "请选择二级分类": "Please select a secondary category", "物品": "Item", "调拨说明": "Transfer Instruction", "请选择物品类型": "Please select the item type", "请选择调拨状态": "Please select the transfer status", "请输入物品": "Please enter the item" },
"owePayFeeOrder": { "房屋": "Room", "打印收据": "print receipt", "元": "yuan", "计费结束时间": "billing end time", "缴费成功": "payment success", "费用类型": "fee type", "缴费": "payment", "备注": "remarks", "支付方式": "payment method", "确定收费": "determined charge", "必填": "required", "关闭": "closed", "欠费金额": "Arrears Amount", "计费起始时间": "Billing Start Time", "可填": "Fillable", "费用项目": "Expense Item", "费用标识": "Fee ID", "收费确认": "Charge Confirmation", "返回": "Return", "费用": "Fee", "金额": "Amount", "缴费提示": "Payment Reminder" },
"simplifyAcceptance": { "请输入业主车牌号": "Please enter the owner's license plate number", "请输入业主身份证": "Please enter owner ID", "请输入业主手机号": "Please enter the owner's mobile number", "请输入业主名称": "Please enter owner name", "请输入房屋编号 楼栋-单元-房屋 如1-1-1": "Please enter the house number Building-Unit-House Such as 1-1-1", "绑定记录": "Binding Record", "投诉单": "Complaint Form", "室内面积": "Indoor Area", "门禁同步": "Access Control Synchronization", "道闸同步": "Barrier synchronization", "业主身份证": "Owner ID card", "业主姓名": "Owner name", "房屋类型": "Room type", "查询": "Inquiry", "抄表记录": "Meter reading record", "商铺号": "Shop No.", "交房": "Delivery room", "入住日期": "Check-in date", "业主备注": "Ownerremarks", "选择房屋": "select Room", "业主名称": "owner name", "业主合同": "owner contract", "联系电话": "contact number", "商铺编号": "shop number", "车辆信息": "Vehicle", "业主电话": "Owner Phone", "租金": "Rent", "成员身份证": "Member ID", "房屋编号": "Room ID", "家庭成员": "Room Member", "房屋备注": "Room Notes", "房屋状态": "Room Status", "修改房屋": "Modify Room", "停车费用": "Parking Fees", "退房": "Check out", "身份证": "ID card", "房屋费用": "Housing cost", "性别": "Gender", "房屋面积": "Housing area", "报修单": "repair report", "更多操作": "more operations", "业主编号": "owner number", "成员手机号": "member phone number", "合同号": "contract number", "房屋号": "Room Number", "修改业主": "Modify Owner", "户型": "Unit Type", "补打收据": "Receipt for reprinting", "车牌号": "License plate number", "成员姓名": "Member name" },
"carAddParkingSpace": { "起租时间": "Rental time", "结租时间": "Rental closing time", "请填写备注信息": "Please fill in the remark", "提交": "Submit", "车牌号": "License plate number", "车辆信息": "car", "备注": "remarks", "必填": "required" },
"machineManage": { "操作": "operation", "开门": "opening", "状态": "status", "查询条件": "query condition", "心跳时间": "heartbeat time", "设备信息": "device", "请选择设备类型": "please select a device type", "添加设备": "Add device", "查询": "Inquiry", "请输入设备": "Please input device", "设备编码": "Device code", "设备名称": "Device name", "时间": "time", "请输入设备名称": "please enter the device name", "设备位置": "device location", "方向": "direction", "请输入设备编码": "please enter the device code", "变更": "change", "修改设备": "modify device", "删除设备": "delete device", "设备类型": "device type", "重启设备": "reboot device" },
"parkingBoxManage": { "是否收费": "Whether to charge", "控制台": "Console", "修改": "Modify", "操作": "Operation", "查询条件": "Query condition", "否": "No", "临时车进场": "Temporary Car Entry", "共享岗亭": "Shared Post Box", "备注": "Remarks", "岗亭信息": "Post Box", "删除": "delete", "是": "yes", "停车场": "parking lot", "查询": "inquiry", "请选择临时车进场": "please select a temporary car to enter", "岗亭名称": "postbox name", "黄牌车进场": "yellow license car approaching", "请输入岗亭名称": "please enter the postbox name", "请输入岗亭编号": "please input Post Box Number", "岗亭编号": "Post Box Number", "蓝牌车进场": "Blue car entering the field" },
"reportPayFeeDeposit": { "付费对象类型": "Payment object type", "请选择费用创建结束时间": "Please select the end time of the fee creation", "应收金额": "Amount Receivable", "元": "Yuan", "单元": "Unit", "费用结束时间": "Expense End Time", "状态": "Status", "查询条件": "Query Condition", "费用类型": "Expense Type", "请选择费用创建开始时间": "Please select an expense creation start time", "费用开始时间": "Expense start time", "详情": "Details", "查询": "Inquiry", "选择": "Select", "退费状态": "Refund Status", "大计": "General Plan", "请选择楼栋": "Please select Building", "重置": "Reset", "房号": "Room Number", "请选择退费状态": "Please select the refund status", "请选择单元": "Please select the unit", "已收费": "charged", "请填写房屋编号": "please fill in the Room number", "请选择费用项名称": "please select the item name", "已退费": "refunded Refund", "请输入费用": "Please enter the fee", "费用": "Fee", "退费失败": "Refund failed", "操作": "Operation", "付款方": "Payer", "业主": "Owner", "押金报表": "Deposit Report", "费用项": "Expense Item", "导出": "Export", "创建时间": "Creation Time", "小计": "Subtotal", "退费中": "Refunding", "请选择收费状态": "Please select the charging status", "请选择收费对象类型": "Please select the charging object type", "未缴费": "unpaid", "未收费": "" },
"communitySettingManage": { "修改": "modify", "请输入配置键名称": "please enter the configuration key name", "操作": "operation", "查询条件": "query condition", "添加": "add", "配置类型": "configuration type", "删除": "delete", "请输入配置名称": "please enter a configuration name", "查询": "query", "配置名称": "configuration name", "配置取值": "Configuration value", "重置": "Reset", "配置": "Configuration", "请选择配置类型": "Please select a configuration type", "小区设置信息": "Community setting", "类型名称": "Type Name" },
"visitManage": { "请填写来访人姓名": "Please fill in the visitorname", "来访时间": "Visit time", "修改": "Modify", "车辆审核": "Vehicle Review", "操作": "Operation", "离开时间": "Departure Time", "状态": "Status", "访客联系方式": "Visitor Contact", "随行人数": "Number of people", "访客性别": "Visitor gender", "事由类型": "Reason type", "删除": "Delete", "查询": "Inquiry", "访客": "Visitor", "重置": "Reset", "请选择来访结束时间": "Please select the visit end time", "访客姓名": "Visitor name", "来访事由": "Visit reason", "访客信息": "Visitor", "车牌号": "License Plate Number", "登记": "Registration", "请填写访客联系方式": "Please fill in the visitorcontact", "请选择来访开始时间": "Please select the visit start time" },
"commonReport": {},
"newOaWorkflowDetail": { "申请时间": "application time", "序号": "serial number", "正在处理": "processing", "状态": "status", "工单办理": "work order", "必填": "required", "退回": "return", "部门": "department", "工单说明": "Work order description", "下一处理人": "Next handler", "工单详情": "Work order details", "返回": "Return", "意见": "Comments", "申请人": "applicant", "办理": "handle", "结束": "end", "处理人": "handler", "请选择": "please select", "管理员": "Administrator", "工单流转": "Work Order Circulation", "耗时": "Time Time", "处理完成": "Processing Completed", "退回至提交者": "Return to Submit User", "转单": "Transfer", "流程图": "Flowchart", "动作": "action" },
"contractCollectionPlanManage": { "计划": "plan", "请输入计划名称": "please enter plan name", "计划名称": "plan name", "操作": "action", "查询条件": "Inquiry Condition", "请输入费用名称": "Please enter the expense name", "收款计划信息": "Collection plan", "备注": "Remarks", "请输入合同编号": "Please enter the contract No.", "删除": "Delete", "查询": "Inquiry", "合同号": "Contract No.", "费用": "Expense", "计划费用": "Plan Expenses" },
"resourceOutManage": { "物品名称": "Item Name", "物品规格": "Item Specification", "物品库存": "Item Inventory", "物品编码": "Item ID", "申请数量": "application quantity", "可填": "fillable", "物品类型": "item type", "单号": "single number", "提交": "submit", "备注": "remarks", "必填": "required", "发放数量": "issued quantity" },
"cacheManage": { "查询": "query", "刷新缓存": "refresh cache", "操作": "operation", "查询条件": "query condition", "缓存信息": "cache", "名称": "name", "缓存": "cache", "缓存编码": "cache code", "请输入缓存编码": "please enter cache code", "请输入缓存名称": "please enter cache name", "请输入缓存": "please enter cache" },
"shopTypeManage": { "请选择是否默认": "Please choose whether to default", "请选择是否展示": "Please choose whether to display", "是否默认": "Default", "修改": "Modify", "操作": "operation", "查询条件": "query condition", "否": "no", "是否展示": "whether to display", "显示序号": "display serial number", "自定义": "self Definition", "备注": "Remarks", "请输入类型名称": "Please enter a type name", "店铺类型": "Shop Type", "删除": "Delete", "是": "yes", "查询": "query", "默认": "default", "类型": "type" },
"storeInfoManage": { "附近地标": "nearby landmarks", "修改": "Modify", "商户信息": "Merchant", "商户类型": "Merchant Type", "企业法人": "Enterprise Legal Person", "操作": "Operation", "联系电话": "Contact Number", "商户名称": "merchant name", "基本信息": "basic", "商户地址": "merchant address" },
"addItemOutStep": { "上一步": "previous step", "提交": "Submit", "下一步": "Next" },
"register": { "请输入用户名": "Please enter your username", "请再次输入密码": "Please enter your password again", "请输入密码": "Please enter your password", "我同意": "I agree" },
"reportNoFeeRoom": { "房屋": "Room", "楼栋": "Building", "序号": "serial number", "单元": "unit", "导出": "export", "业主名称": "owner name", "未收费房屋": "uncharged Room", "业主电话": "owner phone" },
"contractChangeDetails": { "甲方联系人": "Party AContact", "乙方联系电话": "Party BContact Number", "序号": "Serial Number", "开始时间": "Start Time", "处理人": "handler", "状态": "status", "合同类型": "contract type", "甲方": "Party A", "乙方": "Party B", "乙方联系人": "Party B Contact", "经办人": "Dealer", "合同": "Contract", "工单流转": "Work Order Circulation", "合同金额": "Contract Amount", "耗时": "time-consuming", "联系电话": "contact number", "甲方联系电话": "Party Acontact number", "处理时间": "processing time", "合同编号": "contract number", "结束时间": "end time", "签订时间": "signing time", "意见": "opinion", "合同名称": "contract name" },
"enterCommunity": { "修改": "Modify", "我的小区": "My Community", "市/州": "city", "操作": "Operation", "开始时间": "", "商用流程": "Flow", "城市编码": "City code", "状态": "State", "小区地址": "Address", "联系方式": "Tel", "省份": "Province", "小区名称": "Community name", "小区编码": "Community code", "申请退出": "Exit", "结束时间": "End time", "区/县": "Area", "面积": "Area" },
"newContractManage": { "起草合同信息": "Draft Contract Info", "修改": "Modify", "操作": "Operation", "开始时间": "start time", "状态": "status", "查询条件": "query condition", "合同类型": "contract type", "注意": "note", "请输入合同编号": "Please enter the contract number", "经办人": "manager", "删除": "delete", "请输入合同名称": "please enter the contract name", "查询": "query", "合同金额": "Contract Amount", "打印": "Print", "流程管理中设置合同申请续签": "Set Contract Application Renewal in Process Management", "父合同编号": "Parent Contract Number", "请输入合同类型": "Please enter contract type", "合同编号": "Contract ID", "结束时间": "End Time", "合同名称": "Contract Name" },
"repairDispatchManage": { "请输入报修人电话": "Please enter the repairerphone number", "请选择报修状态": "Please select the repair status", "操作": "Operation", "退单": "Refund", "状态": "Status", "查询条件": "Query Condition", "回访": "Return Visit", "位置": "Location", "报修类型": "Repair Type", "报修人": "Repair Person", "详情": "Details", "请输入报修": "Please enter the repair report", "查询": "Inquiry", "启动": "Start", "暂停": "Pause", "请输入报修人": "Please enter the repairer", "转单": "Transfer order", "报修人电话": "Repair requesterphone number", "请选择报修类型": "Please select the request for repair type", "报修信息": "Repair", "预约时间": "Appointment time", "办结": "Finish" },
"itemOutManage": { "领用方式": "Applying method", "申请时间": "Applying time", "操作": "Operation", "状态": "Status", "查询条件": "Inquiry Condition", "单号": "Order Number", "物品领用": "Item Receipt", "注意": "Note", "查看": "View", "操作人": "operator", "查询": "query", "订单号": "order number", "重置": "reset", "导出": "export", "物品": "Items", "流程管理中设置物品领用流程": "Set the item collection process in the process management", "请填写申请人姓名": "Please fill in the applicantname", "领用申请": "Apply for Application", "流程图": "Flowchart", "订单状态": "Order Status", "取消领用": "Cancel Requisition", "申请人": "Applicant" },
"sysDocumentManage": { "修改": "Modify", "操作": "Operation", "信息": "Information", "查询条件": "Query Condition", "请输入文档名称": "Please enter the document name", "删除": "delete", "查询": "query", "文档": "document", "文档信息": "document", "请输入文档编码": "please enter document code", "文档标题": "document title", "请输入文档": "please enter the document", "文档编码": "document code", "创建时间": "creation time" },
"menuManage": { "配置菜单": "Configuration Menu", "修改": "Modify", "请选择商户类型": "Please Select Merchant Type", "请输入菜单": "Please Enter Menu", "菜单显示": "Menu Display", "归属商户": "Attribution Merchant", "查询条件": "Query Condition", "请输入权限": "Please Enter Permission", "运营团队": "Operation Team", "菜单名称": "menu name", "请输入权限名称": "please enter the permission name", "删除": "delete", "查询": "query", "选择": "select", "菜单组": "menu group", "菜单信息": "menu", "代理商": "agent", "物业": "property", "权限": "permission", "序列": "sequence", "操作": "action", "菜单": "menu", "请选择菜单组名称": "Please select the menu group name", "请输入员工账号": "Please enter the employee account number", "开发团队": "Development team", "菜单地址": "Menu address", "请输入菜单名称": "Please Enter menu name" },
"oaWorkflowManage": { "工作流": "Workflow", "修改": "Modify", "操作": "Operation", "状态": "Status", "查询条件": "Query condition", "模型": "Model", "流程": "Process", "流程实例": "Process instance", "请选择流程类型": "Please select a process type", "描述": "description", "删除": "delete", "请输入流程名称": "please enter a process name", "查询": "query", "设计表单": "design form", "重置": "reset Settings", "流程名称": "Process Name", "请选择流程状态": "Please Select Process Status", "发布": "Publish", "流程类型": "Process Type", "创建时间": "Create time", "请输入工作流": "Please enter the workflow", "新建流程": "New process" },
"reportRepair": { "请选择创建结束时间": "Please select the creation end time", "请选择员工姓名": "Please select employee name", "退单": "Refund", "员工姓名": "Employee name", "查询条件": "Query condition", "报修汇总表": "Repair Summary Sheet", "员工": "Employee", "员工评分": "Employee Rating", "请选择创建开始时间": "Please select the creation start time", "统计": "Statistics", "查询": "query", "重置": "reset", "请选择完结结束时间": "please select the end time", "请选择状态": "please select the state", "请选择完结开始时间": "Please select an end start time", "导出": "Export", "已完结": "Completed", "处理中": "Processing", "转单": "Transfer", "已回访": "Revised", "报修编号": "Repair Number", "派单": "Dispatch" },
"convenienceMenusManage": { "修改": "Modify", "资产": "Assets", "操作": "Operation", "便民服务": "Convenience Services", "页面路径": "page path", "菜单名称": "menu name", "显示序号": "display serial number", "图片地址": "image address", "备注": "remarks", "删除": "Delete" },
"printPayFeeBangTai": { "房屋": "Room", "元": "Yuan", "大写人民币": "Uppercase RMB", "单号": "Single Number", "业主": "Owner", "单价": "Unit Price", "备注": "Remarks", "客户确认": "Customer Confirmation", "经办人": "Attorney", "财务收款": "Financial Collection", "编号": "Number", "收费范围": "Charge Range", "缴费时间": "Payment Time", "单位": "Unit", "至": "To", "部门负责人": "Department Leader", "取消": "Cancel", "周期": "Period", "金额": "Amount", "收费项目": "Charge Item", "面积": "area" },
"staffFeeManage": { "应收金额": "receivable amount", "元": "yuan", "请选择开始时间": "please select the start time", "查询条件": "query condition", "请选择结束时间": "please select the end time", "查询": "query", "员工名称": "employee name", "重置": "reset", "员工收费": "Employee Charges", "导出": "Export", "实收金额": "Actual Amount", "请填写员工编码": "Please fill in the employee code", "员工编码": "Employee code" },
"contractManage": { "操作": "operation", "开始时间": "start time", "状态": "status", "查询条件": "query condition", "合同类型": "contract Type", "合同信息": "Contract", "请输入合同编号": "Please enter the contract number", "查看": "View", "经办人": "Assignee", "删除": "Delete", "请输入合同名称": "Please enter the contract name", "查询": "Inquiry", "合同金额": "Contract Amount", "打印": "Print", "父合同编号": "Parent Contract Number", "请输入合同类型": "Please enter the contract type", "起草时间": "Drafting time", "合同编号": "Contract number", "结束时间": "End time", "费用": "Fee", "合同名称": "Contract Name" },
"rentingAuditManage": { "房屋": "Room", "修改": "Modify", "操作": "Operation", "出租审核": "Rental Review", "出租标题": "Rental Title", "详情": "Details", "预付类型": "Prepaid Type", "业主名称": "Owner Name", "出租配置": "Rental Configuration", "业主电话": "owner phone", "审核": "review", "租金": "rent", "入住时间": "occupancy time" },
"applicationKeyManage": { "钥匙申请": "Key application", "请输入用户手机": "Please input user mobile phone", "修改": "Modify", "操作": "Operation", "开始时间": "Start time", "查询条件": "Query conditions", "保安": "Security", "其他人员": "Other personnel", "请输入身份证号": "Please enter the ID number", "申请": "Apply", "请选择用户类型": "Please select a user type", "保洁": "Cleaning", "删除": "Delete", "性别": "Gender", "查询": "Query", "密码": "Password", "姓名": "Name", "手机号": "Mobile phone number", "请输入名称": "Please enter a name", "年龄": "Age", "身份证号": "ID number", "钥匙类型": "key type", "结束时间": "end time", "申请钥匙": "apply for key" },
"listOwner": { "修改": "modify", "入住房屋": "stay in the Room", "查询条件": "query condition", "请输入业主身份证号": "please input the ownerID number", "创建员工": "create employee", "详情": "details", "查询": "query", "请输入业主": "please enter the owner", "姓名": "name", "重置": "reset", "请输入业主名称": "please enter the ownername", "变更": "change", "添加业主": "add owner", "请填写房屋编号": "please fill in the Room number", "请输入联系方式": "please enter the contact", "年龄": "age", "房屋编号": "Room ID", "操作": "Operation", "业主": "Owner", "联系方式": "Contact", "身份证": "ID card", "房屋解绑": "Room Unbind", "性别": "Gender", "删除业主": "Delete Owner", "修改业主": "Modify Owner", "业主信息": "Owner Info" },
"myQuestionAnswerManage": { "员工自评": "employee self-assessment", "操作": "action", "员工投票": "employee vote", "开始时间": "start time", "得分": "score", "状态": "status", "查询条件": "query condition", "请输入问卷名称": "please enter the questionnaire name", "已答题": "answered question", "问卷名称": "Questionnaire Name", "问卷类型": "Questionnaire Type", "答题": "Answer", "查询": "Inquiry", "请输入问卷": "Please enter the questionnaire", "请选择问卷类型": "Please select the questionnaire type", "问卷": "questionnaire", "结束时间": "end time", "我的问卷": "my questionnaire" },
"reportPrePaymentFee": { "预缴费提醒": "prepayment reminder", "房号": "Room number", "导出": "Export", "费用编号": "Expense number", "费用项": "Expense item", "费用开始时间": "Expense start time", "距离费用开始时间": "distance fee start time" },
"printOweFee": { "项目名称": "item name", "单位": "unit", "打印时间": "print time", "费用期间": "Charge Period", "至": "To", "元": "Yuan", "大写人民币": "CNY", "单价": "Unit Price", "取消": "Cancel", "收费通知单": "Charge Notice", "金额": "Amount", "面积": "Area" },
"simplifyAcceptanceTT": { "投诉单": "Complaint Notice", "门禁同步": "Access Control Synchronization", "道闸同步": "gateway synchronization", "业主身份证": "owner ID card", "业主姓名": "owner name", "查询": "query", "入住日期": "Check-in date", "业主名称": "Owner name", "联系电话": "Contact number", "算费系数": "Fee factor", "车辆信息": "Vehicle", "业主电话": "Ownerphone number", "成员身份证": "Member ID card", "房屋编号": "Room ID", "家庭成员": "Family member", "房屋": "Room", "房屋状态": "Room Status", "停车费用": "Parking Fee", "身份证": "ID Card", "房屋费用": "Housing Fee", "性别": "Gender", "房屋面积": "Room area", "报修单": "repair report", "业主编号": "owner number", "成员手机号": "member phone number", "房屋号": "Room number", "户型": "unit type", "补打收据": "receipt for reprinting", "车牌号": "license plate number", "成员姓名": "member name" },
"tempCarInoutFeeManage": { "订单": "order", "元": "yuan", "请选择开始时间": "please select a start time", "开始时间": "start time", "查询条件": "query condition", "应付金额": "payable amount", "缴费": "payment", "进场": "entry", "请选择结束时间": "please select the end time", "查询": "query", "缴费时间": "payment time", "重置": "reset", "导出": "export", "临时车缴费清单": "temporary car payment list", "车牌号": "license plate number", "实付金额": "Actual payment amount", "操作员工": "Operation staff", "请填写员工编码": "Please fill in the employee code", "结束时间": "End time", "请填写车牌号": "Please fill in the license plate number" },
"feeManualCollectionDetailManage": { "操作": "operation", "取消托收": "Cancel Collection", "开始时间": "Start Time", "状态": "Status", "费用名称": "Expense Name", "同步欠费": "Sync Arrears", "费用金额": "Expense Amount", "托收明细": "Collection Details", "结束时间": "End Time" },
"addPurchaseApplyStep": { "上一步": "Previous Step", "提交": "submit", "下一步": "next" },
"contractTypeSpecManage": { "请选择规格显示": "please select a specification to display", "修改": "modify", "请输入规格": "Please input specification", "操作": "Operation", "合同扩展信息": "Contract extension", "查询条件": "Query condition", "规格": "Specification", "规格名称": "specification name", "必填": "required", "查询显示": "query display", "展示": "display", "删除": "delete", "显示": "query", "查询": "value type", "值类型": "do not display", "不显示": "please enter the specification name", "请输入规格名称": "Specification type", "规格类型": "" },
"reportInfoAnswerValueManage": { "查询": "query", "请输入项目名称": "please enter project name", "时间": "time", "题目": "title", "查询条件": "query condition", "请输入内容": "please input content", "疫情上报": "epidemic report", "项目": "item", "登记人": "registrant", "请输入题目": "Please enter the title", "内容": "Content", "类型": "Type" },
"orderDetailManage": { "业务类型": "Business Type", "订单": "Order", "受理单明细": "Receipt Details", "创建时间": "Creation Time", "业务": "Business" },
"rentingAppointmentManage": { "房屋": "Room", "修改": "Modify", "操作": "Operation", "请输入租客手机号": "Please enter the tenant Mobile number", "状态": "status", "查询条件": "query condition", "租客电话": "tenant phone number", "预约信息": "reservation", "放弃": "abandonment", "备注": "remarks", "租房成功": "rental success", "租客性别": "tenant gender", "租客名称": "tenant name", "确认租房": "Confirm rental", "查询": "query", "预约房屋": "reservation Room", "请选择状态": "please select status", "租房失败": "rent failed", "未租房": "Not rented", "预约时间": "appointment time", "请输入租客名称": "please enter the tenantname" },
"auditCommunityManage": { "小区": "community", "附近地标": "Nearby landmarks", "未审核小区": "unreviewed community", "小区名称": "community name", "小区经度": "community longitude", "操作": "operation", "城市编码": "City code", "状态": "status", "小区地址": "community address", "小区维度": "community dimension", "审核": "review", "删除": "delete" },
"roomRenovationDetailManage": { "明细": "details", "验房明细": "inspection details", "状态": "status", "验房人": "inspector", "说明": "description", "验房时间": "Inspection time" },
"addComplaintStep": { "上一步": "Previous step", "下一步": "Next step", "完成": "Complete" },
"shops": { "修改": "modify", "层": "floor", "室内面积": "indoor area", "查询条件": "query condition", "添加商铺": "add shop", "截租时间": "Closing Time", "楼层": "Floor", "已出售": "Sold", "删除": "Delete", "查询": "Inquiry", "请选择状态": "Please select the status", "联系电话": "Contact number", "商铺编号": "Shop number", "算费系数": "Fee calculation factor", "租金": "Rent", "商铺信息": "shop", "解绑": "unbinding", "请填写商铺编号": "please fill in the store number", "起租时间": "lease start time", "平方米": "square meter", "操作": "operation", "业主": "owner", "建筑面积": "building area", "出租": "rental", "请填写商铺": "please Fill in shop", "空闲": "vacant", "已出租": "rented", "商铺": "shop", "出售": "sold", "商铺状态": "shop status" },
"reportFeeBreakdown": { "请选择缴费开始时间": "Please select the payment start time", "元": "yuan", "单元": "unit", "历史欠费": "historical arrears", "查询条件": "Query Condition", "费用类型": "Fee Type", "请选择缴费结束时间": "Please select the payment end time", "费用编号": "Fee ID", "欠费追回": "Collection of arrears", "当月实收": "Actual collection of the current month", "查询": "Inquiry", "选择": "Select", "大计": "Plan", "请选择楼栋": "Please select a building", "重置": "Reset", "欠费金额": "Amount in arrears", "实收": "Actual receipt", "当月应收": "Receivable in the current month", "欠费": "Arrears", "请选择单元": "Please select a unit", "实收合计": "Actual total", "请填写年份月份": "Please fill in the year and month", "预交费用": "Prepaid fee", "请选择费用类型": "Please select the fee type", "请选择收费项": "Please select the charge item", "应收": "Receivable", "费用项": "Expense item", "更新时间": "Update time", "导出": "Export", "小计": "Subtotal", "费用分项表": "Expense item table", "应收合计": "Total Receivable" },
"reportOwnerPayFee": { "请填写业主名称": "Please fill in the ownername", "房屋": "Room", "预收": "Prepayment", "请填写年份": "Please fill in the year", "查询条件": "Inquiry conditions", "业主缴费明细": "Owner payment details", "业主": "Owner", "请选择收费项": "Please select a charge item", "应收": "Receivable", "查询": "Inquiry", "合计": "Total", "导出": "Export", "请选择收费大类": "Please select a charge category", "费用项目": "Expense item", "请填写房屋编号": "Please fill in the Room number" },
"roomFeeImport": { "导入": "Import", "操作": "operation", "信息": "information", "查询条件": "query condition", "费用类型": "expense type", "备注": "remark", "必填": "required", "费用导入": "Expense Import", "请输入导入": "Please Enter Import", "详情": "Details", "查询": "Query", "重置": "Reset", "费用公摊": "Expense sharing", "创建时间": "Creation time" },
"accountBondManage": { "修改": "Modify", "操作": "Operation", "保证金信息": "Margin", "查询条件": "query condition", "备注": "remark", "有效月份": "valid month", "删除": "delete", "查询": "query", "保证金": "Margin", "保证金名称": "Margin Name", "保证金金额": "Margin Amount", "请输入保证金名称": "Please enter Margin Name", "保证金类型": "Margin Type", "请选择物品类型": "Please select item type" },
"changeStaffPwd": { "新密码": "New Password", "确认修改": "Confirm Modification", "确认密码": "Confirm Password", "原始密码": "original password", "修改密码": "change password", "必填": "required" },
"addParkingSpaceApply": { "汽车品牌": "car brand", "起租时间": "Rental time", "颜色": "Color", "车辆类型": "Vehicle type", "备注": "Remarks", "必填": "Required", "家用小汽车": "Family car", "货车": "Vehicle", "客车": "Passenger car", "选填": "Optional", "结租时间": "Lease settlement time", "添加车位申请": "Add parking space application", "车牌号": "License plate number", "返回": "Return", "申请人电话": "Applicant phone", "申请人": "Applicant" },
"inspectionItemManage": { "查询": "query", "修改": "modify", "操作": "operation", "题目": "title", "查询条件": "query condition", "创建时间": "Creation time", "请输入项目编号": "Please enter the item number", "备注": "Remarks", "巡检项目": "Inspection items", "请输入巡检项目": "Please enter Inspection item", "编号": "Number", "删除": "Delete" },
"auditUserManage": { "请输入审核人员": "Please enter the auditor", "用户": "User", "财务主管": "Financial Supervisor", "操作": "Operation", "采购人员": "Purchasing Person", "查询条件": "Query Condition", "审核人员信息": "Reviewer", "流程对象": "process object", "用户名称": "user name", "删除": "delete", "查询": "query", "请选择审核环节": "please select the audit link", "审核环节": "Review link", "请输入审核": "Please input review", "审核": "Review", "部门主管": "Department head" },
"batchPayFeeOrder": { "打印收据": "print receipt", "元": "yuan", "计费结束时间": "billing end time", "查询条件": "query condition", "费用类型": "expense type", "备注": "Remarks", "缴费": "Payment", "支付方式": "Payment Method", "确定收费": "Confirmation of Charges", "批量缴费": "Batch Payment", "必填": "Required Fill in", "关闭": "Close", "欠费金额": "Arrears Amount", "缴费周期": "Payment Period", "实收": "Actual Collection", "收费对象": "Charge object", "个月": "month", "费用项目": "Expense Item", "费用标识": "Expense Identification", "收费确认": "Charge Confirmation", "返回": "Return", "缴费提示": "Payment Reminder", "缴费成功": "Payment successful", "请输入实际金额": "Please enter the actual amount", "请选择缴费周期": "Please select the payment period", "计费起始时间": "Billing start time time", "请输入备注": "please enter a note", "金额": "amount" },
"feeManualCollectionManage": { "房屋名称": "Room name", "操作": "action", "状态": "status", "查询条件": "query condition", "托收金额": "collection amount", "请输入房屋编号": "please enter the Room number", "请输入业主电话": "please Enter the ownerphone number", "删除": "Delete", "房屋面积": "Room area", "查询": "Inquiry", "托收": "Collection", "明细": "Details", "请输入业主名称": "Please enter the ownername", "业主名称": "The ownername", "托收信息": "Collection", "业主电话": "The ownerphone number" },
"payFeeBatch": { "操作": "operation", "审核通过": "approval", "查询条件": "query condition", "员工": "employee", "申请取消": "cancommunityation application", "取消费用": "Cancommunityation Fee", "请填写创建员工": "Please fill in the Create Employee", "查询": "Inquiry", "批次号": "Batch No.", "审核失败": "Approval Failed", "时间": "time", "取消原因": "cancommunityation reason", "重置": "reset", "审核意见": "review comments", "请选择状态": "please select a status", "正常": "normal", "审核": "please enter batch number", "请输入批次编号": "approval status", "审核状态": "" },
"advertVedioView": {},
"questionAnswerTitleManage": { "修改": "Modify", "操作": "Operation", "多选": "Multiple Choice", "题目": "Question", "查询条件": "Query Condition", "请输入问卷名称": "Please enter the questionnaire name", "结果": "Result", "顺序": "Order", "问卷题目": "Questionnaire title", "题目类型": "Question type", "删除": "delete", "查询": "query", "简答题": "short answer", "请输入题目": "please enter a question", "单选": "single choice", "请选择题目类型": "Please select a question type" },
"noticeDetail": { "公告类型": "Notice Type", "开始时间": "Start Time", "创建时间": "Creation Time", "返回": "Return", "公告内容": "Notice Content", "标题": "Title", "公告详情": "Announcement Details", "结束时间": "End Time" },
"applyRoomDiscountTypeManage": { "查询": "query", "修改": "modification", "重置": "reset", "操作": "action", "查询条件": "query condition", "请输入申请类型": "please enter application type", "申请类型": "application type", "添加": "add", "类型名称": "type name", "类型描述": "type description", "请输入类型名称": "please enter a type name", "删除": "delete" },
"company": { "上一步": "previous step", "须知": "notice", "提交": "submit", "填写公司信息": "fill in company", "扩展信息": "extended", "证件信息": "Certificate", "这里是须知": "Here are the instructions", "基本信息": "Basic", "下一步": "Next step", "我同意并遵守以上信息": "I agree and abide by the above" },
"assetImportLogDetail": { "状态": "status", "错误描述": "error description", "名称": "name", "导入时间": "import time", "详情": "details" },
"carStructure": { "元": "yuan", "欠费": "arrears", "双击查看详情": "double click to view details" },
"attendanceLogManage": { "查询": "query", "员工名称": "employee name", "请输入班组名称": "please input team name", "重置": "reset", "查询条件": "query condition", "员工": "employee", "请输入部门名称": "please enter the department name", "考勤时间": "attendance time", "请选择打卡时间": "please select the punch time", "考勤记录": "attendance record", "部门名称": "department name" },
"auditAppUserBindingOwnerManage": { "小区": "Community", "申请时间": "Application Time", "请输入业主手机": "Please enter the ownermobile phone", "操作": "Operation", "状态": "status", "查询条件": "query condition", "绑定": "binding", "业主": "owner", "身份证": "ID card", "查询": "query", "审核中": "Under review", "审核失败": "Audit failed", "小区名称": "Community name", "关联业主": "Associated owner", "请选择状态": "Please select a status", "请输入业主名称": "Please enter the ownername", "审核业主绑定": "Review owner binding", "手机号": "Mobile number", "手机端类型": "Mobile terminal type", "请输入业主身份证": "Please enter the ownerID card", "审核成功": "Successful review" },
"machineRecordManage": { "请输入用户手机": "Please enter the usermobile phone", "操作": "operation", "查询条件": "query condition", "业主": "owner", "开门时间": "Open time", "钥匙开门": "Key to open the door", "用户手机号": "User phone number", "请选择用户类型": "Please select the user type", "用户名称": "User name", "身份证": "ID card", "详情": "Details", "请选择开门方式": "Please select the opening method", "查询": "Inquiry", "设备编码": "Equipment Code", "开门方式": "opening method", "请输入设备名称": "please enter equipment name", "请输入设备编码": "please enter equipment code", "业主成员": "owner member", "人脸开门": "Face to open the door", "开门记录": "Open door record", "请输入用户名称": "Please enter the user name" },
"listOwnerCarMember": { "修改": "Modify", "起租时间": "Rent Time", "操作": "Operation", "颜色": "Color", "状态": "Status", "车场": "depot", "业主": "owner", "车辆类型": "car type", "截止时间": "deadline", "删除": "delete", "子母车辆": "Parent- child car", "车位": "Parking space", "房屋号": "Room number", "车牌号": "License plate number", "车辆品牌": "Vehicle brand" },
"ownerRepairDetail": { "物品使用数量": "Item Quantity", "元": "Yuan", "序号": "Serial Number", "需要用料": "Material Required", "状态": "Status", "无需用料": "No need to use materials", "分": "Points", "维修后图片": "Pictures after repairs", "回访满意度": "Return visit satisfaction", "综合评价得分": "Comprehensive evaluation score", "维修前图片": "Picture before maintenance", "报修类型": "Repair type", "位置": "Location", "工单编码": "Work order code", "报修人": "Repair Requester", "维修员服务评分": "Maintenance Service Score", "工单详情": "Work Order Details", "物品价格": "Item Price", "无偿服务": "free service", "返回": "return", "维修类型": "repair type", "有偿服务": "paid service", "预约时间": "reservation time", "物品资源名称": "item resource name", "物品资源规格": "item resource specification", "意见": "opinion", "处理开始时间": "processing start time", "处理人": "handler", "回访内容": "Return Visit Content", "相关物品": "Related Items", "使用人": "Users", "联系方式": "Contact", "工单图片": "Work Order Picture", "物品资源类型": "Item Resource Type", "工单流转": "Work Order Circulation", "报修内容": "Repair Content", "耗时": "Time-consuming", "打印": "Print", "费用明细": "Expense Details", "时间": "Time", "处理结束时间": "Processing End Time", "物品资源编号": "Item Resource Number", "上门速度评分": "Door Speed Score", "用料": "Material", "平均分": "Average" },
"orgManage": { "下辖所有小区": "Manage All Community", "下辖小区": "Manage Community", "查询": "query", "组织名称": "organization name", "请输入组织名称": "please enter organization name", "操作": "action", "组织信息": "Organization", "上级组织": "Superior Organization", "查询条件": "Query Condition", "请选择小区": "Please select a community", "添加": "Add", "组织": "organization", "组织级别": "organization level", "请输入组织": "please enter organization" },
"shopManage": { "操作": "Operation", "审核通过": "Approved", "查询条件": "Query Condition", "商家地址": "Business Address", "店铺信息": "Shop", "审核不通过": "Approved Failed", "店铺类型": "Store Type", "店铺": "Store", "查询": "Inquiry", "店铺状态": "Store Status", "商家名称": "business name", "联系电话": "contact number", "撤回": "withdrawal", "创建时间": "creation time", "店铺名称": "store name", "请选择店铺类型": "Please select a store type" },
"noticeManage": { "公告类型": "Notice Type", "通知完成": "Notice Complete", "修改": "Modify", "开始时间": "Start Time", "公告信息": "Notice", "状态": "status", "查询条件": "query condition", "请输入公告标题": "please enter the announcement title", "必填": "required", "详情": "details", "删除": "delete", "通知范围": "notification scope", "查询": "query", "员工通知": "employee notification", "重置": "reset", "业主通知": "Owner Notice", "请选择状态": "Please select a state", "公告": "Announcement", "发布": "Post", "请输入公告": "Please enter an announcement", "业主微信通知": "Owner WeChat Notification", "结束时间": "End Time", "请选择公告类型": "Please select an announcement type", "操作": "Operation", "待通知": "To be notified", "通知中": "notifying", "标题": "title" },
"room": { "修改": "modify", "层": "level", "室内面积": "indoor area", "单元": "unit", "查询条件": "query condition", "电话": "phone", "添加": "add", "楼层": "floor", "必填": "required", "删除": "delete", "查询": "query", "选择": "select", "请选择楼栋": "please select a building", "请选择状态": "please select a state", "请选择单元": "please select a unit", "房屋信息": "Room", "请填写房屋编号": "Please fill in the Room number", "租金": "Rent", "房屋": "Room", "平方米": "square meter", "操作": "Operation", "房屋状态": "Room Status", "业主": "Owner", "建筑面积": "Building Area", "类型": "Type" },
"staffAssessmentManage": { "操作": "operation", "开始时间": "start time", "员工考核": "staff assessment", "状态": "status", "查询条件": "query condition", "请输入问卷名称": "please enter the questionnaire name", "问卷名称": "questionnaire name", "考核得分": "assessment score", "待考核": "to be assessed", "自评得分": "Self-assessment score", "查询": "Inquiry", "请输入问卷": "Please enter the questionnaire", "员工名称": "Employee name", "请选择状态": "Please select the status", "已考核": "Appraisal", "考核完成": "Appraisal Completed", "考核": "End Time", "结束时间": "" },
"billOweManage": { "请输入账单编号": "Please enter the bill number", "请选择交费状态": "Please select the payment status", "房屋": "Room", "当期欠费": "Current arrears", "计费截止时间": "Billing deadline", "元": "yuan", "信息": "information", "状态": "status", "查询条件": "query Condition", "累计欠费": "Accumulated arrears", "业主姓名": "Ownername", "请输入信息": "Please enter", "查询": "Inquiry", "重置": "Reset", "请输入业主名称": "Please enter the ownername", "联系电话": "Contact number", "返回": "Return", "计费开始时间": "Billing start time" },
"addContract": { "开始时间": "Start Time", "电话": "Phone", "合同类型": "Contract Type", "甲方": "Party A", "乙方": "Party B", "必填": "Required", "乙方联系人": "Party B Contact", "经办人": "Dealer", "删除": "Delete", "选填": "Select Fill in", "父合同名称": "Parent Contract Name", "联系电话": "Contact Phone", "关联房屋": "Related Housing", "合同编号": "Contract Number", "返回": "Return", "结束时间": "End Time", "签订时间": "Signing Time", "房屋": "Room", "甲方联系人": "Party A Contact", "乙方联系电话": "Party Bphone number", "平方米": "square meter", "操作": "operation", "房屋状态": "Room status", "业主": "owner", "父合同状态": "Parent contract status", "个": "item", "删除附件": "delete attachment", "建筑面积": "building area", "第": "contract value", "合同金额": "Add Attachment", "添加附件": "Parent Contract Number", "父合同编号": "Contract Attachment", "合同附件": "Party AContact Number", "甲方联系电话": "Contract name", "合同名称": "" },
"reportInfoSettingTitleManage": { "请输入问题名称": "Please enter the question name", "修改": "Modify", "操作": "Operation", "多选": "Multiple choice", "题目": "Question", "查询条件": "Query Condition", "结果": "Result", "顺序": "Order", "问卷题目": "Questionnaire Question", "题目类型": "Question Type", "删除": "delete", "查询": "query", "简答题": "short answer", "请输入题目": "please enter a question", "单选": "single choice", "请选择题目类型": "Please select a question type" },
"newOaWorkflowDoing": { "物品领用待办": "Items To Be Done", "我的已办": "My Doed", "合同起草已办": "Contract Drafting Done", "投诉待办": "Complaint pending", "已办": "Done", "投诉已办": "Contract change pending", "合同变更已办": "Repair pending", "报修待办": "Contract drafting pending", "合同起草待办": "My pending", "我的待办": "Pending", "待办": "Purchase has been done", "采购已办": "Items have been received and used", "物品领用已办": "Items have been transferred", "物品调拨已办": "Transfer to be done", "调拨待办": "Repair completed", "报修已办": "Purchase pending", "合同变更待办": "", "采购待办": "" },
"listRoomFee": { "应收金额": "Amount Receivable", "计费结束时间": "Billing End Time", "状态": "Status", "费用类型": "Charge Type", "本期度数": "Current Degree", "单价": "Unit Price", "取消费用": "Cancommunityation Fee", "缴费": "Payment", "说明": "Description", "固定费": "Fixed fee", "算法": "Algorithm", "费用根据实际情况而定": "Expense according to actual situation", "上期度数": "Last period degree", "费用项目": "Expense item", "费用标识": "Expense ID", "费用": "Expense", "缴费历史": "Payment History", "面积": "Area", "费用变更": "Expense Change", "建账时间": "Account creation time", "操作": "Operation", "附加费": "Additional fee", "用量": "Usage", "注意": "Note", "计费起始时间": "Billing start time" },
"appManage": { "修改": "modify", "应用信息": "app info", "秘钥": "key", "白名单": "whitelist", "操作": "action", "应用名称": "app name", "黑名单": "blacklist", "备注": "note", "删除": "delete", "应用": "app" },
"inspectionPointManage": { "请选择巡检点类型": "Please select an inspection point type", "巡检位置": "Inspection location", "巡检点名称": "Inspection point name", "修改": "Modify", "操作": "Operation", "查询条件": "Query condition", "添加": "Add", "巡检点类型": "Inspection point type", "备注": "Remarks", "删除": "Delete", "二维码": "QR Code", "请输入巡检点": "Please enter the inspection point", "查询": "Query", "重置": "reset", "巡检点信息": "inspection point", "请输入设备编码": "please enter the equipment code", "巡检点": "inspection point", "请输入巡检点名称": "Please enter the inspection point name", "巡检项目": "Inspection item" },
"smsConfigManage": { "修改": "Modify", "短信业务": "SMS Service", "操作": "Operation", "短信配置": "SMS Configuration", "短信编号": "SMS Number", "短信签名": "SMS Signature", "短信商": "SMS Provider", "短信秘钥": "SMS Key", "访问": "Access", "日志": "Log", "短信模板": "SMS Template", "区域": "Region" },
"inspectionPlanStaffManage": { "设置": "Settings", "操作": "Operation", "开始时间": "Start Time", "巡检人": "Inspection Person", "巡检周期": "Inspection Period", "结束时间": "End Time", "删除": "Delete" },
"contractApplyAuditOrders": { "合同状态": "Contract Status", "操作": "Operation", "审批": "Approval", "结束": "End", "起草待办单": "Draft To Do single", "合同类型": "contract type", "创建时间": "creation time", "合同编号": "contract number", "查看": "view", "合同名称": "contract name" },
"inAndOutStep": { "上一步": "Previous Step", "提交": "Submit", "下一步": "Next Step" },
"purchaseApplyDetailManage": { "采购总价": "Total purchase price", "请填写物品名称": "Please fill in the item name", "请选择仓库": "Please select a wareRoom", "状态": "Status", "查询条件": "query condition", "请选择采购方式": "please select the purchase method", "请选择供应商": "please select the supplier", "采购价格": "purchase price", "请填写使用人姓名": "Please fill in the username", "请选择物品规格": "Please select the item specification", "查询": "Inquiry", "物品仓库": "Item WareRoom", "重置": "Reset", "请选择出入库方式": "Please select the inbound and outbound method", "请选择状态": "Please select the status", "采购": "Purchase", "出入库类型": "Inventory type", "申请人": "Applicant", "是否是固定物品": "Whether it is a fixed item", "请选择创建结束时间": "Please select the creation end time", "物品规格": "Item Specifications", "出入库明细": "In/ Out Details", "申请数量": "Request Quantity", "物品类型": "Item Type", "请选择创建开始时间": "Please select the creation start time time", "使用人": "user", "物品供应商": "item supplier", "物品名称": "item name", "订单号": "order number", "导出": "Export", "请选择二级分类": "Please select the secondary category", "申请单号": "Application number", "请选择物品类型": "Please select the item type", "创建时间": "Creation Time", "申请备注": "Application Notes", "请填写申请人姓名": "Please fill in the applicantname" },
"activitiesTypeManage": { "修改": "Modify", "操作": "Operation", "查询条件": "Query Condition", "否": "No", "信息大类": "Information Category", "添加": "Add", "显示序号": "Display serial number", "是否显示": "Whether to display", "请输入大类名称": "Please enter the category name", "删除": "delete", "是": "yes", "查询": "query", "重置": "reset", "大类名称": "class name", "大类描述": "class description", "大类编码": "category code", "请输入大类编码": "please enter the category code", "请选择是否显示": "please choose whether to display" },
"carInManage": { "请输入进场开始时间": "Please enter the entry start time", "在场时间": "Entry time", "在场车辆": "Attend car", "进场时间": "query condition", "查询条件": "minutes", "分": "please enter entry and exit", "请输入进出场": "please enter entry and exit time", "请输入进场结束时间": "hour", "小时": "query", "查询": "car status", "车辆状态": "please enter the license plate number", "请输入车牌号": "License plate number", "车牌号": "In and out", "进出场": "" },
"tempCarFeeConfigManage": { "修改": "modify", "操作": "action", "请输入标准名称": "please enter a standard name", "开始时间": "start time", "标准名称": "standard name", "查询条件": "query condition", "添加": "add", "车辆类型": "car type", "删除": "delete", "收费信息": "charge", "停车场": "parking lot", "查询": "query", "重置": "reset", "标准": "standard", "请输入停车场": "please input parking lot", "请选择车辆类型": "please select the car type", "收费规则": "toll rules", "结束时间": "end time" },
"reportFeeSummary": { "请选择缴费开始时间": "Please select the payment start time", "元": "yuan", "单元": "unit", "历史欠费": "historical arrears", "查询条件": "Inquiry Condition", "请选择缴费结束时间": "Please select the end time of payment", "欠费追回": "Collection of arrears", "当月实收": "Actual collection of the current month", "查询": "query", "选择": "select", "大计": "big plan", "请选择楼栋": "please select a building", "重置": "reset", "欠费金额": "Amount in arrears", "实收": "Actually received", "当月应收": "Receivable in the current month", "日期": "Date", "请选择单元": "Please select Unit", "请填写房屋编号": "Please fill in the Room number", "费用汇总表": "Summary of fees", "实收合计": "Total received", "预交费用": "Prepaid Fee", "请选择收费项": "Please select a charge item", "收费率": "Charge rate", "应收": "Receivable", "更新时间": "Update time", "导出": "Export", "小计": "Subtotal", "应收合计": "Total Receivable" },
"basePrivilegeManage": { "权限": "Privilege", "修改": "Modify", "商户类型": "Merchant Type", "操作": "Operation", "查询条件": "Query Condition", "资源路径": "Resource Path", "商户名称": "Business Name", "请输入权限名称": "Please enter the permission name", "删除": "Delete", "查询": "Query", "添加权限": "Add permission", "权限信息": "Permission", "创建时间": "Creation time", "请输入权限编码": "Please enter the permission code", "权限名称": "Permission name" },
"transferGoodsStep": { "上一步": "Previous", "提交": "Submit", "下一步": "Next" },
"menuCatalogManage": { "修改": "modify", "请选择商户类型": "please select a merchant type", "商户类型": "merchant type", "图片": "picture", "操作": "Operation", "查询条件": "Query Condition", "否": "No", "顺序": "Order", "运营团队": "Operation Team", "是否显示": "Display", "名称": "name", "编号": "number", "删除": "delete", "是": "yes", "查询": "query", "菜单组": "menu-group", "菜单目录": "Menu Directory", "请选择是否显示": "Please select whether to display", "商家": "Merchant", "开发团队": "Development team", "请输入菜单组名称": "Please enter menu group name", "页面": "page", "物业": "property" },
"accountManage": { "预存": "Prestore", "操作": "operation", "业主账户": "owner account", "查询条件": "query condition", "请输入业主身份证号": "please enter the ownerID number", "账户类型": "Account Type", "账户明细": "Account Details", "查询": "Inquiry", "账户名称": "Account Name", "账户金额": "Account Amount", "重置": "reset", "请输入业主名称": "please enter the ownername", "账户编号": "account number", "请输入联系方式": "please enter the contact", "创建时间": "creation time" },
"complaintManage": { "修改": "modify", "单元": "unit", "查询条件": "query condition", "请输入投诉人": "please enter the complainant", "请输入房屋编号": "Please enter the Room number", "详情": "Details", "删除": "Delete", "查询": "Inquiry", "重置": "Reset", "请选择投诉状态": "Please select the complaint status", "投诉": "Complaint", "处理人电话": "Processor phone number", "投诉人电话": "Complainant phone number", "流程管理中设置投诉建议流程": "Set up the complaint suggestion process in the process management", "投诉建议": "Complaint suggestion", "房屋": "Room", "请输入投诉人电话": "Please enter the complainantphone number", "操作": "Operation", "请选择开始时间": "please select a start time", "处理人": "handler", "室": "room", "投诉人": "complainant", "投诉类型": "complaint Type", "注意": "Attention", "请选择结束时间": "Please select the end time", "号楼": "Building number", "咨询": "Processing Completed", "处理完成": "Complaint Status", "投诉状态": "Processing", "处理中": "Please Select Complaint Type", "请选择投诉类型": "Suggestion", "建议": "Creation time", "创建时间": "Please enter the complaint code", "请输入投诉编码": "Flowchart", "流程图": "" },
"businessTableHisManage": { "轨迹": "track", "修改": "modify", "操作": "action", "查询条件": "query condition", "添加": "add", "轨迹表名": "track table name", "请输入表名": "please enter the table name", "删除": "delete", "请输入业务类型": "please enter the business type", "查询": "Query", "业务轨迹": "Business Track", "业务类型": "Business Type", "表名": "Table Name", "请选择动作": "Please select an action", "动作": "action" },
"feeFormulaManage": { "修改": "Modify", "公式信息": "Formula Info", "操作": "Operation", "添加公式": "Add Formula", "单价": "Unit Price", "公式": "formula", "描述": "description", "删除": "delete" },
"parkingAreaManage": { "修改": "Modify", "操作": "Operation", "查询条件": "Query Condition", "请选择停车场类型": "Please select a parking lot type", "添加": "Add", "地上停车场": "Above Parking", "删除": "Delete", "地下停车场": "Underground Parking", "停车场": "Parking", "停车场类型": "Parking Type", "查询": "Inquiry", "请输入停车场": "Please enter the parking lot", "请输入停车场编号": "Please enter the parking lot number", "停车场信息": "parking lot info", "创建时间": "creation time", "停车场编号": "parking lot number", "问候语": "greeting" },
"storeOrderCartDetail": { "商品规格": "Product Specification", "购买数量": "Purchase Quantity", "序号": "Serial Number", "操作时间": "Operation Time", "手机号码": "Mobile Phone Number", "单价": "Unit Price", "备注": "Remarks", "说明": "Description", "工单编码": "Work Order Code", "支付金额": "Payment Amount", "收货人信息": "Consignee", "用户名称": "User Name", "订单详情": "Order Details", "商品名称": "Product Name", "下单时间": "Order Time", "操作信息": "Operation", "订单状态": "Order Status", "收货地址": "Shipping Address" },
"parkingAreaText": { "请填写第三个提示": "Please fill in the third prompt", "请填写第二个提示": "Please fill in the second prompt", "请填写语音": "Please fill in Voice", "请填写第四个提示": "Please fill in the fourth prompt", "请填写第一个提示": "Please fill in the first prompt" },
"menuGroupCatalogManage": { "修改": "modify", "菜单组": "menugroup", "操作": "action", "编号": "number", "删除": "delete" },
"serviceImplManage": { "修改": "Modify", "操作": "Operation", "查询条件": "Query Condition", "服务实现信息": "Service Implementation", "业务名称": "Business name", "请输入业务类型": "please enter the business type", "删除": "delete", "查询": "query", "微服务": "microservice", "业务类型": "business Type", "请选择调用方式": "Please select the calling method", "请输入": "Please input", "调用类型": "Call type", "请输入业务名称": "Please enter the business name", "服务实现": "Service Implementation" },
"junkRequirementManage": { "操作": "Operation", "审核通过": "Approved", "信息": "Information", "编码": "Code", "请输入发布人": "Please enter the post Person", "状态": "status", "查询条件": "query condition", "家具": "furniture", "联系方式": "contact", "发布人": "poster", "删除": "delete", "未审核": "unapproved", "请选择类别": "please select a category", "查询": "query", "审核失败": "audit failure", "请输入发布电话": "Please enter the release phone number", "处理完成": "Processing completed", "请选择状态": "Please select a status", "参考价格": "Reference price", "审核": "Review", "电器": "appliance", "类别": "category" },
"reportPayFeeDetail": { "请选择缴费开始时间": "Please select the payment start time", "优惠": "Preferential", "应收金额": "Amount receivable", "元": "Yuan", "单元": "Unit", "费用结束时间": "Expense End Time", "查询条件": "Query Condition", "费用类型": "Expense Type", "优惠金额": "Discount Amount", "请选择缴费结束时间": "Please select the payment end time", "费用开始时间": "Fee start time", "支付方式": "Payment method", "缴费明细表": "Payment schedule", "查询": "query", "选择": "select", "大计": "big plan", "请选择楼栋": "please select a building", "重置": "reset", "实收": "Actual receipt", "房号": "Room number", "减免": "Reduction or exemption", "请选择单元": "Please select the unit", "请填写房屋编号": "Please fill in the housing number", "请选择费用状态": "Please select a fee status", "费用状态": "Fee status", "空置房打折": "Vacant room discount", "请选择费用类型": "Please select a fee type", "业主": "owner", "请选择收费项": "please select the charge item", "应收": "receivable", "费用项": "expense item", "滞纳金": "late fee", "订单号": "Order Number", "缴费时间": "Payment Time", "导出": "Export", "实收金额": "Actual Amount", "减免金额": "Reduction and Exemption Amount", "小计": "Subtotal", "空置房减免": "Vacant Room Reduction", "请选择支付方式": "Please select a payment method" },
"staffAppAuthManage": { "认证方式": "authentication method", "认证名称": "authentication name", "员工名称": "employee name", "操作": "operation", "认证时间": "authentication time", "认证信息": "authentication", "认证": "authentication", "认证状态": "authentication status" },
"workflowSettingManage": { "流程说明": "process description", "步": "step", "删除员工": "delete employee", "添加步骤": "add step", "流程步骤": "process Step", "说明": "Description", "第": "Section", "必填": "Required", "添加员工": "Add Employee", "流程名称": "Process Name", "选填": "optional", "删除步骤": "delete step", "返回": "return", "流程设置": "flow setting" },
"parkingSpaceQrCode": { "二维码信息": "QR code" },
"contractChangeAuditOrders": { "变更待办单": "Change Backlog", "合同状态": "Contract Status", "操作": "Action", "审批": "Approve", "结束": "end", "合同类型": "contract type", "创建时间": "creation time", "合同编号": "contract number", "查看": "view", "合同名称": "contract name" },
"myItemOutAuditOrders": { "订单号": "order number", "订单类型": "order type", "操作": "action", "审批": "approval", "结束": "end", "创建时间": "Creation Time", "查看": "View", "待办单": "To-Do List", "订单状态": "Order Status", "申请人": "Applicant", "物品发放": "item distribution" },
"listContractFee": { "应收金额": "Amount Receivable", "计费结束时间": "Billing End Time", "状态": "Status", "费用类型": "Expense Type", "本期度数": "Current Degree", "单价": "Unit Price", "取消费用": "Cancommunityation Fee", "缴费": "Payment", "说明": "Description", "固定费": "Fixed fee", "算法": "Algorithm", "费用根据实际情况而定": "Expense according to actual situation", "上期度数": "Last period degree", "费用项目": "Expense item", "费用标识": "Expense ID", "费用": "Expense", "缴费历史": "Payment History", "面积": "Area", "费用变更": "Expense Change", "建账时间": "Account creation time", "操作": "Operation", "附加费": "Additional fee", "用量": "Usage", "注意": "Note", "计费起始时间": "Billing start time" },
"menuGroupManage": { "组名称": "group name", "修改": "modification", "物流公司": "logistics company", "序列": "sequence", "操作": "action", "请输入组名称": "Please enter the group name", "组": "Group", "归属商户": "Attribution Merchant", "请选择归属商户": "Please select the Attribution Merchant", "查询条件": "query condition", "运营团队": "operation team", "删除": "delete", "查询": "query", "菜单组信息": "menu group", "代理商": "agentbusiness", "请输入": "please enter", "商家": "business", "标签": "label", "请选择标签": "please select label", "开发团队": "dev team", "物业": "property", "跑腿": "running errands", "组类型": "group type" },
"listStoreManage": { "商户信息": "Merchant", "请选择商户类型": "Please select a merchant type", "商户类型": "Merchant type", "企业法人": "Enterprise legal person", "操作": "operation", "查询条件": "query condition", "商户名称": "merchant name", "物业公司": "property company", "查询": "query", "联系电话": "Contact number", "成立日期": "Establishment date", "请输入联系电话": "Please enter the contact number", "商家": "Merchant", "请输入商户名称": "Please enter the business name", "隶属小区": "Affiliated Community", "商户地址": "Business Address" },
"newOaWorkflow": { "流程待办": "Process To Do", "流程工单": "Process Work Order" },
"payFeeAuditManage": { "缴费起始时间": "Payment Start Time", "查询条件": "Query Condition", "应付金额": "Amount Payable", "缴费审核": "Payment Review", "待审核": "Pending review", "详情": "Details", "查询": "Inquiry", "缴费结束时间": "Payment end time", "重置": "Reset", "请选择状态": "Please select a status", "个月": "Month", "费用项目": "Expense Item", "房屋": "Room", "审核通过": "Approved", "退费": "refund", "付费周期": "payment period", "请选择付费对象": "please select the payment object", "审核未通过": "review failed", "审核说明": "review Description", "缴费时间": "Payment Time", "缴费备注": "Payment Remarks", "实付金额": "Actual Payment Amount", "审核费用": "Review Fee", "请填写房屋": "please fill in the Room", "操作员工": "operator", "审核状态": "audit status", "请填写车牌号": "please fill in the license plate number" },
"printPayFee": { "房屋": "Room", "元": "Yuan", "大写人民币": "Uppercase RMB", "单号": "Order Number", "业主": "Owner", "单价": "Unit Price", "备注": "Remarks", "客户确认": "Customer Confirmation", "经办人": "Attorney", "财务收款": "Financial Collection", "编号": "Number", "收费范围": "Charge range", "缴费时间": "Payment time", "单位": "Unit", "至": "To", "部门负责人": "Department Head", "取消": "Cancel", "周期": "Cycle", "金额": "Amount", "收费项目": "Charge Item", "面积": "Area" },
"repairDispatchStep": { "上一步": "previous step", "下一步": "next step", "完成": "finished" },
"listRoomDecorationRecord": { "房屋": "Room", "操作": "Operation", "状态": "Status", "装修跟踪记录": "Renovation Track Record", "添加": "Add", "创建时间": "Creation time", "备注": "Remarks", "返回": "Return", "操作人员": "Operator", "删除": "Delete", "是否违规": "Yes Violation" },
"feeCollectionOrderManage": { "操作": "Operation", "短信微信方式": "SMS WeChat Method", "状态": "Status", "查询条件": "Inquiry Condition", "催缴方式": "Calling method", "注意": "Note", "催缴人": "Caller", "删除": "Delete", "详情": "Details", "查询": "Inquiry", "仅短信方式": "SMS Only", "欠费催缴单": "Arrears Reminder", "记录编号": "Record Number", "请选择状态": "Please Select Status", "仅微信方式": "Wechat method only", "催缴完成": "Dunning completed", "请选择催缴方式": "Please select a dunning method", "创建时间": "Creation time", "催缴中": "calling", "请输入催缴人": "please enter the caller", "待催缴": "to be called", "催缴名称": "calling name" },
"listParkingSpace": { "修改": "modify", "操作": "operation", "查询条件": "query condition", "添加": "add", "请填写车位编号": "please fill in the parking space number", "必填": "required", "删除": "delete", "出租": "rent", "停车场": "parking lot", "查询": "query", "请选择停车场": "please select a parking lot", "选择": "select", "号停车场": "parking space status", "车位状态": "parking space", "车位": "vacant", "空闲": "creation time", "创建时间": "parking space", "停车位信息": "please fill in the parking space", "请填写车位": "sale", "出售": "Parking Type", "车位类型": "Area", "面积": "" },
"merchantManage": { "操作": "operation", "查询条件": "query condition", "电话": "phone", "恢复登录": "restore login", "请输入商家编号": "please Enter business number", "名称": "name", "重置密码": "reset password", "管理员": "admin", "请输入电话": "please enter phone number", "编号": "Number", "请输入名称": "Please enter a name", "限制登录": "Restricted login", "成立日期": "Establishment date", "商家公司": "Merchant company", "创建时间": "Creation Time", "地址": "Address", "公司法人": "Company Legal Person", "地标": "Landmark" },
"feeCollectionDetailManage": { "房屋": "Room", "操作": "Operation", "短信微信方式": "SMS WeChat Mode", "状态": "Status", "查询条件": "Query Condition", "请输入房屋": "please input Room", "业主": "owner", "催缴方式": "calling method", "说明": "description", "查询": "query", "仅短信方式": "SMS Only", "时间": "Time", "仅微信方式": "WeChat Only", "催缴明细": "Call Details", "请选择催缴方式": "Please select the payment method", "请输入业主姓名": "Please enter the ownername", "费用": "Fee", "金额": "Amount" },
"repairForceFinishManage": { "请输入报修电话": "Please enter the repair number", "操作": "Operation", "状态": "Status", "查询条件": "Query condition", "联系方式": "Contact", "位置": "Location", "报修类型": "Repair Type", "说明": "Description", "工单编码": "Work Order Code", "报修人": "Repair Request", "详情": "Details", "查询": "Inquiry", "重置": "Reset", "请输入报修人": "Please enter the repairer", "请选择报修类型": "Please select the repair type", "强制回单": "Mandatory receipt", "预约时间": "Reservation time" },
"wechatMenuManage": { "一级菜单": "First Level Menu", "菜单类型": "Menu Type", "修改": "Modify", "菜单顺序": "Menu Order", "操作": "Operation", "二级菜单": "Secondary Menu", "菜单名称": "Menu Name", "值": "Value", "小程序地址": "Mini Program Address", "删除": "delete" },
"contractChangeManage": { "变更类型": "Change Type", "申请时间": "Application Time", "操作": "Operation", "状态": "Status", "流程管理中设置合同变更流程": "Set up contract change process in process management", "查询条件": "Query conditions", "合同类型": "Contract type", "甲方": "Party A", "乙方": "Party B", "注意": "Note", "请输入合同编号": "Please enter the contract number", "说明": "Description", "合同变更信息": "Contract change", "请输入合同名称": "Please Enter contract name", "查询": "query", "明细": "details", "请输入合同类型": "please enter contract type", "取消": "cancel", "变更人": "change Person", "合同编号": "Contract ID", "合同名称": "Contract Name" },
"allocationStoreRoomHistoryAuditOrders": { "调拨数量": "Allocation Quantity", "时间": "Time", "已办单": "Orders Done", "操作": "Operation", "状态": "Status", "调度编号": "scheduling number", "详情": "details", "申请人": "applicant" },
"carBlackWhiteManage": { "修改": "modify", "白名单": "whitelist", "名单": "list", "操作": "action", "开始时间": "start time", "名单类型": "List Type", "查询条件": "Query Condition", "黑名单": "Black List", "黑白名单信息": "Black and White List", "添加": "Add", "请输入名单": "Please enter the list", "删除": "Delete", "停车场": "Parking lot", "查询": "Inquiry", "请输入车牌号": "Please enter the license plate number", "车牌号": "License plate number", "请选择名单类型": "Please select a list type", "结束时间": "End time" },
"reportCustomComponentFooterManage": { "修改": "modify", "操作": "operation", "查询方式": "query method", "名称": "name", "统计": "statistics", "描述": "description", "删除": "delete" },
"propertyCompanyManage": { "添加": "Add", "查询": "Query", "修改": "Modify", "管理小区": "Community", "操作": "Operation", "请输入物业编号": "Please enter the property number", "查询条件": "Query condition", "电话": "Phone", "恢复登录": "Restore login", "名称": "Name", "温馨提示": "Warm reminder", "物业公司": "Property company", "重置密码": "reset password", "管理员": "admin", "请输入电话": "please enter phone number", "编号": "number", "删除": "delete", "登录": "login", "请输入名称": "please enter a name", "限制登录": "restricted login", "成立日期": "established date", "创建时间": "created time", "地址": "Address", "公司法人": "Company Legal Person", "地标": "Landmark" },
"allocationUserStoreRoomManage": { "转赠数量": "Transfer Quantity", "查询条件": "Query Condition", "转赠记录编号": "Transfer Record Number", "备注": "Remarks", "请输入接受人": "Please enter recipient", "请选择物品规格": "Please select item specification", "查询": "Inquiry", "大计": "General plan", "重置": "Reset", "请输入物品资源": "Please input item resource", "物品资源": "Item resource", "请输入物品名称": "Please input item name", "是否是固定物品": "Whether it is a fixed item", "物品规格": "item specification", "物品类型": "item type", "请输入接受人名称": "please enter recipient name", "转赠总数量": "total amount to be donated", "转赠对象": "transfer object", "转赠人": "transfer person", "转赠记录信息": "transfer record", "物品名称": "item name", "导出": "export", "请选择二级分类": "Please select a secondary category", "请选择物品类型": "Please select an item type", "创建时间": "Created Time", "小计": "Subtotal", "原有库存": "Original Inventory" },
"resourceStoreTypeManage": { "修改": "modify", "操作": "operation", "查询条件": "query condition", "物品类型": "item type", "添加": "add", "物品类型名称": "Item type name", "二级分类": "Secondary category", "请输入类型名称": "Please enter the type name", "删除": "Delete", "查询": "query", "重置": "reset", "物品类型信息": "item type info", "物品描述": "item description", "创建时间": "creation time", "请输入物品": "Please enter item" },
"myAuditOrders": { "订单号": "order number", "订单类型": "order type", "操作": "action", "审批": "approval", "结束": "end", "采购入库": "Purchase Inventory", "创建时间": "Creation Time", "查看": "View", "待办单": "To-Do List", "订单状态": "Order Status", "申请人": "applicant" },
"auditOpenShop": { "开店审核": "Open Shop Audit", "操作": "Operation", "商家名称": "Business Name", "状态": "Status", "商家地址": "Business Address", "联系电话": "Contact Phone", "查看": "View", "审核": "Review", "店铺类型": "Store Type", "店铺": "Store", "店铺名称": "shop name" },
"privilege": { "权限组": "privilege group", "修改": "modify", "操作": "action", "编码": "encoding", "添加": "add", "名称": "name", "创建时间": "created", "删除": "deleted" },
"monthAttendanceManage": { "迟到": "late", "旷工": "absenteeism", "请输入班组名称": "please enter the team name", "查询条件": "query condition", "请输入部门名称": "Please enter the department name", "请选择打卡时间": "Please select the punch time", "免考勤": "Exempt attendance", "查询": "Query", "员工名称": "Employee name", "重置": "Reset", "正常考勤": "Normal Attendance", "月考勤": "Monthly Attendance", "早退": "Leave Early", "部门名称": "Department Name" },
"login": { "请输入用户名": "Please enter your username", "请输入密码": "Please enter your password" },
"myItemOutAuditHistoryOrders": { "订单号": "Order No.", "订单类型": "Order Type", "操作": "Operation", "领用已办单": "Pick-up Order", "创建时间": "Creation Time", "查看": "View", "订单状态": "Order Status", "申请人": "Applicant" },
"resourceSupplierManage": { "供应商名称": "Supplier Name", "修改": "Modify", "请输入供应商编号": "Please enter the supplier ID", "操作": "Operation", "开户行": "Account Bank", "请输入供应商名称": "Please enter the name of the supplier", "查询条件": "Inquiry condition", "开户行账号": "Account bank account number", "供应商信息": "Supplier", "备注": "Remarks", "供应商联系方式": "Supplier Contact", "联系人姓名": "Contact Name", "删除": "Delete", "供应商地址": "Supplier Address", "查询": "Inquiry", "添加供应商": "Add Supplier", "重置": "Reset", "供应商编号": "Supplier number", "请输入供联系方式": "Please enter the contact" },
"RoomkeepingSjServManage": { "回访方式": "Revisit method", "所有上架": "All listings", "查询条件": "Query condition", "默认费用": "Default fee", "都不回访": "No return visit", "服务编号": "Service Tag", "详情": "Details", "删除": "Delete", "查询": "Inquiry", "指派": "Assignment", "销量": "Sales", "请选择上架日期": "Please select the release date", "请输入服务名称": "Please enter the service name", "已评价不回访": "Evaluated and not returned", "派单方式": "Dispatch Method", "操作": "Operation", "上架服务": "Release Service", "请选择服务类型": "Please Select Service Type", "轮训": "Rotation Training", "服务名称": "Service Name", "服务描述": "Service Description", "排序": "Sort", "都回访": "All Return Visits", "服务类型": "Service Type", "上架状态": "Listing status", "抢单": "Purchase order" },
"inspectionItemTitleManage": { "请输入问题名称": "Please enter the question name", "修改": "Modify", "操作": "Operation", "多选": "Multiple choice", "题目": "Title", "查询条件": "query condition", "顺序": "order", "题目类型": "question type", "删除": "delete", "查询": "query", "巡检项": "inspection item", "创建时间": "creation time", "简答题": "short answer", "请输入题目": "please enter a question", "单选": "single choice", "请选择题目类型": "Please select a question type" },
"contractTypeManage": { "修改": "modify", "操作": "operation", "查询条件": "query condition", "合同类型": "contract type", "请输入类型名称": "please Enter type name", "描述": "description", "删除": "delete", "查询": "query", "请输入类型编码": "please enter type code", "不审核": "no Review", "是否审核": "Whether to review", "创建时间": "Creation time", "合同模板": "Contract template", "请选择审核": "Please select review", "物业审核": "Property Review", "类型名称": "Type Name", "扩展信息": "Extended" },
"myResourceStoreManage": { "用户": "User", "收费标准": "Charge Standard", "请选择物品是否固定": "Please select whether the item is fixed", "查询条件": "Query condition", "退还": "Return", "请选择物品规格": "Please select item specification", "查询": "Inquiry", "物品库存": "Item Inventory", "重置": "Reset", "我的物品": "my item", "损耗": "loss", "请输入物品名称": "please enter item name", "用户名": "user name", "请输入用户名称": "Please enter user name", "是否是固定物品": "Whether it is a fixed item", "最小计量": "Minimum measurement", "物品规格": "Item specification", "转赠": "Transfer", "请输入用户": "Please enter a user", "物品类型": "Item Type", "最小计量总数": "Minimum Metering Total", "物品名称": "Item Name", "物品编码": "Item Code", "请选择二级分类": "Please select the secondary category", "物品": "Item", "请选择物品类型": "Please select the item type", "请输入物品编码": "Please Enter item code", "请输入物品": "Please enter item" },
"addOwnerRoomBinding": { "上一步": "Previous", "下一步": "Next", "完成": "Done", "选择楼栋": "Choose a building", "选择房屋": "Choose a house", "业主信息": "Owner Information" },
"storeOrderCartReturnManage": { "商品规格": "Item Specification", "已退款": "Refunded", "退货订单": "Return Order", "申请时间": "Application Time", "操作": "operation", "退货成功": "return success", "查询条件": "query condition", "申请退款": "refund application", "退款原因": "refund reason", "用户名称": "Username", "详情": "Details", "查询": "Inquiry", "退款金额": "Refund Amount", "订单号": "Order Number", "商品名称": "product name", "请选择状态": "please select the state", "请输入商品名称": "please enter the product name", "订单编号": "order number", "审核": "review", "订单状态": "Order Status" },
"auditEnterCommunityManage": { "小区": "community", "撤回审核": "withdrawal of audit", "请选择商户类型": "please select a merchant type", "商户类型": "merchant type", "操作": "Operation", "审核通过": "Approved", "状态": "Status", "查询条件": "Query Condition", "请选择审核状态": "Please select the audit status", "商户名称": "business name", "审核未通过": "review failed", "物业公司": "property company", "未审核": "unreviewed", "查询": "query", "小区名称": "community name", "请输入小区名称": "please enter the community name", "代理商": "agent", "联系电话": "contact number", "商户审核": "merchant review", "请输入联系电话": "Please enter the contact number", "请输入商户名称": "Please enter the business name", "审核": "Review", "商户地址": "Business address" },
"propertyCommunity": { "小区": "community", "修改": "modification", "小区信息": "community", "操作": "operation", "城市编码": "city code", "状态": "status", "查询条件": "query condition", "查询": "query", "附近地标": "nearby landmark", "退出小区": "exit community", "小区名称": "Community Name", "请输入小区名称": "Please enter the community name", "加入小区": "Join the community", "请输入小区编号": "Please enter the community number" },
"initializeCommunityManage": { "查询": "query", "小区": "community", "格式化": "format", "附近地标": "nearby landmarks", "小区名称": "community name", "操作": "operation", "请输入小区名称": "please enter the community name", "城市编码": "city code", "状态": "status", "查询条件": "query condition", "请输入小区": "Please enter the community", "初始化小区数据": "Initialize the community data" },
"storeRoomManage": { "请选择是否对外开放": "Please select whether to open to the public", "仓库名称": "WareRoom Name", "修改": "Modify", "操作": "Operation", "请输入仓库编号": "Please enter the wareRoom ID", "查询条件": "Query condition", "请输入仓库名称": "Please enter the wareRoom name", "否": "No", "仓库编号": "WareRoom id", "添加": "add", "是否对外开放": "open to the public", "描述": "description", "删除": "delete", "详情": "details", "是": "Yes", "仓库信息": "WareRoom", "查询": "Query", "重置": "Reset", "仓库类型": "WareRoom Type", "请选择仓库类型": "Please select a wareRoom type", "创建时间": "Creation time" },
"carCreateFee": { "自定义模板": "custom template", "自定义创建": "custom creation", "请填写业主名称": "Please fill in the ownername", "请填写停车场": "Please fill in the parking lot", "操作": "Operation", "批量创建": "Batch Create", "查询条件": "query condition", "创建收费": "create charge", "联系方式": "contact", "停车场(单位:号)": "parking lot", "查看收费": "check charge", "查询": "query", "重置": "reset", "车辆收费": "car charge", "业主名称": "owner name", "车位状态": "parking space status", "车位(单位:号)": "parking space", "请选择车位状态": "please select the parking space status", "车牌号": "license plate number", "请填写车牌号": "please fill in the license plate number" },
"listApplyRoomDiscountRecord": { "房屋": "Room", "验房跟踪记录": "Room Inspection Track Record", "操作": "Operation", "状态": "Status", "装修跟踪记录": "Renovation Track record", "添加": "add", "创建时间": "created", "备注": "remark", "返回": "return", "操作人员": "operator", "删除": "Delete", "是否违规": "Whether it violates" },
"reportProficient": { "请选择缴费开始时间": "Please select the payment start time", "应收总额": "Total Receivables", "分项费用占比": "Item Item Expense Proportion", "查询条件": "Query Condition", "费用提醒": "Expense Reminder", "请选择收费项": "Please select the charge item", "请选择缴费结束时间": "Please select the payment end time", "房屋费台账": "Housing Expenses Ledger", "请选择收费类型": "Please Select a Charge Type", "查询": "Query", "重置": "Reset", "导出": "Export", "车辆费台账": "Vehicle Fee Ledger", "楼栋费用占比": "Building Cost Proportion" },
"couponDetailManage": { "修改": "Modify", "购买数量": "Purchase Quantity", "操作": "Operation", "查询条件": "Query Condition", "优惠券名称": "Coupon name", "面值": "face value", "付款金额": "payment amount", "删除": "delete", "请输入优惠券": "please enter a coupon", "商家购买记录表": "Merchant Purchase Record Form", "店铺": "Store", "有效期": "Validity Period", "查询": "Inquiry", "请输入店铺": "Please enter the store", "购买价格": "Purchase Price", "商家购买记录表信息": "Merchant Purchase Record" },
"printPurchaseApply": { "申请数量": "Request Quantity", "采购数量": "Purchase Quantity", "使用人": "User", "名称": "Name", "备注": "Remarks", "编号": "Number", "厂家签字": "ManufacturerSignature", "时间": "Time", "采购人员签字": "Purchaser Signature", "联系电话": "Contact Phone", "申请单号": "Application number", "取消": "Cancel", "编码规格": "Code specification" },
"contractPartyaManage": { "甲方联系人": "Party AContact", "修改": "Modify", "操作": "Operation", "查询条件": "Query Condition", "甲方": "Party A", "删除": "Delete", "请输入甲方": "Please enter Party A", "查询": "Inquiry", "合同甲方信息": "Contract Party A", "联系电话": "Contact number", "请输入联系电话": "Please enter the contact number", "甲方编号": "Party A number", "请输入甲方联系人": "Please enter the contact number of Party A people" },
"shopAuditManage": { "操作": "Operation", "审核通过": "Approval", "查询条件": "Query Condition", "请输入退货联系人": "Please enter the return contact", "请选择审核状态": "Please select the review status", "查看": "View", "审核不通过": "Approval failed", "请输入店铺名称": "Please enter the store name", "待审核": "To be reviewed", "店铺审核信息": "Store review", "查询": "Inquiry", "发货地址": "Shipping address", "请输入退货联系电话": "Please enter Return phone number", "请输入审核": "Please input review", "审核": "Review", "退货联系电话": "Return phone number", "审核状态": "Review status", "店铺名称": "Store Name", "退货联系人": "Return Contact" },
"contractApplyAuditHistoryOrders": { "起草已办单": "Drafted Order", "合同状态": "Contract Status", "操作": "Operation", "合同类型": "Contract Type", "创建时间": "creation time", "合同编号": "contract number", "查看": "view", "合同名称": "contract name" },
"listOwnerCar": { "修改": "modify", "颜色": "color", "状态": "status", "车场": "car park", "查询条件": "query condition", "添加": "Add", "释放车位": "Release Parking Space", "车辆类型": "Vehicle Type", "截止时间": "Deadline", "必填": "Required", "删除": "delete", "查询": "query", "无车位": "no parking space", "车辆信息": "car", "费用": "fee", "车辆品牌": "car brand", "起租时间": "lease start time", "操作": "operation", "到期": "expiration", "业主": "owner", "请填写车位编号": "please fill in the parking space number", "请输入车牌号": "Please enter the license plate number", "续租车位": "Renewal space", "子母车辆": "Parking car", "车位": "Parking space", "房屋号": "Room Number", "正常": "Normal", "车牌号": "License Number" },
"inspectionTask": { "开始": "start", "请输入巡检计划名称": "please enter the inspection plan name", "查询条件": "query condition", "流转": "flow", "巡检状态": "Inspection Status", "详情": "Details", "删除": "Delete", "查询": "Inquiry", "重置": "Reset", "请输入巡检计划": "Please enter the inspection plan", "巡检计划": "Inspection plan", "实际巡检时间": "Actual inspection time", "转移描述": "Transfer description", "请输入执行人": "Please enter the executor", "请选择巡检状态": "Please select the inspection status", "巡检任务是根据巡检计划": "The inspection task is based on the inspection plan", "任务编码": "Task Code", "当前巡检人": "Current Inspector", "操作": "Operation", "请输入实际巡检结束时间": "Please enter the actual inspection end time", "请输入实际巡检开始时间": "please enter the actual inspection start time", "计划巡检人": "planned inspection person", "巡检人": "inspection person", "巡检方式": "inspection mode", "巡检任务": "inspection task" },
"contractChangeAuditHistoryOrders": { "合同状态": "Contract Status", "操作": "Operation", "变更已办单": "Changed Order", "合同类型": "Contract Type", "创建时间": "creation time", "合同编号": "contract number", "查看": "view", "合同名称": "contract name" },
"accountWithdrawalApplyListManage": { "查询": "query", "状态": "status", "查询条件": "query condition", "请输入申请人电话": "please input applicant phone number", "账户提现记录": "Account Withdrawal Record", "申请人名称": "Applicant Name", "申请说明": "Application Instructions", "申请人电话": "Applicant Phone", "删除": "Delete", "请输入申请人名称": "please enter the applicantname", "提现金额": "withdrawal amount" },
"contractChangeDetail": { "甲方联系人": "Party AContact", "乙方联系电话": "Party B Contact Number", "开始时间": "Start Time", "变更说明": "Change Description", "合同类型": "Contract Type", "甲方": "Party A", "乙方": "Party B", "合同信息": "Contract", "乙方联系人": "Party B Contact", "经办人": "manager", "必填": "required", "合同金额": "contract amount", "选择合同": "select contract", "联系电话": "contact Phone", "甲方联系电话": "Party Aphone number", "提交": "Submit", "合同编号": "Contract number", "结束时间": "End time", "签订时间": "Signing time", "合同名称": "Contract name" },
"printSmallPayFee": { "单号": "single number", "业主": "owner", "单价": "unit price", "备注": "remarks", "总计": "total", "收费范围": "Charge Range", "时间": "Time", "至": "To", "房号": "Room Number", "缴费收据单": "Payment Receipt", "取消": "Cancel", "金额": "Amount", "收费项目": "Charge Item", "面积": "Area" },
"resourceStoreUseRecordManage": { "物品使用数量": "Item usage quantity", "查询条件": "Query condition", "备注": "Remark", "请选择物品规格": "Please select item specification", "请输入物品资源编号": "Please enter the item resource number", "查询": "Inquiry", "物品使用类型": "Item usage type", "请输入维修工单编码": "Please enter the maintenance work order code", "重置": "reset", "请输入物品使用人用户名": "please enter the user name of the item user", "物品使用记录编号": "item usage record number", "请输入物品名称": "Please enter the item name", "物品价格": "Item price", "物品使用记录信息": "Item usage record", "请输入物品使用人": "Please enter the item user", "是否是固定物品": "is it a fixed item", "物品规格": "item specification", "请选择开始时间": "please select a start time", "维修工单编号": "repair work order Number", "物品类型": "Item Type", "使用人": "User", "请选择结束时间": "Please select the end time", "物品名称": "Item name", "请输入物品使用记录编号": "Please enter the item usage record number", "导出": "Export", "请选择二级分类": "Please select a secondary category", "请选择物品类型": "Please select an item type", "创建时间": "creation time", "物品资源编号": "item resource number" },
"feePrintSpecManage": { "打印配置信息": "Print Configuration Info", "修改": "Modify", "图片": "Picture", "操作": "Operation", "编码": "Encoding", "添加": "add", "名称": "name", "规格": "spec", "删除": "delete" },
"deleteOwnerRoom": {},
"userLogin": { "查询": "query", "登录日志": "login log", "部门": "department", "请输入员工名称": "please enter employee name", "登录": "login", "查询条件": "query condition", "公司": "company", "登录时间": "login time", "员工": "employee", "名称": "name", "请输入员工": "Please enter the employee", "请输入手机号": "Please enter the mobile phone number" },
"expirationContractManage": { "操作": "operation", "开始时间": "start time", "状态": "status", "查询条件": "query condition", "合同类型": "contract type", "甲方": "Party A", "乙方": "Party B", "请输入合同编号": "Please enter the contract number", "经办人": "Attorney", "请输入合同名称": "Please enter the contract name", "查询": "Inquiry", "合同金额": "Contract amount", "终止": "Termination", "请输入合同类型": "Please enter the contract type", "到期合同": "Expiring Contract", "合同编号": "Contract ID", "结束时间": "End Time", "续签": "Renewal", "合同名称": "Contract Name" },
"billManage": { "请输入账单编号": "Please enter the bill ID", "账单编号": "Bill ID", "操作": "Operation", "元": "Yuan", "信息": "Information", "查询条件": "Query Condition", "账单日期": "Bill Date", "累计应收": "Accumulated A/R", "请输入信息": "Please enter", "当期应收": "Current receivable", "账单类型": "Bill type", "请输入账单名称": "Please enter bill name", "查询": "Inquiry", "账单信息": "Bill", "重置": "Reset", "实收金额": "Actual Amount", "欠费清单": "Arrears List", "请选择账单类型": "Please select a bill type", "收费项目": "Charge Item", "账单名称": "Bill Name" },
"machineTypeManage": { "修改": "Modify", "设备大类": "Equipment Category", "设备名称": "Equipment Name", "操作": "Operation", "查询条件": "Query condition", "请输入设备类型名称": "please enter the device type name", "设备类型": "device type", "必填": "required", "删除": "delete", "类型编号": "Type number" },
"assetImportLog": { "操作": "operation", "导入类型": "import type", "成功数量": "success count", "导入时间": "import time", "失败数量": "failure Quantity", "备注": "Remarks", "批量导入日志": "Bulk Import Log", "导入编号": "Import Number", "详情": "Details" },
"carInoutManage": { "离场状态": "Exit Status", "请输入进场开始时间": "Please enter the entry start time", "进场时间": "Entry time", "查询条件": "query condition", "出场时间": "exit time", "请输入进出场": "please enter entry and exit", "请输入进场结束时间": "please enter entry end time", "请选择车辆状态": "Please select car status", "进场状态": "Approach status", "查询": "Inquiry", "车辆状态": "Vehicle status", "请输入车牌号": "Please enter the license plate number", "超时重新支付": "Overtime repayment", "进场记录": "Entry record", "车牌号": "License plate number", "进出场": "In and out", "支付完成": "Payment Complete" },
"reportFeeDetail": { "请选择缴费开始时间": "Please select the payment start time", "元": "yuan", "单元": "unit", "费用结束时间": "fee end time", "历史欠费": "historical arrears", "查询条件": "query condition", "请选择缴费结束时间": "please select the payment end time", "费用编号": "fee number", "费用开始时间": "Expense start time", "欠费追回": "Arrears recovery", "当月实收": "Actual collection of the current month", "查询": "Inquiry", "选择": "Select", "大计": "big plan", "请选择楼栋": "please select a building", "重置": "reset", "欠费金额": "amount in arrears", "实收": "Actual receipt", "房号": "Room number", "当月应收": "Receivable in the current month", "欠费": "Arrears", "请选择单元": "Please select a unit", "请填写房屋编号": "Please fill in the Room number", "实收合计": "Actual total receipt", "面积": "Area", "预交费用": "Prepaid fee", "费用明细表": "Expense Schedule", "业主": "Owner", "请选择收费项": "Please select a charge item", "应收": "Receivable", "费用项": "Expense item", "更新时间": "Update Time", "导出": "Export", "小计": "Subtotal", "应收合计": "Total Receivable" },
"mappingManage": { "请输入键": "Please enter the key", "查询": "query", "请输入域": "please enter the field", "操作": "operation", "编码": "code", "查询条件": "query condition", "请输入名称": "please input name", "名称": "name", "值": "value", "映射信息": "mapping", "键": "key", "域": "domain" },
"productSjManage": { "所有上架": "All listings", "操作": "Operation", "状态": "Status", "查询条件": "Query condition", "商品图片": "Product picture", "价格": "price", "上架商品": "listed item", "库存": "stock", "详情": "details", "删除": "delete", "查询": "query", "商品": "product", "排序": "sort", "商品分组": "product group", "商品名称": "product name", "请输入商品名称": "please enter product name", "销量": "Sales", "请选择上架日期": "Please select a release date" },
"ownerExitRoom": { "房屋": "Room", "平方米": "square meter", "费用状态": "fee status", "手机": "mobile phone", "开始时间": "start time", "业主": "Owner", "建筑面积": "Building Area", "身份证": "ID Card", "姓名": "Name", "欠费": "Arrears", "费用项目": "Expense Item", "结束时间": "End Time", "费用": "Expense", "业主房屋": "Owner Room" },
"rentingDetail": { "序号": "serial number", "处理人": "handler", "状态": "status", "电话": "telephone", "费用名称": "fee name", "租房流转": "Rent transfer", "收款对象": "Receipt object", "角色": "Role", "支付时间": "Payment time", "处理时间": "Processing time", "服务费分成": "Service Fee Share", "分成金额": "Share Amount", "意见": "Opinion" },
"jobManage": { "操作": "Operation", "查询条件": "Query Condition", "模板名称": "Template Name", "停止": "Stop", "定时任务": "Scheduled Task", "任务名称": "task name", "任务": "task", "查询": "query", "请选择定时器类型": "please select a timer type", "请输入任务": "Please enter the task", "运行时间": "running time", "启停状态": "start-stop status", "创建时间": "creation time", "请输入任务名称": "please enter the task name", "运行中": "running" },
"serviceProvideManage": { "请输入服务名称": "Please enter the service name", "服务编码": "Service Code", "修改": "Modify", "服务提供信息": "Service Provide", "操作": "Operation", "请选择实现方式": "Please select the implementation method", "参数": "Parameter", "查询条件": "Query condition", "提供": "Provide", "请输入提供": "Please enter the offer", "实现方式": "implementation method", "请输入服务编码": "please enter the service code", "删除": "delete", "服务名称": "service name", "查询": "query", "存储过程方式": "stored procedure method" },
"listDemo": { "修改": "modify", "操作": "action", "用例值": "usecase value", "名称": "name", "备注": "remarks", "用例": "use case", "删除": "delete" },
"inspectionTaskDetails": { "开始": "start", "查询条件": "query condition", "请选择签到状态": "please select the check-in status", "请选择任务状态": "please select the task status", "任务详情": "Task Details", "查看": "View", "巡检情况": "Inspection Status", "查询": "Inquiry", "请输入巡检人": "Please enter Inspector", "重置": "Reset", "实际巡检时间": "Actual inspection time", "请输入任务详情": "Please enter task details", "请选择巡检计划": "Please select an inspection plan", "巡检点状态": "Inspection point status", "位置信息": "Location", "实际巡检人": "Actual inspection person", "请选择巡检点状态": "Please select the inspection point status", "请选择巡检情况": "Please select the inspection situation", "巡检路线名称": "The inspection route name", "巡检点名称": "Inspection point name", "请输入实际巡检结束时间": "Please enter the actual inspection end time", "巡检明细信息": "Inspection details", "巡检计划名称": "Inspection plan name", "请输入实际巡检开始时间": "Please enter the actual inspection start time", "实际签到状态": "Actual check-in status", "计划巡检人": "Planned inspection Person", "请选择巡检点": "Please select the inspection point", "巡检人": "Inspection person", "巡检点": "Inspection point", "巡检方式": "Inspection method", "请选择巡检路线": "Please select an inspection route", "任务状态": "Task status", "巡检照片": "Inspection photo" },
"returnPayFeeManage": { "申请时间": "application time", "操作": "operation", "查询条件": "query condition", "选择审核状态": "select review status", "费用类型": "Fee Type", "缴费单号": "Payment Note No.", "应付金额": "Amount Payable", "退费原因": "Refund Reason", "付费周期": "Payment Period", "退费申请单": "Refund Application Form", "详情": "Details", "查询": "Inquiry", "退款单号": "Refund Form No.", "请填写房屋编号": "Please fill in the Room number", "实付金额": "Actual payment amount", "审核": "Review", "付费对象": "Payment object", "选择费用类型": "Select fee type", "审核状态": "Review Status" },
"clueManage": { "项目名称": "Project name", "请输入项目名称": "Please enter the project name", "项目位置": "Project location", "修改": "Modify", "投资方简介": "Investor Profile", "线索管理信息": "Lead Management", "目前进展情况": "Current Progress", "操作": "Operation", "查询条件": "Inquiry Condition", "电话": "Phone", "请输入投资方名称": "Please enter the name of the investor", "投资额": "Investment amount", "跟进": "Follow up", "删除": "Delete", "查询": "Query", "详细": "Details", "项目概述": "Project Overview", "下一步推进计划": "Next Promotion Plan", "投资方名称": "Investor name" },
"reportInfoSettingManage": { "项目名称": "Project Name", "请输入项目名称": "Please Enter Project Name", "修改": "Modify", "操作": "Operation", "开始时间": "Start Time", "题目": "Title", "出入登记": "Entry and Exit Registration", "查询条件": "Query Condition", "项目": "Item", "删除": "Delete", "二维码": "QR code", "此功能需部署公众号且编码映射中键": "This function requires the deployment of a public account and the middle key in the encoding map", "查询": "Query", "关闭": "close", "项目信息": "project", "项目类型": "project type", "请输入项目": "please enter project", "结束时间": "end time" },
"reportOweFeeDetail": { "元": "yuan", "单元": "unit", "查询条件": "query condition", "费用编号": "expense number", "费用开始时间": "expense start time", "查询": "query", "选择": "select", "大计": "big plan", "请选择楼栋": "please select a building", "重置": "reset", "欠费金额": "Amount in arrears", "房号": "Room number", "欠费": "Arrears", "请选择单元": "Please select a unit", "请填写房屋编号": "Please fill in the Room number", "面积": "Area", "欠费明细表": "Arrears Details", "请选择创建结束时间": "Please select the creation end time", "业主": "Owner", "请选择创建开始时间": "Please select the creation start time", "费用项": "Expense item", "更新时间": "Update time", "欠费时长": "Arrears duration", "导出": "export", "小计": "subtotal" },
"machineAuthManage": { "最美员工": "the most beautiful employee", "修改": "modification", "操作": "operation", "开始时间": "start time", "授权信息": "authorization", "查询条件": "query condition", "员工": "employee", "请输入员工编码": "please input employee code", "删除": "delete", "查询": "query", "请输入员工名称": "Please enter the employee name", "设备": "equipment", "请选择设备": "please select the equipment", "结束时间": "end time" },
"addAuditUserStep": { "上一步": "Previous", "下一步": "Next", "完成": "Done" },
"videoControl": {},
"finishRepair": { "使用商品": "Used product", "处理意见": "Processing opinion", "操作": "Operation", "商品总金额": "Total amount of product", "维修后图片": "Picture after repair", "请选择维修类型": "Please select the repair type", "规格": "Specification", "维修前图片": "Picture before repair", "价格范围": "Price range", "请选择是否用料": "please choose whether to use material", "支付方式": "payment method", "必填": "required", "商品": "commodity", "单位": "Unit", "数量": "Quantity", "是否用料": "Material Use", "报修结单": "Repair Statement", "维修类型": "Maintenance Type", "分类": "Category" },
"RoomkeepingTypeManage": { "请输入类别名称": "Please enter the category name", "请选择是否展示": "Please choose whether to display", "修改": "Modify", "商城": "Mall", "操作": "operation", "查询条件": "query condition", "否": "no", "菜单名称": "menu name", "是否显示": "whether to display", "菜单": "menu", "菜单描述": "menu description", "删除": "delete", "是": "yes", "请选择类型": "please select a type", "查询": "query", "菜单类别": "Menu Category", "排序": "Sort", "服务": "Service", "标签": "Label", "商城菜单": "Mall Menu", "小图标": "Small icon" },
"addVisitSpace": { "上一步": "previous", "登记": "enrollment", "下一步": "next" },
"returnStoreRoomApplyManage": { "物品规格": "ItemSpecs", "选择物品": "Select Item", "操作": "Operation", "取消退还": "Cancel Return", "物品类型": "Item Type", "最小计量总数": "Minimum Metered Total", "退还数量": "Refunded Quantity", "必填": "Required", "库存": "Inventory", "退还物品": "Returned item", "退还说明": "return instructions", "物品名称": "item name", "物品": "item", "源仓库": "source wareRoom", "提交": "submit", "目标仓库": "target repository", "返回": "return" },
"activitiesRuleManage": { "最美员工": "The most beautiful employee", "修改": "Modify", "操作": "Operation", "规则": "Rule", "开始时间": "Start Time", "查询条件": "query condition", "规则名称": "rule name", "请输入规则名称": "please enter the rule name", "员工": "employee", "业主": "owner", "添加": "add", "规则说明": "rule description", "请选择活动对象": "please select the activity object", "删除": "delete", "请选择活动类型": "please select the activity type", "查询": "query", "活动类型": "event type", "重置": "reset", "大众": "popular", "活动信息": "event info", "活动对象": "active object", "结束时间": "end time" },
"auditParkingSpaceApply": { "汽车品牌": "Car Brand", "请选择审核结果": "Please select the audit result", "颜色": "Color", "请选择车位": "Please select the parking space", "选择费用项": "Select Fee Item", "车辆类型": "Vehicle Type", "备注": "Remarks", "申请信息": "Application", "必填": "Required", "不通过": "Fail", "选择": "Select", "选择车库": "Select Garage", "选填": "Optional", "结租时间": "Rental Closing Time", "选择车位": "Select Parking Space", "请选择费用项": "Please Select Fee Item", "返回": "Return", "审核信息": "Review", "审核结果": "Review Result", "申请人": "Applicant", "起租时间": "Lease start time", "审核意见": "Review opinion", "车牌号": "License plate number", "申请人电话": "Applicant Phone", "请选择车库": "Please select Garage", "通过": "Pass" },
"printPayFeeXiangyun": { "房屋": "Room", "元": "Yuan", "大写人民币": "Uppercase RMB", "单号": "Single Number", "业主": "Owner", "单价": "Unit Price", "备注": "Remarks", "客户确认": "Customer Confirmation", "经办人": "Attorney", "财务收款": "Financial Collection", "编号": "Number", "收费范围": "Charge range", "缴费时间": "Payment time", "单位": "Unit", "至": "To", "部门负责人": "Department Head", "取消": "Cancel", "周期": "Cycle", "金额": "Amount", "收费项目": "Charge Item", "面积": "Area" },
"propertyFee": { "应收金额": "Amount Receivable", "缴费起始时间": "Payment Start Time", "操作": "Operation", "请选择开始时间": "Please select the start time time", "状态": "status", "折扣": "discount", "缴费": "payment", "备注": "remarks", "请选择结束时间": "please select an end time", "缴费结束时间": "Payment End Time", "缴费时间": "Payment Time", "重置": "Reset", "实收金额": "Actual Amount", "申请退费": "Application Refund", "周期": "Cycle", "缴费历史": "Payment History", "物业费": "Property Fee", "马上查询": "Inquire Now" },
"sellParkingSpace": { "上一步": "previous", "下一步": "next", "出售": "sell" },
"attrSpecManage": { "修改": "Modify", "请输入规格": "Please enter the specification", "请选择表名": "Please select the table name", "查询条件": "Query condition", "小区属性": "Community Properties", "添加": "Add", "规格名称": "Specification Name", "设备属性": "Device Properties", "必填": "Required", "查询显示": "query display", "展示": "display", "删除": "delete", "查询": "query", "值类型": "value type", "停车场属性": "parking lot property", "重置": "reset", "属性表": "property table", "业主属性": "owner property", "规格类型": "spec type", "离散值": "discrete value", "操作": "action", "规格": "spec", "房屋属性": "Room property", "车辆属性": "car property", "请输入规格名称": "please enter specification name", "属性配置": "property configuration" },
"orgCommunityManage": { "组织名称": "organization name", "小区": "community", "小区名称": "community name", "操作": "operation", "隶属小区": "affiliated community", "组织": "organization" },
"accountBondObjDetailManage": { "应收金额": "Amount Receivable", "开始时间": "Start Time", "状态": "Status", "查询条件": "Query Condition", "保证金明细": "Margin Details", "查询": "Inquiry", "保证金": "Margin", "请选择状态": "Please select a state", "保证金对象": "Margin object", "交保证金": "Deposit Margin", "实收金额": "Actual amount received", "请选择商铺": "Please select a shop", "结束时间": "End time", "退保证金": "Refund" },
"roomCreateFee": { "房屋ID": "Room ID", "自定义模板": "custom template", "自定义创建": "custom creation", "请填写业主名称": "Please fill in the ownername", "单元": "unit", "批量创建": "batch creation", "查询条件": "query condition", "楼层(单位:层)": "floor", "房屋类型": "Room type", "查询": "query", "选择": "select", "重置": "reset", "请选择楼栋": "please Select Building", "欠费": "Arrears", "业主名称": "Owner Name", "联系电话": "Contact Number", "请选择单元": "Please select a unit", "房屋信息": "Room", "费用": "fee", "房屋(栋/单元/室)": "Room", "普通房屋": "ordinary Room", "操作": "operation", "请填写业主身份证号": "Please fill in the ownerID number", "房屋状态": "Room status", "业主身份证号": "The ownerID number", "催缴单": "Reminder note", "批量催缴单": "Batch reminder", "商铺": "Shop", "人工托收": "Manual collection" },
"menuUserManage": { "查询": "query", "请输入菜单": "please input menu", "图标": "icon", "操作": "action", "常用菜单": "common menu", "查询条件": "query condition", "顺序": "order", "请输入列顺序": "please enter the column order", "菜单": "menu", "请输入编号": "please enter number", "编号": "number", "删除": "delete" },
"parkingAreaControl": { "出入场明细": "Entry and exit details", "白名单": "Whitelist", "在场车辆": "Vehicles present", "临时车": "Temporary cars", "剩余车位": "Remaining Parking Spaces", "黑名单": "Blacklist", "出入场信息": "Entry and Exit", "收费明细": "Charging Details", "月租车": "Monthly Car Rental rent a car" },
"listFloor": { "修改": "modify", "楼栋": "building", "操作": "operation", "查询条件": "query condition", "请输入楼栋": "please enter building", "请输入楼栋编号": "please enter building number", "名称": "name", "更多": "more", "建筑面积": "building area", "添加单元": "Add Unit", "创建员工": "Create Employee", "编号": "Number", "删除": "Delete", "查询": "Query", "请输入楼栋名称": "Please enter the building name", "楼栋信息": "Building" },
"payFeeManage": { "请选择缴费开始时间": "Please select the payment start time", "付费方": "Payer", "元": "yuan", "查询条件": "query condition", "费用类型": "Fee Type", "缴费清单": "Payment List", "应付金额": "Payable Amount", "请选择缴费结束时间": "Please select the payment end time", "缴费": "Payment", "支付方式": "Payment Method", "详情": "Details", "查询": "Inquiry", "重置": "Reset", "费用项目": "Expense Items", "大计应收": "Large Total Receivable", "小计应收": "Subtotal Receivable", "付费周期": "Payment Period", "大计实收": "Large Total Receivable", "缴费时间": "Payment time", "请选择收费对象": "Please select the charging object", "导出": "Export", "实付金额": "Actual payment amount", "操作员工": "Operating employee", "小计实收": "Subtotal actual receipt", "请选择支付方式": "Please select the payment method", "请填写员工编码": "Please fill in the employee code" },
"systemGoldSettingManage": { "设置": "settings", "修改": "modification", "操作": "action", "购买价格": "purchase price", "状态": "state", "名称": "name", "使用价格": "use price", "金币信息": "gold info", "类型": "type", "有效期": "validity" },
"staffPrivilege": { "权限": "Privilege", "隶属权限组": "Member Privilege Group", "操作": "Operation", "隶属权限组名称": "Member Privilege Group Name", "状态": "status", "在用": "in use", "删除": "delete", "权限名称": "authority name" },
"itemInManage": { "修改": "modify", "操作": "operation", "查询条件": "query condition", "物品信息": "item", "删除": "delete", "查询": "query", "物品名称": "item name", "物品库存": "item inventory", "物品编码": "item code", "请输入物品名称": "please enter item name", "物品": "item", "物品价格": "item price", "请输入物品编码": "please input item code", "请输入物品": "please input item" },
"reportQuestionAnswerDetail": { "员工自评": "Employee Self-Assessment", "问卷明细表": "Questionnaire Details", "请选择问卷结束时间": "Please select the end time of the questionnaire", "序号": "Serial number", "员工投票": "employee vote", "查询条件": "query condition", "业主投票": "owner vote", "问卷名称": "questionnaire name", "问卷类型": "questionnaire Type", "问卷人": "Questionnaire", "问卷题目": "Questionnaire Item", "查询": "Inquiry", "业主问卷": "Owner Questionnaire", "时间": "Time", "导出": "Export", "请选择问卷类型": "Please select the questionnaire type", "请选择问卷开始时间": "Please select the questionnaire start time", "答案": "Answer" },
"scrapGoodsStep": { "提交": "Submit" },
"reportCustomComponentManage": { "修改": "Modify", "操作": "Operation", "请输入组件名称": "Please enter the component name", "查询条件": "query condition", "组件名称": "component name", "查询方式": "query method", "描述": "description", "删除": "delete", "查询": "query", "报表组件": "report component", "请输入组件类型": "Please enter the component type", "设置条件": "Set condition", "组件类型": "Component type", "请输入组件": "Please enter the component", "底部统计": "bottom stats", "组件": "components" },
"unit": { "无": "none", "单元信息": "unit", "修改": "modification", "楼栋": "building", "层": "floor", "平方米": "square meter", "操作": "operation", "单元": "unit", "查询条件": "query condition", "请输入总层数": "please enter the total number of floors", "添加": "Add", "有": "Yes", "是否有电梯": "Whether there is an elevator", "建筑面积": "Building area", "必填": "Required", "单元编号": "unit number", "删除": "delete", "查询": "query", "选择": "select", "请输入单元编号": "please enter unit number", "请选择楼栋": "Please select a building", "创建人": "Creator", "总层数": "Total floors" },
"orderManage": { "受理单信息": "Receipt", "请选择订单类型": "Please select an order type", "状态": "Status", "查询条件": "Query condition", "业务名称": "Business Name", "查询单": "Inquiry Form", "受理单": "Acceptance Form", "操作人": "Operator", "查询": "Inquiry", "受理时间": "Reception Time", "订单编号": "Order ID", "应用名称": "App Name", "外部编号": "External ID" },
"addStaffStep": { "上一步": "Previous Step", "下一步": "Next Step", "完成": "Done" },
"purchaseApplyDetail": { "申请时间": "application time", "序号": "serial number", "状态": "status", "说明": "description", "申请信息": "application", "参考总价格": "reference total price", "联系电话": "contact number", "返回": "return", "现有库存": "available stock", "意见": "opinion", "申请人": "Applicant", "是否是固定物品": "Whether it is a fixed item", "物品规格": "Item Specification", "申请数量": "Application Quantity", "处理人": "Processing Person", "审批状态": "Approval Status", "物品类型": "Item Type", "采购单价": "Purchase Unit Price", "使用人": "User", "实际采购总价格": "Actual total purchase price", "工单流转": "Work order circulation", "耗时": "Time-consuming", "打印": "Printing", "物品名称": "Item name", "物品所属仓库": "WareRoom to which the item belongs", "物品编码": "Item Code", "处理时间": "Processing Time", "申请单号": "Requisition No.", "参考采购总价格": "Reference Total Purchase Price", "申请备注": "Remarks for Requisition", "供应商": "Suppliers", "申请物资": "Materials Requisition", "参考单价": "Reference Unit Price", "原有库存": "Original stock" },
"payFeeOrder": { "打印小票": "Print Receipt", "实收款": "Actual Payment", "打印收据": "Amount Receivable", "应收金额": "Submit Fee", "提交收费": "Submit Fee", "请到业务受理页面补打收据": "Owner Account", "业主账户": "Expense Type", "费用类型": "Discount Amount", "优惠金额": "Order Charge", "订单收费": "Unit Price", "单价": "Remarks", "备注": "Please enter the actual period Period", "请输入实际周期": "Fixed Fee", "固定费": "Payment Method", "支付方式": "Confirmed Charge", "确定收费": "Required", "必填": "Custom Amount", "自定义金额": "Close", "关闭": "Please enter the actual payment amount", "请输入实际收款金额": "Payment Period", "缴费周期": "Can be filled in", "可填": "Month", "个月": "Expense Item", "费用项目": "Deduction Amount", "抵扣金额": "Charge Confirmation", "收费确认": "Return", "返回": "Back", "缴费时间段": "Custom Period", "自定义周期": "Payment Object", "付费对象": "Fee", "费用": "Payment Tips", "缴费提示": "Area", "面积": "Amount to be paid", "应缴金额": "Additional fee", "附加费": "Payment successful", "缴费成功": "Please scan the code with a code scanner", "请用扫码枪扫码": "Payment time", "缴费时间": "Receivables", "应收款": "Please select the payment period", "请选择缴费周期": "Scan code charge", "扫码收费": "QrCode Pay", "计费起始时间": "Actual amount", "实收金额": "Actual period", "实际周期": "" },
"questionAnswerTitleValueManage": { "时间": "time", "简答题": "short answer", "问卷人": "questioner", "内容": "content" },
"contractDetailView": { "甲方联系人": "Party AContact", "乙方联系电话": "Party B Contact Number", "开始时间": "Start Time", "合同明细": "Contract Details", "合同类型": "Contract Type", "甲方": "Party A", "乙方": "Party B", "乙方联系人": "Party B Contact", "经办人": "Dealer Person", "合同金额": "Contract Amount", "联系电话": "Contact Number", "甲方联系电话": "Party AContact Number", "合同编号": "Contract Number", "结束时间": "end time", "签订时间": "signing time", "合同名称": "contract name" },
"couponPoolManage": { "优惠券类型": "Coupon Type", "修改": "Modify", "操作": "Operation", "查询条件": "Query Condition", "请输入优惠券名称": "please enter a coupon name", "优惠券名称": "coupon name", "面值": "face value", "优惠券池信息": "coupon pool", "删除": "delete", "有效期": "Expiration Date", "排序": "Sort", "数量": "Quantity", "请输入有效期": "Please enter Expiration Date", "购买价格": "Purchase Price", "优惠券池": "coupon pool" },
"goldBuyCartManage": { "购买时间": "purchase time", "数量": "quantity", "金币类型": "gold type", "商户名称": "merchant name", "备注": "remarks", "购买记录": "Purchase History", "购买人": "Purchaser", "交易编号": "Transaction ID", "金额": "Amount" },
"devServiceProvide": { "上一步": "Previous", "下一步": "Next", "完成": "Done" },
"meterWaterManage": { "抄表信息": "meter reading", "修改": "modification", "对象名称": "object name", "操作": "operation", "查询条件": "query Conditions", "抄表": "meter reading", "表": "meter", "本期度数": "this period degree", "上期读表时间": "the reading time of the last period", "本期读表时间": "Current meter reading time", "删除": "Delete", "查询": "Query", "重置": "Reset", "表类型": "Table type", "上期度数": "Last period degree", "请选择表类型": "Please select the table type", "请填写房屋编号": "Please fill in the Room number", "创建时间": "Creation time", "请输入表": "Please enter a table" },
"contractCreateFee": { "操作": "operation", "批量创建": "batch creation", "开始时间": "start time", "查询条件": "query condition", "合同类型": "contract Type", "乙方": "Party B", "合同信息": "Contract", "欠费缴费": "Arrears Payment", "请输入合同编号": "Please enter the contract number", "详情": "Details", "请输入合同名称": "Please enter the contract name", "查询": "Inquiry", "合同金额": "Contract Amount", "父合同编号": "Parent Contract Number", "请输入合同类型": "Please enter contract type", "合同编号": "Contract ID", "结束时间": "End Time", "合同名称": "Contract Name", "查看费用": "View cost" },
"addRoomBinding": { "上一步": "Previous", "下一步": "Next", "完成": "Done" },
"communityManage": { "请输入小区ID": "Please enter the community ID", "小区ID": "Community ID", "修改": "Modify", "小区信息": "Community", "操作": "Operation", "城市编码": "City Code", "状态": "status", "查询条件": "query condition", "小区地址": "community address", "请输入小区": "please enter the community", "审核撤回": "review retraction", "删除": "delete", "查询": "query", "添加小区": "Add", "附近地标": "nearby landmark", "小区名称": "community name", "请输入小区名称": "Please enter the community name" },
"myRepairDispatchManage": { "请输入报修电话": "Please enter the repair number", "请选择报修状态": "Please select the repair state", "操作": "Operation", "报修": "Repair", "状态": "Status", "查询条件": "Query condition", "联系方式": "Contact", "位置": "Location", "报修类型": "Repair type", "报修人": "Repairer", "详情": "Details", "请输入报修": "Please enter the repairer", "查询": "Inquiry", "请输入报修人": "Please select the repair type", "请选择报修类型": "Repair", "报修信息": "Appointment time", "预约时间": "" },
"clueAttrManage": { "查询": "query", "修改": "modification", "线索管理信息": "lead management", "目前进展情况": "current progress", "操作": "Operation", "请输入跟进计划": "Please enter the follow-up plan", "查询条件": "Inquiry condition", "请输入目前进展情况": "Please enter the current progress", "下一步推进计划": "Next step forward plan", "跟进时间": "Follow up time", "跟进": "Follow up", "删除": "Delete" },
"applyRoomDiscountManage": { "修改": "modify", "优惠申请": "discount application", "折扣名称": "discount name", "开始时间": "start time", "状态": "status", "查询条件": "query condition", "折扣": "discount", "申请电话": "application phone", "删除": "delete", "电话申请": "telephone application", "查询": "query", "重置": "reset", "请选择状态": "please select a status", "结束时间": "end time", "申请人": "applicant", "房屋": "Room", "验房": "Room Inspection", "操作": "Operation", "申请": "Apply", "请输入房屋名称": "Please enter the Room name", "请选择申请类型": "Please select an application type", "跟踪记录": "Tracking record", "申请类型": "Application type", "返还类型": "Return type", "创建时间": "Creation time", "审核": "Review", "使用状态": "Use status", "返还金额": "Refund amount" },
"attrValueManage": { "修改": "modify", "操作": "operation", "查询条件": "query condition", "请选择显示": "please select display", "否": "no", "添加": "add", "值名称": "value name", "删除": "delete", "是": "is", "查询": "query", "显示": "display", "重置": "reset", "属性值": "property value", "请输入值": "please enter a value", "值": "value", "请输入值名称": "please Enter value name" },
"feeSummary": { "费用项名称": "Expense item name", "时间": "Time", "应收金额": "Amount receivable", "年": "Year", "缴费汇总表": "Payment Summary Sheet", "日": "Day", "实收金额": "Actual Amount", "月": "Month", "费用项": "Expense Item" },
"publicWeChatManage": { "修改": "Modify", "应用密钥": "App Key", "我的公众号": "My Official Account", "操作": "Operation", "支付密码": "Payment Password", "名称": "Name", "菜单": "Menu", "商户": "Merchant", "描述": "Description" },
"handover": { "房屋": "Room", "平方米": "square meter", "手机": "mobile phone", "操作": "operation", "开始时间": "start time", "房屋状态": "Room Status", "业主": "Owner", "备注": "Remarks", "建筑面积": "Building Area", "必填": "Required", "身份证": "ID card", "删除": "delete", "性别": "gender", "可选": "Can be filled", "姓名": "name", "女": "female", "可填": "Male", "男": "Expense Item", "费用项目": "Age", "年龄": "End Time", "结束时间": "Expense", "费用": "" },
"inspectionPlan": { "计划": "plan", "状态": "status", "查询条件": "query condition", "巡检计划信息": "inspection plan", "添加": "Add", "签到方式": "Check-in Method", "停用计划": "Deactivate Plan", "删除计划": "Delete Plan", "查询": "Query", "重置": "Reset Set", "请选择状态": "Please select the status", "制定人": "Developer", "变更": "Change", "请输入计划": "Please enter the plan", "制定时间": "make time", "请输入计划名称": "please enter plan name", "计划名称": "plan name", "操作": "action", "启用计划": "enable plan", "请确保计划开始时间和计划结束时间是有效时间范围": "Please make sure that planned start time and planned end time are valid time ranges", "计划结束时间": "planned end time", "计划开始时间": "planned start time Time", "修改计划": "Modify Plan", "计划路线": "Plan Route", "计划周期": "Plan Period" },
"userQuestionAnswerManage": { "返回": "return", "必填": "required", "我的问卷": "my questionnaire" },
"machineVistorPhotoManage": { "请输入用户手机": "Please enter the usermobile phone", "操作": "Operation", "被呼叫方式": "Called method", "查询条件": "Query condition", "业主": "Owner", "钥匙开门": "Key to open the door", "请选择用户类型": "Please select the user type", "身份证": "ID card", "详情": "Details", "请选择开门方式": "Please select the opening method", "查询": "Inquiry", "设备编码": "Equipment Code", "被呼叫用户名称": "Called User Name", "请输入设备名称": "Please enter the device name", "请输入设备编码": "Please enter the device code", "被呼叫用户手机号": "The phone number of the called user", "业主成员": "Member of the owner", "人脸开门": "Face to open the door", "开门记录": "Open door record", "请输入用户名称": "Please enter the user name" },
"reportFloorUnitFeeSummary": { "请选择缴费开始时间": "Please select the payment start time", "楼栋": "Building", "元": "Yuan", "单元": "Unit", "历史欠费": "History arrears", "查询条件": "Query condition", "请选择缴费结束时间": "Please select the payment end time", "欠费追回": "Arrears Recovery", "当月实收": "current monthactual receipt", "查询": "query", "选择": "select", "大计": "big plan", "请选择楼栋": "please select a building", "重置": "Reset", "欠费金额": "Amount in arrears", "实收": "Actually received", "当月应收": "Receivable in the current month", "日期": "Date", "请选择单元": "Please select a unit", "请填写房屋编号": "Please fill in the Room number", "实收合计": "Actual total", "预交费用": "Prepaid fee", "请选择收费项": "Please select a charge item", "楼栋费用表": "Building fee schedule", "应收": "Receivable", "更新时间": "Update time", "号楼": "Building No.", "导出": "Export", "小计": "Subtotal", "应收合计": "Total Receivable" },
"assetImport": { "导入": "Import", "选择文件": "Select file", "请填写备注信息": "Please fill in the remark", "资产信息": "Asset", "备注": "remarks", "必填": "required" },
"allocationStoreRoomApplyManage": { "是否是固定物品": "Is it a fixed item", "物品规格": "Item specification", "调拨数量": "Allocation quantity", "选择物品": "Select item", "操作": "Operation", "所属公司": "Affiliated Company", "物品类型": "Item Type", "员工": "Employee", "所属部门": "Affiliated Department", "必填": "Required", "库存": "Inventory", "物品名称": "Item Name", "物品": "Item", "调拨说明": "Transfer Instruction", "源仓库": "Origin WareRoom", "提交": "submit", "目标仓库": "target wareRoom", "调拨物品": "transfer item", "返回": "return", "申请说明": "application description", "审批人信息": "Approver", "取消调拨": "Cancel Transfer" },
"feeConfigManage": { "费用项ID": "Fee Item ID", "修改": "Modify", "计费结束时间": "Billing End Time", "查询条件": "Query Condition", "费用类型": "Expense Type", "请选择付费类型": "Please select a payment type", "折扣": "Discount", "添加": "Add", "附加/固定费用(单位:元)": "Additional", "删除": "Delete", "请输入收费项目": "Please enter a charge item", "查询": "Query", "重置": "Reset", "缴费周期(单位:月)": "Payment Period", "费用标识": "Expense ID", "请选择费用项": "Please select a fee item", "一次性费用表示费用只收取一次比如押金": "One-time fee means that the fee is only charged once, such as deposit", "催缴类型": "Type of reminder", "计费终止时间": "Billing termination time", "操作": "Operation", "费用项信息": "Expense item", "请选择费用类型": "Please select an expense type", "付费类型": "Payment Type", "费用项": "Expense Item", "请选择费用标识": "Please select the Expense ID", "请选择出账类型": "Please select the billing type", "计费单价(单位:元)": "Billing unit price", "请输入费用项": "Please enter expense item", "计费起始时间": "Billing start time", "出账类型": "Billing type", "收费项目": "Charge Item" },
"locationManage": { "小区": "Community", "房屋": "Room", "修改": "Modify", "楼栋": "Building", "操作": "Operation", "单元": "unit", "查询条件": "query condition", "位置类型": "location type", "位置": "location", "删除": "delete", "请输入位置名称": "please Enter location name", "查询": "query", "位置名称": "location name", "部门": "department", "请输入位置编码": "please enter location code", "请选择位置类型": "Please select a location type", "位置信息": "Location", "岗亭": "Post Box" },
"rentingPoolManage": { "修改": "modify", "状态": "status", "查询条件": "query condition", "押一付六": "bet one pays six", "出租标题": "Rental Title", "房源信息": "Property", "删除": "Delete", "详情": "Details", "预付类型": "Prepaid Type", "查询": "Inquiry", "请输入业主名称": "Please enter the ownername", "业主名称": "The ownername", "请选择预付类型": "Please select the prepayment type", "业主支付": "The owner pays", "业主电话": "ownerphone", "租金": "rent", "房屋": "Room", "操作": "operation", "请输入租房名称": "please input the rental name", "押一付三": "Pay One Pay Three", "租客支付": "Pay Tenant", "申请合同": "Apply Contract", "出租配置": "Rental Configuration", "押一付一": "Deposit one pay one", "入住时间": "Check-in time" },
"transactionLogManage": { "服务编码": "Service Code", "请输入流水": "Please enter the flow", "操作": "Operation", "信息": "Information", "请输入应用编码": "Please enter application code", "状态": "status", "查询条件": "query condition", "请求时间": "request time", "请输入服务编码": "please enter service code", "查看报文": "View message", "查询": "Query", "源": "Source", "耗时": "Time-consuming", "交互日志": "Interaction log", "应用编码": "application code", "流水": "flowing water" },
"listPropertyRightRegistrationDetail": { "是否缴费": "Whether to pay", "图片": "Picture", "操作": "Operation", "的产权登记详情记录": "Record of property rights registration details", "产权登记详情": "property registration details", "创建时间": "creation time", "材料类型": "material type", "返回": "return" },
"repairSettingManage": { "小区": "district", "请选择派单方式": "please select the dispatch method", "修改": "modify", "是否回访": "whether to return visit", "报修设置类型": "Repair setting type", "派单方式": "Order dispatch method", "操作": "Operation", "查询条件": "Query condition", "请输入派单类型": "Please enter Dispatch Type", "添加": "Add", "注意": "Note", "请输入类型名称": "Please enter the type name", "报修设置": "Repair setting", "删除": "Delete", "查询": "Query", "收费范围": "Charge Range", "重置": "Reset", "公共区域": "Public Area", "派单类型": "Dispatch Order type", "创建时间": "creation time", "类型名称": "type name", "维修师傅": "maintenance master" },
"storeOrderCartManage": { "已退款": "Refunded", "确定发货": "Delivery Confirmation", "待收货": "Pending Receipt", "查询条件": "Inquiry Condition", "申请退款": "refund request", "名称": "name", "待发货": "to be shipped", "支付金额": "paid amount", "待评价": "to be shipped Evaluation", "收货时间": "Receipt Time", "查询": "Inquiry", "关闭": "Close", "数量": "Quantity", "请选择状态": "Please select a status", "请输入商品名称": "Please enter the product name", "订单编号": "Order ID", "平台": "Platform", "发货确认": "Not Purchased", "未购买": "Order", "订单信息": "Consignee", "收货人": "Receiving Location", "收货地点": "Return Successful", "退货成功": "Username", "用户名称": "Order No.", "订单号": "Please select a store", "请选择商铺": "Creation time", "创建时间": "Shop", "商铺": "order status", "订单状态": "type", "类型": "" },
"printPayFeeXinShiDai": { "车辆": "car", "至": "to", "摘要": "summary", "单号": "single number", "取消": "cancommunityation", "滞纳金": "Late Payment Fee", "金额": "Amount", "收费项目": "Charge Items" },
"reportInfoAnswerManage": { "请选择登记项目": "Please select the registration item", "请输入被登记人名称": "Please enter the registered personname", "返回": "Return", "必填": "required" },
"auditShopCommunity": { "小区名称": "community name", "操作": "operation", "入驻时间": "occupancy time", "开始时间": "start time", "状态": "status", "小区编码": "community code", "商铺名称": "shop name", "店铺入驻小区": "store settled in the community", "审核": "audit", "结束时间": "end time" },
"roomFeeImportDetail": { "开始时间": "Start Time", "状态": "Status", "查询条件": "Query Condition", "费用名称": "Expense Name", "请输入楼栋编号": "please enter the building number", "备注": "remarks", "请输入房屋编号": "please enter the Room number", "请输入信息": "please enter the", "单元编号": "unit ID", "查询": "query", "导入失败": "import failed", "请输入单元编号": "please enter the unit number", "导入成功": "import successful", "导入费用详情": "Import Fee Details", "楼栋编号": "Building ID", "总金额": "Total Amount", "结束时间": "End Time", "房屋编号": "Room ID" },
"serviceManage": { "请输入服务名称": "Please enter the service name", "服务编码": "service code", "操作": "operation", "查询条件": "query condition", "更多": "more", "请输入服务编码": "please enter the service code", "服务名称": "service name", "查询": "query", "请输入调用地址": "please enter the calling address address", "调用方式": "calling method", "服务": "service", "消息队列": "message queue", "服务信息": "service", "调用地址": "calling address" },
"purchaseApplyManage": { "申请时间": "Application Time", "查询条件": "Query Condition", "查看": "View", "采购申请": "Purchase Application", "流程管理中设置采购流程": "Set procurement process in process management", "查询": "Inquiry", "重置": "Reset", "取消申请": "Cancel application", "请选择状态": "Please select the status", "参考价格": "reference price", "采购方式": "purchase method", "申请人": "applicant", "申请数量": "request quantity", "操作": "operation", "审批状态": "Approval Status", "使用人": "User", "注意": "Attention", "操作人": "Operator", "物品单价": "Item Unit Price", "订单号": "Order No.", "导出": "Export", "物品": "Items", "申请单号": "Requisition No.", "紧急采购": "Urgent Purchase", "请填写申请人姓名": "Please fill in the applicantname", "流程图": "Flowchart" },
"listApplyRoomDiscountRecordDetails": { "房屋": "Room", "图片": "Picture", "装修记录": "Renovation Record", "创建时间": "Creation Time", "返回": "Return" },
"questionAnswerManage": { "员工自评": "Employee Self-Assessment", "修改": "Modify", "操作": "Operation", "员工投票": "Employee Voting", "开始时间": "Start time", "题目": "title", "查询条件": "query condition", "请输入问卷名称": "please enter the questionnaire name", "业主投票": "owner vote", "问卷名称": "questionnaire name", "添加": "add", "问卷类型": "questionnaire type", "删除": "delete", "查询": "query", "请输入问卷": "please input the questionnaire", "业主问卷": "Owner Questionnaire", "重置": "Reset", "请选择问卷类型": "Please select a questionnaire type", "问卷": "Questionnaire", "问卷信息": "Questionnaire info", "结束时间": "end time" },
"listRoomRenovationRecordDetails": { "房屋": "Room", "图片": "picture", "装修记录": "renovation record", "创建时间": "creation time", "原始图片": "original picture", "返回": "return" },
"listPropertyManage": { "操作": "operation", "请输入物业名称": "please enter property name", "物业名称": "property name", "状态": "status", "查询条件": "Query Condition", "恢复登录": "Restore Login", "管理员电话": "Administrator Phone", "管理员": "Administrator", "物业信息": "Property", "查询": "query", "登录": "login", "限制登录": "restricted login", "请输入管理员": "please enter administrator", "请输入联系电话": "please enter contact number", "创建时间": "created time", "隶属小区": "subordinate community" },
"roomRenovationManage": { "修改": "Modify", "请选择装修时间": "Please select the renovation time", "联系人": "Contact", "申请时间": "Application time", "装修单位": "renovation unit", "状态": "status", "查询条件": "query condition", "添加": "add", "备注": "remarks", "请输入房屋编号": "please Enter the Room number", "请选择装修申请结束时间": "Please select the end time of the decoration application", "删除": "Delete", "查询": "Query", "重置": "Reset", "请选择状态": "Please select the status", "装修信息": "Renovation", "联系电话": "Contact number", "装修验收": "Renovation acceptance", "装修": "Renovation", "负责人电话": "Phone of the person in charge", "延期时间": "Extension time", "违规说明": "Violation description", "费用": "Expense", "是否违规": "Whether it violates the rules", "房屋": "Room", "装修负责人": "Renovation person in charge", "装修时间": "Renovation time", "操作": "Operation", "请选择是否延期": "Please choose whether to postpone", "否": "No", "验收明细": "Acceptance Details", "装修完成": "Renovation Completed", "请输入联系人": "Please enter the contact person", "是": "Yes", "跟踪记录": "Tracking record", "请选择装修申请开始时间": "Please select the start time of the decoration application", "请输入联系电话": "Please enter the contact number", "是否延期": "Whether defer", "审核": "review" },
"feeDiscountManage": { "修改": "modify", "请输入折扣名称": "please enter discount name", "折扣名称": "discount name", "操作": "action", "规则": "Rule", "查询条件": "Query Condition", "规则名称": "Rule Name", "请输入规则名称": "Please enter the rule name", "折扣": "Discount", "添加": "add", "请输入折扣": "please enter a discount", "折扣类型": "discount type", "删除": "delete", "查询": "query", "重置": "reset", "折扣信息": "discount", "创建时间": "creation time", "请选择折扣类型": "please select a discount type" },
"reportInfoBackCityManage": { "修改": "modify", "国内": "domestic", "城市名称": "city name", "操作": "operation", "查询条件": "query condition", "请输入手机号": "Please enter the mobile phone number", "身份证": "ID card", "删除": "Delete", "二维码": "QR code", "查询": "Inquiry", "关闭": "Close", "返省信息": "Return to the province", "姓名": "Name", "外来人员登记": "Registration of foreigners", "请输入身份证": "Please Enter ID card", "国外": "Foreign", "请选择来源地": "Please select the source", "来源地": "Origin", "手机号": "Mobile number", "返回时间": "Return time", "请输入姓名": "Please enter your name" },
"viewMachineRecordInfo": { "设备编码": "Device Code", "开门方式": "Open Door Mode", "选择开门记录": "Select Door Open Record", "添加开门记录": "Add Door Open Record", "设备": "Device", "用户手机号": "User mobile phone number", "开门记录信息": "Open door record information", "用户名称": "User name", "身份证": "ID card" },
"editResourceStoreSpecification": { "必填,请填写规格名称": "required,please fill in the specification name", "选填,请填写描述": "optional,please fill in the description", "请选择二级分类": "Please select the secondary classification", "请选择物品类型": "Please select the item type", "规格名称": "Specification name", "商品类型": "Commodity type", "描述": "Description", "修改物品规格": "Modify item specification" },
"closeOrder": { "结单状态": "Statement status", "退单": "Refund", "选填,请填写原因": "optional,please fill in the reason", "请选择": "please choose", "取消": "cancel", "结单信息": "statement information", "原因": "reason", "结单": "Statement" },
"chooseMeterType": { "查询": "query", "选择": "select", "抄表类型": "meter reading type", "操作": "Operation", "输入抄表类型名称": "Enter meter reading type name", "名称": "Name", "选择抄表类型": "Select meter reading type", "说明": "Description" },
"addActivitiesBeautifulStaff": { "申请最美员工": "Apply for the most beautiful employee", "评选编号": "Selection ID", "工作简介": "Job Profile", "员工": "Employee", "必填,请填写评选编号": "required,please fill in the selection number", "活动规则": "activity rules", "必填": "required" },
"viewResourceStoreInfo2": { "是否是固定物品": " Is it a fixed item", "物品规格": "item specification", "选择物品": "select item", "申请数量": "application quantity", "操作": "operation", "移除": " Remove", "物品类型": "Item type", "请选择": "Please select", "备注": "Note", "物品信息": "Item information", "选填,请填写备注": "Optional,please fill in the remarks", "物品名称": "item name", "物品库存": "item inventory", "物品编码": "item code", "必填,请填写申请数量": "Required,please fill in the application quantity", "参考价格": "Reference price", "供应商": "Supplier" },
"viewResourceStoreInfo3": { "是否是固定物品": "", "物品规格": "", "选择物品": "", "操作": "", "移除": "", "物品类型": "", "采购单价": "", "请选择": "", "备注": "", "必填,请填写数量": "", "物品信息": "", "物品名称": "", "物品库存": "", "物品编码": "", "供应商": "", "必填,请填写采购单价": "", "参考单价": "" },
"editMainCategory": { "开始时间": "start time", "商圈": "business district", "目录名称": "catalog name", "必填": "required", "描述": "description", "必填,请填写开始时间": "required,please fill in the start time", "必填,请填写排序": "required,please fill in the sort", "排序": "sort", "目录类别": "catalog category", "必填,请填写目录名称": "required,please fill in the directory name", "必填,请填写描述": "required,please fill in the description", "服务": "service", "必填,请填写结束时间": "Required,please fill in the end time", "取消": "Cancel", "结束时间": "End time", "修改商品目录": "Modify product catalog" },
"addTemplateView": { "取消": "Cancel", "合同模板": "Contract Template", "模板内容": "Template Content" },
"addFileView": { "附件": "Attachment", "上传附件": "Upload attachment" },
"viewResourceStoreInfo4": { "是否是固定物品": "Whether it is a fixed item", "物品规格": "item specification", "选择物品": "select item", "申请数量": "request quantity", "操作": "operation", "移除": "remove", "物品类型": "item type", "采购单价": "purchase unit price", "备注": "remarks", "物品信息": "Item information", "必填": "Required", "选填,请填写备注": "Optional,please fill in remarks", "物品名称": "Item name", "物品库存": "Item Inventory", "物品编码": "Item Code", "必填,请填写申请数量": "Required,please fill in the application quantity", "目标仓库": "target warehouse", "参考价格": "Reference price", "必填,请填写采购单价": "Required,please fill in the purchase price" },
"deleteClue": { "确定删除线索管理": "Delete lead management", "请确认您的操作": "Please confirm your operation", "点错了": "Wrong click", "确认删除": "Confirm delete" },
"messageTips": {},
"chooseOwner": { "查询": "query", "选择": "select", "操作": "operation", "选择业主": "select owner", "业主": "owner", "名称": "name", "联系方式": "Contact information", "输入业主": "Enter the owner", "年龄": "Age", "输入业主名称": "Enter the owner name", "性别": "Gender" },
"chooseWechatMenu": { "查询": "query", "菜单类型": "menu type", "选择": "select", "操作": "operation", "菜单级别": "menu level", "选择公众号菜单": "Select Official Account Menu", "菜单名称": "Menu Name", "菜单": "Menu", "值": "Value", "输入公众号菜单名称": "Enter Official Account Menu Name", "小程序地址": "Mini program address" },
"deleteInspectionRoute": { "确定删除巡检路线": "Delete inspection route", "请确认您的操作": "Please confirm your operation", "点错了": "Wrong click", "确认删除": "Confirm deletion" },
"addWechatSmsTemplate": { "必填,请填写微信模板": "Required,please fill in the WeChat template", "停电通知": "Power outage notice", "微信模板": "WeChat template", "选填,请填写说明": " optional,please fill in the description", "模板对象": "template object", "取消": "Cancel", "说明": "Description", "模板类型": "Template type", "停水通知": "Water cutoff notice", "必填": "Required", "添加微信模板": "Add WeChat template", "欠费催缴": "Arrears reminder" },
"editReportInfoSettingTitle": { "修改": "Modify", "选项": "Option", "增加选项": "Add option", "多选": "multiple choice", "题目": "question", "顺序": "order", "题目类型": "question type", "必填": "required", "必填,请填写顺序": "Required,please fill in the order", "删除选项": "Delete option", "必填,请填写问卷题目": "Required,please fill in the questionnaire title", "取消": "Cancel", "必填,请填写选项内容": "required,please fill in the options", "简答题": "short answer", "单选": "single choice" },
"editComplaint": { "咨询": "Consultation", "修改信息": "Modify information", "必填,请填写投诉人": "Required,please fill in the complainant", "必填,请填写投诉人电话": "Required,please fill in Complainant phone number", "投诉人": "complainant", "必填,请填写投诉内容": "required,please fill in the content of the complaint", "投诉类型": "complaint type", "投诉": " Complaint", "建议": "suggestion", "投诉人电话": "complainant phone", "必填": "required", "投诉内容": "complaint content" },
"viewInspectionItemInfo": { "添加巡检项目": "Add inspection item", "选择巡检项目": "Select inspection item", "巡检项目信息": "Inspection item information", "备注": "Remark", "巡检项目": "Inspection item" },
"editMenuGroup": { "无": "None", "选填,请选择组类型": "Optional,please select a group type", "组名称": "Group name", "请选择商户类型": "Please select the merchant type", "物流公司": "Logistics company", "序列": "Sequence", "归属商户": "Belonging merchant", "运营团队": "Operation Team", "可填,请选择标签": "Available,please select a label", "描述": "Description", "必填,请填写组名称": "Required,please fill in the group name", "选填,请填写描述": "optional,please fill in description", "必填,请填写icon": "required,please fill in icon", "必填,请填写序列": "required Fill in,please fill in the sequence", "代理商": "agent", "修改菜单组": "modify menu group", "取消": "cancel", "标签": "label", "商家": " Merchant", "开发团队": "Development team", "组类型": "Group type", "物业": "Property", "跑腿": " errand" },
"viewMachineTranslateInfo": { "设备编码": "Device code", "对象名称": "object name", "对象": "object", "选择设备同步": "select device sync", "对象类型": "object type", "状态": " Status", "设备同步信息": "device synchronization information", "添加设备同步": "add device synchronization", "设备": "device" },
"validateCode": { "点击刷新验证码": "click Refresh verification code", "请输入验证码": "Please enter verification code" },
"viewFloorInfo": { "添加楼": "Add floor", "选择楼": "Select floor", "楼编号": "Building number", "楼名称": "building name", "备注": "remarks", "楼ID": "building ID", "楼信息": "building information", "面积": "area" },
"viewQuestionAnswerInfo": { "问卷信息信息": "Questionnaire Information", "添加问卷信息": "Add Questionnaire Information", "开始时间": "Start Time", "选择问卷信息": "Select Questionnaire letter information", "问卷名称": "questionnaire name", "问卷类型": "questionnaire type", "备注": "remark", "结束时间": "end time" },
"deleteApplicationKey": { "请确认您的操作": "Please confirm your operation", "确定删除钥匙申请": "Delete key application", "点错了": "Wrong click", "确认删除": "Confirm deletion" },
"viewCommunitySettingInfo": { "选择小区设置": "Select community setting", "配置名称": "Configuration name", "配置取值": "Configuration value", "配置": "Configuration", "添加小区设置": "Add community setting", "小区设置信息": "community setting information", "备注": "remark", "配置类型": "configuration type" },
"editParkingSpaceApply": { "汽车品牌": "Car brand", "起租时间": "Lease start time", "颜色": "Color", "车辆类型": "Vehicle type", "备注": "Remark", "必填": "Required Fill in", "家用小汽车": "family car", "货车": "lorry", "客车": "passenger car", "必填,请填写颜色": "required,please fill in the color", "选填,请填写备注": "Optional,please fill in the remarks", "必填,请填写申请人电话": "Required,please fill in the applicant phone number", "结租时间": "Rent settlement time", "取消": "Cancel", "车牌号": "License plate number", "必填,请填写车牌号": "Required,please fill in the license plate number", "必填,请填写起租时间": "Required,please fill in the starting time", "必填,请填写汽车品牌": "Required,please fill in the car brand", "申请人电话": "Applicant phone number", "修改车位申请": "Application for modification of parking space", "必填,请填写申请人": "required,please fill in the applicant", "必填,请填写结租时间": "required,please fill in the lease closing time", "申请人": "Applicant" },
"devServiceProvideView": { "输出模板": "Output Template", "存储过程": "Stored Procedure", "开发服务": "Development Service", "参数": "Parameter", "选填,请填写输出模板": "optional,please fill in the output template", "选填,请填写存储过程": "optional,please fill in the stored procedure", "实现方式": "implementation", "必填,请填写参数": " required ,please fill in the parameters", "必填": "required", "选填,请填写": "optional,please fill in", "存储过程方式": "Stored procedure method" },
"company-base": { "请选择省": "Please select a province", "附近建筑": "Nearby buildings", "公司地址": "Company address", "公司名称": "Company Name", "联系电话": " Contact number", "请选择城市": "Please select a city", "公司基本信息": "Company basic information", "公司业务": "Company business" },
"editApplyRoomDiscountRecord": { "房屋(楼栋-单元-房屋)": "House(Building-Unit-House)", "开始时间": "Start Time", "修改优惠申请": "Modify Discount Application", "状态": "Status", "选填,请填写状态": "Optional,please fill in the status", "申请ID": "application ID", "必填,请填写申请类型": "required,please fill in the application type", "申请电话": "Application phone number", "必填,请填写开始时间": "required,please fill in the start time", "必填,请填写申请ID": "required,please fill in the application ID", "申请类型": "Application type", "必填,请填写申请电话": "Required,please fill in the application telephone number", "必填,请填写房屋": "Required,please fill in the house", "必填,请填写结束时间": "required,please fill in the end time", "取消": "cancommunityation", "必填,请填写申请人": "required,please fill in the applicant", "结束时间": "end time", "申请人": "applicant" },
"validateTel": { "请输入短信验证码": "please enter the SMS verification code", "请输入手机号": "please enter the mobile phone number" },
"editFeeFormula": { "必填,请填写单价": "required,please fill in the unit price", "选填,请填写描述": "optional,please fill in the description", "必填,请填写公式": "Required,please fill in the formula", "举例": "example", "修改公式": "modification formula", "单价": "unit price", "取消": "cancel", "公式": " Formula", "说明": "Description", "描述": "" },
"viewMainFee": { "建账时间": "Account establishment time", "费用状态": "Expense status", "附加费": "Additional Fee", "批次": "Batch", "计费结束时间": "Billing End Time", "费用类型": "Charge Type", "费用金额": "Charge Amount", "单价": "Unit price", "费用信息": "Expense information", "费用项": "Expense item", "固定费": "Fixed fee", "费用标识": "Expense ID", "计费开始时间": "Billing start time", "付费对象": "Payment object", "费用": "Fee", "面积": "Area" },
"addTempCarFeeConfig": { "必填,请填写标准名称": "required,please fill in the standard name", "开始时间": "start time", "添加标准": "add standard", "标准名称": "standard name", "必填,请填写结束时间": "Required,please fill in the end time", "车辆类型": "Vehicle type", "必填": "required", "收费规则": "toll rules", "结束时间": "end time", "停车场": "parking lot", "必填,请填写开始时间": "required,please fill in the start time" },
"editInspectionRoute": { "选填,请填写备注": "optional,please fill in the remarks", "修改巡检路线": "modify the inspection Route", "必填,请填写路线名称": "required,please fill in the route name", "顺序": "order", "路线名称": "route name", "备注": "remarks", "必填,请填写设备数量": "required,please fill in the number of devices" },
"machineState": { "确定": "OK", "设备": "equipment", "确认": "confirm", "请确认您的操作": "Please confirm your operation", "点错了": "Wrong click" },
"floorUnitTree": {},
"chooseResourceSupplier": { "供应商名称": "Supplier Name", "操作": "operation", "开户行": "account bank", "选择供应商": "select supplier", "开户行账号": "account bank account number", "备注": "Remarks", "供应商联系方式": "Supplier Contact Information", "联系人姓名": "Contact Name", "供应商地址": "Supplier Address", "查询": "Inquiry", "选择": "Select", "供应商编号": "Supplier ID", "输入供应商名称": "Enter Supplier Name" },
"deleteInspectionPlanStaff": { "确定删除巡检人": "OK Delete inspector", "温馨提示": "Warm reminder", "点错了": "Wrong click", "确认删除": "Confirm deletion" },
"addJob": { "必填,请选择模板": "Required,please select a template", "选择模板": "Select a template", "选填,请填写定时时间": "Optional,please fill in the scheduled time", "添加任务": "Add a task", "定时时间": "Timing time", "取消": "Cancel", "必填,请填写任务名称": "Required,please fill in the task name", "任务名称": "Task name" },
"deleteLocation": { "请确认您的操作": "Please confirm your operation", "确定删除位置管理": "Delete location management", "点错了": "Wrong click", "确认删除": "Confirm to delete" },
"deleteHousekeepingType": { "请确认您的操作": " Please confirm your operation", "确定删除服务": "Confirm to delete service", "点错了": "Click Wrong", "确认删除": "Confirm delete" },
"deleteRentingAppointment": { "选填,请填写备注": "optional,please fill in the remarks", "取消": "cancel", "原因": "reason", "放弃租房": "abandoned rent", "租客": "tenant" },
"editMachineTranslate": { "小区": "district", "对象名称": "object name", "对象": "object", "业主": "proprietor", "必填,请填写对象名称": " Required,please fill in the object name", "设备信息": "device information", "员工人脸": "employee face", "必填,请填写设备编码": "required,please fill in the device code", "必填,请填写设备ID": "required,please fill in the device ID", "必填,请选择对象类型": "required,please select the object type", "设备编码": "device code", "钥匙信息": "Key Information", "重新同步": "Resync", "对象类型": "Object Type", "设备": "Device", "取消": "Cancel", "访客信息": "Visitor information", "车辆信息": "Vehicle information", "必填,请填写对象Id": "required,please fill in the object Id" },
"addMenuUser": { "图标": "icon", "添加": " Add", "取消": "Cancel", "菜单": "Menu", "列顺序": "Column order", "必填,请填写列顺序": "Required,Please fill in the column order", "必填": "required" },
"viewReportCustomGroupInfo": { "选择报表组": "select report group", "组名称": "group name", "报表组信息": "Report group information", "组": "group", "添加报表组": "add report group", "描述": "description" },
"deleteFeeManualCollection": { "请确认您的操作": "please Confirm your operation", "确定删除人工托收": "Delete manual collection", "点错了": " Wrong click", "确认删除": "Confirm deletion" },
"addPurchaseApplyView": { "必填,请填写申请说明": "Required,please fill in the application description", "联系电话": "Contact number", "使用人": "User", "必填,请填写使用人": "required,please fill in the user", "申请说明": "application description", "申请信息": "application information", "必填,请填写联系电话": "required,please fill in the contact number" },
"deleteMenu": { "确定删除菜单": "Delete menu", "请确认您的操作": "Please confirm your operation", "点错了": "Wrong click", "确认删除": "Confirm delete" },
"deleteService": { "请确认您的操作": "Please confirm your operation", "确定删除服务": "Delete service", "点错了": "Wrong click", "确认删除": "Confirm deletion" },
"deleteSmallWeChat": { "确定删除小程序管理": "Delete applet management", "请确认您的操作": "Please confirm your operation", "点错了": "Click wrong", "确认删除": "Confirm delete" },
"cameraControlVideo": { "我的摄像头": "My camera", "六路": "Six channel", "摄像头": "Camera", "四路": "Quad" },
"deleteJob": { "请确认您的操作": "Please confirm your operation", "确定删除任务": "Delete job", "点错了": "Click wrong", "确认删除": "Confirm deletion" },
"viewAttrSpecInfo": { "值类型": "Value type", "属性配置信息": "Attribute configuration information", "选择属性配置": "Select attribute configuration", "添加属性配置": "Add attribute configuration", "属性表": "Attribute table", "规格名称": "Specification name", "说明": "Description", "必填": "required", "查询显示": "query display", "展示": "display", "规格类型": "specification type" },
"deleteStorehouseManage": { "请确认您的操作": "Please confirm your operation", "确认取消": "Confirm cancel", "确定取消调拨": "Confirm cancel transfer", "点错了": "Wrong click" },
"deleteBusinessType": { "请确认您的操作": "Please confirm your operation", "您确定要删除吗": "Are you sure you want to delete", "点错了": "Wrong click", "确认删除": "Confirm to delete" },
"editActivitiesRule": { "最美员工": "The most beautiful employee", "修改": "Modify", "开始时间": "Start time", "规则名称": "Rule name", "员工": "employee", "业主": "owner", "规则说明": "rule description", "必填": "required", "必填,请填写规则名称": "required,Please fill in the rule name", "必填,请填写开始时间": "required,please fill in the start time", "活动类型": "activity type", "必填,请填写规则说明": "required,Please fill in the rules description", "必填,请填写结束时间": "required,please fill in the end time", "取消": "cancel", "大众": "public", "活动对象": "event object", "结束时间": "End Time" },
"chooseAuditUser": { "查询": "Query", "用户": "User", "选择": "Select", "操作": "Operation", "审核环节": " Audit link", "选择审核人员": "Select reviewer", "输入审核人员名称": "Enter reviewer Person name", "审核": "audit", "流程对象": "process object", "用户名称": "username" },
"chooseUnit": { "查询": "query", "选择": "select", "操作": "operation", "单元": "unit", "电梯": "elevator", "输入单元名称": "input unit name", "选择单元": "select unit", "备注": "Remarks", "单元编号": "Unit No.", "总层数": "Total Layers" },
"deleteCommunitySetting": { "请确认您的操作": "Please confirm your operation", "确定删除小区设置": "Delete community settings", "点错了": "Wrong click", "确认删除": "Confirm deletion" },
"deleteStoreInfo": { "确定删除商户信息管理": "Confirm to delete business information management", "请确认您的操作": "Please confirm your operation", "点错了": "Wrong click", "确认删除": "Confirm deletion" },
"configParkingSpaceTempFee": { "必填,请填写临时车每小时单价,如": "Required,please fill in the hourly unit price of the temporary car,such as", "每小时单价": "hourly unit price", "首两个小时": "First two hours", "取消": "Cancel", "必填,请填写前两个小时费用,如": " Required,please fill in the fee for the first two hours,such as", "编辑临时停车费": "Edit temporary parking fee" },
"deleteBusinessTableHis": { "请确认您的操作": "Please confirm your operation", "确定删除业务轨迹": "Delete business track", "点错了": "Click wrong", "确认删除": "Confirm deletion" },
"departmentSelect2": { "选择部门": "Select department" },
"startRepair": { "确定启动报修": "Confirm Start repair", "请确认您的操作": "Please confirm your operation", "确认启动": "Confirm start", "点错了": "Wrong click" },
"chooseResourceStore4": { "是否是固定物品": "Is it a fixed item", "物品规格": "Item specification", "请选择仓库": "Please select a warehouse", "物品类型": "Item type", "仓库": "Warehouse", "选择物品管理": "Select item management", "输入物品管理名称": "Enter item management name", "查询": "query", "物品名称": "item name", "物品库存": "Item inventory", "物品编码": "item code", "请选择二级分类": "please select the secondary category", "物品价格": "item price", "请选择物品类型": " Please select item type" },
"chooseRoomRenovation": { "查询": "", "房屋": "", "选择": "", "联系人": "", "装修时间": "", "操作": "", "联系电话": "", "选择房屋装修": "", "装修": "", "备注": "", "输入房屋装修名称": "", "结束时间": "" },
"viewLocationInfo": { "位置管理信息": "location management information", "位置名称": "location name", "选择位置管理": "Select location management", "添加位置管理": "Add location management", "位置类型": "Location type" },
"chooseResourceStore3": { "是否是固定物品": "Whether it is a fixed item", "物品规格": "Item specification", "请选择仓库": "Please select a warehouse", "物品类型": "Item type", "仓库": "Warehouse", "选择物品管理": "Select item Management", "输入物品管理名称": "Enter item management name", "查询": "Query", "物品名称": "Item name", "物品库存": "Item inventory", "物品编码": "Item code", "请选择二级分类": "Please select the secondary category", "物品价格": "Item price", "请选择物品类型": "Please select the item type" },
"editParkingArea": { "修改信息": "Modify information", "必填,请填写停车场编号": "Required,please fill in the parking lot number", "取消": "Cancel", "备注": "Remarks", "地上停车场": "Above Parking Lot", "必填": "Required", "停车场编号": "Parking Number", "停车场类型": "Parking Type", "地下停车场": "Underground parking lot", "可填,请填写备注": "can be filled,please fill in the remarks" },
"chooseResourceStore2": { "是否是固定物品": "is it a fixed item", "物品规格": "Item specification", "请选择仓库": "Please select a warehouse", "物品类型": "Item type", "仓库": "Warehouse", "选择物品管理": "Select item management", "输入物品管理名称": "Enter item management name", "查询": "query", "物品名称": "item name", "物品库存": "item inventory", "物品编码": "item code", "请选择二级分类": "Please select the secondary category", "物品价格": "Item price", "请选择物品类型": "Please select the item type" },
"deleteApplyRoomDiscount": { "请确认您的操作": "Please confirm your operation", "确定删除房屋折扣申请": "OK Delete housing discount application", "点错了": "click wrong", "确认删除": "confirm deletion" },
"deleteCouponPool": { "请确认您的操作": "please confirm your operation", "确定删除优惠券": "Delete coupon", "点错了": "Wrong click", "确认删除": "Delete confirmation" },
"editApp": { "选填,请填写备注": "Optional,please fill in the remarks", "修改应用": "modify application", "秘钥": "secret key", "白名单": "whitelist", "选填,请填写黑名单": "Optional,please fill in the blacklist", "应用名称": "application name", "黑名单": "blacklist", "选填,请填写秘钥": "optional,please fill in the secret key", "取消": "Cancel", "备注": "Remarks", "必填,请填写应用名称": "Required,please fill in the application name", "选填,请填写白名单": "Optional,Please fill in the whitelist" },
"editReportInfoSetting": { "项目名称": "project name", "选填,请填写备注": "optional,please fill in remarks", "开始时间": "start time", "修改项目信息": "Modify project information", "必填,请填写项目名称": "required,please fill in the project name", "项目类型": "project type", "必填,请填写结束时间": "Required,please fill in the end time", "取消": "Cancel", "出入上报": "In and out report", "备注": "Remark", "结束时间": "End time", "必填,请填写开始时间": "Required,please fill in the start time" },
"deleteMainCategoryProduct": { "请确认您的操作": "Please confirm your operation", "确定删除目录商品": "Delete Catalog item", "点错了": "Wrong click", "确认删除": "Confirm deletion" },
"addMenuGroupCatalog": { "菜单组": "Menu group", "添加目录组": "Add Directory Group", "取消": "Cancel", "必填": "Required" },
"editActivitiesBeautifulStaff": { "编辑": "Edit", "工作简介": "Job Profile", "取消": "Cancel", "员工编号": "Employee ID", "必填,请填写员工编号": "Required,please fill in the employee ID" },
"chooseShopAudit": { "审核店铺": "Audit shop", "地区": "region", "地域编码": "region code", "操作": "operation", "退货地址": "return address", "状态": "status", "开店类型": " Store type", "店铺类型": "store type", "店铺": "store", "查询": "query", "发货地址": "shipping address", "选择": "Select", "审核意见": "Review opinion", "输入店铺审核名称": "Enter store review name", "数据状态": "Data status", "选择店铺审核": " Select store review", "商户": "merchant", "申请原因": "application reason", "审核": "review", "退货联系电话": "return phone number", "店铺名称": "shop Name", "店铺描述": "Store Description", "退货联系人": "Return Contact" },
"viewStoreInfoInfo": { "工作时间": "Working Hours", "商户信息管理信息": "Merchant Information Management Information", "选择商户信息管理": "Select Merchant Information Management", "添加商户信息管理": "Add Merchant Information Management", "显示序号": "Display Serial Number", "商户名称": "Merchant Name", "图片地址": "image address", "备注": "remarks", "商户电话": "merchant phone", "商户位置": "merchant location" },
"editApplyRoomDiscount": { "验房": "Home inspection", "必填,请填写验房说明": "required,please fill in the inspection description", "验房状态": "inspection status", "验房通过": "inspection passed", "开始时间": "Start time", "必填,请填写结束时间": "required,please fill in the end time", "申请说明": "application description", "结束时间": "end time", "必填": "Required", "必填,请填写开始时间": "Required,please fill in the start time", "验房不通过": "House inspection failed", "验房说明": "House inspection description" },
"chooseAccountBond": { "查询": "Query", "保证金": "Margin", "保证金名称": "Margin Name", "保证金金额": "Margin Amount", "选择": "Select", "操作": "Operation", "选择保证金": "Select margin", "有效月份": "Valid month", "输入保证金名称": "Enter margin name", "类型": "Type" },
"bindOwnerShops": { "起租时间": "Lease start time", "截租时间": "Lease cut-off time", "请填写备注信息": "Please fill in the remarks", "必填,请填写商铺编号": "required,please fill in the shop number", "备注": "remarks", "必填,请填写租户姓名": "required,please fill in the tenant name", "租户姓名": "tenant name", "租户手机号": "Tenant mobile number", "商铺编号": "Shop No.", "必填,请填写起租时间": "Required,please fill in the lease start time", "必填,请填写租户手机号": "Required,please fill in the tenant mobile phone number", "必填,请填写截租时间": "Required,please fill in the lease cut-off time", "商铺": "Shop" },
"viewOrgInfo": { "组织名称": "Organization Name", "上级组织": "Superior Organization", "组织级别": "Organization Level", "组织": " Organization", "描述": "Description" },
"editActivitiesType": { "修改": "modify", "大类名称": "category name", "大类描述": "category description", "必填,请填写显示序号": "Required,please fill in the display serial number", "否": "No", "必填,请填写大类名称": "Required,please fill in the category name", "选填,请填写大类描述": "Optional,please fill in the category description", "显示序号": "display serial number", "是否显示": "whether to display", "必填": "required", "是": "yes" },
"viewFeeConfigInfo": { "计费终止时间": "Billing termination time", "选择费用项": "Select charge item", "费用项信息": " Charge item information", "添加费用项": "Add expense item", "费用类型": "Expense type", "计费起始时间": "Billing start time", "费用标识": "Expense ID", "计算公式": "Calculation Formula", "附加费用": "Additional fee", "收费项目": "Charge item", "计费单价": "Billing unit price" },
"deleteSmsConfig": { "确定删除短信配置": "OK Delete SMS configuration", "请确认您的操作": "Please confirm your operation", "点错了": "Wrong click", "确认删除": "Confirm delete" },
"editOaWorkflow": { "选填,请填写备注": "Optional,please fill in the remarks", "流程名称": "process name", "必填,请填写流程名称": "required,please fill in the process name", "修改流程": "Modify process", "备注": "Remark" },
"deleteParkingSpace": { "确认是否删除": "Confirm to delete", "请确认您的操作": "Please confirm your operation", "点错了": "Wrong click", "确认删除": "Confirm deletion" },
"inspectionPointQrCode": { "关闭": "Close", "请截图贴在巡检点的地方": "Please screenshot Paste it at the inspection point", "巡检二维码": "inspection QR code" },
"deleteMeterWater": { "请确认您的操作": "Please confirm your operation", "确定删除抄表": "Delete meter reading", "点错了": "Wrong click", "确认删除": "Confirm deletion" },
"message": {},
"addContract": { "楼栋": "Building", "开始时间": "Start time", "必填,请填写业主电话": "Required,please fill in the owner phone", "合同类型": "Contract type", "甲方": "Party A", "乙方": "Party B", "必填,请填写经办人": "required,please fill in the manager", "必填": "required", "乙方联系人": "Party B contact person", "经办人": "manager", "必填,请填写开始时间": "required,please fill in the start time", "必填,请填写乙方联系人": "required,please fill in the contact person of Party B", "必填,请填写甲方": "required,please fill in Party A", "联系电话": "contact number", "必填,请填写乙方联系电话": "Required,please fill in Party B contact number", "必填,请填写签订时间": "Required,please fill in the signing time", "必填,请填写结束时间": "Required,Please fill in the end time", "必填,请填写甲方联系人": "required,please fill in the contact of Party A", "必填,请填写甲方联系电话": "required,please fill in the contact of Party A Contact number", "选填,请填写合同金额": "optional,please fill in the contract amount", "合同编号": "contract number", "必填,请填写合同编号": "required,please fill in Contract No.", "业主电话": "Owner phone number", "必填,请填写联系电话": "Required,please fill in the contact number", "结束时间": "End time", "签订时间": " Signing time", "甲方联系人": "Party A contact person", "乙方联系电话": "Party B contact number", "选填,请填写 楼栋编码": "optional,please fill in the building code", "业主": "owner", "个": "item", "删除附件": "delete attachment", "第": "required,please Fill in Party B", "必填,请填写乙方": "contract amount", "合同金额": "add attachment", "添加附件": "required,please fill in the owner", "必填,请填写业主": "Required,please fill in the contract name", "必填,请填写合同名称": "Add contract", "添加合同": "Contract attachment", "合同附件": "Party A contact number", "甲方联系电话": "Cancel", "取消": "Contract name", "合同名称": "" },
"chooseShopType": { "查询": "Query", "是否默认": "Is it default", "选择": "Choose", "输入店铺类型名称": "Enter store type name", "操作": "operation", "选择店铺类型": "select store type", "是否展示": "whether to display", "显示序号": "display serial number", "备注": "Remark", "店铺类型": "Store Type" },
"viewRentingPoolInfo": { "房屋": "House", "租赁图片": "Rental Picture", "备注": "Remark", "出租标题": "Rental title", "房源信息": "Housing information", "预付类型": "Prepaid type", "业主服务费": "Owner service fee", "业主名称": " Owner name", "租客服务费": "Tenant service fee", "出租配置": "Rental configuration", "业主电话": "Owner phone", "租金": "Rent", "入住时间": "Check-in time" },
"addSmallWeChat": { "必填,请填写商户ID": "required,please fill in the merchant ID", "作用范围": "scope", "添加": "add", "名称": "name", "必填,请填写应用密钥": "required,please fill in the application key", "描述": "description", "必填,请填写支付密码": "required,please fill in the payment password", "应用密钥": "application key", "必填,请填写名称": "required,please fill in the name", "请选择状态": "please select a state", "支付密码": "payment Password", "商户ID": "merchant ID", "取消": "cancel", "必填,请填写APPID": "required,please fill in APPID", "选填,请填写描述信息": " Optional,please fill in the description information" },
"deleteQuestionAnswerTitle": { "请确认您的操作": "Please confirm your operation", "确定删除问卷题目": "Delete the questionnaire title", "点错了": "Click wrong", "确认删除": "Confirm deletion" },
"addRoomRenovation": { "装修详情": "Renovation details", "联系人": "Contact", "必填,请填写装修负责人电话": "Required,please fill in the phone number of the person in charge of the decoration", "装修单位": "Renovation unit", "必填,请填写装修详情": "Required,please fill in the decoration details", "必填,请填写联系人": "required,please fill in the contact", "添加": "add", "必填": "required", "装修负责人电话": "the telephone of the person in charge of decoration", "必填,请填写延期时间": "required,please fill in the extension time", "联系电话": "contact number", "必填,请填写结束时间": "required,please fill in the end time", "必填,请填写装修时间": "required,please fill in the decoration time", "必填,请填写装修负责人": "required,please fill in the person in charge of decoration", "必填,请填写房屋,格式 楼栋-单元-房屋": "Required,please fill in the house,Format Building-Unit-House", "必填,请填写联系电话": "Required,please fill in the contact number", "结束时间": "End time", "延期时间": "Extension time", "房屋": "House", "装修负责人": "Renovation person in charge", "装修时间": "Renovation time", "否": "No", "是": "Yes", "是否延期": "Extended", "必填,请填写装修单位": "Required,please fill in the decoration unit" },
"viewInspectionRouteInfo": { "选择巡检路线": "Select inspection route", "巡检路线信息": "Inspection route information", "检查项数量": "Number of inspection items", "巡检点": "Inspection point", "路线名称": "Route name", "设备数量": "Number of devices", "备注": "Remarks", "添加巡检路线": "Add inspection route" },
"chooseOrg": { "查询": "query", "组织名称": "organization name", "选择": "Select", "操作": "operation", "上级": "superior", "输入组织名称": "enter organization name", "组织": "organization", "组织级别": "organization level", "选择组织": "Select organization" },
"addJunkRequirement": { "必填,请填写内容": "Required,please fill in the content", "添加旧货": "Add junk", "审核通过": "Approved", "状态": "Status", "家具": "Furniture", "联系方式": "Contact information", "必填": "Required", "必填,请填写联系方式": "required,please fill in the contact information", "必填,请填写巡检计划": "required,please fill in the inspection plan", "发布人": "issuer", "必填,请填写发布人": "required,please fill in the publisher", "未审核": "unreviewed", "必填,请填写参考价格": "required,please fill in the reference price", "审核失败": "Audit failed", "处理完成": "processing completed", "巡检计划": "inspection plan", "取消": "cancommunityation", "参考价格": "reference price", "电器": "Electrical", "内容": "Content", "类别": "Category" },
"deleteInspectionRoutePoint": { "确定删除巡检点": "Delete inspection point", "请确认您的操作": "Please confirm your operation", "点错了": " Wrong click", "确认删除": "Confirm deletion" },
"copyright": { "systemName": "systemName", "companyTeam": " companyTeam" },
"addServiceImpl": { "楼编号": "building number", "选填,请填写kafka主题": "optional,please fill in kafka subject", "楼名称": "building name", "备注": "Remarks", "业务名称": "Business Name", "必填": "Required", "必填,请填写重试次数": "Required,please fill in the number of retries", "描述": "description", "超时时间": "timeout", "添加服务实现": " add service implementation", "业务类型": "business type", "微服务": "microservice", "选填,请填写描述": "optional,please fill in the description", "必填,请填写业务名称": "required,please fill in the business name", "必填,请填写名称": "required ,please fill in the name", "必填,请填写超时时间": "Required,please fill in the timeout period", "必填,请填写编号": "Required,please fill in the serial number", "必填,请填写业务类型": "Required,please fill in the business Type", "必填,请填写调用地址": "required,please fill in the calling address", "重试次数": "retry times", "取消": "cancel", "调用类型": "call Type", "调用地址": "calling address", "可填,请填写备注": "can be filled,please fill in the remarks" },
"importRoomFee": { "房屋": "house", "下载模板": "Download Template", "费用对象": "Fee Object", "费用类型": "Fee Type", "选择文件": "Select File", "导入模板": "Import Template", "车位车辆": "Parking car", "费用导入": "Fee import", "必填": "Required" },
"editShopAudit": { "必填,请填写店铺logo": "Required,please fill in the shop logo", "地区": "region", "必填,请填写退货联系电话": "required,please fill in the return contact number", "状态": "status", "必填,请填写店铺类型": " Required,please fill in the store type", "店铺类型": "store type", "必填,请填写数据状态": "required,please fill in the data status", "必填,请填写退货联系人": "Required,please fill in the return contact person", "数据状态": "Data status", "修改店铺审核": "Modify store review", "必填,请填写地区": "Required,please fill in the region", "申请原因": "Application reason", "必填,请填写申请原因": "Required,please fill in the application reason", "必填,请填写开店类型": "Required,please fill in the store type", "必填,请填写状态": "required,please fill in the status", "地域编码": "regional code", "必填,请填写审核": "required,please fill in the review", "必填,请填写商户ID": "required,please fill in the merchant ID", "退货地址": "return address", "开店类型": "shop type", "店铺logo": "shop logo", "必填,请填写地域编码": "required,please fill in the region code", "店铺ID": "shop ID", "发货地址": "shipping address", "审核意见": "audit opinion", "必填,请填写店铺ID": "required,please fill in the store ID", "必填,请填写发货地址": "required,please fill in the delivery address", "必填,请填写店铺名称": "required,please fill in the store name", "必填,请填写店铺描述": "required,please fill in the store description", "商户ID": "merchant ID", "取消": "cancel", "必填,请填写退货地址": "required,please fill in the return address", "审核ID": "audit ID", "退货联系电话": "return phone number", "必填,请填写审核意见": "Required,please fill in the review comments", "店铺名称": "Store name", "店铺描述": "Store description", "退货联系人": "Return contact Person" },
"viewPurchaseApplyInfo": { "选择采购申请": "Select Purchase Requisition", "采购申请信息": "Purchase Requisition Information", "添加采购申请": "Add Purchase Requisition", "订单状态": "Order Status" },
"addStoreInfo": { "选填,请填写商户电话": "Optional,please fill in the merchant phone number", "必填,请填写显示序号": "Required,please fill in the display serial number", "否": "No", "便民类型": "Convenience Type", "选填,请填写工作时间": "Optional,please fill in the working hours", "是否显示": "whether to display", "显示序号": "Display serial number", "添加商户": "Add merchant", "商户名称": "merchant name", "必填,请填写商户名称": "required,please fill in the merchant name", "商户位置": "Business location", "是": "Yes", "工作时间": "Working hours", "必填,请填写公告内容": "Required,please fill in the announcement content", "选填": "optional", "图片地址": "image address", "商户电话": "merchant phone", "商家信息": "merchant information", "选填,请填写商户位置": "optional ,please fill in the merchant location" },
"viewMeterWaterInfo": { "抄表信息": "meter reading information", "表类型": "meter type", "上期度数": "last degree", "添加抄表": "Add meter reading", "本期度数": " Current meter reading time", "上期读表时间": "Last reading time", "备注": "Remarks", "本期读表时间": "Select meter reading", "选择抄表": "" },
"deleteMapping": { "请确认您的操作": " Please confirm your operation", "确定删除编码映射": "OK Delete coding mapping", "点错了": "Wrong click", "确认删除": "Confirm deletion" },
"viewCarBlackWhiteInfo": { "添加黑白名单": "Add black and white list", "选择黑白名单": "Select black and white list", "开始时间": "start time", "名单类型": "list type", "黑白名单信息": "black and white list information", "车牌号": "license plate number", "结束时间": "End time" },
"deleteCarBlackWhite": { "确定删除黑白名单": "Delete the black and white list", "请确认您的操作": "Please confirm your operation", "点错了": "Click wrong", "确认删除": "Confirm delete" },
"itemOut": { "上一步": "Previous", "下一步": "Next Step", "完成": "Complete" },
"viewComponentConditionInfo": { "选择报表组件条件": "Select report component condition", "报表组件条件信息": "Report component condition information", "参数": " Parameter", "添加报表组件条件": "Add report component condition", "提示": "Prompt", "名称": "Name", "组件": "Component", "描述": "Description", "类型": "Type" },
"addMeterType": { "必填,请填写说明": "Required,please fill in the description", "必填,请填写名称": "Required,please fill in the name", "添加抄表": "Add meter reading", "取消": "Cancel", "名称": "Name", "说明": "Description" },
"sellRoomSelectRoom": { "房屋": "House", "层": "floor", "平方米": "square meter", "单元": "unit", "单价": "unit price", "建筑面积": "building area", "楼层": "floor", "创建员工": "Create employee", "选择房屋": "Select house", "房屋信息": "House information", "房间数": "Number of rooms", "户型": "Unit type", "房屋编号": "House ID" },
"nav": { "signOut": "signOut", "moreCommunity": "moreCommunity" },
"addFeePrintPage": { "必填,请填写名称": "Required,Please fill in name", "添加": "add", "取消": "cancel", "名称": "name", "必填": "required", "收据页面": "receipt page" },
"searchStaff": { "查询": "query", "选择": "select", "员工名称": "employee name", "操作": "operation", "手机号": "mobile phone number", "定位员工": "Locate employee", "输入员工名称": "Enter employee name", "员工编码": "Employee code", "性别": "Gender" },
"addRouteView": { "查询": " Query", "订单类型": "Order Type", "调用方式": "Call Mode", "服务绑定": "Service Binding", "业务受理": "Business Acceptance", "必填,请填写调用次数": "required,please fill in the number of calls", "异步方式": "async method", "同步方式": "sync method", "必填": "required", "调用次数": "Number of calls" },
"deleteServiceImpl": { "请确认您的操作": "Please confirm your operation", "确定删除服务实现": "Delete the service implementation", "点错了": "Wrong point", "确认删除": "Confirm to delete" },
"deleteInspectionTask": { "请确认您的操作": "", "确定删除巡检任务": "", "点错了": "", "确认删除": "" },
"chooseOaWorkflow": { "选择流程实例": "Select process instance", "查询": "Query", "工作流": "Workflow", "选择": "Select", "流程名称": "process name", "操作": "operation", "流程类型": "process type", "备注": "remark", "输入流程实例名称": "input process instance name" },
"searchFloor": { "查询": "Query", "选择": "Select", "操作": "Operation", "小区楼": "Residential Building", "输入小区楼编号": " Enter the building number", "名称": "name", "创建人": "creator", "楼": "lou", "编号": "number" },
"chooseSmallWeChat": { "查询": "query", "选择": "select", "应用密钥": "application key", "操作": "operation", "编码": "encoding", "支付密码": "payment password", "输入小程序管理名称": "Enter the applet management name", "小程序名称": "applet name", "选择小程序管理": "select applet management" },
"viewContractPartyaInfo": { "合同甲方信息": "Contract Party A Information", "甲方联系人": "Party A Contact", "联系电话": "Contact Phone", "甲方": "Party A", "选择合同甲方": "Select Contract Party A", "添加合同甲方": "Add Contract Party A" },
"viewAdvertInfo": { "具体位置": "Specific Location", "选择发布广告": "Select to Post Advertisement", "播放顺序": "Playing order", "广告名称": "Ad Name", "广告状态": "Ad Status", "添加发布广告": "Add Posting Ad", "广告类型": " Advertisement Type", "广告分类": "Ad Category", "发布广告信息": "Post Advertisement Information", "投放位置": "Place Position", "结束时间": "End Time", "投放时间": "Delivery time" },
"editRentingPool": { "修改房源": "Modify house listing", "必填,请填写出租标题": "Required,please fill in the rental title", "押一付三": "Deposit one pay three", "立即入住": "Check in immediately", "必填,请填写租金": "Required,please fill in the rent", "必填,请填写业主电话": "Required,Please fill in the owner phone number", "必填,请填写业主名称": "required,please fill in the owner name", "押一付六": "deposit one to pay six", "备注": "remarks", "出租标题": "Rental title", "必填": "required", "预付类型": "prepaid type", "入住预约": "check-in appointment", "选填,请填写备注": "optional,please fill in Remarks", "业主名称": " owner name", "取消": "cancel", "出租配置": "rental configuration", "押一付一": "deposit one pay one", "业主电话": "Owner phone number", "租金": "rent", "入住时间": "check-in time" },
"editMapping": { "选填,请填写备注": "optional,please fill in remarks", "必填,请填写键": "required,please fill in the key", "必填,请填写名称": "required,please fill in the name", "必填,请填写值": "required,please fill in the value", "取消": "Cancel", "名称": "Name", "备注": "Remark", "值": "Value", "修改编码映射": "Modify encoding mapping", "必填,请填写域": "Required,please fill in the domain", "键": "key", "域": "domain" },
"chooseBasePrivilege": { "查询": "query", "权限": "privilege", "选择": "select", "商户类型": "merchant type", "操作": "operation", "选择权限": "select permission", "输入权限名称": "input permission name", "描述": "Description", "权限名称": "authority name" },
"prestoreAccount2": { "实收": "Accounted", "预存": "Pre-deposit", "必填,请填写预存金额": "Required,please fill in the deposit amount", "取消": "Cancel", "应收": "Receivable", "备注": "Remark", "预存金额": "Pre-deposit amount", "可填,请填写备注": "Available,please fill in the remarks" },
"addRentingPool": { "每月租金比例": "Monthly rent ratio", "必填,请填写出租标题": "Required,please Fill in the rental title", "押一付三": "Paid one to pay three", "必填,请填写租金": "Required,please fill in the rent", "必填,请填写业主电话": "Required ,please fill in the owner phone number", "必填,请填写业主名称": " required ,please fill in the owner name", "押一付六": "deposit one to pay six", "备注": "remarks", "出租标题": "Rental title", "必填": "required", "预付类型": "prepaid type", "选填,请填写备注": "optional,please fill in the remarks", "业主名称": "The name of the owner", "必填,请填写入住时间": "required,please fill in the check-in time", "取消": "cancel", "出租配置": "rental configuration", "房屋出租": "Housing rental", "押一付一": "Pay 1 by deposit", "业主电话": "The owner phone", "租金": "Rent", "入住时间": "Check-in time" },
"addParkingBox": { "是否收费": "Whether there is a charge", "否": "No", "添加": "Add", "临时车进场": "Temporary car entry", "备注": "Remarks", "必填": "required", "停车场": "parking lot", "是": "yes", "岗亭名称": "postbox name", "黄牌车进场": "yellow-licensed cars approaching", "必填,请填写备注": "Required,please fill in the remarks", "取消": "Cancel", "必填,请填写岗亭名称": "Required,please fill in the name of the booth", "蓝牌车进场": "Blue car entering the field" },
"viewResourceStoreSpecificationInfo": { "物品规格信息": "Item specification information", "添加物品规格": "Add item specification", "选择物品规格": "Select Item Specifications", "规格名称": "Specification Name", "商品类型": "Commodity Type", "描述": "Description" },
"deleteSysDocument": { "确定删除文档": "Delete Document", "请确认您的操作": "Please confirm your operation", "点错了": "Wrong click", "确认删除": "Confirm deletion" },
"purchaseApprovers": { "必填,请填写所属公司": "Required,please fill in the company", "必填,请填写所属员工": "Required,please fill in the employee", "所属公司": "Affiliated company", "必填,请选择下一处理人": "required,please select the next processor", "员工": "employee", "所属部门": "department", "审批人信息": "approver information", "必填,请填写所属部门": "Required,please fill in the department" },
"chooseMachineAuth": { "查询": "query", "选择": "select", "操作": "operation", "开始时间": "Start time", "输入员工门禁授权名称": "Enter employee access control authorization name", "员工": "Employee", "设备": "Device", "结束时间": "End Time", "选择员工门禁授权": "Select employee access control authorization" },
"importOwnerRoom": { "下载模板": "Download template", "选择文件": " Select file", "准备数据后": "After preparing data", "房产导入": "Property Import", "房产模板": "Property Template" },
"deleteInspectionItemTitle": { "确定删除题目": "Delete the title", "请确认您的操作": "Please Confirm your operation", "点错了": "click wrong", "确认删除": "confirm delete" },
"chooseBusinessDatabus": { "查询": "query", "选择": "select", "业务类型": "Business Type", "输入": "Input", "适配器": "Adapter", "操作": "Operation", "顺序": "Order" },
"addSystemGoldSetting": { "普通金币": "Normal Gold Coin", "状态": "Status", "停用": " Disabled", "名称": "name", "使用价格": "use price", "必填": "required", "有效期": "valid", "必填,请填写购买价格": "required,please fill in the purchase price", "必填,请填写有效期": "required,please fill in the validity period", "必填,请填写名称": "required,please fill in the name", "必填,请填写使用价格": "Required,please fill in the use price", "启用": "Enable", "购买价格": "Purchase price", "添加金币设置": "Add gold coin setting", "取消": "Cancel", "类型": "Type" },
"editRoom": { "四厅": "Four Room", "必填,请填写房屋编号": "required,please fill in the house number", "必填,请选择房屋状态": "Required,please select the housing status", "单元": "Unit", "必填,请填写租金": "Required,please fill in the rent", "七室": " Seven rooms", "两室": "two rooms", "已装修": "renovated", "备注": "remarks", "一厅": "one hall", "必填": "required", "房屋类型": "House type", "装修中": "Renovation", "八室": "Eight rooms", "请填写算费系数": "Please fill in the calculation coefficient", "三厅": "Three halls", "已入住": "Checked in", "算费系数": "Fee factor", "五室": "Five room", "六室": "Six room", "租金": "rent", "房屋编号": "house number", "室内面积(平方)": "indoor area(square)", "房屋": "house", "房屋楼层": "house floor", "四室": "Four rooms", "房屋状态": "House status", "已交房": "Room delivered", "请填写备注信息": "Please fill in the remarks", "两厅": "Two halls", "修改房屋": "modified houses", "建筑面积": "construction area", "七厅": "seven halls", "必填,请填写房屋建筑面积! 平方": "Required,please fill in the building area! Square", "一室": "One room", "房屋户型": "Eight halls", "八厅": "Three rooms", "三室": "six halls", "六厅": "housing unit", "房屋单元": "idle", "空闲": "five halls", "五厅": "cancel", "取消": "Not occupied", "未入住": "required,please fill in the floor of the house", "必填,请填写房屋楼层": "leased", "已出租": "Required,please fill in the indoor area! Square", "必填,请填写室内面积! 平方": "" },
"inspectionTaskTransfer": { "流转说明": "transfer description", "流转对象": "transfer object", "添加": "add", "必填,请填写转赠说明": "required ,please fill in the transfer instructions" },
"editContractPartya": { "修改": "modify", "甲方联系人": "Party A contact", "必填,请填写甲方": "required,please Fill in Party A", "联系电话": "Contact number", "取消": "Cancel", "甲方": "Party A", "必填,请填写甲方联系人": "Required,please Fill in the contact of Party A", "必填,请填写联系电话": "required,please fill in the contact number" },
"viewFeeDetail": { "缴费结束时间": "payment end time", "应收金额": "Amount receivable", "缴费时间": "Payment time", "缴费起始时间": "Payment start time", "状态": "Status", "年缴费历史": "Annual payment history", "实收金额": "Actual amount received", "备注": "Remarks", "周期": "Period" },
"viewSelectParkingSpace": { "平方米": "square meter", "车位状态": "Parking status", "车位": "Parking", "选择车位": "Select parking", "停车位信息": "Parking information", "备注": "Remark", "编号": "Number", "停车场": "Parking lot", "面积": "area" },
"viewShopAuditInfo": { "地域编码": "regional code", "退货地址": "return address", "不通过意见": "Not approved", "开店类型": "Store type", "拒绝": "Reject", "同意": "Agree", "店铺类型": " Store review information", "店铺审核信息": "shop", "店铺": "shipping address", "发货地址": "audit opinion", "审核意见": "please review", "请审核": " Cancel", "取消": "changed to", "变更为": "application reason", "申请原因": "return phone number", "退货联系电话": "required,please Fill in the review comments", "必填,请填写审核意见": "audit result", "审核结果": "audit status", "审核状态": "shop name", "店铺名称": "shop description", "店铺描述": "Return contact", "退货联系人": "" },
"editCommunityArea": { "地区": "area", "小区名称": "community name", "城市编码": "city code", "小区地址": "community address", "必填,请填写小区面积": "Required,please fill in the area of the community", "修改小区": "Modify the community", "联系方式": "Contact information", "小区面积": "Residential area", "必填,请填写联系方式": "required,please fill in the contact information", "小区地标": "community landmark" },
"viewServiceProvideInfo": { "服务编码": "service code", "输出模板": "output template", "服务提供信息": "service providing information", "存储过程": "stored procedure", "参数": "parameter", "添加服务提供": "add Service provider", "实现方式": "implementation", "选择服务提供": "select service provider", "描述": "description", "服务名称": "service name" },
"roomToExamine": { "房屋": "House", "装修审核": "Renovation review", "审核意见": "Review opinion", "审核通过": "Review approved", "状态": "Status", "必填,请填写房屋": "required,please fill in the house", "请填写审核意见": "please fill in the review comments", "必填": "review failed", "审核不通过": "" },
"deleteBasePrivilege": { "确定删除权限": "Delete permission", "请确认您的操作": "Please confirm your operation", "点错了": "Wrong click", "确认删除": "Confirm delete" },
"chooseFeePrintPage": { "查询": "query", "小区": "community", "选择": "select", "操作": "operation", "收据": "receipt", "名称": "Name", "选择收据模板": "Select receipt template", "输入收据模板名称": "Enter receipt template name", "收据页面": "Receipt page" },
"deletePayFeeConfigDiscount": { "请确认您的操作": "Please confirm your operation", "确定删除费用折扣": "Delete fee discount", "点错了": "Click wrong", "确认删除": " Confirm deletion" },
"addMenuView": { "配置菜单": "Configuration Menu", "序列": "Sequence", "菜单显示": "Menu Display", "显示菜单": "Display Menu", "必填,请填写菜单地址": "Required,please fill in the menu address", "菜单名称": "menu name", "必填": "required", "描述": "description", "选填,请填写描述": "optional,please fill in the description", "不显示菜单": "do not display the menu", "必填,请填写序列": "required,please fill in the sequence", "必填,请填写菜单名称": "required,please fill in the menu name", "菜单地址": "menu address" },
"chooseMenuGroup": { "输入菜单组名称": "input menu group name", "查询": "query", "组名称": "group name", "选择": "select", "序列": "sequence", "操作": " Operation", "组": "Group", "归属商户": "Attributable Merchant", "标签": "Label", "选择菜单组": "Select Menu Group", "描述": "Description" },
"deleteWechatMenu": { "确定删除公众号菜单": "Delete the official account menu", "请确认您的操作": "Please confirm your operation", "点错了": "Click Wrong", "确认删除": "Confirm to delete" },
"addReportCustomComponentFooter": { "选填,请填写描述": "Optional,please fill in the description", "必填,请填写名称": "Required ,please fill in the name", "查询方式": "query method", "添加": "add", "取消": "cancel", "名称": "name", "必填": "required", "选填,请填写执行": "Optional,please fill in and execute", "描述": "Description" },
"addPropertyCommunity": { "开通小区": "Activate a community", "功能": "Function", "添加": "Add", "取消": "Cancel", "全部": "All" },
"deleteProduct": { "确定删除改商品": "Delete Product", "请确认您的操作": "Please confirm your operation", "点错了": "click wrong", "确认删除": "confirm delete" },
"editCommunity": { "附近地标": "nearby landmark", "必填,请填写每月单价(元)": "Required,please fill in the monthly unit price (yuan)", "小区名称": "community name", "缴费周期": "payment period", "每月单价": "Monthly unit price", "小区地址": "Residential address", "必填,请填写缴费周期(月)": "Required,please fill in the payment period (month)", "取消": "Cancel", "修改小区": " Modify community", "必填,请填写小区名称": "required,please fill in community name", "必填,请填写小区地址": "required,please fill in community Address", "必填,请填写附近地标": "required,please fill in the nearby landmark" },
"addRepairSetting": { "报修设置类型": "repair setting type", "选填,请填写说明": "Optional,please fill in the description", "添加": "Add", "收费金额": "Charge Amount", "回访设置": "Return visit setting", "说明": "Description", "必填": "required", "必填,请填写收费金额": "required,please fill in the amount of charge", "收费": "charge", "必填,请填写类型名称": "required,please fill in the type name", "公共区域": "public area", "类型名称": "type name", "指派": "assignment", "不回访": "no return visit", "不收费": "no charge", "已评价不回访": "Evaluated but not return visit", "派单方式": "Order dispatch method", "否": "No", "保洁单": "Cleaning order", "回访": "Return visit", "轮训": "Rotation training", "是": "Yes", "收费情况": "Charge status", "取消": "Cancel", "维修单": "Maintenance order", "抢单": "Order grab" },
"viewSmsConfigInfo": { "短信业务": "SMS service", "短信配置信息": "SMS configuration information", "添加短信配置": "Add SMS configuration", "备注": "Remarks", "选择短信配置": " Select SMS Configuration", "短信签名": "SMS Signature", "短信商": "SMS Provider", "短信秘钥": "SMS Key", "访问": "Access", "日志": " Log", "短信模板": "SMS Template", "区域": "Area" },
"addDemo": { "用例名称": "Use case name", "必填,请填写用例名称": "Required ,please fill in the use case name", "用例值": "use case value", "必填,请填写用例值": "required,please fill in the use case value", "取消": "cancel", "可填,请填写用例备注": "Can be filled,please fill in use case remarks", "备注": "remarks", "添加用例": "add use case" },
"editShopType": { "是否默认": "is it default", "必填,请填写显示序号": "Required,please fill in the display serial number", "是否展示": "whether to display", "否": "no", "显示序号": "display serial number", "必填,请填写店铺类型": "required,please fill in the store type", "自定义": "custom", "备注": "remarks", "店铺类型": "store type", "必填": "Required", "是": "Yes", "选填,请填写备注": "Optional,please fill in the remarks", "取消": "Cancel", "修改店铺类型": "Modify store type", "默认": "default" },
"viewMenuCatalogInfo": { "选择菜单目录": "select menu catalog", "商户类型": "merchant type", "图片": "picture", "顺序": " Sequence", "是否显示": "whether to display", "名称": "name", "菜单目录信息": "menu directory information", "页面": "page", "添加菜单目录": "add menu Directory" },
"viewActivitiesInfo": { "添加活动": "Add activity", "活动类型": "activity type", "活动标题": "activity title", "开始时间": "start time", "活动内容": "activity content", "选择活动": "select activity", "活动信息": "event information", "结束时间": "end time", "头部照片": "head photo" },
"deleteCouponDetail": { "请确认您的操作": "Please confirm your operation", "确定删除商家购买记录": "Delete the purchase record of the merchant", "点错了": "Wrong click", "确认删除": "Confirm to delete" },
"viewReportCustomInfo": { "报表信息": "report information", "排序": "sort", "选项标题": "option title", "报表编号": "report number", "添加报表": "add Report", "选择报表": "Select Report", "描述": "Description", "组编号": "Group ID" },
"chooseApplicationKey": { "钥匙申请": "Key Application", "操作": "operation", "开始时间": "start time", "性别": "gender", "查询": "query", "姓名": "name", "选择": "select", "手机号": "Mobile phone number", "输入钥匙申请名称": "Enter key application name", "选择钥匙申请": "Select key application", "年龄": "Age", "身份证号": "ID card Number", "结束时间": "end time", "用户类型": "user type" },
"addPropertyCompany": { "必填,请填写地标": "required,please fill in the landmark", "电话": " Phone", "添加": "Add", "名称": "Name", "温馨提示": "Warm reminder", "全部": "All", "必填,请填写电话": "Required Fill in,please fill in the phone number", "开通小区": "Open a community", "必填,请填写名称": "Required,please fill in the name", "必填,请填写成立日期": "Required,please fill in Fill in the establishment date", "功能": "function", "必填,请填写公司法人": "required,please fill in the company legal person", "成立日期": "establishment date", "取消": "cancel", "地址": "Address", "公司法人": "Company legal person", "必填,请填写地址": "required,please fill in the address", "地标": "landmark" },
"addComponentCondition": { "参数": "parameter", "提示": "prompt", "添加": "add", "名称": "name", "文本框": "textbox", "必填": "required Fill in", "描述": "description", "必填,请填写排序": "required,please fill in the sort", "排序": "sort", "选填,请填写描述": "optional,Please fill in the description", "必填,请填写名称": "required,please fill in the name", "日期": "date", "取消": "cancommunityation", "必填,请填写提示": "required Fill,please fill in the prompt", "必填,请填写参数": "required,please fill in the parameters", "类型": "type" },
"chooseApplyRoomDiscount": { "输入房屋折扣申请名称": "Enter the housing Discount application name", "房屋": "House", "操作": "Operation", "开始时间": "Start Time", "折扣": "Discount", "申请": "Apply", "选择房屋折扣申请": " Select housing discount application", "申请电话": "application phone", "查询": "query", "选择": "select", "申请类型": "application type", "申请说明": "application description", "结束时间": "end time", "申请人": "applicant" },
"chooseCommunitySetting": { "查询": "query", "选择小区设置": "select community setting", "配置名称": "Configuration name", "选择": "Select", "配置取值": "Configuration value", "输入小区设置名称": "Enter community setting name", "配置": "Configuration", "操作": "operation", "小区设置": "community setting", "备注": "remark", "配置类型": "configuration type" },
"simplifyOwnerTransactionCar": { "设备编码": "device code", "指令": "command", "同步": "sync", "对象名称": "object name", "同步时间": "sync time", "操作": "operation", "重新同步": "Resync", "对象类型": "object type", "状态": "status", "说明": "description" },
"viewRentingConfigInfo": { "租聘设置信息": "renting setting information", "添加租聘设置": "Add lease setting", "物业分账比率": "property share ratio", "选择租聘设置": "select lease setting", "收费公式": "charge formula", "服务费": "Service fee", "运营分账比率": "Operational share ratio", "租客收费比率": "Tenant charge ratio", "代理商分账比率": "Agent share ratio", "租聘类型": "Rent Type", "业主收费比率": "Owner Charge Rate" },
"deleteResourceSupplier": { "确定删除供应商": "Delete Supplier", "请确认您的操作": "Please confirm your operation", "点错了": "Wrong click", "确认删除": "Confirm deletion" },
"chooseRepairSetting": { "查询": "Query", "设置": "Settings", "选择": "Select", "派单方式": "Order dispatch", "操作": "Operation", "选择报修设置": "Select repair report setting", "输入报修设置名称": "Enter the repair setting name", "类型名称": "type name", "说明": "description" },
"editUnit": { "无": "none", "修改单元": "modify Unit", "必填,请填写单元总层数": " required,please fill in the total number of floors of the unit", "请填写备注信息": "Please fill in the remarks", "有": "Yes", "建筑面积": "Building area", "备注": "Remarks", "必填,请填写建筑面积": " Required,please fill in the building area", "单元编号": "unit number", "必填": "required", "必填,请填写单元编号": "required,please fill in the unit number", "电梯": "elevator", "取消": "cancel", "总层数": "total floors" },
"configParkingSpaceFee": { "编辑": "edit", "必填,请填写费用,如": "Required,please fill in the fee,such as", "取消": "Cancel" },
"deletePrivilege": { "确认是否删除": "Confirm whether to delete", "请确认您的操作": "Please confirm Your operation", "点错了": "clicked wrong", "确认删除": "confirm deletion" },
"chooseApplyRoomDiscountType": { "查询": "query", "选择": "select", "操作": "Operation", "选择优惠申请类型": "Select the type of preferential application", "输入优惠申请类型名称": "Enter the name of the preferential application type", "类型名称": "Type name", "类型描述": "Type description", "类型": "Type" },
"parkingAreaControlBlackCar": { "名单": "List", "开始时间": "Start time", "车牌号": "License plate number", "必填,请填写车牌号": "Required,please fill in the license plate number", "结束时间": "end time", "停车场": "parking lot" },
"chooseResourceStaff": { "是否是固定物品": "Is it a fixed item", "请选择仓库": "Please select a warehouse", "物品类型": "Item type", "最小计量总数": "Minimum measurement total", "仓库": "Warehouse", "选择物品管理": "Select item management", "输入物品管理名称": "Enter item management name", "查询": "query", "物品名称": "item name", "物品库存": " Item inventory", "物品编码": "item code", "请选择二级分类": "please select a secondary category", "物品价格": "item price", "请选择物品类型": "please Select item type" },
"editStoreAttr": { "商户属性必填": "Merchant attribute required", "取消": "Cancel", "修改商户信息": "Modify Merchant Information" },
"addNotice": { "公告类型": "announcement type", "必填,请填写标题": "required,please fill in the title", "开始时间": "start time", "必填": "required", "必填,请填写开始时间": "Required,please fill in the start time", "员工通知": " Employee notice", "必填,请填写公告内容": "required,please fill in the announcement content", "业主通知": "owner notice", "小区通知": "community notice", "取消": "cancel", "公告内容": "Announcement content", "标题": "Title", "添加公告": "Add announcement" },
"viewServiceImplInfo": { "添加服务实现": "Add service implementation", "业务类型": "Business type", "重试次数": "Number of retries", "选择服务实现": "Select service implementation", "服务实现信息": "Service implementation information", "调用类型": " Call type", "业务名称": "business name", "调用地址": "call address", "描述": "description", "服务实现": "service implementation", "超时时间": "timeout" },
"editPrestoreFee": { "房屋": "House", "状态": "Status", "水费": "Water", "电费": "Electricity", "备注": "Remark", "必填": "Required", "预付金额": "Prepaid Amount", "预付类型": "Prepaid Type", "已使用": "Used", "预存对象类型": "Prepaid Object Type", "必填,请填写备注": "required,please fill in the remarks", "车位": "parking space", "必填,请填写预付金额": "required,please fill in the prepaid amount", "必填,请填写房屋": "Required,please fill in the house", "取消": "Cancel", "未使用": "Unused", "修改预付费用": "Modify prepaid fee" },
"deleteOwnerRepair": { "请确认您的操作": "Please confirm your operation", "确定删除业主报修": "Delete owner repair report", "点错了": "Wrong click", "确认删除": " Confirm delete" },
"simplifyShopsHireLog": { "操作": "operation", "开始时间": "start time", "业主名称": "owner name", "创建时间": "create time", "业主电话": "Owner phone", "结束时间": "end time", "查看费用": "check fee" },
"forceFinishRepair": { "必填,请填写说明": "required,please fill in the description", "强制回单": "Mandatory receipt", "说明": "Description" },
"chooseConvenienceMenus": { "查询": "Query", "选择": "Select", "资产": "Asset", "操作": "operation", "页面路径": "page path", "菜单名称": "menu name", "显示序号": "display serial number", "输入便民服务菜单名称": "input Convenience service menu name", "图片地址": "image address", "备注": "remarks", "选择便民服务菜单": " Select the convenience service menu" },
"breadcrumb": {},
"chooseMenuGroupCatalog": { "查询": "query", "选择": "select", "输入目录组名称": "input directory group name", "菜单组": "Menu Group", "操作": "Operation", "选择目录组": "Select Directory Group", "编号": "Number" },
"roomSelect2": { "请选择房屋": " Please select a house" },
"deleteReportInfoSetting": { "确定删除项目信息": "Delete project information", "请确认您的操作": "Please confirm your operation", "点错了": "Wrong click", "确认删除": "Confirm to delete" },
"chooseComplaint": { "操作": "Operation", "输入投诉建议名称": "Enter the complaint suggestion name", "投诉人": "Complainant", "投诉类型": "complaint type", "投诉内容": "complaint content", "查询": "query", "选择": "select", "投诉状态": "complaint status", "投诉电话": "Complaint phone number", "选择投诉建议": "Select complaint suggestion", "投诉": "Complaint", "商户": "Merchant", "房屋编号": "House ID" },
"deleteComponentCondition": { "确定删除报表组件条件": "Delete report component condition", "请确认您的操作": "Please confirm your operation", "点错了": "Wrong click", "确认删除": "Confirm delete" },
"exportFeeImportExcel": { "模板导出": "template export", "楼栋": "building", "全部": "all", "费用项": "expense item" },
"chooseInspectionPlan": { "计划名称": "plan name", "操作": "operation", "开始时间": "start time", "状态": "status", "执行人员": "executor", "巡检路线": "inspection route", "巡检计划名称": "inspection plan name", "备注": "remarks", "签到方式": "sign-in method", "输入巡检计划名称": "Enter the name of the inspection plan", "查询": "query", "选择": "select", "执行周期": "execution cycle", "结束时间": "end time", "选择巡检计划": "Select inspection plan" },
"deleteResourceStore": { "确定删除物品管理": "Delete item management", "请确认您的操作": "Please confirm your operation", "点错了": "Click wrong", "确认删除": "Confirm delete" },
"editAttendanceClasses": { "星期二": "Tuesday", "修改": " Modify", "星期六": "Saturday", "打卡范围": "Pick-in range", "必填,请填写打卡范围(分钟)": "Required,please fill in the punch-in range(minutes)", "打卡类型": "Pick-in type", "必填,请填写迟到范围": "required,please fill in the lateness range", "打卡次数": "check-in times", "星期三": "Wednesday", "早退范围": "Early departure range", "星期日": "Sunday", "迟到范围": "late range", "星期一": "Monday", "星期四": "Thursday", "班次名称": "shift name", "星期五": "Friday", "必填,请选择打卡类型": "Required,please select the punch type", "必填,请填写早退范围": "Required,please fill in the early departure range", "必填,请填写班次名称": "Required,please fill in the shift name", "必填,请选择打卡次数": "Required ,please select the number of punches", "打卡规则": "Pick-in rule" },
"chooseMainCategory": { "查询": "query", "选择": "select", "目录类别": "catalog category", "操作": "operation", "开始时间": "start time", "选择商品目录": "Select product catalog", "目录名称": "Catalog name", "目录编号": "Catalog ID", "结束时间": "End time", "描述": "Description", "输入商品目录名称": "Enter product catalog name" },
"editRepairTypeUser": { "状态": "Status", "变更": "Change", "选填,请填写说明": "Optional,please fill in Description", "取消": "Cancel", "离线": "Offline", "说明": "Description", "在线": "Online", "必填": "Required" },
"deleteMachineTranslate": { "请确认您的操作": "Please confirm your operation", "确定删除设备同步": "Delete device synchronization", "点错了": "Wrong click", "确认删除": "Confirm Delete" },
"addReportInfoSettingTitle": { "选项": "option", "增加选项": "add option", "题目": "title", "多选": "multiple choice", "顺序": " Sequence", "题目类型": "Question type", "必填": " Required", "必填,请填写顺序": "Required,please fill in the order", "删除选项": "Delete option", "必填,请填写问卷题目": "required,please fill in the questionnaire title", "取消": "cancel", "必填,请填写选项内容": "required,please fill in the options", "简答题": "Short answer question", "添加题目": "Add question", "单选": "single choice" },
"bpmnjsInit": {},
"editCar": { "修改": "modify", "起租时间": "Lease start time", "颜色": "Color", "必填,请填写车品牌,如 宝马X6": "Required,please fill in the car brand,such as BMW X6", "请填写备注信息": "Please fill in the remarks", "备注": "remarks", "必填,请填写车颜色,如白色": "required,please fill in the car color,such as white", "车品牌": "Car brand", "结租时间": "Lease settlement time", "取消": "Cancel", "车牌号": "License plate number", "必填,请填写车牌号": "Required ,please fill in the license plate number", "必填,请填写起租时间": "required,please fill in the starting time", "必填,请选择类型": "required,please select the type", "必填,请填写结租时间": "Required,please fill in the closing time", "车类型": "Car type" },
"recallAuditFinishCommunity": { "确认撤回": "Confirm withdrawal", "确定撤回审核": " Confirm to withdraw the review", "请确认您的操作": "Please confirm your operation", "点错了": "Wrong click" },
"editPropertyRightRegistrationDetail": { "必填,请填写材料类型": "required,please fill in the type of material", "维修基金图片上传": "repair fund image upload", "请选择契税是否缴纳": "please choose whether to pay the deed tax", "否": "no", "购房合同图片上传": "Purchase contract picture upload", "契税是否缴纳": "Deed tax paid", "身份证照片上传": "ID card photo upload", "契税证明图片上传": "Deed tax certificate picture Upload", "是": "Yes", "维修基金是否缴纳": "Whether the maintenance fund is paid", "修改房屋产权详情": "Modify the property rights details", "请选择维修基金是否缴纳": " Please select whether the maintenance fund is paid", "材料类型": "Material type" },
"chooseSingleResource": { "请选择商品": "Please select the item", "选择物品": "Select item", "规格": "Specification", "请选择商品类型": "Please select the product type", "二级分类": "Secondary classification", "价格范围": "Price range", "商品价格": "Commodity price", "商品": "Commodity", "自定义价格": "Custom Price", "请选择二级类型": "Please select a secondary type", "商品数量": "Quantity of Commodity", "商品名": "commodity name", "必填,请填写商品名": "required,please fill in the product name", "必填,请填写商品价格": "required,please fill in the product price", "商品类型": "Commodity type" },
"viewMenuInfo": { "序列": "sequence", "菜单显示": "menu display", "菜单信息": "menu information", "选择菜单": "select Menu", "菜单名称": "menu name", "添加菜单": "add menu", "菜单地址": "menu address", "描述": "description" },
"importMeterWaterFee": { "下载模板": "Download template", "抄表类型": "meter reading type", "费用类型": "cost type", "选择文件": "select file", "水费": "water bill", "导入模板": "Import template", "电费": "electricity bill", "必填": "required", "抄表导入": "meter reading import", "煤气费": "gas bill", "收费项目": "Charge item" },
"todayAttendanceDetail": { "打卡时间": "Check-in time", "状态": "Status", "抓拍": "Snapshot", "考勤详情": "Attendance Details", "名称": "name", "考勤时间": "attendance time" },
"addMenu": { "序列": "sequence", "菜单显示": "menu display", "显示菜单": "display Menu", "楼编号": "Building ID", "必填,请填写菜单地址": "Required,please fill in the menu address", "菜单名称": "Menu name", "楼名称": "Building name", "备注": "remarks", "必填": "required", "描述": "description", "选填,请填写描述": "optional,please fill in the description", "必填,请填写名称": "required,please fill in the name", "不显示菜单": "do not display the menu", "必填,请填写序列": "required,please fill in the sequence", "必填,请填写菜单名称": "required,please fill in the menu name", "必填,请填写编号": "required,please fill in the number", "取消": "cancel", "添加菜单": "add menu", "菜单地址": "Menu address", "可填,请填写备注": "Can be filled,please fill in the remarks" },
"editPropertyRightRegistration": { "房屋": "House", "楼栋": "Building", "修改房屋产权": "Modify housing property rights", "单元": "Unit", "必填,请填写身份证号": "Required,please fill in ID number", "联系方式": "Contact information", "必填,请填写姓名": "required,please fill in name", "必填": "required", "必填,请填写联系方式": "required,please fill in contact Method", "号楼": "Name", "姓名": "Address", "地址": " ID No.", "身份证号": "Required,please fill in the address", "必填,请填写地址": "" },
"chooseInspectionItem": { "查询": "query", "选择": "select", "操作": "operation", "选择巡检项目": "select inspection Item", "输入巡检项目名称": "Enter the name of the inspection project", "备注": "Prepare Note", "巡检项目": "inspection item", "编号": "number" },
"editMenuGroupCatalog": { "菜单组": "menu group", "必填,请填写菜单组": " Required,please fill in the menu group", "取消": "Cancel", "修改目录组": "Modify directory group" },
"deleteOwnerCar": { "确认是否删除": "Confirm to delete", "请确认您的操作": "Please confirm your operation", "点错了": "Wrong click", "确认删除": "Confirm deletion" },
"viewJunkRequirementInfo": { "旧货信息": "Junk Information", "添加旧货": "Add used goods", "状态": "Status", "巡检计划": "Inspection plan", "选择旧货": "Select used goods", "联系方式": "Contact information", "参考价格": "reference price", "内容": "content", "发布人": "publisher", "类别": "category" },
"commonBottom": {},
"deleteFeeManualCollectionDetail": { "请确认您的操作": "Please confirm your operation", "确定删除托收明细": "Delete collection details", "点错了": "Click wrong", "确认删除": "Confirm to delete" },
"deleteApplyRoomDiscountType": { "请确认您的操作": "Please confirm your operation", "确定删除优惠申请类型": "Delete the discount application type", "点错了": "Click wrong", "确认删除": "Confirm delete" },
"addQuestionAnswer": { "员工自评": "Employee self-assessment", "员工投票": "Employee vote", "开始时间": "Start time", "业主投票": "Owner vote", "问卷名称": "Questionnaire name", "添加": "Add", "问卷类型": "Questionnaire type", "备注": "Remarks", "必填": "required", "必填,请填写问卷名称": "required,please fill in the questionnaire name", "必填,请填写开始时间": "required,please fill in Start time", "选填,请填写备注": "optional,please fill in the remarks", "业主问卷": "owner questionnaire", "必填,请填写结束时间": "required,please fill in the end time", "结束时间": "End time" },
"editInspectionItem": { "修改": "Modify", "必填,请填写巡检项目": "Required,please fill in the inspection item", "必填,请填写备注": "Required,please fill in the remarks", "取消": "Cancel", "备注": "Remarks", "巡检项目": "Inspection items" },
"editRepairSetting": { "修改": "Modify", "报修设置类型": "Repair Setting type", "选填,请填写说明": "optional,please fill in the description", "收费金额": "charge amount", "回访设置": "return visit setting", "说明": "description", "必填": "charge", "必填,请填写收费金额": "required,please fill in the charge amount", "收费": "required Fill in,please fill in the type name", "必填,请填写类型名称": "public area", "公共区域": "type name", "类型名称": "assignment", "指派": "no return visit", "不回访": "No charge", "不收费": "No return visit after evaluation", "已评价不回访": "Order dispatch method", "派单方式": "No", "否": "Cleaning order", "保洁单": "Return visit", "回访": "Rotation training", "轮训": "Yes", "是": "Charge status", "收费情况": "Cancel", "取消": "Maintenance order", "维修单": "Order grab", "抢单": "" },
"document": {},
"addInspectionPlan": { "必填,请填写计划名称": "Required,please fill in the plan name", "计划名称": "plan name", "开始时间": "start time", "状态": "status", "巡检路线": "inspection route", "备注": "remark", "签到方式": "check-in Method", "必填": "required", "必填,请填写开始时间": "required,please fill in the start time", "选填,请填写备注": "optional,please fill in the remarks", "必填,请填写结束时间": "required,please fill in the end time", "执行周期": "execution cycle", "添加巡检计划": "add inspection plan", "结束时间": "End Time" },
"viewPayFeeConfigDiscountInfo": { "折扣名称": "Discount Name", "选择费用折扣": "Select Fee Discount", "添加费用折扣": "Add Fee Discount", "费用折扣信息": "Expense discount information" },
"deleteJunkRequirement": { "请确认您的操作": "Please confirm your operation", "确定删除旧货": "Delete junk goods", "点错了": " Wrong click", "确认删除": "Confirm delete" },
"choosePrestoreFee": { "查询": "Query", "房屋": "House", "选择": "Select", "预存对象类型": "Pre-stored object type", "操作": "Operation", "状态": "Status", "选择预付费用": "Select prepaid fee", "输入预付费用名称": "Enter prepaid fee name", "备注": "Remark", "预付费用": "Prepaid Fee", "预付金额": "Prepaid Amount", "预付类型": "Prepaid Type" },
"deleteMeterType": { "确定删除抄表类型": "Yes Definite delete meter reading type", "请确认您的操作": "Please confirm your operation", "点错了": "Wrong click", "确认删除": "Confirm deletion" },
"deletePurchaseApply": { "确定取消申请": "Confirm the cancommunityation of the application", "请确认您的操作": "Please confirm your operation", "确认取消": "Confirm the cancommunityation", "点错了": "Wrong click" },
"editProduct": { "商品图片": "Product Image", "商品详情": "Product Details", "商品状态": "Product Status", "规格名称": "Specification Name", "商品扩展": "Commodity expansion", "必填,请填写关键词,多个关键词用": ",please fill in the keywords,multiple keywords are used", "必填": "required", "删除": "Delete", "必填,请填写商品简介": "required,please fill in the product introduction", "单位": "unit", "选填": "optional", "市场价": "Market price", "关键词": "Keyword", "商品简介": "Product introduction", "规格值": "Specification value", "默认规格": "Default specification", "选填,请填写单位": "optional,please fill in the unit", "会员价格": "member price", "未上架": "not on the shelf", "销量": "sales", "商品规格": "product specification", "商品信息": "Product Information", "操作": "Operation", "上架": "On Shelf", "成本价": "Cost Price", "商品轮播": "Product Carousel", "库存": "stock", "排序": "sort", "商品封面": "product cover", "商品名称": "product name", "商品分组": "product group", "必填,请填写公告内容": "required,please fill in the announcement content", "选填,请填写排序": "optional,please fill in the order", "取消": "cancel", "必填,请填写商品名称": "Required,please fill in the product name", "金额": "Amount" },
"viewPropertyRightRegistrationInfo": { "房屋": "House", "姓名": "Name", "添加房屋产权": "Add house Property rights", "房屋产权信息": "House property rights information", "联系方式": "Contact information", "地址": "Address", "身份证号": "ID card number", "选择房屋产权": "Select property rights" },
"editTempCarFeeConfig": { "必填,请填写标准名称": "Required,please fill in the standard name", "开始时间": "Start time", "标准名称": "Standard Name", "车辆类型": "car type", "必填": "required", "家用小汽车": "family car", "停车场": "parking lot", "必填,请填写开始时间": "required,please fill in the start time", "必填,请填写停车场": "required,please fill in the parking lot", "电动车": "electric car", "修改标准": "modification standard", "三轮车": "tricycle", "必填,请填写结束时间": "Required,please fill in the end time", "取消": "Cancel", "收费规则": "Charging rules", "结束时间": "End time" },
"deletePrivilegeGroup": { "请确认您的操作": "Please confirm your operation", "删除权限组同时会删除权限组下的所有权限": "Deleting a permission group will also delete all permissions under the permission group", "点错了": "Wrong click", "确认删除": "Confirm to delete" },
"addInspectionItem": { "选填,请填写备注": "Optional,please fill in remarks", "必填,请填写巡检项目": "Required Fill in,please fill in the inspection items", "添加": "Add", "取消": "Cancel", "备注": "Remarks", "巡检项目": "Inspection items" },
"indexArrears": { "待办已办": "to be done" },
"simplifyOwnerAccessContol": { "设备编码": "device code", "指令": "command", "设备名称": "device name", "对象名称": "object name", "同步时间": "sync time", "操作": "operation", "重新同步": "resync", "对象类型": "object type", "状态": "Status", "说明": "Description" },
"applyRoomDiscountRecord": { "房屋": "House", "上传图片": "Upload Image", "上传视频": "Upload Video", "状态": "status", "否": "no", "必填,请填写房屋": "required,please fill in the house", "备注": "remarks", "请填写备注": "please fill in the remarks", "验房跟踪": "House inspection tracking", "请选择是否违规": "Please choose whether to violate the rules", "是否违规": "Whether it violates the rules", "是": "Yes" },
"addBusinessDatabus": { "状态": "Status", "停用": "Deactivated", "顺序": "Order", "添加": "Add", "名称": "Name", "在用": "Used", "必填": "required", "必填,请填写顺序": "required,please fill in the order", "业务类型": "business type", "必填,请填写适配器": "required Fill in,please fill in the adapter", "必填,请填写名称": "required,please fill in the name", "适配器": "adapter", "必填,请填写业务类型": "required,please fill in the business Type" },
"editInspectionPlan": { "必填,请填写计划名称": "required,please fill in the plan name", "计划名称": "plan name", "开始时间": "Start time", "状态": "status", "巡检路线": "inspection route", "备注": "remark", "签到方式": "sign-in method", "必填": "required", "必填,请填写开始时间": "required,please fill in the start time", "选填,请填写备注": "optional,please fill in the remarks", "修改巡检计划": "Modify inspection plan", "必填,请填写结束时间": "required,please fill in the end time", "执行周期": "execution cycle", "结束时间": "end time" },
"addClueAttr": { "目前进展情况": "Current progress", "添加跟进": "Add follow-up", "取消": "Cancel", "选填,请填写下一步推进计划": " Optional,please fill in the next promotion plan", "必填,请填跟进时间": "required,please fill in the follow-up time", "下一步推进计划": "next promotion plan", "跟进时间": "Follow-up time", "必填,请填写目前进展情况": "required,please fill in the current progress" },
"addMainCategory": { "开始时间": "start time", "添加": "Add", "商圈": "business district", "目录名称": "catalog name", "必填": "required", "描述": "description", "必填,请填写开始时间": "required,please fill in the start time", "必填,请填写排序": "required,please fill in the sort", "排序": "sort", "目录类别": "catalog category", "必填,请填写目录名称": "required,please fill in the directory name", "必填,请填写描述": "required,please fill in the description", "服务": "service", "必填,请填写结束时间": "required,please fill in the end time", "取消": "cancel", "结束时间": "end time" },
"viewCouponDetailInfo": { "购买数量": "purchase quantity", "记录": "record", "优惠券": "coupon", "购买价格": "purchase price", "商家购买记录表信息": "merchant purchase record table information", "选择商家购买记录表": "Select merchant purchase record table", "优惠券名称": "coupon name", "面值": "face value", "付款金额": "payment amount", "添加商家购买记录表": "add merchant Purchase record form", "店铺": "shop", "有效期": "validity" },
"memberSelectOwner": { "选择业主": "select owner", "业主": "owner", "名称": " Name", "联系方式": "Contact information", "备注": "Remarks", "年龄": "Age", "添加成员": "Add member", "创建员工": "Create employee", "身份证": "ID card", "业主信息": "owner information", "性别": "gender" },
"editItemNumberStore": { "物品名称": "", "物品库存": "", "选填,请填写描述": "", "选填,请填写物品编码,如终端串码": "", "物品编码": "", "物品价格": "", "必填,请填写物品价格": "", "取消": "", "必填,请填写物品库存": "", "修改物品管理": "", "描述": "", "必填,请填写物品名称": "" },
"validate-tel": { "请输入手机号码": "please enter the mobile phone Number", "请输入验证码": "Please enter the verification code" },
"deleteParkingArea": { "确定删除停车场": "Delete the parking lot", "请确认您的操作": "Please confirm your Operation", "点错了": "Wrong click", "确认删除": "Confirm delete" },
"viewAttrValueInfo": { "显示": "Display", "添加属性值": "Add attribute value", "选择属性值": "select attribute value", "值名称": "value name", "属性值信息": "attribute value information", "值": "value" },
"chooseBusinessTableHis": { "查询": "query", "轨迹": "track", "输入业务轨迹名称": "enter business track name", "业务类型": "business type", "选择": " select", "操作": "operation", "表名": "table name", "选择业务轨迹": "select business track", "备注": "remark", "轨迹表名": "track table Name", "动作": "action" },
"deleteAccountBond": { "请确认您的操作": "Please confirm your operation", "确定删除保证金": "Delete deposit", "点错了": "Click wrong", "确认删除": "Confirm to delete" },
"chooseInspectionRoute": { "选择巡检路线": "Select inspection route", "查询": "Query", "选择": " Select", "检查项数量": "Number of inspection items", "操作": "Operation", "巡检点": "Inspection point", "路线名称": "Route name", "设备数量": "Number of devices", "备注": "Remarks", "输入巡检路线名称": "Enter inspection route name" },
"editMenuCatalog": { "商户类型": "Merchant type", "图片": " Picture", "否": "No", "顺序": "Order", "运营团队": "Operation Team", "是否显示": "Whether to display", "名称": "Name", "必填": "required", "必填,请填写顺序": "required,please fill in the order", "是": "yes", "修改菜单目录": "modify the menu directory", "必填,请填写名称": "required,please fill in the name", "必填,请填写页面": "required,please fill in the page", "取消": "cancel", "必填,请填写图片": "required Fill in,please fill in the picture", "商家": "merchant", "开发团队": "development team", "页面": "page", "物业": "property" },
"deleteShopAudit": { "确定删除店铺审核": "Delete store review", "请确认您的操作": "Please confirm your operation", "点错了": "Wrong click", "确认删除": "Confirm deletion" },
"addPropertyRightRegistration": { "添加房屋产权": "Add property rights", "楼栋": "Building", "单元": "Unit", "请选择契税是否缴纳": "Please choose whether to pay the deed tax", "必填,请填写身份证号": "Required,please fill in ID number", "必填,请填写姓名": "Required,please fill in name", "契税是否缴纳": "Deed tax Whether to pay", "必填": "required", "姓名": "name", "请选择维修基金是否缴纳": "please choose whether to pay the maintenance fund", "地址": "Address", "身份证号": "ID No.", "必填,请选择楼栋": "Required,please select a building", "必填,请填写地址": "Required,please fill in the address", "房屋": "House", "必填,请选择单元": "Required,please select a unit", "维修基金图片上传": "Maintenance fund picture upload", "否": "No", "联系方式": "Contact information", "购房合同图片上传": "Purchase contract picture upload", "必填,请填写联系方式": "Required,please fill in the contact information", "身份证照片上传": "ID card photo upload", "契税证明图片上传": "Deed tax certificate photo upload", "号楼": "Building No.", "是": "Yes", "维修基金是否缴纳": "Whether the maintenance fund is paid" },
"addApplyRoomDiscountType": { "必填,请填写类型名称": "Required,please fill in the type name", "选填,请填写类型描述": "optional ,please fill in type description", "添加": "add", "取消": "cancel", "类型名称": "type name", "类型描述": "type description" },
"parkingAreaControlOwnerCar": { "起租时间": "Starting time", "颜色": "color", "状态": "status", "车场": "parking lot", "车位": "parking space", "房屋号": "house No.", "业主": "Owner", "车牌号": "License plate number", "车辆类型": "Vehicle type", "截止时间": "Deadline", "必填,请填写车牌号": "Required,please fill in the license plate number", "车辆品牌": "Vehicle brand" },
"addFeeManualCollection": { "选填,请填写备注": "Optional,please fill in the remarks", "房屋名称": "House name", "业主名称": " owner name", "必填,请填写业主电话": "required,please fill in the owner phone", "添加": "add", "必填,请填写业主名称": "Required,please fill in the owner name", "必填,请填写房屋面积": "Required,please fill in the house area", "取消": "Cancel", "备注": "Remarks", "业主电话": "Owner phone", "必填,请填写房屋,楼栋": " required ,please fill in house,building", "房屋面积": "house area" },
"chooseTempCarFeeConfig": { "查询": "Inquiry", "选择临时车收费标准": "Select temporary car charging standard", "选择": "Select", "标准": "Standard", "操作": "Operation", "开始时间": "Start time", "标准名称": "Standard name", "车辆类型": "Vehicle type", "输入临时车收费标准名称": "Enter the name of the temporary car charge standard", "收费规则": "Charging rules", "结束时间": "End time", "停车场": "Parking lot" },
"deleteFloor": { "确认是否删除": "Confirm whether to delete", "请确认您的操作": "Please confirm your operation", "点错了": "Wrong click", "确认删除": "Confirm deletion" },
"addPrivilegeGroup": { "选填,请填写权限组描述": "Optional,please fill in the permission group description", "权限组名称": "Permission group name", "取消": "Cancel", "权限组描述": "Permission group description", "添加权限组": "Add permission group", "必填,请填写权限组名称": "Required,please fill in the permission group name" },
"deleteOaWorkflow": { "请确认您的操作": "Please confirm your operation", "确定删除流程实例": "Delete process instance", "点错了": "Wrong click", "确认删除": "Confirm deletion" },
"addInspectionPoint": { "选填,请填写备注": "optional,please fill in remarks", "巡检点名称": "inspection point name", "选填,请填写nfc编码": "optional,please fill in nfc code", "必填,请选择巡检项目": "Required,please select inspection item", "添加": "Add", "巡检类型": "Inspection type", "备注": "Remark", "位置": "Location", "巡检项目": "inspection item", "必填,请填写巡检点名称": "required,please fill in the name of the inspection point", "必填,请选择巡检类型": "Required,please select inspection type", "巡检设备": " inspection equipment" },
"examinePropertyRightRegistration": { "房屋": "house", "审核意见": "audit opinion", "状态": "Status", "必填,请填写房屋": "required,please fill in the house", "产权登记审核": "property registration review", "请填写审核意见": "please fill in the review comments", "必填": "required" },
"chooseContractCollectionPlan": { "查询": "query", "计划": "plan", "选择": "select", "计划名称": "plan name", "操作": "Operation", "选择收款计划": "Select payment plan", "合同号": "Contract number", "备注": "Remark", "输入收款计划名称": "Enter Collection plan name", "费用": "fees" },
"editRentingAppointment": { "必填,请填写租客名称": "required,please fill in the tenant name", "租客电话": "rent Customer number", "选填,请填写预约房屋": "optional,please fill in the reservation room", "修改预约": " Modify appointment", "必填,请填写预约时间": "required,please fill in the appointment time", "备注": "remarks", "租客性别": "tenant gender", "必填,请填写租客电话": "required,please fill in the tenant telephone number", "租客名称": "tenant name", "选填,请填写备注": "optional,please fill in the remarks", "预约房屋": "Reservation room", "女": "Female", "男": "Male", "取消": "Cancel", "必填,请选择租客性别": "Required,please select the gender of the tenant", "预约时间": "Reservation time" },
"simplifyRoomFee": { "应收金额": "Amount receivable", "计费结束时间": "Billing end time", "状态": "Status", "创建费用": "Create fee", "费用类型": "Charge type", "收费中": "Charging", "本期度数": "Current period", "单价": "Unit price", "取消费用": "Cancommunityation fee", "欠费缴费": "Arrears payment", "缴费": "Payment", "说明": "Description", "固定费": "Fixed fee", "收费结束": "Charge end", "批量缴费": "Batch payment", "当前房屋": "Current house", "水电抄表": "Water and electricity meter reading", "算法": "Algorithm", "请选择状态": "Please select the status", "上期度数": "Last period degree", "费用项目": "Expense item", "费用标识": "Expense ID", "欠费小计": " Subtotal of arrears", "临时收费": "temporary charges", "缴费历史": "payment history", "费用变更": "fee change", "建账时间": "account establishment time", "操作": "Operation", "附加费": "surcharge", "请选择费用类型": "please select a fee type", "当前业主": "current owner", "用量": "amount", "代收费用": "Charge charges on behalf of", "请选择收费项目": "Please select a charge item", "更多操作": "More operations", "计费起始时间": "Billing start time", "手工结束": "Manual end" },
"deleteAttrSpec": { "请确认您的操作": "Please confirm your operation", "确定删除属性配置": "Delete attribute configuration", "点错了": "Click wrong", "确认删除": "Confirm deletion" },
"serviceProvideRemarkView": { "选填,请填写描述": "Optional,please fill in the description", "开发服务提供": "Development service provision", "描述": "description" },
"reportHuaningPayFeeTwo": { "楼栋号": "building number", "未收": "not received", "预收": "pre-paid", "应收": "Receivable", "促收优惠": "Collection promotion discount", "已收": "Received" },
"chooseMenuCatalog": { "选择菜单目录": "", "查询": "", "选择": "", "商户类型": "", "图片": "", "操作": "", "输入菜单目录名称": "", "顺序": "", "是否显示": "", "名称": "", "编号": "", "页面": "" },
"viewMainParkingSpaceFee": { "信息": "information", "停车位编号": "parking space number", "费用金额": "fee amount", "车牌号": "License plate number", "缴费": "Payment", "费用开始时间": "Fee start time", "费用到期时间": "Fee expiry time", "选择停车位": "Select parking space", "费用": "Fee" },
"addMachineTranslate": { "小区": "Community", "已同步": "Synced", "对象名称": "Object name", "状态": "Status", "楼编号": "Building ID", "添加设备同步": "Add Device Sync", "业主": "Owner", "必填,请填写对象名称": "Required ,please fill in the object name", "楼名称": "building name", "备注": "remarks", "必填,请填写设备编码": "required,please fill in the equipment code", "必填,请填写设备ID": "required,please fill in the device ID", "必填": "required", "未同步": "not synced", "必填,请选择对象类型": "required,please Select object type", "设备编码": "equipment code", "必填,请填写名称": "required,please fill in name", "对象类型": "object type", "必填,请填写编号": "required,please fill in the number", "设备": " device", "取消": "cancel", "必填,请填写对象Id": "required,please fill in the object Id", "对象Id": "Object Id", "可填,请填写备注": "Can be filled,please fill in the remarks" },
"simplifyOwnerMember": { "修改": "Modify", "操作": "Operation", "成员": "Member", "名称": "Name", "联系方式": "Contact", "备注": "Remark", "年龄": "Age", "创建员工": "Create employee", "身份证": "ID card", "删除": "delete", "性别": "gender", "类型": "type" },
"viewFeePrintSpecInfo": { "打印配置信息": "print configuration Information", "规格": "Specification", "选择打印配置": "Select Printing Configuration", "添加打印配置": "Add Printing Configuration", "必填": "Required", "内容": " content" },
"addStorehouse": { "仓库名称": "Warehouse name", "必填,请填写描述": "Required,please fill in the description", "否": "No", "仓库类型": "Warehouse type", "添加": "Add", "是否对外开放": "Whether it is open to the public", "必填": "required", "描述": "description", "必填,请填写仓库名称": "required Fill,please fill in the warehouse name", "是": "Yes" },
"pagination": { "共": "Total", "条": "records" },
"deleteAuditUser": { "确定删除审核人员": "Delete Auditor", "请确认您的操作": "Please confirm your operation", "点错了": "Wrong click", "确认删除": "Confirm delete" },
"editMeterType": { "修改": "Modify", "必填,请填写说明": "Required,please fill in the description", "必填,请填写名称": " Required,please fill in the name", "取消": "Cancel", "名称": "Name", "说明": "Description" },
"showOwnerParkingSpace": { "车位编号": "Parking No.", "平方米": "Square", "我要退款": "I want a refund", "费用金额": "Fee Amount", "停车费信息": "Parking Fee Information", "费用开始时间": "Fee Start Time", "费用到期时间": "Fee Expiration Time", "车辆ID": "Vehicle ID", "车品牌": "Car brand", "车位状态": "Parking status", "车位信息": "Parking information", "车牌号": "License plate number", "车位ID": "Parking ID", "车位类型": "Parking Type", "车位面积": "Parking Area", "车类型": "Car Type" },
"chooseCarBlackWhite": { "查询": "Query", "输入黑白名单名称": "Enter black and white list name", "选择": " Select", "操作": "Operation", "选择黑白名单": "Select black and white list", "开始时间": "Start time", "名单类型": "List type", "车牌号": "License plate number", "黑白名单": "Black and white list", "结束时间": "End time" },
"editSmallWeChat": { "修改": "Modify", "必填,请填写商户ID": "required,please fill in the merchant ID", "名称": "name", "必填,请填写应用密钥": "required,please fill in the app key", "描述": "description", "必填,请填写appId": "required,please fill in the appId", "必填,请填写支付密码": "required ,please fill in the payment password", "应用密钥": "application key", "必填,请填写名称": "required,please fill in the name", "配置": "configuration", "请选择状态": "Please select status", "支付密码": "Payment password", "商户ID": "Merchant ID", "取消": "Cancel", "选填,请填写描述信息": " Optional,please fill in the description information" },
"finishFee": { "确定结束费用": "Fix the end fee", "结束费用": "End fee", "请确认您的操作": "Please confirm your Operation", "点错了": "Wrong click" },
"positive-photo": { "选择图片": "Select picture" },
"editBusinessTableHis": { "修改": "Modify", "必填,请填写轨迹表名": "required,please fill in the track table name", "添加": "add", "备注": "remarks", "轨迹表名": "track table name", "必填": "Required", "删除": "Delete", "修改业务轨迹": "Modify business track", "选填,请填写备注": "Optional,please fill in remarks", "业务类型": "Business type", "表名": "table name", "必填,请填写业务类型": "required,please fill in the business type", "取消": "cancel", "必填,请填写表名": "Required,please fill in the form name", "动作": "Action" },
"storeExitCommunity": { "确认退出小区": "Confirm exit community", "确认": "Confirm", "请确认您的操作": "Please confirm your operation", "点错了": "Wrong click" },
"addPrivilege": { "查询": "Query", "添加权限": "Add Privilege", "输入权限名称": "Enter authority name", "取消": "Cancel", "创建时间": "Creation time", "权限编码": "Permission code", "权限名称": "Permission name" },
"deleteRoomRenovation": { "确定删除房屋装修": "Delete the house decoration", "请确认您的操作": "Please confirm your operation", "点错了": "Click wrong", "确认删除": "Confirm deletion" },
"privilegeGroup": { "权限组": "Permission group", "添加权限组": "Add permission group" },
"addWechatMenu": { "选填,请填写值": "optional,please fill in the value", "顺序": "order", "菜单名称": "menu name", "选填,请填写": "optional,please fill in", "小程序地址": "Mini program address", "菜单类型": "menu type", "选填,请填写小程序地址": "optional,please fill in the applet address", "顶级菜单": "top menu", "必填,请填写菜单名称": "Required,please fill in the menu name", "链接": "Link", "取消": "Cancel", "添加菜单": " Add Menu", "小程序": "Mini Program", "值": "Value", "必填,请填写有效数字": "Required,please fill in valid numbers" },
"viewQuestionAnswerTitleInfo": { "添加问卷题目": "Add Questionnaire title", "选择问卷题目": "Select questionnaire title", "顺序": "Order", "问卷题目信息": "Questionnaire title information", "问卷题目": "Questionnaire title", "题目类型": "topic type" },
"importMeterWaterFee2": { "下载模板": "download template", "抄表类型": "meter reading type", "费用类型": "fee type", "选择文件": " Select file", "水费": "water bill", "导入模板": "import template", "电费": "electricity bill", "必填": "required", "抄表导入": "copy Import table", "煤气费": "gas bill", "收费项目": "charge item" },
"deleteReportCustom": { "确定删除报表": "Delete report", "请确认您的操作": "Please confirm your operation", "点错了": "Wrong click", "确认删除": "Confirm deletion" },
"viewContractTypeSpecInfo": { "值类型": "Value type", "添加合同类型属性": "Add contract type attribute", "合同类型属性信息": "Contract type attribute information", "选择合同类型属性": "Select contract type attribute", "规格名称": "Specification name", "说明": "Description", "必填": "required", "查询显示": "query display", "展示": "display", "规格类型": "specification type" },
"selectFeeConfig": { "必填,请填写计费结束时间": "Required,please fill in the billing end time", "计费结束时间": "Billing end time", "创建费用": "Create fee", "费用类型": "Charge Type", "计费起始时间": "Billing Start Time", "收费金额": "Charge Amount", "必填": "Required", "必填,请填写收费金额": "Required,please fill in the charge amount", "必填,请填写计费起始时间": "Required,please fill in the billing start time", "收费项目": "Charge item" },
"listBusinessType": { "修改": "Modify", "订单": "Order", "订单类型名称": "Order Type Name", "操作": "Operation", "订单类型编码": "Order Type code", "订单类型信息": "order type information", "订单类型说明": "order type description", "删除": "delete" },
"deleteApp": { "请确认您的操作": "Please confirm your operation", "确定删除应用": "Delete application Use", "确认删除": "Confirm to delete" },
"editStaff": { "手机": "Mobile", "修改员工": "Modify employee", "公司": "Company", "上传照片": "Upload photo", "员工照片": "staff photo", "名称": "name", "必填": "required", "必填,请填写手机号码": "required,please fill in the phone number Number", "性别": "gender", "邮箱": "email", "可选,请填写员工名称": "optional,please fill in employee name", "部门": "department", "必填,请填写员工名称": "Required,please fill in employee name", "女": "female", "拍照": "photograph", "男": "male", "住址": "address", "请填写家庭住址": "Please fill in the home address", "岗位": " Job" },
"addResourceStoreType": { "选填,请填写物品类型描述": "Optional,please fill in the item type description", "必填,请填写物品类型名称": "Required,please fill in the item type name", "物品类型名称": "item type name", "添加物品类型": "add item type", "物品类型描述": "Item type description" },
"editReportCustom": { "排序": "sort", "选填,请填写描述": "optional,please fill in the description", "选项标题": "option title", "修改报表": "Modify report", "取消": "Cancel", "必填": "Required", "必填,请填写选项标题": "Required,please fill in the option title", "描述": "Description", "组编号": "Group ID", "必填,请填写排序": "Required,please fill in the order" },
"addApp": { "秘钥": "Secret key", "白名单": "whitelist", "选填,请填写黑名单": "optional,please fill in blacklist", "楼编号": "building number", "黑名单": "blacklist", "楼名称": "Building name", "备注": "Remarks", "必填,请填写应用名称": "Required,please fill in the application name", "选填,请填写白名单": "Optional Fill,please fill in the white list", "选填,请填写备注": "optional,please fill in the remarks", "必填,请填写名称": "required,please fill in the name", "必填,请填写编号": "Required,please fill in the number", "应用名称": "Application name", "选填,请填写秘钥": "Optional,please fill in the secret key", "取消": "Cancel", "添加应用": "Add application", "可填,请填写备注": "can be filled,please fill in the remarks" },
"company-extend": { "请选择时间": "please select the time", "经营范围": "Business scope", "填写营业执照上的登记机关": "Fill in the registration authority on the business license", "成立日期": "Establishment date", "注册资本": "Registered capital", "公司扩展信息": "Company extension information", "公司法人": "Company legal person", "登记机关": "Registration authority" },
"ownerExitParkingSpace": { "确认是否退车位,退车位后可以再次售卖或出租": "Confirm whether to withdraw the parking space,you can sell or rent the parking space again after returning the parking space", "请确认您的操作": "Please confirm your operation", "确认退出": "Confirm to exit", "点错了": "Click wrong" },
"deleteItemOut": { "请确认您的操作": "Please confirm your operation", "确认取消": "Confirm cancommunityation", "确定取消领用": "Confirm to cancel the use", "点错了": "Wrong click" },
"searchRoom": { "房屋": "House", "层": "Layer", "操作": "Operation", "单元": "Unit", "室": "Room", "输入小区楼编号": "Enter the building number", "楼层": "floor", "单元编号": "unit No.", "号楼": "Building", "查询": "Query", "选择": "Select", "输入房屋编号": "Enter house number", "选择房屋": "Select house", "楼栋编号": "building number", "房屋编号": "house number" },
"addActivitiesRule": { "最美员工": "the most beautiful employee", "开始时间": "start time", "规则名称": "rule name", "员工": "employee", "添加": "add", "业主": "owner", "规则说明": "rule description", "必填": "required Fill in", "必填,请填写规则名称": "required,please fill in the rule name", "必填,请填写开始时间": "required,please fill in the start time", "活动类型": "activity Type", "必填,请填写规则说明": "required,please fill in the rule description", "必填,请填写结束时间": "required,please fill in the end time", "取消": "cancel", "大众": "public", "活动对象": "activity object", "结束时间": "end time" },
"deleteRepairSetting": { "请确认您的操作": "Please confirm your operation", "确定删除报修设置": "Delete the repair report setting", "点错了": "Click wrong", "确认删除": "Confirm delete" },
"deleteOrgCommunity": { "确定删除隶属小区": "Confirm to delete the affiliated community", "请确认您的操作": "Please confirm your operation", "点错了": "Wrong click", "确认删除": "Confirm deletion" },
"tempImportRoomFee": { "费用对象": "Expense object", "输入": "input", "开始时间": "start time", "费用类型": "Charge type", "费用名称": "Charge name", "收费金额": "Charge amount", "必填": "Required", "必填,请填写收费金额": "Required Fill in,please fill in the charge amount", "必填,请填写开始时间": "required,please fill in the start time", "选择": "select", "必填,请填写结束时间": "required ,please fill in the end time", "取消": "cancommunityation", "必填,请填写费用对象": "required,please fill in the fee object", "临时收费": "temporary charge", "结束时间": "End time", "必填,请填写费用名称": "required,please fill in the fee name" },
"addConvenienceMenus": { "选填,请填写备注": "optional,please fill in the remarks", "选填,请填写页面路径": "Optional,please fill in the page path", "添加便民服务菜单": "Add convenience service menu", "必填,请填写菜单名称": "Required,please fill in the menu Name", "页面路径": "page path", "必填,请填写显示序号": "required,please fill in the display serial number", "菜单名称": "menu name", "显示序号": "display Serial number", "取消": "cancel", "图片地址": "picture address", "备注": "remark" },
"chooseResourceStoreSpecification": { "查询": "query", "操作": "operation", "输入物品规格名称": "Enter item specification name", "选择物品规格": "Select item specification", "规格名称": "Specification name", "商品类型": "Commodity type", "描述": "description", "规格编号": "specification number" },
"editOrg": { "组织名称": "organization name", "上级组织": "superior organization", "必填,请填写组织名称": "Required,please fill in the organization name", "组织级别": "organization level", "必填": "required", "描述": "description", "入驻所有小区": "in all communitys", "修改组织": "Modify organization", "分公司级": "Branch level", "必填,请填写描述": "Required,please fill in the description", "部门级": "Department level", "取消": "Cancel", "隶属小区": "Affiliated Community" },
"viewApplyRoomDiscountInfo": { "房屋": "House", "添加房屋折扣申请": "Add Housing Discount Application", "开始时间": "Start time", "折扣": "discount", "申请类型": "application type", "申请说明": "application description", "房屋折扣申请信息": "housing discount application information", "结束时间": "end time", "选择房屋折扣申请": "select housing discount application", "申请电话": "application phone", "申请人": "Applicant" },
"uploadVedio": { "上传视频": "Upload video" },
"addAttendanceClasses": { "星期二": "Tuesday", "星期六": "Saturday", "打卡范围": "Pick-in range", "必填,请填写打卡范围(分钟)": "required,please fill in the punch-in range ( minutes )", "打卡类型": "punch-in type", "打卡次数": "punch-in times", "星期三": "Wednesday", "添加": "Add", "早退范围": "Early leave range", "星期日": "Sunday", "迟到范围": "Late range", "星期一": "Monday", "必填,请填写迟到范围(分钟)": "required,please fill in the lateness range (minutes)", "星期四": "Thursday", "必填,请填写早退范围(分钟)": "Required,please fill in the early departure range (minutes)", "班次名称": "shift name", "星期五": "Friday", "考勤部门": "attendance department", "必填,请选择打卡类型": "Required,please select the punch type", "必填,请填写班次名称": "Required,please fill in the shift name", "必填,请选择打卡次数": "Required,please select punch Times", "打卡规则": "Punch rule" },
"searchOwner": { "操作": "Operation", "名称": "Name", "联系方式": "Contact", "创建员工": "Create employee", "身份证": "ID card", "性别": "Gender", "查询": "Query", "选择": "Select", "选择业主": "Select owner", "输入房屋编号楼栋-单元-房屋": "Enter the house number Building-unit-house", "年龄": "age", "房屋编号": "house number", "输入业主名称": "enter the owner Name" },
"viewShopTypeInfo": { "是否默认": "is it default", "选择店铺类型": "select store type", "是否展示": "display", "添加店铺类型": "add Store type", "显示序号": "display serial number", "店铺类型信息": "store type information", "备注": "remarks", "店铺类型": "store type" },
"addStaff": { "手机号码": "Mobile number", "添加员工": "Add employee", "必填": "Required", "必填,请填写手机号码": "Required,please fill in the mobile number", "员工名称": "employee name", "员工性别": "employee gender", "必填,请填写员工名称": "required,please fill in employee name", "女": "female", "家庭住址": "Home Address", "男": "Male", "取消": "Cancel", "员工邮箱": "Staff Email", "请填写家庭住址": "Please fill in your home address" },
"deleteShopType": { "请确认您的操作": "Please confirm your operation", "确定删除店铺类型": "Delete shop type", "点错了": "Click wrong", "确认删除": "Confirm deletion" },
"complaintDetail": { "处理人编号": "handler number", "序号": "serial number", "状态": "status", "必填,请填写投诉内容": "Required,please fill in the complaint content", "详情": "details", "投诉内容": "complaint content", "关闭": "close", "投诉编码": "complaint code", "房屋信息": "Housing Information", "处理人电话": "Processor Phone", "投诉人电话": "Complainant Phone", "必填,请填写处理人编号": "required,please fill in Handler ID", "意见": "opinion", "必填,请填写投诉人": "required,please fill in the complainant", "处理人": "handler", "必填,请填写处理人": "required,please fill in the handler", "投诉人": "complainant", "投诉类型": "complaint type", "耗时": "time-consuming", "必填,请填写投诉人电话": "required,please fill in the complainant phone number", "投诉状态": "complaint status", "处理时间": "processing time", "投诉图片": "complaint picture", "必填,请填写投诉状态": "required,please fill in the complaint status", "必填,请填写处理人电话": "required,please fill in the handler isphone" },
"deletePropertyCompany": { "确定删除物业公司": "Confirm to delete the property company", "请确认您的操作": "Please confirm your operation", "点错了": "Wrong click", "确认删除": "Confirm deletion" },
"addFloor": { "必填,请填写名称": "required,please fill in the name", "添加楼栋": "add building", "必填,请填写编号": "required,please fill in the number", "楼栋名称": "Building name", "取消": "Cancel", "楼栋编号": "Building number", "建筑面积": "Building area", "备注": "Remarks", "必填,请填写建筑面积": "Required,please fill in the building area", "可填,请填写备注": "Available,please fill in the remarks" },
"deleteServiceRegister": { "确定删除服务绑定": "Confirm to delete service binding", "请确认您的操作": "Please confirm your operation", "点错了": "Wrong click", "确认删除": "Confirm deletion" },
"deleteBusinessDatabus": { "确定删除": "Delete OK", "请确认您的操作": "Please confirm your operation", "点错了": "Wrong click", "确认删除": "Confirm deletion" },
"addComplainView": { "咨询": "", "必填,请填写投诉人": "", "登记投诉建议": "", "投诉人": "", "必填,请填写投诉内容": "", "投诉电话": "", "投诉类型": "", "投诉": "", "建议": "", "必填": "", "必填,请填写投诉电话": "", "投诉内容": "" },
"parkingBoxSelect2": { "请选择停车场": "Please select a parking lot" },
"viewStorehouseInfo": { "仓库名称": "Warehouse name", "选择仓库": "Select warehouse", "仓库类型": "Warehouse type", "添加仓库": "Add warehouse", "描述": "Description", "仓库信息": "Warehouse information" },
"viewComplaintInfo": { "投诉建议信息": "Complaint suggestion information", "投诉状态": "Complaint Status", "投诉人": "Complainant", "添加投诉建议": "Add Complaint Suggestion", "投诉电话": "Complaint Phone", "选择投诉建议": "Select complaint suggestion", "投诉类型": "complaint type", "商户": "merchant", "房屋编号": "house number", "投诉内容": "complaint content" },
"addAuditUserOtherView": { "添加审核人员": "Add reviewer", "用户": "user", "财务主管": "financial manager", "投诉处理人员": "complaint handler", "采购人员": "purchasing staff", "必填,请填写用户名称": "required,please fill in the user name", "必填": "required", "流程对象": "process object", "用户名称": "username", "采购流程": "procurement process", "投诉流程": "complaint process", "审核环节": "audit link", "出库流程": "outbound process", "必填,请填写用户": "required,please fill in the user", "部门主管": "department supervisor" },
"accountPay": { "账号": "account", "必填,请填写原因": "required,please Fill in the reason", "同意付款": "Agree to pay", "拒绝付款": "Refuse to pay", "银行信息": "Bank information", "持卡人": "Cardholder", "开户行": "Account Bank", "付款状态": "Payment Status", "付款信息": "Payment Information", "原因": "Reason" },
"editWechatAttr": { "修改": "Modify", "必填,请填写": "Required,please fill in", "取消": " Cancel" },
"floorSelect2": { "请选择楼栋": "Please select a building" },
"deleteParkingSpaceApply": { "请确认您的操作": "Please confirm your operation", "确定删除车位申请": "Delete the application for parking space", "点错了": "Wrong click", "确认删除": "Confirm deletion" },
"viewApplyRoomDiscountTypeInfo": { "选择优惠申请类型": "Select discount application type", "添加优惠申请类型": "Add preferential application type", "优惠申请类型信息": "preferential application type information", "类型名称": "type name", "类型描述": " type description" },
"deleteMachineAuth": { "请确认您的操作": "Please confirm your operation", "确定删除员工门禁授权": "Confirm to delete employee access control authorization", "点错了": "Wrong click", "确认删除": "Confirm deletion" },
"editOwnerRepair": { "报修内容": "repair content", "修改业主报修": "modify owner repair", "必填,请填写预约时间": "required,please fill in the appointment time", "联系方式": "Contact information", "报修类型": "Repair type", "必填,请填写报修内容": "Required,please fill in the repair content", "预约时间": "Appointment time", "必填": "Required", "报修人": "Repair applicant", "必填,请填写联系方式": "Required,please fill in contact information", "必填,请填写报修人": "Required,please fill in the repairer" },
"addSmsConfig": { "不记录": "No record", "必填,请填写访问KEY": "Required,please fill in the access KEY", "备注": "Remarks", "必填": "required", "短信配置": "SMS configuration", "必填,请填写短信秘钥": "required,please fill in the SMS key", "必填,请填写短信签名": "Required,please fill in SMS signature", "短信签名": "SMS signature", "必填,请选择短信业务": "Required,please select SMS service", "访问": "Access", "短信秘钥": "SMS key", "日志": "Log", "腾讯": "Tencent", "短信业务": "SMS service", "工单通知": " Work order notification", "必填,请填写短信模板": "required,please fill in the SMS template", "必填,请选择短信商": "required,please select the SMS provider", "欠费催缴": "Arrears reminder", "短信模板": "SMS template", "区域": "area", "选填,请填写备注": "optional,please fill in remarks", "记录": " Record", "必填,请填写区域": "Required,please fill in the area", "取消": "Cancel", "短信商": "SMS provider", "阿里": "Ali" },
"deleteFeeCollectionOrder": { "确定删除催缴记录": "", "请确认您的操作": "", "点错了": "", "确认删除": "" },
"areaSelect": { "请选择省": "Please select a province", "请选择城市": "Please select a city", "请选择区县": "Please select a district/county" },
"addParkingSpace": { "必填,请填写车位编码": "required,please fill in the parking space code", "添加": "add", "必填,请选择车位类型": "required,Please select the type of parking space", "车位编码": "Parking code", "备注": "Remarks", "必填,请填写面积,如30.09": "Required,please fill in the area,such as 30.09", "停车场": "Parking lot", "车位类型": "Parking type", "面积": "Area", "可填,请填写备注": "Can be filled,please fill in remarks" },
"parkingAreaControlCarInout": {},
"editRoomRenovation": { "修改": "Modify", "联系人": "Contact", "必填,请填写装修负责人电话": "Required,please fill in the phone number of the decoration person in charge", "装修单位": "Renovation unit", "状态": "status", "必填,请填写联系人": "required,please fill in the contact", "备注": "remarks", "必填": "Required", "选填,请填写延期时间": "Optional,please fill in the extension time", "待审核": "To be reviewed", "装修中": "Renovation", "装修负责人电话": "The phone number of the person in charge of decoration", "联系电话": "contact number", "待验收": "to be accepted", "必填,请填写结束时间": "required,please fill in the end time", "必填,请填写装修时间": "Required,please fill in the decoration time", "必填,请填写装修负责人": "Required,please fill in the person in charge of decoration", "必填,请填写联系电话": "Required,please fill in the contact number", "结束时间": "End time", "延期时间": "Extension time", "违规说明": "Violation description", "是否违规": "Whether it is a violation", "房屋": "House", "装修负责人": "Renovation person in charge", "装修时间": "Renovation time", "否": "No", "审核不通过": "Approval failed", "是": "Yes", "选填,请填写备注": "optional,please fill in the remarks", "验收成功": "acceptance successful", "选填,请填写违规说明": "optional Fill in,please fill in the violation description", "验收失败": "Acceptance failure", "必填,请填写房屋": "Required,please fill in the house", "是否延期": "Whether it is extended", "必填,请填写装修单位": "Required,please fill in the decoration Repair unit" },
"choosePurchaseApply": { "查询": "query", "选择": "select", "订单号": "order number", "操作": "operation", "选择采购申请": "Select purchase requisition", "输入采购申请名称": "Enter purchase requisition name", "订单状态": "Order status" },
"deleteFeeFormula": { "确定删除公摊公式": "OK to delete public share formula", "请确认您的操作": "Please confirm your operation", "点错了": "Wrong click", "确认删除": "Confirm deletion" },
"editFloor": { "必填,请填写名称": "required,please fill in the name", "修改楼栋": "modify the building", "必填,请填写编号": "required,please fill in the number", "楼栋名称": "Building name", "取消": "Cancel", "楼栋编号": "Building number", "建筑面积": "Building area", "备注": "Remarks", "必填,请填写建筑面积": "Required,please fill in the building area", "可填,请填写备注": "can be filled,please fill in the remarks" },
"addMapping": { "添加编码映射": "Add coding mapping", "必填,请填写值": "Required,please fill in the value", "楼编号": "Building number", "楼名称": "Building name", "名称": "Name", "备注": "Remark", "键": "Key", "选填,请填写备注": "optional,please fill in remark", "必填,请填写键": "required,please fill in key", "必填,请填写名称": "Required,please fill in the name", "必填,请填写编号": "Required,please fill in the number", "取消": "Cancel", "值": "Value", "必填,请填写域": "required,please fill in the domain", "可填,请填写备注": "optional,please fill in the remarks", "域": "domain" },
"addActivitiesType": { "大类名称": "Class name", "大类描述": "Class description", "必填,请填写显示序号": "Required,please fill in the display number", "否": " No", "添加": "Add", "必填,请填写大类名称": "required,please fill in the category name", "选填,请填写大类描述": "optional,please fill in Category description", "显示序号": "Display serial number", "是否显示": "Whether to display", "必填": "Required", "是": "Yes" },
"deleteFee": { "确定删除费用": "Confirm deletion fee", "请确认您的操作": "Please confirm your operation", "点错了": "Wrong click", "确认删除": "Confirm deletion" },
"deleteConvenienceMenus": { "请确认您的操作": "Please confirm your operation", "确定删除便民服务菜单": " Make sure to delete the convenience service menu", "点错了": "click wrong", "确认删除": "confirm deletion" },
"viewBusinessTableHisInfo": { "业务类型": "business type", "表名": "Table name", "添加业务轨迹": "Add business track", "选择业务轨迹": "Select business track", "备注": "Remark", "轨迹表名": "Track table name", "动作": "Action", "业务轨迹信息": "Business Track Information" },
"visitForOwner": { "业主": "Owner", "名称": "Name", "联系方式": "Contact", "备注": "Remark", "年龄": "Age", "创建员工": "Create employee", "业主信息": "Owner information", "性别": "Gender" },
"roomDecorationAcceptance": { "房屋": "House", "请填写验收意见": "Please fill in the acceptance opinion", "验收成功": "Acceptance successful", "状态": "Status", "验收意见": "Acceptance opinion", "验收失败": "Acceptance failed", "装修验收": "Renovation acceptance", "必填,请填写房屋": "Required,please fill in the house", "必填": "Required" },
"addMainCategoryProduct": { "排序": "sort", "商品(服务)编号": "commodity (service) number", "开始时间": "start time", "必填,请选择目录": "required Fill in,please select a directory", "添加": "Add", "必填,请填写结束时间": "required,please fill in the end time", "取消": "cancel", "目录": "directory", "结束时间": "end time", "必填,请填写商品(服务)编号": "required,please fill in the product (service) number", "必填,请填写开始时间": "required ,please fill in the start time", "必填,请填写排序": "required,please fill in the order" },
"chooseReportCustomGroup": { "查询": "query", "选择报表组": "select report group", "组名称": "Group name", "选择": "Select", "操作": "Operation", "组": "Group", "描述": "Description", "输入报表组名称": "Enter report group name" },
"viewAccountBondInfo": { "保证金名称": "Margin Name", "保证金金额": "Margin Amount", "保证金信息": "Margin Information", "选择保证金": " Select Margin", "添加保证金": "Add Margin", "有效月份": "Valid Month", "类型": "Type" },
"payFeeDiscount": { "折扣金额": "Discount Amount", "折扣名称": " Discount name", "元": "yuan", "规则": "rule", "折扣信息": "discount information", "折扣类型": "discount type" },
"editContractType": { "必填,请填写类型名称": "required,please fill in the type name", "选填,请填写描述": "optional,please fill in the description", "是否审核": "whether to review", "不审核": " Not review", "取消": "Cancel", "类型名称": "Type name", "请选择审核": "Please select review", "物业审核": "Property review", "描述": "Description", "修改合同类型": "Modify contract type" },
"chooseReportCustomComponentRel": { "查询": "query", "选择": "select", "关系编号": "relation number", "报表编号": "Report number", "操作": "Operation", "选择报表组件": "Select report component", "输入报表组件名称": "Enter report component name", "组件": "Component", "组件序号": " Component No." },
"chooseContractPartya": { "查询": "Query", "甲方联系人": "Party A Contact", "选择": "Select", "操作": " Operation", "联系电话": "Contact phone number", "甲方": "Party A", "输入合同甲方名称": "Enter the name of Party A in the contract", "甲方编号": "Party A number", "选择合同甲方": "Select Contract Party A" },
"inspectionTaskDetail": { "开始": "Start", "巡检人": "Inspector", "巡检点": "Inspection Point", "实际巡检时间": "actual inspection time", "签到状态": "check-in status", "任务详情": "task details", "巡检照片": "inspection photo", "位置信息": "Location information", "查看": "View", "巡检情况": "Inspection status", "巡检状态": "" },
"deleteContractChangePlan": { "请确认您的操作": "Please confirm your operation", "确定删除合同变更信息": "Confirm to delete the contract change information", "点错了": "Wrong click", "确认删除": "Confirm to delete" },
"editResourceStore": { "图片": "image", "必填,请填写物品最小计量单位,最高收费标准": "required,please fill in the item isminimum measurement unit,the maximum charge standard", "必填,请填写最小计量单位数量": "required,please fill in the minimum measurement unit quantity", "备注": "remarks", "必填,请填写物品采购参考价格": "required,please fill in the item purchase reference price", "必填": "required", "描述": "description", "是否在维修材料中显示": "Whether to display in maintenance materials", "选填": "optional", "物品单位": "item unit", "采购参考价格": "purchase reference price", "是否是固定物品": "Whether it is a fixed item", "物品规格": "item specification", "必填,请填写物品编码,如终端串码": "required,please fill in the item code,such as terminal string code", "最小计量单位": "Minimum measurement unit", "最低收费标准": "Minimum charge standard", "否": "No", "物品类型": "Item type", "必填,请填写警告库存": "Required,please fill in Warning Inventory", "最小计量单位数量": "Minimum Quantity of Measurement Unit", "最高收费标准": "Maximum Charge Standard", "警告库存": "Warning Inventory", "是": "Yes", "选填,请填写备注": "optional,please fill in the remarks", "物品名称": "item name", "选填,请填写描述": "optional,please Fill in the description", "必填,请填写物品最小计量单位,最低收费标准": "required,please fill in the item isminimum measurement unit,the minimum charge standard", "物品编码": "item code", "修改物品管理": "Modify item management", "必填,请填写物品名称": "Required,please fill in the item name" },
"deletePropertyRightRegistrationDetail": { "请确认您的操作": "Please confirm your operation", "确定删除房屋产权详情记录": "Confirm to delete the property right details record", "点错了": "Wrong click", "确认删除": "Confirm deletion" },
"finishRepair_back": { "处理意见": "processing opinion", "必填,请填写处理意见": "required,please fill in processing opinion", "是否用料": "whether materials are used", "商品总金额": "total amount of goods", "报修结单": "Repair report", "请选择维修类型": "Please select the maintenance type", "请选择是否用料": "Please select whether to use the material", "维修类型": "Maintenance Type" },
"ownerParkingSpace": {},
"viewVisitInfo": { "访客姓名": "Visitor name", "开始时间": "Start time", "新增访客": "Add visitor", "访客车牌号": "Visitor islicense plate number", "访客联系方式": "Visitor contact information", "随行人数": "Accompanying number", "添加访客": "Guest gender", "访客性别": "end time", "结束时间": "" },
"adminLoginProperty": { "密码": " password", "密码确认": "password confirmation", "取消": "cancel", "必填,请输入当前账号密码": "Required,please enter the current account password" },
"addParkingArea": { "必填,请填写停车场编号": "", "可选,请填写备注": "", "取消": "", "备注": "", "地上停车场": "", "添加信息": "", "必填": "", "停车场编号": "", "停车场类型": "", "地下停车场": "" },
"addApplicationKey": { "房屋门": "House Door", "归属房屋": " Home", "开始时间": "Start time", "保安": "Security", "其他人员": "Other personnel", "必填,请填写身份证号": "Required,please fill in the identity Certificate number", "必填,请填写姓名": "required,please fill in the name", "必填,请选择设备位置": "required,please select the equipment location", "必填": "required", "东大门": "Dongdaemun", "保洁": "cleaning", "照片": "photo", "必填,请填写开始时间": "required,please fill in the start time", "姓名": "name", "设备位置": "device location", "必填,请填写结束时间": "required,please fill in the end time", "单元门": "unit door", "年龄": "Age", "必填,请填写年龄": "required,please fill in age", "身份证号": "ID number", "钥匙类型": "key type", "结束时间": " End time", "申请钥匙": "application key", "归属单元": "attribution unit", "上传照片": "upload photo", "归属楼栋": "attribution building", "临时密码": "Temporary password", "性别": "Gender", "西大门": "Seodaemun", "女": "Female", "人脸": "Face", "申请人照片": "Application Person photo", "手机号": "mobile phone number", "拍照": "photograph", "固定密码": "fixed password", "必填,请填写手机号": "required,please fill in the mobile phone Number", "男": "Male", "取消": "Cancel", "北大门": "North Gate", "南大门": "South Gate", "用户类型": "User Type" },
"shopWithdraw": { "撤回说明": "Withdrawal description", "必填,请填写撤回意见": "Required,please fill in the withdrawal opinion", "确认撤回": "Confirm withdrawal", "请确认您的操作": "Please confirm your operation", "点错了": "Wrong click" },
"viewResourceSupplierInfo": { "添加供应商": "Add supplier", "供应商名称": "Supplier Business name", "开户行": "account bank", "选择供应商": "select supplier", "开户行账号": "account bank account number", "供应商信息": "Supplier Information", "备注": "Remarks", "供应商联系方式": "Supplier Contact Information", "联系人姓名": "Contact Name", "供应商地址": "Supplier Business address" },
"stopContract": { "确定结束合同": "Confirm the end of the contract", "确认结束": "Confirm the end", "请确认您的操作": "Please confirm your operation", "点错了": "The point is wrong" },
"deleteInspectionPoint": { "确定删除巡检点": "Delete the inspection point", "请确认您的操作": "Please confirm your operation", "点错了": " Click wrong", "确认删除": "Confirm deletion" },
"addClue": { "项目名称": "Project name", "项目位置": "Project location", "投资方简介": "Investor profile", "选填,请填写目前进展情况": "optional,please fill in the current progress", "目前进展情况": "current progress", "必填,请填写项目名称": "Required,please fill in the project name", "电话": "Telephone", "必填,请填写项目位置": "Required,please fill in the project location", "添加线索管理": "Add lead management", "投资额": "investment amount", "选填,请填写投资额": "optional,please fill in the investment amount", "必填,请填写电话": "required,please fill in the phone", "选填,请填写项目概述": "optional,please fill in the project overview", "必填,请填写投资方名称": "required,please fill in the investor isname", "项目概述": "project Overview", "取消": "Cancel", "选填,请填写下一步推进计划": "Optional,please fill in the next promotion plan", "下一步推进计划": "Next promotion plan", "投资方名称": "Investor name" },
"viewParkingAreaInfo": { "停车场信息": "Parking lot information", "添加停车场": "Add parking lot", "备注": "Remarks", "选择停车场": "Select parking lot", "停车场编号": "Parking lot number", "停车场类型": "Parking type" },
"chooseStorehouse": { "查询": "Query", "仓库名称": "Warehouse name", "选择": "Select", "操作": "Operation", "选择仓库": "Select warehouse", "仓库编号": "Warehouse ID", "仓库类型": "Warehouse type", "描述": "Description", "输入仓库名称": "Enter warehouse name" },
"chooseMeterWater": { "查询": "Query", "选择": "Select", "输入抄表名称": "Enter meter reading name", "操作": "operation", "表类型": "meter type", "上期度数": "last period degree", "表": "table", "本期度数": " Current degree", "上期读表时间": "Last reading time", "备注": "Remarks", "本期读表时间": "Current reading time", "选择抄表": "Select meter reading" },
"editPurchaseApply": { "取消": "Cancel", "修改采购申请": "Modify purchase requisition", "必填": "Required", "固定费用": "Fixed fee", "订单状态": "Order status", "面积": "Area" },
"deleteOwner": { "确认是否删除": "Confirm whether to delete", "请确认您的操作": " Please confirm your operation", "点错了": "click wrong", "确认删除": "confirm delete" },
"chooseParkingSpace": { "查询": "query", "选择": "select", "操作": "Operation", "号停车场": "Parking lot", "车位状态": "Parking status", "车位": "Parking", "选择车位": "Select parking", "输入停车场编号": "Enter the parking lot number", "停车场": "Parking type", "车位类型": "Area", "面积": "" },
"deleteStaff": { "确认是否删除": "Confirm whether to delete", "请确认您的操作": "Please confirm your operation", "点错了": "Wrong click", "确认删除": "Confirm deletion" },
"viewRoomRenovationInfo": { "房屋装修信息": "House decoration information", "房屋": "House", "联系人": "Contact", "装修时间": "Renovation time", "联系电话": "Contact Phone", "选择房屋装修": "Select house decoration", "备注": "Remarks", "添加房屋装修": "Add house decoration", "结束时间": "End time" },
"viewMainCategoryInfo": { "目录类别": "Catalog Category", "开始时间": "Start Time", "商品目录信息": "Product Catalog Information", "添加商品目录": "Add Product Catalog", "选择商品目录": "Select product catalog", "目录名称": "catalog name", "结束时间": " end time", "描述": "description" },
"deleteInspectionItem": { "确定删除巡检项目": " Confirm to delete the inspection item", "请确认您的操作": "Please confirm your operation", "点错了": "Wrong click", "确认删除": "Confirm deletion" },
"chooseReportCustomComponent": { "查询": "query", "选择": "select", "操作": "operation", "组件类型": "component type", "组件名称": "component name", "查询方式": "inquiring party formula", "选择报表组件": "select report component", "输入报表组件名称": "input report component name", "组件": "component", "描述": "description" },
"addAccountBond": { "保证金名称": "Margin name", "选填,请填写备注": "optional,please fill in the remarks", "必填,请选择店铺类型": "required,please select the store type", "必填,请填写保证金金额,单位:元": "Required,please fill in the deposit amount,unit:yuan", "选填,请填写有效月份,如12,24": "optional,please fill in the valid month ,such as 12,24", "金额/元": "amount/yuan", "添加保证金": "add margin", "取消": "cancel", "必填,请填写保证金名称": "required ,please fill in the margin name", "备注": "remarks", "有效月份": "valid month", "店铺类型": "shop type" },
"newOaWorkflowForm": {},
"importOwnerCar": { "下载模板": "Download Template", "选择文件": "Select File", "导入模板": "Import Template", "准备数据后": "After Preparing Data", "车辆导入": "Vehicle Import" },
"deleteRepairTypeUser": { "请确认您的操作": "Please confirm your operation", "确定删除报修师傅": "Delete the repair master", "点错了": "Wrong click", "确认删除": "Confirm deletion" },
"applyDeleteFeeBatch": { "批次号": "Batch number", "取消原因": "Cancommunityation reason", "请填写取消原因": "Please fill in the cancommunityation reason", "员工": "employee", "创建时间": "creation time", "费用取消申请": "fee cancommunityation application", "必填,请填写批次号": "required,please fill in the batch number" },
"flowAudit": { "必填,请填写原因": "Required,please fill in the reason", "必填,请选择下一处理人": "Required,please select the next processor", "请审核": "Please review", "拒绝": "Reject", "员工": "Employee", "同意": "Agree", "原因": "Reason", "审核信息": "Audit information", "审核状态": "Approval Status" },
"chooseInAndOutType": { "出库": "Outbound", "采购": "Purchase", "选择操作类型": "Select Operation Type" },
"parkingAreaControlPayment": { "进场状态": "Access status", "收费类型": "Charge type", "应收金额": "Amount receivable", "车辆状态": "Vehicle status", "进场时间": "Entry time", "进出场编号": "Entry and exit number", "实收金额": "Actual amount", "车牌号": "License plate number", "必填,请填写车牌号": "Required,please fill in the license plate number", "请选择车辆状态": "Please select car status" },
"viewInspectionPointInfo": { "选择巡检点": "Select inspection point", "巡检点名称": "Inspection point name", "巡检点信息": "Inspection information", "添加巡检点": "Add inspection point", "备注": "Remark" },
"addCommunity": { "请选择省": "Please select province", "小区地址": "Residential address", "必填,请填写缴费周期(月)": "Required,please fill in the payment period (month)", "小区地区": "Residential area", "联系方式": "Contact information", "必填,请填写小区地址": "required,please fill in the community address", "必填,请填写附近地标": "required,please fill in the nearby landmarks", "必填,请填写联系方式": "Required,please fill in the contact information", "请选择区县": "Please select a district or county", "添加小区": "Add a community", "附近地标": "Nearby landmark", "必填,请填写每月单价(元)": "required,please fill in the monthly unit price (yuan)", "小区名称": "community name", "缴费周期": "payment period", "每月单价": "Monthly unit price", "请选择城市": "Please select a city", "必填,请填写小区名称": "Required,please fill in the community name" },
"viewAuditUserInfo": { "添加审核人员": "Add reviewer", "用户": "user", "审核环节": "audit link", "选择审核人员": "select reviewer", "审核人员信息": "audit Personnel information", "流程对象": "process object", "用户名称": "user name" },
"addFeeDiscount": { "折扣名称": "discount name", "规则": "rule", "添加": "Add", "折扣类型": "discount type", "必填,请填写折扣名称": "required,please fill in the discount name", "可选,请填写描述": "optional,please Fill in description", "必填": "required", "描述": "description" },
"addContractCollectionPlan": { "选填,请填写备注": "optional,please fill in remarks", "必填,请填写计划名称": " required,please fill in the plan name", "必填,请填写合同号": "required,please fill in the contract number", "添加计划": "add plan", "计划名称": "plan name", "合同号": "contract number", "取消": "cancommunityation", "备注": "remark", "必填": "required", "费用": "fee", "计划费用": "Plan Fee" },
"addPayFeeConfigDiscount": { "缴费结束时间": "", "优惠": "", "折扣终止时间": "", "折扣名称": "", "缴费起始时间": "", "必填,请填写缴费结束时间": "", "添加": "", "违约": "", "折扣类型": "", "必填,请填写缴费起始时间": "", "可选,填写折扣终止时间": "", "必填": "" },
"addMenuGroup": { "无": "None", "选填,请选择组类型": "Optional,please select a group type", "组名称": "Group name", "请选择商户类型": "Please select the merchant type", "物流公司": "Logistics company", "序列": "Sequence", "归属商户": "Belonging merchant", "运营团队": "Operation Team", "描述": "Description", "必填,请填写组名称": "required,please fill in the group name", "选填,请填写描述": "optional,please Fill in description", "必填,请填写icon": "required,please fill in icon", "选填,请选择标签": "optional,please select label", "必填,请填写序列": " Required,please fill in the sequence", "代理商": "agent", "取消": "cancel", "标签": "label", "商家": "merchant", "开发团队": "development team", "添加菜单组": "Add menu group", "组类型": "group type", "物业": "property", "跑腿": "running" },
"viewContractCollectionPlanInfo": { "计划名称": "plan name", "选择收款计划": "select payment plan", "合同号": "contract number", "收款计划信息": "collection plan information", "添加收款计划": "Add collection plan", "备注": "remark", "费用": "fee" },
"reportHuaningOweFee": { "楼栋号": "building number", "总未收金额": "Total unpaid amount", "未收金额": "Unpaid amount" },
"viewRentingAppointmentInfo": { "预约房屋": "Reservation room", "添加租赁预约": "Add rental appointment", "选择租赁预约": "Select rental reservation", "租客电话": "Tenant phone", "租赁预约信息": "Rental reservation information", "备注": "Remarks", "预约时间": "Reservation time", "租客性别": "tenant gender", "租客名称": "tenant name" },
"viewResourceMyGoodsInfo": { "是否是固定物品": "Is it a fixed item", "选择物品": "Select item", "操作": "Operation", "移除": "Remove", "物品类型": "Item Type", "备注": "Remarks", "必填,请填写数量": "Required,please fill in the quantity", "物品信息": "Item information", "损耗数量": "Loss quantity", "物品名称": "Item name", "物品库存": "Item inventory", "物品使用类型": "Item usage type", "必填,请填写备注": "Required,please fill in remarks", "物品编码": "Item code", "公用损耗": "Public consumption", "报废回收": "Scrap recycling", "物品最小计量总数": "Minimum total measurement of items", "请选择物品使用类型": "Please select the type of use of the item" },
"chooseOwnerRepair": { "选择业主报修": "Select the owner to report for repair", "查询": "Inquiry", "房屋": "House", "报修内容": "Repair report Content", "选择": "Select", "操作": "Operation", "报修": "Repair", "输入业主报修名称": "Enter the owner repair name", "联系方式": "Contact information", "报修类型": "Repair Type", "预约时间": "Reservation Time", "报修人": "Repair Requester" },
"unitSelect2": { "请选择单元": "Please select a unit" },
"deleteInspectionPlan": { "确定删除巡检计划": "Delete inspection plan", "请确认您的操作": "Please confirm your operation", "点错了": "Click wrong", "确认删除": "Confirm to delete" },
"hireParkingSpaceFee": { "缴费周期": "Payment period", "实收费用": "Actual charge", "两年": "two years", "应收费用": "Payable fee", "必填,请填写实际收取费用": "Required,please fill in the actual fee charged", "必填": "Required", "一年": "One year", "收费信息": "Charge information", "收费项目": "Charge item" },
"deleteActivitiesBeautifulStaff": { "确定删除最美员工": "Delete the most beautiful employee", "请确认您的操作": " Please confirm your operation", "点错了": "click wrong", "确认删除": "confirm delete" },
"addOwner": { "手机": "mobile phone", "上传照片": "upload Photo", "添加": "Add", "必填,请选择性别": "required,please select gender", "其他": "other", "备注": "remark", "必填,请填写姓名": "required,please fill in the name", "摄像头": "camera", "租客": "tenant", "必填,请填写联系方式": "Required,please fill in the contact information", "身份证": "ID card", "性别": "Gender", "姓名": "Name", "女": "Female", "业主照片": "Photo of the owner", "拍照": "Photo", "男": "Male", "可选,请填写身份证": "Optional,please fill in ID card", "年龄": "Age", "必填,请填写年龄": "required,please fill in age", "必填,请选择类型": "required,please select type", "类型": "type", "家庭成员": "Family members", "可填,请填写备注": "can be filled,please fill in the remarks" },
"deleteMainCategory": { "请确认您的操作": "please confirm your operation", "确定删除商品目录": "Delete the catalogue for sure", "点错了": "Wrong click", "确认删除": "Confirm deletion" },
"chooseResourceStore": { "是否是固定物品": "Whether it isa fixed item", "仓库名称": "Warehouse name", "物品规格": "Item specification", "选择物品": "Select item", "操作": "Operation", "请选择仓库": "Please select a warehouse", "物品类型": "Item type", "输入物品管理名称": "Enter item management name", "查询": "query", "物品名称": "item name", "物品库存": " Item inventory", "选择": "select", "物品编码": "item code", "请选择二级分类": "please select the secondary category", "请选择物品类型": "please select the item type" },
"chooseClue": { "项目名称": "project name", "项目位置": "project location", "选择线索管理": "select lead management", "投资方简介": "investor profile", "目前进展情况": "Current progress", "操作": "operation", "电话": "phone", "线索": "lead", "投资额": "investment", "查询": "Query", "选择": "Select", "输入线索管理名称": "Enter lead management name", "项目概述": "Project overview", "下一步推进计划": "Next promotion Plan", "投资方名称": "Investor name" },
"addPurchaseApplyView2": { "必填,请填写申请说明": "Required,please fill in the application description", "出库对象": "Outbound Object", "联系电话": "contact number", "使用人": "user", "必填,请填写使用人": "required,please fill in the user", "申请说明": "application Description", "申请信息": "application information", "必填,请填写联系电话": "required,please fill in the contact number" },
"configPropertyFee": { "编辑物业费": "edit property fee", "每平米单价": "Unit price per square meter", "必填,请填写房屋每平米的物业费单价,如": "Required,please fill in the unit price of the property fee per square meter of the house,such as", "取消": "Cancel", "附加费用": "Additional fee", "必填,请填写附加费,如": "required,please fill in the surcharge,such as" },
"addReportCustomGroup": { "组名称": "group name", "必填,请填写组url": "Required,please fill in the group url", "必填,请填写描述": "Required,please fill in the description", "添加": "Add", "取消": "Cancel", "组url": "group url", "描述": "description", "必填,请填写组名称": "required,please fill in the group name" },
"viewParkingSpaceApplyInfo": { "汽车品牌": "Car brand", "起租时间": "Lease start time", "选择车位申请": "Select parking space application", "颜色": "Color", "车辆类型": "Vehicle type", "备注": "Remarks", "车位申请信息": "Parking Space Application Information", "结租时间": "Lease Closing Time", "添加车位申请": "Add Parking Space Application", "车牌号": "License plate number", "申请人电话": "Applicant phone", "审核结果": "Review result", "申请人": "Applicant" },
"viewRepairSettingInfo": { "报修设置信息": "Repair report setting information", "派单方式": "Order dispatch method", "选择报修设置": "Select repair report setting", "添加报修设置": "Add repair report setting", "类型名称": "Type name", "说明": "Description" },
"viewReportInfoBackCityInfo": { "添加返省上报": "Add Return to Province Report", "姓名": "Name", "城市名称": "City Name", "返省上报信息": "returning to the province to report the information", "来源地": "origin", "手机号": "mobile phone number", "选择返省上报": "select returning to the province to report", "备注": " Remark", "返回时间": "Return time", "身份证": "ID card" },
"exportCarFeeImportExcel": { "模板导出": "Template export", "全部": "All", "费用项": "Cost item", "停车场": "Parking lot" },
"confirmRenting": { "选填,请填写备注": "Optional,please fill in remarks", "小区": "Community", "取消": "Cancel", "租客": "Tenant", "手工输入": "Manual input", "必填": "Required", "房源": "Housing", "确认租房": "Confirm renting" },
"editFeePrintSpec": { "收据打印说明": " receipt printing instructions", "必填,请填写内容": "required,please fill in the content", "必填,请填写名称": "required,please fill in the name", "取消": "Cancel", "修改打印配置": "Modify print configuration", "规格": "Specification", "名称": "Name", "催缴打印说明": "Call print description", "必填": "Required", "内容": "Content" },
"editPrivilegeGroup": { "必填,请填写员工名称": "Required,please fill in employee name", "编辑权限组": "Edit permission Group", "权限组名称": "authority group name", "取消": "cancel", "权限组描述": "authority group description" },
"editReportCustomComponentFooter": { "修改": "modify", "选填,请填写描述": "Optional,please fill in the description", "必填,请填写名称": "required,please fill in the name", "查询方式": "query method", "取消": " Cancel", "名称": "name", "必填": "required", "选填,请填写执行": "optional,please fill in and execute", "描述": "description" },
"chooseAttrValue": { "查询": "query", "显示": "display", "选择": "select", "操作": "operation", "选择属性值": "select attribute value", "值名称": "value name", "输入属性值名称": "input attribute value name", "值": "value" },
"addPrestoreFee": { "房屋": "house", "状态": "state", "水费": "water bill", "电费": "electricity bill", "备注": "remark", "必填": "required", "预付金额": "prepaid amount", "预付类型": "Prepaid type", "已使用": "Used", "预存对象类型": "Pre-stored object type", "必填,请填写备注": "Required,please fill in remarks", "车位": "Parking space", "必填,请填写预付金额": "required,please fill in the prepaid amount", "添加预付费用": "add prepaid fee", "必填,请填写房屋": "required,Please fill in the house", "取消": " cancel", "未使用": "unused" },
"addTransferStoreView": { "联系电话": "contact number", "转赠说明": "transfer instruction", "使用人": "User", "必填,请填写使用人": "required,please fill in the user", "转赠信息": "transfer information", "转赠对象": "transfer object", "必填,请填写联系电话": "Required,please fill in the contact number", "必填,请填写转赠说明": "Required,please fill in the transfer instructions" },
"viewConvenienceMenusInfo": { "添加便民服务菜单": "Add convenience service menu", "页面路径": "page path", "菜单名称": "menu name", "显示序号": "display serial number", "图片地址": "picture address", "备注": "remarks", "便民服务菜单信息": "convenience service menu information", "选择便民服务菜单": "select convenience service menu" },
"viewServiceRegisterInfo": { "添加服务绑定": "Add Service Binding", "订单类型": "Order Type", "调用方式": "Call Mode", "选择服务绑定": "Select Service Binding", "服务": "Service", "服务绑定信息": "Service binding information", "调用次数": "Number of calls", "应用": "Application" },
"deleteContract": { "确定删除合同信息": " Confirm to delete the contract information", "请确认您的操作": "Please confirm your operation", "点错了": "Wrong click", "确认删除": "Confirm deletion" },
"deleteRoom": { "确认是否删除": "Confirm whether to delete", "请确认您的操作": "Please confirm your operation", "点错了": "Wrong click", "确认删除": "Confirm deletion" },
"recallAuditEnterFinishCommunity": { "确认撤回": "Confirm retraction", "确定撤回审核": "Confirm retraction review", "请确认您的操作": "Please confirm your operation", "点错了": "Wrong click" },
"chooseClueAttr": { "查询": "query", "选择": "select", "选择线索管理": "select lead management", "目前进展情况": "current progress", "操作": "Operation", "输入线索管理名称": "Enter the thread management name", "下一步推进计划": "Next promotion plan", "线索": "Clue" },
"deleteReportCustomComponentRel": { "确定删除报表组件": "Delete report component", "请确认您的操作": "Please confirm your operation", "点错了": "Click wrong", "确认删除": " Confirm to delete" },
"addInspectionItemTitle": { "选项": "option", "增加选项": "add option", "题目": "title", "多选": "multiple choice", "顺序": "Order", "题目类型": "Question type", "必填": "Required", "必填,请填写顺序": "Required,please fill in the order", "必填,请填写题目": "required,please fill in the title", "删除选项": "delete option", "取消": "cancel", "必填,请填写选项内容": "required,please fill in the option", "简答题": "Short answer question", "添加题目": "Add question", "单选": "single choice" },
"editMeterWater": { "选填,请填写备注": "optional,please fill in remarks", "修改抄表": " Modify meter reading", "必填,请填写本期度数": "required,please fill in the degree of this period", "上期度数": "previous period", "本期度数": "Current degree", "上期读表时间": "Last reading time", "备注": "Remarks", "必填,请填写上期读表时间": "Required,please fill in the last reading Table time", "本期读表时间": "The reading time of the current period", "必填,请填写上期度数": "Required,please fill in the degree of the previous period", "必填,请填写本期读表时间": "Required,please fill in the reading time of this issue" },
"deleteCommunity": { "确定删除小区": "Delete community", "请确认您的操作": "Please confirm your operation", "点错了": "Wrong click", "确认删除": "Confirm deletion" },
"commonTop": {},
"writeAdvertMachine": { "设备编码": "Device encoding", "取消": " Cancel", "广告设备码": "advertising device code", "必填,请填写设备编码": "required,please fill in the device code" },
"viewAppInfo": { "应用信息": "application information", "秘钥": "secret key", "白名单": "whitelist", "应用名称": "app name", "黑名单": "blacklist", "添加应用": "add app", "备注": "Remark", "选择应用": "Select application", "应用": "Application" },
"updateStoreState": { "确认": "Confirm", "请确认您的操作": " Please confirm your operation", "确认是否": "Confirm whether", "点错了": "Wrong click" },
"addCouponDetail": { "必填,请填写面值": "Required,please fill in Face value", "购买数量": "purchase quantity", "优惠券": "coupon", "必填,请填写优惠券": "required,please fill in the coupon", "必填,请填写付款金额": "Required,please fill in the payment amount", "优惠券名称": "Coupon name", "面值": "face value", "付款金额": "payment amount", "店铺": "shop", "有效期": "Expiration date", "必填,请填写购买价格": "required,please fill in the purchase price", "必填,请填写有效期": "required,please fill in the expiration date", "必填,请填写店铺ID": "required,please fill in the store ID", "购买价格": "purchase price", "必填,请填写优惠券名称": "required,please fill in the coupon name", "取消": "Cancel", "必填,请填写购买数量": "Required,please fill in the purchase quantity", "添加商家购买记录表": "Add merchant purchase record form" },
"returnPayFee": { "应收金额": "Amount receivable", "缴费时间": " Payment time", "填写退费原因": "Fill in the refund reason", "实收金额": "Actual amount received", "退费原因": "Refund reason", "取消": "Cancommunityation", "缴费": "Payment", "备注": "Remarks", "周期": "Period", "提交退费申请": "Submit refund application", "打折率": "Discount rate" },
"chooseAttendanceClasses": { "输入考勤班组名称": "Enter attendance class name", "班次对象类型": "shift object type", "操作": "operation", "打卡范围": "punch range", "打卡类型": "Pick-in type", "打卡次数": "Pick-in times", "选择考勤班组": "Select attendance team", "早退范围": "Early leave range", "迟到范围": "Late range", "班次对象": "shift object", "查询": "query", "选择": "select", "班次名称": "shift name", "班组": "shift group", "打卡规则": " Punch-in rules" },
"viewWechatMenuInfo": { "菜单类型": "menu type", "添加公众号菜单": "add official account menu", "菜单级别": "menu level", "选择公众号菜单": "Select Official Account Menu", "公众号菜单信息": "Official Account Menu Information", "菜单名称": "Menu Name", "值": "Value", "小程序地址": "Mini Program Address" },
"sellRoom": {},
"deletePrestoreFee": { "请确认您的操作": " Please confirm your operation", "确定删除预付费用": "Delete prepaid fee", "点错了": "Click wrong", "确认删除": "Confirm to delete" },
"editApplicationKey": { "房屋门": "House door", "归属房屋": "Belonging house", "开始时间": "Start Time", "保安": "Security", "其他人员": "Others", "必填,请填写身份证号": "Required,please fill in ID number", "必填,请填写姓名": "required,please fill in your name", "必填": "required", "东大门": "dongdaemun", "保洁": "cleaning", "照片": "photo", "必填,请填写开始时间": "required,please fill in the start time", "姓名": "name", "设备位置": "device location", "必填,请填写结束时间": "required,please Fill in end time", "单元门": "unit door", "年龄": "age", "必填,请填写年龄": "required,please fill in age", "身份证号": "ID number", "钥匙类型": "key type", "结束时间": "end time", "归属单元": "attribution unit", "上传照片": "upload photo", "归属楼栋": "Attribution building", "临时密码": "temporary password", "性别": "gender", "西大门": "west gate", "女": "female", "人脸": "Face", "申请人照片": "Applicant photo", "手机号": "Mobile number", "拍照": "Photo", "固定密码": "Fixed password", "必填,请填写手机号": "Required,please fill in the phone number", "男": "Male", "取消": "Cancel", "北大门": "North Gate", "南大门": "South Gate", "用户类型": "user type", "修改钥匙申请": "key modification application" },
"contractCreateFeeAdd": { "必填,请选择费用类型": "Required, please select a fee type", "必填,请选择收费项目": "Required, please select a charge item", "审核完成": "audit completed", "计费结束时间": "Billing end time", "创建费用": "Create fee", "费用类型": "Charge type", "收费金额": "Charge amount", "必填,请填写收费金额": "required,please fill in the charging amount", "待审核": "to be reviewed", "必填,请填写计费起始时间": "required,please fill in the billing start Time", "审核中": "in review", "合同状态": "contract status", "必填,请填写计费结束时间": "required,please fill in the billing end time", "计费起始时间": "Billing start time", "收费项目": "Charge item" },
"editResourceSupplier": { "供应商名称": "Supplier name", "必填,请填写联系人姓名": "required,please fill in the contact name", "开户行": "account bank", "必填,请填写供应商地址": "required,please fill in the supplier isaddress", "必填,请填写供应商名称": "Required,please fill in the supplier isname", "开户行账号": "account bank account number", "备注": "remarks", "供应商联系方式": "supplier contact information", "联系人姓名": "Contact name", "供应商地址": "Supplier address", "选填,请填写备注": "Optional,please fill in remarks", "选填,请填写开户行账号": "Optional,please fill in the account number of the opening bank", "选填,请填写开户行": "Optional,please fill in the account bank", "修改供应商": "Modify supplier", "必填,请填写供应商联系方式": "Required,please fill in the supplier iscontact information" },
"editStoreInfo": { "地区": "region", "电话": "phone", "商户名称": " Business name", "修改商户信息": "Modify business information", "必填,请填写附近地标": "Required,please fill in nearby landmarks", "附近地标": "Nearby Landmark", "商户名称不能修改": "Business name cannot be modified", "取消": "Cancel", "必填,请填写商户地址": "Required,please fill in the business address", "选择填,请填写x坐标": "Optional,please fill in the x coordinate", "必填,请填写联系电话": "required,please fill in the contact number", "选填,请填写y坐标": "optional,please Fill in the y coordinate", "商户地址": "business address" },
"orgSelect2": { "请选择公司": "please select a company" },
"chooseMachineTranslate": { "查询": "query", "设备编码": "Device Code", "选择": "Select", "同步": "Sync", "对象名称": "Object Name", "对象": "Object", "操作": "Operation", "选择设备同步": "select device sync", "对象类型": "object type", "状态": "state", "设备": "device", "输入设备同步名称": "input device sync name" },
"storesCommunity": { "查询": "query", "小区": "community", "商户小区": "merchant community", "输入小区名称": "input community name", "状态": " Status", "名称": "Name", "地址": "Address" },
"deleteActivitiesRule": { "请确认您的操作": "Please confirm your action", "确定删除活动规则": "OK Delete activity rule", "点错了": "Wrong click", "确认删除": "Confirm deletion" },
"editBasePrivilege": { "必填,请填写资源路径": "Required,please fill in the resource Path", "商户类型": "merchant type", "修改权限": "modification permission", "必填,请填写权限名称": "required,please fill in the permission name", "资源路径": "resource Path", "运营团队": "operation team", "必填": "required", "描述": "description", "选填,请填写描述": "optional,please fill in description", "代理商": "Agent", "取消": "Cancel", "开发团队": "Development team", "权限名称": "authority name", "物业": "property" },
"viewMenuGroupCatalogInfo": { "目录组信息": "Directory Group Information", "菜单组": "Menu Group", "添加目录组": "Add Directory Group", "选择目录组": "Select Directory Group" },
"viewAttendanceClassesInfo": { "班次对象类型": "shift object type", "打卡范围": "punch range", "打卡类型": "punch type", "添加考勤班组": "add attendance team", "打卡次数": "Number of punch cards", "选择考勤班组": "Select attendance team", "班次名称": "shift name", "早退范围": "early leave range", "迟到范围": "late range", "考勤班组信息": "attendance team information", "班次对象": "shift object", "打卡规则": "punch-in rule" },
"addCar": { "出售车辆": "car for sale", "起租时间": "lease start time", "请选择是否是预约车": "Please select whether it is a reserved car", "颜色": "Color", "否": "No", "请填写备注信息": "Please fill in the remarks", "备注": "Remarks", "必填": " required", "是": "yes", "必填,请填写车颜色,如白色": "required,please fill in the color of the car,such as white", "车品牌": "Car brand", "结租时间": "Lease settlement time", "必填,请填写车品牌,如 宝马": "Required,please fill in the car brand,such as BMW", "车牌号": "License plate number", "车辆信息": "Vehicle information", "必填,请填写车牌号": "Required,please fill in the license plate number", "必填,请填写起租时间": "Required,please fill in the starting time", "是否是预约车": "is it a reserved car", "车牌类型": "license plate type", "月租车": "monthly rental", "必填,请填写结租时间": "required,please fill in the closing time", "车类型": " car type" },
"viewCouponPoolInfo": { "池": "pool", "优惠券类型": "coupon Type", "排序": "sort", "选择优惠券池": "select coupon pool", "数量": "quantity", "购买价格": "purchase price", "状态": "status", "优惠券名称": "coupon name", "面值": "face value", "添加优惠券池": "add coupon pool", "优惠券池信息": "coupon pool information", "有效期": "Validity" },
"addLocation": { "小区": "Residential", "房屋": "House", "楼栋": "Building", "单元": "Unit", "位置类型": "Location Type", "必填,请填写位置名称": "Required,please fill in the location name", "必填": "required", "停车场": "parking lot", "位置名称": "location name", "部门": "Department", "添加位置": "Add location", "取消": "Cancel", "岗亭": "Postbox" },
"editShops": { "必填,请填写商铺楼层": " Required,please fill in the store floor", "必填,请填写商铺ID": "required,please fill in the store ID", "起租时间": "lease start time", "修改商铺": "modify store", "室内面积": "Indoor area", "商铺楼层": "Shop floor", "必填,请填写商铺建筑面积": "Required,please fill in the shop floor area", "截租时间": " Lease cut-off time", "必填,请填写租金": "required,please fill in the rent", "请填写备注信息": "please fill in the remarks", "必填,请填写商铺编号": "required ,please fill in the shop number", "建筑面积": "building area", "必填,请填写室内面积": "required,please fill in the interior area", "备注": "remarks", "请填写算费系数": "Please fill in the calculation coefficient", "商铺编号": "Shop No.", "算费系数": "Calculation coefficient", "必填,请填写起租时间": "Required,please fill in Lease start time", "必填,请填写截租时间": "required,please fill in the lease closing time", "租金": "rent", "商铺": "shop" },
"viewOaWorkflowInfo": { "选择流程实例": "Select process instance", "流程名称": "process name", "流程类型": "process type", "流程实例信息": "process instance information", "备注": "remark", "添加流程实例": "Add process instance" },
"viewContractTypeInfo": { "合同类型信息": "Contract type information", "选择合同类型": "Select contract type", "是否审核": "Whether Review", "添加合同类型": "Add Contract Type", "类型名称": "Type Name", "描述": "Description" },
"viewAccountBondObjInfo": { "保证金": "Margin", "选择保证金对象": "Select Margin Object", "添加保证金对象": "Add Margin Object", "应收金额": "Receivable Amount", "保证金对象": "Margin Object", "实收金额": " Amount received", "保证金对象信息": "Security deposit object information" },
"addApplyRoomDiscount": { "房屋": "House", "必填,请填写申请说明": "Required,please fill in the application description", "开始时间": " start time", "必填": "required", "申请电话": "application phone", "电话申请": "telephone Application", "请选择费用项目": "Please select the fee item", "必填,请填写开始时间": "Required,please fill in the start time", "申请类型": "Application type", "必填,请填写申请电话": "required,please fill in the application telephone number", "费用项目": "expense item", "必填,请填写结束时间": "required,please fill in the end time", "申请说明": "Application description", "必填,请填写房屋 楼栋-单元-房屋": "required,please fill in the building-unit-house", "必填,请填写申请人": "required ,please fill in the applicant", "结束时间": " end time", "申请人": "applicant" },
"viewSmallWeChatInfo": { "添加小程序管理": "Add Mini Program Management", "应用密钥": "application key", "支付密码": "payment password", "小程序名称": "mini program name", "小程序管理信息": "mini program management information", "选择小程序管理": "Select Mini Program Management" },
"editSmsConfig": { "不记录": "Do not record", "修改短信配置": "Modify SMS configuration", "必填,请填写访问KEY": "Required Fill in,please fill in the access KEY", "备注": "remarks", "必填,请填写短信秘钥": "required,please fill in the SMS key", "必填,请填写短信签名": "required Fill in,please fill in SMS signature", "短信签名": "SMS signature", "必填,请选择短信业务": "Required,please select SMS service", "短信秘钥": "SMS key", "访问": "Access", "日志": "Log", "必填,请选择日志": "Required,please select log", "腾讯": "Tencent", "短信业务": "SMS service", "工单通知": "Work order notification", "必填,请填写短信模板": "Required,please fill in SMS template", "必填,请选择短信商": "Required,please select SMS provider", "欠费催缴": "Arrears reminder", "短信模板": "SMS template", "区域": "Area", "选填,请填写备注": "Optional,please Fill in remarks", "记录": "record", "必填,请填写区域": "required,please fill in the area", "取消": "cancel", "短信商": "SMS provider", "阿里": "Ali" },
"reportHuaningOweFeeDetail": { "总未收金额": "Total outstanding amount", "费用截止时间": "Expense deadline", "房号": "Room number", "月收费": "Monthly charge", "年": "Year", "年前未收金额": "Unpaid amount before year", "单价": "Unit price", "月未收金额": " Monthly unpaid amount", "费用开始时间": "Expense start time", "面积": "Area" },
"chooseShopRange": { "查询": "Query", "是否默认": "Is it default", "选择": "Select", "操作": "Operation", "是否展示": "Display", "显示序号": "Display serial number", "备注": "Remarks", "选择经营范围": "Select business scope", "范围名称": "scope name", "店铺类型": "shop type", "输入经营范围名称": "enter business scope name", "店铺经营范围": "shop business scope" },
"editReportCustomComponent": { "修改": "Modify", "选填,请填写执行sql": "Optional,please fill in and execute sql", "必填,请选择组件类型": "Required,Please select the component type", "表格": "Form", "组件名称": "Component name", "查询方式": "Query method", "必填,请选择查询方式": "Required,please select Query method", "选填,请填写执行java脚本代码": "optional,please fill in the execution java script code", "饼状图": "pie chart", "描述": "description", "选填,请填写描述": "Optional,please fill in the description", "组件类型": "Component type", "必填,请填写组件名称": "Required,please fill in the component name", "取消": " Cancel" },
"batchAddFloor": { "楼栋开始编号": "Building start number", "批量添加楼栋": "Batch adding buildings", "必填,请填写楼栋结束编号": "required,please fill in the building end number", "取消": "cancel", "备注": "remarks", "必填,请填写楼栋开始编号": "required,please fill in the building start No.", "楼栋结束编号": "Building end number", "可填,请填写备注": "Can be filled,please fill in the remarks" },
"deleteWechatSmsTemplate": { "确定删除微信模板": "OK Delete WeChat template", "请确认您的操作": "Please confirm your operation", "点错了": "Wrong click", "确认删除": "Confirm deletion" },
"chooseCouponDetail": { "购买数量": " purchase quantity", "操作": "operation", "优惠券": "coupon", "选择商家购买记录表": "select merchant purchase record", "优惠券名称": " Coupon name", "面值": "face value", "付款金额": "payment amount", "商家购买记录表": "merchant purchase record", "店铺": "shop", "有效期": " Validity period", "查询": "query", "选择": "select", "记录": "record", "购买价格": "purchase price", "输入商家购买记录表名称": "Enter the name of the merchant purchase record" },
"addPrivilegeView": { "必填,请填写资源路径": "Required,please fill in the resource path", "商户类型": "merchant type", "必填,请填写权限名称": "Required,please fill in the permission name", "资源路径": "Resource path", "运营团队": "Operation team", "必填": "Required", "描述": "Description", "菜单权限": "Menu Authority", "选填,请填写描述": "Optional,please fill in the description", "商家": "merchant", "开发团队": " Development team", "权限名称": "authority name", "物业": "property", "跑腿": "errands" },
"chooseEnterCommunity": { "查询": "query", "小区": "community", "选择": "Select", "操作": "Operation", "输入小区名称": "Enter community name", "名称": "Name", "地址": "Address", "切换小区": "Switch community" },
"editComponentCondition": { "修改": "modify", "参数": "parameter", "提示": "prompt", "名称": "name", "文本框": " Text box", "必填": "required", "描述": "description", "必填,请填写排序": "required,please fill in the sort", "排序": "sort", "选填,请填写描述": "Optional,please fill in the description", "必填,请填写名称": "Required,please fill in the name", "日期": "Date", "取消": "Cancel", "必填,请填写提示": "Required,please fill in the prompt", "必填,请填写参数": "Required,please fill in the parameter", "类型": "Type" },
"deleteActivitiesType": { "确定删除信息大类": "Delete information category", "请确认您的操作": "Please confirm your operation", "点错了": "Click wrong", "确认删除": " Confirm delete" },
"editContractCollectionPlan": { "选填,请填写备注": "Optional,please fill in remarks", "必填,请填写计划名称": "Required,please fill in plan name", "必填,请填写合同号": "Required,please fill in the contract number", "计划名称": "plan name", "合同号": "contract number", "取消": "cancel", "备注": "Remarks", "修改收款计划": "Modify Collection Plan", "必填": "Required", "费用": "Expenses", "计划费用": "Plan Expenses" },
"deleteActivities": { "确定删除活动": "Delete activity", "请确认您的操作": "Please confirm your operation", "点错了": "Click wrong", "确认删除": "Confirm deletion" },
"chooseMenu": { "查询": "", "选择": "", "输入菜单名称": "", "序列": "", "菜单显示": "", "操作": "", "选择菜单": "", "菜单名称": "", "菜单": "", "菜单地址": "", "描述": "" },
"deleteMenuGroupCatalog": { "请确认您的操作": "Please confirm your operation", "确定删除目录组": "Delete catalog group", "点错了": "Wrong click", "确认删除": "Confirm deletion" },
"chooseAttrSpec": { "输入属性配置名称": "Enter attribute configuration name", "操作": "Operation", "规格": "Specification", "规格名称": "Specification Name", "说明": "Description", "必填": "Required", "查询显示": "Query Display", "展示": "Display", "查询": "Query", "值类型": "value type", "选择": "select", "选择属性配置": "select attribute configuration", "属性表": "attribute table", "规格类型": "specification type" },
"visitOwnerRepair": { "满意": "Satisfaction", "满意度": "Return Visit Content", "回访内容": "Dissatisfied", "不满意": "required,please fill in the return visit content", "必填,请填写回访内容": "return visit", "回访": "required", "必填": "" },
"editResourceStoreType": { "修改物品类型": "modify item type", "必填,请填写物品类型编码": " required,please fill in the item type code", "物品描述": "item description", "必填,请填写物品类型名称": "required,please Fill in item type name", "物品类型名称": "item type name", "选填,请填写物品描述": "optional,please fill in item description", "物品类型编码": "item type code" },
"addNoticeView": { "公告类型": "announcement type", "小区": "community", "楼栋": "building", "归属房屋": "home", "单元": "unit", "开始时间": "Start time", "新公告": "New announcement", "关注用户": "Follow users", "必填": "Required", "必填,请填写开始时间": "Required,please fill in the start time", "员工通知": "Employee notice", "业主通知": "Owner notice", "全小区公告": "All community notice", "必填,请填写结束时间": "Required,please fill in the end time", "结束时间": "end time", "公告范围": "announcement range", "房屋": "house", "归属单元": "attribution unit", "必填,请填写标题": "Required,please fill in the title", "业主微信": "Owner WeChat", "否": "No", "归属楼栋": "Belonging Building", "是": "Yes", "必填,请填写公告内容": "required,please fill in the announcement content", "公告内容": "announcement content", "标题": "title" },
"editFeePrintPage": { "修改": "Modify", "必填,请填写名称": "required,please fill in the name", "取消": "cancel", "名称": "name", "必填": "required", "收据页面": "Receipt page" },
"viewBasePrivilegeInfo": { "商户类型": "merchant type", "添加权限": "add permission", "选择权限": "select permission", "权限信息": "Permission information", "描述": "Description", "权限名称": "Permission name" },
"addFeeConfig": { "必填,请选择计算公式": "Required,please select the calculation formula", "费用类型": "Expense Type", "添加": "Add", "说明": "Description", "必填,请选择费用标识": "Required,please select the expense ID", "必填,请选择付费类型": "Required,please select the payment type", "缴费周期": "Payment period", "必填,请填写计费终止时间": "Required,please fill in the billing termination time", "必填,请选择催缴类型": "Required,please select the type of reminder", "费用标识": "Expense ID", "催缴类型": "Dumping type", "计费终止时间": "Billing termination time", "必填,请选择费用类型": "required,please select a fee type", "付费类型": "payment type", "必填,请填写缴费周期 单位为月": "Required,please fill in the payment cycle unit as month", "公式": "Formula", "计算公式": "Calculation formula", "必填,请填写计费起始时间": "Required Fill in,please fill in the starting time of billing", "计费单价": "billing unit price", "必填,请填写公式": "required,please fill in the formula", "必填,请填写收费项目": "Required,please fill in the charge item", "计费起始时间": "Billing start time", "必填,请填写计费单价": "Required,please fill in the billing unit price", "必填,请填写附加费用": "Required,please fill in additional fees", "收费项目": "Charge items" },
"editInspectionPoint": { "选填,请填写备注": "Optional,please fill in Remarks", "巡检点名称": "inspection point name", "选填,请填写nfc编码": "optional,please fill in nfc code", "修改巡检点": "modify inspection point", "必填,请选择巡检项目": "required,please select the inspection item", "巡检类型": "inspection type", "备注": "remark", "位置": " Location", "巡检项目": "inspection item", "必填,请填写巡检点名称": "required,please fill in the name of the inspection point", "必填,请选择巡检类型": "Required,please select the type of inspection", "巡检设备": "inspection equipment" },
"editContract": { "开始时间": "start time", "合同类型": "contract type", "甲方": "Party A", "乙方": "Party B", "必填,请填写经办人": "required,please fill in the manager", "必填": "required", "乙方联系人": "Party B contact person", "经办人": "manager", "必填,请填写开始时间": "required,please fill in the start time", "必填,请填写乙方联系人": "Required,please fill in Party B contact person", "必填,请填写甲方": "Required,please fill in Party A", "编辑合同": "Edit contract", "联系电话": "Contact phone number", "必填,请填写乙方联系电话": "required,please fill in the contact number of Party B", "必填,请填写签订时间": "required,please fill in the signing time", "必填,请填写结束时间": "required,please fill in the end time", "必填,请填写甲方联系人": "required,please fill in the contact of Party A", "必填,请填写甲方联系电话": "Required,please fill in the contact number of Party A", "选填,请填写合同金额": "optional,please fill in the contract amount", "合同编号": "contract number", "必填,请填写合同编号": "required,please fill in the contract number", "必填,请填写联系电话": "required,please fill in the contact number", "结束时间": "end time", "签订时间": "Signing time", "甲方联系人": "Party A contact person", "乙方联系电话": "Party B contact number", "个": "a", "删除附件": "delete attachment", "第": "Article", "必填,请填写乙方": "Required,please fill in Party B", "合同金额": "Contract Amount", "添加附件": "Add Attachment", "必填,请填写合同名称": "Required,please fill in the contract name", "合同附件": "Contract attachment", "甲方联系电话": "Party A phone number", "取消": "Cancel", "合同名称": "contract name" },
"chooseReportCustomComponentFooter": { "查询": "query", "选择": "select", "操作": "operation", "选择组件统计": "select component statistics", "输入组件统计名称": "Enter component statistics name", "查询方式": "query method", "名称": "name", "执行": "execution", "统计": "statistic", "组件": "Component", "描述": "description" },
"viewMenuGroupInfo": { "组名称": "group name", "菜单组信息": "menu group information", "序列": "Sequence", "标签": "label", "选择菜单组": "select menu group", "添加菜单组": "add menu group", "描述": "description" },
"addVisitCase": { "白事": "White event", "访客拜访事由": "Visitor isreason", "喜事": "Happy event", "拍照": "Take photo", "上传照片": "Upload photo", "请填写访客拜访事由": "Please fill in the visitor isreason", "添加访客拜访事由": "Add the visitor isreason", "事由类型": "Cause type", "必填": "Required", "照片信息": "Photo information", "访客照片": "Visitor photo" },
"viewImage": {},
"payFeeUserAccount": { "账户金额": "Account amount", "账户名": "Account name", "操作": "Operation", "元": "Meta", "预存": "Pre-save", "账户类型": "Account Type", "账户信息": "Account Information" },
"editPropertyCommunity": { "开通小区": "Activate community", "功能": "Function", "取消": "Cancel", "全部": " All", "修改小区功能": "Modify community function" },
"deleteMenuGroup": { "确定删除菜单组": "Delete menu group", "请确认您的操作": "Please confirm your operation", "点错了": "Wrong click", "确认删除": "Confirm deletion" },
"addReportCustomComponent": { "选填,请填写执行sql": "Optional,please fill in and execute sql", "必填,请选择组件类型": "Required,please select a component Type", "表格": "form", "组件名称": "component name", "查询方式": "query method", "添加": "add", "必填,请选择查询方式": " Required,please select the query method", "选填,请填写执行java脚本代码": "optional,please fill in the execution java script code", "饼状图": "pie chart", "描述": " Description", "选填,请填写描述": "optional,please fill in the description", "组件类型": "component type", "必填,请填写组件名称": "required,please fill in the component name", "取消": "Cancel" },
"parkingAreaControlFee": { "车辆": "Vehicle", "开门说明": "Opening Instructions", "临时车收费": "Temporary Vehicle Charges", "收费二维码": "Charge QR code", "开门状态": "Opening status", "实收": "Actual receipt", "开门": "Opening", "停车时间": "Parking time", "车牌号": "License plate number", "应收": "receivable", "备注": "remarks", "收费信息": "charging information" },
"carCreateFeeAdd": { "必填,请选择收费项目": "Required, please select a charge item", "必填,请选择费用类型": "Required, please select a fee type", "小区": "Community", "计费结束时间": "Billing End Time", "创建费用": "Create Fee", "费用类型": "Fee Type", "已出售": "Sold", "必填": "Required", "必填,请填写收费范围": "Required, please fill in the charge range", "必填,请填写计费起始时间": "Required, please fill in the start time of the billing", "停车场": "Parking lot", "收费范围": "Charge range", "车辆": "Car", "必填,请填写计费结束时间": "Required, please fill in the billing end time", "车位状态": "Parking space status", "计费起始时间": "Billing start time", "已出租": "Rented", "收费项目": "Charge project" },
"addOrgCommunity": { "查询": "query", "小区": "community", "添加隶属小区": "add subordinate community", "小区名称": "Community name", "输入小区名称": "Enter the community name", "小区地址": "Community address", "取消": "Cancel" },
"contractChangeLease": { "开始时间": "Start time", "必填,请填写结束时间": "required,please fill in the end time", "租期调整": "lease adjustment", "结束时间": "end time", "必填,请填写开始时间": "required,please fill in the start time" },
"addMachineType": { "设备大类": "equipment category", "设备类型名称": "equipment type name", "必填,请填写设备类型名称": "required,please fill in the device type name", "取消": "cancel", "添加设备类型": "add device type", "必填": "required" },
"editQuestionAnswerTitle": { "修改": "modify", "选项": "option", "增加选项": "add option", "多选": "multiple choice", "顺序": " order", "问卷题目": "Questionnaire question", "题目类型": "question type", "必填": "required", "必填,请填写顺序": "required,please fill in the order", "删除选项": " Delete option", "必填,请填写问卷题目": "required,please fill in the questionnaire title", "取消": "cancel", "必填,请填写选项内容": "required,please fill in the options", "简答题": "Short answer question", "单选": "single choice" },
"addParkingSpaceApply": { "汽车品牌": "car brand", "起租时间": "start time", "颜色": "color", "车辆类型": "car type", "备注": "remark", "必填": "required", "家用小汽车": "family car", "货车": "Truck", "客车": "Passenger", "必填,请填写颜色": "required,please fill in the color", "选填,请填写备注": "optional,please fill in the remarks", "必填,请填写申请人电话": "required,please fill in the applicant Telephone", "结租时间": "Rental closing time", "取消": "Cancel", "添加车位申请": "Add parking space application", "车牌号": "License plate number", "必填,请填写车牌号": "required,please fill in the license plate number", "必填,请填写起租时间": "required,please fill in the starting time", "必填,请填写汽车品牌": "required ,please fill in the car brand", "申请人电话": "applicant phone", "必填,请填写申请人": "required,please fill in the applicant", "必填,请填写结租时间": "Required,please fill in the lease settlement time", "申请人": "Applicant" },
"editServiceRegister": { "服务ID": "Service ID", "订单类型": "Order Type", "必填,请填写服务ID": "required,please fill in the service ID", "修改服务绑定": "modify service binding", "异步方式": "asynchronous mode", "必填": "required", "查询": "query", "调用方式": "call method", "业务受理": "business acceptance", "必填,请填写调用次数": "required,please fill in the number of calls", "取消": "Cancel", "应用ID": "App ID", "同步方式": "Synchronization method", "必填,请填写应用ID": "Required,please fill in the application ID", "调用次数": "Number of calls" },
"chooseParkingArea": { "查询": "query", "选择": "select", "操作": "operation", "选择停车场": "select parking lot", "停车场编号": "Parking lot number", "输入停车场编号": "Enter parking lot number", "停车场": "Parking lot", "停车场类型": "Parking type" },
"viewActivitiesRuleInfo": { "活动类型": "activity type", "选择活动规则": "select activity rule", "开始时间": "start time", "规则名称": "rule name", "添加活动规则": "Add activity rule", "规则说明": "rule description", "活动对象": "activity object", "结束时间": "end time", "活动规则信息": "activity rule information" },
"addHousekeepingType": { "商城": "mall", "站内": "inside", "添加": "add", "菜单名称": "menu name", "选择商品": "select product", "必填": "required", "店铺": "shop", "站外": "outside", "必填,请填写菜单名称": "required,please fill in the menu name", "标签": "Label", "选填,请填写标签": "Optional,please fill in the label Sign", "小图标logo": "Small icon logo", "请选择商品": "Please select a product", "否": "No", "选填,请填写URL": "Optional,please fill in URL", "请选择店铺": "Please select a store", "服务描述": "Service description", "必填,请填写排序": "Required,please fill in the order", "是": "Yes", "显示": "display", "商品": "product", "排序": "sort", "必填,请选择跳转类型": "required,please select the jump type", "服务": "Service", "取消": "Cancel", "跳转类型": "Jump type", "选择店铺": "Select shop", "选填,请填写服务描述": "Optional,please Fill in the service description", "必填,请选择类型": "required,please select the type", "类型": "type" },
"paginationPlus": { "共": "total" },
"addMachineAuth": { "最美员工": "the most beautiful employee", "开始时间": "start time", "员工": "employee", "设备": "equipment", "必填,请填写结束时间": "required ,please fill in the end time", "取消": "cancel", "门禁授权": "access control authorization", "必填": "required", "结束时间": "end time", "必填,请填写开始时间": "required,please fill in the start time" },
"parkingAreaControlInCar": { "进场状态": "arrival status", "在场时间": "present time", "车辆状态": "car Status", "元": "yuan", "进场时间": "entry time", "分": "minute", "车牌号": "license plate number", "停车费用": "parking fee", "必填,请填写车牌号": "required,please fill in the license plate number", "小时": "hour", "请选择车辆状态": "please select the car status", "进出场": "in Appearance" },
"deleteMenuCatalog": { "确定删除菜单目录": "Delete menu catalog", "请确认您的操作": "Please confirm your operation", "点错了": "Click wrong", "确认删除": "Confirm to delete" },
"deleteSystemGoldSetting": { "确定删除金币设置": "Confirm to delete gold coin setting", "请确认您的操作": "Please confirm your operation", "点错了": "Click wrong", "确认删除": "Confirm deletion" },
"addRentingConfig": { "每月租金比例": "Monthly rent ratio", "必填,请填写业主收费比率": "Required,please fill in the landlord ischarge rate", "必填,请填写租客收费比率": "Required,please fill in the tenant charge rate", "整租": "Whole rent", "物业分账比率": "Property split ratio", "添加": "Add", "服务费": "Service fee", "必填,请填写服务费": "Required,please fill in the service fee", "运营分账比率": "Operational accounting ratio", "租客收费比率": "Tenant charge ratio", "必填,请填写运营分账比率": "required,please fill in the operating accounting ratio", "必填": "required", "固定值": "fixed value", "必填,请填写物业分账比率": "Required,please fill in the property split ratio", "必填,请填写代理商分账比率": "Required,please fill in the agent issplit ratio", "收费公式": "Charge formula", "取消": "Cancel", "代理商分账比率": "Agent isshare ratio", "合租": "Shared rent", "租聘类型": "Rental type", "业主收费比率": "owner charge rate" },
"editCarBlackWhite": { "白名单": "whitelist", "开始时间": "start time", "名单类型": "list type", "黑名单": "Blacklist", "修改名单": "Modify List", "必填,请填写结束时间": "Required,please fill in the end time", "取消": "Cancel", "车牌号": "License plate number", "必填,请填写车牌号": "required,please fill in the license plate number", "必填": "required", "结束时间": "end time", "必填,请填写开始时间": "Required,please fill in the start time" },
"roomDecorationRecord": { "房屋": " house", "上传图片": "upload picture", "上传视频": "upload video", "状态": "status", "否": "no", "必填,请填写房屋": "required,please fill in the house", "备注": "remarks", "请填写备注": " Please fill in the remarks", "装修跟踪": "Renovation tracking", "请选择是否违规": "Please choose whether to violate the rules", "是否违规": "Whether the violations", "是": "Yes" },
"deleteMachine": { "确定删除设备": "Delete device", "请确认您的操作": "Please confirm your operation", "点错了": "Wrong click", "确认删除": "Confirm Delete" },
"deleteUnit": { "确定删除小区单元": "Delete community unit", "请确认您的操作": "Please confirm your operation", "点错了": "Wrong click", "确认删除": "Confirm deletion" },
"addCommunitySetting": { "选填,请填写备注": "Optional,please fill in the remarks", "必填,请选择配置类型": "Required,Please select configuration type", "配置名称": "configuration name", "配置取值": "configuration value", "配置KEY": "configuration key", "添加": "add", "取消": "Cancel", "必填,请填写配置取值": "Required,please fill in the configuration value", "备注": "Remarks", "配置类型": "Configuration type", "必填,请选择配置名称": "Required,please select the configuration name", "必填,请填写配置KEY": "Required,Please fill in the configuration KEY" },
"addReportCustomComponentRel": { "必填,请填写组件": "required,please fill in the component", "必填,请填写组件序号": "required,please fill in the component serial number", "取消": "Cancel", "关联": "Associate", "组件": "Component", "选择组件": "Select Component", "组件序号": "Component Serial Number" },
"chooseCamera": { "设备编码": "Device Code", "选择": "Select", "设备名称": "Device Name", "设备": "Device", "选择摄像头": "Select Camera", "版本号": "version number" },
"chooseMachine": { "查询": "query", "设备编码": "device code", "选择": "select", "设备名称": "device name", "操作": "Operation", "选择设备": "Select Device", "设备": "Device", "输入设备名称": "Enter Device Name", "版本号": "Version Number", "设备类型": "device type", "鉴权编码": "authentication code" },
"viewInspectionPlanInfo": { "计划名称": "plan name", "开始时间": "start time", "状态": "status", "巡检计划信息": "inspection plan information", "执行人员": "executor", "巡检路线": "inspection route", "执行周期": "execution cycle", "备注": "Remarks", "添加巡检计划": "Add inspection plan", "签到方式": "Sign-in method", "结束时间": "End time", "选择巡检计划": "Select inspection plan Inspection plan" },
"deleteContractPartya": { "确定删除合同甲方": "Delete Contract Party A", "请确认您的操作": "Please confirm your operation", "点错了": "Click Wrong", "确认删除": "Confirm delete" },
"editServiceImpl": { "必填,请选择调用类型": "Required,please select the call type", "选填,请填写kafka主题": "Optional,please fill in the kafka topic", "业务名称": "business name", "修改服务实现": "modify service implementation", "必填,请填写重试次数": "required,please fill in Number of retries", "描述": "description", "超时时间": "timeout", "微服务POST方式": "microservice POST method", "选填,请填写描述": "optional,Please fill in the description", "必填,请填写业务名称": "required,please fill in the business name", "必填,请填写超时时间": "required,please fill in the timeout time", "必填,请填写调用地址": "required,please fill in the calling address", "重试次数": "retry times", "取消": "cancel", "调用类型": "Call Type", "调用地址": "Call Address" },
"weChatAttr": { "公众号信息": "Official Account Information", "修改": "Modify", "服务器地址": "Server address" },
"addVisit": { "选填,请填写随行人数": "Optional,please fill in the number of guests", "开始时间": "Start time", "访客联系方式": "Visitor Contact information", "随行人数": "Number of people accompanying", "必填,请填写访客联系方式": "Required,please fill in the contact information of the visitor", "添加访客": "Add a visitor", "必填": "required", "性别": "gender", "必填,请填写开始时间": "required,please fill in the start time", "选填,请填写访客车牌号": "optional,please Fill in the visitor islicense plate number", "女": "female", "访客姓名": "visitor isname", "男": "male", "必填,请填写结束时间": "required,please fill in the end time", "车牌号": "License plate number", "结束时间": "end time", "必填,请填写访客姓名": "required,please fill in the visitor isname" },
"viewParkingBoxInfo": { "岗亭名称": "Name of guard booth", "是否收费": "Whether to charge", "黄牌车进场": "Yellow-licensed car", "临时车是否进场": "Temporary car", "备注": "Remarks", "添加岗亭": " Add guard booth", "岗亭信息": "Guard booth information", "选择岗亭": "Select guard booth", "蓝牌车进场": "Blue car entering the field" },
"deletePropertyCommunity": { "确定退出小区": "Confirm to exit the community", "请确认您的操作": "Please confirm your operation", "确认退出": "Confirm to exit", "点错了": "Click wrong" },
"deleteFeePrintSpec": { "确定删除打印配置": "Delete print configuration", "请确认您的操作": "Please confirm your operation", "点错了": "Wrong click", "确认删除": "Confirm delete" },
"chooseRentingConfig": { "操作": "Operation", "物业分账比率": "Property sharing ratio", "选择租聘设置": " Select lease setting", "服务费": "Service fee", "运营分账比率": "Operation account sharing ratio", "租客收费比率": "Tenant charging ratio", "查询": "Query", "选择": "Select", "配置": "Configuration", "收费公式": "Charging formula", "输入租聘设置名称": "Enter rental setting name", "代理商分账比率": " Agent split ratio", "租聘类型": "Rent Type", "业主收费比率": "Owner Charge Rate" },
"editCommunitySetting": { "选填,请填写备注": "Optional,please fill in the remarks", "修改": "Modify", "配置名称": "Configuration name", "配置取值": "Configuration value", "配置KEY": "Configuration KEY", "取消": "Cancel", "必填,请填写配置取值": "required,please fill in the configuration value", "备注": "remarks", "必填,请填写配置名称": "required,please fill in the configuration name", "必填,请填写配置KEY": "Required,please fill in the configuration KEY" },
"viewReportCustomComponentFooterInfo": { "添加组件统计": "Add component statistics", "选择组件统计": "Select component statistics", "查询方式": "Query mode", "组件统计信息": "component statistics", "名称": "name", "执行": "execution", "组件": "component", "描述": "description" },
"editNoticeView": { "公告类型": "Notice Type", "必填,请填写标题": "Required,please fill in the title", "开始时间": "Start Time", "必填": "required", "必填,请填写开始时间": "required,please fill in the start time", "员工通知": "employee notice", "修改公告": "modification notice", "必填,请填写公告内容": "required,please fill in the announcement content", "业主通知": "proprietor notice", "必填,请填写结束时间": "required,please fill in the end time", "公告内容": "Announcement content", "标题": "title", "业主微信通知": "owner WeChat notification", "结束时间": "end time" },
"parkingSpaceFee": { "停车费": "parking fee", "应收金额": "Amount receivable", "缴费时间": "Payment time", "请选择开始时间": "Please select a start time", "实收金额": "Actual amount", "缴费": "Payment", "备注": "Remarks", "周期": "Period", "缴费历史": "Payment History", "请选择结束时间": "Please select the end time", "马上查询": "Check now", "打折率": "Discount rate" },
"machineRecordDetail": { "必填,请填写开门记录ID": "Required,please fill in the door opening record ID", "人脸照片": "Face photo", "必填,请填写用户手机号": "required,please fill in the user mobile number", "必填,请填写用户名称": "required,please fill in the user name", "必填,请填写设备编码": "Required,please fill in the device code", "必填,请填写设备ID": "Required,please fill in the device ID", "用户手机号": "User mobile phone number", "用户名称": "User name", "身份证": "ID card", "设备编码": "Device code", "设备ID": "Device ID", "开门方式": "Opening method", "关闭": "Close", "必填,请填写身份证": "Required,please fill in ID card", "开门详情": "Opening details", "必填,请填写开门方式": "required,please fill in the opening method", "开门记录": "opening record" },
"addResourceStoreSpecification": { "必填,请填写规格名称": "required,please fill in the specification Name", "选填,请填写描述": "optional,please fill in the description", "添加物品规格": "add item specification", "请选择二级分类": "please select a secondary category", "请选择物品类型": "Please select item type", "规格名称": "specification name", "商品类型": "product type", "描述": "description" },
"addContractPartya": { "甲方联系人": "Party A Contact", "必填,请填写甲方": "Required,please fill in Party A", "联系电话": "Contact phone number", "添加": "Add", "取消": "Cancel", "甲方": "Party A", "必填,请填写甲方联系人": "required,please fill in the contact of Party A", "必填,请填写联系电话": "required,please fill in the contact number" },
"addInspectionRoute": { "选填,请填写备注": "optional,please fill in the remarks", "必填,请填写路线名称": "required,please Fill in the route name", "顺序": "order", "添加": "add", "路线名称": "route name", "备注": "remark", "必填,请填写检查项数量": "required,please fill in the number of check items" },
"editAttrSpec": { "必填,请填写说明": "required,please fill in the description", "字符串": "string", "否": " No", "小区属性": "Community attribute", "规格名称": "Specification name", "说明": "Description", "必填": "Required", "设备属性": "Equipment attribute", "查询显示": "query display", "修改属性配置": "modify property configuration", "展示": "display", "是": "yes", "值类型": "value type", "整数": "Integer", "必填,请填写规格名称": "required,please fill in the specification name", "停车场属性": "parking lot attribute", "属性表": "attribute table", "房屋属性": "house attribute", "业主属性": "owner attribute", "车辆属性": "car attribute", "金额": "amount", "规格类型": "specification type" },
"chooseInspectionPoint": { "查询": "Query", "选择巡检点": "Select inspection point", "巡检点名称": "inspection point name", "选择": "select", "操作": "operation", "输入巡检点名称": "input Inspection point name", "巡检点": "inspection point", "备注": "remark" },
"chooseWechatSmsTemplate": { "查询": " query", "选择": "select", "操作": "Operation", "微信模板": "WeChat Template", "输入微信模板名称": "Enter Wechat Template Name", "说明": "Description", "模板类型": "Template Type", "选择微信模板": "Select Wechat Template" },
"parkingAreaControlCarInouts": { "进场状态": "Access Status", "车辆状态": "Vehicle Status", "进场时间": "Access Time", "进出场编号": "Entry and exit number", "出场时间": "Exit time", "停车时间": "Parking time", "分": "Min", "车牌号": "License plate number", "收费金额": "Toll amount", "必填,请填写车牌号": "Required,please fill in the license plate number", "小时": "Hour", "请选择车辆状态": "Please select the car Status" },
"editVisit": { "选填,请填写离开时间": "optional,please fill in the departure time", "访客联系方式": "visitor contact information", "访客来访事由": "visitor visit Reason", "修改访客": "Modify visitor", "访客性别": "Visitor isgender", "访客来访时间": "Visitor isvisit time", "选填,请填写联系方式": "Optional,please Fill in the contact information", "女": "female", "访客姓名": "visitor isname", "男": "male", "选填,请填写来访时间": "optional,please fill in the visit time", "选填,请填写访客来访事由": "optional,please fill in the reason for the visitor isvisit", "必填,请填写访客姓名": "required,please fill in the visitor isname", "请选择访客性别": "Please select the gender of the visitor", "访客离开时间": "visitor departure time" },
"editConvenienceMenus": { "选填,请填写备注": "optional,please fill in the remarks", "修改": "modify", "选填,请填写页面路径": "optional,please fill in the page path", "必填,请填写菜单名称": "required,please fill in the menu name", "页面路径": "page path", "必填,请填写显示序号": "required,please fill in the display serial number", "菜单名称": "menu name", "显示序号": "display serial number", "取消": "cancel", "图片地址": "image address", "备注": "remark" },
"searchParkingSpace": { "查询": "query", "选择": "select", "操作": "operation", "请输入车牌号": "Please input the license plate number", "请输入停车场": "Please input the parking lot", "车位状态": "Parking status", "车位": "Parking", "请输入停车位编号": " Please enter parking space number", "车位编码": "parking space code", "选择停车位": "select parking space", "车位类型": "parking space type", "面积": "area" },
"viewReportCustomComponentRelInfo": { "添加报表组件": "Add report component", "报表编号": "report number", "报表组件信息": "report component information", "选择报表组件": "select report component", "组件": "Component", "组件序号": "Component serial number" },
"editWechatSmsTemplate": { "必填,请填写微信模板": "Required,please fill in the WeChat template", "停电通知": "Power outage Notice", "微信模板": "WeChat Template", "修改微信模板": "Modify Wechat Template", "选填,请填写说明": "Optional,please fill in the description", "模板对象": "Template Object", "取消": "Cancel", "说明": "Description", "模板类型": "Template Type", "停水通知": "Water Outage Notice", "必填": "Required", "欠费催缴": "Arrears reminder" },
"loading": {},
"choosePropertyCompany": { "查询": "query", "选择": "select", "操作": " Operation", "选择物业公司": "Select property company", "输入物业公司名称": "Enter property company name", "电话": "Telephone", "成立日期": "Establishment date", "名称": "Name", "地址": "Address", "公司法人": "Company Legal Person", "地标": "Landmark", "编号": "Number" },
"deleteFeeDiscount": { "请确认您的操作": "Please confirm your operation", "确定删除费用折扣": "Delete fee discount", "点错了": "Wrong click", "确认删除": "Confirm deletion" },
"editOwner": { "修改信息": "Modify information", "手机": "Mobile phone", "上传照片": "Upload photo", "名称": "Name", "其他": "Other", "备注": "Remarks", "摄像头": "Camera", "租客": "Tenant", "必填": "Required", "必填,请填写联系方式": "Required,please fill in the contact Method", "身份证": "ID", "性别": "Gender", "必填,请填写名称": " Required ,please fill in the name", "女": "Female", "业主照片": "Photo of the owner", "拍照": "Photo", "男": "Male", "可选,请填写身份证": "Optional,please fill in ID card", "年龄": "Age", "必填,请填写年龄": "Required,please fill in age", "必填,请选择类型": "Required,please select type", "类型": "Type", "家庭成员": "Family Member", "可填,请填写备注": "can be filled,please fill in remarks" },
"chooseMainCategoryProduct": { "查询": "query", "排序": "sort", "选择": "select", "操作": "operation", "开始时间": "start time", "输入目录商品名称": "input catalog product name", "主键": "primary key", "目录": "catalog", "选择目录商品": "Select catalog item", "商品编号": "Item ID", "结束时间": "End time" },
"deleteMenuUser": { "确定删除常用菜单": "Delete common menu", "请确认您的操作": "Please confirm your operation", "点错了": "Wrong click", "确认删除": "Confirm deletion" },
"reviewApplyRoomDiscount": { "优惠": " Offer", "折扣名称": "discount name", "元": "yuan", "开始时间": "start time", "费用类型": "fee type", "验房备注": "house inspection note", "必填": "required", "预缴金额返还至余额账户": "return the prepaid amount to the balance account", "必填,请填写开始时间": "required,please fill in the start time", "审批通过": "Approval passed", "请选择返还方式": "Please select the return method", "必填,请填写结束时间": "Required,please fill in the end time", "审批备注": "Approval Notes", "收费项": "Charge Item", "缴费记录": "Payment Record", "结束时间": "End Time", "审批状态": "Approval Status", "请选择费用类型": "Please select a fee type", "折扣类型": "Discount type", "请选择收费项": "Please select a charge item", "享受缴纳折扣": "Enjoy payment discount", "返还方式": "Return method", "审批不通过": "Approval failed", "审批": "Approval", "必填,请填写审批说明": "Required,please fill in the approval description", "申请备注": "Application Notes" },
"viewFeeManualCollectionInfo": { "人工托收信息": "Manual Collection Information", "房屋单价": "House Unit Price", "业主名称": "Owner Name", "添加人工托收": "Add Manual Collection", "选择人工托收": "Select Manual Collection", "规格": "Specification", "备注": "Remarks", "业主电话": "Owner Phone", "房屋面积": "House area" },
"deleteContractType": { "确定删除合同类型": "Delete contract type", "请确认您的操作": "Please confirm your operation", "点错了": "Wrong click", "确认删除": "Confirm delete" },
"chooseApp": { "查询": "Query", "输入应用名称": "Enter application name", "选择": "Select", "操作": "Operation", "应用名称": "Application name", "选择应用": "Select application", "应用": "Apply" },
"deleteClueAttr": { "确定删除线索跟进信息": "Delete the follow-up information of the clue", "请确认您的操作": "Please confirm your operation", "点错了": "Click wrong", "确认删除": "Confirm delete" },
"deleteAppUserBindingOwner": { "确认": "Confirm", "请确认您的操作": "Please confirm your operation", "确定解绑业主吗": "Are you sure to unbind the owner", "点错了": "Wrong click" },
"viewPrestoreFeeInfo": { "房屋": "House", "预存对象类型": "Pre-stored object Type", "状态": "Status", "选择预付费用": "Select prepaid fee", "添加预付费用": "Add prepaid fee", "备注": "Remark", "预付费用信息": " Prepaid Fee Information", "预付金额": "Prepaid Amount", "预付类型": "Prepaid Type" },
"editHousekeepingServ": { "回访方式": "Revised Visit Method", "必填,请填写关键词,多个关键词用;分隔": "Required,please fill in the keyword,for multiple keywords;Separate", "都不回访": "No return visit", "服务详情": "Service details", "必填,请选择上架状态": "Required,please select the listing status", "服务轮播": "Service Carousel", "关键词": "Keyword", "选填,请填写销量": "Optional,please fill in the sales volume", "服务扩展": "Service extension", "未上架": "Not on the shelf", "指派": "Assignment", "销量": "Sales", "已评价不回访": "Evaluated and no return visit", "必填,请选择服务类型": "Required,please select a service type", "派单方式": "Order delivery method", "服务图片": "Service picture", "必填,请填写服务名称": "required,please fill in the service name", "上架": "on the shelf", "必填,请选择回访方式": "required,please select the return visit method", "轮训": "Rotation training", "服务名称": "service name", "服务描述": "service description", "服务封面": "service cover", "排序": "sort", "必填,请填写公告内容": "required,please fill in the announcement content", "选填,请填写排序": "optional,please fill in the order", "都回访": " all return visit", "必填,请选择派单方式": "Required,please select the order method", "取消": "Cancel", "服务类型": "Service Type", "服务信息": "Service Information", "上架状态": "Listing Status", "抢单": "Order Grab" },
"viewFeeFormulaInfo": { "添加公摊公式": "Add share share formula", "公摊公式信息": "Share share formula information", "公式": "Formula", "选择公摊公式": "Select share share formula", "描述": "Description" },
"editFeeManualCollection": { "房屋单价": "House unit price", "必填,请填写业主电话": "Required,please fill in the owner phone number", "必填,请填写业主名称": "required,please fill in the owner name", "必填,请填写房屋面积": "required,please fill in the house area", "规格": "specification", "必填,请填写房屋单价": "Required,please fill in the unit price of the house", "备注": "Remarks", "修改人工托收": "Modify manual collection", "必填,请填写规格": "Required,please fill in the specifications", "房屋面积": "House area", "选填,请填写备注": "optional,please fill in the remarks", "业主名称": " owner name", "取消": "cancel", "业主电话": "Owner phone" },
"addMenuCatalog": { "商户类型": "Business type", "图片": "Picture", "否": "No", "顺序": "Order", "添加": "Add", "运营团队": "operation team", "是否显示": "whether to display", "名称": "name", "必填": "required", "必填,请填写顺序": "Required,please fill in the order", "是": "Yes", "必填,请填写名称": "Required,please fill in the name", "必填,请填写页面": "Required Fill,please fill in the page", "取消": "Cancel", "必填,请填写图片": "Required,please fill in the picture", "商家": "Merchant", "开发团队": "Development team", "页面": "page", "物业": "property" },
"deleteReportCustomComponent": { "确定删除报表组件": "Delete report component", "请确认您的操作": "Please confirm your Operation", "点错了": "Wrong click", "确认删除": "Confirm delete" },
"chooseActivitiesBeautifulStaff": { "查询": "Query", "选择": "Select", "操作": "operation", "工作简介": "job profile", "输入最美员工名称": "input the most beautiful employee name", "员工": "employee", "选择最美员工": "select the most beautiful employee", "员工编号": "Employee ID", "活动规则": "Activity Rules" },
"parkingAreaControlVideo": { "请选择入场摄像头": " Please select the entry camera", "出场视频": "exit video", "入场视频": "entry video", "请选择出场摄像头": "please select the exit camera" },
"addMeterWater": { "楼栋": "Building", "抄表类型": "meter reading type", "单元": "unit", "费用类型": "fee type", "水费": "water charge", "本期度数": "Current degree", "单价": "unit price", "上期读表时间": "last reading time", "备注": "remarks", "必填,请填写上期读表时间": "Required,please fill in the reading time of the previous issue", "必填": "required", "必填,请填写单价": "required,please fill in the unit price", "必填,请填写本期度数": "required,please fill in the current period", "收费对象": "charge object", "上期度数": "previous period", "必填,请填写上期度数": "required,please Fill in the previous period", "房屋": "house", "添加抄表": "add meter reading", "注": "note", "电费": "electricity", "本期读表时间": " Reading time of this issue", "选填,请填写备注": "optional,please fill in the remarks", "必填,请填写房屋": "required,please fill in the house", "必填,请填写本期读表时间": "Required,please fill in the reading time of the current period", "煤气费": "gas bill", "收费项目": "charge item" },
"deleteParkingBoxArea": { "请确认您的操作": "Please confirm your operation", "确定删除岗亭": "Delete post", "点错了": "Wrong click", "确认删除": "Confirm deletion" },
"map": {},
"reportInfoSettingTitleValue": { "选择人数": "Number of people selected", "选项内容": "Option content", "问题结果": "Question result" },
"editCouponPool": { "优惠券类型": "Coupon type", "必填,请填写面值": "required,please fill in the face value", "券状态": "coupon status", "下架": "off the shelf", "请选择券状态": "Please select the coupon status", "优惠券名称": "coupon name", "面值": "face value", "必填,请填写数量": "required,please fill in the quantity", "有效期": "Expiration date", "必填,请填写排序": "required,please fill in the order", "必填,请填写购买价格": "required,please fill in the purchase price", "必填,请填写有效期": "Required,please fill in the validity period", "排序": "sort", "数量": "quantity", "购买价格": "purchase price", "修改优惠券池": "modify coupon pool", "必填,请填写优惠券名称": "required,please fill in the coupon name", "正常": "normal", "取消": "cancel", "请选择优惠券类型": "Please select the coupon type", "普通劵": "Ordinary coupon" },
"resetStaffPwd": { "请确认您的操作": "Please confirm your operation", "确认重置": "Confirm Reset", "确认是否重置密码": "Confirm whether to reset the password", "点错了": "Wrong click" },
"showOwnerRoom": { "层": "layer", "平方米": "square meter", "信息": "information", "房屋ID": "house ID", "我要退房": "I want to check out", "建筑面积": "building area", "楼层": "floor", "商铺编号": "shop number", "户型": "unit type", "房间数": "room number", "商铺ID": "shop ID", "房屋编号": " House number", "物业费": "Property fee" },
"addCouponPool": { "优惠券类型": "Coupon type", "必填,请填写面值": "Required,please fill in the face value", "优惠券名称": "Coupon name", "面值": "face value", "必填,请填写数量": "required,please fill in the quantity", "有效期": "validity", "必填,请填写排序": "Required,please fill in the order", "必填,请填写购买价格": "required,please fill in the purchase price", "必填,请填写有效期": "required,please fill in the expiry date", "排序": "sort", "数量": "quantity", "购买价格": "purchase price", "必填,请填写优惠券名称": " required,please fill in the coupon name", "取消": "Cancel", "添加优惠券池": "Add Coupon Pool", "请选择优惠券类型": "Please select a coupon type", "普通劵": "Ordinary coupon" },
"contractChangeAssets": { "房屋": "House", "平方米": "Square", "操作": "Operation", "电话": "Phone", "房屋状态": "House Status", "业主": "Owner", "关联房屋": "Associated House", "建筑面积": "Building Area", "删除": "Delete" },
"viewPropertyCompanyInfo": { "添加物业公司": "Add Property Company", "选择物业公司": "Select a property company", "电话": "Phone", "物业公司信息": "Property company information", "成立日期": "Established date", "名称": " Name", "地址": "Address", "公司法人": "Company Legal Person", "地标": "Landmark" },
"viewStaffInfo": { "选择": "Select", "员工名称": "Employee Name", "员工性别": "employee gender", "手机号": "mobile phone number", "员工": "employee", "员工邮箱": "employee email", "员工信息": "employee information" },
"addBusinessTableHis": { "修改": "", "必填,请填写轨迹表名": "", "添加": "", "备注": "", "轨迹表名": "", "必填": "", "删除": "", "选填,请填写备注": "", "业务类型": "", "表名": "", "必填,请填写业务类型": "", "添加业务轨迹": "", "取消": "", "必填,请填写表名": "", "动作": "" },
"menu": { "systemSimpleName": "systemSimpleName", "systemName": "systemName" },
"addReportCustom": { "排序": "sort", "选填,请填写描述": "optional,please fill in the description", "报表组": "report group", "选项标题": "Option title", "取消": "Cancel", "添加报表": "Add report", "必填": "Required", "必填,请填写选项标题": "Required Fill in,please fill in the option title", "描述": "description", "必填,请填写排序": "required,please fill in the order" },
"addStaffAppAuth": { "认证方式": "authentication method", "微信": "WeChat", "取消": "Cancel", "开始认证": "Start authentication", "请用微信扫一扫二维码认证": "Please scan the QR code with WeChat for authentication", "必填": "Required", "二维码": "QR code" },
"chooseAdvert": { "广告": "Advertise", "具体位置": "Specific location", "操作": "Operation", "输入发布广告名称": "Enter the name of the advertisement to be published", "广告状态": "Advertisement status", "查询": "Query", "选择": "Select", "选择发布广告": "Select advertisement to publish", "播放顺序": "Play sequence", "广告名称": "Ad Name", "广告类型": "Ad Type", "广告分类": "Ad Category", "投放位置": "Placement position", "结束时间": "end time", "投放时间": "delivery time" },
"chooseContract": { "查询": "query", "选择": "select", "选择合同信息": "Select contract information", "操作": "Operation", "输入合同信息名称": "Enter contract information name", "合同类型": "Contract type", "甲方": "Party A", "乙方": "Party B", "合同编号": "Contract Number", "签订时间": "Signing Time", "合同名称": "Contract Name" },
"editActivitiesView": { "信息内容": "", "必填,请填写公告内容": "", "开始时间": "", "信息类型": "", "必填,请填写结束时间": "", "必填,请填写活动标题": "", "信息修改": "", "标题": "", "必填": "", "结束时间": "", "头部照片": "", "必填,请填写开始时间": "" },
"editReportCustomGroup": { "修改": "modify", "组名称": "group name", "必填,请填写组url": " Required,please fill in the group url", "必填,请填写描述": "required,please fill in the description", "取消": "cancel", "组url": "group url", "描述": " Description", "必填,请填写组名称": "required,please fill in the group name" },
"addFeeCollectionOrder": { "选填,请填写备注": "optional,please fill in the remarks", "申请催缴": "Apply for payment", "仅短信方式": "SMS only", "短信微信方式": "SMS WeChat method", "仅微信方式": "WeChat method only", "催缴方式": "Recall method", "取消": "Cancel", "备注": "Remark", "必填": "Required" },
"addRentingAppointment": { "小区": "Residential", "选填,请填写预约房屋 楼栋-单元-房屋 如1-1-1023": "optional,please fill in the reservation house building-unit-house such as 1-1-1023", "必填,请填写租客名称": "Required,please fill in the tenant name", "租客电话": "Tenant phone", "必填,请选择小区": "Required,please select a community", "必填,请填写预约时间": "required,please fill in the appointment time", "备注": "remarks", "租客性别": "tenant gender", "必填,请填写租客电话": "required,please fill in Tenant phone number", "租客名称": "tenant name", "预约": "reservation", "选填,请填写备注": "optional,please fill in remarks", "预约房屋": "reservation House", "女": "Female", "男": "Male", "取消": "Cancel", "必填,请选择租客性别": "Required,please select the gender of the tenant", "预约时间": "Reservation time" },
"deleteNotice": { "确定删除公告": "Delete notice", "请确认您的操作": "Please confirm your operation", "点错了": " Wrong point", "确认删除": "confirm deletion" },
"simplifyContract": { "打印": "print", "操作": " Operation", "开始时间": "start time", "父合同编号": "parent contract number", "状态": "status", "合同类型": "contract type", "合同编号": "contract No.", "查看": "View", "结束时间": "End Time", "费用": "Fee", "删除": "Delete", "合同名称": "Contract Name" },
"editHousekeepingType": { "修改": "Modify", "商城": "Mall", "站内": "In-Site", "菜单名称": "Menu Name", "选择商品": "Select Product", "必填": "required", "店铺": "shop", "站外": "off-site", "必填,请填写菜单名称": "required,please fill in the menu name", "标签": " Label", "选填,请填写标签": "optional,please fill in the label", "小图标logo": "small icon logo", "请选择商品": "please select a product", "否": " No", "是否显示": "Whether to display", "选填,请填写URL": "Optional,please fill in URL", "请选择店铺": "Please select a store", "服务描述": "Service Description", "必填,请填写排序": "required,please fill in the order", "是": "yes", "商品": "product", "排序": "sort", "必填,请选择跳转类型": "Required,please select jump type", "服务": "service", "取消": "cancel", "跳转类型": "jump type", "选择店铺": "Select a store", "选填,请填写服务描述": "optional,please fill in the service description", "必填,请选择类型": "required,please select a type", "类型": " type" },
"addStaffView": { "员工岗位": "staff position", "手机": "mobile phone", "上传照片": "upload photo", "员工照片": "staff photo", "添加员工": "Add employee", "必填": "required", "照片": "photo", "必填,请填写家庭住址": "required,please fill in home address", "员工名称": " Employee name", "员工性别": "employee gender", "必填,请填写员工名称": "required,please fill in employee name", "女": "female", "家庭住址": "family Address", "拍照": "Photo", "男": "Male", "员工邮箱": "Staff Email", "可选,请填写员工邮箱": "Optional ,please fill in staff email", "必填,请填写手机": "Required,please fill in mobile phone" },
"uploadImage": {},
"deleteMachineType": { "确定删除设备类型": "Delete device type", "请确认您的操作": "Please confirm your operation", "点错了": "Wrong click", "确认删除": "Confirm delete" },
"roomRenovationCompleted": { "确定完成房屋装修": "", "请确认您的操作": "", "确认完成": "", "点错了": "" },
"viewPropertyFeeConfig": { "物业费初始化信息": "Property fee initialization information", "编辑": "Edit", "每平米单价": "Unit price per square meter", "物业费配置": "Property fee configuration", "附加费用": "Additional fee" },
"appraiseRepair": { "回访建议": "Return visit suggestion", "回访工单": "Return visit work order", "必填,请填写回访建议": "required,please fill in the return visit suggestion" },
"editSysDocumentView": { "信息内容": "information content", "必填,请填写公告内容": "required,please fill in the announcement content", "必填,请填写标题": "Required,please fill in the title", "取消": "Cancel", "修改文档": "Modify document", "文档编码": "Document code", "标题": "Title", "必填,请填写文档编码": "Required,please fill in the document code" },
"deleteParkingBox": { "请确认您的操作": "Please confirm your operation", "确定删除岗亭": "Delete the post", "点错了": "Wrong click", "确认删除": "Confirm to delete" },
"addInspectionPlanStaff": { "开始时间": "Start time", "执行人员": "Executive", "必填,请填写结束时间": "required,please fill in the end time", "取消": "cancel", "添加巡检人": "add inspector", "结束时间": "end time", "必填,请填写开始时间": "required,please fill in the start time" },
"addShops": { "必填,请填写商铺楼层": "required Fill in,please fill in the shop floor", "楼栋": "building", "室内面积": "indoor area", "商铺楼层": "shop floor", "添加商铺": "add shop", "必填,请填写租金": "Required,please fill in the rent", "请填写备注信息": "Please fill in the remarks", "必填,请填写商铺编号": "Required,please fill in the shop number", "建筑面积": "Building area", "必填,请填写室内面积": "required,please fill in the interior area", "备注": "remarks", "必填,请填写建筑面积": "required Fill in,please fill in the building area", "商铺编号": "shop number", "算费系数": "fee calculation coefficient", "取消": "cancel", "必填,请填写算费系数": " Required,please fill in the calculation coefficient", "租金": "rent" },
"addOrg": { "组织名称": "organization name", "上级组织": "superior organization", "必填,请填写组织名称": "Required,please fill in the organization name", "添加组织": "Add organization", "组织级别": "Organization level", "必填": "Required", "描述": "Description", "入驻所有小区": "Enter all communitys", "分公司级": "Branch level", "必填,请填写描述": "Required,please fill in the description", "部门级": "Department level", "取消": "Cancel", "隶属小区": "Subordinate community" },
"deleteResourceStoreSpecification": { "请确认您的操作": "Please confirm your operation", "确定删除物品规格": "Delete item specification", "点错了": "Wrong click", "确认删除": "Confirm deletion" },
"viewTempCarFeeConfigInfo": { "选择临时车收费标准": "Select temporary car charging standard", "开始时间": "starting time", "标准名称": "standard name", "添加临时车收费标准": "add temporary car charging standard", "车辆类型": " Vehicle Type", "收费规则": "Charging Rules", "结束时间": "End Time", "临时车收费标准信息": "Temporary Vehicle Charge Standard Information", "停车场": "Parking lot" },
"deleteComplaint": { "请确认您的操作": "Please confirm your operation", "确定删除投诉建议": "Delete the complaint suggestion", "点错了": "Click wrong", "确认删除": "Confirm to delete" },
"deleteRoomDecorationRecord": { "确定删除房屋装修记录": "Delete house decoration record", "请确认您的操作": "Please confirm your operation", "点错了": "Click wrong", "确认删除": "Confirm delete" },
"viewOwnerInfo": { "名称": "Name", "业主ID": "Owner ID", "联系方式": "Contact Method", "备注": "Remark", "年龄": "Age", "创建员工": "Create employee", "身份证": "ID card", "业主信息": "Owner information", "性别": "Gender" },
"deleteFeeConfig": { "请确认您的操作": "Please confirm your operation", "确定删除费用项": "Delete expense item", "点错了": " Wrong click", "确认删除": "Confirm delete" },
"viewServiceInfo": { "服务编码": "Service code", "调用方式": "Call method", "重试次数": "Retry Times", "添加服务": "Add Service", "服务": "Service", "消息队列": "Message Queue", "服务信息": "Service Information", "选择服务": "Select Service", "调用地址": "call address", "是否实例": "Is it an instance", "服务名称": "Service name", "超时时间": "Timeout" },
"viewShopRangeInfo": { "是否默认": "Default", "是否展示": " Whether to display", "显示序号": "Display serial number", "经营范围信息": "Business scope information", "备注": "Remarks", "选择经营范围": "Select business scope", "添加经营范围": "Add business scope", "范围名称": "scope name", "店铺类型": "shop type", "店铺经营范围": "shop business scope" },
"chooseActivitiesRule": { "查询": "query", "活动类型": "activity type", "选择": "select", "操作": "operation", "选择活动规则": "select activity rule", "规则": "rule", "开始时间": "Start time", "输入活动规则名称": "Enter activity rule name", "规则名称": "rule name", "规则说明": "rule description", "活动对象": "Activity object", "结束时间": "end time" },
"chooseServiceRegister": { "查询": "query", "选择": "select", "订单类型": "order type", "调用方式": "Call method", "操作": "operation", "绑定": "binding", "输入服务绑定名称": "input service binding name", "选择服务绑定": "select Service binding", "服务": "service", "调用次数": "call times", "应用": "application" },
"simplifyOwnerCar": { "修改": "modify", "起租时间": "Rental time", "添加车辆": "Add car", "操作": "operation", "颜色": "color", "状态": "status", "车场": "parking", "业主": "Owner", "释放车位": "Release parking space", "车辆类型": "Vehicle type", "截止时间": "Deadline", "删除": "Delete", "续租车位": "Renew car space", "车位": "parking space", "车牌号": "license plate number", "车辆品牌": "car brand" },
"chooseReportCustom": { "查询": "query", "排序": "Sort", "选择": "Select", "输入报表名称": "Enter report name", "选项标题": "Option title", "报表编号": "Report ID", "操作": "Operation", "选择报表": "Select Report", "描述": "Description", "组编号": "Group ID", "报表": "Report" },
"viewMenuUser": { "自定义": "Custom" },
"addAttrValue": { "显示": "Display", "必填,请填写值": "Required,please fill in the value", "添加属性值": "Add attribute value", "否": "No", "值名称": "Value name", "必填,请填写值名称": "Required,please fill in the value name", "值": "value", "必填": "required", "是": "yes" },
"chooseQuestionAnswerTitle": { "查询": "query", "选择": "Select", "操作": "Operation", "选择问卷题目": "Select Questionnaire title", "题目": "Title", "顺序": "Order", "问卷题目": "Questionnaire question", "题目类型": "question type", "输入问卷题目名称": "enter the name of the question in the questionnaire" },
"unitSelectFloor": { "选择小区楼": "select a community floor", "小区楼": "Residential Building", "名称": "Name", "添加单元": "Add Unit", "编号": "Number", "小区楼信息": "Residential Building Information" },
"editStorehouse": { "请选择是否对外开放": "Please select whether to open to the public", "修改": "modify", "仓库名称": "warehouse name", "必填,请填写描述": "required,please fill in Description", "否": "No", "仓库类型": "Warehouse Type", "是否对外开放": "Whether it is open to the public", "请选择仓库类型": "Please select a warehouse type", "描述": "Description", "必填,请填写仓库名称": "Required,please fill in the warehouse name", "是": "Yes" },
"rentingPay": { "支付对象": "Payment object", "必填,请填写支付金额": "Required,please fill in the payment amount", "取消": "Cancel", "必填,请填写支付对象": "Required,please fill in the payment object", "支付金额": "Payment Amount", "租房服务费": "Rental Service Fee", "二维码": "QR Code" },
"editMenu": { "序列": "Sequence", "菜单显示": "Menu display", "显示菜单": "display menu", "修改菜单": "modify menu", "必填,请填写菜单地址": "required,please fill in menu address", "菜单名称": "Menu name", "必填,请选择菜单显示": "required,please select the menu to display", "描述": "description", "选填,请填写描述": "optional,please fill in the description", "不显示菜单": "do not display menu", "必填,请填写序列": "required,please fill in the sequence", "必填,请填写菜单名称": "required,please fill in the menu name", "取消": "Cancel", "菜单地址": "Menu Address" },
"chooseActivitiesType": { "查询": "Query", "选择": "Select", "大类名称": "Class name", "大类描述": "class description", "操作": " Operation", "大类编码": "category code", "显示序号": "display serial number", "是否显示": "whether to display", "输入信息大类名称": "input information category name", "选择信息大类": "Select information category" },
"simplifyCarFee": { "应收金额": "Amount receivable", "计费结束时间": "Billing end time", "状态": "Status", "创建费用": "Creation Fee", "费用类型": "Expense Type", "本期度数": "Current Period", "单价": "Unit Price", "取消费用": "Cancommunityation fee", "缴费": "Payment", "说明": "Description", "固定费": "Fixed fee", "批量缴费": "Batch payment", "水电抄表": "Water and electricity copying Table", "算法": "Algorithm", "上期度数": "Last Period Degree", "费用项目": "Expense Item", "费用标识": "Expense ID", "缴费历史": "Payment History", "费用变更": "Expense change", "建账时间": "Account establishment time", "操作": "operation", "附加费": "surcharge", "用量": "amount", "计费起始时间": "Billing start time", "手工结束": "Manual end" },
"deleteContractTypeSpec": { "请确认您的操作": "Please confirm your operation", "确定删除合同类型属性": "Delete contract type attribute", "点错了": "Wrong click", "确认删除": "Confirm deletion" },
"cameraControlInfo": { "设备编码": "Device code", "设备名称": "device name", "摄像头信息": "camera information", "设备": "device", "版本号": "version number", "设备类型": "device type" },
"viewContractInfo": { "甲方联系人": "Party A Contact", "乙方联系电话": "Party B Contact Number", "开始时间": "Start Time", "合同类型": "Contract Type", "甲方": "Party A", "乙方": "Party B", "添加合同信息": "Add Contract Information", "乙方联系人": "Party B Contact", "经办人": " Manager", "合同金额": "Contract Amount", "选择合同信息": "Select Contract Information", "联系电话": "Contact Number", "甲方联系电话": "Party A Contact Number", "合同编号": "Contract number", "结束时间": "End time", "合同信息信息": "Contract information", "签订时间": "Signing time", "合同名称": "Contract Name" },
"deleteTempCarFeeConfig": { "确定删除临时车收费标准": "Delete the temporary car charge standard", "请确认您的操作": "Please confirm your operation", "点错了": " Wrong click", "确认删除": "Confirm deletion" },
"dispatchRepair": { "报修派单": "Repair Dispatch", "必填,请填写上级处理人": "Required,please fill in Superior processing person", "处理意见": "processing opinion", "必填,请填写处理意见": "required,please fill in processing opinion", "报修师傅": "repair master", "必填": "Required", "上级处理人": "Supervisor" },
"inspectionRouteSelect2": { "请选择巡检路线": "Please select the inspection route" },
"viewMachineTypeInfo": { "选择设备类型": "Select equipment type", "设备大类": "equipment type", "设备类型名称": "equipment type name", "数据状态": "data status", "设备类型信息": "equipment type information", "设备类型": "device type", "添加设备类型": "add device type" },
"parkingAreaControlWhiteCar": { "名单": "list", "开始时间": "start time", "车牌号": "License plate number", "必填,请填写车牌号": "required,please fill in the license plate number", "结束时间": "end time", "停车场": "parking lot" },
"addBusinessType": { "订单类型名称": "order type name", "手机": "mobile phone", "订单类型编码": "order type code", "必填,请填写订单类型名称": "required Fill in,please fill in the order type name", "必填,请填写订单类型编码": "required,please fill in the order type code", "取消": "cancel", "备注": "remarks", "添加订单类型": "Add order type", "年龄": " Age", "必填,请填写年龄": "required,please fill in age", "必填,请填写联系方式": "required,please fill in contact information", "可填,请填写备注": "Can be filled,please fill in the remarks" },
"editReportCustomComponentRel": { "必填,请填写报表编号": "required,please fill in the report number", "报表编号": "report number", "必填,请填写组件": "required,please fill in the component", "必填,请填写组件序号": "required,please fill in the component serial number", "取消": "cancel", "修改报表组件": "modify the report Component", "组件": "component", "组件序号": "component serial number" },
"chooseSystemGoldSetting": { "查询": "query", "设置": "setting", "选择": "select", "选择金币设置": "Select gold coin setting", "输入金币设置名称": "Enter gold coin setting name", "操作": "operation", "购买价格": "purchase price", "状态": " Status", "名称": "name", "使用价格": "use price", "类型": "type", "有效期": "validity" },
"chooseFlowElementCondition": { "条件类型": "condition type", "结束": "end", "退回至提交者": "return to submitter", "表达式": "expression", "取消": "cancel", "同意": "agree", "选择条件": "selection condition", "手工输入": "manual input", "必填": "required", "输入表达式": "input expression", "退回上一节点": "Return to previous node", "通用": "General" },
"chooseSmsConfig": { "输入短信配置名称": "Enter SMS configuration name", "短信业务": "SMS service", "操作": " Operation", "短信编号": "SMS ID", "备注": "Remark", "短信模板": "SMS Template", "区域": "Area", "查询": "Query", "选择": "Select", "选择短信配置": "Select SMS configuration", "短信签名": "SMS signature", "短信商": "SMS provider", "短信秘钥": "SMS key", "访问": "Access", "日志": "Log" },
"chooseMenuUser": { "查询": "Query", "选择": "Select", "图标": "Icon", "操作": "Operation", "菜单": "menu", "列顺序": "column order", "选择常用菜单": "select common menu", "编号": "number", "输入常用菜单名称": " Enter the common menu name" },
"chooseServiceProvide": { "服务编码": "service code", "输出模板": "Output template", "操作": "operation", "参数": "parameter", "提供": "provide", "实现方式": "implementation", "描述": "description", "服务名称": "Service Name", "查询": "Query", "选择": "Select", "存储过程": "Stored Procedure", "输入服务提供名称": "Enter Service Provider Name", "选择服务提供": "Select service provision" },
"editJunkRequirement": { "必填,请填写内容": "Required,please fill in the content", "审核通过": "Approved", "状态": "Status", "家具": "furniture", "联系方式": "contact information", "必填": "required", "必填,请填写联系方式": "required,please fill in the contact information", "发布人": "Publisher", "必填,请填写发布人": "required,please fill in the publisher", "未审核": "unreviewed", "必填,请填写参考价格": "Required,please fill in the reference price", "审核失败": "Audit failed", "处理完成": "Processing completed", "修改旧货": "Revised used goods", "参考价格": "Reference price", "电器": "Electrical", "内容": "Content", "类别": "Category" },
"simplifyOwnerComplaint": { "房屋": "House", "操作": "Operation", "处理人": "handler", "单元": "unit", "室": "room", "投诉人": "complainant", "投诉类型": "complaint type", "详情": "details", "号楼": " Building No .", "处理电话": "Dealing Telephone", "投诉状态": "Complaint Status", "投诉人电话": "Complainant Telephone", "流程图": " Flowchart" },
"chooseStoreInfo": { "商户信息": "merchant information", "操作": "operation", "显示序号": "display serial number", "商户名称": "merchant name", "备注": "Remarks", "商户位置": "merchant location", "查询": "query", "工作时间": "working hours", "选择": "select", "选择商户信息管理": " Select business information management", "图片地址": "picture address", "输入商户信息管理名称": "enter business information management name", "商户电话": "business phone" },
"unlicensedCarMachineQrCode": { "无牌车进场二维码": "QR code for an unlicensed car", "取消": "Cancel", "无牌车辆进场": "Unlicensed car entry" },
"deleteStorehouse": { "确定删除仓库": "Delete warehouse", "请确认您的操作": "Please confirm your operation", "点错了": "Wrong click", "确认删除": "Confirm deletion" },
"editJob": { "必填,请选择模板": "Required,please select a template", "选择模板": "Select a template", "选填,请填写定时时间": "Optional,please fill in the timing", "定时时间": "Timed time", "取消": "Cancel", "必填,请填写任务名称": "Required,please fill in the task name", "修改任务": "Modify task", "任务名称": "Task name" },
"addResourceQuantity": { "入库数量": "Quantity in stock", "数量": "Quantity", "必填,请填写入库数量": "Required,Please fill in the storage quantity", "取消": "Cancel" },
"deleteFeePrintPage": { "确定删除收据模板": "Delete the receipt template", "请确认您的操作": "Please confirm your operation", "点错了": "Click wrong", "确认删除": "Confirm delete" },
"deleteStaffPrivilege": { "请确认您的操作": "Please confirm your operation", "点错了": "Click wrong", "确认删除": "Confirm deletion" },
"deleteReportCustomGroup": { "确定删除报表组": "Delete report group", "请确认您的操作": "Please confirm your Operation", "点错了": "Wrong click", "确认删除": "Confirm deletion" },
"chooseParkingBox": { "查询": "Query", "岗亭名称": "Postbox name", "是否收费": "Toll or not", "黄牌车进场": "Yellow license car entry", "选择": "Select", "操作": "Operation", "输入岗亭名称": "Enter the name of the guard booth", "临时车是否进场": "Whether the temporary car enters the stadium?", "备注": "Remarks", "岗亭": "Post Box", "选择岗亭": "Select Post Box", "蓝牌车进场": "Blue car entering the field" },
"deleteRentingConfig": { "请确认您的操作": "Please confirm your operation", "确定删除租聘设置": "Delete the rental setting", "点错了": "Wrong click", "确认删除": "Confirm delete" },
"simplifyOwnerRepair": { "操作": "Operation", "状态": "Status", "联系方式": "Contact information", "位置": "Location", "报修类型": "Repair Type", "工单编码": "Work Order Code", "预约时间": "Appointment Time", "报修人": "Repair Requester", "详情": "Details" },
"viewReportCustomComponentInfo": { "添加报表组件": "Add report component", "组件类型": "Component type", "报表组件信息": "Report component information", "组件名称": "component name", "查询方式": "query method", "执行": "execute", "选择报表组件": "select report component", "描述": "description" },
"prestoreAccount": { "业主手机": " owner phone", "必填,请填写业主手机号": "required,please fill in the owner ismobile phone number", "业主名称": " owner name", "预存": "pre-deposit", "必填,请填写预存金额": "required ,please fill in the deposit amount", "取消": "cancel", "备注": "remark", "必填": "required", "预存金额": "pre-deposit amount", "可填,请填写备注": "Can be filled,please fill in the remarks" },
"viewFeeDiscountInfo": { "折扣名称": "discount name", "选择费用折扣": "select fee discount", "规则": "rule", "添加费用折扣": "Add fee discount", "折扣类型": "discount type", "费用折扣信息": "fee discount information", "描述": "description" },
"machineSelect2": { "请选择设备": "Please select the device" },
"deleteAdvert": { "确定删除发布广告": "Delete the advertisement", "请确认您的操作": "Please confirm your operation", "点错了": " Wrong click", "确认删除": "Confirm deletion" },
"addServiceProvide": { "服务编码": "Service code", "输出模板": "Output template", "参数": "parameter", "必填,请填写服务名称": "Required,please fill in the service name", "楼编号": "Building number", "必填,请填写服务编码": "Required,please fill in the service code", "楼名称": "Building name", "备注": "Remarks", "实现方式": "Implementation", "必填": "Required", "描述": "Description", "选填,请填写": "optional,please fill in", "服务名称": "service name", "选填,请填写描述": "optional,please fill in description", "存储过程": "stored procedure", "必填,请填写名称": "Required,please fill in the name", "必填,请填写编号": "Required,please fill in the number", "选填,请填写输出模板": "Optional,please Fill in the output template", "选填,请填写存储过程": "optional,please fill in the stored procedure", "添加服务提供": "add service provider", "取消": "cancel", "必填,请填写参数": "Required,please fill in the parameters", "可填,请填写备注": "can be filled,please fill in the remarks", "存储过程方式": "stored procedure method" },
"editInspectionItemTitle": { "修改": "Modify", "选项": "Option", "增加选项": "Add Option", "多选": "Multiple choice", "题目": "Title", "顺序": "Order", "题目类型": "Title Type", "必填": "Required", "必填,请填写顺序": "Required,please fill in the order", "删除选项": "Delete option", "必填,请填写问卷题目": "required,please fill in the questionnaire title", "取消": "cancel", "必填,请填写选项内容": "required,please fill in the options", "简答题": "short answer", "单选": "Radio" },
"addShopType": { "是否默认": "Is it default", "必填,请填写显示序号": "Required,please fill in the display serial number", "是否展示": "Whether to display", "否": "No", "显示序号": "Display serial number", "必填,请填写店铺类型": "Required,please fill in the store type", "自定义": "Custom Definition", "备注": "Remarks", "店铺类型": "Store Type", "必填": "Required", "是": "Yes", "选填,请填写备注": "Optional Fill,please fill in the remarks", "添加店铺类型": "Add store type", "取消": "Cancel", "默认": "Default" },
"reportHuaningPayFee": { "楼栋号": "Building No.", "年前部分": "Previous year part", "月实收中属于": "Month actual receipt belongs to", "月部分": "Month part", "年": "Year", "起预收部分": "from advance receipt part", "每月应收": "monthly receivable", "月实收中属于收": "monthly receipt belongs to receipt", "月实收": " Monthly actual receipt" },
"viewMainCategoryProductInfo": { "排序": "sort", "开始时间": "start time", "添加目录商品": "add catalog product", "目录": "catalog", "选择目录商品": "Select catalog item", "目录商品信息": "Catalog item info", "商品编号": "Item ID", "结束时间": "End time" },
"deleteResourceStoreType": { "确定删除物品类型": "Confirm the item type to delete", "请确认您的操作": "Please confirm your operation", "点错了": "Wrong click", "确认删除": "Confirm deletion" },
"editAttrValue": { "显示": "display", "必填,请填写值": "required,please fill in the value", "否": "no", "值名称": "value name", "必填,请填写值名称": "required,please fill in the value name", "修改属性值": "modify attribute value", "值": "value", "必填": "required", "是": "Yes" },
"addUnit": { "无": "None", "必填,请填写单元总层数": "Required,please fill in the total number of units", "请填写备注信息": "Please fill in the remarks", "有": "Yes", "建筑面积": "Building area", "备注": "Remarks", "必填,请填写建筑面积": "required,please fill in building area", "添加单元": "add unit", "单元编号": "unit number", "必填": "required", "必填,请填写单元编号": "Required,please fill in the unit number", "电梯": "elevator", "取消": "cancel", "总层数": "total floors" },
"editServiceProvide": { "服务编码": "Service code", "输出模板": "output template", "参数": "parameter", "必填,请选择实现方式": "required,please select the implementation method", "必填,请填写服务名称": "required,please fill in the service name", "必填,请填写服务编码": "required,please fill in the service code", "实现方式": "implementation", "描述": "description", "服务名称": "service name", "选填,请填写描述": "optional,please fill in description", "存储过程": "stored procedure", "选填,请填写sql": "optional,please fill in sql", "修改服务提供": "modify service provision", "选填,请填写输出模板": "optional,please fill in output template", "选填,请填写存储过程": " is optional,please fill in the stored procedure", "取消": "cancel", "必填,请填写参数": "required,please fill in the parameters", "选填,请填写java": " optional fill in,please fill in java", "存储过程方式": "stored procedure method" },
"audit": { "必填,请填写原因": "required,please fill in the reason", "请审核": "please Review", "拒绝": "Reject", "同意": "Agree", "原因": "Reason", "审核信息": "Audit Information", "审核状态": "Audit Status" },
"deleteAccountBondObj": { "确定删除保证金对象": "Delete the deposit object", "请确认您的操作": "Please confirm your operation", "点错了": "Wrong click", "确认删除": "Confirm delete" },
"chooseContractTypeSpec": { "操作": "operation", "规格": "specification", "规格名称": "specification name", "说明": "description", "输入合同类型属性名称": "Enter contract type attribute name", "必填": "required", "查询显示": "query display", "展示": "display", "查询": "query", "值类型": "Value type", "选择": "Select", "选择合同类型属性": "Select contract type attribute", "规格类型": "Specification type" },
"addShopAudit": { "必填,请填写店铺logo": "required,please fill in the store logo", "地区": "region", "必填,请填写退货联系电话": "required,please fill in the return contact number", "状态": " Status", "必填,请填写店铺类型": "Required,please fill in the store type", "店铺类型": "Store type", "必填,请填写数据状态": "Required,please fill in the data status", "必填,请填写退货联系人": "required,please fill in the return contact", "数据状态": "data status", "必填,请填写地区": "required,please fill in the region", "申请原因": " Application reason", "必填,请填写申请原因": "required,please fill in the application reason", "必填,请填写开店类型": "required,please fill in the store type", "必填,请填写状态": "required,please fill in the status", "地域编码": "region code", "添加店铺审核": "add store review", "必填,请填写商户ID": "required,please Fill in the merchant ID", "退货地址": "return address", "开店类型": "store type", "店铺logo": "shop logo", "必填,请填写地域编码": "required,please Fill in the region code", "店铺ID": "shop ID", "发货地址": "shipping address", "审核意见": "audit opinion", "必填,请填写店铺ID": "required ,please fill in the store ID", "必填,请填写发货地址": "required ,please fill in the delivery address", "必填,请填写店铺名称": "required,please fill in the store name", "必填,请填写店铺描述": "required,please fill in the store description", "商户ID": "merchant ID", "取消": "cancel", "必填,请填写审核ID": "required ,please fill in the audit ID", "必填,请填写退货地址": "required,please fill in the return address", "审核ID": "audit ID", "退货联系电话": "return phone number", "必填,请填写审核意见": "Required,please fill in the review comments", "店铺名称": "Store name", "店铺描述": "Store description", "退货联系人": "Return contact" },
"addReportInfoSetting": { "项目名称": "project name", "选填,请填写备注": "optional,please fill in remarks", "开始时间": "start time", "必填,请填写项目名称": "required,please fill in the project name", "添加": "add", "项目类型": "project type", "必填,请填写结束时间": "required,please fill in the end Time", "取消": "Cancel", "出入上报": "In and out report", "备注": "Remark", "结束时间": "End time", "必填,请填写开始时间": " Required,please fill in the start time" },
"viewResourceStaffInfo": { "是否是固定物品": "is it a fixed item", "转赠数量": "transfer amount", "选择物品": "select item", "操作": "operation", "移除": "remove", "物品类型": "item type", "备注": "Remarks", "必填,请填写数量": "required,please fill in the quantity", "物品信息": "item information", "物品名称": "item name", "物品库存": " Item inventory", "物品编码": "item code", "物品最小计量总数": "item minimum measurement total" },
"chooseFloor": { "查询": "query", "选择": "select", "操作": "Operation", "选择楼": "Select building", "楼编号": "Building number", "输入楼栋名称": "Enter building name", "楼名称": "Building Name", "备注": "Remarks", "楼": "Building", "输入楼栋编码": "Enter building code" },
"editCouponDetail": { "必填,请填写面值": "Required Fill in,please fill in the face value", "购买数量": "purchase quantity", "优惠券": "coupon", "必填,请填写优惠券": "required,please fill in the coupon", "必填,请填写付款金额": "required,please fill in the payment amount", "优惠券名称": "coupon name", "面值": "face value", "付款金额": "payment amount", "店铺": "Store", "有效期": "Validity", "必填,请填写购买价格": "Required,please fill in the purchase price", "必填,请填写有效期": "Required,please fill in the validity period", "修改商家购买记录表": "Modify Merchant Purchase Record Form", "必填,请填写店铺ID": "required,please fill in the store ID", "购买价格": "purchase price", "必填,请填写优惠券名称": "required,please fill in the coupon name", "取消": "cancel", "必填,请填写购买数量": "required,please fill in the purchase quantity" },
"uploadFile": { "上传附件": "Upload attachment" },
"chooseReportInfoBackCity": { "城市名称": "city name", "操作": "operation", "备注": "remark", "身份证": "ID card", "查询": "query", "姓名": "name", "选择": "select", "来源地": "source", "手机号": "mobile phone number", "选择返省上报": "Select return province report", "输入返省上报名称": "Enter return province report name", "返回": "return", "返回时间": "return time" },
"allocationStorehouse": { "物品名称": "Item name", "调拨数量": "Allocation quantity", "必填,请填写备注": "required,please fill in remarks", "必填,请填写库存": "Required,please fill in the inventory", "源仓库": "source warehouse", "目标仓库": "target warehouse", "备注": "remarks", "申请调拨": "application transfer", "必填,请填写调拨数量": "required,please fill in the allocation quantity", "必填": "required", "必填,请填写物品名称": "required,please fill in the item name", "库存": "stock" },
"addBasePrivilege": { "必填,请填写资源路径": "Required,please fill in the resource path", "商户类型": "merchant type", "必填,请填写权限名称": "required,please fill in the permission name", "资源路径": "resource path", "运营团队": "operation team", "必填": "required", "描述": "description", "选填,请填写描述": "optional,please fill in description", "添加权限": "Add permission", "代理商": "agent", "开发团队": "development team", "权限名称": "authority name", "物业": "property" },
"transactionLogMessage": { "日志报文": "log message", "请求头": "request header", "取消": "cancel", "返回头": "return header", "请求报文": "request Message", "返回报文": "return message" },
"deletePropertyRightRegistration": { "确定删除房屋产权": "Delete property right", "请确认您的操作": "Please confirm your operation", "点错了": "Click wrong", "确认删除": "Confirm delete" },
"editFee": { "建账时间": "Account establishment time", "计费起始时间": "Billing start time", "必填,请填写建账时间": "required,please fill in the account establishment time", "必填,请填写计费起始时间": "required,please fill in the accounting Fee start time", "费用变更": "Fee change" },
"chooseCouponPool": { "输入优惠券池名称": "Enter the name of the coupon pool", "池": "Pool", "优惠券类型": "Coupon Type", "选择优惠券池": "Select Coupon Pool", "操作": "Operation", "状态": "Status", "优惠券名称": "Coupon Name", "面值": "face value", "有效期": "validity", "查询": "query", "排序": "sort", "选择": "select", "数量": "quantity", "购买价格": "Purchase Price", "优惠券池": "Coupon Pool" },
"addFeePrintSpec": { "收据打印说明": "Receipt Printing Instructions", "必填,请填写内容": "required ,please fill in the content", "必填,请填写名称": "required,please fill in the name", "图片": "picture", "添加": "add", "规格": "specification", "名称": "Name", "催缴打印说明": "Printing instructions for payment", "必填": "Required", "内容": "Content" },
"addParkingBoxArea": { "必填,请填写备注": "Required,please fill in remarks", "否": "No", "添加": "Add", "取消": "Cancel", "默认停车场": "Default parking lot", "备注": "Remark", "必填": "Required Fill in", "停车场": "Parking", "是": "Yes" },
"parkingAreaControlCustomCarInout": { "车辆": "Vehicle", "请填写备注信息": "Please fill in the remarks", "提交": "Submit", "取消": "Cancel", "车牌号": "License plate number", "收费金额": "Charge amount", "备注": "Remark", "必填,请填写车牌号": "required,please fill in the license plate number", "必填,请填写收费金额": "required,please fill in the charge amount" },
"addRoomView": { "四厅": "four halls", "必填,请填写房屋编号": "required,please fill in the house number", "必填,请填写租金": "required,please fill in the rent", "七室": "seven rooms", "两室": "Two rooms", "建筑面积(平方)": "Building area (square)", "必填,请填写室内面积": "Required,please fill in the interior area", "备注": "Remarks", "一厅": "One hall", "房屋类型": "House type", "八室": "Eight rooms", "请填写算费系数": "Please fill in the calculation coefficient", "三厅": "Three halls", "算费系数": "Fee factor", "五室": "Five room", "六室": "Six room", "租金": "Rent", "房屋编号": "House No.", "室内面积(平方)": "Indoor area (square)", "房屋楼层": "House floor", "四室": "Four rooms", "必填,请选择房屋类型": "required,please select the house type", "两厅": "two halls", "七厅": "seven halls", "必填,请填写建筑面积": "required,please fill in Building area", "一室": "one room", "房屋户型": "house type", "八厅": "eight halls", "选填,请填写备注": "optional,please fill in remarks", "添加房屋": "Add house", "三室": "Three rooms", "六厅": "Six halls", "五厅": "Five halls", "必填,请选择房屋户型": "required,please select the house type", "必填,请填写房屋楼层": "required,please fill in the house floor" },
"editAdvert": { "站内": "in the station", "图片": "picture", "发布类型": "Release type", "必填,请填写播放顺序": "required,please fill in the playback order", "必填": "required", "餐饮": "catering", "不跳转": "Do not jump", "站外": "Outside the station", "酒店": "Hotel", "播放顺序": "Playing order", "广告名称": "Ad Name", "必填,请填写投放时间": "required,please fill in the delivery time", "必填,请填写广告名称": "required,please fill in Write the ad name", "必填,请填写结束时间": "required,please fill in the end time", "视频": "video", "广告分类": "ad classification", "投放位置": "delivery Location", "结束时间": "end time", "投放时间": "run time", "旅游": "tour", "员工首页": "employee homepage", "修改广告": "modify ad", "播放方式": "Play mode", "服务首页": "Service homepage", "教育": "Education", "物流": "Logistics", "便民首页": "Convenience homepage", "请填写跳转路径": "Please fill in the jump path", "互联网": "Internet", "业主首页": "Owner homepage", "商圈首页": "Business district ishomepage", "跳转路径": " Jump path", "小区内设备": "device in the community" },
"propertyPay": { "应收金额": "amount receivable", "缴费周期": "payment cycle", "实收金额": "Actual amount received", "请填写备注信息": "Please fill in the remarks", "取消": "Cancel", "两年": "Two years", "备注": "Remarks", "缴费信息": "Payment information", "必填": "required", "一年": "one year" },
"addResourceSupplier": { "供应商名称": "supplier name", "必填,请填写联系人姓名": "Required,please fill in the contact name", "开户行": "Account bank", "必填,请填写供应商地址": "Required,please fill in the supplier isaddress", "必填,请填写供应商名称": "Required,please fill in the supplier isname", "开户行账号": "account bank account number", "备注": "remarks", "供应商联系方式": "supply Supplier Contact Information", "联系人姓名": "Contact Name", "供应商地址": "Supplier Address", "添加供应商": "Add Supplier", "选填,请填写备注": "Optional,please fill in the remarks", "选填,请填写开户行账号": "Optional,please fill in the account number of the opening bank", "选填,请填写开户行": "Optional,please fill in the opening bank", "必填,请填写供应商联系方式": "required,please fill in the supplier iscontact information" },
"sellParkingSpaceFee": { "缴费周期": "payment period", "实收费用": "actually charged Fee", "两年": "two years", "应收费用": "chargeable fee", "必填,请填写实际收取费用": "required,please fill in the actual charge", "必填": "Required", "一年": "One Year", "收费信息": "Charge Information", "收费项目": "Charge Item" },
"addContractType": { "必填,请填写类型名称": "Required,please fill in the type name", "选填,请填写描述": "optional,please fill in the description", "是否审核": "whether to review Check", "不审核": "Do not review", "添加合同类型": "Add contract type", "取消": "Cancel", "类型名称": "Type name", "请选择审核": " Please select review", "物业审核": "property review", "描述": "description" },
"chooseFeeDiscount": { "查询": "query", "选择": "select", "折扣名称": "discount name", "操作": "operation", "选择费用折扣": "select fee discount", "规则": "rule", "折扣": "discount", "折扣类型": "discount type", "输入费用折扣名称": "Enter fee discount name", "描述": "Description" },
"addMachine": { "选填,请填写设备IP,如 192.168.1.10:8090": "Optional,Please fill in the device IP,such as 192.168.1.10:8090", "归属房屋": "home", "出场": "appearance", "添加设备": "add device", "必填,请选择设备方向": "Required,please select the device orientation", "必填,请选择设备位置": "Required,please select the device location", "必填": "Required", "归属部门": "Department", "设备编码": "device code", "设备名称": "device name", "必填,请填写设备名称": "required,please fill in the device name", "设备位置": "device location", "选填,请填写设备MAC": "Optional,please fill in the device MAC", "设备": " device", "设备类型": "device type", "归属停车场": "home parking lot", "设备方向": "Equipment direction", "必填,请填写厂家": "Required,please fill in the manufacturer", "归属单元": "Attribution unit", "归属楼栋": "Attribution building", "版本号": "version number", "必填,请填写设备编码": "required,please fill in the device code", "必填,请填写版本号": "required,please fill in the version number", "进场": "Approach", "归属岗亭": "Attribution booth", "取消": "Cancel", "厂家": "Manufacturer" },
"deleteContractCollectionPlan": { "请确认您的操作": "Please confirm your operation", "确定删除收款计划": "Delete the collection plan", "点错了": "Wrong click", "确认删除": "Confirm deletion" },
"viewWechatSmsTemplateInfo": { "微信模板信息": "WeChat Template Information", "微信模板": "WeChat Template", "说明": "Description", "模板类型": "Template Type", "选择微信模板": " Select Wechat Template", "添加微信模板": "Add Wechat Template" },
"indexAnalysis": { "数据分析": "Data Analysis" },
"addRoom": { "必填,请填写房屋编号": "required,please fill in the house number", "房屋楼层": "house floor", "房屋单价": "house unit price", "单元": "Unit", "两室两厅": "two rooms and two halls", "房屋状态": "house status", "请填写备注信息": "please fill in the remarks", "建筑面积": " Building area", "备注": "remarks", "已出售": "sold", "必填": "required", "已交定金": "deposit paid", "房屋户型": " House type", "添加房屋": "Add house", "一室两厅": "One bedroom and two halls", "未出售": "Not for sale", "必填,请填写房屋建筑面积": " Required,please fill in the building area", "房屋单元": "Housing unit", "房间数": "Number of rooms", "取消": "Cancel", "必填,请填写房屋每平米单价": "required,please fill in the unit price per square meter of the house", "必填,请填写房屋楼层": "required,please fill in the floor of the house", "已出租": "leased", "房屋编号": "house number" },
"editClue": { "项目名称": "Project name", "项目位置": "Project location", "投资方简介": "Investor profile", "必填,请填写项目名称": "Required,please fill in the project name", "电话": "Telephone", "必填,请填写项目位置": "Required,please fill in the project location", "投资额": "Investment amount", "选填,请填写投资额": "optional,please fill in the investment amount", "必填,请填写电话": "required,please fill in the telephone", "选填,请填写项目概述": "optional,Please fill in the project overview", "必填,请填写投资方名称": "required,please fill in the investor isname", "修改线索管理": "modify lead management", "项目概述": "project overview", "选填,请填写投资方简介": "Optional,please fill in the investor isprofile", "取消": "Cancel", "投资方名称": "Investor isname" },
"chooseAccountBondObj": { "查询": "Query", "保证金": "Margin", "选择保证金对象": "Select Margin Object", "选择": "Select", "应收金额": "Receivable Amount", "操作": "Operation", "保证金对象": "Margin Object", "输入保证金对象名称": "Enter Margin Object Name", "实收金额": "Actual Amount" },
"shopCommunityWithdraw": { "撤回说明": "Revocation description", "必填,请填写撤回意见": "Required,please fill in the withdrawal opinion", "确认撤回": "Confirm withdrawal", "请确认您的操作": "Please confirm your operation", "点错了": "The wrong click" },
"addQuestionAnswerTitle": { "选项": "Option", "增加选项": "Add option", "多选": "Multiple choice", "顺序": "Order", "问卷题目": "Questionnaire", "题目类型": "Subject type", "必填": " required", "必填,请填写顺序": "required,please fill in the order", "删除选项": "delete option", "必填,请填写问卷题目": "Required,please fill in the questionnaire title", "取消": "Cancel", "必填,请填写选项内容": "Required,please fill in the options", "简答题": "Short answer", "添加题目": "Add topic", "单选": "single choice" },
"chooseFeeConfig": { "计费终止时间": "billing termination time", "操作": "operation", "选择费用项": "Select expense item", "费用类型": "Expense type", "费用项": "Expense item", "计算公式": "Calculation formula", "计费单价": "Calculation Charge unit price", "查询": "query", "选择": "select", "输入费用项名称": "input expense item name", "计费起始时间": "billing start time", "费用标识": "Expense ID", "附加费用": "Additional Charge", "收费项目": "Charge Item" },
"chooseFeeManualCollection": { "查询": "Query", "选择": "Select", "托收": "Collection", "房屋单价": "Housing Unit Price", "操作": "Operation", "业主名称": "Owner Name", "选择人工托收": "Select Manual Collection", "输入人工托收名称": "Enter manual collection name", "规格": "Specification", "备注": "Remarks", "业主电话": "Owner phone", "房屋面积": "House area" },
"editMainCategoryProduct": { "修改": "modify", "排序": "sort", "开始时间": "start time", "必填,请填写结束时间": "required Fill in,please fill in the end time", "取消": "cancel", "结束时间": "end time", "必填,请填写开始时间": "required,please fill in the start time", "必填,请填写排序": "Required,please fill in the sort" },
"editSystemGoldSetting": { "普通金币": "Normal Gold Coins", "状态": "Status", "停用": "Disabled", "名称": " name", "使用价格": "use price", "必填": "required", "有效期": "validity", "必填,请填写购买价格": "required,please fill in Purchase price", "必填,请填写有效期": "required,please fill in expiration date", "必填,请填写名称": "required,please fill in name", "必填,请填写使用价格": "Required,please fill in the use price", "启用": "Enable", "购买价格": "purchase price", "取消": "cancel", "金币设置": "gold setting", "类型": "type" },
"simplifyFeeReceipt": { "费用类型": "fee type", "请选择合同": "Please select a contract", "业主": " Owner", "全部": "All", "请选择车辆": "Please select a car", "请选择收费类型": "Please select a charge Type", "房屋费": "Housing Fee", "当前": "Current", "缴费时间": "Payment Time", "合同费": "Contract Fee", "收据": "Receipt", "车位费": "Parking Fee", "费用项目": "Expense Item", "费": "Fee", "总金额": "Total Amount" },
"addAccountBondObj": { "保证金": "Deposit", "必填,请填写保证金": "required,please fill in margin", "添加保证金对象": "add margin object", "应收金额": "receivable amount", "保证金对象": "guarantee Gold object", "选填,请填写应收金额": "optional,please fill in the receivable amount", "实收金额": "actually received amount", "取消": "cancel", "选填,请填写实收金额": "optional,please fill in the amount received", "必填,请填写保证金对象": "required,please fill in the deposit object" },
"addFeeFormula": { "必填,请填写单价": "required,please fill in the unit price", "选填,请填写描述": "optional,please fill in the description", "必填,请填写公式": "required,please fill in the formula", "举例": "Example", "添加公式": "Add formula", "单价": "Unit price", "取消": "Cancel", "公式": "Formula", "说明": "Description", "描述": "" },
"reSubmitComplaint": { "请确认您的操作": "Please confirm your operation", "确认提交": "Confirm submission", "点错了": "Wrong click" },
"chooseParkingSpaceApply": { "汽车品牌": "Car brand", "起租时间": "Lease start time", "操作": "Operation", "选择车位申请": "Select parking space application", "颜色": "color", "车辆类型": "car type", "申请": "application", "备注": "remark", "查询": "query", "选择": "select", "结租时间": "Lease settlement time", "车牌号": "License plate number", "申请人电话": "Applicant phone number", "输入车位申请名称": "Enter parking space application name", "审核结果": "Review result", "申请人": "Applicant" },
"deleteServiceProvide": { "确定删除服务提供": "Delete service provision", "请确认您的操作": "Please confirm your operation", "点错了": "Wrong click", "确认删除": "Confirm deletion" },
"roomTree": { "请选择房屋": "Please select a house" },
"storeEnterCommunity": { "查询": "Query", "小区": "Community", "操作": "Operation", "申请入驻": "Apply for settlement", "输入小区名称": "Enter a community name", "城市编码": "City code", "名称": "name", "联系方式": "contact", "地址": "address", "地标": "landmark" },
"editReportInfoBackCity": { "国内": "domestic", "城市名称": "city name", "必填,请填写返回时间": "required,please fill in the return time", "备注": "remarks", "必填,请填写姓名": "required,please Fill in name", "必填": "required", "身份证": "ID card", "选填,请填写备注": "optional,please fill in remarks", "姓名": "name", "必填,请填写身份证": "Required,please fill in ID card", "国外": "Foreign", "来源地": "Origin", "手机号": "Mobile number", "必填,请填写手机号": "Required,please fill in the phone number", "取消": "Cancel", "必填,请填写城市名称": "Required,please fill in the city name", "返回时间": "Return time", "修改上报": "Modify report" },
"examineVisit": { "访客ID": "Visitor ID", "审核备注": "Remarks", "访客审核": "Visitor review", "访客姓名": "Visitor name", "审核通过": "Approval passed", "必填,请填写访客ID": "Required,please fill in the visitor ID", "审核拒绝": "Review rejected", "选填,请填写审核备注": "optional,please fill in the review remarks", "请选择审核状态": "please select the review status", "审核状态": "audit status", "必填,请填写访客姓名": "required,please fill in the visitor isname", "未审核": "unreviewed" },
"chooseLocation": { "查询": "query", "位置名称": "location name", "选择": "Select", "输入位置管理名称": "Enter location management name", "操作": "Operation", "选择位置管理": "Select location management", "位置": "Location", "位置类型": "Location type" },
"editParkingSpace": { "修改车位": "Modify parking space", "必填,请填写车位编码": "Required,please fill in the parking space code", "车位编码": "Parking Space Code", "备注": "Remarks", "必填,请填写面积,如30.09": "Required,please fill in the area,such as 30.09", "停车场": "Parking", "车位类型": " car Bit type", "面积": "area", "可填,请填写备注": "can be filled,please fill in remarks" },
"choosePayFeeConfigDiscount": { "查询": "query", "选择": "select", "折扣名称": "Discount Name", "操作": "Operation", "选择费用折扣": "Select Fee Discount", "输入费用折扣名称": "Enter Fee Discount Name", "费用折扣": "Fee discount" },
"editApplyRoomDiscountType": { "修改": "modify", "必填,请填写类型名称": "required,please fill in the type name", "选填,请填写类型描述": "Optional,please fill in the type description", "取消": "Cancel", "类型名称": "Type name", "类型描述": "Type description" },
"viewUnitInfo": { "单元信息": " Unit information", "电梯": "elevator", "选择单元": "select unit", "备注": "remark", "单元ID": "unit ID", "添加单元": "add unit", "单元编号": "Unit number", "总层数": "Total layers", "面积": "Area" },
"editQuestionAnswer": { "员工自评": "Employee self-assessment", "员工投票": "Employee Voting", "开始时间": "Start Time", "业主投票": "Owner Voting", "问卷名称": "Questionnaire Name", "问卷类型": "Questionnaire Type", "备注": "Remarks", "修改问卷信息": "Modify questionnaire information", "必填": "required", "必填,请填写问卷名称": "required,please fill in the questionnaire name", "必填,请填写开始时间": "Required,please fill in the start time", "选填,请填写备注": "Optional,please fill in the remarks", "业主问卷": "Owner Questionnaire", "必填,请填写结束时间": "required,please fill in the end time", "结束时间": "end time" },
"addCarModal": { "必填,请填写车颜色,如白色": "required,please Fill in the car color,such as white", "添加车辆": "add car", "车品牌": "car brand", "颜色": "color", "请填写备注信息": "please fill in the remarks", "必填,请填写车品牌,如 宝马": "required,please fill in the car brand,such as BMW", "车牌号": "license plate number", "备注": "remarks", "必填,请填写车牌号": "required,please fill in the license plate number", "必填": "required", "车类型": "car type" },
"addProxyFee": { "开始时间": "start time", "费用类型": "Charge type", "水费": "Water fee", "用量": "Consumption", "电费": "Electricity fee", "其他": "Other", "代收费用": "Charge fee", "必填": "required", "个数": "number", "必填,请填写开始时间": "required,please fill in the start time", "必填,请填写用量": " Required,please fill in the amount", "必填,请填写金额": "required,please fill in the amount", "收费对象": "charge object", "必填,请填写房屋": "required,please Fill in the house", "必填,请填写结束时间": "required,please fill in the end time", "结束时间": "end time", "金额": " amount", "收费项目": "charge item" },
"chooseinitializeCommunity": { "请慎重操作": "Please operate carefully", "确认格式化": "Confirm formatting", "温馨提示": "Warm reminder", "请输入开发者密码": "Please enter the developer password", "点错了": "Wrong click" },
"deleteAttrValue": { "请确认您的操作": "Please confirm your operation", "确定删除属性值": "Delete attribute value", "点错了": "Wrong click", "确认删除": "Confirm deletion" },
"addService": { "透传": "Transparent transmission", "服务编码": "Service code", "选填,请填写消息队列": "optional,please fill in message queue", "必填,请填写服务名称": "required,please fill in service name", "必填,请填写服务编码": "required,please fill in the service code", "否": "no", "选填,请填写调用地址": "optional,please fill in the calling address", "必填": "required Fill in", "必填,请填写重试次数": "required,please fill in the number of retries", "服务名称": "service name", "是": "yes", "超时时间": "timeout Time", "调用服务": "call service", "调用方式": "call method", "必填,请填写超时时间": "required,please fill in the timeout time", "重试次数": " Number of retries", "添加服务": "Add service", "微服务指令": "Microservice instruction", "取消": "Cancel", "消息队列": "Message queue", "调用地址": "Call address", "是否实例": "Is an instance" },
"viewResourceStoreInfo": { "物品管理信息": "Item management information", "物品名称": "Item name", "物品库存": "Item Inventory", "添加物品管理": "Add item management", "物品编码": "item code", "物品价格": "item price", "选择物品管理": "select item management", "描述": "Description" },
"viewMachineAuthInfo": { "开始时间": "Start Time", "员工": "Employee", "添加员工门禁授权": "Add Employee Access Authorization", "设备": "Device", "员工门禁授权信息": "Employee door Forbidden authorization information", "结束时间": "end time", "选择员工门禁授权": "select employee access control authorization" },
"chooseInspectionRoutePoint": { "查询": "query", "选择巡检点": "Select inspection point", "巡检点名称": "inspection point name", "重置": "reset", "输入巡检点名称": "enter inspection point name", "巡检点": "Inspection point" },
"chooseFeePrintSpec": { "查询": "query", "选择": "select", "输入打印配置名称": "input print configuration name", "操作": " Operation", "规格": "specification", "选择打印配置": "select print configuration", "必填": "required", "内容": "content" },
"viewFeeDetailDiscount": { "折扣金额": "Discount Amount", "折扣名称": "Discount Name", "折扣规则": "Discount Rule", "折扣": "Discount", "折扣类型": "Discount Type" },
"viewMeterTypeInfo": { "添加抄表类型": "Add meter reading type", "抄表类型信息": "meter reading type information", "名称": "name", "选择抄表类型": " select meter reading type", "说明": "Description" },
"deleteReportInfoSettingTitle": { "确定删除题目": "Delete the title", "请确认您的操作": "Please confirm your operation", "点错了": "Wrong click", "确认删除": "Confirm deletion" },
"editRentingConfig": { "每月租金比例": "Monthly rent ratio", "修改": "Modify", "必填,请填写业主收费比率": "Required,please fill in the owner charge rate", "必填,请填写租客收费比率": "Required,please fill in the tenant charge rate", "整租": "Whole rent", "物业分账比率": "Property sharing ratio", "服务费": "Service fee", "必填,请填写服务费": "Required,please fill in service fee", "运营分账比率": "Operation Account sharing ratio", "租客收费比率": "tenant charging ratio", "必填,请填写运营分账比率": "required,please fill in the operating accounting ratio", "必填": "required", "固定值": "Fixed value", "必填,请填写物业分账比率": "Required,please fill in the property share ratio", "必填,请填写代理商分账比率": "Required,please fill in Agent isaccount sharing ratio", "收费公式": "Charge formula", "取消": "Cancel", "代理商分账比率": "Agent isaccount-sharing ratio", "合租": "Shared rent", "租聘类型": "Rent Type", "业主收费比率": "Owner Charge Rate" },
"addCarBlackWhite": { "白名单": "whitelist", "开始时间": "start time", "名单类型": "list type", "黑名单": "blacklist", "必填": "required", "必填,请填写开始时间": "required,please fill in the start time", "添加名单": "add list", "必填,请填写结束时间": "required,please fill in the end time", "取消": "Cancel", "车牌号": "License plate number", "必填,请填写车牌号": "Required,please fill in the license plate number", "归属停车场": "Attribution parking lot", "结束时间": "end time" },
"editMachineAuth": { "最美员工": "the most beautiful employee", "开始时间": "start time", "员工": "employee", "设备": "equipment", "必填,请填写结束时间": "required,please fill in the end time", "取消": "cancel", "修改员工门禁授权": "modify employee access control authorization", "必填": "required", "结束时间": "end time", "必填,请填写开始时间": "required,please fill in the start time" },
"chooseRentingPool": { "操作": "operation", "选择房源": "Select housing", "备注": "Remarks", "输入房源名称": "Enter housing name", "出租标题": "Rental title", "租房": "Renting", "预付类型": "Prepaid Type", "查询": "Inquiry", "选择": "Select", "业主名称": "Owner Name", "出租配置": "Rental Configuration", "业主电话": " Owner phone number", "租金": "rent", "入住时间": "check-in time" },
"company-cerdentials": { "请选择时间": "please select the time", "证件号码": "certificate number", "营业执照照片": "Business License Photo", "营业执照信息": "Business License Information", "有效期": "Validity Period" },
"viewParkingSpaceFeeConfig": { "每小时单价": "Hourly Unit Price", "信息": "Information", "编辑": "Edit", "地下停车费配置": "Underground Parking Charge Configuration", "地下临时配置": "Underground Temporary Configuration", "首两个小时": "First two hours", "地上停车费配置": "Ground parking fee configuration", "每月费用": "Monthly fee" },
"chooseComponentCondition": { "选择报表组件条件": "Select report Component condition", "查询": "query", "选择": "select", "操作": "operation", "参数": "parameter", "提示": "prompt", "输入报表组件条件名称": "Enter report component condition name", "条件": "condition", "名称": "name", "组件": "component", "描述": "description", "类型": "Type" },
"choosePropertyRightRegistration": { "查询": "query", "房屋": "house", "姓名": "name", "操作": "operation", "房屋产权": "House property rights", "联系方式": "Contact information", "地址": "Address", "身份证号": "ID card number", "选择房屋产权": "Select housing property rights", "输入房屋产权名称": "Enter the property title name" },
"commonReportTable": { "查询": "query", "查询条件": "query condition" },
"bodyTop": {},
"chooseMachineType": { "查询": "Query", "选择": "Select", "选择设备类型": "Select Device Type", "设备大类": "Device Type", "设备类型名称": "Device Type Name", "操作": "Operation", "数据状态": "Data Status", "设备类型": "Device Type", "输入设备类型名称": "Enter Device Type Name" },
"deleteRentingPool": { "请确认您的操作": "Please confirm your operation", "确定删除房源": "Confirm to delete the listing", "点错了": "Wrong click", "确认删除": "Confirm to delete" },
"reportProficientRoomFee": { "收费类型": "Charge type", "姓名": "Name", "应收金额": "Amount receivable", "房号": "Room number", "联系电话": "Contact number", "费用名称": "Expense name", "面积": "Area" },
"sellRoomSelectOwner": { "选择业主": "Select owner", "业主": "Owner", "名称": "name", "联系方式": "contact", "年龄": "age", "创建员工": "create employee", "业主信息": "owner information", "性别": "gender" },
"chooseActivities": { "查询": "query", "活动": "activity", "活动类型": " activity type", "选择": "select", "输入活动名称": "input Activity name", "操作": "operation", "活动标题": "activity title", "开始时间": "start time", "活动内容": "activity content", "选择活动": "select activity", "结束时间": "end time", "头部照片": "head photo" },
"initData": {},
"stopRepair": { "必填,请填写暂停原因": "required ,please fill in the reason for suspension", "暂停原因": "reason for suspension", "暂停报修单": "request for suspension" },
"parkingAreaControlRemaining": { "采集时间": "collection time", "总车位数": "total number of cars", "剩余车位数": "remaining number of cars", "位": "bit" },
"questionValue": { "选择人数": "Number of people selected", "问卷结果": "Questionnaire result", "选项内容": "Option content" },
"chooseFeeFormula": { "查询": "Query", "选择": "Select", "操作": "Operation", "公式": "Formula", "选择公摊公式": "Select share formula", "输入公摊公式名称": "Enter share formula name", "描述": "Description" },
"viewApplicationKeyInfo": { "姓名": "Name", "开始时间": "Start Time", "手机号": "Mobile Number", "添加钥匙申请": "Add Key Application", "选择钥匙申请": "Select key application", "年龄": "Age", "身份证号": "ID number", "结束时间": "End time", "钥匙申请信息": "Key application information", "用户类型": "User type", "性别": "Gender" },
"deleteHousekeepingServ": { "确定删除该服务": "Delete this service", "请确认您的操作": "Please confirm your operation", "点错了": "Wrong click", "确认删除": "Confirm deletion" },
"deleteAttendanceClasses": { "请确认您的操作": "Please confirm your Operation", "确定删除考勤班组": "Delete Attendance Team", "点错了": "Wrong Click", "确认删除": "Delete Confirmation" },
"editInspectionRoutePoint": { "排序": "sort", "必填,请填写排序值": "required,please fill in the sorting value", "修改巡检点": "modify inspection point", "开始时间": "start time", "必填,请填写结束时间": "required,please fill in the end time", "结束时间": "end time", "必填,请填写开始时间": "required,please fill in the start time" },
"parkingAreaControlTempCar": { "颜色": "color", "进场时间": "entry time", "车牌号": "license plate number", "车辆类型": "car type", "必填,请填写车牌号": "required,please fill in the license plate number", "车辆品牌": "car brand" },
"viewBusinessDatabusInfo": { "选择": "select", "业务类型": "business type", "适配器": "Adapter", "顺序": "order", "添加": "add" },
"addReportInfoBackCity": { "国内": "domestic", "城市名称": "city name Name", "必填,请填写返回时间": "required,please fill in the return time", "备注": " remarks", "必填,请填写姓名": "required,please fill in the name", "必填": "Required", "身份证": "ID card", "选填,请填写备注": "optional,please fill in remarks", "姓名": "name", "上报": "Report", "必填,请填写身份证": "required,please fill in ID card", "国外": "foreign", "来源地": "source", "手机号": "mobile phone number", "必填,请填写手机号": "Required,please fill in the phone number", "取消": "Cancel", "必填,请填写城市名称": "Required,please fill in the city name", "返回时间": "Return time" },
"viewActivitiesBeautifulStaffInfo": { "工作简介": "job profile", "员工": "employee", "选择最美员工": "select the most beautiful employee", "员工编号": "Employee ID", "最美员工信息": "The most beautiful employee information", "活动规则": "Activity rules", "添加最美员工": "Add the most beautiful employee" },
"newOaWorkflowPool": { "请输入申请人": "Please enter applicant", "查询": "query", "操作": "operation", "流程工单": "process work order", "状态": "status", "查询条件": "query condition", "请输入开始时间": "please input the start time", "创建时间": "create time", "请输入结束时间": "please input the end time", "流程图": " Flowchart", "详情": "details", "申请人": "applicant" },
"editBusinessDatabus": { "修改": "modified", "状态": "status", "停用": " Disabled", "顺序": "order", "名称": "name", "在用": "in use", "必填": "required", "必填,请填写顺序": " Required,please fill in the order", "业务类型": "Business type", "必填,请填写适配器": "Required,please fill in the adapter", "必填,请填写名称": "Required,please Fill in the name", "适配器": "Adapter", "必填,请填写业务类型": "Required,please fill in the business type" },
"indexOpenDoorAnalysis": { "请选择开始时间": "Please select the start time", "密码开门": "password to open the door", "项目": "item", "刷脸开门": "swipe face to open the door", "开门次数趋势": "opening frequency trend", "请选择结束时间": "Please select the end time" },
"editFeeConfig": { "催缴类型": "Call type", "修改费用项": "Modify expense item", "计费终止时间": "Billing termination time", "举例": "Example", "费用类型": "Fee type", "付费类型": "Payment type", "必填,请填写缴费周期 单位为月": "Required,please fill in the payment cycle unit as month", "公式": " Formula", "计算公式": "Calculation formula", "说明": "Description", "必填": "Required", "必填,请填写计费起始时间": "Required,please fill in Billing start time", "计费单价": "billing unit price", "缴费周期": "payment period", "必填,请填写计费终止时间": "required,please fill in the billing end Time", "必填,请填写公式": "Required,please fill in the formula", "必填,请填写收费项目": "Required,please fill in the charge item", "计费起始时间": " Billing start time", "必填,请填写计费单价": "required,please fill in the billing unit price", "费用标识": "cost ID", "必填,请填写附加费用": " Required ,please fill in the additional fee", "收费项目": "Charge item" },
"deleteApplyRoomDiscountRecord": { "确定删除验房记录": "Delete the home inspection record", "请确认您的操作": "Please confirm Your operation", "点错了": "Click wrong", "确认删除": "Confirm delete" },
"editAccountBond": { "保证金名称": "Margin name", "选填,请填写备注": "optional,please fill in the remarks", "保证金金额": "margin amount", "必填,请填写保证金金额": "required,please fill in the margin amount", "选填,请填写类型ID": "Optional,please fill in type ID", "取消": "Cancel", "修改保证金": "Modify margin", "必填,请填写保证金名称": "Required,please fill in margin name", "备注": "Remarks", "有效月份": "Valid Month", "店铺类型": "Store Type", "选填,请填写有效月份": "Optional,please fill in the valid month" },
"deleteReportCustomComponentFooter": { "确定删除组件统计": "Delete component statistics", "请确认您的操作": "Please confirm your operation", "点错了": "Wrong click", "确认删除": "Confirm deletion" },
"viewActivitiesTypeInfo": { "添加信息大类": "Add information category", "大类名称": "category name", "大类描述": "category description", "显示序号": "Display serial number", "是否显示": "Whether to display", "信息大类信息": "Information category information", "选择信息大类": "Select information category" },
"chooseRentingAppointment": { "查询": "query", "预约": "reservation", "选择": "select", "预约房屋": "reservation house", "操作": "Operation", "选择租赁预约": "Select rental appointment", "输入租赁预约名称": "Enter rental appointment name", "租客电话": "Tenant phone", "备注": "Remarks", "预约时间": "Reservation Time", "租客性别": "Tenant Gender", "租客名称": "Tenant Name" },
"parkingAreaSelect2": { "请选择停车场": "Please select the parking lot" },
"editParkingBox": { "是否收费": "Whether to charge", "否": "No", "临时车是否进场": "Whether the temporary car enters the park", "备注": "Remarks", "必填": "Required", "停车场": "Parking lot", "是": "Yes", "岗亭名称": "Post Name", "黄牌车进场": "Yellow-licensed cars enter the field", "必填,请填写备注": "required,please fill in the remarks", "取消": "cancel", "必填,请填写岗亭名称": "required ,Please fill in the name of the guard booth", "修改岗亭": "modify guard booth", "蓝牌车进场": "blue card entry" },
"viewMap": {},
"vue_test": {},
"editFeeDiscount": { "修改": "Modify", "优惠": "Offer", "折扣名称": "Discount Name", "规则": "Rule", "违约": "Default", "取消": "Cancel", "折扣类型": "discount type", "必填,请填写折扣名称": "required,please fill in the discount name", "可选,请填写描述": "optional,please fill in the description", "必填": "Required", "描述": "Description" },
"editLocation": { "小区": " Residential", "房屋": "House", "楼栋": "Building", "单元": "unit", "位置类型": "location type", "修改位置管理": "modify location management", "必填,请填写位置名称": "required,please fill in the location name", "必填": "required", "停车场": "parking", "位置名称": "location name", "部门": "department", "取消": "cancel", "岗亭": "Postbox" },
"selectStaff": { "提交者": "Submitted by", "公司信息": "Company Information", "部门信息": "Department Information", "员工信息": "Employee Information", "动态指定": "Dynamic designation" },
"editPropertyCompany": { "修改": "modify", "必填,请填写地标": "required,please fill in the landmark", "电话": "telephone", "名称": "Name", "必填,请填写电话": "required,please fill in the phone", "必填,请填写名称": "required,please fill in the name", "必填,请填写成立日期": "required,please fill in the date of establishment", "必填,请填写公司法人": "required,please Fill in the company legal person", "成立日期": "establishment date", "取消": "cancel", "地址": "address", "公司法人": "company legal person", "必填,请填写地址": "Required,please fill in the address", "地标": "Landmark" },
"deleteQuestionAnswer": { "请确认您的操作": "Please confirm your operation", "确定删除问卷信息": "Confirm to delete Questionnaire information", "点错了": "Wrong click", "确认删除": "Confirm deletion" },
"editMachineType": { "设备大类": "Equipment category", "设备类型名称": "Device type name", "必填,请填写设备类型名称": "required,please fill in the device type name", "修改设备类型": "modify device type", "取消": "cancel", "必填": "Required" },
"deleteReportInfoBackCity": { "确定删除返省上报": "Delete the report back to the province", "请确认您的操作": "Please confirm your operation", "点错了": "Click wrong", "确认删除": "Confirm delete" },
"chooseContractType": { "查询": "Query", "选择合同类型": "Select contract type", "选择": "Select", "操作": "Operation", "是否审核": "Approval", "类型名称": "Type name", "输入合同类型名称": "Enter contract type name", "描述": "Description", "类型": "Type" },
"viewMachineInfo": { "设备编码": "Device Code", "设备名称": "Device Name", "选择设备": "Select Device", "设备": "Device", "设备信息": "Device Information", "版本号": "Version Number", "设备类型": "Device Type", "添加设备": "Add Device", "鉴权编码": "Authentication code" },
"addOwnerRepair": { "小区": "Residential", "房屋": "House", "楼栋": "Building", "归属单元": "Attribution unit", "归属房屋": "Belonging house", "单元": "Unit", "归属楼栋": "Belonging building", "报修范围": "Repair scope", "必填,请填写预约时间": "Required Fill in,please fill in the appointment time", "联系方式": "contact information", "报修类型": "repair type", "报修登记": "repair registration", "必填": "required", "报修人": "required,please fill in the contact information", "必填,请填写联系方式": "required,please fill in the repairer", "必填,请填写报修人": "repair content", "报修内容": "required,please fill in the repair content", "必填,请填写报修内容": "reservation time", "预约时间": "" },
"chooseService": { "查询": "", "服务编码": "", "选择": "", "调用方式": "", "序列": "", "操作": "", "输入服务名称": "", "服务": "", "消息队列": "", "选择服务": "", "调用地址": "", "服务名称": "" },
"chooseServiceImpl": { "操作": "operation", "选择服务实现": "choose service implementation", "业务名称": "business name", "描述": "description", "超时时间": "timeout", "查询": "query", "业务类型": "business type", "选择": "select", "输入服务实现名称": "Enter service implementation name", "重试次数": "retry times", "调用类型": "call type", "调用地址": "call address", "服务实现": "service implementation" },
"addSysDocumentView": { "添加文档": "Add document", "信息内容": "Information content", "必填,请填写标题": "Required,please fill in the title", "取消": "Cancel", "文档编码": "document code", "标题": "title", "必填,请填写文档编码": "required,please fill in the document code" },
"viewSystemGoldSettingInfo": { "选择金币设置": "Select gold coin settings", "购买价格": "purchase price", "状态": "status", "添加金币设置": "add gold coin settings", "名称": "name", "金币设置信息": "Gold coin setting information", "使用价格": "use price", "类型": "type", "有效期": " validity" },
"ownerExitRoom": { "确认是否退房": "Confirm whether to check out", "请确认您的操作": "Please confirm your operation", "确认退出": "Confirm exit", "点错了": "Wrong click" },
"editWechatMenu": { "必填,请填写值": "required,please fill in the value", "修改菜单": "modify menu", "顺序": "order", "菜单名称": "menu name", "选填,请填写": "optional,please fill in", "小程序地址": "mini program address", "菜单类型": "menu type", "选填,请填写小程序地址": "optional,Please fill in the applet address", "顶级菜单": "top menu", "必填,请填写菜单名称": "required,please fill in the menu name", "链接": "link", "取消": " Cancel", "小程序": "Mini Program", "值": "Value", "必填,请填写有效数字": "Required,please fill in a valid number" },
"editClueAttr": { "目前进展情况": "Current progress", "修改跟进": "Modify follow-up", "取消": "Cancel", "选填,请填写下一步推进计划": "Optional ,please fill in the next promotion plan", "必填,请填跟进时间": "required,please fill in the follow-up time", "下一步推进计划": "next promotion plan", "跟进时间": "Follow-up time", "必填,请填写目前进展情况": "required,please fill in the current progress" },
"chooseJunkRequirement": { "操作": "operation", "状态": "status", "联系方式": "Contact information", "发布人": "Publisher", "查询": "Inquiry", "选择": "Select", "输入旧货名称": "Enter second-hand name", "巡检计划": "Inspection plan", "选择旧货": "Select used goods", "参考价格": "Reference price", "内容": "Content", "旧货编码": " Used goods code", "类别": "category" },
"roomCreateFeeAdd": { "小区": "community", "房屋/商铺": "house/shop", "楼栋": "building", "单元": "Unit", "计费结束时间": "Billing End Time", "创建费用": "Create Charge", "费用类型": "Charge Type", "收费金额": "Charge Amount", "请输入楼层 多个层时用#分隔,如1#2": "Please enter a floor with multiple floors separated by #,such as 1#2", "已装修": "Renovated", "楼层": "floor", "已出售": "sold", "必填,请填写收费范围": "required,please fill in the charge range", "房屋类型": "house type", "必填,请填写收费金额": "required,please fill in the charge amount", "已入住": "occupancy", "房屋": "house", "普通房屋": "ordinary house", "必填,请选择费用类型": "Required,please select the type of fee", "必填,请选择房屋类型": "Required,please select the house type", "房屋状态": "House status", "已交房": "The room has been handed over", "必填,请填写计费起始时间": "required,please fill in the starting time of billing", "收费范围": "charging range", "必填,请填写计费结束时间": "Required,please fill in the billing end time", "必填,请选择收费项目": "Required,please select a charge item", "计费起始时间": "Billing start time", "必填,请选择收费范围": "required,please select the charge range", "未入住": "not staying", "已出租": "leased", "商铺": "shop", "收费项目": " Charge item" },
"simplifyMeterWaterLog": { "修改": "modify", "对象名称": "object name", "操作": "operation", "本期度数": "this period number", "上期读表时间": "Last issue ismeter reading time", "本期读表时间": "Current issue ismeter reading time", "删除": "Delete", "表类型": "Table type", "上期度数": "Last period", "请选择表类型": "Please select the meter type", "水表": "Water meter", "创建时间": "Creation time", "电表": "Electric meter" },
"addContractTypeSpec": { "字符串": "string", "否": "no", "选填,请填写说明": "optional,please fill in the description", "添加": "add", "规格名称": "Specification name", "说明": "Description", "文本框": "Text box", "必填": "Required", "查询显示": "Query display", "展示": "Display", "是": "Yes", "选择框": "Select box", "值类型": "Value type", "整数": "Integer", "必填,请填写规格名称": "Required,please fill in the specification name", "取消": "Cancel", "金额": "Amount", "规格类型": "Specification type" },
"doImportCreateFee": { "选择文件": "Select file", "自定义创建费用": "custom creation fee" },
"editContractTypeSpec": { "修改扩展信息": "modify extension information", "字符串": "string", "否": " No", "选填,请填写说明": "optional,please fill in the description", "规格名称": "specification name", "说明": "instruction", "文本框": "text box", "必填": "Required", "查询显示": "Query Display", "展示": "Display", "是": "Yes", "值类型": "Value Type", "整数": " Integer", "必填,请填写规格名称": "required,please fill in the specification name", "取消": "cancel", "选项框": "option box", "金额": "amount", "规格类型": "Specification type" },
"sellRoomOther": { "业主未迁入": "The owner did not move in", "业主迁出": "The owner moved out", "其他信息": "Other information", "请填写备注信息": "Please fill in the remarks", "备注": "remarks", "必填": "required", "业主迁入": "the owner moved in", "出售状态": "Sale status" },
"newOaWorkflowUndo": { "办理": "transaction", "操作": "operation", "状态": "status", "查询条件": "query condition", "请输入开始时间": "Please input the start time", "请输入结束时间": "Please input the end time", "待办流程": "To-do process", "详情": "Details", "请输入申请人": "Please enter the applicant", "查询": "query", "编辑": "edit", "创建时间": "created", "申请人": "Applicant" },
"newOaWorkflowFinish": { "请输入申请人": "Please input applicant", "查询": "Query", "操作": "Operation", "状态": "Status", "查询条件": "query condition", "请输入开始时间": "please input start time", "创建时间": "create time", "请输入结束时间": "please input end time", "已办流程": "Process done", "详情": "details", "申请人": "applicant" },
"viewOwnerRepairInfo": { "选择业主报修": "select the owner to report for repair", "房屋": "House", "报修内容": "Repair content", "联系方式": "Contact information", "添加业主报修": "Add owner repair", "报修类型": "repair type", "业主报修信息": "The owner repair information", "预约时间": "Reservation time", "报修人": "Repair requester" },
"addAdvert": { "站内": "In-station", "图片": "Picture", "发布类型": "Release type", "必填,请填写播放顺序": "required,please fill in the playback order", "必填": "required", "餐饮": "catering", "不跳转": "Do not jump", "站外": "Outside the station", "酒店": "Hotel", "播放顺序": "Playing order", "广告名称": "Ad Name", "必填,请填写投放时间": "Required,please fill in the delivery time", "必填,请填写广告名称": "Required,please fill in the ad name", "必填,请填写结束时间": "Required,please fill in the end time", "视频": "video", "广告分类": "ad classification", "投放位置": "placement", "结束时间": "end time", "投放时间": "run time", "旅游": "tour", "员工首页": "employee home page", "播放方式": "play mode", "服务首页": "service home page", "教育": "Education", "物流": "Logistics", "便民首页": "Convenience Homepage", "请填写跳转路径": "Please fill in the jump path", "互联网": "Internet", "业主首页": "Home owner homepage", "发布广告": "Post an advertisement", "商圈首页": "Business district homepage", "跳转路径": "Jump path", "小区内设备": "In-community equipment" },
"addResourceStore": { "必填,请填写物品最小计量单位,最高收费标准": "Required,please fill in the item isminimum measurement unit,the maximum charge standard", "必填,请填写最小计量单位数量": "Required,please fill in the minimum measurement unit quantity", "备注": "Remarks", "必填,请填写物品采购参考价格": "Required,please fill in the reference price of the item", "必填": "Required", "描述": "Description", "是否在维修材料中显示": "Whether it is displayed in the maintenance material", "选填": "optional", "物品单位": "item unit", "采购参考价格": "purchase reference price", "是否是固定物品": "Whether it is a fixed item", "物品规格": "Item specification", "最小计量单位": "Minimum measurement unit", "最低收费标准": "Minimum charge standard", "否": " No", "物品类型": "Item type", "必填,请填写物品编码": "required,please fill in the item code", "必填,请填写警告库存": "required,please fill in the warning Inventory", "仓库": "Warehouse", "最小计量单位数量": "Minimum Quantity of UoM", "最高收费标准": "Maximum Charge Standard", "警告库存": "Warning Inventory", "是": "Yes", "选填,请填写备注": "optional,please fill in the remarks", "物品名称": "item name", "选填,请填写描述": "optional,please fill in the description", "必填,请填写物品最小计量单位,最低收费标准": "Required,please fill in the minimum measurement unit of the item,the minimum charge standard", "上传图片": "Upload image", "物品编码": " Item code", "必填,请填写物品名称": "required,please fill in the item name", "添加物品": "add item" },
"roomSelectFloor": { "选择小区楼": "select a community floor", "添加房屋": "Add house", "小区楼": "Residential building", "名称": "Name", "编号": "Number", "小区楼信息": "Residential building information" },
"deleteOrg": { "确定删除组织管理": "Delete organization management", "请确认您的操作": "Please confirm your operation", "点错了": "Wrong click", "确认删除": "Confirm delete" },
"editMachine": { "设备方向": "Device orientation", "必填,请填写厂家": "Required,please fill in the manufacturer", "选填,请填写设备IP,如 192.168.1.10:8090": "optional,please fill in the device IP,such as 192.168.1.10:8090", "设备IP": "device IP", "修改设备门禁": "modify device access control", "版本号": "Version number", "出场": "Appearance", "必填,请选择设备方向": "Required,please select the device orientation", "必填,请填写设备编码": "Required,Please fill in the device code", "必填,请填写版本号": "required,please fill in the version number", "进场": "entry", "设备编码": "equipment code", "设备名称": "Device name", "必填,请填写设备名称": "required,please fill in the device name", "必填,请选择设备类型": "required,please select the device type", "选填,请填写设备MAC": "optional,please fill in the device MAC", "设备": "equipment", "取消": "cancel", "设备类型": "equipment type", "厂家": "manufacturer" },
"feeSharing": { "楼栋": "building", "必填,请选择公摊范围": "Required,please select the range of common share", "单元": "unit", "公摊公式": "shared formula", "开始时间": "start time", "费用类型": "Expense type", "请输入楼层 多个层时用#分隔,如1#2": "Please enter multiple floors to be separated by #,such as 1#2", "已装修": "Renovated", "备注": "Remarks", "楼层": "Floor", "已出售": "Sold", "房屋类型": "House Type", "已入住": "Have Check-in", "费用公摊": "Expense sharing", "结束时间": "End time", "使用量": "Usage", "必填,请填写费用结束时间": "Required,Please fill in the end time of the fee", "普通房屋": "ordinary housing", "必填,请选择费用类型": "required,please select the type of fee", "公摊范围": "shared range", "公摊费": "Commonly assessed fee", "费用名称": "Expense name", "必填,请选择房屋类型": "Required,please select the house type", "房屋状态": "House status", "已交房": "Room delivered", "必填,请填写费用开始时间": "required,please fill in the start time of the fee", "必填,请填写当期使用量": "required,please fill in Current usage", "当前小区": "current community", "选填,请填写备注": "optional,please fill in remarks", "必填,请选择收费项目": "required,please select charging Item", "未入住": "Non-occupancy", "已出租": "Rented", "商铺": "Shop", "必填,请填写费用名称": "Required,please fill in the fee name" },
"addActivitiesView": { "信息内容": "information content", "必填,请填写活动内容": "required,please fill in the activity content", "信息发布": "information release", "必填,请填写标题": "required,please fill in the title", "开始时间": "start time", "否": " no", "必填": "required", "头部照片": " Head photo", "是": "Yes", "必填,请填写开始时间": "Required,please fill in the start time", "信息类型": "Information type", "请选择是否多小区": "Please select whether there are multiple communitys", "必填,请填写结束时间": "required,please fill in the end time", "标题": "title", "多小区": "multiple communitys", "结束时间": "End time" },
"addStaffPrivilege": { "权限": "Permission", "关闭": "Close", "权限组": "Permission group", "权限组名称": "Permission group name", "权限组编码": "authority group code", "提交": "Submit", "权限组描述": "Permission group description", "创建时间": "Creation time", "权限编码": "Permission code", "权限名称": "Permission name", "权限描述": "Permission description" },
"inspectionPlanState": { "确定": "OK", "巡检计划": "Inspection plan", "确认": "Confirm", "请确认您的操作": "Please confirm your operation", "点错了": "Wrong click" },
"editService": { "透传": "Transparent", "修改服务": "Modify service", "服务编码": "Service code", "选填,请填写消息队列": "optional,please fill in message queue", "必填,请填写服务名称": " required ,please fill in service name", "必填,请填写服务编码": "Required,please fill in the service code", "否": "No", "选填,请填写调用地址": "Optional,please fill in the calling address", "必填": "required", "必填,请填写重试次数": "required,please fill in the number of retries", "服务名称": "service name", "是": "yes", "超时时间": "Timeout time", "调用服务": "call service", "调用方式": "call method", "必填,请填写超时时间": "required,please fill in the timeout", "重试次数": "Number of retries", "微服务指令": "Micro service instruction", "取消": "Cancel", "消息队列": "Message queue", "调用地址": "Call address", "是否实例": "is the instance" },
"listDemoStudy": { "修改": "modify", "操作": "operation", "用例值": "use case value", "名称": "name", "备注": "Remark", "用例": "use case", "删除": "delete" },
"editPayFeeConfigDiscount": { "优惠": "discount", "折扣名称": "discount name", "违约": "Default", "取消": "Cancel", "修改费用折扣": "Modify Fee Discount", "必填": "Required" },
"contractChangeMainBody": { "甲方联系人": "A Party contact", "乙方联系电话": "Party B contact number", "甲方": "Party A", "乙方": "Party B", "乙方联系人": "Party B contact", "必填,请填写乙方": "required,please fill in Party B", "主体变更": "subject change", "必填,请填写乙方联系人": "required,please fill in Party B contact person", "必填,请填写甲方": "required,please fill in Party A", "必填,请填写合同名称": "required,please fill in the contract name", "甲方联系电话": "Party A phone number", "必填,请填写乙方联系电话": "required,please fill in the contact number of Party B", "必填,请填写甲方联系人": "Required,please fill in the contact of Party A", "必填,请填写甲方联系电话": "Required,please fill in the contact number of Party A", "合同名称": "Contract Name" },
"reportProficientCarFee": { "收费类型": "Charge Type", "姓名": "Name", "应收金额": "Amount Receivable", "联系电话": "Contact Phone", "费用名称": "Fee name", "车牌号": "License plate number", "面积": "Area" },
"addOaWorkflow": { "选填,请填写备注": "Optional,please fill in remarks", "流程名称": "process name", "必填,请填写流程名称": "required,please fill in the process name", "流程类型": "process type", "备注": "remark", "必填": " Required", "新建流程": "New Process" },
"viewFeePrintPageInfo": { "小区": "Community", "名称": "Name", "收据模板信息": "Receipt Template Information", "选择收据模板": "Select Receipt Template", "添加收据模板": "Add Receipt Template", "收据页面": "Receipt Page" },
"staffSelect2": { "选择员工": "Select Employee" },
"editAccountBondObj": { "保证金": "bond", "必填,请填写保证金": "required,please fill in bond", "应收金额": "receivable amount", "保证金对象": "Margin object", "选填,请填写应收金额": "Optional,please fill in the receivable amount", "实收金额": "Actual amount received", "取消": "Cancel", "修改保证金对象": "Modify margin object", "选填,请填写实收金额": "optional,please fill in the amount received", "必填,请填写保证金对象": "required,please fill in the margin Object" },
"validate-code": { "点击刷新验证码": "Click to refresh the verification code", "请输入验证码": "Please enter the verification code" },
"privilegeStaffInfo": { "邮箱": " Email", "员工名称": "employee name", "添加权限": "add permission", "手机号": "mobile phone number", "员工": "employee", "定位员工": "locate employee", "员工信息": "Employee Information", "地址": "Address", "性别": "Gender" },
"chooseQuestionAnswer": { "查询": "Query", "选择": "Select", "操作": "Operation", "输入问卷信息名称": "Enter questionnaire information name", "开始时间": "Start time", "选择问卷信息": "Select questionnaire information", "问卷名称": "Questionnaire name", "问卷类型": "questionnaire type", "备注": "remarks", "问卷": "questionnaire", "结束时间": "end time" },
"addAttrSpec": { "必填,请填写说明": "required,please fill in the description", "字符串": " String", "否": "No", "小区属性": "Community Attribute", "规格名称": "Specification Name", "说明": "Description", "必填": "Required", "设备属性": "Equipment attribute", "查询显示": "query display", "展示": "display", "是": "yes", "值类型": "value type", "整数": "Integer", "必填,请填写规格名称": "required,please fill in the specification name", "停车场属性": "parking lot attribute", "添加属性配置": "add attribute configuration", "属性表": "Attribute table", "房屋属性": "House attribute", "业主属性": "Owner attribute", "车辆属性": "Vehicle attribute", "金额": "Amount", "规格类型": "Spec Type" }
}
})(window)