umap-project 2.0.4__py3-none-any.whl → 2.1.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (106) hide show
  1. umap/__init__.py +1 -1
  2. umap/fields.py +3 -1
  3. umap/locale/br/LC_MESSAGES/django.po +76 -71
  4. umap/locale/en/LC_MESSAGES/django.po +41 -41
  5. umap/locale/hu/LC_MESSAGES/django.po +42 -42
  6. umap/locale/it/LC_MESSAGES/django.po +64 -58
  7. umap/locale/ms/LC_MESSAGES/django.po +62 -57
  8. umap/migrations/0018_datalayer_uuid.py +62 -0
  9. umap/migrations/0019_migrate_internal_remote_datalayers.py +52 -0
  10. umap/models.py +20 -3
  11. umap/settings/base.py +1 -0
  12. umap/settings/dev.py +1 -0
  13. umap/static/umap/js/modules/browser.js +2 -2
  14. umap/static/umap/js/modules/global.js +14 -4
  15. umap/static/umap/js/modules/i18n.js +35 -0
  16. umap/static/umap/js/modules/leaflet-configure.js +7 -0
  17. umap/static/umap/js/modules/schema.js +388 -0
  18. umap/static/umap/js/modules/urls.js +17 -2
  19. umap/static/umap/js/modules/utils.js +24 -0
  20. umap/static/umap/js/umap.controls.js +9 -10
  21. umap/static/umap/js/umap.core.js +5 -5
  22. umap/static/umap/js/umap.features.js +23 -9
  23. umap/static/umap/js/umap.forms.js +49 -299
  24. umap/static/umap/js/umap.icon.js +2 -2
  25. umap/static/umap/js/umap.js +26 -129
  26. umap/static/umap/js/umap.layer.js +9 -9
  27. umap/static/umap/js/umap.popup.js +3 -0
  28. umap/static/umap/js/umap.share.js +1 -1
  29. umap/static/umap/locale/am_ET.json +229 -225
  30. umap/static/umap/locale/ar.json +229 -225
  31. umap/static/umap/locale/ast.json +229 -225
  32. umap/static/umap/locale/bg.json +229 -225
  33. umap/static/umap/locale/br.json +237 -233
  34. umap/static/umap/locale/ca.json +229 -225
  35. umap/static/umap/locale/cs_CZ.json +229 -225
  36. umap/static/umap/locale/da.json +229 -225
  37. umap/static/umap/locale/de.json +229 -225
  38. umap/static/umap/locale/el.json +229 -225
  39. umap/static/umap/locale/en.json +230 -233
  40. umap/static/umap/locale/en_US.json +229 -225
  41. umap/static/umap/locale/es.json +229 -225
  42. umap/static/umap/locale/et.json +229 -225
  43. umap/static/umap/locale/eu.json +226 -198
  44. umap/static/umap/locale/fa_IR.json +229 -225
  45. umap/static/umap/locale/fi.json +229 -225
  46. umap/static/umap/locale/fr.json +229 -232
  47. umap/static/umap/locale/gl.json +229 -225
  48. umap/static/umap/locale/he.json +229 -225
  49. umap/static/umap/locale/hr.json +229 -225
  50. umap/static/umap/locale/hu.json +229 -232
  51. umap/static/umap/locale/id.json +229 -225
  52. umap/static/umap/locale/is.json +229 -225
  53. umap/static/umap/locale/it.json +229 -232
  54. umap/static/umap/locale/ja.json +229 -225
  55. umap/static/umap/locale/ko.json +229 -225
  56. umap/static/umap/locale/lt.json +229 -225
  57. umap/static/umap/locale/ms.json +229 -232
  58. umap/static/umap/locale/nl.json +232 -228
  59. umap/static/umap/locale/no.json +229 -225
  60. umap/static/umap/locale/pl.json +229 -225
  61. umap/static/umap/locale/pl_PL.json +229 -225
  62. umap/static/umap/locale/pt.json +229 -225
  63. umap/static/umap/locale/pt_BR.json +229 -225
  64. umap/static/umap/locale/pt_PT.json +229 -225
  65. umap/static/umap/locale/ro.json +229 -225
  66. umap/static/umap/locale/ru.json +229 -225
  67. umap/static/umap/locale/sk_SK.json +229 -225
  68. umap/static/umap/locale/sl.json +229 -225
  69. umap/static/umap/locale/sr.json +229 -225
  70. umap/static/umap/locale/sv.json +229 -225
  71. umap/static/umap/locale/th_TH.json +229 -225
  72. umap/static/umap/locale/tr.json +229 -225
  73. umap/static/umap/locale/uk_UA.json +229 -225
  74. umap/static/umap/locale/vi.json +229 -225
  75. umap/static/umap/locale/vi_VN.json +229 -225
  76. umap/static/umap/locale/zh.json +229 -225
  77. umap/static/umap/locale/zh_CN.json +229 -225
  78. umap/static/umap/locale/zh_TW.Big5.json +229 -225
  79. umap/static/umap/locale/zh_TW.json +229 -232
  80. umap/static/umap/test/index.html +0 -2
  81. umap/static/umap/{test → unittests}/URLs.js +5 -0
  82. umap/static/umap/vendors/leaflet/leaflet-src.esm.js +7064 -7064
  83. umap/static/umap/vendors/photon/leaflet.photon.js +3 -0
  84. umap/templates/umap/js.html +8 -6
  85. umap/templatetags/umap_tags.py +3 -2
  86. umap/tests/integration/test_browser.py +40 -0
  87. umap/tests/integration/test_collaborative_editing.py +72 -3
  88. umap/tests/integration/test_export_map.py +226 -9
  89. umap/tests/integration/test_features_id_generation.py +51 -0
  90. umap/tests/integration/test_owned_map.py +14 -1
  91. umap/tests/integration/test_statics.py +3 -3
  92. umap/tests/integration/test_tilelayer.py +3 -3
  93. umap/tests/settings.py +3 -3
  94. umap/tests/test_datalayer_views.py +77 -20
  95. umap/tests/test_map_views.py +20 -0
  96. umap/tests/test_merge_features.py +25 -5
  97. umap/urls.py +12 -12
  98. umap/utils.py +7 -0
  99. umap/views.py +58 -49
  100. umap/wsgi.py +1 -0
  101. {umap_project-2.0.4.dist-info → umap_project-2.1.1.dist-info}/METADATA +9 -9
  102. {umap_project-2.0.4.dist-info → umap_project-2.1.1.dist-info}/RECORD +105 -99
  103. umap/static/umap/test/Map.Export.js +0 -106
  104. {umap_project-2.0.4.dist-info → umap_project-2.1.1.dist-info}/WHEEL +0 -0
  105. {umap_project-2.0.4.dist-info → umap_project-2.1.1.dist-info}/entry_points.txt +0 -0
  106. {umap_project-2.0.4.dist-info → umap_project-2.1.1.dist-info}/licenses/LICENSE +0 -0
@@ -1,92 +1,33 @@
1
1
  {
2
- "Allow scroll wheel zoom?": "¿Permitir acercar con la rueda central del ratón?",
3
- "Automatic": "Automático",
4
- "Ball": "Bola",
5
- "Cancel": "Cancelar",
6
- "Caption": "Subtítulo",
7
- "Choose the data format": "Elegir el formato de datos",
8
- "Choose the layer of the feature": "Elegir la capa del elemento",
9
- "Circle": "Círculo",
10
- "Clustered": "Agrupados",
11
- "Data browser": "Navegador de datos",
12
- "Default": "Predeterminado",
13
- "Default zoom level": "Nivel de acercamiento predeterminado",
14
- "Default: name": "Predeterminado: nombre",
15
- "Display label": "Mostrar etiqueta",
16
- "Display the control to open OpenStreetMap editor": "Mostrar el control para abrir el editor OpenStreetMap",
17
- "Display the data layers control": "Mostrrar el control de la capa de datos",
18
- "Display the embed control": "Mostrar el control de embebido",
19
- "Display the fullscreen control": "Mostrar el control de pantalla completa",
20
- "Display the locate control": "Mostrar el control de ubicación",
21
- "Display the measure control": "Mostrar el control de medida",
22
- "Display the search control": "Mostrar el control de búsqueda",
23
- "Display the tile layers control": "Mostrar el control de capas de teselas",
24
- "Display the zoom control": "Mostrar el control de acercamiento",
25
- "Do you want to display a caption bar?": "¿Quiere mostrar la barra de subtítulos?",
26
- "Do you want to display a minimap?": "¿Quiere mostrar un minimapa?",
27
- "Do you want to display a panel on load?": "¿Quiere mostrar un panel al cargar?",
28
- "Do you want to display popup footer?": "¿Quiere mostrar la ventana emergente en el pie de página?",
29
- "Do you want to display the scale control?": "¿Quiere mostrar el control de escala?",
30
- "Do you want to display the «more» control?": "¿Quiere mostrar el control «más»?",
31
- "Drop": "Gota",
32
- "GeoRSS (only link)": "GeoRSS (sólo enlace)",
33
- "GeoRSS (title + image)": "GeoRSS (título + imagen)",
34
- "Heatmap": "Mapa de calor",
35
- "Icon shape": "Forma de icono",
36
- "Icon symbol": "Símbolo del icono",
37
- "Inherit": "Heredar",
38
- "Label direction": "Dirección de la etiqueta",
39
- "Label key": "Etiqueta de la clave",
40
- "Labels are clickable": "Las etiquetas se pueden hacer clic",
41
- "None": "Ninguno",
42
- "On the bottom": "En la parte inferior",
43
- "On the left": "A la izquierda",
44
- "On the right": "A la derecha",
45
- "On the top": "En la parte superior",
46
- "Popup content template": "Plantilla de contenido emergente",
47
- "Side panel": "Panel lateral",
48
- "Simplify": "Simplificar",
49
- "Table": "Tabla",
50
- "always": "siempre",
51
- "clear": "limpiar",
52
- "collapsed": "contraído",
53
- "color": "color",
54
- "dash array": "serie de guiones",
55
- "define": "definir",
56
- "description": "descripción",
57
- "expanded": "expandido",
58
- "fill": "rellenar",
59
- "fill color": "color de relleno",
60
- "fill opacity": "opacidad del relleno",
61
- "hidden": "escondido",
62
- "iframe": "iframe",
63
- "inherit": "heredar",
64
- "name": "nombre",
65
- "never": "nunca",
66
- "new window": "nueva ventana",
67
- "no": "no",
68
- "on hover": "al pasar el ratón",
69
- "opacity": "opacidad",
70
- "parent window": "ventana principal",
71
- "stroke": "trazo",
72
- "weight": "peso",
73
- "yes": "si",
74
- "{delay} seconds": "{delay} segundos",
2
+ " (area: {measure})": "(área: {medida})",
3
+ " (length: {measure})": "(longitud: {medida})",
75
4
  "# one hash for main heading": "# una almohadilla para el encabezado principal",
76
5
  "## two hashes for second heading": "## dos almohadillas para el encabezado secundario",
77
6
  "### three hashes for third heading": "### tres almohadillas para el encabezado ternario",
78
7
  "**double star for bold**": "**dos asteriscos para negrita**",
8
+ "*single star for italic*": "*una estrella para cursiva*",
9
+ "--- for a horizontal rule": "--- para una regla horizontal",
10
+ "1 day": "1 día",
11
+ "1 hour": "1 hora",
12
+ "5 min": "5 min",
79
13
  "A comma separated list of numbers that defines the stroke dash pattern. Ex.: \"5, 10, 15\".": "Una lista de números separados por comas que define el patrón de trazos. Por ejemplo: \"5, 10, 15\".",
80
14
  "About": "Acerca de",
15
+ "Action not allowed :(": "Action not allowed :(",
81
16
  "Activate slideshow mode": "Activar el modo presentación de diapositivas",
82
17
  "Add a layer": "Añadir una capa",
83
18
  "Add a line to the current multi": "Añadir una línea para el multi elemento actual",
84
19
  "Add a new property": "Añadir una nueva propiedad",
85
20
  "Add a polygon to the current multi": "Añadir un polígono al multi elemento actual",
21
+ "Add image URL": "Add image URL",
22
+ "Add": "Añadir",
86
23
  "Advanced actions": "Acciones avanzadas",
87
24
  "Advanced properties": "Propiedades avanzadas",
25
+ "All data and settings of the map": "All data and settings of the map",
88
26
  "All properties are imported.": "Todas las propiedades están importadas.",
89
27
  "Allow interactions": "Permitir interacciones",
28
+ "Allow scroll wheel zoom?": "¿Permitir acercar con la rueda central del ratón?",
29
+ "always": "siempre",
30
+ "Animated transitions": "Transiciones animadas",
90
31
  "Are you sure you want to cancel your changes?": "¿Está seguro que quiere cancelar sus cambios?",
91
32
  "Are you sure you want to clone this map and all its datalayers?": "¿Está seguro que quiere clonar este mapa y todas sus capas de datos?",
92
33
  "Are you sure you want to delete the feature?": "¿Está seguro que quiere borrar el elemento?",
@@ -95,186 +36,386 @@
95
36
  "Are you sure you want to delete this property on all the features?": "¿Esta seguro que quiere borrar esta propiedad en todos los elementos?",
96
37
  "Are you sure you want to restore this version?": "¿Está seguro que quiere restaurar esta versión?",
97
38
  "Attach the map to my account": "Adjuntar el mapa a mi cuenta",
39
+ "attribution": "atribución",
98
40
  "Auto": "Automático",
41
+ "Automatic": "Automático",
99
42
  "Autostart when map is loaded": "Autocomenzar cuando el mapa esté cargado",
43
+ "Back to preview": "Volver a la vista previa",
44
+ "Background overlay url": "Url de superposición de fondo",
45
+ "Ball": "Bola",
46
+ "Bring feature to center": "Bring feature to center",
100
47
  "Browse data": "Navegar los datos",
48
+ "by": "por",
49
+ "Cache proxied request": "Caché de la petición proxy",
101
50
  "Cancel edits": "Cancelar las ediciones",
51
+ "Cancel": "Cancelar",
52
+ "Caption": "Subtítulo",
102
53
  "Center map on your location": "Centrar el mapa en su ubicación",
103
54
  "Change map background": "Cambiar el fondo del mapa",
104
55
  "Change tilelayers": "Cambiar la capa de teselas",
56
+ "Change": "Cambiar",
105
57
  "Choose a preset": "Elegir un preestablecido",
58
+ "Choose the data format": "Elegir el formato de datos",
106
59
  "Choose the format of the data to import": "Elegir el formato de los datos a importar",
107
60
  "Choose the layer to import in": "Elegir la capa a la que se importa",
61
+ "Choropleth breakpoints": "Puntos de ruptura de la Coropleta",
62
+ "Choropleth classes": "Clases de coropletas",
63
+ "Choropleth color palette": "Paleta de colores Coropleta",
64
+ "Choropleth mode": "Modo Coropleta",
65
+ "Choropleth property value": "Valor de la propiedad Choropleta",
66
+ "Choropleth": "Coropleto",
67
+ "Circle": "Círculo",
68
+ "clear": "limpiar",
108
69
  "Click last point to finish shape": "Haga clic en el último punto para terminar la figura",
109
70
  "Click to add a marker": "Haga clic para añadir un marcador",
110
71
  "Click to continue drawing": "Haga clic para continuar dibujando",
111
72
  "Click to edit": "Clic para editar",
112
73
  "Click to start drawing a line": "Haga clic para empezar a dibujar una línea",
113
74
  "Click to start drawing a polygon": "Haga clic para empezar a dibujar un polígono",
114
- "Clone": "Clonar",
115
75
  "Clone of {name}": "Clón de {name}",
116
76
  "Clone this feature": "Clonar este elemento",
117
77
  "Clone this map": "Clonar este mapa",
78
+ "Clone": "Clonar",
118
79
  "Close": "Cerrar",
80
+ "Clustered": "Agrupados",
119
81
  "Clustering radius": "Radio de agrupamiento",
82
+ "collapsed": "contraído",
83
+ "color": "color",
84
+ "Comma separated list of numbers, including min and max values.": "Lista de números separados por comas, incluidos los valores mínimo y máximo.",
85
+ "Comma separated list of properties to use for facet search (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key)": "Lista separada por comas de las propiedades a utilizar para la búsqueda de facetas (ej.: miclave,otraclave). Para controlar la etiqueta, añádala después de | (ej.: mykey|Mi Clave,otherkey|Otra Clave)",
86
+ "Comma separated list of properties to use for sorting features. To reverse the sort, put a minus sign (-) before. Eg. mykey,-otherkey.": "Lista separada por comas de las propiedades que se utilizarán para ordenar las características. Para invertir la ordenación, anteponga un signo menos (-). Ej. miclave,-otraclave.",
120
87
  "Comma separated list of properties to use when filtering features": "Lista separada por comas de las propiedades a utilizar al filtrar los elementos",
121
88
  "Comma, tab or semi-colon separated values. SRS WGS84 is implied. Only Point geometries are imported. The import will look at the column headers for any mention of «lat» and «lon» at the begining of the header, case insensitive. All other column are imported as properties.": "Valores separados por coma, tabulador o punto y coma. SRS WGS84 está implícito. Solo se importan las geometrías de los puntos. La importación buscará en los encabezados de las columnas cualquier mención de «lat» y «lon» al principio del encabezado, sin distinción de mayúsculas y minúsculas. Todas las demás columnas se importan como propiedades.",
122
- "Continue line": "Línea continua",
89
+ "Congratulations, your map has been created!": "Enhorabuena, ¡su mapa ha sido creado!",
123
90
  "Continue line (Ctrl+Click)": "Línea continuada (Ctrl+Clic)",
91
+ "Continue line": "Línea continua",
124
92
  "Coordinates": "Coordenadas",
93
+ "Copy link": "Copiar enlace",
94
+ "copy": "copy",
125
95
  "Credits": "Créditos",
96
+ "Current map view": "Current map view",
126
97
  "Current view instead of default map view?": "¿Vista actual en lugar de la vista del mapa predeterminada?",
127
98
  "Custom background": "Fondo personalizado",
99
+ "Custom overlay": "Superposición personalizada",
100
+ "dash array": "serie de guiones",
101
+ "Data browser": "Navegador de datos",
128
102
  "Data is browsable": "Los datos son navegables",
103
+ "Datalayers": "Capas de datos",
129
104
  "Default interaction options": "Opciones de interacción predeterminados",
130
105
  "Default properties": "Propiedades predeterminadas",
131
106
  "Default shape properties": "Propiedades de la figura predeterminada",
107
+ "Default view": "Vista predeterminada",
108
+ "Default zoom level": "Nivel de acercamiento predeterminado",
109
+ "Default": "Predeterminado",
110
+ "Default: name": "Predeterminado: nombre",
132
111
  "Define link to open in a new window on polygon click.": "Defina un enlace para abrir en un nueva ventana al hacer clic en el polígono.",
112
+ "define": "definir",
133
113
  "Delay between two transitions when in play mode": "Retraso entre dos transiciones cuando se está en el modo de reproducción",
134
- "Delete": "Borrar",
135
114
  "Delete all layers": "Borrar todas las capas",
136
115
  "Delete layer": "Borrar capa",
137
116
  "Delete this feature": "Borrar este elemento",
138
117
  "Delete this property on all the features": "Borrar esta propiedad en todos los elementos",
139
118
  "Delete this shape": "Borrar esta figura",
140
119
  "Delete this vertex (Alt+Click)": "Borrar este vértice (Alt+Clic)",
120
+ "Delete": "Borrar",
121
+ "description": "descripción",
122
+ "Direct link": "Enlace directo",
141
123
  "Directions from here": "Direcciones desde aquí",
124
+ "Display label": "Mostrar etiqueta",
142
125
  "Display measure": "Mostrar medición",
126
+ "display name": "mostrar nombre",
143
127
  "Display on load": "Mostrar al cargar",
128
+ "Display the control to open OpenStreetMap editor": "Mostrar el control para abrir el editor OpenStreetMap",
129
+ "Display the data layers control": "Mostrrar el control de la capa de datos",
130
+ "Display the embed control": "Mostrar el control de embebido",
131
+ "Display the fullscreen control": "Mostrar el control de pantalla completa",
132
+ "Display the locate control": "Mostrar el control de ubicación",
133
+ "Display the measure control": "Mostrar el control de medida",
134
+ "Display the search control": "Mostrar el control de búsqueda",
135
+ "Display the star map button": "Mostrar el botón del mapa de estrellas",
136
+ "Display the tile layers control": "Mostrar el control de capas de teselas",
137
+ "Display the zoom control": "Mostrar el control de acercamiento",
138
+ "Do you want to display a caption bar?": "¿Quiere mostrar la barra de subtítulos?",
139
+ "Do you want to display a minimap?": "¿Quiere mostrar un minimapa?",
140
+ "Do you want to display a panel on load?": "¿Quiere mostrar un panel al cargar?",
141
+ "Do you want to display caption menus?": "Do you want to display caption menus?",
142
+ "Do you want to display popup footer?": "¿Quiere mostrar la ventana emergente en el pie de página?",
143
+ "Do you want to display the scale control?": "¿Quiere mostrar el control de escala?",
144
+ "Do you want to display the «more» control?": "¿Quiere mostrar el control «más»?",
144
145
  "Download": "Descargar",
145
146
  "Drag to reorder": "Arrastrar para reordenar",
146
147
  "Draw a marker": "Dibuja un marcador",
147
148
  "Draw a polygon": "Dibuja un polígono",
148
149
  "Draw a polyline": "Dibuja una polilínea",
149
- "Dynamic": "Dinámico",
150
+ "Drawing": "Dibujo",
151
+ "Drop": "Gota",
150
152
  "Dynamic properties": "Propiedades dinámicas",
151
- "Edit": "Editar",
153
+ "Dynamic": "Dinámico",
152
154
  "Edit feature's layer": "Editar la capa del elemento",
153
155
  "Edit map properties": "Editar propiedades del mapa",
154
156
  "Edit properties in a table": "Editar propiedades en una tabla",
157
+ "Edit the title of the map": "Editar el título del mapa",
155
158
  "Edit this feature": "Editar este elemento",
159
+ "Edit": "Editar",
160
+ "Email": "Correoe",
161
+ "Embed and link options": "Embed and link options",
156
162
  "Embed the map": "Embeber el mapa",
163
+ "Emoji & Character": "Emoji & Character",
157
164
  "Empty": "Vaciar",
165
+ "Equidistant": "Equidistante",
166
+ "Error in the overlay URL": "Error en la URL de la superposición",
158
167
  "Error in the tilelayer URL": "Error en la URL del la capa de teselas",
168
+ "Example: key1,key2,key3": "Example: key1,key2,key3",
159
169
  "Exit Fullscreen": "Salir de la pantalla completa",
170
+ "expanded": "expandido",
160
171
  "Extract shape to separate feature": "Extraer la figura a un elemento separado",
172
+ "Facet keys": "Claves de facetas",
173
+ "Facet search": "Búsqueda de faceta",
174
+ "Feature identifier key": "Clave de identificación del elemento",
175
+ "Feature properties": "Propiedades de las funciones",
176
+ "Features in this layer: {count}": "Features in this layer: {count}",
161
177
  "Fetch data each time map view changes.": "Traer datos cada vez que la vista del mapa cambie.",
178
+ "fill color": "color de relleno",
179
+ "fill opacity": "opacidad del relleno",
180
+ "fill": "rellenar",
162
181
  "Filter keys": "Claves de filtrado",
182
+ "Filter": "Filter",
183
+ "Fit all data": "Ajustar todos los datos",
163
184
  "Format": "Formato",
164
185
  "From zoom": "Desde el acercamiento",
186
+ "full backup": "full backup",
187
+ "Generic": "Generic",
188
+ "GeoRSS (only link)": "GeoRSS (sólo enlace)",
189
+ "GeoRSS (title + image)": "GeoRSS (título + imagen)",
190
+ "Go to \"{coords}\"": "Go to \"{coords}\"",
191
+ "Go to the homepage": "Ir a la página de inicio",
165
192
  "Go to «{feature}»": "Ir a «{feature}»",
166
193
  "Heatmap intensity property": "Propiedad de la intensidad del mapa de calor",
167
194
  "Heatmap radius": "Radio del mapa de calor",
195
+ "Heatmap": "Mapa de calor",
196
+ "height": "altura",
168
197
  "Help": "Ayuda",
198
+ "hidden": "escondido",
169
199
  "Hide controls": "Ocultar controles",
170
200
  "Home": "Inicio",
171
201
  "How much to simplify the polyline on each zoom level (more = better performance and smoother look, less = more accurate)": "Cuánto simplificar la polilínea en cada nivel de acercamiento (más = mejor rendimiento y aspecto más suave, menos = más preciso)",
202
+ "icon opacity": "opacidad del icono",
203
+ "Icon shape": "Forma de icono",
204
+ "Icon symbol": "Símbolo del icono",
205
+ "If false, the polygon or line will act as a part of the underlying map.": "If false, the polygon or line will act as a part of the underlying map.",
172
206
  "Iframe with custom height (in px): {{{http://iframe.url.com|height}}}": "Iframe con altura personalizada (en píxeles): {{{http://iframe.url.com|altura}}}",
173
207
  "Iframe with custom height and width (in px): {{{http://iframe.url.com|height*width}}}": "Iframe con alto y ancho (en px) personalizado: {{{http://iframe.url.com|height*width}}}",
208
+ "iframe": "iframe",
174
209
  "Iframe: {{{http://iframe.url.com}}}": "Iframe: {{{http://iframe.url.com}}}",
175
210
  "Image with custom width (in px): {{http://image.url.com|width}}": "Imagen con anchura personalizada (en píxeles): {{http://imagen.url.com|anchura}}",
176
211
  "Image: {{http://image.url.com}}": "Imagen: {{http://imagen.url.com}}",
177
- "Import": "Importar",
178
212
  "Import data": "Importar datos",
179
213
  "Import in a new layer": "Importar en una nueva capa",
214
+ "Import": "Importar",
180
215
  "Imports all umap data, including layers and settings.": "Importar todos los datos umap, incluyendo capas y ajustes.",
181
216
  "Include full screen link?": "¿Incluir el enlace a pantalla completa?",
217
+ "Inherit": "Heredar",
218
+ "inherit": "heredar",
182
219
  "Interaction options": "Opciones de interacción",
183
- "Invalid umap data": "Datos umap inválido",
220
+ "Invalid latitude or longitude": "Invalid latitude or longitude",
184
221
  "Invalid umap data in {filename}": "Datos umap inválido en {filename}",
222
+ "Invalid umap data": "Datos umap inválido",
223
+ "Invalide property name: {name}": "Invalide property name: {name}",
224
+ "Jenks-Fisher": "Jenks-Fisher",
225
+ "K-means": "K-medias",
185
226
  "Keep current visible layers": "Guardar capas visibles actuales",
227
+ "kilometers": "kilómetros",
228
+ "km": "km",
229
+ "Label direction": "Dirección de la etiqueta",
230
+ "Label key": "Etiqueta de la clave",
231
+ "Labels are clickable": "Las etiquetas se pueden hacer clic",
232
+ "Latest feature": "Última novedad",
186
233
  "Latitude": "Latitud",
187
- "Layer": "Capa",
188
234
  "Layer properties": "Propiedades de la capa",
235
+ "Layer": "Capa",
189
236
  "Licence": "Licencia",
237
+ "licence": "licencia",
190
238
  "Limit bounds": "Límites",
239
+ "Link to view the map": "Link to view the map",
191
240
  "Link to…": "Enlace a...",
192
241
  "Link with text: [[http://example.com|text of the link]]": "Enlace con texto: [[http://ejemplo.com|texto del enlace]]",
193
242
  "Long credits": "Créditos largos",
194
243
  "Longitude": "Longitud",
195
244
  "Make main shape": "Hacer la figura principal",
196
245
  "Manage layers": "Gestionar capas",
246
+ "Manual": "Manual",
197
247
  "Map background credits": "Créditos del fondo del mapa",
198
248
  "Map has been attached to your account": "El mapa se ha adjuntado a su cuenta",
199
249
  "Map has been saved!": "¡Se ha guardado el mapa!",
250
+ "Map has been starred": "El mapa ha sido marcado con una estrella",
251
+ "Map has been unstarred": "El mapa se ha desprotegido",
200
252
  "Map user content has been published under licence": "El contenido del mapa del usuario se ha publicado bajo la licencia",
201
253
  "Map's editors": "Editores del mapa",
202
254
  "Map's owner": "Propietario del mapa",
255
+ "max East": "máximo Este",
256
+ "max North": "máximo Norte",
257
+ "max South": "máximo Sur",
258
+ "max West": "máximo Oeste",
259
+ "max zoom": "acercamiento máximo",
260
+ "Measure distances": "Medir distancias",
203
261
  "Merge lines": "Combinar líneas",
262
+ "mi": "mi",
263
+ "miles": "millas",
264
+ "min zoom": "acercamiento mínimo",
204
265
  "More controls": "Más controles",
205
266
  "Must be a valid CSS value (eg.: DarkBlue or #123456)": "Debe ser un valor CSS válido (por ejemplo: DarkBlue o #123456)",
267
+ "name": "nombre",
268
+ "nautical miles": "millas náuticas",
269
+ "never": "nunca",
270
+ "new window": "nueva ventana",
271
+ "next": "siguiente",
272
+ "NM": "NM",
273
+ "No cache": "Sin caché",
206
274
  "No licence has been set": "Ninguna licencia se ha establecida",
275
+ "No results for these facets": "No hay resultados para estas facetas",
207
276
  "No results": "Sin resultados",
277
+ "no": "no",
278
+ "No.": "No.",
279
+ "None": "Ninguno",
280
+ "Number of desired classes (default 5)": "Número de clases deseadas (predeterminadas 5)",
281
+ "On the bottom": "En la parte inferior",
282
+ "On the left": "A la izquierda",
283
+ "On the right": "A la derecha",
284
+ "On the top": "En la parte superior",
285
+ "Only visible layers' data": "Only visible layers' data",
286
+ "opacity": "opacidad",
287
+ "Opacity": "Opacidad",
288
+ "Open current feature on load": "Abrir el elemento actual al cargar",
208
289
  "Open link in…": "Abrir enlace en...",
290
+ "Open share & download panel": "Open share & download panel",
209
291
  "Open this map extent in a map editor to provide more accurate data to OpenStreetMap": "Abre la extensión de este mapa en un editor de mapas para proveer datos más precisos a OpenStreetMap",
292
+ "OpenStreetMap": "OpenStreetMap",
210
293
  "Optional intensity property for heatmap": "Propiedad de intensidad opcional para el mapa de calor",
211
294
  "Optional. Same as color if not set.": "Opcional. Igual que el color si no está establecido.",
295
+ "Optional.": "Opcional.",
212
296
  "Override clustering radius (default 80)": "Sobrescribir el radio de agrupación (predeterminado 80)",
213
297
  "Override heatmap radius (default 25)": "Sobrescribir el radio del mapa de calor (predeterminado 25)",
298
+ "parent window": "ventana principal",
299
+ "Paste your data here": "Pega tus datos aquí",
300
+ "Permalink": "Permalink",
301
+ "Permanent credits background": "Permanent credits background",
302
+ "Permanent credits": "Permanent credits",
214
303
  "Please be sure the licence is compliant with your use.": "Asegúrese que la licencia sea compatible con el uso que le va a dar.",
215
304
  "Please choose a format": "Elija un formato",
216
305
  "Please enter the name of the property": "Introduzca el nombre de la propiedad",
217
306
  "Please enter the new name of this property": "Introduzca el nuevo nombre de esta propiedad",
307
+ "Please save the map first": "Guarde primero el mapa",
308
+ "Popup (large)": "Ventana emergente (grande)",
309
+ "Popup content style": "Estilo del contenido emergente",
310
+ "Popup content template": "Plantilla de contenido emergente",
311
+ "Popup shape": "Forma de la ventana emergente",
312
+ "Popup": "Ventana emergente",
313
+ "Powered by uMap": "Desarrollado por uMap",
314
+ "previous": "anterior",
315
+ "Problem in the response": "Problem in the response",
218
316
  "Properties imported:": "Propiedades importadas:",
219
317
  "Provide an URL here": "Proporcione una URL aquí",
220
318
  "Proxy request": "Petición proxy",
319
+ "Quantiles": "Cuantiles",
320
+ "Recent": "Recent",
221
321
  "Remote data": "Datos remotos",
222
322
  "Remove shape from the multi": "Quitar la figura del multi elemento",
223
323
  "Rename this property on all the features": "Renombrar esta propiedad en todos los elementos",
224
324
  "Replace layer content": "Reemplaza el contenido de la capa",
225
325
  "Restore this version": "Restaurar esta versión",
226
- "Save": "Guardar",
227
326
  "Save anyway": "Guardar de todos modos",
228
327
  "Save current edits": "Guardar las ediciones actuales",
328
+ "Save map": "Save map",
229
329
  "Save this center and zoom": "Guardar este centrado y acercamiento",
230
330
  "Save this location as new feature": "Guardar esta ubicación como nuevo elemento",
331
+ "Save": "Guardar",
332
+ "Saved center and zoom": "Centro y zoom guardados",
231
333
  "Search location": "Buscar ubicación",
334
+ "Search": "Buscar",
335
+ "Secret edit link copied to clipboard!": "Enlace de edición secreto copiado en el portapapeles",
336
+ "Secret edit link:": "Enlace secreto de edición:",
232
337
  "See all": "Ver todo",
233
338
  "See data layers": "Ver capas de datos",
234
339
  "See full screen": "Ver pantalla completa",
340
+ "See on OpenStreetMap": "See on OpenStreetMap",
341
+ "Select data": "Select data",
342
+ "Send me the link": "Envíeme el enlace",
235
343
  "Set it to false to hide this layer from the slideshow, the data browser, the popup navigation…": "Establecer en falso para ocultar esta capa de la presentación de diapositivas, el navegador de datos, la navegación emergente...",
344
+ "settings": "settings",
236
345
  "Shape properties": "Propiedades de la figura",
346
+ "Share and download": "Share and download",
347
+ "Share this link to open a customized map view": "Share this link to open a customized map view",
237
348
  "Short credits": "Créditos cortos",
349
+ "Short link": "Short link",
350
+ "Show this layer in the caption": "Mostrar esta capa en la leyenda",
238
351
  "Show/hide layer": "Mostrar/ocultar capa",
352
+ "Side panel": "Panel lateral",
239
353
  "Simple link: [[http://example.com]]": "Enlace simple: [[http://ejemplo.com]]",
354
+ "Simplify": "Simplificar",
355
+ "Skipping unknown geometry.type: {type}": "Ignorando tipo de geometría desconocida: {type}",
240
356
  "Slideshow": "Presentación de diapositivas",
241
357
  "Sort key": "Orden de la clave",
242
358
  "Split line": "Linea de división",
359
+ "Star this map": "Marcar este mapa con una estrella",
243
360
  "Start a hole here": "Iniciar un agujero aquí",
244
361
  "Start slideshow": "Iniciar presentación de diapositivas",
245
362
  "Stop editing": "Parar de editar",
246
363
  "Stop slideshow": "Parar presentación de diapositivas",
364
+ "Street": "Street",
365
+ "stroke": "trazo",
247
366
  "Supported scheme": "Esquema soportado",
248
367
  "Supported variables that will be dynamically replaced": "Las variables soportadas que serán reemplazadas dinámicamente",
249
- "TMS format": "formato TMS",
368
+ "Switch to edit mode": "Cambiar al modo de edición",
369
+ "Symbol": "Symbol",
370
+ "Table": "Tabla",
250
371
  "Text color for the cluster label": "Color del texto para la etiqueta clúster",
251
372
  "Text formatting": "Formato de texto",
373
+ "The name of the property to use as feature label (eg.: \"nom\"). You can also use properties inside brackets to use more than one or mix with static content (eg.: \"{name} in {place}\")": "The name of the property to use as feature label (eg.: \"nom\"). You can also use properties inside brackets to use more than one or mix with static content (eg.: \"{name} in {place}\")",
374
+ "The name of the property to use as feature unique identifier.": "El nombre de la propiedad a utilizar como identificador único del elemento.",
375
+ "The zoom and center have been modified.": "Se han modificado el zoom y el centro.",
376
+ "TMS format": "formato TMS",
252
377
  "To use if remote server doesn't allow cross domain (slower)": "Para utilizar si el servidor remoto no permite dominios cruzados (más lento)",
253
378
  "To zoom": "Para acercar/alejar",
379
+ "Toggle edit mode (⇧+Click)": "Conmutar el modo de edición (⇧+Clic)",
380
+ "Toggle edit mode": "Toggle edit mode",
254
381
  "Transfer shape to edited feature": "Transferir la figura al elemento editado",
255
382
  "Transform to lines": "Transformar a líneas",
256
383
  "Transform to polygon": "Transformar a polígono",
384
+ "Type a place name or coordinates": "Type a place name or coordinates",
385
+ "Type char or paste emoji": "Type char or paste emoji",
257
386
  "Type of layer": "Tipo de capa",
258
387
  "Unable to detect format of file {filename}": "No se puede detectar el formato de archivo {filename}",
259
388
  "Untitled layer": "Capa sin título",
260
389
  "Untitled map": "Mapa sin título",
261
- "Update permissions": "Actualizar permisos",
262
390
  "Update permissions and editors": "Actualizar permisos y editores",
391
+ "Update permissions": "Actualizar permisos",
392
+ "Update who can see and edit the map": "Actualizar quién puede ver y editar el mapa",
263
393
  "Url": "Url",
394
+ "URL": "URL",
264
395
  "Use current bounds": "Utilizar límites actuales",
265
396
  "Use placeholders with feature properties between brackets, eg. {name}, they will be dynamically replaced by the corresponding values.": "Utilizar marcadores de posición con propiedades del elemento entre paréntesis, ejemplo {name}, serán reemplazados dinámicamente por los valores correspondientes.",
266
397
  "User content credits": "Créditos del contenido del usuario",
267
398
  "User interface options": "Opciones de la interface de usuario",
399
+ "User location": "Ubicación del usuario",
400
+ "Verify remote URL": "Verificar URL remota",
268
401
  "Versions": "Versiones",
269
402
  "View Fullscreen": "Ver en pantalla completa",
403
+ "View": "Vista",
404
+ "Visibility: {status}": "Visibilidad: {estado}",
405
+ "weight": "peso",
270
406
  "Where do we go from here?": "¿A dónde vamos a partir de aquí?",
271
407
  "Whether to display or not polygons paths.": "Si desea mostrar o no el trayecto de los polígonos.",
272
408
  "Whether to fill polygons with color.": "Si desea rellenar los polígonos con color.",
409
+ "Who can edit \"{layer}\"": "Quién puede editar \"{layer}\"",
273
410
  "Who can edit": "Quién puede editar",
274
411
  "Who can view": "Quién puede ver",
412
+ "width": "anchura",
275
413
  "Will be displayed in the bottom right corner of the map": "Se mostrará en la esquina inferior izquierda del mapa",
414
+ "Will be permanently visible in the bottom left corner of the map": "Will be permanently visible in the bottom left corner of the map",
276
415
  "Will be visible in the caption of the map": "Será visible en el subtítulo del mapa",
277
416
  "Woops! Someone else seems to have edited the data. You can save anyway, but this will erase the changes made by others.": "¡Oops! Alguien parece haber editado los datos. Puedes guardar de todos modos, pero esto va a borrar los cambios realizados por otros.",
417
+ "yes": "si",
418
+ "Your map has been created! As you are not logged in, here is your secret link to edit the map, please keep it safe:": "¡Su mapa ha sido creado! Como no ha iniciado sesión, aquí tiene el enlace secreto para editar el mapa:",
278
419
  "Zoom in": "Acercar",
279
420
  "Zoom level for automatic zooms": "Nivel de acercamiento para acercamientos automáticos",
280
421
  "Zoom out": "Alejar",
@@ -283,153 +424,16 @@
283
424
  "Zoom to the previous": "Acercamiento al anterior",
284
425
  "Zoom to this feature": "Acercamiento a este elemento",
285
426
  "Zoom to this place": "Acercamiento a este lugar",
286
- "attribution": "atribución",
287
- "by": "por",
288
- "display name": "mostrar nombre",
289
- "height": "altura",
290
- "licence": "licencia",
291
- "max East": "máximo Este",
292
- "max North": "máximo Norte",
293
- "max South": "máximo Sur",
294
- "max West": "máximo Oeste",
295
- "max zoom": "acercamiento máximo",
296
- "min zoom": "acercamiento mínimo",
297
- "next": "siguiente",
298
- "previous": "anterior",
299
- "width": "anchura",
300
- "{count} errors during import: {message}": "{count} errores durante la importación: {message}",
301
- "Measure distances": "Medir distancias",
302
- "NM": "NM",
303
- "kilometers": "kilómetros",
304
- "km": "km",
305
- "mi": "mi",
306
- "miles": "millas",
307
- "nautical miles": "millas náuticas",
308
- "1 day": "1 día",
309
- "1 hour": "1 hora",
310
- "5 min": "5 min",
311
- "Cache proxied request": "Caché de la petición proxy",
312
- "No cache": "Sin caché",
313
- "Popup": "Ventana emergente",
314
- "Popup (large)": "Ventana emergente (grande)",
315
- "Popup content style": "Estilo del contenido emergente",
316
- "Popup shape": "Forma de la ventana emergente",
317
- "Skipping unknown geometry.type: {type}": "Ignorando tipo de geometría desconocida: {type}",
318
- "Optional.": "Opcional.",
319
- "Paste your data here": "Pega tus datos aquí",
320
- "Please save the map first": "Guarde primero el mapa",
321
- "Feature identifier key": "Clave de identificación del elemento",
322
- "Open current feature on load": "Abrir el elemento actual al cargar",
323
- "Permalink": "Permalink",
324
- "The name of the property to use as feature unique identifier.": "El nombre de la propiedad a utilizar como identificador único del elemento.",
325
- "Do you want to display caption menus?": "Do you want to display caption menus?",
326
- "Example: key1,key2,key3": "Example: key1,key2,key3",
327
- "Invalid latitude or longitude": "Invalid latitude or longitude",
328
- "Invalide property name: {name}": "Invalide property name: {name}",
329
- "Permanent credits": "Permanent credits",
330
- "Permanent credits background": "Permanent credits background",
331
- "Select data": "Select data",
332
- "Will be permanently visible in the bottom left corner of the map": "Will be permanently visible in the bottom left corner of the map",
333
427
  "{area} acres": "{área} acres",
334
428
  "{area} ha": "{área} ha",
335
429
  "{area} m²": "{área} m²",
336
430
  "{area} mi²": "{área} mi²",
337
431
  "{area} yd²": "{área} yd²",
338
- "{distance} NM": "{distancia} NM",
432
+ "{count} errors during import: {message}": "{count} errores durante la importación: {message}",
433
+ "{delay} seconds": "{delay} segundos",
339
434
  "{distance} km": "{distancia} km",
340
435
  "{distance} m": "{distancia} m",
341
436
  "{distance} miles": "{distancia} millas",
342
- "{distance} yd": "{distancia} yd",
343
- " (area: {measure})": "(área: {medida})",
344
- " (length: {measure})": "(longitud: {medida})",
345
- "Animated transitions": "Transiciones animadas",
346
- "Background overlay url": "Url de superposición de fondo",
347
- "Custom overlay": "Superposición personalizada",
348
- "Display the star map button": "Mostrar el botón del mapa de estrellas",
349
- "Error in the overlay URL": "Error en la URL de la superposición",
350
- "Map has been starred": "El mapa ha sido marcado con una estrella",
351
- "Map has been unstarred": "El mapa se ha desprotegido",
352
- "Opacity": "Opacidad",
353
- "Star this map": "Marcar este mapa con una estrella",
354
- "Symbol can be either a unicode character or an URL. You can use feature properties as variables: ex.: with \"http://myserver.org/images/{name}.png\", the {name} variable will be replaced by the \"name\" value of each marker.": "El símbolo puede ser un carácter unicode o una URL. Puede utilizar propiedades de características como variables: ej.: con \"http://myserver.org/images/{nombre}.png\", la variable {nombre} se sustituirá por el valor \"nombre\" de cada marcador.",
355
- "Direct link": "Enlace directo",
356
- "The zoom and center have been modified.": "Se han modificado el zoom y el centro.",
357
- "Congratulations, your map has been created!": "Enhorabuena, ¡su mapa ha sido creado!",
358
- "Copy link": "Copiar enlace",
359
- "Email": "Correoe",
360
- "Secret edit link copied to clipboard!": "Enlace de edición secreto copiado en el portapapeles",
361
- "Send me the link": "Envíeme el enlace",
362
- "Your map has been created! As you are not logged in, here is your secret link to edit the map, please keep it safe:": "¡Su mapa ha sido creado! Como no ha iniciado sesión, aquí tiene el enlace secreto para editar el mapa:",
363
- "Comma separated list of properties to use for sorting features. To reverse the sort, put a minus sign (-) before. Eg. mykey,-otherkey.": "Lista separada por comas de las propiedades que se utilizarán para ordenar las características. Para invertir la ordenación, anteponga un signo menos (-). Ej. miclave,-otraclave.",
364
- "Toggle edit mode (⇧+Click)": "Conmutar el modo de edición (⇧+Clic)",
365
- "icon opacity": "opacidad del icono",
366
- "*single star for italic*": "*una estrella para cursiva*",
367
- "--- for a horizontal rule": "--- para una regla horizontal",
368
- "The name of the property to use as feature label (eg.: \"nom\"). You can also use properties inside brackets to use more than one or mix with static content (eg.: \"{name} in {place}\")": "El nombre de la propiedad a utilizar como etiqueta de la característica (ej.: \"nom\"). También puede utilizar propiedades entre paréntesis para utilizar más de una o mezclarlas con contenido estático (p. ej.: \"{nombre} en {lugar}\").",
369
- "Comma separated list of properties to use for facet search (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key)": "Lista separada por comas de las propiedades a utilizar para la búsqueda de facetas (ej.: miclave,otraclave). Para controlar la etiqueta, añádala después de | (ej.: mykey|Mi Clave,otherkey|Otra Clave)",
370
- "Default view": "Vista predeterminada",
371
- "Facet keys": "Claves de facetas",
372
- "Facet search": "Búsqueda de faceta",
373
- "Feature properties": "Propiedades de las funciones",
374
- "Latest feature": "Última novedad",
375
- "No results for these facets": "No hay resultados para estas facetas",
376
- "Saved center and zoom": "Centro y zoom guardados",
377
- "User location": "Ubicación del usuario",
378
- "Visibility: {status}": "Visibilidad: {estado}",
379
- "Fit all data": "Ajustar todos los datos",
380
- "Verify remote URL": "Verificar URL remota",
381
- "Add": "Añadir",
382
- "Change": "Cambiar",
383
- "Powered by uMap": "Desarrollado por uMap",
384
- "Search": "Buscar",
385
- "Datalayers": "Capas de datos",
386
- "Secret edit link:": "Enlace secreto de edición:",
387
- "Who can edit \"{layer}\"": "Quién puede editar \"{layer}\"",
388
- "Choropleth": "Coropleto",
389
- "Choropleth breakpoints": "Puntos de ruptura de la Coropleta",
390
- "Choropleth classes": "Clases de coropletas",
391
- "Choropleth color palette": "Paleta de colores Coropleta",
392
- "Choropleth mode": "Modo Coropleta",
393
- "Choropleth property value": "Valor de la propiedad Choropleta",
394
- "Comma separated list of numbers, including min and max values.": "Lista de números separados por comas, incluidos los valores mínimo y máximo.",
395
- "Equidistant": "Equidistante",
396
- "Jenks-Fisher": "Jenks-Fisher",
397
- "K-means": "K-medias",
398
- "Manual": "Manual",
399
- "Number of desired classes (default 5)": "Número de clases deseadas (predeterminadas 5)",
400
- "Quantiles": "Cuantiles",
401
- "Show this layer in the caption": "Mostrar esta capa en la leyenda",
402
- "Back to preview": "Volver a la vista previa",
403
- "Drawing": "Dibujo",
404
- "Edit the title of the map": "Editar el título del mapa",
405
- "Go to the homepage": "Ir a la página de inicio",
406
- "Switch to edit mode": "Cambiar al modo de edición",
407
- "Update who can see and edit the map": "Actualizar quién puede ver y editar el mapa",
408
- "View": "Vista",
409
- "Add image URL": "Add image URL",
410
- "Emoji & Character": "Emoji & Character",
411
- "Generic": "Generic",
412
- "Symbol": "Symbol",
413
- "Type char or paste emoji": "Type char or paste emoji",
414
- "URL": "URL",
415
- "If false, the polygon or line will act as a part of the underlying map.": "If false, the polygon or line will act as a part of the underlying map.",
416
- "Save map": "Save map",
417
- "Toggle edit mode": "Toggle edit mode",
418
- "All data and settings of the map": "All data and settings of the map",
419
- "Embed and link options": "Embed and link options",
420
- "Go to \"{coords}\"": "Go to \"{coords}\"",
421
- "Link to view the map": "Link to view the map",
422
- "No.": "No.",
423
- "Only visible layers' data": "Only visible layers' data",
424
- "Open share & download panel": "Open share & download panel",
425
- "OpenStreetMap": "OpenStreetMap",
426
- "See on OpenStreetMap": "See on OpenStreetMap",
427
- "Share and download": "Share and download",
428
- "Share this link to open a customized map view": "Share this link to open a customized map view",
429
- "Short link": "Short link",
430
- "Street": "Street",
431
- "Type a place name or coordinates": "Type a place name or coordinates",
432
- "copy": "copy",
433
- "full backup": "full backup",
434
- "settings": "settings"
437
+ "{distance} NM": "{distancia} NM",
438
+ "{distance} yd": "{distancia} yd"
435
439
  }