en_US.js 54.5 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
import enLocale from 'element-ui/lib/locale/lang/en'
const en_US = {
    login: {
        btn: 'Login',
        rememberPw: 'Remember Password',
        loginLoading: 'logging in...',
        platformName: 'Wisdom Chain Traffic Analysis Platform'
    },
    home: {
        home: 'Home',
        traffic: 'Traffic Statistics',
        custBehavior: 'Cust-Behavior',
        peciseTraff: 'Human Face',
        dataAnalysis: 'Data Analysis',
        backstage: 'Back-stage Mgmt',
        dropOut: 'Exit',
        version: 'Version',
        manual: 'Manual',
    },
    navData: {
        blocks: 'block',
        malls: 'mall',
        floors: 'floor',
        stores: 'store',
        gates: 'gate',
        devices: 'device',
        shopName:'Please enter store',
        floorname: 'Please enter floor',
        areaName: 'Please enter area',
        nodata: 'No Data',
        load: 'loading...',
    },
    reportHandle: {
        day: 'Daily',
        week: 'weekly',
        month: 'Monthly',
        year: 'Yearly',
        simpleBtn: 'Concise Report',
        today: 'Today',
        yesterday: 'Yesterday',
        lastweek: 'Lastweek',
        button: 'Complex report'
    },
    head: {
        title: 'Statistic Analysis',
        otherRep: 'Other date',
        mallOpenedCount: 'Number of mall opened',
        mallOpenedArea: 'Opening area',
        StoreAllTraffic: 'Store all traffic',
        mallArea: 'Mall area',
        comparedInnum: 'Same day of last week',
        comparedSale: 'Chain of sales',
        dayDensity: 'Yesterday traffic',
        density: 'Traffic 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: 'Effective traffic',
        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: 'Entering rate',
        handbagRate: 'Rate of bags',
        turnover: 'Volume',
        man: 'Male',
        woman: 'Female',
        clerkNum:'Staff traffic',
        repeatTraff:'Repeat Traffic',
        effectiveTraff:'Effective Traffic',
        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',
        perTime: 'man-time',
        perNum: 'people',
        millionTime: 'Million times',
        millionNum: 'Million people',
        squareMeters: 'Mall-m',
        millionSquareM: 'Million square-m',
        saleUnit: 'Yuan',
        SalesUnit: 'W',
        minutesUnit: 'Minutes',
        hoursUnit: 'Hours',
        minute: 'm',
        seven: 'Nearly seven days',
        fifteen: 'Nearly fifteen days',
        thirty: 'Nearly thirty days',
        TRAFFIC: 'Traffic ',
        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'
    },
    asis: {
        BasicAsis: 'Basic Analysis',
        SeqAnalysis: 'Correlative Analysis',
        MainStore: 'MainStore Correlative',
        TimeHeat: 'Time Thermal Analysis',
        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 passenger flow statistics',
        DurationTime: 'Retention time statistics',
        PassengerRetention: 'Passenger retention in and out',
        FisheyeRetention: 'Fish eye retention',
        StoreRate: 'Store Entry Rate',
        HeatMap: 'Area Heat',
        PointHeat: 'Point Heat',
        FloorHeatMap:'Floor HeatMap',
        MoveLine: 'Moving Line',
        HappinessIndex: 'Happiness Index',
        ftmoveline: 'Face traffic Moving Line',
        AreaGroup: 'Area Group Analysis',
        ResidenceTime: 'Dwell Time',
        CustomTrack: 'Custom Track',
        ZoneTrafficDirection: 'Zone Traffic Direction',
        Areaheat: 'Area Heatmap',
        Trackheat: 'Track Heatmap',
        MoveLineAnalysis: 'Track Heatmap',
        moreOp: 'More Options',
        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 Analysis',
        AlarmLog: 'Traffic Density Warning',
        TrafficDensity: 'Traffic Density',
        ReturnShop: 'Return Shop Analysis',
        dataReport: 'Traffic data analysis report',
        BasicAnalysis: 'Basic Analysis',
        ContrastiveAsis: 'Contrastive Analysis',
        WeatherActAsis: 'Weather Activity',
        TrafficHeatMap: 'Traffic HeatMap',
        TrafficDirection: 'Traffic Direction',
        MultiTrafficDirection: 'Floor conversion rate'
    },
    asisTab: {
        level: 'Analytical Level :',
        mall: 'Mall',
        floor: 'Floor',
        inOut: 'Gateway',
        Nonentry: 'Non-entry',
        store: 'Store',
        zone: 'Store',
        mallT: 'Mall :',
        floorT: 'Floor :',
        storeT: 'Store :',
        inOutT: 'Gateway :',
        inOutLev: 'Gateway Level :',
        format: 'format',
        countries: 'Country',
        province: 'Provinces',
        city: 'City',
        county: 'County',
        date: 'Date :',
        index: 'Index :',
        event: 'Event :',
        day: 'Day',
        week: 'Week',
        month: 'Month',
        year: 'Year',
        custom: 'Custom',
        timeA: 'Time1 :',
        timeB: 'Time2 :',
        class: 'classes :',
        gate: 'Gateway',
        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',
        customReport: 'Custom',
        customLossTime: 'Custom elapsed time(s):'
    },
    title: {
        mall: 'Mall',
        floor: 'Floor',
        gate: 'Gateway',
        zone: 'Store',
        format: 'format',
    },
    Behavior: {
        capturecamera: 'Access Records',
        clerkcamera:'Clerk Capture Record',
        mallGroup: 'Mall Crowd Stats',
        customGroup: 'Customer Statistical',
        groupTime: 'Customer Time Stats',
        gateFlow: 'Channel Statistical',
        areaflowtime: 'Time-sharing Stats',
        effectiveflow: 'Customer statistics',
        trafficstat: 'Effective Stats',
        frequency: 'Store frequency statistics',
        AreaGroup: 'Area Group Stats',
        CustomTrack: 'Custom Track',
        moreOp: 'More Options',
        isEffTra: 'effect traffic',
        identified: 'Identified',
        unrecognized: 'Unrecognized',
        isShowAll:  'View all',
        CustomersAsis: 'Customers Analysis',
        NewOldCustomer: 'New And Old Customers',
        areaCustomersAsis: 'Regional Guest Group',
        CaptureDetails: 'Capture Details',
        HumanFaceAsis: 'Customer Tracking',
        FisheyeThermal: 'Face Thermal',
        ReidTraffic: 'REID Traffic',
        MoveLine: 'Moving Line',
        HappinessIndex: 'Happiness Index',
        ftmoveline: 'Face traffic Moving Line',
        ResidenceTime: 'Dwell Time',
        CustomTrack: 'Custom Track',
        TrafficDirection: 'Traffic Direction',
        ZoneTrafficDirection: 'Zone Traffic Direction',
        Areaheat: 'Area Heatmap',
        Trackheat: 'Track Heatmap',
        MultiTrafficDirection: 'Floor conversion rate',
        MoveLineAnalysis: 'Track Heatmap',
        LossCustomer: 'Loss Customer analysis'
    },
    Management: {
        UserManage: 'User Mgmt',
        UserInfoManage: 'User Info',
        BlocManage: 'Block Mgmt',
        GroupManage: 'Group Mgmt',
        MallManage: 'Mall Mgmt',
        FloorManage: 'Floor Mgmt',
        ZoneManage: 'Store Mgmt',
        GateManage: 'Monitor Site Mgmt',
        DeviceStatus: 'Device Mgmt',
        DeviceScreenshot: 'Device Screenshot',
        ClerkManage: 'Clerk Mgmt',
        PersonManage: 'Personnel Mgmt',
        PersonTypeManage: 'Personnel type Mgmt',
        ActManage: 'Events Mgmt',
        ImgManage: 'Store Mark',
        RoleManage: 'Role Mgmt',
        MenuManage: 'Menu Mgmt',
        MallControl: 'Mall Control',
        DeviceSearch: 'Device Search',
        DeviceDataSearch: 'Device Data Search',
        DeviceState: 'Device State',
        DeviceData: 'Data Compare',
        WeChat: 'Notification',
        LoginLog: 'Login Log',
        AlarmLog: 'Traffic density warn',
        VideoPlayer: 'Video tour store',
        OrganInform: 'Organization Information',
        OrganRelatBuild: 'Organizational Relationship',
        FontEndManage: 'Front-end Mgmt',
        BackEndManage: 'Back-end Mgmt'
    },
    button: {
        simpleBtn: 'Concise Report',
        autoRefresh: 'Auto Refresh',
        refresh: 'Refresh',
        confirm: ' O K',
        cancel: 'Cancel',
        edit: 'Edit',
        groupEdit: 'Edit ',
        groupAdd: 'Add ',
        delete: 'Delete',
        details: 'Details',
        reset: 'Reset',
        search: 'Search',
        addUser: 'Add User',
        addGroup: 'Add Bloc',
        addSquare: 'Add Mall',
        addFloor: 'Add Floor',
        addArea: 'Add Area',
        addSite: 'Add Monitor Site',
        addDevice: 'Add',
        addPhoto: 'Add Photo',
        deviceBind: 'Binding',
        addEvent: 'Add Event',
        unbind: 'Bind/Unbind',
        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',
        resetPW: 'reset password',
        personTime: 'Customer Time',
        personNum: 'Customer Number',
        loadNum: 'Export Mall List',
        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'
    },
    table: {
        mall: 'Store',
        total: 'Total',
        average: 'Average',
        person: 'Person',
        personCount: 'PersonCount',
        male: 'Male',
        female: 'Female',
        staff: 'Staff',
        newCustomer: 'New Customer',
        oldCustomer: 'Old Customer',
        times: 'Times',
        ages: ' ',
        order: 'Number',
        username: 'Username',
        name: 'Name',
        merchant: 'Affiliated Merchant',
        CreatTime: 'Creation Time',
        ExpireTime: 'Expire Time',
        Userstate: 'User State',
        operate: 'Operate',
        blocName: 'BlocName',
        bloc: 'Affiliated Bloc',
        ownShop: 'Affiliated Shop',
        admin: 'Admin',
        founder: 'Founder',
        describe: 'Describe',
        squareName: 'Name',
        openTime: 'Open Time',
        todayFlow: 'Today\'s Flow',
        todayTurnover: 'Today\'s Turnover',
        businessTime: 'Business Hours',
        externalNum: 'External Number',
        squareArea: 'Area',
        state: 'State',
        stateA: 'Normal',
        stateB: 'Disable',
        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 Mall',
        areaName: 'Area Name',
        type: 'Type',
        shopNum: 'Shop Number',
        shopUnitId: 'Unit ID',
        floor: 'Affiliated Floor',
        monitorSiteName: 'Monitor Site Name',
        InstallationFloor: 'Installation Floor',
        SquareEntrance: 'Mall Entrance',
        faceCamera: 'Face Camera',
        deviceBind: 'Device Binding',
        localIP: 'Local IP',
        deviceNum: 'Devise Serial Number',
        channelNum: 'Channel Number',
        extranet: 'Extranet IP',
        deviceImg: 'Device Image',
        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',
        menuRoute: '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: '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'
    },
    dialog: {
        confirm: 'O K',
        cancel: 'Cancel',
        cancelBind: 'Cancel Bind',
        open: 'Open',
        close: 'Close',
        name: 'Name',
        add: 'Add',
        addBloc: 'Add Bloc',
        addDevice: 'Add Device',
        addMall: 'Add Mall',
        addClerk: 'Add Clerk',
        addPerson: 'Add Person',
        editPerson: 'Edit Person',
        addPersonType: 'Add Peron Type',
        deviceBind: 'Device Binding',
        editUser: 'Edit User',
        editBloc: 'Edit Bloc',
        editMall: 'Edit Mall',
        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: 'LoginName',
        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: 'Monitor Site Bind',
        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: 'Mall 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: 'Mall Setting',
        showAllPic: 'Show all snap',
        profilePic: 'Profile photo',
        bindWx: 'Binding 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'
    },
    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',
        state: 'Please select status',
        state1: 'Normal',
        state2: 'Disable',
        allstate: 'All states',
        stateA: 'Online',
        stateB: 'Offline',
        provinces: 'Province selection',
        city: 'City choice',
        county: 'County choice',
        floorS: 'Floor selection',
        shopS: 'Shop selection',
        select: 'Please choose',
        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 mall',
        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',
        enterPersonType: 'Please select person type',
        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',
        areaSelect: 'Please choose area',
        zoneSelect: 'Please choose 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 Malls',
        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'
    },
    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!',
        confirmUnbind: 'Are you sure to untie?',
        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!'
    },
    rules: {
        loginName: 'Please enter user name',
        password: 'Please enter password',
        wordRules: 'Please enter a password with at least six 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'
    },
    allPages: {
        load: 'Download',
        loadData: 'Download Data',
        loadType: 'Select Type :',
        Image: 'Image',
        all: 'Check All',
        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',
        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',
        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',
        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',
        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',
        SynthesizeComparemonthTrend: 'Trend contrast of month',
        faceDistributionfaceAgeRatio: 'Age proportion statistics',
        effectiveflow: 'New and old customer analysis',
        EffTrafficStat: 'Effective passenger flow 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',
        timeComp: 'Time comparison analysis',
        returnshopDetails: 'Return customer report details',
        returnshop: "Analysis of returning customers' attributes",
        trafficOfMonth: 'Overall trend of passenger traffic this year',
        detailData: 'Customer traffic trend this month',
        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',
        areaFlowTime: 'Area flow sharing-time analysis',
        frequencyStatistics: 'Store frequency statistics',
        residenceTimeStatistics: 'Retention time statistics',
        lossCustomerAnalysis: 'Analysis of lost customers',
        distributionCustomer: 'Distribution of customer dwell time',
        dwellTimeGender: 'Sex ratio',
        dwellTimeAge: 'Age distribution',
        noData: 'No Data',
        loading: 'loading...',
    },
    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: '流失客流占比'
    },
    dictionary:{
        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',
        out:'Out',
        floatingDust:'FloatingDust',
        fog:'Gog',
        frozenRain:'frozen Rain',
        haze:'Haze',
        cloudyDay:'Cloudy',
        sunnyDay:'Sunny',
        partlyCloudy:'PartlyCloudy',
        shower:'shower',
        thunderShower:'thunderShower',
        sleet:'sleet',
        lightRain:'lightRain',
        hail:'hail',
        rain:'rain',
        heavyRain:'heavyRain',
        rainstorm:'rainstorm',
        snowShower:'snowShower',
        lightSnow:'lightSnow',
        snow:'snow',
        heavySnow:'heavySnow',
        blizzard:'blizzard',
        commonArea:'CommonArea',
        mainStore:'MainStore',
        movingLineArea:'movingLineArea',
        store:'Store',
        tradCount:'Traffic',
        count:'Traffic',
        inStoreRate:'InStoreRate',
        faceFlow:'FaceFlow',
        heatmap:'Heatmap',
        faceCapture:'FaceCapture',
        face:'Face',
        account: 'Account',
        mall: 'Mall',
        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 Dentification Settings',
        BackEndAnalysis: 'Back-end Analysis',
        CustomerMatch: 'Customer Match',
        PrivacySetting: 'Privacy Setting',
        PeopleLibraryMatching: 'People Library Matching',
        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 Recognition Mode',
        ParameterSettings: 'Parameter Settings',
        QuirksMode: 'Quirks Mode',
        MatchTheCycle: 'Match The Cycle',
        Passengers: 'Passengers',
        PassengerFlow: 'Passenger Flow',
        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 Arrive',
        TodayInStore: 'Today Arrive',
        trafficStandardModeTips: 'Number of customers after reloading',
        trafficStrictModeTips: 'Total number of identified male and female customers'
    },
    ...enLocale
}
export default en_US