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 zh = {
| common: {
| confirm: '确认',
| choose: '请选择',
| name: '名称',
| edit: '编辑',
| delete: '删除',
| },
| dataManage: {
| dataManage: '数据管理',
| catalogueManage: '目录管理',
| dataUpdata: '数据上传',
| metadataManage: '元数据管理',
| dataLoading: '数据入库',
| SpatialData: '空间数据管理',
| versionManage: '版本管理',
| dictionaryManage: '字典管理',
| styleManage: '样式管理',
| },
| operatManage: {
| operatManage: '运维管理',
| userManagement: '用户管理',
| systemLayout: '系统配置',
| menuSettings: '菜单设置',
| parameterConfiguration: '参数配置',
| rests: '其他',
| authorityManagement: '权限管理',
| safetyManagement: '安全管理',
| operationMonitoring: '运行监控',
| systemMonitoring: '系统监控',
| logLog: '登录日志',
| operationLog: '操作日志',
| },
| synthesis: {
| synthesis: '综合展示',
| themaic: '专题地图',
| archive: '资料馆',
| coverage: '图层',
| viewport: '视图',
| wander: '漫游',
| analyse: '分析',
| iqyery: '查询',
| orientation: '定位',
| measurement: '测量',
| plotting: '标绘',
| layer: '图层管理',
| release: '场景发布',
| export: '场景导出',
| split: '分屏',
| twod: '二维',
| threed: '三维',
| full: '全图',
| zommin: '放大',
| zoomout: '缩小',
| rule: '比例尺',
| compass: '指北针',
| someroaming: '点漫游',
| lineroaming: '线路漫游',
| mouseroaming: '鼠标漫游',
| snapshot: '地图快照',
| tdisplay: '三维演示',
| },
| };
|
| export default zh;
|
|