en_US.json
63.6 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
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
{
"login": {
"btn": "Login",
"rememberPw": "Remember password",
"loginLoading": "Logging...",
"platformName": "Smart retail analysis platform",
"save": "Save",
"fdg": "Test"
},
"home": {
"home": "Home",
"traffic": "Basic report",
"static": "Home page",
"custBehavior": "Customer behavior",
"peciseTraff": "Customer paths analysis",
"dataAnalysis": "Data analysis",
"videoShopTour": "Merchandising",
"backstage": "System management",
"dropOut": "Exit",
"version": "Version",
"manual": "Manual"
},
"iPage": {
"ipageaccount": "Group homepage",
"ipageaccountstatic": "Group statistics",
"ipagemall": "Store data",
"ipagemalllive": "Overview data",
"ipagemallday": "Daily report",
"ipagemallmonth": "Monthly report",
"ipagemallyear": "Annual report",
"ipagefloor": "Floor report",
"ipagefloorday": "Daily report",
"ipagefloormonth": "Monthly report",
"ipageflooryear": "Annual report",
"ipagezone": "Zone data",
"ipagezoneday": "Daily report",
"ipagezonemonth": "Monthly report",
"ipagezoneyear": "Annual report",
"ipageformat": "Format data",
"ipageformatday": "Daily report",
"ipageformatmonth": "Monthly report",
"ipageformatyear": "Annual report",
"ipageactivity": "Holiday data",
"ipagetime": "Holiday timely",
"ipagematch": "Holiday compare",
"overview": "Traffic overview",
"yesterday": "Yesterday",
"lastweekday": "Same day last week",
"withlastmonth": "Last month",
"withlastyear": "Last year",
"lastmonth": "Last month",
"lastyear": "Last year",
"rank": "Rank",
"number": "Counts",
"perSqure": "Counts/㎡",
"monthOver": "Monthly",
"weekOver": "Weekly",
"dayOver": "Daily",
"hourOver": "Hourly",
"minuteOver": "Minute",
"allZone": "All zone",
"allFormat": "All format",
"coutomerage": "Gender&Age",
"stayaverage": "Average dwell-time",
"zoneaverage": "Average number of shopping",
"stayagepercent": "Gender & Dwell-time",
"coustomertrend": "Flow trend",
"distribution": "Overall",
"selectdate": "Date selection",
"trafficmax10": "Top 10",
"trafficmin10": "Bottom 10",
"averageheat": "Average heatmap",
"trafficcount": "People counting",
"beforeActivity": "Before activity",
"afterActivity": "After activity",
"matchActivity": "Activity comparison",
"matchTime": "Comparison date",
"resultActivity": "Activity effect",
"mallData": "Square level data",
"zoneData": "Store level data",
"groupData": "Customer group data",
"customerPicture": "Guest group portrait",
"floorCount": "Floor summary",
"floorDetail": "Floor details",
"zoneCount": "Regional summary",
"zoneDetail": "Regional details",
"formatCount": "Format summary",
"formatDetail": "Format details"
},
"navData": {
"blocks": "Group",
"malls": "Store",
"floors": "Floor",
"stores": "Zone",
"gates": "Gate",
"devices": "Device",
"accountName": "Please input group name",
"shopName": "Please input store name",
"floorname": "Please input floor name",
"areaName": "Please input zone name",
"nodata": "No data",
"load": "Loading..."
},
"reportHandle": {
"day": "Daily",
"week": "Weekly",
"month": "Monthly",
"year": "Annual report",
"simpleBtn": "Concise report",
"today": "Today",
"yesterday": "Yesterday",
"lastweek": "Lastweek",
"button": "Complex report"
},
"head": {
"title": "Statistic analysis",
"otherRep": "Other date",
"mallOpenedCount": "Number of stores",
"mallOpenedArea": "Area",
"StoreAllTraffic": "Average traffic",
"mallArea": "Area",
"comparedInnum": "Same day of lastweek",
"comparedSale": "Chain of sales",
"dayDensity": "Yesterday traffic",
"density": "People density",
"comparedLastYearInnum": "Same day of last year",
"dayInnum": "Daily traffic",
"innum": "This week's traffic",
"monthInnum": "This month's traffic",
"yearInnum": "This year's traffic",
"enableDayInnum": "Customer counting",
"averageInnum": "Average traffic",
"trafficRatio": "Traffic ratio",
"workdayAverageInnum": "Average weekday traffic",
"workdayAverageSales": "Average weekday sales",
"weekendAverageInnum": "Average weekend traffic",
"weekendAverageSales": "Average weekend sales",
"daySales": "Accumulative sales",
"averageSells": "Average sales",
"weekSales": "This week's sales",
"monthSales": "This month's sales",
"yearSales": "This year's sales",
"averageSales": "Average sales",
"perTransaction": "Per customer transaction",
"perSquare": "Area-effectiveness",
"Depth": "Wandering depth",
"formatNum": "Number of forms",
"storeNum": "Number of stores",
"gateNum": "Number of entrances",
"durationTime": "Dwell-time",
"enteringRate": "Enter rate",
"handbagRate": "Rate of bags",
"turnover": "Volume",
"man": "Male",
"woman": "Female",
"clerkNum": "Staff traffic",
"repeatTraff": "Repeat traffic",
"effectiveTraff": "Customer counting",
"yesterdayInnum": "Yesterday traffic",
"lastweekInnum": "Last week traffic",
"lastmonthInnum": "Last month traffic",
"lastyearInnum": "Last year traffic",
"comparedMonthInnum": "Same day of last month",
"comparedYearInnum": "Same time last year",
"workday": "Weekend to workday growth rate",
"inTnum": "Daily enter traffic",
"outTnum": "Daily out traffic",
"retentNum": "Retention"
},
"format": {
"mall": "Malls",
"kinds": "Type",
"perTime": "Counts",
"perNum": "People",
"millionTime": "Million times",
"millionNum": "Million people",
"squareMeters": "Mall-m",
"millionSquareM": "Million square-m",
"saleUnit": "Yuan",
"salesUnit": "Million yuan",
"minutesUnit": "Minutes",
"hoursUnit": "Hours",
"minute": "Minute",
"seven": "Nearly seven days",
"fifteen": "Nearly fifteen days",
"thirty": "Nearly thirty days",
"TRAFFIC": "Traffic ",
"KPITRAFFIC": "Square meter effect",
"SALES": "Sales ",
"DEPTH": "Wandering depth",
"PERAREAVALUE": "Effect",
"PREPRICE": " Per/sales",
"ENTERINGRATE": " Entering rate",
"DURATIONTIME": "Dwell-time",
"VOLUME": "Volume ",
"BAGRATE": "Bag rate ",
"ORDER": "Volume",
"HANDBAGRATE": "Rate of bags",
"TREND": "Trend",
"ZONENUM": "The number of shop ",
"INNUM": "Traffic of enter ",
"OUTNUM": "Outlet flow ",
"millionflDensity": "Person-time/m",
"flDensity": "Person-time/m",
"threshold": "Threshold",
"quarter1th": "Q1th",
"quarter2nd": "Q2nd",
"quarter3rd": "Q3rd",
"quarter4th": "Q4th",
"intervalMin": "Min",
"residenceTimeTotal": "Total residence time",
"residenceTimeAvg": "Average residence time",
"outGates": "Outside the store",
"through": "Cross direction",
"gateDirection": "Forward data",
"gateReverse": "Reverse data",
"inoutGates": "Entrance and exit",
"inoutDirection": "Door",
"sort": "Sort",
"face": "Face",
"traffic": "Traffic",
"halfBody": "Half-picture",
"fullBody": "Full-picture",
"forward": "Forward",
"opposite": "Reverse",
"heat": "Heat"
},
"asis": {
"BasicAsis": "Basic analysis",
"SeqAnalysis": "Correlative analysis",
"MainStore": "MainStore correlative",
"TimeHeat": "Time travel",
"WeatherAsis": "Weather analysis",
"HolidayAct": "Holiday comparison",
"SameHolidayAct": "Festive contrast",
"Comprehen": "Comprehensive analysis",
"CompareTime": "Time comparative analysis",
"WeekComp": "Week analysis",
"IoFlow": "Traiffic contrast",
"RankAsis": "Ranking statistics",
"BlocArea": "Group regional",
"DurationTime": "Residence time",
"PassengerRetention": "Passenger retention",
"FisheyeRetention": "Fish eye retention",
"StoreRate": "Store entry rate",
"CustomTrack": "Custom track",
"Areaheat": "Area heatmap",
"moreOp": "More options",
"HeatMap": "Regional heat",
"PointHeat": "Point passenger flow heat",
"FloorPoint": "Store passenger flow heat",
"FloorHeatMap": "Floor heatMap",
"zoneheatmap": "Zone heatMap",
"jointheatmap": "Floor heatMap",
"MoveLine": "Moving line",
"HappinessIndex": "Happiness index",
"ZoneTrafficDirection": "Zone traffic direction",
"AreaGroup": "Area group analysis",
"ResidenceTime": "Dwell-time",
"Trackheat": "Track heatmap",
"MoveLineAnalysis": "Track heatmap",
"eventName": "Event name",
"eventStartTime": "Event startDate",
"eventEndTime": "Event endDate",
"eventDay": "Event duration",
"eventDayTraffic": "Daily traffic",
"eventTraffic": "Daily traffic - Average traffic",
"eventAveTraffic": "Average traffic",
"Timecomp": "Time comparison",
"AlarmLog": "Traffic density warning",
"TrafficDensity": "Traffic density",
"ReturnShop": "Return shop analysis",
"dataReport": "Traffic data analysis report",
"BasicAnalysis": "Basic analysis",
"ContrastiveAsis": "Contrast analysis",
"WeatherActAsis": "Weather activity",
"TrafficHeatMap": "Traffic heatMap",
"TrafficDirection": "Traffic direction",
"HumanFaceAsis": "Customer tracking",
"FisheyeThermal": "Thermodynamic diagram",
"MultiTrafficDirection": "Floor conversion rate",
"Storerelations": "Mall level associated",
"Zonerelations": "Store level associated",
"ActivitiesRelations": "Format relevance",
"trafficForecast": "Traffic Forecast",
"forecast": "Forecast",
"CustomersAsis": "Customers",
"mallGroup": "Store crowd stats",
"groupTime": "Customer time stats",
"LossCustomer": "Loss customer analysis",
"trafficstat": "Customer counting statistics",
"customerClerkStatistics": "Customer personnel trends"
},
"asisTab": {
"level": "Analytical level :",
"mall": "Store",
"floor": "Floor",
"inOut": "Gate",
"Nonentry": "Non-entry",
"store": "Store",
"zone": "Store",
"mallT": "Store:",
"floorT": "Floor :",
"storeT": "Store :",
"storeType": "Shop type:",
"inOutT": "Gate:",
"inOutLev": "Gate level :",
"format": "format",
"province": "Provinces",
"city": "City",
"county": "County",
"date": "Date :",
"operation": "Business:",
"selectshop": "Shop:",
"index": "Index :",
"event": "Event :",
"day": "Day",
"week": "Week",
"month": "Month",
"year": "Year",
"custom": "Custom",
"timeA": "Time1 :",
"timeB": "Time2 :",
"class": "classes :",
"gate": "Gate",
"all": "All",
"manType": "Person type",
"manNum": "Number of people",
"residenceTime": "Dwell-time",
"comprehensive": "Average duration time",
"setting": "Setting",
"period": "Period",
"filterRule": "Filtering rules",
"unlimited": "Unlimited",
"loose": "Loose",
"standard": "Standard",
"strict": "Strict",
"number": "Number",
"heatmapShowWay": "Heatmap display",
"interval": "Interval",
"order": "Order",
"objectNum": "Number of object",
"singleObj": "Single object",
"multipleObj": "Multiple object",
"gatePosition": "Gate position",
"proportion": "Proportion",
"reportType": "Report type",
"dayReport": "Daily",
"weekReport": "Weekly",
"monthReport": "Monthly",
"yearReport": "Annual report",
"customReport": "Custom",
"customLossTime": "Custom elapsed time(s):",
"provincialTraffic": "Analysis of passenger flow at province level",
"municipalTraffic": "Analysis of passenger flow at city level",
"districtTraffic": "Analysis of passenger flow at county level",
"totalPassengerFlow": "Total",
"averagePassengerFlow": "Average",
"daybenchmark": "Base date",
"weekbenchmark": "Week as benchmark",
"benchmark": "Benchmark",
"quarter": "Quarter",
"dimensionality": "Dimensionality",
"storeLevel": "Level"
},
"title": {
"mall": "Store",
"floor": "Floor",
"gate": "Gate",
"zone": "Store",
"format": "Format"
},
"Behavior": {
"capturecamera": "Access records",
"clerkcamera": "Clerk capture record",
"mallGroup": "Store crowd stats",
"customGroup": "Customer statistical",
"groupTime": "Customer time stats",
"gateFlow": "Channel statistical",
"areaflowtime": "Time-sharing stats",
"effectiveflow": "Customer statistics",
"trafficstat": "Customer counting statistics",
"frequency": "Store frequency statistics",
"AreaGroup": "Area group stats",
"moreOp": "More options",
"isEffTra": "Customer counting",
"identified": "Identified",
"unrecognized": "Unrecognized",
"isShowAll": "View all",
"CustomersAsis": "Customers",
"NewOldCustomer": "New And old customers",
"areaCustomersAsis": "Regional guest group",
"CaptureDetails": "Capture details",
"ReidTraffic": "REID traffic",
"HumanFaceAsis": "Customer tracking",
"FisheyeThermal": "Thermal display",
"CustomTrack": "Custom track",
"Areaheat": "Area heatmap",
"MoveLine": "Moving line",
"TrafficDirection": "Traffic direction",
"HappinessIndex": "Happiness index",
"ZoneTrafficDirection": "Zone traffic direction",
"ResidenceTime": "Dwell-time",
"Trackheat": "Track heatmap",
"MoveLineAnalysis": "Track heatmap",
"MultiTrafficDirection": "Floor conversion rate",
"LossCustomer": "Loss customer analysis",
"Relations": "Correlation analysis",
"StoreRelations": "Store association",
"ActivitiesRelations": "Business type correlation statistics",
"Storerelations": "Store associated",
"Zonerelations": "Store level associated",
"Activitiesrelations": "Format relevance",
"personnTypeStatistics": "Personn type statistics",
"customerClerkStatistics": "Customer personnel trends",
"trackLineStore": "Store dynamic analysis",
"moveLinetrajectory": "Move line trajectory"
},
"Management": {
"ContractWarn": "SAP contract warn",
"UserManage": "User mgmt",
"devicelog": "Device log",
"UserInfoManage": "Personal info",
"BlocManage": "Block mgmt",
"GroupManage": "Group mgmt",
"MallManage": "Store mgmt",
"FloorManage": "Floor mgmt",
"ZoneManage": "Zone mgmt",
"GateManage": "Monitor site mgmt",
"FormatManage": "Format",
"DeviceStatus": "Devices",
"DeviceScreenshot": "Device screenshot",
"ClerkManage": "Staff mgmt",
"PersonManage": "Personnel mgmt",
"PersonTypeManage": "Personnel type mgmt",
"ActManage": "Events mgmt",
"ImgManage": "Store mark",
"RoleManage": "Role mgmt",
"MenuManage": "Menu mgmt",
"Systeminfo": "System info",
"MallControl": "Store control",
"DeviceSearch": "Device activation",
"DeviceDataSearch": "Device metadata",
"DeviceState": "Device state",
"DeviceData": "Data compare",
"WeChat": "Notification",
"LoginLog": "Login Log",
"AlarmLog": "Traffic density warn",
"VideoPlayer": "Video tour store",
"MessageCenter": "Accept the center",
"OrganInform": "Organization",
"OrganRelatBuild": "Organizational relationship",
"FontEndManage": "Front-end mgmt",
"BackEndManage": "System management",
"CustomConfiguration": "Home page report configuration",
"ShopHeat": "Shop drawing calibration",
"PointHeat": "Monitoring point location management",
"JoinHeat": "Thermal camera location management",
"carManager": "Vehicle monitoring service",
"groupStatistics": "4S Group statistics",
"workshopMonitoringService": "Plant monitoring service",
"FormatManagement": "Format management",
"ResidenceTimeSetting": "Dwell-time segment setting",
"BusinessActivityManagement": "Business activity management",
"ProjectSupport": "Project support",
"language": "International setting",
"deskmanage": "Shelf management"
},
"button": {
"choose": "Choose",
"simpleBtn": "Concise report",
"autoRefresh": "Auto refresh",
"refresh": "Refresh",
"confirm": " O K",
"confirmLayout": "Confirm layout",
"card": "Card",
"sheet": "Sheet",
"cancel": "Cancel",
"edit": "Edit",
"groupEdit": "Edit ",
"groupAdd": "Add ",
"delete": "Delete",
"details": "Details",
"reset": "Reset",
"search": "Search",
"addUser": "Add user",
"addGroup": "Add bloc",
"addSquare": "Add store",
"addFloor": "Add floor",
"addArea": "Add area",
"exportArea": "Export area",
"template": "Template",
"downloadtemplate": "Download template",
"uploadData": "Upload data",
"addSite": "Add monitor site",
"addDevice": "Add",
"addPhoto": "Add photo",
"deviceBind": "Binding",
"addEvent": "Add event",
"unbind": "Configuration",
"bind": "Bind",
"binding": "Bind",
"ubind": "Unbind",
"mark": "Mark clerk",
"unmark": "Unmark",
"load": "Download",
"closed": "Close",
"getXY": "Coordinates",
"hour": "Hour level",
"min": "Minute level",
"day": "Day level",
"week": "Week level",
"month": "Month level",
"summary": "Summary",
"dayLevel": "Day level",
"detail": "Detail",
"permiss": "To allocat",
"showTrack": "Show track",
"moreSetting": "More setting",
"totalTraffic": "Total passenger flow comparison",
"dayTraffic": "Day level contrast",
"disable": "Disable",
"enable": "Enable",
"linking": "Link",
"overlapArea": "Overlap area",
"resetPW": "Reset password",
"personTime": "Customer time",
"personNum": "Customer number",
"loadNum": "Export store list",
"exportFloor": "Export floor",
"deviceSearch": "Search device number",
"recommend": "Recommend",
"uploaing": "Being added...",
"table": "Table",
"chart": "Chart",
"ignore": "Ignore",
"realtimeRefresh": "Real-time refresh",
"historicalRecord": "Historical record",
"historicalShot": "Historical screenshot",
"firstTimeToStore": "Frist time to shop",
"manyTimeToStore": "Many times to shop",
"personGroup": "Group by person",
"allSnap": "Capture all",
"inNum": "Traffic of enter ",
"outNum": "Outlet flow ",
"durationTimeDistributed": "Retention time distribution",
"aveDurationTimeDistributed": "Average retention time",
"unSetting": "Not set",
"markPerson": "Mark person",
"resourceFocus": "Focus on",
"look": "Look",
"export": "Export",
"cutpic": "Cur pice",
"preservation": "preservation",
"noPreservation": "Do not save",
"play": "Play",
"exportGate": "Download gate",
"assoPic": "Associated picture",
"holiday": "Synchronization system holidays"
},
"table": {
"mall": "Store",
"total": "Total",
"average": "Average",
"person": "Person",
"personCount": "Person count",
"male": "Male",
"female": "Female",
"staff": "Staff",
"newCustomer": "New customer",
"oldCustomer": "Old customer",
"times": "Times",
"ages": "Year",
"under": "Under 18",
"over": "Over 65",
"order": "Number",
"username": "Username",
"name": "Name",
"merchant": "Affiliated merchant",
"CreatTime": "Creation time",
"ExpireTime": "Expire time",
"Userstate": "User state",
"operate": "Operate",
"blocName": "Bloc name",
"bloc": "Affiliated bloc",
"ownShop": "Affiliated region",
"shop": "Affiliated shop",
"admin": "Admin",
"founder": "Founder",
"describe": "Describe",
"squareName": "Name",
"openTime": "Open time",
"businessTime": "Business hours",
"todayFlow": "Today's flow",
"todayTurnover": "Today's turnover",
"externalNum": "External number",
"zoneArea": "Zone area",
"heatDeivce": "Heat device",
"squareArea": "Area",
"state": "State",
"stateA": "Normal",
"stateB": "Disable",
"unicom": "Unicom",
"NotOpenShop": "Not opening",
"OpenShop": "Open",
"CloseShop": "Closed",
"countries": "Country",
"area": "Area",
"provinces": "Provinces",
"city": "City",
"county": "County",
"grouping": "Grouping",
"monitorSiteBind": "Monitor site binding",
"floorName": "Name",
"floorPlan": "Plan",
"square": "Affiliated store",
"areaName": "Area aame",
"type": "Type",
"shopNum": "Shop aumber",
"shopUnitId": "Unit ID",
"floor": "Affiliated floor",
"monitorSiteName": "Monitor site name",
"InstallationFloor": "Installation floor",
"SquareEntrance": "Store entrance",
"Source": "Source",
"Target": "Target",
"faceCamera": "Face camera",
"deviceBind": "Device binding",
"localIP": "Local IP",
"deviceNum": "Devise serial number",
"channelNum": "Channel number",
"extranet": "Extranet IP",
"deviceImg": "Video screenshot",
"age": "Age",
"gender": "Gender",
"position": "Position",
"expression": "Expression",
"time": "Time",
"faceMap": "Face map",
"eventName": "Event name",
"eventLevel": "Event level",
"startTime": "Start time",
"endTime": "End time",
"eventDay": "Event day",
"lastDay": "Last days",
"eventDescription": "Description",
"weather": "Weather",
"dayNum": "Number of days",
"aqiIndex": "Average AQI index",
"averTem": "Average temperature",
"passFlow": "Traffic",
"date": "Date",
"week": "Week",
"tem": "Temperature",
"addgroup": "Group information",
"addMenu": "Menu",
"menuRouter": "Menu route",
"menuName": "Menu Name",
"groupName": "Group name",
"enName": "English names",
"englishName": "English names",
"parentGroup": "Parent group",
"basicInforM": "Basic information",
"idPhoto": "ID Photo",
"featurePhoto": "Feature photo",
"customerVisits": "Customer visits",
"customersNum": "Number of customers",
"roleName": "Role name",
"totalCount": "Total count",
"totalNum": "Total number",
"customerCount": "Customer count",
"customerNum": "Customer number",
"staffManTime": "Staff time",
"staffNum": "Staff number",
"pageHead": "A total of",
"pageTail": "Records, per page",
"trafficNum": "Number of flow",
"trackName": "Track detail",
"showTrack": "Show track",
"loginTime": "Login time",
"alarmIM": "Alarm information",
"yes": "Yes",
"no": "No",
"createType": "Create type",
"manualTag": "Manual annotation",
"autoTag": "Automatic tagging",
"newCreateTag": "New callout type",
"personTypeName": "Type the name",
"personTypeLevel": "Type level",
"aliveTime": "Last online time",
"tabWarn": "Abnormal data report to the police",
"tabPush": "Data push",
"notifyKpiMall": "Mall",
"notifyKpiGate": "Gate",
"notifyDeviceStatus": "Device state",
"faceData": "Report data",
"tabMessageTitle": "Message binding type",
"tabResourceTitle": "Resource binding",
"resourceUnBind": "Not focused on the resource list",
"resourceBind": "A list of resources has been looked at",
"tabWechatPush": "WeChat push",
"tabEamilPush": "Mail delivery",
"deviceOffline": "Device offline",
"mallLackData": "10 minute level data missing from the mall",
"peripheralMonitoryPointLackData": "10 min level data missing from peripheral monitoring points",
"nonPeripheralMonitoryPointLackData": "10 min level data missing from non-peripheral monitoring points",
"peripheralMonitoryPoint": "Abnormal fluctuation of peripheral monitoring point data",
"mallData": "Market-level data",
"mainData": "Main-stores data",
"peripheralMonitoryPointData": "Peripheral monitoring point data",
"reportData": "The report data",
"face_count_analyze": "Time sharing statistics",
"face_analyze": "Customer group statistics",
"version": "Version",
"serviceName": "Service name",
"publishdate": "Publish date",
"brandName": "brand name",
"factoryName": "factory name",
"entranceAndExitBinding": "Access configuration",
"storePassengerFlowBinding": "Store passenger flow configuration",
"deviceName": "Device name",
"videoSource": "Video source",
"deviceSerial": "Device serial",
"channelName": "Channel name",
"address":"address",
"residenceCount":"residence count",
"residenceRate":"residence rate",
"residenceTimeTotal":"residence time total",
"residenceTimeAvg":"residence time avg"
},
"dialog": {
"confirm": "O K",
"cancel": "Cancel",
"cancelBind": "Cancel bind",
"open": "Open",
"close": "Close",
"name": "Name",
"add": "Add",
"addBloc": "Add bloc",
"addMall": "Add store",
"addDevice": "Add device",
"upgradesDevice": "Upgrade",
"addClerk": "Add cerk",
"addPerson": "Add person",
"editPerson": "Edit person",
"addPersonType": "Add peron type",
"deviceBind": "Device binding",
"editUser": "Edit user",
"editBloc": "Edit bloc",
"editMall": "Edit store",
"editFloor": "Edit floor",
"editArea": "Edit area",
"editSite": "Edit monitor site",
"editClerk": "Edit clerk",
"editDevice": "Edit device",
"editEvent": "Edit event",
"editRole": "Edit role",
"age": "Age",
"loginName": "Login name",
"realName": "Name",
"password": "Password",
"oldPW": "Old password",
"newPW": "New password",
"confirmPW": "Confirm password",
"changePW": "Change passWord",
"resetPW": "The password is too simple, please change the password",
"tel": "Tel",
"email": "E-mail",
"accountId": "AccountId",
"userState": "User state",
"blocName": "Bloc name",
"admin": "Admin",
"manager": "Manager",
"logo": "Logo upload",
"description": "Description",
"Lal": "LAL",
"coordinate": "Coordinate",
"number": "Serial number",
"deviceName": "Device name",
"Mac": "Mac adress",
"hwVersion": "HW version",
"swVersion": "SW version",
"duration": "Duration",
"bindSite": "Access configuration",
"configSite": "Store entry rate configuration",
"configSiteS": "Configured store entry rate",
"bindSiteS": "Configured access",
"posBind": "Forward bind",
"reBind": "Reverse bind",
"perBind": "Peripheral bind",
"gateBind": "Gate bind",
"arbindS": "Bind monitor site",
"unbind": "Unbind",
"shoplist": "Store list",
"addRole": "Add role",
"mallPermiss": "Store authority",
"zonePermiss": "Store authority",
"selectRole": "Select role",
"permission": "Permission",
"hasRole": "Has roles",
"allPermiss": "All permiss",
"noRole": "No role",
"deviceNum": "Device no",
"aisle": "Aisle",
"businessType": "Business type",
"backImg": "Background image",
"resolution": "Resolution",
"upload": "Upload",
"deviceDetail": "Device detail",
"menuList": "Menu list",
"mallSetting": "Store setting",
"showAllPic": "Show all snap",
"profilePic": "Profile photo",
"bindWx": "Binding WeChat",
"unBindWx": "UnBundling WeChat",
"allAccount": "All accounts",
"gender": "Gender",
"rolePermission": "Role permission",
"customerProperty": "Customer property",
"to": "To",
"allCapture": "All captured",
"noHave": "No attribution",
"format": "Formats",
"subFormat": "Kind of business",
"mapVisible": "Show map",
"mapVisibleCenter": "Scope of map",
"mapCoordinateTitle": "Map coordinates",
"scopeMapTitle": "Scope of map",
"lng": "Longitude",
"lat": "Latitude",
"showHistory": "View history",
"snapshotRecord": "Snapshot record",
"markClerk": "Mark clerk",
"markConfirmMsg": "Whether to mark the person as a clerk?",
"markConfirmTip": "Note: The clerks marked by this function will not enter the clerk library",
"typeName": "Type the name",
"typeLevel": "Type level",
"note": "Note",
"editChannel": "Edit channel",
"deviceType": "Device type",
"supportCloudControl": "Is support cloud control",
"video": "Video",
"userType": "User type",
"heatBind": "Heat bind"
},
"tooltip": {
"holidayTipA": "Average daily traffic : average traffic during the duration of the event",
"holidayTipB": " Weekday average traffic : From the first day of the year to the current festival, the average traffic of all weekends without holidays",
"holidayTipC": " Average daily traffic : From the first day of the current year to the current holiday, the average traffic for all workdays without holidays",
"holidayTipD": " Note : The New Year's Day is the first day of the year, so the calculation date of the New Year's Day is set to the previous year."
},
"pholder": {
"clerkName": "Clerk name",
"personName": "Person name",
"shopSearch": "Please enter store name",
"username": "User name",
"shop": "Shop name",
"floor": "Floor name",
"area": "Area name",
"type": "Please choose the type",
"type1": "Shop",
"type2": "Area",
"type3": "Main store",
"type4": "Area of moving line",
"type5": "Custom zone",
"state": "Please select status",
"state1": "Normal",
"state2": "Disable",
"allstate": "All states",
"stateA": "Online",
"stateB": "Offline",
"countries": "Country",
"provinces": "Province selection",
"city": "City choice",
"county": "County choice",
"floorS": "Floor selection",
"shopS": "Store Selection",
"mallS": "Store Selection",
"select": "Please choose",
"input": "Please enter the",
"site": "Please select monitor site",
"camera": "Please choose camera",
"date": "Please select date",
"ip": "Please enter IP address",
"deviceNumber": "Please enter the device serial number",
"Site": "Please enter the monitor site name",
"mall": "Please select the square to store",
"nodata": "No data",
"x": "X Axis",
"y": "Y Axis",
"groupName": "Please enter a grouping name",
"enName": "Please enter a english name",
"allFloor": "All floor",
"allArea": "All area",
"allType": "All type",
"allGate": "All gate",
"allChannel": "All channel",
"all": "All",
"inOut": "Entrance and exit",
"Nonentry": "Non-entry",
"week": "Please select week",
"month": "Please select month",
"year": "Please select year",
"startDate": "Start date",
"endDate": "End date",
"shopSelect": "Please choose store",
"floorSelect": "Please choose floor",
"formateSelect": "Please choose format",
"areaSelect": "Please choose area",
"zoneSelect": "Please select zone",
"mallPermissSel": "Please select store permissions",
"rolePermissSel": "Please select role permissions",
"gateLevel": "Please select the entrance level",
"gateType": "Please select the entrance",
"event": "Please select event",
"kpi": "Please select KPI",
"grouping": "Please select a group",
"enterPersonType": "Please select person type",
"zoneNum": "Please select number of zone",
"eventType": "Please select event type",
"eventTypeA": "Holiday",
"eventTypeB": "Activity",
"eventLevel": "Please select event level",
"eventLevelA": "Bloc",
"eventLevelB": "Store",
"inStore": "In store",
"outStore": "Outside the store",
"gatePosition": "Please select the monitoring point location",
"allMall": "All stores",
"selectMallPermiss": "Choose store permissions",
"rolePermiss": "Select role permissions",
"rankTopBottom": "Top10 / Bottom10",
"format": "Please select format",
"subFormat": "Please select industry type",
"intervalSelect": "Please select the interval",
"orderNumberSelect": "Please enter the order number",
"startMinSelect": "Please enter the start minutes",
"endMinSelect": "Please enter the end minutes",
"deviceSerial": "Please enter the serial number",
"eventLevelC": "System",
"activity": "Activity selection",
"selectProvince": "Select province",
"selectCity": "Select city",
"square": "Square area",
"time": "Business hours",
"country": "Select country",
"long": "Please enter the longitude in the correct format",
"lat": "Please enter the latitude in the correct format",
"nameError": "The name contains special characters, please re-enter!",
"metre": "square meter"
},
"message": {
"get": "Obtain",
"reportFailed": "Report data failed",
"timeIllegal": "End cycle time format is invalid",
"noAreaId": "The area ID is empty and the data does not exist.!",
"noEvent": "Get the holiday object is empty!",
"nomenu": "No menu permissions! please use the administrator to assign roles to this user!",
"captureFailed": "Failed to get the snap record!",
"loginFailed": "Login failed!",
"noBloc": "The group does not exist!",
"delete": "This action will be permanently deleted. Continue?",
"deleteEvent": "Are you sure you want to delete this event?",
"confirDelete": "Confirm delete?",
"unbindPrompt": "Determine whether to unbind?",
"prompt": "Prompt",
"confirm": "OK",
"cancel": "Cancel",
"deleteSuccess": "Successfully deleted!",
"deleteFailed": "Failed to delete!",
"cancelDelete": "Undelete!",
"addAbnormal": "Add exception!",
"editAbnormal": "Edit exception!",
"uploadImg": "Uploading images can only be",
"or": "Or",
"imgFormat": "Format!",
"imgSize": "Upload image size cannot exceed",
"upload": "Successful upload!",
"uploadFailed": "Upload failed!",
"addClerkFailed": "Adding a clerk failed!",
"editClerkFailed": "Editing clerk failed!",
"clerkHasAdded": "This image has been added to the store clerk and cannot be cancelled!",
"deleteFeature": "Please remove the feature photo!",
"addLimit": "Select up to ten sheets",
"selectMall": "Please select the square to which you belong!",
"selectCity": "Please select a province city!",
"coordinate": "Please select coordinates!",
"bindDevice": "The device is successfully bound.!",
"deviceFailed": "Device binding failed!",
"bindGate": "The monitoring point in this direction is bound!",
"alreadyBound": "The other directions of the monitoring point are bound!",
"confirmUnbind": "Are you sure to untie?",
"bind": "Binding exception!",
"bindSuccess": "Binding success!",
"bindFailed": "Binding failed!",
"unbind": "Unbinding exception!",
"NoFloorImg": "Floor photo does not exist, please add as soon as possible!",
"uploadHeatImg": "Please upload the background image!",
"imgWidth": "Please enter the resolution width!",
"imgHeight": "Please enter the resolution height!",
"labelSuccess": "Marked successfully!",
"labelFailed": "Label failure!",
"allocate": "Successfully assigned!",
"allocateFailed": "Allocation failure!",
"node": "Node",
"addUser": "New user failed!",
"ipOrNumber": "Please enter the device serial number/IP",
"all": "All",
"inOut": "Entrance",
"Nonentry": "None entrance",
"editSuccess": "Edit success!",
"editFailed": "Edit failed!",
"isDisabled": "Are you sure you want to close this ",
"isEnable": "Are you sure you want to enable this ",
"disableSuccess": "Disable success!",
"disableFailed": "Disable failed!",
"enableSuccess": "Enable success!",
"enableFailed": "Enable failed!",
"changePWSuccess": "The password has been modified successfully, please log in again!",
"changePWFailed": "Password modification failed, please re-edit!",
"resetPWSuccess": "Reset password success!",
"resetPWFailed": "Reset password failed!",
"dpiNotNormal": "The picture size is not up to standard",
"imgloaderror": "Image load failed! File corrupt or file format error!",
"imgLimSize": "Upload avatar file size cannot exceed",
"confrimResetPW": "Are you sure you want to reset your password?",
"wechatBind": "Please check if your personal information is bound to WeChat!",
"editDeviceFailed": "The device has been bound to the monitoring point, manual unbinding is required!",
"deviceSelect": "Please select the device serial number!",
"unsupportChartType": "Unsupported chart types!",
"businessTimeErr": "Business hour setting failed!",
"addMallErr": "Failed to add store!",
"editMallErr": "Failed to edit store!",
"emptyShop": "The zone list is empty!",
"notSupportFunction": "You do not have access to this feature or the hardware products used by the project do not support it!!",
"customLossTimeVaild": "Custom elapsed time is illegal!",
"addUserInfo": "The new user's default password is 123456, and the first login will force the user to change the password",
"dragOneSheet": "Please drag at least one report",
"saveCard": "Do you want to save this card and report configuration?"
},
"rules": {
"loginName": "Please enter login name",
"nameError": "Name can't be chinese",
"mobileRules": "Please enter mobile",
"repeatName": "Name repeat,please enter again",
"emailRules": "Please enter email",
"codeY": "Please enter code",
"codeError": "Code error",
"valSliding": "Drag the slider to the far right",
"valSuccess": "Success",
"password": "Please enter password",
"wordRules": "Please enter a password with at least eight digits and alphanumeric characters",
"newOldSame": "Same old password",
"checkWord": "please enter password again",
"checkDifferent": "you don't enter the same password twice",
"personTypeName": "Please enter a type name",
"personTypeLevel": "Please select the type level",
"orgIdMall": "Please select your store",
"emptyAge": "Age cannot be null",
"emptyGender": "Please select gender",
"dragCard": "Please drag the card here",
"dragSheet": "Please drag the report here"
},
"allPages": {
"load": "Download",
"loadData": "Download data",
"loadType": "Select type :",
"all": "Check all",
"Image": "Image",
"Excel": "Excel"
},
"echartsTitle": {
"eventEffect": "Activity effect comparison",
"countyMapTitle": "National shop layout",
"customerFeature": "Customer feature distribution",
"AccountDayCustomerCounting": "The bloc real-time traffic",
"AccountDayCustomeradd": "The bloc accumulative traffic",
"AccountDaytrend7": "Recent trends of the bloc",
"AccountDaytrend15": "Recent trends of the bloc",
"AccountDaytrend30": "Recent trends of the bloc",
"AccountDaycostomer_ranking": "National shop rank",
"AccountDaysale_ranking": "National shop rank",
"AccountDayCityTraffic": "Foot traffic of the shop subordinate to the city",
"AccountDaypreprice_ranking": "National shop rank",
"AccountDayperSquareMeterRank": "National shop rank",
"AccountDaydurationtimeRank": "National shop rank",
"AccountDaydepth_ranking": "National shop rank",
"AccountDayformat_costomer_ranking": "National business ranking",
"AccountDayformat_sell_ranking": "National business ranking",
"AccountDayformat_enteringrate_ranking": "National business ranking",
"AccountDaycustomerfeature_sex": "Gender distribution",
"AccountDaycustomerfeature_age": "Age distribution",
"AccountWeekcostomerTrend": "Recent trends of the bloc",
"AccountWeektrifficRank": "National shop rank",
"AccountWeeksaleRank": "National shop rank",
"AccountWeekdepthRank": "National shop rank",
"AccountWeekprePriceRank": "National shop rank",
"AccountWeekareaEffRank": "National shop rank",
"AccountWeekdwellTimeRank": "National shop rank",
"AccountWeekformat_traffic_ranking": "National business ranking",
"AccountWeekformat_sale_ranking": "National business ranking",
"AccountWeekcustomerfeature_gender": "Gender distribution",
"AccountWeekcustomerfeature_age": "Age distribution",
"AccountYeartrifficRank": "National shop rank",
"AccountYearsaleRank": "National shop rank",
"AccountYeardepthRank": "National shop rank",
"AccountYearprePriceRank": "National shop rank",
"AccountYearareaEffRank": "National shop rank",
"AccountYeardwellTimeRank": "National shop rank",
"AccountYearformat_traffic_ranking": "National business ranking",
"AccountYearformat_sale_ranking": "National business ranking",
"AccountYearcustomerfeature_gender": "Gender distribution",
"AccountYearcustomerfeature_age": "Age distribution",
"AccountMonthtrafficAndSaleTrend": "Recent trends of the bloc",
"AccountMonthtrifficRank": "National shop rank",
"AccountMonthsaleRank": "National shop rank",
"AccountMonthdepthRank": "National shop rank",
"AccountMonthprePriceRank": "National shop rank",
"AccountMonthareaEffRank": "National shop rank",
"AccountMonthdwellTimeRank": "National shop rank",
"AccountMonthformat_traffic_ranking": "National business ranking",
"AccountMonthformat_sale_ranking": "National business ranking",
"AccountMonthcustomerfeature_gender": "Gender distribution",
"AccountMonthcustomerfeature_age": "Age distribution",
"AccountYeartrafficAndSaleDayTrend": "Trend of the bloc",
"AccountYeartrafficAndSaleMonthTrend": "Trend of the bloc",
"FloorDaycustomerfeature_gender": "Gender distribution",
"FloorDaycustomerfeature_age": "Age distribution",
"FloorDaycustomerfeature_NAO": "The new and old customers",
"FloorDayhourTrafficTrend": "The real-time traffic of floor",
"FloorDayaffumulativeTraffic": "The accumulated traffic of floor",
"FloorDaytrafficAndSaleTrend7": "Recent trends",
"FloorDaytrafficAndSaleTrend15": "Recent trends",
"FloorDaytrafficAndSaleTrend30": "Recent trends",
"FloorDaytrafficRank": "The area ranking of floor",
"FloorDaysaleRank": "The area ranking of floor",
"FloorDayenteringRateRank": "The area ranking of floor",
"FloorDayperTransactionRank": "The area ranking of floor",
"FloorDayperSquareMeterRank": "The area ranking of floor",
"FloorDayturnoverRank": "The area ranking of floor",
"FloorDayhandbagRateRank": "The area ranking of floor",
"FloorDaydurationTimeRank": "The area ranking of floor",
"FloorDaygateTraffic": "The entrance and exit traffic situation of floor",
"FloorWeekcustomerfeature_gender": "Gender distribution",
"FloorWeekcustomerfeature_age": "Age distribution",
"FloorWeekcustomerfeature_NAO": "The new and old customers",
"FloorWeektrafficAndSaleTrend": "Recent trends",
"FloorWeektrafficRank": "The area ranking of floor",
"FloorWeeksaleRank": "The area ranking of floor",
"FloorWeekenteringRateRank": "The area ranking of floor",
"FloorWeekperTransactionRank": "The area ranking of floor",
"FloorWeekperSquareMeterRank": "The area ranking of floor",
"FloorWeekturnoverRank": "The area ranking of floor",
"FloorWeekhandbagRateRank": "The area ranking of floor",
"FloorWeekdurationTimeRank": "The area ranking of floor",
"FloorWeekgateTraffic": "The entrance and exit traffic situation of floor",
"FloorMonthcustomerfeature_gender": "Gender distribution",
"FloorMonthcustomerfeature_age": "Age distribution",
"FloorMonthcustomerfeature_NAO": "The new and old customers",
"FloorMonthtrafficAndSaleTrend": "Recent trends",
"FloorMonthtrafficRank": "The area ranking of floor",
"FloorMonthsaleRank": "The area ranking of floor",
"FloorMonthenteringRateRank": "The area ranking of floor",
"FloorMonthperTransactionRank": "The area ranking of floor",
"FloorMonthperSquareMeterRank": "The area ranking of floor",
"FloorMonthturnoverRank": "The area ranking of floor",
"FloorMonthhandbagRateRank": "The area ranking of floor",
"FloorMonthdurationTimeRank": "The area ranking of floor",
"FloorMonthgateTraffic": "The entrance and exit traffic situation of floor",
"FloorYearcustomerfeature_gender": "Gender distribution",
"FloorYearcustomerfeature_age": "Age distribution",
"FloorYearcustomerfeature_NAO": "The new and old customers",
"FloorYeartrafficAndSaleTrend": "Recent trends",
"FloorYeartrafficRank": "The area ranking of floor",
"FloorYearsaleRank": "The area ranking of floor",
"FloorYearenteringRateRank": "The area ranking of floor",
"FloorYearperTransactionRank": "The area ranking of floor",
"FloorYearperSquareMeterRank": "The area ranking of floor",
"FloorYearturnoverRank": "The area ranking of floor",
"FloorYearhandbagRateRank": "The area ranking of floor",
"FloorYeardurationTimeRank": "The area ranking of floor",
"FloorYeargateTraffic": "The entrance and exit traffic situation of floor",
"ZoneDaycustomerfeature_gender": "Gender distribution",
"ZoneDaycustomerfeature_age": "Age distribution",
"ZoneDaycustomerfeature_NAO": "The new and old customers",
"ZoneDayhourTrafficTrend": "Regional real-time traffic",
"ZoneDayaccumulativeTraffic": "Regional cumulative traffic",
"ZoneDaytrafficTrend7": "Recent trends of area",
"ZoneDaytrafficTrend15": "Recent trends of area",
"ZoneDaytrafficTrend30": "Recent trends of area",
"ZoneDaySaleTrend7": "Recent trends of area",
"ZoneDaySaleTrend15": "Recent trends of area",
"ZoneDaySaleTrend30": "Recent trends of area",
"ZoneDayEnteringRateTrend7": "Recent trends of area",
"ZoneDayEnteringRateTrend15": "Recent trends of area",
"ZoneDayEnteringRateTrend30": "Recent trends of area",
"ZoneDayPerTransactionTrend7": "Recent trends of area",
"ZoneDayPerTransactionTrend15": "Recent trends of area",
"ZoneDayPerTransactionTrend30": "Recent trends of area",
"ZoneDayPerSquareTrend7": "Recent trends of area",
"ZoneDayPerSquareTrend15": "Recent trends of area",
"ZoneDayPerSquareTrend30": "Recent trends of area",
"ZoneDayHandbagRateTrend7": "Recent trends of area",
"ZoneDayHandbagRateTrend15": "Recent trends of area",
"ZoneDayHandbagRateTrend30": "Recent trends of area",
"ZoneDaydurationtimeTrend7": "Recent trends of area",
"ZoneDaydurationtimeTrend15": "Recent trends of area",
"ZoneDaydurationtimeTrend30": "Recent trends of area",
"ZoneWeekcustomerfeature_gender": "Gender distribution",
"ZoneWeekcustomerfeature_age": "Age distribution",
"ZoneWeekcustomerfeature_NAO": "The new and old customers",
"ZoneWeekhourTrafficTrend": "Regional real-time traffic",
"ZoneWeekaffumulativeTraffic": "Regional cumulative traffic",
"ZoneWeektrafficTrend": "Recent trends of area",
"ZoneWeekSaleTrend": "Recent trends of area",
"ZoneWeekEnteringRateTrend": "Recent trends of area",
"ZoneWeekPerTransactionTrend": "Recent trends of area",
"ZoneWeekPerSquareTrend": "Recent trends of area",
"ZoneWeekHandbagRateTrend": "Recent trends of area",
"ZoneWeekdurationtimeTrend": "Recent trends of area",
"ZoneMonthcustomerfeature_gender": "Gender distribution",
"ZoneMonthcustomerfeature_age": "Age distribution",
"ZoneMonthcustomerfeature_NAO": "The new and old customers",
"ZoneMonthhourTrafficTrend": "Regional real-time traffic",
"ZoneMonthaffumulativeTraffic": "Regional cumulative traffic",
"ZoneMonthtrafficTrend": "Recent trends of area",
"ZoneMonthSaleTrend": "Recent trends of area",
"ZoneMonthEnteringRateTrend": "Recent trends of area",
"ZoneMonthPerTransactionTrend": "Recent trends of area",
"ZoneMonthPerSquareTrend": "Recent trends of area",
"ZoneMonthHandbagRateTrend": "Recent trends of area",
"ZoneMonthdurationtimeTrend": "Recent trends of area",
"ZoneYearcustomerfeature_gender": "Gender distribution",
"ZoneYearcustomerfeature_age": "Age distribution",
"ZoneYearcustomerfeature_NAO": "The new and old customers",
"ZoneYearhourTrafficTrend": "Regional real-time traffic",
"ZoneYearaffumulativeTraffic": "Regional cumulative traffic",
"ZoneYeartrafficTrend": "Recent trends of area",
"ZoneYearSaleTrend": "Recent trends of area",
"ZoneYearEnteringRateTrend": "Recent trends of area",
"ZoneYearPerTransactionTrend": "Recent trends of area",
"ZoneYearPerSquareTrend": "Recent trends of area",
"ZoneYearHandbagRateTrend": "Recent trends of area",
"ZoneYeardurationtimeTrend": "Recent trends of area",
"MallDaycustomerfeature_denger": "Gender distribution",
"MallDaycustomerfeature_age": "Age distribution",
"MallDaycustomerfeature_NAO": "The new and old customers",
"MallDaycustomercounting": "The real-time traffic of shop",
"MallDaycustomeradd": "The cumulative traffic of shop",
"MallDaytrend7": "Recent trends of shop",
"MallDaytrend15": "Recent trends of shop",
"MallDaytrend30": "Recent trends of shop",
"MallDaycostomer_ranking": "Ranking of main shops",
"MallDayentering_ranking": "Ranking of main shops",
"MallDaymall_sale_ranking": "Ranking of main shops",
"MallDayperTransactionRank": "Ranking of main shops",
"MallDayperSquareMeterRank": "Ranking of main shops",
"MallDayturnoverRank": "Ranking of main shops",
"MallDayhandbagRateRank": "Ranking of main shops",
"MallDaydurationTimeRank": "Ranking of main shops",
"MallDayformat_sale_ranking": "Shop format ranking",
"MallDaytriffic_ranking": "Shop format ranking",
"MallDaygate_triffic": "Main entrance and exit traffic situation",
"MallDayShopranking_title": "Main store passenger flow ranking",
"MallDayfloor_triffic": "Floor traffic situation",
"MallWeekcustomerfeature_denger": "Gender distribution",
"MallWeekcustomerfeature_age": "Age distribution",
"MallWeekcustomerfeature_NAO": "The new and old customers",
"MallWeektrafficAndSaleTrend": "Recent trends of shop",
"MallWeekcostomer_ranking": "Ranking of main shops",
"MallWeekentering_ranking": "Ranking of main shops",
"MallWeekmall_sale_ranking": "Ranking of main shops",
"MallWeekperTransactionRank": "Ranking of main shops",
"MallWeekperSquareMeterRank": "Ranking of main shops",
"MallWeekturnoverRank": "Ranking of main shops",
"MallWeekhandbagRateRank": "Ranking of main shops",
"MallWeekdurationTimeRank": "Ranking of main shops",
"MallWeekformat_sale_ranking": "Shop format ranking",
"MallWeektriffic_ranking": "Shop format ranking",
"MallWeekgate_triffic": "Main entrance and exit traffic situation",
"MallWeeShopranking_title": "Passenger flow ranking of main stores",
"MallWeekfloor_triffic": "Floor traffic situation",
"MallMonthcustomerfeature_denger": "Gender distribution",
"MallMonthcustomerfeature_age": "Age distribution",
"MallMonthcustomerfeature_NAO": "The new and old customers",
"MallMonthtrafficAndSaleTrend": "Recent trends of shop",
"MallMonthcostomer_ranking": "Ranking of main shops",
"MallMonthentering_ranking": "Ranking of main shops",
"MallMonthmall_sale_ranking": "Ranking of main shops",
"MallMonthperTransactionRank": "Ranking of main shops",
"MallMonthperSquareMeterRank": "Ranking of main shops",
"MallMonthturnoverRank": "Ranking of main shops",
"MallMonthhandbagRateRank": "Ranking of main shops",
"MallMonthdurationTimeRank": "Ranking of main shops",
"MallMonthformat_sale_ranking": "Shop format ranking",
"MallMonthtriffic_ranking": "Shop format ranking",
"MallMonthgate_triffic": "Main entrance and exit traffic situation",
"MallMonthShopranking_title": "Main store passenger flow ranking",
"MallMonthfloor_triffic": "Floor traffic situation",
"MallYearcustomerfeature_denger": "Gender distribution",
"MallYearcustomerfeature_age": "Age distribution",
"MallYearcustomerfeature_NAO": "The new and old customers",
"MallYeartrafficAndSaleTrend": "Recent trends of shop",
"MallYearcostomer_ranking": "Ranking of main shops",
"MallYearentering_ranking": "Ranking of main shops",
"MallYearmall_sale_ranking": "Ranking of main shops",
"MallYearperTransactionRank": "Ranking of main shops",
"MallYearperSquareMeterRank": "Ranking of main shops",
"MallYearturnoverRank": "Ranking of main shops",
"MallYearhandbagRateRank": "Ranking of main shops",
"MallYeardurationTimeRank": "Ranking of main shops",
"MallYearformat_sale_ranking": "Shop format ranking",
"MallYeartriffic_ranking": "Shop format ranking",
"MallYeargate_triffic": "Main entrance and exit traffic situation",
"MallYearShopranking_title": "Main store passenger flow ranking",
"MallYearfloor_triffic": "Floor traffic situation",
"AccountWeekCityTraffic": "Foot traffic of the shop subordinate to the city",
"AccountMonthCityTraffic": "Foot traffic of the shop subordinate to the city",
"AccountYearCityTraffic": "Foot traffic of the shop subordinate to the city",
"DayYoYMoMDayCountingYoY": "Today real time is the same month",
"DayYoYMoMDayAddYoY": "The same month today",
"DayYoYMoM15DayCountingYoY": "Nearly 15 days with the same month",
"WeekYoYMoMNear3WeekYoY": "Same month in last 8 weeks",
"WeekYoYMoMWeekDayOrEndYoY": "Weekdays/weekends are the same month",
"WeekYoYMoMDayOfWeekYoY": "This week is the same month per day",
"MonthYoYMoMNear3MonthYoY": "Nearly 6 months in the same ring",
"MonthYoYMoMWeekDayOrEndYoY": "Working days/weekends are the same month as the previous month",
"MonthYoYMoMDayOfMonthYoY": "This month is the same month every day",
"YearYoYMoMNear3YearYoY": "Same month in last 3 years",
"YearYoYMoMWeekDayOrEndYoY": "Working days/weekends are the same month this year",
"YearYoYMoMMonthOfYearYoY": "This year the same month month on month",
"customeOfYoY": "Custom time is the same as the ring",
"multipleDayOfYoY": "Multi-object day-to-day ratio",
"multipleWeekOfYoY": "Multi-object week-to-week ratio",
"multipleMoMOfYoY": "Multi-object month-to-month ratio",
"multipleYearOfYoY": "Multi-object year-to-year ratio",
"TimeThermodynamicTimeThermodynamic": "Time diagram",
"WeatherReportWeatherAnalyze": "Weather chart",
"WeatherReportWeatherSynthetical": "Synoptic comprehensive list",
"WeatherReportWeatherDetail": "Daily details",
"AccountYeartrafficAndSaleWeekTrend": "Trend of the bloc",
"SynthesizeCompareDaycustomerfeature_gender": "Customer gender comparison",
"SynthesizeCompareDaycustomerfeature_age": "Customer age comparison",
"SynthesizeCompareDayhourTrend": "Moment contrast",
"SynthesizeCompareDaydayTrend": "Comparison of trends over the last 15 days",
"SynthesizeCompareDayaccumulative": "The sum of time",
"SynthesizeComparecustomerfeature_gender": "Customer gender comparison",
"SynthesizeComparecustomerfeature_age": "Customer age comparison",
"SynthesizeComparedayTrend": "Trend contrast",
"WeekComparedweekdayOrEnd": "Midweek weekend comparisons",
"DateComparedkpiLoop": "Overall comparison of the two periods",
"DateComparedkpiRadar": "Dimension comparison between two periods",
"BasicDayReportkpiData": "Data summary today",
"BasicDayReporttrafficHour": "Report of hourly traffic today",
"BasicDayReporttraffic10Min": "Ten minute traffic report today",
"BasicDayReporttrafficday": "Report of daily traffic today",
"BasicReportkpiData": "Data aggregation",
"BasicReportdetailData": "Details of the data",
"holidayeEventHolidayEvent": "Holiday activities",
"holidayeEventHolidayDetail": "Holiday growth rate details",
"holidayeEventHolidayEffect": "Holiday activities effect",
"holidayObjectHolidayNear": "Recent event comparison",
"holidayObjectHolidayEffect": "Activity effect comparison",
"holidayObjectHolidayHourDetail": "Moment contrast on the day of the event",
"faceAnalyzeStafaceCountDetail": "Face statistics",
"faceAnalyzeStafaceGender": "Facial sex statistics",
"faceAnalyzeStafaceAge": "Face age statistics",
"faceCountAnalyzeStafaceGenderDetail": "Details of facial sex statistics",
"faceCountAnalyzeStafaceAgeDetail": "Details of face age statistics",
"faceDistributionfaceTraffic": "Traffic statistics",
"faceDistributionfaceTrafficDetail": " Human face traffic statistics at monitoring points",
"faceDistributionfaceGenderRatio": "Sex ratio statistics",
"trafficInAndOuttrafficInAndOut": "Report of traffic in and out today",
"rankingrankingList": "Ranking list",
"rankKpi_title": "KPI ranking",
"SynthesizeComparemonthTrend": "Trend contrast of month",
"faceDistributionfaceAgeRatio": "Age proportion statistics",
"effectiveflow": "New and old customer analysis",
"EffTrafficStat": "Customer counting statistics",
"enteringRateTable": "In-store rate statistics report details",
"enteringRateChart": "In-store rate statistics report",
"faceZoneTrafficDetail": "Regional face passenger flow statistics details",
"faceZoneAgeRatio": "Regional face age proportion statistics",
"faceZoneGenderRatio": "Regional face sex ratio statistics",
"areaFlowTime": "Area flow sharing-time analysis",
"timeComp": "Time comparison analysis",
"returnshopDetails": "Return customer report details",
"returnshop": "Analysis of returning customers' attributes",
"trafficOfMonth": "Overall trend of passenger flow in this quarter",
"detailData": "Passenger flow trend in this quarter",
"TimeThermodynamic": "Distribution of passenger flow during the month",
"weekdayOrEnd": "Comparison of passenger flow during the middle of the week this week",
"faceGender": "Customer attribute analysis this month",
"faceAge": "Customer attribute analysis this month",
"EachDayGenderNumLine": "Gender ratio details",
"EachDayAgeNumBar": "Age ratio details",
"newCustomerAsis": "New customer analysis",
"olCustomerAsis": "Old customer analysis",
"customerAsis": "Overall customer analysis",
"returnshopTitle": "Return rate details",
"returnshopGender": "Return shop customer gender details",
"returnshopAge": "Return shop customer age details",
"customCountTitle": "Customer number details",
"customCountGender": "Customer gender details",
"customCountAge": "Customer age details",
"trafficDirectionTitile": "Passenger flow direction analysis",
"customercountingMax": "High level data analysis",
"customercountingMin": "Low order data analysis",
"regularCustomerLine": "Number and proportion of daily regular customers",
"regularCustomerDetailLine": "Daily regular customer details",
"frequencyStatistics": "Store frequency statistics",
"residenceTimeStatistics": "Retention time statistics",
"storeflowsort": "Store flow ranking",
"storeAbout": "Store associated",
"storeAboutSort": "Store associated ranking",
"storeAboutDetail": "Store associated detail",
"CorrelationflowSort": "Ranking of business passenger flow",
"CorrelationAbout": "Business type association",
"lossCustomerAnalysis": "Analysis of lost customers",
"distributionCustomer": "Distribution of customer dwell-time",
"dwellTimeGender": "Sex ratio",
"dwellTimeAge": "Age distribution",
"noData": "No data",
"loading": "loading...",
"untreated": "The amount of unprocessed data",
"faceTheRestOfThe": "The amount of face data left unprocessed",
"passengerFlowRemaining": "The amount of unprocessed data left in passenger flow",
"data": "Data"
},
"echarts": {
"traffic": "Traffic",
"growthRate": "Growth rate",
"percentage": "Percentage",
"proportion": "Proportion",
"workdayAverageInnum": "Average weekday traffic",
"weekendAverageInnum": "Average weekend traffic",
"index": " Index",
"high": "High",
"low": "Low",
"lossCustomerRatio": "The proportion of lost passengers",
"averageThermal": "The average thermal"
},
"dictionary": {
"singleArea": "A single area",
"ManyAreas": "Many areas",
"Male": "Male",
"Female": "Female",
"staff": "Staff",
"custom": "Customer",
"unknow": "Unknow",
"Sad": "Sad",
"Surprise": "Surprise",
"Peace": "Peace",
"other": "Other",
"Angry": "Angry",
"Disgust": "Disgust",
"Fear": "Fear",
"Happy": "Happy",
"Pleasant": "Pleasant",
"in": "In",
"into": "In",
"out": "Out",
"floatingDust": "Floating dust",
"fog": "Gog",
"frozenRain": "Frozen rain",
"haze": "Haze",
"cloudyDay": "Cloudy",
"sunnyDay": "Sunny",
"partlyCloudy": "Partly cloudy",
"shower": "Shower",
"thunderShower": "Thunder shower",
"sleet": "Sleet",
"lightRain": "Light rain",
"hail": "Hail",
"rain": "Rain",
"heavyRain": "Heavy rain",
"rainstorm": "Rainstorm",
"snowShower": "Snow shower",
"lightSnow": "Light snow",
"snow": "Snow",
"heavySnow": "Heavy snow",
"blizzard": "Blizzard",
"commonArea": "Common area",
"mainStore": "Main store",
"movingLineArea": "Moving line area",
"store": "Store",
"tradCount": "Traffic",
"count": "Traffic",
"inStoreRate": "In store rate",
"faceFlow": "Face flow",
"heatmap": "Heatmap",
"faceCapture": "Face capture",
"face": "Face",
"account": "Account",
"mall": "Store",
"floor": "Floor",
"zone": "Zone"
},
"moreSetting": {
"warnTipMessage": "This operation is to configure the advanced parameters of the store. It is not recommended to modify the configuration parameters easily",
"CustomerDentificationSettings": "Customer sentification settings",
"BackEndAnalysis": "Back-end analysis",
"CustomerMatch": "Customer match",
"PrivacySetting": "Privacy setting",
"PeopleLibraryMatching": "People library matching",
"PeopleBody": "People body",
"FullBodyPhotoFeatureExtraction": "Full-body photo feature extraction",
"NewAndOldCustomers": "New and old customers",
"PassengerFlowCalculationModel": "Passenger flow calculation model",
"StandardMode": "Standard mode",
"StrictMode": "Strict mode",
"StoreRateSetting": "Store rate setting",
"ShopThroughRateCalculationMode": "Shop through rate calculation mode",
"OutOfStorePassengerFlowCalculationMethod": "Out of store passenger flow calculation method",
"ClerkIdentificationSettings": "Clerk identification settings",
"regularClerkIdentification": "Regular store clerk identification",
"IntelligentStoreClerkIdentification": "Intelligent store clerk identification",
"IntelligentStoreClerkRecognitionMode": "Intelligent store clerk eecognition mode",
"ParameterSettings": "Parameter settings",
"QuirksMode": "Quirks mode",
"MatchTheCycle": "Match the cycle",
"Passengers": "Passengers",
"PassengerFlow": "Customer counting",
"OutOfStorePassengerFlow": "Out of store passenger flow",
"PositivePassengerFlowOutsideTheStore": "Positive passenger flow outside the store",
"ReversePassengerFlowOutsideTheStore": "Reverse passenger flow outside the store",
"VisitorFlow": "Visitor flow",
"StrictModeTips": "The number of visits on the day and the number of historical visits are greater than the parameter",
"QuirksModeTips": "Only the number of visits on the same day is greater than the parameter",
"Open": "Open",
"Close": "Close",
"HistoryInStore": "History arrival",
"TodayInStore": "Today arrival",
"trafficStandardModeTips": "Number of customers after reloading",
"trafficStrictModeTips": "Total number of identified male and female customers"
},
"VideoShopTour": {
"basicManagement": "Basic management",
"deviceManagement": "Device management",
"monitoringPointManagement": "Monitoring scene management",
"realTimeVideo": "Real-time video",
"systemSOPManagement": "System Inspection Items",
"groupSOPManagement": "Group Inspection Items",
"configurationCheckItem": "Configuration Inspection Items",
"systemSettings": "Setting",
"remoteShopInspection": "Inspecte by store",
"inspectionRecord": "Shop inspection record",
"initiatedItem": "I initiated it",
"pendingItem": "Leave it to me",
"presetPointManagement": "Preset point management",
"myTasks": "My tasks",
"spotInspection": "Inspecte by spot",
"captureConfiguration": "Timed capture configuration",
"routineCheckTask": "Snapshot list",
"routineCheckRecord": "Spot inspection record",
"realTimeMonitoring": "Video viewing",
"inspectionReport": "Inspection report",
"inspectionReportManual": "Inspection report"
},
"tips": {
"out": "Use the direction of the equipment to configure the store entry rate. For example, if there is a monitoring point, that is, the entrance and the rate of entering the store, you only need to check the monitoring point [Cross (left and right) direction]",
"mallName": "Please enter store name",
"device": "Please select device",
"channel": "Please select channel",
"bussiness": "Please select bussiness",
"noFeature": "Has no feature"
}
}