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
| const en = {
| common: {
| 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',
| },
| dataManage: {
| dataManage: 'Data Manage',
| catalogueManage: 'catalogueManage',
| dataUpdata: 'dataUpdata',
| metadataManage: 'metadataManage',
| dataLoading: 'dataLoading',
| SpatialData: 'SpatialData',
| versionManage: 'versionManage',
| dictionaryManage: 'dictionaryManage',
| styleManage: 'styleManage',
| },
| operatManage: {
| operatManage: 'Operat Manage',
| userManagement: 'User Management',
| systemLayout: 'System Layout',
| menuSettings: 'Menu Settings',
| parameterConfiguration: 'parameterConfiguration',
| rests: 'Rests',
| authorityManagement: 'Authority Management',
| safetyManagement: 'Safety Management',
| operationMonitoring: 'Operation Monitoring',
| systemMonitoring: 'System Monitoring',
| logLog: 'ConLog',
| operationLog: 'Operation Log',
| databaseMonitoring: 'Database Monitoring',
| },
| synthesis: {
| synthesis: 'Comprehensive Display',
| 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',
| export: 'Layer Export',
| 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: 'Range Query',
| 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: 'Remove Paint',
| },
| loglog: {
| serialnumber: 'Serial Number',
| coverage: 'Coverage',
| systematic: 'Systematic',
| ipadress: 'IP Adress',
| operationtime: 'Operation Time',
| operationtype: 'Operation Type',
| operationStatus: 'Operation Status',
| },
| };
|
| export default en;
|
|