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
| 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',
| },
| };
|
| export default en;
|
|