-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.js
89 lines (89 loc) · 1.94 KB
/
template.js
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
define(
({
viewer:{
main:{
scaleBarUnits: "metric" //"english (for miles) or "metric" (for km) - don't translate.
},
errors:{
createMap: "No se puede crear el mapa",
bitly: 'bitly se usa para acortar la url para compartir. Vea el archivo léame para más información sobre cómo crear y usar una clave bitly',
general: "Error"
}
},
tools:{
basemap: {
title: "Cambiar mapa base",
label: "Mapa base"
},
print: {
layouts:{
label1: 'Horizontal (PDF)',
label2: 'Vertical (PDF)',
label3: 'Horizontal (Imagen)',
label4: 'Vertical (Imagen)'
},
title: "Imprimir mapa",
label: "Imprimir"
},
share: {
title: "Compartir mapa",
label: "Compartir",
menu:{
facebook:{
label: "Facebook"
},
twitter:{
label: "Twitter"
},
email:{
label: "Correo electrónico",
message: "Examinar este mapa"
}
}
},
measure: {
title: "Medir",
label: "Medir"
},
time: {
title: "Mostrar control deslizante de tiempo",
label: "Hora",
timeRange: "<b>Intervalo de tiempo:</b>de ${start_time} a ${end_time}",
timeRangeSingle: "<b>Intervalo de tiempo:</b> ${time}"
},
editor: {
title: "Mostrar editor",
label: "Editor"
},
legend: {
title: "Mostrar leyenda",
label: "Leyenda"
},
details: {
title: "Mostrar detalles del mapa",
label: "Detalles"
},
bookmark:{
title: "Mostrar marcadores",
label: "Marcadores",
details: "Haga clic en un marcador para ir a la ubicación"
},
layers: {
title: "Mostrar lista de capas",
label: "Capas"
},
search: {
title: "Buscar dirección o lugar",
errors:{
missingLocation: "Ubicación o encontrada"
}
}
},
panel:{
close:{
title: "Cerrar panel",
label: "Cerrar"
}
}
})
);