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
| const en = {
| common: {
| confirm: 'confirm',
| choose: 'please choose',
| emptydata: 'No data',
| Distributionmap: 'Distribution map',
| Selectdate: 'Select date',
| name: 'Name',
| high: 'high',
| Medium: 'Medium',
| low: 'low',
| reName: 'rename',
| edit: 'edit',
| copy: 'copy',
| delete: 'delete',
| location: 'location',
| coordinate: 'coordinate',
| latLon: 'Latitude and Longitude',
| pleaseEnter: 'Please Enter...',
| },
| synthesis: {
| //综合展示
| synthesis: 'Comprehensive Display',
| //专题地图
| themaic: 'Thematic Maps',
| //资料馆
| archive: 'Data Library',
| },
| };
|
| export default en;
|
|