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
| const en = {
| common: {
| confirm: 'confirm',
| choose: 'choose',
| name: 'name',
| edit: 'edit',
| delete: 'delete',
| },
| dataManage: {
| dataManage: 'dataManage',
| catalogueManage: 'catalogueManage',
| dataUpdata: 'dataUpdata',
| metadataManage: 'metadataManage',
| dataLoading: 'dataLoading',
| SpatialData: 'SpatialData',
| versionManage: 'versionManage',
| dictionaryManage: 'dictionaryManage',
| styleManage: 'styleManage',
| },
| operatManage: {
| operatManage: 'operatManage',
| userManagement: 'userManagement',
| systemLayout: 'systemLayout',
| menuSettings: 'menuSettings',
| parameterConfiguration: 'parameterConfiguration',
| rests: 'rests',
| authorityManagement: 'authorityManagement',
| safetyManagement: 'safetyManagement',
| operationMonitoring: 'operationMonitoring',
| systemMonitoring: 'systemMonitoring',
| logLog: 'logLog',
| operationLog: 'operationLog',
| },
| 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',
| },
| };
|
| export default en;
|
|