月球大数据地理空间分析展示平台-【中台】
Surpriseplus
2023-09-14 392df7806471cae1ae5f21b6a106e8f931ad3f2d
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
const en = {
  common: {
    preview: 'preview',
    publish: "Publish",
    releaseTime: 'Release time',
    publishStatus: 'Publish Status',
    rublisher: 'Publisher',
    publishAddress: 'Publishing address',
    increase: 'increase',
    bak: 'Bak',
    domCode: 'DomCode',
    confirm: 'confirm',
    choose: 'Please choose',
    name: 'name',
    edit: 'edit',
    delete: 'Delete',
    username: 'UserName',
    empty: 'Empty',
    iquery: 'IQuery',
    selectdate: 'Please select a date',
    pleaseInput: 'Please input',
    update: 'Modify',
    append: 'Append',
    operate: 'Operate',
    clickupload: 'Click Upload',
    upload: 'Upload',
    preservation: 'Preservation',
    close: 'Close',
    see: 'See',
    index: 'index',
    download: 'download',
    cancel: 'cancel',
    changepassWord: 'Batch password modification',
    reset: 'Reset',
    submit: 'Submit',
    logout: 'logout',
    NPassword: 'New Password',
    SPassword: 'Confirm Password',
    AdminPassword: 'Administrator Password',
    Warehousin: 'Warehousin',
    file: 'file',
    details: 'details',
    enclosure: 'enclosure',
    attachinform: 'Attachment information',
    filePath: 'File Path',
    fileNme: 'File Name',
    format: 'format',
    size: 'size',
    versionName: 'version Name',
    type: 'type',
    fileType: 'File Type',
    quayTest: 'Auality testing',
    md5: 'MD5 Code',
    lineNuber: 'line Nuber',
    pleaseInputPassworld: 'Please input a password',
    passworld: 'Passworld',
    language: "中文",
    title: 'Title',
    preview: 'preview',
    attribute: 'Attribute',
    id: "ID",
    info: 'Info',
    warehousResults: 'Warehousing results',
    templateType: 'Template Type'
  },
 
  dataManage: {
    dataManage: 'Data Manage',
    catalogueManage: 'Directory management',
    projectManagement: 'Data Resource Catalog Management',
    dataUpdata: 'Data warehousing and updating',
    datawarehousing: 'Data warehousing',
    rangeManage: 'Range management',
    dataRetrieval: 'Data query',
    dataDownload: 'Data download',
    projectManage: 'Project information',
    dataStatistics: 'data Statistics',
    layerManage: 'Layer Management',
 
    resourceManage: 'Resource management',
    projectionLayerManagement: 'Projection layer management',
 
    layerObj: {
      menuName: 'menu name',
      menuType: 'Menu Type',
      layerName: 'Layer Name',
      englishName: 'English name',
      layerType: 'Layer Type',
      serviceName: 'service name',
      serviceType: 'service type',
      serviceResources: 'Service Resources',
      serviceAddress: 'Service Address',
      serviceParameters: 'Service parameters ',
      displayOrNot: 'Display or not',
      enableOrNot: 'Enable or not',
      isItProjectData: 'Is it project data',
      dataType: 'data type',
      istrue: 'true',
      isfalse: 'false',
      isEnable: 'Enable',
      enableProxy: 'Enable proxy address',
      disable: 'Disable',
      enableOriginalAddress: 'Enable original address',
      isDisuse: 'Disuse',
      isStop: 'Stop',
      testAddress: 'Test Address',
      firm: 'Service category',
      descr: 'descr',
      status: 'status',
      proxyAddress: 'Proxy Address',
      enTableName: 'English Table Name',
      prompt1: 'Please enter a layer name',
      prompt2: 'Please select a layer type',
      prompt3: 'Please select a service type',
      prompt4: 'Please enter the service address',
 
      prompt6: 'Please enter an English name',
      prompt7: 'Please enter note information',
      prompt8: 'Please select a data type',
      prompt9: 'Please enter the testing address',
      prompt10: 'Please enter descriptive information',
      prompt11: 'Please enter the proxy address',
      prompt12: 'Please enter a table name',
      prompt13: 'Please enter a resource name',
      prompt14: 'Please enter an English name',
      prompt15: 'Please enter service parameters',
      prompt16: "Please enter descriptive information",
      prompt17: "Please enter note information",
      prompt18: "Please select a service category",
      prompt19: "Please select the resource status",
      tableName: 'Table Name',
      resourceName: 'resourceName',
 
    },
    dataStaticObj: {
      // type1: 'Primary module',
      // type2: 'Secondary module',
      // type3: 'Statistical data',
 
 
      type1: 'service name',
      type2: 'visits',
      type3: 'Unit Name',
      type4: 'Data volume',
      type5: 'menu name',
      type7: 'visits',
      type8: 'Number of statistics',
    },
    projectObj: {
      projname: 'Project Name',
      projtype: 'Project Type',
      location: 'Geographical Position',
      province: 'Province',
      country: 'Country',
      county: 'City',
      corpname: ' Constructing units ',
      department: 'competent department',
      conperiod: 'Construction period',
      contents: 'Project content',
      projstate: 'Project Status',
      remarks: 'remarks',
      newProj: 'New project',
      editProj: 'Edit project',
      lable1: 'Add project information',
      label2: 'Modify project information',
      longitude: 'longitude',
      latitude: 'latitude'
    },
 
    dataUpObj: {
      catalogue: 'Catalogue',
      company: 'Company',
      entryTime: 'Entry time',
      describe: 'Describe',
      directoryName: 'Directory Name',
      name: 'Name',
      catalogDescription: 'Catalog Description',
      explain: 'Explain',
      catalogRemarks: 'Catalog Remarks',
      Remarks: 'Remarks',
      newDirectory: 'New Directory',
      versionNo: 'Version No',
      tableName: 'table Name',
      uploaddata: 'Upload data',
      receiptdata: 'Warehousing data list',
      UploadType: 'Receipt Type',
      dataSpecialty: 'Data Specialty',
      storageDirectory: 'Storage Directory',
      resourceDirectory: 'Resource Directory',
      dataVersion: 'Data Version',
      selectData: 'Select Data',
      selectMetadata: 'Select Metadata',
      entryName: 'Entry Name',
      selectWBSData: 'Select WBS Data',
      coordinateSystem: 'Coordinate System',
      fileExtension: "File extension",
      inspectionItems: "Inspection items",
      code: 'Code',
      sensorType: 'Sensor Type',
      collectionTime: 'Collection Time',
      metadataType: 'Metadata Type',
      label1: 'Please select the collection time',
    },
    metadataManage: 'information management',
    uploadManage: 'Release management',
    uploadObj: {
      dataRelease: 'Data release',
      releaseList: 'Release list',
      modelAttachMount: 'Model attachment mounting'
    },
    dataLoading: 'dataLoading',
    SpatialData: 'SpatialData',
    versionManage: 'versionManage',
    vmobj: {
      keyword: 'Keyword',
      describe: 'Describe',
      index: 'Index',
 
      catalogue: 'Catalogue',
      createontime: 'Creation Time',
      createonuser: 'Creation Personne',
      updateontime: 'Update Time',
      updateonuser: 'Update Personnel',
      editVersion: 'Modify version information',
      addVersion: 'Add version information',
      type: 'type',
      coordSystem: 'Coordinate system',
      scale: 'Scale',
      resolpower: 'resolpower',
 
      name: 'Name',
      dirName: 'Catalogue',
      format: 'Format',
      size: 'Size',
      gather: 'Acquisition time',
      depName: 'Company',
      versionNumber: 'Version Number',
      tab: 'Table',
      row: 'rows',
      numberFiles: 'Number of published files',
      minLevel: 'Minimum level',
      maxLevel: 'Maximum level',
      labe11: 'Please enter the minimum level (0 to 22)',
      labe12: 'Please enter the maximum level (0 to 22)',
      labe13: 'Please enter a name',
      labe14: 'Remove invalid values',
      labe15: 'Stretching method',
      labe16: 'Coordinate System',
      labe17: 'Stretching factor',
      labe18: 'Render Type',
      labe19: 'Color Table Type'
    },
    dictionaryManage: 'dictionaryManage',
    dictionaryManageObj: {
      tableName: 'table name',
      selectTableName: 'select table name',
      add: 'add',
      del: 'delete',
      number: 'number',
      fieldName: 'field name',
      fieldAliasName: 'field alias name',
      fieldType: 'field Type',
      fieldLength: 'field length',
      FieldPrecision: 'Field Precision',
      rangeAssociationTable: 'range association table',
      tableName: 'Table Name',
      remark: 'remark',
      creationTime: 'creation time',
      createPersonnel: 'create personnel',
      updateTime: 'update time',
      updatePersonnel: 'update personnel',
      operation: 'operation',
      lookOver: 'look over',
      revamp: 'revamp',
      particulars: 'particulars',
      tableAliasName: 'table alias name',
      cancel: 'cancel',
      confirm: 'confirm',
      tips: 'tips',
      deletedSuccessfully: 'deleted successfully',
      DeleteFailed: 'delete failed',
      tipsDelete: 'Are you sure you want to delete the selected content?',
      FailedAdd: 'Failed to add',
      NewSuccess: 'Successfully added',
      tipsAdd: 'Are you sure you want to add it?',
      failModify: 'fail to modify',
      modifySuccessfully: 'modify successfully',
      tipsUp: 'Are you sure to save the changes?',
    },
    domainManage: {
      index: 'index',
      bak: 'bak',
      bsm: 'bsm',
      codeDesc: 'codeDesc',
      domCode: 'domCode',
      domDesc: 'domDesc',
      domName: 'domName',
      level: 'level',
      orderid: 'orderid',
    },
    styleManage: 'Style Manage',
    templateManage: 'Template management',
    colorTableManagement: 'Color Table Management',
    colorTableObj: {
      append: 'Add Color List',
      update: 'Modify Color List',
      labe11: 'Name',
      labe12: 'Numerical range',
      labe13: 'Grade',
      labe14: 'Classification',
      labe15: 'Range',
    },
 
 
 
    styleObj: {
      index: 'Index',
      name: 'Name',
      type: 'Type',
      dirid: 'Directory',
      depid: 'Unit',
      ver: 'Edition',
      status: 'State',
      precision: 'Accuracy',
      descr: 'Describe',
      fileguid: 'Style file',
      viewguid: 'Preview File',
      createUser: 'Creator ID',
      createTime: 'Creation Time',
      updateUser: 'Updater ID',
      updateTime: 'Update Time',
      bak: 'Remarks',
      deactivate: 'Stop Using',
      enable: 'Start Using',
      addStyleData: 'Add Style Data',
      deInformation: 'Detailed Information',
      modifyStyleData: 'Modify Style Data',
    },
  },
  operatManage: {
    organizationManage: 'Organizational management',
    operatManage: 'Operation and maintenance supervision',
    ResourceLog: 'Resource Log',
    DownloadLog: 'Download Log',
    UserRoleAuthorization: 'User Role Authorization',
    MenuRoleAuthorization: 'Menu Permission Authorization',
    RoleResAuthorization: 'Role Resource Authorization',
    RoleLayerAuthorization: 'Role Layer Authorization',
    RoleMenuAuthorization: 'Role Menu Authorization',
    UserRoleAuthorizationObj: {
      RoleTable: 'Role Table',
      userTable: 'user Table',
      Added: 'Added',
      delete: 'delete',
      serialNumber: 'serial Number',
      name: 'name',
      menuTable: 'Menu Table',
      PermissionTable: 'Permission table',
      server: 'Service Address',
      ResTable: 'Resource table',
      layerTable: 'Layer Table'
    },
    ELM: {
      username: 'username',
      ownedSystem: 'ownedSystem',
      operationType: 'operationType',
      date: 'date',
      startDate: 'startdate',
      endDate: 'enddate',
      to: 'to',
      ip: 'The client IP',
      search: 'search',
      reset: 'reset',
      all: 'all',
      one: 'A picture',
      add: 'add',
      delete: 'delete',
      edit: 'edit',
      query: 'query',
      please: 'please choose',
      usernameInfo: 'username,Chinese name,or phonetic initial',
      index: 'index',
      largeModuleName: 'largeModuleName',
      smallModuleName: 'smallModuleName',
      resourceName: 'Resource Id',
      fileName: 'File name',
      type: 'Type',
      size: 'Size',
      careatetime: 'Download date',
      ipadress: 'IP address'
    },
    userManagement: 'User Management',
    systemLayout: 'System Layout',
 
    sysLayOutObj: {
      name: 'Name',
      cvalue: 'Current value',
      dvalue: 'Default value',
      minValue: 'Minimum value',
      maxValue: 'Maximum value',
      descr: 'Describe',
      editSysLayOut: 'Modify system configuration',
    },
    menuSettings: 'Menu Management',
    menuSetObj: {
      enName: 'EnName',
      enNameHolder: 'Please enter EnName',
      cnName: 'CnName',
      cnNameHolder: 'Please enter CnName',
      iconHolder: 'Please enter an icon name',
      icon: 'Icon',
      isShow: 'DisPlay',
      menuUrl: 'Menu Url',
      menuUrlHolder: 'Please enter menu Url',
      type: 'Type',
      bak: 'Remarks',
      authorize: 'Authorize',
      permsHolder: 'Please enter authorization',
      bakHolder: 'Please enter authorization',
      insert: 'Add sibling',
      subInsert: 'Add child',
      delete: 'Delete',
      moveUp: 'Move up',
      moveDown: 'Move Downward',
      show: 'Please choose whether to display',
      typeHolder: 'Please select a node type',
      hiddeen: 'Hide',
      isshow: 'Display',
      rootpath: 'Root directory',
      menu: 'Menu',
      button: 'Button'
    },
    parameterConfiguration: 'parameterConfiguration',
    rests: 'Rests',
    authorityManagement: 'Authority Management',
    safetyManagement: 'Safety Management',
    operationMonitoring: 'Operation Monitoring',
    systemMonitoring: 'System Monitoring',
    systemMonitoringObj: {
      totalMemory: 'totalMemory',
      haveBeenUsed: 'haveBeenUsed',
      usageRate: 'usageRate',
      systemMemory: 'systemMemory',
      CPUusage: 'CPUusage',
      CPUsystemUsage: 'CPUsystemUsage',
      numberOfExceptions: 'numberOfExceptions',
      numberOfAbnormalSystems: 'numberOfAbnormalSystems',
      serviceAarm: 'serviceAarm',
      serviceResourceAlarm: 'serviceResourceAlarm',
      serviceResourceStatus: 'serviceResourceStatus',
      remainingMemory: 'Remaining memory',
      userloginStatus: 'User login status',
      resourceOperationStatus: 'Resource operation status',
      memoryMonitoring: 'Memory monitoring',
      cpuMonitoring: 'CPU monitoring',
      heteroconstant: 'Heteroconstant',
      userOperationBehavior: 'userOperationBehavior',
      resourceInvocationStatus: 'resourceInvocationStatus',
      resourceCallStatistics: 'resourceCallStatistics',
      inquire: 'inquire',
      EnterTheUserName: 'Enter The UserName',
      EnterTheResourceID: 'Enter The Resource ID',
      EnterTheUserChineseName:
        'Enter the user name, Chinese name or Pinyin first letter query',
      onlinePersonnel: 'onlinePersonnel',
      userID: 'userID',
      username: 'username',
      onlineTime: 'onlineTime',
      abnormalResources: 'abnormalResources',
      resourceID: 'resourceID',
      resourceName: 'resourceName',
      resourceState: 'resourceState',
      abnormaltime: 'abnormaltime',
    },
    logLog: 'ConLog',
    operationLog: 'Operation Log',
    databaseMonitoring: 'Database Monitoring',
    blackwhiteList: 'Black/White List',
    BWL: {
      blackList: 'blackList',
      whiteList: 'whiteList',
      blackListIP: 'blackListIP',
      whiteListIP: 'whiteListIP',
      listIPInfo: 'listIPInfo',
      IPState: 'IPState',
      all: 'all',
      validity: 'validity',
      invalidity: 'invalidity',
      interceptionCycle: 'interceptionCycle',
      seconds: 'seconds',
      mins: 'mins',
      hours: 'hours',
      interceptionNumber: 'interceptionNumber',
      change: 'change',
      search: 'search',
      reset: 'reset',
      index: 'index',
      serviceName: 'serviceName',
      accessSourceSystem: 'accessSourceSystem',
      IPRequest: 'IPRequest',
      servicesRequestUrl: 'servicesRequestUrl',
      resourceIDRequest: 'resourceIDRequest',
      serviceSystemRequest: 'serviceSystemRequest',
      blackListStatus: 'blackListStatus',
      operate: 'operate',
      effectiveDate: 'effectiveDate',
      requestUser: 'requestUser',
      tokenInfo: 'tokenInfo',
      whiteListStatus: 'whiteListStatus',
      PageView: 'PageView',
      description: 'description',
      creator: 'creator',
      creationTime: 'creationTime',
      update: 'update',
      UpdateTime: 'UpdateTime',
      blackListIPHolder: 'Please enter the blacklist IP',
      whiteListIPHolder: 'Please enter the whitelist IP',
    },
    tokentool: 'Token Tool',
    tokentoolObj: {
      tokenId: 'Resource id',
      tokenQuery: 'Token',
      tokenStatus: 'Token Type',
      whole: 'All',
      normal: 'Normal',
      invalid: 'Invalid',
      index: 'Index',
      token: 'Token',
      duration: 'Usage time (min)',
      expire: 'Expiration time',
      type: 'Type',
      ip: 'IP address',
      createUser: 'Creator ID',
      createTime: 'Creation Time',
      updateUser: 'Updater ID',
      updateTime: 'Update Time',
      operation: 'Operation',
      renewal: 'Renewal',
      addToken: 'New Token Information',
      editToken: 'Modify token information',
      temporary: 'Temporary',
      fixed: 'Fixed',
      tokenHolder: 'Please enter Token',
      tokenStatusHolder: 'Please select Token type',
    },
    operationLogObj: {
      queryRegion: 'QueryRegion',
      resourceName: 'resourceName',
      operationType: 'operationType',
      startTime: 'start time',
      endTime: 'end time',
      operatingTime: 'Operating Time',
      inquire: 'inquire',
      empty: 'empty',
      num: 'num',
      username: 'username',
      systematicName: 'systematicName',
      IP: ' IP',
      pleaseInput: 'Please input username',
      pleaseSelect: 'please select',
      optionDate: 'optionDate',
      selectTime: 'selectTime',
      operationModule: 'operation ndule',
      operationModule1: 'Primary module',
      operationModule2: 'Secondary module',
      url: 'url',
      className: 'class name',
      category: 'category',
      bak: 'bak',
      check: 'check',
      added: 'added',
      modification: 'modification',
      delete: 'delete',
      uploading: 'uploading',
      download: 'download',
      otherOne: 'other one',
      status: 'status',
      operationTypeHolder: 'Please select operation type',
      startTimeHolder: 'Please select start time',
      endTimeHolder: 'Please select end time',
    },
  },
  synthesis: {
    DownloadList: 'Download List',
    import: 'Import KML',
    export: 'Export KML',
    pipelineAnalysis: 'Pipeline analysis',
    sceneExtraction: 'Scene extraction',
    synthesis: 'Comprehensive Display',
    dataApplication: 'Data Application',
    themaic: 'Thematic Maps',
    archive: 'Data Library',
    coverage: 'Coverage',
    viewport: 'Viewport',
    wander: 'Wander',
    analyse: 'Analyse',
    iqyery: 'Iqyery',
    orientation: 'Orientation',
    measurement: 'Measurement',
    plotting: 'Plotting',
    layer: 'Layer Manager',
    release: 'Scene Release',
    split: 'Split Screen',
    twod: '2D',
    threed: '3D',
    full: 'Full Figure',
    zommin: 'Zoom In',
    zoomout: 'Zoom Out',
    rule: 'Plotting Scale',
    compass: 'Compass',
    someroaming: 'Some Roaming',
    lineroaming: 'Lline Roaming',
    mouseroaming: 'Mouse Roaming',
    snapshot: 'Map snapshot',
    tdisplay: '3D Display',
    contouranalysis: 'contour Analysis',
    slopeanalysis: 'Slope Analysis',
    pathanalysis: 'Path Analysis',
    cuttinganalysis: 'Cutting Analysis',
    floodanalysis: 'Flood Analysis',
    earthworkcalculation: 'Earthwork Calculation',
    crosssectionanalysis: 'Section Analysis',
    imagecontrast: 'Image Contrast',
    somequery: 'Some Query',
    linequery: 'Line Query',
    rectangularquery: 'Rectangular Query',
    gardenquery: 'Garden Query',
    polygonquery: 'Polygon Query',
    attributequery: 'Attribute Query',
    rangequery: 'Spatial query',
    pickup: 'Pick up',
    gpsrtk: 'GPS-RTK',
    placenamelocation: 'Placename Location',
    distancemeasure: 'Distance Measure',
    heightsurve: 'Height Survey',
    areasurvey: 'Area Survey',
    volummeasure: 'Volum Measure',
    point: 'Point',
    line: 'Line',
    rectangle: 'Rectangle',
    polygon: 'Polygon',
    symboliclabel: 'Symbolic Label',
    flatterrain: 'Flat Terrain',
    terrainexcavation: 'Terrain Excavation',
    removepaint: 'Clear',
    openFile: 'open File',
    saveFile: 'save File',
    synthobj: {
      m1: 'Surface distance',
      m2: 'Spatial distance',
      m3: 'Altitude',
      m4: 'Vertical height',
      m5: 'Surface area',
      m6: 'Plane area',
      m7: 'volume',
      m8: 'angle',
    },
    more: 'More',
    Multiplechoice: 'Multiple choice',
    Singlechoice: 'Single choice',
    undergroundMode: 'Underground mode'
  },
  downlog: {
    type1: 'Shp file',
    type2: 'Thematic map',
    type3: 'Metadata',
    type4: 'Business data',
    type5: 'Pipeline analysis',
    type6: 'Statistical report',
  },
  dataApply: {
    type1: 'Cancel',
    type2: 'Repulse',
    type3: 'Under review',
    type4: 'Pass',
    descr: 'descr',
    uname: 'uname',
    status: 'status',
    careatetime: 'Date of application',
    ReApply: 'Re apply',
    details: 'details',
    ApplicationCancel: "withdraw",
  },
  loglog: {
    serialnumber: 'Serial Number',
    coverage: 'Coverage',
    systematic: 'Systematic',
    ipadress: 'IP Adress',
    operationtime: 'Operation Time',
    operationtype: 'Operation Type',
    operationStatus: 'Operation Status',
    username: 'Username',
    applicationProgram: 'Application Program',
    describe: 'Describe',
    login: 'login',
    checkout: 'checkout',
    logout: 'log out',
  },
  themaic: {
    name: 'Themaic Map',
    maptltle: 'Map Title',
    all: 'All',
    sortbytime: 'Sort by Time',
    sortbyviews: 'Sort by Views',
    find: 'Find',
    record: 'pieces of data',
  },
  archive: {
    name: 'Piping materials',
    keyword: 'Keyword',
    uname: 'Name',
    type: 'Type',
    modifications: 'Revision number',
    creationtime: 'Creation Time',
    state: 'State',
  },
  userManage: {
    userManage: 'User Manage',
    userInfoManage: 'User Information Manage',
    userInfoObj: {
      uid: 'account number',
      addPermission: 'Add Permission',
      editPermission: 'Modify Permission',
      name: 'Name',
      tag: 'Tag',
      createUser: 'Creator ID',
      createTime: 'Creation Time',
      updateUser: 'Updater ID',
      updateTime: 'Update Time',
      bak: 'Remarks',
      userStatus: 'User Status',
      all: 'All',
      normal: 'Normal',
      disable: 'Disable',
      delete: 'Delete',
      apply: 'Apply',
      rejection: 'Rejection',
      depName: 'department name',
      userexport: 'Excel user export',
      userinput: 'Excel user input',
      addr: 'address',
      contact: 'contact',
      edu: 'education',
      idcard: 'idcard',
      job: 'job',
      natives: 'natives',
      pwd: 'password',
      confirmPassword: 'Confirm Password',
      origpassword: 'Original password',
      available: 'Account available',
      sex: 'gender',
      status: 'status',
      uname: 'username',
      unamePlaceholder: 'please enter username',
      depid: 'department',
      chineseName: 'Chinese Name [User Name]',
      affiliatedUnit: 'Affiliated unit [on-the-job]',
      mobileNumber: 'Mobile number [receive SMS]',
      state: 'State',
      post: 'Post',
      addtime: 'Add Time',
      userAccount: 'User account',
      userInformation: 'User information',
      username: 'User name',
      userpssword: 'Password',
      userstate: 'User state',
      accountinformation: 'Account information',
      toapplied: 'To be applied',
      phoneticAlphabet: 'Phonetic initials',
      userchinesename: 'Chinese name',
      userMan: 'Man',
      userWoMan: 'Female',
      nativePlace: 'Native place',
      identityCard: 'Identity card',
      education: 'Education',
      pleaseSelect: '- Please select -',
      occupation: 'Occupation name',
      email: 'Email',
      receiveSMS: 'Receive SMS',
      major: 'Major',
      phoneNumber: 'cell-phone number',
      officeTelephone: 'Office telephone',
      addressbook: 'Address of address book',
      remarks: 'Remarks',
      scanningcopy: 'Scanning copy',
      spantitle1: '(Recommended picture size: 262 ×  146 pixels)',
      spantitle2:
        '(Scanned copy of user account application form, file format: PDF, size shall not exceed 20M)',
      doctor: 'Doctor',
      master: 'Master',
      undergraduate: 'Undergraduate',
      juniorCollege: 'Junior college',
      other: 'Other',
      assistant: 'Assistant',
      intermediate: 'Intermediate',
      senior: 'Senior',
      v1: 'Director general',
      fv1: 'Deputy chief',
      v2: 'Director',
      fv2: 'Deputy director',
      v3: 'Director-General',
      fv3: 'Eputy director-general',
      v4: 'Division Chief',
      fv4: 'Deputy Division Chief',
      v5: 'Section Chief',
      fv5: 'Deputy Section Chief',
      v6: 'Staff Member',
      v7: 'Chairman',
      fv7: 'Vice Chairman',
      v8: 'Technician',
      v9: 'Ones Strong Point',
      fv9: 'Other',
    },
    orgManage: 'Org Manage',
    orgManageObj: {
      WebsiteAddress: 'Website address',
      continformation: 'contact information',
      remarks: 'remarks',
      companyName: 'companyName',
      flatType: 'flatType',
      inquire: 'inquire',
      delete: 'delete',
      add: 'add',
      num: 'num',
      phone: 'phone',
      operate: 'operate',
      edit: 'edit',
      unitInformation: 'unitInformation',
      userList: 'userList',
      username: 'username',
      ChineseNameUsername: 'ChineseName username',
      phoneNumberToTeceiveShortMessages: 'phoneNumber to teceiveShort messages',
      status: 'status',
      confirm: 'confirm',
      close: 'close',
      administrativeDvisionsList: 'administrativeDvisions List',
      name: 'name',
      coding: 'coding',
      codeOfAdministrativeDivision: 'code of administrative division',
      LevelForExaminationAndApproval: 'Level for examination and approval',
      seaAreaUseClass: 'seaAreaUseClass',
      reset: 'reset',
      immediatelyCreate: 'immediatelyCreate',
      pinyinInitials: 'pinyinInitials',
      abbreviation: 'abbreviation',
      unitCode: 'Code',
      organizationCode: 'Organization code',
      companyAdministrator: 'companyAdministrator',
      picture: 'picture',
      division: 'division',
      EMail: 'EMail',
      fax: 'fax',
      postalCode: 'postalCode',
      website: 'website',
      cmpanyAddress: 'Address',
      companyIntroduction: 'companyIntroduction',
      nameHolder: 'Please enter name',
      abbreviationHolder: 'Please enter abbreviation',
      organizationCodeHolder: 'Please enter the organization code',
      cmpanyAddressHolder: 'Please enter the address',
      continformationHolder: 'Please enter your contact information',
      faxHolder: 'Please enter fax',
      EMailHolder: 'Please enter the E-Mail address',
      postalCodeHolder: 'Please enter the zip code',
      WebsiteAddressHolder: 'Please enter the website address',
      remarksHolder: 'Please enter remarks'
    },
    userAuditing: 'User Auditing',
    UA: {
      userName: 'User Name',
      usernameInfo: '',
      all: 'all',
      approvalPassed: 'The Approval Passed',
      disable: 'The disabled',
      delete: 'The deleted',
      pendingReview: 'Pending Review',
      auditFailed: 'The Audit Failed',
      userState: 'User State',
      unitName: 'Unit Name',
      pass: 'Pass',
      deny: 'Deny',
      query: 'Query',
      reset: 'Reset',
      ChineseName: 'ChineseName【username】',
      affiliatedUnit: 'Affiliated Unit',
      auditUser: 'Audit User',
      auditDate: 'Audit Date',
      state: 'State',
    },
    roleManage: 'Role Manage',
    RM: {
      roleName: 'RoleName',
      ownedSystem: 'Affiliated unit',
      add: 'Add',
      query: 'Query',
      reset: 'Reset',
      index: 'Index',
      Permission: 'Permission',
      resourcePermission: 'Resource Permission',
      groupSetting: 'GroupSetting',
      one: 'One',
      describe: 'Describe',
      remarks: 'Remarks',
      creationtime: 'Creation Time',
      creationuser: 'Creation Personne',
      updateontime: 'Update Time',
      updateonuser: 'Update Personnel',
      insertRole: 'Add role information',
      updateRole: 'Update role information',
      isAdmin: 'isAdmin',
      roleNameHolder: 'Please enter role',
      ownedSystemHolder: 'Please select unit',
    },
    groupManage: 'groupManage',
    GM: {
      groupName: 'groupName',
      ownedSystem: 'ownedSystem',
      add: 'add',
      index: 'index',
      query: 'query',
      reset: 'reset',
      applicationName: 'applicationName',
      userSetting: 'userSetting',
      roleSetting: 'roleSetting',
      one: 'A picture',
    },
    authorityManage: 'Permission management',
    resManage: 'Resource Management',
    resManageObj: {
      addResource: 'Add resource information',
      name: 'Resource Name',
      server: 'Service Address',
      source: 'Original address',
      depid: 'Unit ID',
      dirid: 'Directory ID',
      descr: 'Describe',
      img: 'Preview',
      createUser: 'Creator ID',
      createTime: 'Creation Time',
      updateUser: 'Updater ID',
      updateTime: 'Update Time',
      bak: 'Remarks',
      nameHolder: 'Please enter name',
    },
    authorityM: {
      name: 'name',
      nameHolder: 'Please enter name',
    },
    roleMenuAuth: {
      name: 'unit',
      nameHolder: 'Please select unit name...',
    },
  },
  shuJuGuanLi: {
    language: "en",
    pselect: {
      select: "Please select",
      dFile: "Single file upload",
      dFiles: "Overall project upload",
      SurveyDiscipline: "Survey Discipline",
      SurveyingAndMapping: 'Surveying and Mapping',
 
      SurveysDiscipline: "Surveys Discipline",
      GeologicalDisasterSpecialty: "Geological Disaster Specialty",
      CavernSpecialty: "Cavern Specialty",
      LineDiscipline: 'Line Discipline',
    },
    shuJuJianSuo: {
      valueone: "Please enter content",
      valuetwo: "Please enter ",
      valuetree: "please select ",
      valuelayerName: "Please enter the layer name",
      valuelayerType: "Please select a layer type",
      selectDataType: "Please select a data type",
      valueRemarks: "Please enter remarks",
      valueName1: "Please enter a  name",
      valuedataName: "Please enter a data name",
      valuedirectory: "Please select a directory",
      valuedescription: "Please enter a description",
      valueprojectName: "Please enter a project name",
      valueprojectType: "Please enter the project type",
      valueName: "Please enter a project name or node name",
      valueexplain: "Please enter a description of the project or node",
      valueexamine: "Select check items for the directory node",
      valuesuffix: "Please enter directory node can store data type suffix,for example:.zip,.doc,.xls,.dwg,.pdf",
      label: "Please add the condition to query",
      queryContent: 'Please enter the query content',
      geographicPosition: 'Please add the geographical location on the map',
      country: 'Please enter the country',
      province: 'Please enter the province',
      city: 'Please enter the city',
      construction: 'Please enter the name of the construction unit',
      department: 'Please enter the competent department',
      constructionperiod: 'Please enter the construction period',
      projectContent: 'Please enter the project content',
      projectStatus: 'Please enter the project status',
      rangeName: 'Please select a range name',
      descriptionRange: 'Please enter a description of the range',
      valuecode: 'Please enter the code',
      codeDescription: 'Please enter a code description',
      identificationcode: 'Please enter the identification code',
      hierarchy: 'Please enter hierarchy',
      serialnumber: 'Please enter serial number',
      valuenumber: 'Please enter the number',
      valuetableName: 'Please enter a table name',
      tableDisplayName: 'Please enter a table display name',
      valuefieldName: 'Please enter a field name',
      valuefieldDisplayName: 'Please enter the field display name',
      valuefieldType: 'Please enter the field type',
      valuefieldLength: 'Please enter the field length',
    },
    butten: {
      directoryDownload: 'Directory Download',
      folderDownload: 'Folder Download',
      uploads: 'uploads',
      templateDownload: "Template download",
      uploadFile: "Upload File",
      NewPeer: "New Peer",
      AddChild: "Add Child",
      Delete: "Delete",
      MoveUp: "Move Up",
      MoveDown: "Move down",
      Report: "Report",
      Histogram: "Histogram",
      Download: "Download",
    },
    lable1: "Please enter a name",
    lable2: "Please enter a data name",
    lable3: "Please enter a table name",
    lable4: "Please enter a domain name",
    lable5: "Please enter a version name",
    lable6: "Advanced queries",
 
 
 
 
 
 
 
  },
  archiveObj: {
    dataType: 'Storage type',
    queryCategory: 'Query category',
    dataBank: 'Data bank',
    file: 'File',
    dataClass: 'Data Class',
    entryName: 'Entry Name',
    unit: 'Unit',
    keywords: 'Data name',
    develop: 'Develop',
    fold: 'Fold',
    storageType: 'Data Type',
    downloads: 'Downloads',
    label1: 'Please select data type',
    label2: 'Please select a query category',
    label3: 'Please select company name',
    label4: 'Please select data type',
    label5: 'Please select the project name',
    label6: "Please enter data name",
    label7: 'Please add query criteria',
    label8: 'Last downloaded user',
    label9: 'Last download time',
  }
 
};
 
export default en;