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
| 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: '三维演示',
| contouranalysis: '等高线分析',
| slopeanalysis: '坡度分析',
| pathanalysis: '路径分析',
| cuttinganalysis: '地形剖切分析',
| floodanalysis: '洪水淹没分析',
| earthworkcalculation: '土方量计算',
| crosssectionanalysis: '三维截面分析',
| imagecontrast: '影像对比分析',
| somequery: '点查询',
| linequery: '线查询',
| rectangularquery: '矩形查询',
| gardenquery: '圆查询',
| polygonquery: '多边形查询',
| attributequery: '属性查询',
| rangequery: '范围查询',
| gpsrtk: '坐标定位',
| placenamelocation: '地名定位',
| distancemeasure: '距离测量',
| heightsurve: '高程测量',
| areasurvey: '面积测量',
| volummeasure: '体积测量',
| point: '点',
| line: '线',
| rectangle: '矩形',
| polygon: '多边形',
| symboliclabel: '符号化标签',
| flatterrain: '地形平整',
| terrainexcavation: '地形开挖',
| removepaint: '清除绘制',
| },
| };
|
| export default zh;
|
|