zh_CN.js 50.9 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 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
import enLocale from 'element-ui/lib/locale/lang/zh-CN'
const zh_CN = {
    login: {
        btn: '登 录',
        rememberPw: '记住密码',
        loginLoading: '正在登录中...',
        platformName: '智慧连锁客流分析平台'
    },
    home: {
        home: '首页',
        traffic: '客流统计',
        custBehavior: '顾客行为',
        peciseTraff: '人脸分析',
        dataAnalysis: '数据分析',
        backstage: '后台管理',
        dropOut: '退出',
        version: '版本号',
        manual: '使用手册',
    },
    navData: {
        blocks: '商户',
        malls: '书店',
        floors: '楼层',
        stores: '区域',
        gates: '监控点',
        devices: '设备',
        shopName:'请输入书店',
        floorname: '请输入楼层',
        areaName: '请输入区域',
        nodata: '数据为空',
        load: '数据加载中...',
    },
    reportHandle: {
        day: '日报',
        week: '周报',
        month: '月报',
        year: '年报',
        simpleBtn: '简洁报表',
        today: '今天',
        yesterday: '昨天',
        lastweek: '一周前',
        button: '复杂报表',
    },
    head: {
        title: '客流综合数据统计',
        otherRep: '其他日期选项',
        mallOpenedCount: '已开业书店数量',
        mallOpenedArea: '已开业面积',
        StoreAllTraffic: '店均客流',
        mallArea: '书店面积',
        comparedInnum: '上周同期',
        comparedSale: '销售额环比',
        dayDensity: '昨日客流',
        density: '客流密度',
        comparedLastYearInnum: '去年同期',
        dayInnum: '当日客流',
        innum: '本周客流人次',
        monthInnum: '本月客流人次',
        yearInnum: '年度客流人次',
        enableDayInnum: '客流人数',
        averageInnum: '日均客流',
        trafficRatio: '客流占比',
        workdayAverageInnum: '工作日平均客流',
        workdayAverageSales: '工作日平均销售额',
        weekendAverageInnum: '双休日平均客流',
        weekendAverageSales: '双休日平均销售额',
        daySales: '累计销售额',
        averageSells: '日均销售额',
        weekSales: '本周销售额',
        monthSales: '本月销售额',
        yearSales: '年度销售额',
        averageSales: '日均销售额',
        perTransaction: '客单价',
        perSquare: '坪效',
        Depth: '游逛深度',
        formatNum: '业态数',
        storeNum: '区域数',
        gateNum: '出入口个数',
        durationTime: '滞留时间',
        enteringRate: '进店率',
        handbagRate: '提袋率',
        turnover: '成交量',
        man: '男',
        woman: '女',
        clerkNum:'店员人次',
        repeatTraff:'重复客流',
        effectiveTraff:'客流人数',
        yesterdayInnum: '昨日客流',
        lastweekInnum: '上周客流',
        lastmonthInnum: '上月客流',
        lastyearInnum: '去年客流',
        comparedMonthInnum: '上月同期',
        comparedYearInnum: '去年同期',
        workday: '双休日对工作日增长率',
        inTnum: '当日进客流',
        outTnum: '当日出客流',
        retentNum: '滞留量',
    },
    format: {
        mall: '座',
        perTime: '人次',
        perNum: '人',
        millionTime: '万人次',
        millionNum: '万人',
        squareMeters: '平米',
        millionSquareM: '万平米',
        saleUnit: '元',
        salesUnit: '万元',
        minutesUnit: '分钟',
        hoursUnit: '小时',
        minute: '分钟',
        seven: '近7天',
        fifteen: '近15天',
        thirty: '近30天',
        TRAFFIC: '客流人次',
        SALES: '销售额',
        DEPTH: '游逛深度',
        PERAREAVALUE: '坪效',
        PREPRICE: '客单价',
        ENTERINGRATE: '进店率',
        DURATIONTIME: '滞留时间',
        VOLUME: '成交量',
        BAGRATE: '提袋率',
        ORDER: '成交量',
        HANDBAGRATE: '提袋率',
        TREND: '趋势',
        ZONENUM: '书店数量',
        INNUM: '进客流',
        OUTNUM: '出客流',
        millionflDensity: '万人次/平米',
        flDensity: '人次/平米',
        threshold: '阈值',
        quarter1th: '第一季度',
        quarter2nd: '第二季度',
        quarter3rd: '第三季度',
        quarter4th: '第四季度',
        intervalMin: '分钟'
    },
    asis: {
        BasicAsis: '基础统计',
        SeqAnalysis: '同环比分析',
        MainStore: '主力店铺同环比',
        TimeHeat: '时段客流分布',
        WeatherAsis: '天气分析',
        HolidayAct: '节假日活动对比',
        SameHolidayAct: '同节日对象对比',
        Comprehen: '综合对比分析',
        CompareTime: '时间对比分析',
        WeekComp: '周中周末对比分析',
        IoFlow: '进出客流对比',
        RankAsis: '排行榜统计',
        BlocArea: '商户区域客流统计',
        DurationTime: '滞留时间统计',
        PassengerRetention: '进出客流滞留量',
        FisheyeRetention: '鱼眼滞留量',
        StoreRate: '进店率统计',
        HeatMap: '区域热度',
        PointHeat: '点位热力',
        FloorHeatMap:'楼层热力',
        MoveLine: '客流动线',
        HappinessIndex: '开心指数',
        ftmoveline: '人脸客流动线',
        ZoneTrafficDirection: '区域客流方向',
        AreaGroup: '区域客群分析',
        ResidenceTime: '滞留时间',
        CustomTrack: '顾客轨迹',
        Areaheat: '书店热力',
        Trackheat: '展台热力',
        MoveLineAnalysis: '动线分析',
        moreOp: '更多选项',
        eventName: '节日名称',
        eventStartTime: '节日开始日期',
        eventEndTime: '节日结束日期',
        eventDay: '节日持续天数',
        eventDayTraffic: '当日客流人次',
        eventTraffic: '当日客流人次-平均客流人次',
        eventAveTraffic: '平均客流人次',
        Timecomp: '时间对比分析',
        AlarmLog: '客流密度预警',
        TrafficDensity: '客流密度',
        ReturnShop: '返店分析',
        dataReport: '客流数据分析报告',
        BasicAnalysis: '基础分析',
        ContrastiveAsis: '对比分析',
        WeatherActAsis: '天气活动分析',
        TrafficHeatMap: '客流热力',
        TrafficDirection: '客流方向',
        HumanFaceAsis: '顾客跟踪',
        FisheyeThermal: '人脸热力',
        MultiTrafficDirection: '楼层转换率',
    },
    asisTab: {
        level: '分析层面 :',
        mall: '书店',
        floor: '楼层',
        inOut: '出入口',
        Nonentry: '非出入口',
        store: '区域',
        zone: '区域',
        mallT: '书店:',
        floorT: '楼层:',
        storeT: '区域:',
        inOutT: '出入口:',
        inOutLev: '出入口:',
        format: '业态',
        province: '省份',
        city: '城市',
        county: '区县',
        date: '日期:',
        index: '指标:',
        event: '活动:',
        day: '日',
        week: '周',
        month: '月',
        year: '年',
        custom: '自定义',
        timeA: '时间1:',
        timeB: '时间2:',
        class: '类别:',
        gate: '出入口',
        all: '全部',
        manType: '人员类型',
        manNum: '人数',
        residenceTime: '滞留时间',
        comprehensive: '平均滞留时间',
        setting: '设置',
        period: '自定义时间段',
        filterRule: '过滤规则',
        unlimited: '不限',
        loose: '宽松',
        standard: '标准',
        strict: '严格',
        number: '个数',
        heatmapShowWay: '热力图展示方式',
        interval: '间隔',
        order: '阶数',
        objectNum: '对象个数',
        singleObj: '单对象',
        multipleObj: '多对象',
        gatePosition: '监控点位置',
        proportion: '占比',
        reportType: '报告类型',
        dayReport: '日报',
        weekReport: '周报',
        monthReport: '月报',
        yearReport: '年报',
        customReport: '自定义',
        customLossTime: '自定义流失时间(秒):'
    },
    title: {
        mall: '书店',
        floor: '楼层',
        gate: '出入口',
        zone: '区域',
        format: '业态',
    },
    Behavior: {
        capturecamera: '抓拍记录详情',
        clerkcamera:'店员抓拍详情',
        mallGroup: '书店客群统计',
        customGroup: '出入口客群统计',
        groupTime: '客群分时统计',
        gateFlow: '区域客群统计',
        areaflowtime: '区域客流分时统计',
        effectiveflow: '新老顾客统计',
        trafficstat: '客流人数统计',
        frequency: '到店频次统计',
        AreaGroup: '区域客群统计',
        isEffTra: '客流人数',
        identified: '已识别',
        unrecognized: '未识别',
        isShowAll:  '查看全部',
        moreOp: '更多选项',
        CustomersAsis: '客群分析',
        NewOldCustomer: '新老顾客',
        areaCustomersAsis: '区域客群分析',
        CaptureDetails: '抓拍详情',
        ReidTraffic: 'REID客流',
        HumanFaceAsis: '顾客跟踪',
        FisheyeThermal: '人脸热力',
        CustomTrack: '顾客轨迹',
        MoveLine: '客流动线',
        HappinessIndex: '开心指数',
        ZoneTrafficDirection: '区域客流方向',
        ResidenceTime: '滞留时间',
        TrafficDirection: '客流方向',
        Areaheat: '书店热力',
        Trackheat: '展台热力',
        MoveLineAnalysis: '动线分析',
        MultiTrafficDirection: '楼层转换率',
        LossCustomer: '流失客流分析'
    },
    Management: {
        UserManage: '用户管理',
        UserInfoManage: '个人信息',
        BlocManage: '商户管理',
        GroupManage: '分组管理',
        MallManage: '书店管理',
        FloorManage: '楼层管理',
        ZoneManage: '区域管理',
        GateManage: '监控点管理',
        DeviceStatus: '设备管理',
        DeviceScreenshot: '相机截图',
        ClerkManage: '店员管理',
        PersonManage: '人员管理',
        PersonTypeManage: '人员类型管理',
        ActManage: '活动管理',
        ImgManage: '店铺标注',
        RoleManage: '角色管理',
        MenuManage: '菜单管理',
        MallControl: '书店配置',
        DeviceSearch: '设备查询',
        DeviceDataSearch: '设备数据查询',
        DeviceState: '设备状态',
        DeviceData: '数据对比',
        WeChat: '消息通知',
        LoginLog: '登录日志',
        AlarmLog: '客流密度预警',
        VideoPlayer: '视频巡店',
        OrganInform: '组织信息管理',
        OrganRelatBuild: '组织关系建立',
        FontEndManage: '前端功能管理',
        BackEndManage: '后端功能管理'
    },
    button: {
        simpleBtn: '简洁报表',
        autoRefresh: '自动刷新',
        refresh: '刷新',
        confirm: '确认',
        cancel: '取消',
        edit: '编辑',
        groupEdit: '编辑',
        groupAdd: '新增',
        delete: '删除',
        details: '详情',
        reset: '重置',
        search: '查询',
        addUser: '新增用户',
        addGroup: '新增商户',
        addSquare: '新增书店',
        addFloor: '新增楼层',
        addArea: '新增区域',
        addSite: '新增监控点',
        addDevice: '新增设备',
        addPhoto: '新增照片',
        deviceBind: '设备绑定',
        addEvent: '新增活动',
        unbind: '绑定/解绑',
        bind: '绑定',
        binding: '绑 定',
        ubind: '解绑',
        mark: '标注店员',
        unmark: '取消标记',
        load: '下载数据',
        closed: '关 闭',
        getXY: '获取坐标',
        hour: '小时级',
        min: '分钟级',
        day: '天汇总',
        week: '周汇总',
        month: '月汇总',
        summary: '汇总',
        dayLevel: '天级',
        detail: '明细',
        permiss: '权限分配',
        showTrack: '查看轨迹',
        moreSetting: '更多配置',
        totalTraffic: '总客流对比',
        dayTraffic: '天级对比',
        disable: '禁用',
        enable: '启用',
        resetPW: '重置密码',
        personTime: '顾客人次',
        personNum: '顾客人数',
        loadNum: '导出书店',
        deviceSearch: '查询设备序列号',
        recommend: '推荐',
        uploaing: '正在添加...',
        table: '表格',
        chart: '图表',
        ignore: '忽略',
        realtimeRefresh: '实时刷新',
        historicalRecord: '历史记录',
        historicalShot: '历史截图',
        firstTimeToStore: '首次到店',
        manyTimeToStore: '多次到店',
        personGroup: '按人分组',
        allSnap: '全部抓拍',
        inNum: '进客流',
        outNum: '出客流',
        durationTimeDistributed: '滞留时间分布',
        aveDurationTimeDistributed: '平均滞留时间',
        unSetting: '未设置',
        markPerson: '标注人员',
        resourceFocus: '关注'
    },
    table: {
        mall: '书店',
        total: '合计',
        average: '平均',
        person: '人次',
        personCount: '人数',
        male: '男',
        female: '女',
        staff: '店员',
        newCustomer: '新顾客',
        oldCustomer: '老顾客',
        times: '次',
        ages: '岁',
        order: '序号',
        username: '用户名',
        name: '姓名',
        merchant: '所属商户',
        CreatTime: '创建时间',
        ExpireTime: '到期时间',
        Userstate: '用户状态',
        operate: '操作',
        blocName: '商户名称',
        bloc: '所属商户',
        ownShop: '所属店铺',
        admin: '管理员',
        founder: '创建人',
        describe: '描述',
        squareName: '书店名称',
        openTime: '开业时间',
        todayFlow: '今日客流',
        todayTurnover: '今日营业额',
        businessTime: '营业时间',
        externalNum: '外部编号',
        squareArea: '书店面积',
        state: '状态',
        stateA: '正常',
        stateB: '停用',
        NotOpenShop: '待开业',
        OpenShop: '营业',
        CloseShop: '闭店',
        countries: '国家',
        area: '地区',
        provinces: '省份',
        city: '城市',
        county: '区县',
        grouping: '所属分组',
        monitorSiteBind: '监控点绑定',
        floorName: '楼层名称',
        floorPlan: '平面图',
        square: '所属书店',
        areaName: '区域名称',
        type: '类型',
        shopNum: '铺位号',
        shopUnitId: '铺位ID',
        floor: '所属楼层',
        monitorSiteName: '监控点名称',
        InstallationFloor: '安装楼层',
        SquareEntrance: '书店入口',
        faceCamera: '人脸相机',
        deviceBind: '设备绑定',
        localIP: '本地IP',
        deviceNum: '设备序列号',
        channelNum: '通道数量',
        extranet: '外网IP',
        deviceImg: '视频截图',
        age: '年龄',
        gender: '性别',
        position: '职位',
        expression: '表情',
        time: '时间',
        faceMap: '人脸图',
        eventName: '活动名称',
        eventLevel: '活动级别',
        startTime: '开始日期',
        endTime: '结束日期',
        eventDay: '活动当日',
        lastDay: '持续天数',
        eventDescription: '活动描述',
        weather: '天气',
        dayNum: '天数',
        aqiIndex: '平均AQI指数',
        averTem: '平均温度',
        passFlow: '客流量(人次)',
        date: '日期',
        week: '星期',
        tem: '温度',
        addgroup: '分组信息',
        addMenu: '菜单',
        menuRouter: '菜单路由',
        menuName: '菜单名称',
        groupName: '分组名称 :',
        enName: '英文名称 :',
        englishName: '英文名称',
        parentGroup: '父级分组 :',
        basicInforM: '基本信息 :',
        idPhoto: '证件照片',
        featurePhoto: '特征照片',
        customerVisits: '顾客人次',
        customersNum: '顾客人数',
        roleName: '角色名称',
        totalCount: '总人次',
        totalNum: '总人数',
        customerCount: '顾客人次',
        customerNum: '顾客人数',
        staffManTime: '员工人次',
        staffNum: '员工人数',
        pageHead: '共',
        pageTail: '条记录, 每页显示',
        trafficNum: '客流人次',
        trackName: '轨迹详情',
        showTrack: '查看轨迹',
        loginTime: '登录时间',
        alarmIM: '报警信息',
        yes: '是',
        no: '否',
        createType: '创建类型',
        manualTag: '手动标注',
        autoTag: '自动标注',
        newCreateTag: '新增标注',
        personTypeName: '类型名称',
        personTypeLevel: '类型级别',
        aliveTime: '心跳时间',
        tabWarn: '数据报警',
        tabPush: '数据推送',
        notifyKpiMall: '商场',
        notifyKpiGate: '监控点',
        notifyDeviceStatus: '设备状态',
        faceData: '报表数据',
        tabMessageTitle: '消息绑定类型',
        tabResourceTitle: '资源绑定',
        resourceUnBind: '未关注资源列表',
        resourceBind: '已关注资源列表',
        tabWechatPush: '微信推送',
        tabEamilPush: '邮箱推送'
    },
    dialog: {
        confirm: '确 认',
        cancel: '取 消',
        cancelBind: '取消绑定',
        open: '开启',
        close: '关闭',
        name: '名称',
        add: '新增',
        addBloc: '新增商户',
        addMall: '新增书店',
        addDevice: '新增设备',
        addClerk: '新增店员',
        addPerson: '新增人员',
        editPerson: '编辑人员',
        addPersonType: '新增人员类型',
        deviceBind: '设备绑定',
        editUser: '编辑用户',
        editBloc: '编辑商户',
        editMall: '编辑书店',
        editFloor: '编辑楼层',
        editArea: '编辑区域',
        editSite: '编辑监控点',
        editDevice: '编辑设备',
        editClerk: '编辑店员',
        editEvent: '编辑活动',
        editRole: '编辑角色',
        age: '年龄',
        loginName: '用户名',
        realName: '姓名',
        password: '密码',
        oldPW: '旧密码',
        newPW: '新密码',
        confirmPW: '确认密码',
        changePW: '修改密码',
        resetPW: '密码过于简单,请修改密码',
        tel: '电话号码',
        email: '电子邮箱',
        accountId: '所属商户',
        userState: '用户状态',
        blocName: '商户名称',
        admin: '管理员',
        manager: '负责人',
        logo: 'logo上传',
        description: '描述',
        Lal: '经纬度',
        coordinate: '坐标轴',
        number: '序列号',
        deviceName: '设备名',
        Mac: 'Mac地址',
        hwVersion: '硬件版本',
        swVersion: '软件版本',
        duration: '起止日期',
        bindSite: '监控点绑定',
        posBind: '正向绑定',
        reBind: '反向绑定',
        perBind: '外围绑定',
        gateBind: '出入口绑定',
        arbindS: '已绑定监控点',
        unbind: '取消绑定',
        shoplist: '店铺列表',
        addRole: '新增角色',
        mallPermiss: '书店权限',
        selectRole: '选择角色',
        permission: '已有权限',
        hasRole: '已有角色',
        allPermiss: '全部权限',
        noRole: '暂无角色',
        deviceNum: '设备号',
        aisle: '通道',
        businessType: '业务类型',
        backImg: '背景图',
        resolution: '分辨率',
        upload: '点击上传',
        deviceDetail: '设备详情',
        menuList: '菜单列表',
        mallSetting: '书店配置',
        showAllPic: '查看所有图片',
        profilePic: '证件照',
        bindWx: '绑定微信',
        allAccount: '全部商戶',
        gender: '性别',
        rolePermission: '角色权限',
        customerProperty: '顾客属性',
        to: '至',
        allCapture: '所有抓拍',
        noHave: '暂无',
        format: '所属业态',
        subFormat: '所属业种',
        mapVisible: '显示地图',
        mapVisibleCenter: '地图范围',
        mapCoordinateTitle: '地图坐标拾取',
        scopeMapTitle: '地图范围拾取',
        lng: '经度',
        lat: '纬度',
        showHistory: '查看历史记录',
        snapshotRecord: '抓拍记录',
        markClerk: '标注店员',
        markConfirmMsg: '是否标注该人员为店员?',
        markConfirmTip: '注: 此功能标注的店员不会进入店员库',
        typeName: '类型名称',
        typeLevel: '类型级别',
        note: '备注'
    },
    tooltip :{
        holidayTipA: '活动日平均客流 : 活动持续期间的平均客流',
        holidayTipB: ' 双休日平均客流 : 从本年度第一天截止到当前节日,所有不包含节假日的双休日的平均客流',
        holidayTipC: ' 工作日平均客流 : 从本年度第一天截止到当前节日,所有不包含节假日的工作日的平均客流',
        holidayTipD: ' 注 : 元旦节为每年第一天,故元旦节的计算日期设为上一整年',
    },
    pholder: {
        clerkName: '店员姓名',
        personName: '人员姓名',
        shopSearch: '请输入书店名称',
        username: '用户名称',
        shop: '书店名称',
        floor: '楼层名称',
        area: '区域名称',
        type: '请选择类型',
        type1: '书店',
        type2: '主力店',
        type3: '普通区域',
        type4: '动线区域',
        state: '请选择状态',
        state1: '正常',
        state2: '停用',
        allstate: '全部状态',
        stateA: '在线',
        stateB: '离线',
        countries: '国家选择',
        provinces: '省份选择',
        city: '城市选择',
        county: '区县选择',
        floorS: '楼层选择',
        shopS: '书店选择',
        select: '请选择',
        site: '请选择监控点',
        camera: '请选择相机',
        date: '请选择日期',
        ip: '请输入IP地址',
        deviceNumber: '请输入设备序列号',
        Site: '请输入监控点名称',
        mall: '请选择所属广场',
        nodata: '无数据',
        x: 'X轴',
        y: 'Y轴',
        groupName: '请输入分组名称',
        enName: '请输入英文名称',
        allFloor: '全部楼层',
        allArea: '全部区域',
        allType: '全部类型',
        allGate: '全部监控点',
        allChannel: '全部通道',
        all: '全部',
        inOut: '出入口',
        Nonentry: '非出入口',
        week: '请选择周',
        month: '请选择月',
        year: '请选择年',
        startDate: '开始时间',
        endDate: '结束时间',
        shopSelect: '请选择书店',
        floorSelect: '请选择楼层',
        areaSelect: '请选择区域',
        zoneSelect: '请选择店铺',
        mallPermissSel: '请选择书店权限',
        rolePermissSel: '请选择角色权限',
        gateLevel: '请选择出入口级别',
        gateType: '请选择出入口',
        event: '请选择活动',
        kpi: '请选择指标',
        grouping: '请选择所属分组',
        enterPersonType: '请选择人员类型',
        zoneNum: '请选择区域个数',
        eventType:'请选择活动类型',
        eventTypeA: '节假日',
        eventTypeB: '活动',
        eventLevel: '请选择活动级别',
        eventLevelA: '商户',
        eventLevelB: '书店',
        inStore: '店内',
        outStore: '店外',
        gatePosition: '请选择监控点位置',
        allMall: '全部书店',
        selectMallPermiss: '选择书店权限',
        rolePermiss: '选择角色权限',
        rankTopBottom: '前10/后10',
        format: '请选择业态',
        subFormat: '请选择业种',
        intervalSelect: '请选择间隔时间',
        orderNumberSelect: '请输入阶数',
        startMinSelect: '请输入开始分钟',
        endMinSelect: '请输入结束分钟'
    },
    message:{
        get: '获取',
        reportFailed: '报表数据失败',
        timeIllegal: '结束周期时间格式不合法',
        noAreaId: '该区域ID为空,数据不存在!',
        noEvent: '获取节日对象为空!',
        nomenu: '没有菜单权限!请使用管理员给此用户分配角色!',
        captureFailed: '获取抓拍记录失败!',
        loginFailed: '登录失败!',
        noBloc: '商户不存在!',
        delete: '此操作将永久删除, 是否继续?',
        deleteEvent: '确定删除该活动?',
        confirDelete: '确定删除?',
        unbindPrompt: '确定是否解绑?',
        prompt: '提示',
        confirm: '确定',
        cancel: '取消',
        deleteSuccess: '删除成功!',
        deleteFailed: '删除失败!',
        cancelDelete: '已取消删除!',
        addAbnormal: '新增异常!',
        editAbnormal: '编辑异常!',
        uploadImg: '上传图片只能是',
        or: '或',
        imgFormat: '格式!',
        imgSize: '上传图片大小不能超过',
        upload: '上传成功!',
        uploadFailed: '上传失败!',
        addClerkFailed: '添加店员失败!',
        editClerkFailed: '编辑店员失败!',
        clerkHasAdded: '该图片已添加至店员库,不能取消!',
        deleteFeature: '请删除特征照片!',
        addLimit: '最多选择十张',
        selectMall: '请选择所属书店!',
        selectCity: '请选择省份城市!',
        coordinate: '请选择坐标!',
        bindDevice: '设备绑定成功!',
        deviceFailed: '设备绑定失败!',
        bindGate: '该方向的监控点已绑定!',
        alreadyBound: '该监控点的其他方向已绑定!',
        confirmUnbind: '确定解绑吗?',
        bind: '绑定异常!',
        bindSuccess: '绑定成功!',
        bindFailed: '绑定失败!',
        unbind: '解绑异常!',
        confirmUnbind: '确定解绑吗?',
        NoFloorImg: '楼层照片不存在,请尽快添加!',
        uploadHeatImg: '请上传背景图!',
        imgWidth: '请输入分辨率宽度!',
        imgHeight: '请输入分辨率高度!',
        labelSuccess: '标注成功!',
        labelFailed: '标注失败!',
        allocate: '分配成功!',
        allocateFailed: '分配失败!',
        node: '节点',
        addUser: '新增用户失败!',
        ipOrNumber: '请输入设备序列号/IP',
        enterPersonType: '请选择人员类型',
        all: '全部入口',
        inOut: '入口',
        Nonentry: '非入口',
        editSuccess: '修改成功!',
        editFailed: '修改失败!',
        isDisabled: '确定禁用该',
        isEnable: '确定启用该',
        disableSuccess: '禁用成功!',
        disableFailed: '禁用失败!',
        enableSuccess: '启用成功!',
        enableFailed: '启用失败!',
        changePWSuccess: '密码修改成功,请重新登录!',
        changePWFailed: '密码修改失失败,请重新修改!',
        resetPWSuccess: '密码重置成功!',
        resetPWFailed: '密码重置失败!',
        dpiNotNormal: '图片尺寸不达标',
        imgloaderror: '图片加载失败!文件损坏或者文件格式错误!',
        imgLimSize: '上传头像文件大小不能超过',
        confrimResetPW: '是否确认重置密码?',
        wechatBind: '请查看个人信息是否已绑定微信!',
        editDeviceFailed: '该设备已经绑定监控点,需要手动解绑!',
        deviceSelect: '请选择设备序列号!',
        unsupportChartType: '图表类型不支持!',
        businessTimeErr: '营业时间设置失败!',
        addMallErr: '添加广场失败!',
        editMallErr: '编辑广场失败!',
        emptyShop: '区域为空!',
        notSupportFunction: '您没有此功能的访问权限或项目使用的硬件产品不支持此功能!!',
        customLossTimeVaild: '自定义流失时间不合法!'
    },
    rules: {
        loginName: '请输入用户名',
        password: '请输入密码',
        wordRules: '请输入不小于六位包含字母数字的密码',
        newOldSame: '新旧密码相同',
        checkWord: '请再次输入密码',
        checkDifferent: '两次输入密码不一致',
        blocName: '请输入商户名称',
        blocAdmin: '请输入管理员名称',
        userName: '请输入姓名',
        roleName: '请输入角色名',
        mallName: '请输入书店名称',
        personTypeName: '请输入类型名称',
        personTypeLevel: '请选择类型级别',
        orgIdMall: '请选择所属书店',
        emptyAge: '年龄不能为空',
        emptyGender: '请选择性别'
    },
    allPages: {
        load: '导出数据',
        loadData: '下载数据',
        loadType: '选择下载类型 :',
        all: '全选',
        Image: '图片',
        Excel: 'Excel',
    },
    echartsTitle: {
        eventEffect: '活动效果对比',
        countyMapTitle: '书店布局',
        customerFeature: '顾客特征分布',
        AccountDayCustomerCounting: '实时客流',
        AccountDayCustomeradd: '累计客流',
        AccountDaytrend7: '近期趋势',
        AccountDaytrend15: '近期趋势',
        AccountDaytrend30: '近期趋势',
        AccountDaycostomer_ranking: '书店排名',
        AccountDaysale_ranking: '书店排名',
        AccountDayCityTraffic: '城市下属书店客流人次',
        AccountDaypreprice_ranking: '书店排名',
        AccountDayperSquareMeterRank: '书店排名',
        AccountDaydurationtimeRank: '书店排名',
        AccountDaydepth_ranking: '书店排名',
        AccountDayformat_costomer_ranking: '业态排名',
        AccountDayformat_sell_ranking: '业态排名',
        AccountDayformat_enteringrate_ranking: '业态排名',
        AccountDaycustomerfeature_sex: '性别分布',
        AccountDaycustomerfeature_age: '年龄分布',
        AccountWeekcostomerTrend: '近期趋势',
        AccountWeektrifficRank: '书店排名',
        AccountWeeksaleRank: '书店排名',
        AccountWeekdepthRank: '书店排名',
        AccountWeekprePriceRank: '书店排名',
        AccountWeekareaEffRank: '书店排名',
        AccountWeekdwellTimeRank: '书店排名',
        AccountWeekformat_traffic_ranking: '业态排名',
        AccountWeekformat_sale_ranking: '业态排名',
        AccountWeekcustomerfeature_gender: '性别分布',
        AccountWeekcustomerfeature_age: '年龄分布',
        AccountYeartrifficRank: '书店排名',
        AccountYearsaleRank: '书店排名',
        AccountYeardepthRank: '书店排名',
        AccountYearprePriceRank: '书店排名',
        AccountYearareaEffRank: '书店排名',
        AccountYeardwellTimeRank: '书店排名',
        AccountYearformat_traffic_ranking: '业态排名',
        AccountYearformat_sale_ranking: '业态排名',
        AccountYearcustomerfeature_gender: '性别分布',
        AccountYearcustomerfeature_age: '年龄分布',
        AccountMonthtrafficAndSaleTrend: '近期趋势',
        AccountMonthtrifficRank: '书店排名',
        AccountMonthsaleRank: '书店排名',
        AccountMonthdepthRank: '书店排名',
        AccountMonthprePriceRank: '书店排名',
        AccountMonthareaEffRank: '书店排名',
        AccountMonthdwellTimeRank: '书店排名',
        AccountMonthformat_traffic_ranking: '业态排名',
        AccountMonthformat_sale_ranking: '业态排名',
        AccountMonthcustomerfeature_gender: '性别分布',
        AccountMonthcustomerfeature_age: '年龄分布',
        AccountYeartrafficAndSaleDayTrend: '趋势',
        AccountYeartrafficAndSaleMonthTrend: '趋势',
        FloorDaycustomerfeature_gender: '性别分布',
        FloorDaycustomerfeature_age: '年龄分布',
        FloorDaycustomerfeature_NAO: '新老顾客',
        FloorDayhourTrafficTrend: '楼层实时客流',
        FloorDayaffumulativeTraffic: '楼层累计客流',
        FloorDaytrafficAndSaleTrend7: '近期趋势',
        FloorDaytrafficAndSaleTrend15: '近期趋势',
        FloorDaytrafficAndSaleTrend30: '近期趋势',
        FloorDaytrafficRank: '楼层区域排行',
        FloorDaysaleRank: '楼层区域排行',
        FloorDayenteringRateRank: '楼层区域排行',
        FloorDayperTransactionRank: '楼层区域排行',
        FloorDayperSquareMeterRank: '楼层区域排行',
        FloorDayturnoverRank: '楼层区域排行',
        FloorDayhandbagRateRank: '楼层区域排行',
        FloorDaydurationTimeRank: '楼层区域排行',
        FloorDaygateTraffic: '楼层出入口客流情况',
        FloorWeekcustomerfeature_gender: '性别分布',
        FloorWeekcustomerfeature_age: '年龄分布',
        FloorWeekcustomerfeature_NAO: '新老顾客',
        FloorWeektrafficAndSaleTrend: '近期趋势',
        FloorWeektrafficRank: '楼层区域排行',
        FloorWeeksaleRank: '楼层区域排行',
        FloorWeekenteringRateRank: '楼层区域排行',
        FloorWeekperTransactionRank: '楼层区域排行',
        FloorWeekperSquareMeterRank: '楼层区域排行',
        FloorWeekturnoverRank: '楼层区域排行',
        FloorWeekhandbagRateRank: '楼层区域排行',
        FloorWeekdurationTimeRank: '楼层区域排行',
        FloorWeekgateTraffic: '楼层出入口客流情况',
        FloorMonthcustomerfeature_gender: '性别分布',
        FloorMonthcustomerfeature_age: '年龄分布',
        FloorMonthcustomerfeature_NAO: '新老顾客',
        FloorMonthtrafficAndSaleTrend: '近期趋势',
        FloorMonthtrafficRank: '楼层区域排行',
        FloorMonthsaleRank: '楼层区域排行',
        FloorMonthenteringRateRank: '楼层区域排行',
        FloorMonthperTransactionRank: '楼层区域排行',
        FloorMonthperSquareMeterRank: '楼层区域排行',
        FloorMonthturnoverRank: '楼层区域排行',
        FloorMonthhandbagRateRank: '楼层区域排行',
        FloorMonthdurationTimeRank: '楼层区域排行',
        FloorMonthgateTraffic: '楼层出入口客流情况',
        FloorYearcustomerfeature_gender: '性别分布',
        FloorYearcustomerfeature_age: '年龄分布',
        FloorYearcustomerfeature_NAO: '新老顾客',
        FloorYeartrafficAndSaleTrend: '近期趋势',
        FloorYeartrafficRank: '楼层区域排行',
        FloorYearsaleRank: '楼层区域排行',
        FloorYearenteringRateRank: '楼层区域排行',
        FloorYearperTransactionRank: '楼层区域排行',
        FloorYearperSquareMeterRank: '楼层区域排行',
        FloorYearturnoverRank: '楼层区域排行',
        FloorYearhandbagRateRank: '楼层区域排行',
        FloorYeardurationTimeRank: '楼层区域排行',
        FloorYeargateTraffic: '楼层出入口客流情况',
        ZoneDaycustomerfeature_gender: '性别分布',
        ZoneDaycustomerfeature_age: '年龄分布',
        ZoneDaycustomerfeature_NAO: '新老顾客',
        ZoneDayhourTrafficTrend: '区域实时客流',
        ZoneDayaccumulativeTraffic: '区域累计客流',
        ZoneDaytrafficTrend7: '区域近期趋势',
        ZoneDaytrafficTrend15: '区域近期趋势',
        ZoneDaytrafficTrend30: '区域近期趋势',
        ZoneDaySaleTrend7: '区域近期趋势',
        ZoneDaySaleTrend15: '区域近期趋势',
        ZoneDaySaleTrend30: '区域近期趋势',
        ZoneDayEnteringRateTrend7: '区域近期趋势',
        ZoneDayEnteringRateTrend15: '区域近期趋势',
        ZoneDayEnteringRateTrend30: '区域近期趋势',
        ZoneDayPerTransactionTrend7: '区域近期趋势',
        ZoneDayPerTransactionTrend15: '区域近期趋势',
        ZoneDayPerTransactionTrend30: '区域近期趋势',
        ZoneDayPerSquareTrend7: '区域近期趋势',
        ZoneDayPerSquareTrend15: '区域近期趋势',
        ZoneDayPerSquareTrend30: '区域近期趋势',
        ZoneDayHandbagRateTrend7: '区域近期趋势',
        ZoneDayHandbagRateTrend15: '区域近期趋势',
        ZoneDayHandbagRateTrend30: '区域近期趋势',
        ZoneDaydurationtimeTrend7: '区域近期趋势',
        ZoneDaydurationtimeTrend15: '区域近期趋势',
        ZoneDaydurationtimeTrend30: '区域近期趋势',
        ZoneWeekcustomerfeature_gender: '性别分布',
        ZoneWeekcustomerfeature_age: '年龄分布',
        ZoneWeekcustomerfeature_NAO: '新老顾客',
        ZoneWeekhourTrafficTrend: '区域实时客流',
        ZoneWeekaffumulativeTraffic: '区域累计客流',
        ZoneWeektrafficTrend: '区域近期趋势',
        ZoneWeekSaleTrend: '区域近期趋势',
        ZoneWeekEnteringRateTrend: '区域近期趋势',
        ZoneWeekPerTransactionTrend: '区域近期趋势',
        ZoneWeekPerSquareTrend: '区域近期趋势',
        ZoneWeekHandbagRateTrend: '区域近期趋势',
        ZoneWeekdurationtimeTrend: '区域近期趋势',
        ZoneMonthcustomerfeature_gender: '性别分布',
        ZoneMonthcustomerfeature_age: '年龄分布',
        ZoneMonthcustomerfeature_NAO: '新老顾客',
        ZoneMonthhourTrafficTrend: '区域实时客流',
        ZoneMonthaffumulativeTraffic: '区域累计客流',
        ZoneMonthtrafficTrend: '区域近期趋势',
        ZoneMonthSaleTrend: '区域近期趋势',
        ZoneMonthEnteringRateTrend: '区域近期趋势',
        ZoneMonthPerTransactionTrend: '区域近期趋势',
        ZoneMonthPerSquareTrend: '区域近期趋势',
        ZoneMonthHandbagRateTrend: '区域近期趋势',
        ZoneMonthdurationtimeTrend: '区域近期趋势',
        ZoneYearcustomerfeature_gender: '性别分布',
        ZoneYearcustomerfeature_age: '年龄分布',
        ZoneYearcustomerfeature_NAO: '新老顾客',
        ZoneYearhourTrafficTrend: '区域实时客流',
        ZoneYearaffumulativeTraffic: '区域累计客流',
        ZoneYeartrafficTrend: '区域近期趋势',
        ZoneYearSaleTrend: '区域近期趋势',
        ZoneYearEnteringRateTrend: '区域近期趋势',
        ZoneYearPerTransactionTrend: '区域近期趋势',
        ZoneYearPerSquareTrend: '区域近期趋势',
        ZoneYearHandbagRateTrend: '区域近期趋势',
        ZoneYeardurationtimeTrend: '区域近期趋势',
        MallDaycustomerfeature_denger: '性别分布',
        MallDaycustomerfeature_age: '年龄分布',
        MallDaycustomerfeature_NAO: '新老顾客',
        MallDaycustomercounting: '书店实时客流',
        MallDaycustomeradd: '书店累计客流',
        MallDaytrend7: '书店近期趋势',
        MallDaytrend15: '书店近期趋势',
        MallDaytrend30: '书店近期趋势',
        MallDaycostomer_ranking: '书店主力店铺排行',
        MallDayentering_ranking: '书店主力店铺排行',
        MallDaymall_sale_ranking: '书店主力店铺排行',
        MallDayperTransactionRank: '书店主力店铺排行',
        MallDayperSquareMeterRank: '书店主力店铺排行',
        MallDayturnoverRank: '书店主力店铺排行',
        MallDayhandbagRateRank: '书店主力店铺排行',
        MallDaydurationTimeRank: '书店主力店铺排行',
        MallDayformat_sale_ranking: '书店业态排名',
        MallDaytriffic_ranking: '书店业态排名',
        MallDaygate_triffic: '主要出入口客流情况',
        MallDayfloor_triffic: '楼层客流情况',
        MallWeekcustomerfeature_denger: '性别分布',
        MallWeekcustomerfeature_age: '年龄分布',
        MallWeekcustomerfeature_NAO: '新老顾客',
        MallWeektrafficAndSaleTrend: '书店近期趋势',
        MallWeekcostomer_ranking: '书店主力店铺排行',
        MallWeekentering_ranking: '书店主力店铺排行',
        MallWeekmall_sale_ranking: '书店主力店铺排行',
        MallWeekperTransactionRank: '书店主力店铺排行',
        MallWeekperSquareMeterRank: '书店主力店铺排行',
        MallWeekturnoverRank: '书店主力店铺排行',
        MallWeekhandbagRateRank: '书店主力店铺排行',
        MallWeekdurationTimeRank: '书店主力店铺排行',
        MallWeekformat_sale_ranking: '书店业态排名',
        MallWeektriffic_ranking: '书店业态排名',
        MallWeekgate_triffic: '主要出入口客流情况',
        MallWeekfloor_triffic: '楼层客流情况',
        MallMonthcustomerfeature_denger: '性别分布',
        MallMonthcustomerfeature_age: '年龄分布',
        MallMonthcustomerfeature_NAO: '新老顾客',
        MallMonthtrafficAndSaleTrend: '书店近期趋势',
        MallMonthcostomer_ranking: '书店主力店铺排行',
        MallMonthentering_ranking: '书店主力店铺排行',
        MallMonthmall_sale_ranking: '书店主力店铺排行',
        MallMonthperTransactionRank: '书店主力店铺排行',
        MallMonthperSquareMeterRank: '书店主力店铺排行',
        MallMonthturnoverRank: '书店主力店铺排行',
        MallMonthhandbagRateRank: '书店主力店铺排行',
        MallMonthdurationTimeRank: '书店主力店铺排行',
        MallMonthformat_sale_ranking: '书店业态排名',
        MallMonthtriffic_ranking: '书店业态排名',
        MallMonthgate_triffic: '主要出入口客流情况',
        MallMonthfloor_triffic: '楼层客流情况',
        MallYearcustomerfeature_denger: '性别分布',
        MallYearcustomerfeature_age: '年龄分布',
        MallYearcustomerfeature_NAO: '新老顾客',
        MallYeartrafficAndSaleTrend: '书店近期趋势',
        MallYearcostomer_ranking: '书店主力店铺排行',
        MallYearentering_ranking: '书店主力店铺排行',
        MallYearmall_sale_ranking: '书店主力店铺排行',
        MallYearperTransactionRank: '书店主力店铺排行',
        MallYearperSquareMeterRank: '书店主力店铺排行',
        MallYearturnoverRank: '书店主力店铺排行',
        MallYearhandbagRateRank: '书店主力店铺排行',
        MallYeardurationTimeRank: '书店主力店铺排行',
        MallYearformat_sale_ranking: '书店业态排名',
        MallYeartriffic_ranking: '书店业态排名',
        MallYeargate_triffic: '主要出入口客流情况',
        MallYearfloor_triffic: '楼层客流情况',
        AccountWeekCityTraffic: '城市下属书店客流人次',
        AccountMonthCityTraffic: '城市下属书店客流人次',
        AccountYearCityTraffic: '城市下属书店客流人次',
        DayYoYMoMDayCountingYoY: '今日实时时刻同环比',
        DayYoYMoMDayAddYoY: '今日累计同环比',
        DayYoYMoM15DayCountingYoY: '近15天同环比',
        WeekYoYMoMNear3WeekYoY: '近8周同环比',
        WeekYoYMoMWeekDayOrEndYoY: '本周工作日/双休日同环比',
        WeekYoYMoMDayOfWeekYoY: '本周每日同环比',
        MonthYoYMoMNear3MonthYoY: '近6月同环比',
        MonthYoYMoMWeekDayOrEndYoY: '本月工作日/双休日同环比',
        MonthYoYMoMDayOfMonthYoY: '本月每日同环比',
        YearYoYMoMNear3YearYoY: '近3年同环比',
        YearYoYMoMWeekDayOrEndYoY: '本年工作日/双休日同环比',
        YearYoYMoMMonthOfYearYoY: '本年每月同环比',
        customeOfYoY: '自定义时间同环比',
        multipleDayOfYoY: '多对象日同环比',
        multipleWeekOfYoY: '多对象周同环比',
        multipleMoMOfYoY: '多对象月同环比',
        multipleYearOfYoY: '多对象年同环比',
        TimeThermodynamicTimeThermodynamic: '时段客流分布',
        WeatherReportWeatherAnalyze: '天气分析图',
        WeatherReportWeatherSynthetical: '天气综合列表',
        WeatherReportWeatherDetail: '每日详情',
        AccountYeartrafficAndSaleWeekTrend: '趋势',
        SynthesizeCompareDaycustomerfeature_gender: '顾客性别对比',
        SynthesizeCompareDaycustomerfeature_age: '顾客年龄对比',
        SynthesizeCompareDayhourTrend: '时刻对比',
        SynthesizeCompareDaydayTrend: '近15天趋势对比',
        SynthesizeCompareDayaccumulative: '时刻累加对比',
        SynthesizeComparecustomerfeature_gender: '顾客性别对比',
        SynthesizeComparecustomerfeature_age: '顾客年龄对比',
        SynthesizeComparedayTrend: '趋势对比',
        WeekComparedweekdayOrEnd: '周中周末对比',
        DateComparedkpiLoop: '两时段总体对比',
        DateComparedkpiRadar: '两时段维度对比',
        BasicDayReportkpiData: '今日数据汇总',
        BasicDayReporttrafficHour: '今日小时级客流报表',
        BasicDayReporttraffic10Min: '今日十分钟级客流报表',
        BasicDayReporttrafficday: '今日天级客流报表',
        BasicReportkpiData: '数据汇总',
        BasicReportdetailData: '客流报表',
        holidayeEventHolidayEvent: '节假日活动',
        holidayeEventHolidayDetail: '节假日增长率详情',
        holidayeEventHolidayEffect: '节假日活动效果',
        holidayObjectHolidayNear: '活动近期对比',
        holidayObjectHolidayEffect: '活动效果对比',
        holidayObjectHolidayHourDetail: '活动当日时刻对比',
        faceAnalyzeStafaceCountDetail: '人脸统计详情',
        faceAnalyzeStafaceGender: '人脸性别统计',
        faceAnalyzeStafaceAge: '人脸年龄统计',
        faceCountAnalyzeStafaceGenderDetail: '人脸性别统计详情',
        faceCountAnalyzeStafaceAgeDetail: '人脸年龄统计详情',
        faceDistributionfaceTraffic: '客流统计',
        faceDistributionfaceTrafficDetail: '人脸客流统计详情',
        faceDistributionfaceGenderRatio: ' 性别比例',
        trafficInAndOuttrafficInAndOut: '进出客流报表',
        rankingrankingList: '排行榜',
        SynthesizeComparemonthTrend: '月级趋势对比',
        faceDistributionfaceAgeRatio: ' 年龄比例',
        effectiveflow: '新老顾客分析',
        EffTrafficStat: '客流人数统计',
        enteringRateTable: '进店率统计报表详情',
        enteringRateChart: '进店率统计报表',
        faceZoneTrafficDetail: '区域人脸客流统计详情',
        faceZoneAgeRatio: '区域人脸年龄比例统计',
        faceZoneGenderRatio: '区域人脸性别比例统计',
        areaFlowTime: '区域客流分时统计',
        timeComp: '时间对比分析',
        returnshopDetails: '返店顾客报表详情',
        returnshop: '返店顾客属性分析',
        trafficOfMonth: '本年客流人次总体趋势',
        detailData: '本月客流人次趋势',
        TimeThermodynamic: '本月时段客流分布情况',
        weekdayOrEnd: '本月周中周末客流对比',
        faceGender: '本月顾客属性分析',
        faceAge: '本月顾客属性分析',
        EachDayGenderNumLine: '性别比例详情',
        EachDayAgeNumBar: '年龄比例详情',
        newCustomerAsis: '新顾客分析',
        olCustomerAsis: '老顾客分析',
        customerAsis: '整体顾客分析',
        returnshopTitle: '返店率详情',
        returnshopGender: '返店顾客性别详情',
        returnshopAge: '返店顾客年龄详情',
        customCountTitle: '顾客人数详情',
        customCountGender: '顾客性别详情',
        customCountAge: '顾客年龄详情',
        trafficDirectionTitile: '客流方向分析',
        customercountingMax: '高位数据分析',
        customercountingMin: '低位数据分析',
        regularCustomerLine: '每日老顾客人数及占比',
        regularCustomerDetailLine: '每日老顾客详情',
        frequencyStatistics: '到店频次统计',
        residenceTimeStatistics: '滞留时间统计',
        lossCustomerAnalysis: '流失客流客群分析',
        distributionCustomer: '顾客滞留时间分布',
        dwellTimeGender: '性别比例',
        dwellTimeAge: '年龄分布',
        noData: '暂无数据',
        loading: '正在加载中...',
    },
    echarts:{
        traffic: '客流人次',
        growthRate: '增长率',
        percentage: '百分比',
        proportion: '占比',
        workdayAverageInnum: '工作日平均客流',
        weekendAverageInnum: '双休日平均客流',
        index: '指数',
        high: '高',
        low: '低',
        lossCustomerRatio: '流失客流占比'
    },
    dictionary:{
        Male: '男',
        Female: '女',
        staff: '店员',
        custom: '顾客',
        unknow: '未知',
        Sad: '伤心',
        Surprise: '惊讶',
        Peace: '平静',
        other: '其他',
        Angry: '生气',
        Disgust: '厌恶',
        Fear: '害怕',
        Happy: '高兴',
        Pleasant: '愉悦',
        in:'进入',
        out:'出',
        floatingDust:'浮尘',
        fog:'雾',
        frozenRain:'冻雨',
        haze:'霾',
        cloudyDay:'阴',
        sunnyDay:'晴',
        partlyCloudy:'多云',
        shower:'阵雨',
        thunderShower:'雷阵雨',
        sleet:'雨夹雪',
        lightRain:'小雨',
        hail:'冰雹',
        rain:'中雨',
        heavyRain:'大雨',
        rainstorm:'暴雨',
        snowShower:'阵雪',
        lightSnow:'小雪',
        snow:'中雪',
        heavySnow:'大雪',
        blizzard:'暴雪',
        commonArea:'普通区',
        mainStore:'主力店',
        movingLineArea:'动线区域',
        store:'店铺',
        tradCount:'传统客流',
        count:'客流',
        inStoreRate:'进店率',
        faceFlow:'人脸客流',
        heatmap:'热力图',
        faceCapture:'人脸抓拍',
        face:'人脸',
        account: '商户',
        mall: '书店',
        floor: '楼层',
        zone: '区域'
    },
    moreSetting: {
        warnTipMessage: '此操作是对书店进行高级参数配置, 不建议轻易修改配置参数',
        CustomerDentificationSettings: '顾客识别设置',
        BackEndAnalysis: '后端分析',
        CustomerMatch: '顾客匹配',
        PrivacySetting: '隐私设置',
        PeopleLibraryMatching: '人员库匹配',
        FullBodyPhotoFeatureExtraction: '全身照特征提取',
        NewAndOldCustomers: '新老顾客',
        PassengerFlowCalculationModel: '客流人数计算模式',
        StandardMode: '标准模式',
        StrictMode: '严格模式',
        StoreRateSetting: '进店率设置',
        ShopThroughRateCalculationMode: '进店率计算模式',
        OutOfStorePassengerFlowCalculationMethod: '店外客流计算方法',
        ClerkIdentificationSettings: '店员识别设置',
        regularClerkIdentification: '常规店员识别',
        IntelligentStoreClerkIdentification: '智能店员识别',
        IntelligentStoreClerkRecognitionMode: '智能店员识别模式',
        ParameterSettings: '参数设置',
        QuirksMode: '宽松模式',
        MatchTheCycle: '匹配周期',
        Passengers: '客流人次',
        PassengerFlow: '客流人数',
        OutOfStorePassengerFlow: '店外客流',
        PositivePassengerFlowOutsideTheStore: '店外正向客流',
        ReversePassengerFlowOutsideTheStore: '店外反向客流',
        VisitorFlow: '进店客流',
        StrictModeTips: '当日到店次数和历史到店次数均大于参数',
        QuirksModeTips: '仅限当日到店次数大于参数',
        Open: '开启',
        Close: '关闭',
        HistoryInStore: '历史到店次数',
        TodayInStore: '当日到店次数',
        trafficStandardModeTips: '顾客去重后的人数',
        trafficStrictModeTips: '识别出的男性与女性顾客总和'
    },
    ...enLocale
}
export default zh_CN