tanghaolin
2022-07-28 62aa8e0f0b366bc131309b72e1350d800d30be72
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
module.exports = {
    ebookPage: {
        all: { ID: "", CN: "全部", TR: "All" },
        driveType: { ID: 2366, CN: "驱动类型", TR: "Drive type" },
        motor: { ID: "", CN: "电机", TR: "Motor" },
        diesel: { ID: "", CN: "柴油机", TR: "Diesel" },
        noProfile: { ID: "", CN: "暂无简介", TR: "No Profile" },
        serieslist: { ID: 1, CN: "电子样本", TR: "Product Book" },
        motorFrequency: { ID: 72, CN: "电机频率", TR: "Motor Frequency" },
        displayMode: { ID: 670, CN: "显示方式", TR: "Display Mode" },
        list: { ID: 671, CN: "列表", TR: "List" },
        grid: { ID: 672, CN: "网格", TR: "Grid" },
        keyWord: { ID: 667, CN: "关键词", TR: "Key word" },
        keyWordRule: { ID: 171, CN: "请输入关键字", TR: "Please input key word" },
        view: { ID: 250, CN: "查询", TR: "View" },
        queryResults: { ID: "", CN: "查询结果", TR: "Query Results" },
        operation: { ID: "", CN: "操作", TR: "operation" },
        download: { ID: "", CN: "下载", TR: "download" },
        type: { ID: "", CN: "类型", TR: "type" },
        name: { ID: "", CN: "名称", TR: "name" },
        updateTime: { ID: "", CN: "更新时间", TR: "update time" },
        version: { ID: "", CN: "文件版本", TR: "version" },
        lang: { ID: "", CN: "语言", TR: "language" },
        size: { ID: "", CN: "文件尺寸", TR: "size" },
        desc: { ID: "", CN: "文件描述", TR: "describe" },
        emptyFlowAndHead: { ID: "", CN: "流量和扬程不能为空", TR: "Flow and head cannot be empty" },
        details: { ID: 999, CN: "详情", TR: "Detail" },
 
 
        pumpList: { ID: 122, CN: "水泵列表", TR: "List" },
        spectrumList: { ID: 6, CN: "系列型谱", TR: "Spectrum" },
        modelDrawing: { ID: 182, CN: "实物图", TR: "Model Drawing" },
        seriesDescription: { ID: 144, CN: "系列说明", TR: "Series Description" },
        seriesDocuments: { ID: 693, CN: "系列文档", TR: "Series Documents" },
        video: { ID: 694, CN: "详情视频", TR: "Video" },
        model_3D: { ID: 131, CN: "三维模型", TR: "3D Model" },
        export: { ID: 276, CN: "导出", TR: "Export" },
        no: { ID: 695, CN: "序号", TR: "NO" },
        flow: { ID: 48, CN: "流量", TR: "Flow" },
        head: { ID: 49, CN: "扬程", TR: "Head" },
        catalog: { ID: "", CN: "类型", TR: "By Catalog" },
 
        selectIndustry: { ID: "", CN: "选择行业", TR: "Select industry" },
        allSeries: { ID: "", CN: "所有系列", TR: "All series" },
 
        screen:{ ID: "", CN: "筛选", TR: "Screen" },
        motorFrequency:{ ID: "", CN: "电机频率", TR: "Motor frequency" },
        search:{ ID: "", CN: "搜索", TR: "Search" },
    },
    selectPage: {
        selparas: { ID: 5, CN: "参数选型", TR: "Parameter Selection" },
        selResult: { ID: 2361, CN: "选型结果", TR: "Selection results" },
        index: { ID: 1437, CN: "首页", TR: "Home page" },
        selRow: { ID: 736, CN: "列选择", TR: "Column selection" },
        export: { ID: 276, CN: "导出", TR: "Export" },
        print: { ID: 192, CN: "打印", TR: "Print" },
        previous: { ID: 367, CN: "上一步", TR: "Previous step" },
        physical: { ID: 184, CN: "实物图", TR: "Model Drawing" },
        series: { ID: 253, CN: "系列", TR: "Series" },
        model: { ID: 100, CN: "型号", TR: "Model" },
        diagram: { ID: 781, CN: "曲线图", TR: "Curve graph" },
        flow: { ID: 48, CN: "流量", TR: "Flow" },
        head: { ID: 49, CN: "扬程", TR: "Head" },
        shaftPower: { ID: 109, CN: "轴功率", TR: "Shaft Power" },
        efficiency: { ID: 108, CN: "效率", TR: "Efficiency" },
        npsh: { ID: 110, CN: "汽蚀", TR: "NPSH" },
        speed: { ID: 114, CN: "转速", TR: "Speed" },
        impellerDiameter: { ID: 223, CN: "叶轮直径", TR: "Impeller Diameter" },
        details: { ID: 999, CN: "详情", TR: "Detail" },
 
        gotoIndexPage: { ID: 0, CN: "返回首页", TR: "Back to home" },
        quickSelection: { ID: 2362, CN: "快速选型", TR: "Quick selection" },
        advancedSelection: { ID: 2363, CN: "高级选型", TR: "Advanced selection" },
        workingConditions: { ID: 2364, CN: "工况条件", TR: "Operating conditions" },
        productSeries: { ID: 2365, CN: "产品系列", TR: "Product series" },
        driveType: { ID: 2366, CN: "驱动类型", TR: "Drive type" },
        setFrequency: { ID: 2367, CN: "设置频率", TR: "Set frequency" },
        moreDesignPoints: { ID: 1429, CN: "更多设计点", TR: "More design points" },
        hide: { ID: 2368, CN: "隐藏", TR: "hide" },
        secondDpFlow: { ID: 2369, CN: "第二设计点流量", TR: "Second design point flow" },
        secondDpHead: { ID: 2370, CN: "第二设计点扬程", TR: "Second design point head" },
        thirdDpFlow: { ID: 2371, CN: "第三设计点流量", TR: "Third design point flow" },
        thirdDpHead: { ID: 2372, CN: "第三设计点扬程", TR: "Third design point head" },
        firePump: { ID: 2332, CN: "消防泵", TR: "Fire pump" },
        motorPoleNum: { ID: 2373, CN: "电机级数", TR: "Motor series" },
        moreSet: { ID: 2374, CN: "更多设置", TR: "More settings" },
        put: { ID: 2375, CN: "收起", TR: "Put away" },
        motorPowerStd: { ID: 2376, CN: "电机功率标准", TR: "Motor power standard" },
        mediaName: { ID: 2377, CN: "介质名称", TR: "Media name" },
        cleanWater: { ID: 465, CN: "清水", TR: "Clean Water" },
        maxTemperature: { ID: 2378, CN: "最高温度", TR: "maximum temperature" },
        customMediaProp: { ID: 2379, CN: "自定义介质属性", TR: "Custom media properties" },
        maxDensity: { ID: 2370, CN: "最大密度", TR: "Maximum density" },
        mediumViscosity: { ID: 2381, CN: "介质粘度", TR: "Medium viscosity" },
        nextStep: { ID: 368, CN: "下一步", TR: "Next" },
        selectAll: { ID: 97, CN: "全选", TR: "Select All" },
        reselect: { ID: 366, CN: "重选", TR: "Reselect" },
        modelList: { ID: 443, CN: "型号列表", TR: "Model List" },
        byType: { ID: 2382, CN: "按类型", TR: "By type" },
        byIndustry: { ID: 2383, CN: "按行业", TR: "By industry" },
        byMedia: { ID: "", CN: "按介质", TR: "By media" },
        type: { ID: 247, CN: "类型", TR: "Type" },
        applicationArea: { ID: 2384, CN: "应用领域", TR: "Application area" },
        flowRule: { ID: 2143, CN: "请输入流量", TR: "Please input flow" },
        headRule: { ID: 1164, CN: "请输入扬程", TR: "Please enter the head" },
        seriesRule: { ID: 2387, CN: "至少选择一个系列", TR: "Select at least one series" },
        hangyeRule: { ID: "", CN: "至少选择一个行业", TR: "Select at least one industry" },
        jiezhiRule: { ID: "", CN: "至少选择一种介质", TR: "Select at least one media" },
        dieselEngineSpeedRule: { ID: 2386, CN: "请输入柴油机转速", TR: "Please enter the diesel engine speed" },
        dieselEngineSpeed: { ID: 2385, CN: "柴油机转速", TR: "Diesel engine speed" },
 
        pleaseSelect: { ID: 2042, CN: "请选择", TR: "Please select" },
 
        custom:{ ID: "", CN: "自定义", TR: "custom" },
        unlimited:{ ID: "", CN: "不限", TR: "unlimited" },
 
        drivingConditions:{ ID: "", CN: "驱动条件", TR: "Driving conditions" },
        toleranceRange:{ ID: "", CN: "容差范围", TR: "Tolerance range" },
        toleranceStand:{ ID: "", CN: "验收容差标准", TR: "Acceptance tolerance criteria" },
        toleranceGrade:{ ID: "", CN: "验收容差等级", TR: "Acceptance tolerance level" },
        MinFlowPercentage:{ ID: "", CN: "最小流量百分比", TR: "Minimum flow percentage"},
        MaxFlowPercentage:{ ID: "", CN: "最大流量百分比", TR: "Maximum flow percentage"},
        MinHeadPercentage:{ ID: "", CN: "最小扬程百分比", TR: "Minimum head percentage"},
        MaxHeadPercentage:{ ID: "", CN: "最大扬程百分比", TR: "Maximum head percentage"},
 
        seriesTips:{ ID: "", CN: "请选择合适的产品", TR: "Please choose the right product"},
        seriesRangTips:{ ID: "", CN: "请选择合适的产品系列", TR: "Please select the appropriate product line"},
        seriesRange:{ ID: "", CN: "系列范围", TR: "Range of series"},
        custom:{ ID: "", CN: "自定义", TR: "custom"},
    },
    //详情页面
    detailPage: {
        report: { ID: 702, CN: "报告", TR: "Report" },
        share: { ID: 703, CN: "分享", TR: "Share" },
        costAnalysis: { ID: 571, CN: "成本分析", TR: "Cost Analysis" },
        medium: { ID: 1434, CN: "介质", TR: "Medium" },
        model_3D: { ID: 131, CN: "三维模型", TR: "3D Model" },
        scanQRShare: { ID: 2399, CN: "扫描二维码分享", TR: "Scan QR code sharing" },
        view: { ID: 250, CN: "查询", TR: "View" },
 
        close: { ID: 460, CN: "关闭", TR: "Close" },
        setUp: { ID: 470, CN: "设定", TR: "Set Up" },
        flowUnits: { ID: 2134, CN: "流量单位", TR: "Flow Units" },
        headUnit: { ID: 2135, CN: "扬程单位", TR: "Head Unit" },
        powerUnit: { ID: 2400, CN: "功率单位", TR: "Power Unit" },
        exitFull: { ID: 2401, CN: "退出全屏", TR: "Exit Full" },
        partNo: { ID: 158, CN: "产品编号", TR: "Part No" },
        materialGroup: { ID: 1712, CN: "材料组", TR: "Material Group" },
        material: { ID: 1215, CN: "材料", TR: "Material" },
 
        selectionReport: { ID: 236, CN: "选型报告", TR: "Selection Report" },
        lang: { ID: 451, CN: "语言", TR: "Language" },
        fileFormat: { ID: 1532, CN: "文件格式", TR: "File Format" },
        buildFile: { ID: 2388, CN: "生成文件", TR: "Bulid File" },
        customerInfo: { ID: 795, CN: "客户信息", TR: "Customer Info" },
        orderInformation: { ID: 884, CN: "订单信息", TR: "Order Information" },
        setReportContent: { ID: 889, CN: "设置报告内容", TR: "Set report content" },
        projectInformation: { ID: 89, CN: "项目信息", TR: "Project Information" },
        productName: { ID: 881, CN: "产品名称", TR: "Product name" },
        projectCode: { ID: 1027, CN: "项目编号", TR: "Project Code" },
        projectName: { ID: 800, CN: "项目名称", TR: "Project name" },
        itemNO: { ID: 801, CN: "工位编号", TR: "Item NO" },
        customerInfo: { ID: 795, CN: "客户信息", TR: "Customer Info" },
        customerName: { ID: 883, CN: "客户名称", TR: "Customer Name" },
        customerAddress: { ID: 968, CN: "客户地址", TR: "Customer Address" },
        contactPerson: { ID: 766, CN: "联系人", TR: "Contact Person" },
        contactInformation: { ID: 35, CN: "联系方式", TR: "Contact Information" },
        email: { ID: 1801, CN: "邮箱", TR: "Email" },
        website: { ID: 1082, CN: "网址", TR: "Website" },
        country: { ID: 1083, CN: "国家", TR: "Country" },
        orderInformation: { ID: 1798, CN: "订单信息", TR: "Order Information" },
        price: { ID: 886, CN: "产品单价", TR: "Order Information" },
        pumpPeformance: { ID: 1796, CN: "订单号", TR: "Pump Peformance" },
        purchaseQuantity: { ID: 888, CN: "购买数量", TR: "Purchase Quantity" },
        orderNote: { ID: 885, CN: "订单备注", TR: "Order Note" },
        pageReportSet: { ID: 2397, CN: "页面报告设置", TR: "Page report settings" },
        isBWDispplay: { ID: 820, CN: "是否黑白显示曲线", TR: "Black and white display" },
        dataAndCurve: { ID: 817, CN: "数据表和曲线", TR: "The data sheet and performance curve" },
        curveGraph: { ID: 781, CN: "曲线图", TR: "Curve graph" },
        sizePicture: { ID: 705, CN: "尺寸图", TR: "Size Picture" },
        assemblyDrawing: { ID: 133, CN: "安装图", TR: "Assembly Drawing" },
        modelDrawing: { ID: 182, CN: "实物图", TR: "Model Drawing" },
        modelDrawinUnit: { ID: 2398, CN: "实物图(机组)", TR: "Model Drawing(unit)" },
        structureDrawing: { ID: 184, CN: "结构图", TR: "Structure Drawing" },
        offerText: { ID: 814, CN: "报价文本", TR: "Offer Text" },
        companyName: { ID: 1011, CN: "公司抬头", TR: "Company Name" },
        companyWebsite: { ID: 1799, CN: "公司网址", TR: "Company Website" },
        performanceCurve: { ID: 217, CN: "性能曲线", TR: "Performance Curve" },
        assemblyDrawingPart: { ID: 2389, CN: "安装图(单泵)", TR: "Assembly Drawing(single Pump)" },
        assemblyDrawingSys: { ID: 2390, CN: "安装图(机组)", TR: "Assembly Drawing(unit)" },
        physical: { ID: 184, CN: "实物图", TR: "Model Drawing" },
        parameter: { ID: 111, CN: "参数", TR: "Parameter" },
        data: { ID: 2056, CN: "数据", TR: "Data" },
        unit: { ID: 527, CN: "单位", TR: "Unit" },
        operatingParameters: { ID: 2157, CN: "运行参数", TR: "Operating parameters" },
        parameterQuery: { ID: 2391, CN: "参数查询", TR: "Parameter Query" },
        installation: { ID: 2201, CN: "安装信息", TR: "Installation" },
        motor: { ID: 2202, CN: "电机信息", TR: "Motor" },
        documents: { ID: 693, CN: "系列文档", TR: "Documents" },
        properties: { ID: 229, CN: "属性", TR: "Properties" },
        material: { ID: 2170, CN: "材质", TR: "Material" },
        flow: { ID: 48, CN: "流量", TR: "Flow" },
        head: { ID: 49, CN: "扬程", TR: "Head" },
        shaftPower: { ID: 109, CN: "轴功率", TR: "Shaft Power" },
        efficiency: { ID: 108, CN: "效率", TR: "Efficiency" },
        npsh: { ID: 110, CN: "汽蚀", TR: "NPSH" },
        speed: { ID: 114, CN: "转速", TR: "Speed" },
        coefficient: { ID: 1143, CN: "系数", TR: "Coefficient" },
        parameterSelection: { ID: 5, CN: "参数选型", TR: "Parameter Selection" },
        allowableRegionMax: { ID: 2392, CN: "允许区域(大)", TR: "Allowable Region(max)" },
        allowableRegionMin: { ID: 2393, CN: "允许区域(小)", TR: "Allowable Region(min)" },
        optimalAreaMax: { ID: 2394, CN: "最优区域(大)", TR: "Optimal Area(max)" },
        optimalAreaMin: { ID: 2395, CN: "最优区域(小)", TR: "Optimal Area(min)" },
        closeDeadCenter: { ID: 2396, CN: "关死点", TR: "Close Dead Center" },
        bestAdvantage: { ID: 2402, CN: "最优点", TR: "Best Advantage" },
        workingPoint: { ID: "", CN: "工作点", TR: " Working Point" },
        flowPoint150: { ID: 2403, CN: "流量150%点", TR: "Flow 150% point" },
        powerPointMax: { ID: 2404, CN: "最大功率点", TR: "Maximum Power Point" },
        video: { ID: 694, CN: "系列视频", TR: "Series Video" },
 
        variableSpeedCurve: { ID: "", CN: "变速曲线", TR: "Variable speed curve" },
        displaySettings: { ID: "", CN: "显示设置", TR: "Display settings" },
        curveExport: { ID: "", CN: "曲线导出", TR: "Curve export" },
 
        chartColor: { ID: "", CN: "图表颜色", TR: "Chart color" },
        monochrome: { ID: "", CN: "单色", TR: "monochrome" },
        multicolour: { ID: "", CN: "彩色", TR: "multicolour" },
        spectrumDisplay: { ID: "", CN: "型谱显示", TR: "spectrum display" },
        display: { ID: "", CN: "显示", TR: "display" },
        noDisplay: { ID: "", CN: "不显示", TR: "no display" },
        onlyShowworkCurve: { ID: "", CN: "仅显示工作曲线", TR: "show only working curves" },
 
        speedList: { ID: "", CN: "速度列表", TR: "Speed list" },
        addSpeed: { ID: "", CN: "添加速度", TR: "add speed" },
        pleaseEnterSpeed: { ID: "", CN: "请输入转速", TR: "Please enter the speed" },
        tip: { ID: "", CN: "提示", TR: "tip" },
        define: { ID: "", CN: "确定", TR: "ok" },
        cancel: { ID: "", CN: "取消", TR: "cancel" },
        download: { ID: "", CN: "下载", TR: "download" },
        downloadTips: { ID: "", CN: "请下载桌面程序,导出性能曲线", TR: "Please download the desktop program and export the performance curve" },
 
        curve:{ ID: "", CN: "曲线", TR: "Curve" },
        document:{ ID: "", CN: "文档", TR: "Document" },
        DocumentNone:{ ID: "", CN: "文档(无)", TR: "Document (none)" },
        Model:{ ID: "", CN: "模型", TR: "Model" },
 
        queryPoint:{ ID: "", CN: "查询点", TR: "Query point" },
        productNoSelect:{ ID: "", CN: "产品编号选择", TR: "ProductNoSelect" },
 
    },
    //报表分析
    LCC: {
        Analysis: { ID: "", CN: "分析", TR: "Analysis" },
        accumulationCurve: { ID: "", CN: "年度累计曲线", TR: "Annual Accumulation Curve" },
        statisticalChart: { ID: "", CN: "单年统计图", TR: "Statistical Chart of Year" },
        workingPointFlow: { ID: "", CN: "工作点流量", TR: "working point flow" },
        default: { ID: "", CN: "默认", TR: "default" },
 
        heating: { ID: "", CN: "供暖", TR: "heating" },
        pressurize: { ID: "", CN: "增压", TR: "pressurize" },
        custom: { ID: "", CN: "自定义", TR: "custom" },
        status: { ID: "", CN: "状态", TR: "status" },
        flowRatio: { ID: "", CN: "流量比例", TR: "flow ratio" },
        timeScale: { ID: "", CN: "时间比例", TR: "time scale" },
        fullLoad: { ID: "", CN: "全负荷", TR: "full load" },
        partialLoad: { ID: "", CN: "部分负荷", TR: "partial load" },
        nightCoolingOperation: { ID: "", CN: "夜间降温运行", TR: "night cooling operation" },
        lowLoad: { ID: "", CN: "低负荷", TR: "low load" },
        load: { ID: "", CN: "负荷", TR: "load" },
 
        energyCosts: { ID: "", CN: "能耗成本", TR: "energy costs" },
        workingDays: { ID: "", CN: "每年大致工作天数", TR: "working days" },
        workingHours: { ID: "", CN: "每年大致工作小时", TR: "working hours" },
        powerFees: { ID: "567", CN: "电费", TR: "Electricity fees" },
        per: { ID: "", CN: "每度", TR: "per" },
        risiPowerPrice: { ID: "", CN: "电费上涨", TR: "risi power price" },
        eachYear: { ID: "", CN: "每年", TR: "each year" },
        CalcCycle: { ID: "", CN: "计算周期", TR: "calculation cycle" },
        year: { ID: "", CN: "年", TR: "Year" },
        interestRate: { ID: "", CN: "利率", TR: "interest rate" },
        droop: { ID: "", CN: "效率下降", TR: "efficiency droop" },
        co2Ratio: { ID: "", CN: "CO2系数", TR: "CO2 ratio" },
        conversionFactor: { ID: "", CN: "煤炭折算系数", TR: "conversion factor" },
 
        maintenanceCost: { ID: "", CN: "维护维修成本", TR: "maintenance cost" },
        thousand: { ID: "", CN: "千元", TR: "thousand" },
        maintenance: { ID: "", CN: "维护和维修", TR: "maintenance" },
        runningCost: { ID: "542", CN: "运行费用", TR: "operating cost" },
        downtimeAndLoss: { ID: "540", CN: "生产停工和损耗", TR: "downtime and loss" },
 
        environmentalFee: { ID: "541", CN: "环境保护费", TR: "environmental fee" },
        othersFee: { ID: "792", CN: "其他年费用", TR: "other years expenses" },
        initialCost: { ID: "", CN: "一次性初始成本", TR: "disposable initial cost" },
        orderCost: { ID: "", CN: "设备采购费用", TR: "order cost" },
        installDebugCharge: { ID: "", CN: "安装和调试", TR: "install debug charge" },
        tonAndkW: { ID: "", CN: "吨/万千瓦", TR: "ton / 10000 kw" },
 
        mapOfCosts: { ID: "941", CN: "费用图", TR: "Map of costs" },
        costItem: { ID: "945", CN: "费用项", TR: "Cost item" },
        cost: { ID: "946", CN: "费用", TR: "Cost" },
        percentage: { ID: "947", CN: "百分比", TR: "Percentage" },
 
        initialCost: { ID: "662", CN: "初期成本", TR: "Initial cost" },
        maintenanceAndRepair: { ID: "543", CN: "维修和护理", TR: "Maintenance and repair" },
        co2: { ID: "945", CN: "CO2", TR: "CO2" },
        coalConsumption: { ID: "", CN: "煤耗量", TR: "Coal consumption" },
 
        totalAnnualCost: { ID: "958", CN: "年总费用", TR: "Total annual cost" },
        co2TotalEmissions: { ID: "", CN: "co2总排放量", TR: "CO2 total emissions" },
        tenThousand: { ID: "", CN: "万", TR: "Ten thousand" },
        tenThousandTon: { ID: "", CN: "万吨", TR: "Ten thousand Ton" },
 
 
 
    },
    //首页
    indexPage: {
        corpIntroduction: { ID: 30, CN: "公司介绍", TR: "Company Introduction" },
        enterpriseHonors: { ID: 33, CN: "企业荣誉", TR: "Enterprise Honors" },
        enterpriseStyle: { ID: 2329, CN: "企业风貌", TR: "Enterprise style" },
        salesNetwork: { ID: 31, CN: "销售网络", TR: "Sales Network" },
        performanceSelection: { ID: 2330, CN: "水力性能选型", TR: "Hydraulic performance selection" },
        productSearch: { ID: 786, CN: "产品搜索", TR: "Product search" },
        contactinformation: { ID: 35, CN: "联系方式", TR: "Contact information" },
        ebook: { ID: 1, CN: "电子样本", TR: "Product Book" },
        pdfFile: { ID: 1755, CN: "纸质样本", TR: "Pdf File" },
        application: { ID: 2331, CN: "应用", TR: 'Application' },
        intelligentSelection: { ID: 69, CN: "智能选型", TR: "Pump Selection" },
        firePump: { ID: 2332, CN: "消防泵", TR: "Fire pump" },
        flow: { ID: 48, CN: "流量", TR: "Flow" },
        head: { ID: 49, CN: "扬程", TR: "Head" },
        type: { ID: 247, CN: "类型", TR: "Type" },
        more: { ID: 741, CN: "更多", TR: "More" },
        nextStep: { ID: 369, CN: "下一步", TR: "Next" },
        zmSearch: { ID: "", CN: "按字母", TR: "By alphabet" },
        byType: { ID: 2382, CN: "按类型", TR: "By type" },
        byIndustry: { ID: 2383, CN: "按行业", TR: "By industry" },
        model_3D: { ID: 131, TR: "BIM Model" },
        about_us: { ID: "", CN: "关于我们", TR: "About US" },
        product_catalog: { ID: "", CN: "产品目录", TR: "Product Catalog" },
        product_selection: { ID: "", CN: "产品选型", TR: "Product Selection" },
        letter_search: { ID: "", CN: "字母搜索", TR: "Letter Search" },
        application_area: { ID: "", CN: "应用领域", TR: "Application Area" },
        sample_Model: { ID: "", CN: "样本模型", TR: "Sample Model" },
        pleaseSelect: { ID: "", CN: "请选择", TR: "Please Select" },
 
 
 
        enterpriseVision:{ID:"",CN:"企业愿景",TR:"Enterprise Vision"}, 
        coreValues:{ID:"",CN:"核心价值观",TR:"Core Values"},
        managementIdea:{ID:"",CN:"经营理念",TR:"Management Idea"},
        productSeries:{ID:"",CN:"产品系列",TR:"Product Series"},
        enterpriseInformation:{ID:"",CN:"企业信息",TR:"Corp Information"},
        pipelineLoss:{ID:"",CN:"管路损失",TR:"Pipeline Loss"},
        clearCache:{ID:"",CN:"清除缓存",TR:"Clear cache"},
        myCollection:{ID:"",CN:"我的收藏",TR:"My collection"},
        compareList: { ID: '', CN: "比较列表", TR: "CompareList" },
        lang: { ID: 451, CN: "语言", TR: "Language" },
        cn: { ID: 721, CN: "中文", TR: "Chinese" },
        en: { ID: 297, CN: "英文", TR: "English" },
        about: { ID: "", CN: "关于", TR: "About" },
        developers: { ID: "", CN: "软件开发商", TR: "Developers" },
        privacyStatement: { ID: "", CN: "隐私声明", TR: "Privacy statement" },
        userAgreement: { ID: "", CN: "用户协议", TR: "User agreement" },
        changePassword: { ID: "", CN: "修改密码", TR: "Change Password" },
        LogOut: { ID: "", CN: "退出登录", TR: "Log out" },
        currentVersion: { ID: "", CN: "当前版本", TR: "Current version" },
        top:{ ID: "", CN: "顶部", TR: "Top" },
    },
    pipeLoss:{
        back:{ ID: "", CN: "返回", TR: "back" },
        selparas: { ID: 5, CN: "参数选型", TR: "Parameter Selection" },
        previous: { ID: 367, CN: "上一步", TR: "Previous step" },
        nextStep: { ID: 368, CN: "下一步", TR: "Next" },
        flowRule: { ID: 2143, CN: "请输入流量", TR: "Please input flow" },
        flow: { ID: 48, CN: "流量", TR: "Flow" },
        head: { ID: 49, CN: "扬程", TR: "Head" },
        medium: { ID: 1434, CN: "介质", TR: "Medium" },
        mediaRule:{ ID: "", CN: "请输入介质", TR: "Please enter media" },
        selectType:{ ID: "", CN: "所选类型", TR: "Selected type" },
        selectTypeRule:{ ID: "", CN: "请选择类型", TR: "Please select type" },
        pipeWallThicknessNo:{ ID: "", CN: "管壁厚度号", TR: "Pipe wall thickness No" },
        inletPipe:{ ID: "", CN: "进水管", TR: "Inlet pipe" },
        drainagePipe:{ ID: "", CN: "排水管", TR: "Drainage pipe" },
        RCOIP:{ ID: "", CN: "进水管阻力系数", TR: "Resistance coefficient of inlet pipe" },
        DPRC:{ ID: "", CN: "排水管阻力系数", TR: "Drainage pipe resistance coefficient" },
        suctionconfig:{ ID: "", CN: "吸入配置", TR: "Suction config" },
        atmospheric:{ ID: "", CN: "大气压", TR: "Atmospheric" },
        WTSP:{ ID: "", CN: "水塔表面压力", TR: "Water tower surface pressure" },
        waterAbsorptionHeight:{ ID: "", CN: "吸水高度", TR: "Water absorption height" },
        PipelineLength:{ ID: "", CN: "管路长度", TR: "Pipeline length" },
        entrance:{ ID: "", CN: "入口", TR: "entrance" },
        export:{ ID: "", CN: "出口", TR: "Export" },
        elbow_90:{ ID: "", CN: "90°弯头", TR: "90 ° elbow" },
        ballValve:{ ID: "", CN: "球阀", TR: "ball valve" },
        butterflyValve:{ ID: "", CN: "蝶阀", TR: "butterfly valve" },
        gateValve:{ ID: "", CN: "闸阀", TR: "Gate valve" },
        globeValve:{ ID: "", CN: "截止阀", TR: "Globe valve" },
        plugValve:{ ID: "", CN: "旋塞阀", TR: "Plug valve" },
        liftCheckValve:{ ID: "", CN: "升降式止回阀", TR: "Lift check valve" },
        stopCheckValve:{ ID: "", CN: "截止止回阀", TR: "Stop check valve" },
        swingCheckValve:{ ID: "", CN: "旋启式止回阀", TR: "Swing check valve" },
        dischargeConfig:{ ID: "", CN: "排出配置", TR: "Discharge config" },
        staticDischargeHead:{ ID: "", CN: "静排出扬程", TR: "Static discharge head" },
        calcResults:{ ID: "", CN: "计算结果", TR: "Calculation results" },
        designPoint:{ ID: "", CN: "设计点", TR: "Design point" },
        pipeSize:{ ID: "", CN: "管路尺寸", TR: "Pipe size" },
        localLoss:{ ID: "", CN: "局部损失", TR: "Local loss" },      
        LATWIP:{ ID: "", CN: "进水管路沿程损失", TR: "Loss along the water inlet pipeline" },  
        LATWOP:{ ID: "", CN: "出水管路沿程损失", TR: "Loss along the water outlet pipeline" }, 
        FCOIP:{ ID: "", CN: "进水管路摩擦系数", TR: "Friction coefficient of inlet pipeline" }, 
        FCOOP:{ ID: "", CN: "出水管路摩擦系数", TR: "Friction coefficient of outlet pipeline" }, 
        pipe:{ ID: "", CN: "管路", TR: "Pipe" }, 
        materialsAndStandards:{ ID: "", CN: "材料及标准", TR: "Materials and standards" },
        withSuctionHead:{ ID: "", CN: "有吸水扬程", TR: "With suction head" },
        suctionSystem:{ ID: "", CN: "抽吸系统", TR: "Suction system" },
        divingSystem:{ ID: "", CN: "潜水系统", TR: "Diving system" },
        circulatorySystem:{ ID: "", CN: "循环系统", TR: "circulatory system" },
        simpleCalculation:{ ID: "", CN: "简易计算", TR: "Simple calculation" },
 
        liquidHeight:{ ID: "", CN: "液面高度", TR: "Liquid height" },
        fluidName:{ ID: "", CN: "流体名称", TR: "Fluid name" },
        pipeDiameter:{ ID: "", CN: "管道直径", TR: "Pipe diameter" },
        totalPipeLength:{ ID: "", CN: "管道总长", TR: "Total pipe length" },
        viscosity:{ ID: "", CN: "粘度", TR: "viscosity" },
        proportion:{ ID: "", CN: "比重", TR: "proportion" },
        altitude:{ ID: "", CN: "高程", TR: "altitude" },
        pressureDrop :{ ID: "", CN: "计算压力降为", TR: "Pressure drop" },
        calc:{ ID: "", CN: "计算", TR: "Calc" },
        bend_90:{ ID: "", CN: "90°弯管", TR: "90 ° bend" },
        bend_45:{ ID: "", CN: "45°弯管", TR: "45 ° bend" },
        threeWayBranches:{ ID: "", CN: "三通分流数", TR: "three-way branches" },
        numberOfTeeLines:{ ID: "", CN: "三通线流数", TR: "Number of tee lines" },
        angleValves:{ ID: "", CN: "角阀", TR: "angle valves" },
        checkValve:{ ID: "", CN: "止回阀", TR: "check valve" },
        pcs:{ ID: "", CN: "只", TR: "PCS" },
        returnPipe:{ ID: "", CN: "回水管", TR: "Return pipe" },
        load:{ ID: "", CN: "载荷", TR: "load" },
        staticSuctionHead:{ ID: "", CN: "静吸入扬程", TR: "Static suction head" },
 
        flowRule: { ID: 2143, CN: "请输入流量", TR: "Please input flow" },
        stbmylRule:{ ID: "", CN: "请输入水塔表面压力", TR: "Please enter the surface pressure of water tower" },
        xsgdRule:{ ID: "", CN: "请输入吸水高度", TR: "Please enter the suction height" },
        pipeLength:{ ID: "", CN: "请输入管路长度", TR: "Please enter the pipe length" },
        
 
    },
    simpleLoginPage: {
        login: { ID: 681, CN: "登录", TR: "Login" },
        register: { ID: 381, CN: "注册", TR: "Register" },
        enterVerificCode: { ID: "", CN: "请输入验证码", TR: "Please enter the verification code" },
        verificCodeError: { ID: "", CN: "验证码错误", TR: "Verification code error" },
        loginPrompt: { ID: "", CN: "登录提示", TR: "Login Prompt" },
        passwordError: { ID: "", CN: "密码错误", TR: " Password Error" },
        loginSuccessful: { ID: "", CN: "登录成功", TR: "Login succeeded" },
        AccountLogin: { ID: 383, CN: "账户登录", TR: "User login" },
        CodeScanningLogin: { ID: 2333, CN: "扫码登录", TR: "Code scanning login" },
        registerInfo: { ID: 2334, CN: "如果您还没有加入我们,可以点击下方的注册成为我们的一员", TR: "If you haven't joined us yet, you can click the registration below to become a member of us" },
        registerInfoTitle: { ID: 2335, CN: "新用户", TR: "New user" },
        loginInfo: { ID: 2336, CN: "如果您已经是我们中的一员可以点击下方的登录,进入到我们的平台", TR: "If you are already one of us, you can click the login below to enter our platform" },
        loginInfoTitle: { ID: 2337, CN: "我们中的一员", TR: "One of us" },
        userType: { ID: 2338, CN: "用户类型", TR: "Type" },
        loginName: { ID: 2339, CN: "账户名", TR: "Account" },
        password: { ID: 379, CN: "密码", TR: "Password" },
        userType0: { ID: 710, CN: "内部人员", TR: "Internal staff" },
        userType1: { ID: 2340, CN: "外部人员", TR: "External personnel" },
        phoneNumber: { ID: "", TR: "Tel" },
        formValidate: {
            email0: { ID: 780, CN: "请输入邮箱", TR: "Input Email" },
            email1: { ID: 2341, CN: "请输入正确的邮箱格式", TR: "Please enter the correct email format" },
            TelPhone0: { ID: 2342, CN: "请输入手机号码", TR: "Please enter your mobile phone number" },
            TelPhone1: { ID: 2343, CN: "请输入正确的手机号码格式", TR: "Please enter the correct mobile phone number format" },
            pass0: { ID: 2344, CN: "请输入密码", TR: "Please input a password" },
            pass1: { ID: 2345, CN: "请输入密码长度为6~18位", TR: "Please enter a password with a length of 6 ~ 18 digits" },
            pass2: { ID: 2346, CN: "请再次输入密码", TR: "Please enter the password again" },
            pass3: { ID: 2347, CN: "两次密码输入不一样", TR: "The two passwords are different" },
            loginName0: { ID: 2348, CN: "请输入登录名", TR: "Please enter login name" },
            loginName1: { ID: 2349, CN: "请输入登录名长度为6~18位", TR: "Please enter a login with a length of 6 ~ 18 characters" },
            userName0: { ID: 2350, CN: "请输入用户姓名", TR: "Please enter user name" },
            corpName0: { ID: 2351, CN: "请输入公司名称", TR: "Please enter company name" },
            corpAddress0:{ ID:"", CN: "请输入公司地址", TR: "Please enter the company address" },
        },
        forgetPassword:{ ID: "", CN: "忘记密码", TR: "Forget password" },
        sendSuccess:{ ID: "", CN: "发送成功", TR: "Send success" },
        verifyAccount:{ ID: "", CN: "账号验证", TR: "Verify account" },
        fillInInformation:{ ID: "", CN: "填写信息", TR: "Fill in information" },
        registerSuccess:{ ID: "", CN: "注册成功", TR: "Register success" },
 
        verifyCode:{ ID: "", CN: "验证码", TR: "verifyCode" },
        send:{ ID: "", CN: "发送", TR: "send" },
        userAccount:{ ID: "", CN: "用户账号", TR: "User account" },
 
        oldPassword:{ ID: "", CN: "旧密码", TR: "Old password" },
        oldPsdTips:{ID: "", CN: "请输入旧密码", TR: "Please enter old password"},
        newPassword:{ ID: "", CN: "新密码", TR: "New password" },
        newPsdTips:{ID: "", CN: "请输入新密码", TR: "Please enter new password"},
        oldPwdRule:{ID: "", CN: "旧密码不能为空", TR: "Old password cannot be empty"},
        newPwdRule:{ID: "", CN: "新密码不能为空", TR: "New password cannot be empty"},
        oldAndNewPwdRule:{ID: "", CN: "新旧密码不能一致", TR: "Old and new passwords cannot be consistent"},
        changeSuccess:{ID: "", CN: "修改成功", TR: "Modified successfully"},
 
        confirmPassword:{ID: "", CN: "确认密码", TR: "Confirm password"},
        pwdRule:{ID: "", CN: "密码不一致", TR: "Inconsistent passwords"},
        userName:{ID: "", CN: "真实姓名", TR: "Real name"},
        corpName: { ID: "", CN: "公司名称", TR: "CorpName" },
        companyAddress: { ID: "", CN: "公司地址", TR: "Company address" },
        email: { ID: "", CN: "邮箱", TR: "E-mail" },
        welcomeLogin:{ ID: "", CN: "注册成功,欢迎登录", TR: "Registration succeeded. Welcome to login" },
        returnLogin:{ ID: "", CN: "返回登录", TR: "Return to login" },
    },
    // 头部header栏
    header: {
        serieslist: { ID: 1, CN: "电子样本", TR: "Product Book" },
        selparas: { ID: 5, CN: "参数选型", TR: "Parameter Selection" },
        lang: { ID: 451, CN: "语言", TR: "Language" },
        cn: { ID: 721, CN: "中文", TR: "Chinese" },
        en: { ID: 297, CN: "英文", TR: "English" },
        es: { ID: 2405, CN: "西班牙文", TR: "Spanish" },
        russian: { ID: 303, CN: "俄文", TR: "Russian" },
        Applications: { ID: 2352, CN: "其他应用", TR: "Other applications" },
        danji: { ID: 2353, CN: "单机版", TR: "Stand alone" },
        android: { ID: 2354, CN: "安卓", TR: "Android" },
        ios: { ID: 2355, CN: "苹果", TR: "IOS" },
        wechat: { ID: 2356, CN: "微信", TR: "Wechat" },
        userInfo: { ID: 23, CN: "账户信息", TR: "Information" },
        logout: { ID: 714, CN: "退出登录", TR: "Exit" },
        collectList: { ID: '', CN: "收藏列表", TR: "CollectList" },
        compareList: { ID: '', CN: "比较列表", TR: "CompareList" },
        collect: { ID: '', CN: "收藏", TR: "Collect" },
        addCollect: { ID: '', CN: "加入收藏", TR: "AddCollect" },
        deleteCollect: { ID: '', CN: "清除收藏", TR: "DeleteCollect" },
        compare: { ID: '', CN: "比较", TR: "Compare" },
        addCompare: { ID: '', CN: "加入比较", TR: "AddCompare" },
        deleteCompare: { ID: '', CN: "清除比较", TR: "DeleteCompare" },
 
        comparisonAdded: { ID: "", CN: "已经加入比较列表", TR: "comparison added list" },
        addComparSueecss: { ID: "", CN: "加入比较列表成功", TR: "successfully added to the comparison list" },
        clearComparList: { ID: "", CN: "确认清除比较列表", TR: "confirm to clear the comparison list" },
        clearComparSuccess: { ID: "", CN: "清除比较列表成功", TR: "the comparison list was cleared successfully" },
        confirmDelCompar: { ID: "", CN: "确认删除此型号的比较", TR: "confirm to delete the comparison of this model" },
        deleteSuccess: { ID: "", CN: "删除成功", TR: "deleted successfully" },
        confirmDelCollect: { ID: "", CN: "确认删除此收藏", TR: "are you sure you want to delete this collection" },
        confirmClearCollect: { ID: "", CN: "确认清除收藏", TR: "confirm to clear the collection" },
        clearCollectSueecss: { ID: "", CN: "清除成功", TR: "Cleared successfully" },
        collecExists: { ID: "", CN: "收藏已存在", TR: "collection already exists" },
        collectSuccess: { ID: "", CN: "收藏成功", TR: "collection success" },
 
        login: { ID: 681, CN: "登录", TR: "Login" },
        information: { ID: "", CN: "个人信息", TR: "Information" },
        tipInfo: { ID: "", CN: "您确定要退出登录吗", TR: "Are you sure you want to exit the system" },
        tip: { ID: "", CN: "提示", TR: "tip" },
        define: { ID: "", CN: "确定", TR: "ok" },
        cancel: { ID: "", CN: "取消", TR: "cancel" },
        collectTip: { ID: "", CN: "收藏列表为空", TR: "Collection list is empty" },
        compareTip: { ID: "", CN: "比较列表至少需要两项", TR: "The comparison list requires at least two items" },
 
        accountInfo: { ID: "", CN: "账户信息", TR: "Account Info" },
        baseInfo: { ID: "", CN: "基本信息", TR: "Base Info" },
        realName: { ID: "", CN: "真实姓名", TR: "Real Name" },
        account: { ID: "", CN: "账号", TR: "Acccount" },
        telPhoneNumber: { ID: "", CN: "手机号", TR: "TelPhone Number" },
        email: { ID: "", CN: "邮箱", TR: "E-mail" },
        corpName: { ID: "", CN: "公司名称", TR: "CorpName" },
        corpAddress: { ID: "", CN: "", TR: "CorpAddress" },
 
        update:{ ID: "", CN: "检测到有新版本, 是否更新?", TR: "New version detected, update?" },
        updateFile:{ ID: "", CN: "下载更新文件中...", TR: "Download update file..." },
        updateFail:{ ID: "", CN: "下载更新文件失败!", TR: "Failed to download update file!" },
        installFile:{ ID: "", CN: "安装更新文件", TR: "Install update files" },
        installCompleted:{ ID: "", CN: "应用资源更新完成!", TR: "Application resource update completed!" },
        installFail:{ ID: "", CN: "安装更新文件失败", TR: "Failed to install update file" },
        haveCollected:{ ID: "", CN: "您暂未收藏产品", TR: "You haven't collected products yet" },
        comparisonRequires:{ ID: "", CN: "比较列表至少需要两项", TR: "The comparison list requires at least two items" },
    },
    // 底部footer 栏
    footer: {
 
        technical: { ID: 2357, CN: "技术支持:上海义维流体科技有限公司", TR: "Technical support:Even Technology Co., Ltd" },
        technicalAddres: { ID: 2358, CN: "备案号为:沪ICP备14049296号-2", TR: "The filing number is 沪ICP备14049296号-2-2" },
        copyright: { ID: 2359, CN: "版权所有:上海义维流体科技有限公司", TR: "Copyright:Even Technology Co., Ltd" },
        copyrightAddres: { ID: 2360, CN: "地址:上海市闵行区江月路999号1幢615", TR: "Address: 615, building 1, No. 999, Jiangyue Road, Minhang District, Shanghai" },
        tips: { ID: "", CN: "数据仅供参考:如有修改恕不通知 版权所有,盗版必究", TR: "The data is for reference only: in case of any modification, we will not notify the copyright owner, and piracy will be prosecuted" }
    }
 
}