umap-project 2.6.3__py3-none-any.whl → 2.7.0__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.

Potentially problematic release.


This version of umap-project might be problematic. Click here for more details.

Files changed (137) hide show
  1. umap/__init__.py +1 -1
  2. umap/admin.py +64 -1
  3. umap/asgi.py +15 -0
  4. umap/context_processors.py +1 -0
  5. umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
  6. umap/locale/cs_CZ/LC_MESSAGES/django.po +96 -92
  7. umap/locale/de/LC_MESSAGES/django.mo +0 -0
  8. umap/locale/de/LC_MESSAGES/django.po +19 -18
  9. umap/locale/en/LC_MESSAGES/django.po +47 -43
  10. umap/locale/es/LC_MESSAGES/django.mo +0 -0
  11. umap/locale/es/LC_MESSAGES/django.po +134 -128
  12. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  13. umap/locale/fr/LC_MESSAGES/django.po +51 -47
  14. umap/locale/pt/LC_MESSAGES/django.mo +0 -0
  15. umap/locale/pt/LC_MESSAGES/django.po +64 -60
  16. umap/management/commands/clean_tilelayer.py +152 -0
  17. umap/management/commands/purge_purgatory.py +28 -0
  18. umap/models.py +27 -2
  19. umap/settings/base.py +3 -1
  20. umap/static/umap/base.css +4 -4
  21. umap/static/umap/css/contextmenu.css +6 -1
  22. umap/static/umap/css/icon.css +7 -2
  23. umap/static/umap/css/importers.css +4 -0
  24. umap/static/umap/img/16-white.svg +9 -2
  25. umap/static/umap/img/16.svg +1 -181
  26. umap/static/umap/img/24-white.svg +1 -0
  27. umap/static/umap/img/24.svg +1 -0
  28. umap/static/umap/img/importers/cadastrefr.svg +23 -0
  29. umap/static/umap/img/source/16-white.svg +10 -3
  30. umap/static/umap/img/source/16.svg +753 -197
  31. umap/static/umap/img/source/24-white.svg +3 -2
  32. umap/static/umap/img/source/24.svg +3 -2
  33. umap/static/umap/js/modules/autocomplete.js +7 -3
  34. umap/static/umap/js/modules/browser.js +54 -1
  35. umap/static/umap/js/modules/caption.js +16 -5
  36. umap/static/umap/js/modules/data/features.js +176 -2
  37. umap/static/umap/js/modules/data/layer.js +57 -40
  38. umap/static/umap/js/modules/formatter.js +3 -2
  39. umap/static/umap/js/modules/global.js +2 -0
  40. umap/static/umap/js/modules/importer.js +3 -0
  41. umap/static/umap/js/modules/importers/cadastrefr.js +62 -0
  42. umap/static/umap/js/modules/importers/communesfr.js +15 -3
  43. umap/static/umap/js/modules/permissions.js +123 -93
  44. umap/static/umap/js/modules/rendering/layers/classified.js +2 -0
  45. umap/static/umap/js/modules/rendering/ui.js +60 -213
  46. umap/static/umap/js/modules/share.js +1 -3
  47. umap/static/umap/js/modules/slideshow.js +1 -1
  48. umap/static/umap/js/modules/sync/engine.js +371 -14
  49. umap/static/umap/js/modules/sync/hlc.js +106 -0
  50. umap/static/umap/js/modules/sync/updaters.js +18 -6
  51. umap/static/umap/js/modules/sync/websocket.js +1 -1
  52. umap/static/umap/js/modules/tableeditor.js +1 -1
  53. umap/static/umap/js/modules/ui/base.js +2 -2
  54. umap/static/umap/js/modules/ui/contextmenu.js +51 -18
  55. umap/static/umap/js/modules/urls.js +5 -1
  56. umap/static/umap/js/modules/utils.js +28 -4
  57. umap/static/umap/js/umap.controls.js +73 -52
  58. umap/static/umap/js/umap.core.js +3 -3
  59. umap/static/umap/js/umap.forms.js +3 -1
  60. umap/static/umap/js/umap.js +115 -124
  61. umap/static/umap/locale/br.js +13 -4
  62. umap/static/umap/locale/br.json +13 -4
  63. umap/static/umap/locale/ca.js +28 -15
  64. umap/static/umap/locale/ca.json +28 -15
  65. umap/static/umap/locale/cs_CZ.js +87 -78
  66. umap/static/umap/locale/cs_CZ.json +87 -78
  67. umap/static/umap/locale/de.js +17 -8
  68. umap/static/umap/locale/de.json +17 -8
  69. umap/static/umap/locale/en.js +13 -2
  70. umap/static/umap/locale/en.json +13 -2
  71. umap/static/umap/locale/es.js +330 -319
  72. umap/static/umap/locale/es.json +330 -319
  73. umap/static/umap/locale/eu.js +10 -3
  74. umap/static/umap/locale/eu.json +10 -3
  75. umap/static/umap/locale/fa_IR.js +11 -4
  76. umap/static/umap/locale/fa_IR.json +11 -4
  77. umap/static/umap/locale/fr.js +15 -4
  78. umap/static/umap/locale/fr.json +15 -4
  79. umap/static/umap/locale/hu.js +10 -3
  80. umap/static/umap/locale/hu.json +10 -3
  81. umap/static/umap/locale/pt.js +17 -8
  82. umap/static/umap/locale/pt.json +17 -8
  83. umap/static/umap/locale/pt_PT.js +13 -4
  84. umap/static/umap/locale/pt_PT.json +13 -4
  85. umap/static/umap/locale/zh_TW.js +13 -4
  86. umap/static/umap/locale/zh_TW.json +13 -4
  87. umap/static/umap/map.css +44 -29
  88. umap/static/umap/unittests/hlc.js +165 -0
  89. umap/static/umap/unittests/sync.js +321 -15
  90. umap/static/umap/unittests/utils.js +47 -0
  91. umap/static/umap/vars.css +2 -1
  92. umap/static/umap/vendors/colorbrewer/colorbrewer.js +309 -317
  93. umap/static/umap/vendors/dompurify/purify.es.js +15 -16
  94. umap/static/umap/vendors/dompurify/purify.es.mjs.map +1 -1
  95. umap/static/umap/vendors/georsstogeojson/GeoRSSToGeoJSON.js +111 -80
  96. umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js +2 -2
  97. umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js.map +1 -1
  98. umap/static/umap/vendors/simple-statistics/simple-statistics.min.js +1 -1
  99. umap/static/umap/vendors/simple-statistics/simple-statistics.min.js.map +1 -1
  100. umap/templates/umap/css.html +0 -2
  101. umap/templates/umap/dashboard_menu.html +4 -2
  102. umap/templates/umap/js.html +0 -5
  103. umap/templates/umap/map_detail.html +2 -2
  104. umap/tests/fixtures/test_upload_data.csv +2 -2
  105. umap/tests/integration/test_anonymous_owned_map.py +1 -0
  106. umap/tests/integration/test_basics.py +1 -1
  107. umap/tests/integration/test_browser.py +69 -7
  108. umap/tests/integration/test_caption.py +3 -3
  109. umap/tests/integration/test_circles_layer.py +12 -0
  110. umap/tests/integration/test_datalayer.py +2 -1
  111. umap/tests/integration/test_draw_polygon.py +17 -9
  112. umap/tests/integration/test_draw_polyline.py +12 -8
  113. umap/tests/integration/test_edit_datalayer.py +5 -8
  114. umap/tests/integration/test_edit_map.py +2 -2
  115. umap/tests/integration/test_edit_marker.py +1 -1
  116. umap/tests/integration/test_facets_browser.py +3 -3
  117. umap/tests/integration/test_import.py +1 -0
  118. umap/tests/integration/test_map.py +1 -0
  119. umap/tests/integration/test_owned_map.py +1 -1
  120. umap/tests/integration/test_view_marker.py +63 -0
  121. umap/tests/integration/test_view_polygon.py +12 -12
  122. umap/tests/integration/test_websocket_sync.py +65 -3
  123. umap/tests/test_clean_tilelayer.py +83 -0
  124. umap/tests/test_datalayer.py +24 -0
  125. umap/tests/test_map_views.py +20 -0
  126. umap/tests/test_purge_purgatory.py +25 -0
  127. umap/tests/test_websocket_server.py +22 -0
  128. umap/urls.py +5 -1
  129. umap/views.py +6 -3
  130. umap/websocket_server.py +130 -27
  131. {umap_project-2.6.3.dist-info → umap_project-2.7.0.dist-info}/METADATA +18 -14
  132. {umap_project-2.6.3.dist-info → umap_project-2.7.0.dist-info}/RECORD +135 -127
  133. umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.css +0 -1
  134. umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.js +0 -7
  135. {umap_project-2.6.3.dist-info → umap_project-2.7.0.dist-info}/WHEEL +0 -0
  136. {umap_project-2.6.3.dist-info → umap_project-2.7.0.dist-info}/entry_points.txt +0 -0
  137. {umap_project-2.6.3.dist-info → umap_project-2.7.0.dist-info}/licenses/LICENSE +0 -0
@@ -1,142 +1,142 @@
1
1
  {
2
2
  "(area: {measure})": "(área: {measure})",
3
3
  "(length: {measure})": "(longitud: {measure})",
4
- "# one hash for main heading": "# una almohadilla para el encabezado principal",
5
- "## two hashes for second heading": "## dos almohadillas para el encabezado secundario",
6
- "### three hashes for third heading": "### tres almohadillas para el encabezado ternario",
4
+ "# one hash for main heading": "# una almohadilla para el título principal",
5
+ "## two hashes for second heading": "## dos almohadillas para el subtítulo",
6
+ "### three hashes for third heading": "### tres almohadillas para el título de tercer nivel",
7
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",
8
+ "*single star for italic*": "*un asterisco para cursiva*",
9
+ "--- for a horizontal rule": "--- para una línea horizontal",
10
10
  "1 day": "1 día",
11
11
  "1 hour": "1 hora",
12
12
  "5 min": "5 min",
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\".",
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 guiones. Ej.: \"5, 10, 15\".",
14
14
  "About": "Acerca de",
15
15
  "Action not allowed :(": "Acción no permitida :(",
16
- "Activate slideshow mode": "Activar el modo presentación de diapositivas",
16
+ "Activate slideshow mode": "Activar modo de presentación",
17
17
  "Add a layer": "Añadir una capa",
18
- "Add a line to the current multi": "Añadir una línea para el multi elemento actual",
18
+ "Add a line to the current multi": "Añadir una línea al multielemento actual",
19
19
  "Add a new property": "Añadir una nueva propiedad",
20
- "Add a polygon to the current multi": "Añadir un polígono al multi elemento actual",
21
- "Add image URL": "Añadir URL de la imagen",
20
+ "Add a polygon to the current multi": "Añadir un polígono al multielemento actual",
21
+ "Add image URL": "Añadir URL de imagen",
22
22
  "Add": "Añadir",
23
23
  "Advanced actions": "Acciones avanzadas",
24
24
  "Advanced properties": "Propiedades avanzadas",
25
- "All data and settings of the map": "All data and settings of the map",
26
- "All properties are imported.": "Todas las propiedades están importadas.",
25
+ "All data and settings of the map": "Todos los datos y ajustes del mapa",
26
+ "All properties are imported.": "Todas las propiedades se importaron.",
27
27
  "Allow interactions": "Permitir interacciones",
28
- "Allow scroll wheel zoom?": "¿Permitir acercar con la rueda central del ratón?",
28
+ "Allow scroll wheel zoom?": "¿Permitir zoom con la rueda de desplazamiento?",
29
29
  "always": "siempre",
30
30
  "Animated transitions": "Transiciones animadas",
31
- "Are you sure you want to cancel your changes?": "¿Está seguro que quiere cancelar sus cambios?",
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?",
33
- "Are you sure you want to delete the feature?": "¿Está seguro que quiere borrar el elemento?",
34
- "Are you sure you want to delete this layer?": "¿Está seguro que quiere borrar esta capa?",
35
- "Are you sure you want to delete this map?": "¿Está seguro que quiere borrar este mapa?",
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?",
37
- "Are you sure you want to restore this version?": "¿Está seguro que quiere restaurar esta versión?",
31
+ "Are you sure you want to cancel your changes?": "¿Estás seguro de que quieres cancelar los cambios?",
32
+ "Are you sure you want to clone this map and all its datalayers?": "¿Estás seguro de que quieres clonar este mapa y todas sus capas de datos?",
33
+ "Are you sure you want to delete the feature?": "¿Estás seguro de que quieres eliminar el elemento?",
34
+ "Are you sure you want to delete this layer?": "¿Estás seguro de que quieres eliminar esta capa?",
35
+ "Are you sure you want to delete this map?": "¿Estás seguro de que quieres eliminar este mapa?",
36
+ "Are you sure you want to delete this property on all the features?": "¿Estás seguro de que quieres eliminar esta propiedad en todos los elementos?",
37
+ "Are you sure you want to restore this version?": "¿Estás seguro de que quieres restaurar esta versión?",
38
38
  "Attach the map to my account": "Adjuntar el mapa a mi cuenta",
39
39
  "attribution": "atribución",
40
40
  "Auto": "Automático",
41
41
  "Automatic": "Automático",
42
- "Autostart when map is loaded": "Autocomenzar cuando el mapa esté cargado",
42
+ "Autostart when map is loaded": "Inicio automático al cargar el mapa",
43
43
  "Back to preview": "Volver a la vista previa",
44
- "Background overlay url": "Url de superposición de fondo",
44
+ "Background overlay url": "URL de superposición de fondo",
45
45
  "Ball": "Bola",
46
- "Bring feature to center": "Bring feature to center",
47
- "Browse data": "Navegar los datos",
46
+ "Bring feature to center": "Centrar el elemento",
47
+ "Browse data": "Explorar datos",
48
48
  "by": "por",
49
- "Cache proxied request": "Caché de la petición proxy",
50
- "Cancel edits": "Cancelar las ediciones",
51
- "Caption": "Subtítulo",
52
- "Center map on your location": "Centrar el mapa en su ubicación",
49
+ "Cache proxied request": "Almacenar en caché la solicitud de proxy",
50
+ "Cancel edits": "Cancelar ediciones",
51
+ "Caption": "Leyenda",
52
+ "Center map on your location": "Centrar el mapa en tu ubicación",
53
53
  "Change map background": "Cambiar el fondo del mapa",
54
- "Change tilelayers": "Cambiar la capa de teselas",
54
+ "Change tilelayers": "Cambiar capas de teselas",
55
55
  "Change": "Cambiar",
56
56
  "Choose the data format": "Elegir el formato de datos",
57
- "Choropleth breakpoints": "Puntos de ruptura de la Coropleta",
58
- "Choropleth classes": "Clases de coropletas",
59
- "Choropleth color palette": "Paleta de colores Coropleta",
60
- "Choropleth mode": "Modo Coropleta",
61
- "Choropleth property value": "Valor de la propiedad Choropleta",
62
- "Choropleth": "Coropleto",
57
+ "Choropleth breakpoints": "Puntos de quiebre del coropleta",
58
+ "Choropleth classes": "Clases de coropleta",
59
+ "Choropleth color palette": "Paleta de colores del coropleta",
60
+ "Choropleth mode": "Modo coropleta",
61
+ "Choropleth property value": "Valor de propiedad del coropleta",
62
+ "Choropleth": "Coropleta",
63
63
  "Circle": "Círculo",
64
64
  "clear": "limpiar",
65
- "Click last point to finish shape": "Haga clic en el último punto para terminar la figura",
66
- "Click to add a marker": "Haga clic para añadir un marcador",
67
- "Click to continue drawing": "Haga clic para continuar dibujando",
68
- "Click to edit": "Clic para editar",
69
- "Click to start drawing a line": "Haga clic para empezar a dibujar una línea",
70
- "Click to start drawing a polygon": "Haga clic para empezar a dibujar un polígono",
71
- "Clone of {name}": "Clón de {name}",
65
+ "Click last point to finish shape": "Haz clic en el último punto para terminar la forma",
66
+ "Click to add a marker": "Haz clic para añadir un marcador",
67
+ "Click to continue drawing": "Haz clic para continuar dibujando",
68
+ "Click to edit": "Haz clic para editar",
69
+ "Click to start drawing a line": "Haz clic para empezar a dibujar una línea",
70
+ "Click to start drawing a polygon": "Haz clic para empezar a dibujar un polígono",
71
+ "Clone of {name}": "Copia de {name}",
72
72
  "Clone this feature": "Clonar este elemento",
73
73
  "Clone this map": "Clonar este mapa",
74
74
  "Clone": "Clonar",
75
75
  "Close": "Cerrar",
76
- "Clustered": "Agrupados",
76
+ "Clustered": "Agrupado",
77
77
  "Clustering radius": "Radio de agrupamiento",
78
78
  "collapsed": "contraído",
79
79
  "color": "color",
80
- "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.",
81
- "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.",
82
- "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.",
83
- "Congratulations, your map has been created!": "Enhorabuena, ¡su mapa ha sido creado!",
80
+ "Comma separated list of numbers, including min and max values.": "Lista de números separados por comas, incluyendo valores mínimos y máximos.",
81
+ "Comma separated list of properties to use for sorting features. To reverse the sort, put a minus sign (-) before. Eg. mykey,-otherkey.": "Lista de propiedades separadas por comas para ordenar elementos. Para invertir el orden, coloca un signo menos (-) antes. Ej. miclave,-otraclave.",
82
+ "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, tabulación o punto y coma. Se asume SRS WGS84. Solo se importan geometrías de punto. La importación buscará en los encabezados de columna cualquier mención de «lat» y «lon» al principio del encabezado, sin distinción entre mayúsculas y minúsculas. Todas las demás columnas se importan como propiedades.",
83
+ "Congratulations, your map has been created!": "¡Felicidades, tu mapa ha sido creado!",
84
84
  "Continue line": "Línea continua",
85
85
  "Coordinates": "Coordenadas",
86
86
  "copy": "copiar",
87
87
  "Credits": "Créditos",
88
- "Current map view": "Current map view",
89
- "Current view instead of default map view?": "¿Vista actual en lugar de la vista del mapa predeterminada?",
88
+ "Current map view": "Vista actual del mapa",
89
+ "Current view instead of default map view?": "¿Vista actual en lugar de la vista de mapa predeterminada?",
90
90
  "Custom background": "Fondo personalizado",
91
91
  "Custom overlay": "Superposición personalizada",
92
- "dash array": "serie de guiones",
92
+ "dash array": "Matriz de guiones",
93
93
  "Data is browsable": "Los datos son navegables",
94
94
  "Datalayers": "Capas de datos",
95
- "Default interaction options": "Opciones de interacción predeterminados",
95
+ "Default interaction options": "Opciones de interacción predeterminadas",
96
96
  "Default properties": "Propiedades predeterminadas",
97
- "Default shape properties": "Propiedades de la figura predeterminada",
97
+ "Default shape properties": "Propiedades de forma predeterminadas",
98
98
  "Default view": "Vista predeterminada",
99
- "Default zoom level": "Nivel de acercamiento predeterminado",
99
+ "Default zoom level": "Nivel de zoom predeterminado",
100
100
  "Default": "Predeterminado",
101
101
  "Default: name": "Predeterminado: nombre",
102
- "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.",
102
+ "Define link to open in a new window on polygon click.": "Define un enlace para abrir en una nueva ventana al hacer clic en el polígono.",
103
103
  "define": "definir",
104
- "Delay between two transitions when in play mode": "Retraso entre dos transiciones cuando se está en el modo de reproducción",
105
- "Delete layer": "Borrar capa",
106
- "Delete this feature": "Borrar este elemento",
107
- "Delete this shape": "Borrar esta figura",
108
- "Delete this vertex (Alt+Click)": "Borrar este vértice (Alt+Clic)",
109
- "Delete": "Borrar",
104
+ "Delay between two transitions when in play mode": "Retraso entre dos transiciones en modo de reproducción",
105
+ "Delete layer": "Eliminar capa",
106
+ "Delete this feature": "Eliminar este elemento",
107
+ "Delete this shape": "Eliminar esta forma",
108
+ "Delete this vertex (Alt+Click)": "Eliminar este vértice (Alt+Clic)",
109
+ "Delete": "Eliminar",
110
110
  "description": "descripción",
111
111
  "Direct link": "Enlace directo",
112
- "Directions from here": "Direcciones desde aquí",
112
+ "Directions from here": "Indicaciones desde aquí",
113
113
  "Display label": "Mostrar etiqueta",
114
114
  "Display measure": "Mostrar medición",
115
- "display name": "mostrar nombre",
115
+ "display name": "nombre para mostrar",
116
116
  "Display on load": "Mostrar al cargar",
117
- "Display the control to open OpenStreetMap editor": "Mostrar el control para abrir el editor OpenStreetMap",
118
- "Display the embed control": "Mostrar el control de embebido",
117
+ "Display the control to open OpenStreetMap editor": "Mostrar el control para abrir el editor de OpenStreetMap",
118
+ "Display the embed control": "Mostrar el control de incrustación",
119
119
  "Display the fullscreen control": "Mostrar el control de pantalla completa",
120
120
  "Display the locate control": "Mostrar el control de ubicación",
121
- "Display the measure control": "Mostrar el control de medida",
121
+ "Display the measure control": "Mostrar el control de medición",
122
122
  "Display the search control": "Mostrar el control de búsqueda",
123
- "Display the star map button": "Mostrar el botón del mapa de estrellas",
123
+ "Display the star map button": "Mostrar el botón de mapa destacado",
124
124
  "Display the tile layers control": "Mostrar el control de capas de teselas",
125
- "Display the zoom control": "Mostrar el control de acercamiento",
126
- "Do you want to display a caption bar?": "¿Quiere mostrar la barra de subtítulos?",
127
- "Do you want to display a minimap?": "¿Quiere mostrar un minimapa?",
128
- "Do you want to display a panel on load?": "¿Quiere mostrar un panel al cargar?",
129
- "Do you want to display caption menus?": "Do you want to display caption menus?",
130
- "Do you want to display popup footer?": "¿Quiere mostrar la ventana emergente en el pie de página?",
131
- "Do you want to display the scale control?": "¿Quiere mostrar el control de escala?",
132
- "Do you want to display the «more» control?": "¿Quiere mostrar el control «más»?",
125
+ "Display the zoom control": "Mostrar el control de zoom",
126
+ "Do you want to display a caption bar?": "¿Quieres mostrar una barra de título?",
127
+ "Do you want to display a minimap?": "¿Quieres mostrar un minimapa?",
128
+ "Do you want to display a panel on load?": "¿Quieres mostrar un panel al cargar?",
129
+ "Do you want to display caption menus?": "¿Quieres mostrar los menús de título?",
130
+ "Do you want to display popup footer?": "¿Quieres mostrar el pie de página emergente?",
131
+ "Do you want to display the scale control?": "¿Quieres mostrar el control de escala?",
132
+ "Do you want to display the «more» control?": "¿Quieres mostrar el control «más»?",
133
133
  "Download": "Descargar",
134
134
  "Drag to reorder": "Arrastrar para reordenar",
135
- "Draw a marker": "Dibuja un marcador",
136
- "Draw a polygon": "Dibuja un polígono",
137
- "Draw a polyline": "Dibuja una polilínea",
135
+ "Draw a marker": "Dibujar un marcador",
136
+ "Draw a polygon": "Dibujar un polígono",
137
+ "Draw a polyline": "Dibujar una polilínea",
138
138
  "Drawing": "Dibujo",
139
- "Drop": "Gota",
139
+ "Drop": "Soltar",
140
140
  "Dynamic properties": "Propiedades dinámicas",
141
141
  "Dynamic": "Dinámico",
142
142
  "Edit feature's layer": "Editar la capa del elemento",
@@ -144,104 +144,104 @@
144
144
  "Edit the title of the map": "Editar el título del mapa",
145
145
  "Edit this feature": "Editar este elemento",
146
146
  "Edit": "Editar",
147
- "Embed and link options": "Embed and link options",
148
- "Embed the map": "Embeber el mapa",
149
- "Emoji & Character": "Emoji & Character",
147
+ "Embed and link options": "Opciones de incrustación y enlace",
148
+ "Embed the map": "Incrustar el mapa",
149
+ "Emoji & Character": "Emoji y carácter",
150
150
  "Empty": "Vaciar",
151
151
  "Equidistant": "Equidistante",
152
- "Error in the overlay URL": "Error en la URL de la superposición",
153
- "Error in the tilelayer URL": "Error en la URL del la capa de teselas",
154
- "Exit Fullscreen": "Salir de la pantalla completa",
152
+ "Error in the overlay URL": "Error en la URL de superposición",
153
+ "Error in the tilelayer URL": "Error en la URL de la capa de teselas",
154
+ "Exit Fullscreen": "Salir de pantalla completa",
155
155
  "expanded": "expandido",
156
- "Extract shape to separate feature": "Extraer la figura a un elemento separado",
157
- "Feature identifier key": "Clave de identificación del elemento",
158
- "Feature properties": "Propiedades de las funciones",
159
- "Fetch data each time map view changes.": "Traer datos cada vez que la vista del mapa cambie.",
156
+ "Extract shape to separate feature": "Extraer forma a un elemento separado",
157
+ "Feature identifier key": "Clave identificadora del elemento",
158
+ "Feature properties": "Propiedades del elemento",
159
+ "Fetch data each time map view changes.": "Obtener datos cada vez que cambie la vista del mapa.",
160
160
  "fill color": "color de relleno",
161
- "fill opacity": "opacidad del relleno",
162
- "fill": "rellenar",
163
- "Fit all data": "Ajustar todos los datos",
161
+ "fill opacity": "opacidad de relleno",
162
+ "fill": "relleno",
163
+ "Fit all data": "Ajustar a todos los datos",
164
164
  "Format": "Formato",
165
- "From zoom": "Desde el acercamiento",
166
- "full backup": "full backup",
167
- "Generic": "Generic",
168
- "GeoRSS (only link)": "GeoRSS (sólo enlace)",
165
+ "From zoom": "Desde zoom",
166
+ "full backup": "copia de seguridad completa",
167
+ "Generic": "Genérico",
168
+ "GeoRSS (only link)": "GeoRSS (solo enlace)",
169
169
  "GeoRSS (title + image)": "GeoRSS (título + imagen)",
170
- "Go to \"{coords}\"": "Go to \"{coords}\"",
170
+ "Go to \"{coords}\"": "Ir a \"{coords}\"",
171
171
  "Go to the homepage": "Ir a la página de inicio",
172
172
  "Go to «{feature}»": "Ir a «{feature}»",
173
- "Heatmap intensity property": "Propiedad de la intensidad del mapa de calor",
173
+ "Heatmap intensity property": "Propiedad de intensidad del mapa de calor",
174
174
  "Heatmap radius": "Radio del mapa de calor",
175
175
  "Heatmap": "Mapa de calor",
176
176
  "height": "altura",
177
177
  "Help": "Ayuda",
178
- "hidden": "escondido",
178
+ "hidden": "oculto",
179
179
  "Hide controls": "Ocultar controles",
180
180
  "Home": "Inicio",
181
- "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)",
181
+ "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 zoom (más = mejor rendimiento y apariencia más suave, menos = más preciso)",
182
182
  "icon opacity": "opacidad del icono",
183
- "Icon shape": "Forma de icono",
183
+ "Icon shape": "Forma del icono",
184
184
  "Icon symbol": "Símbolo del icono",
185
- "If false, the polygon or line will act as a part of the underlying map.": "Si está desactivado el polígono o la línea será como una parte del mapa subyacente.",
186
- "Iframe with custom height (in px): {{{http://iframe.url.com|height}}}": "Iframe con altura personalizada (en píxeles): {{{http://iframe.url.com|altura}}}",
187
- "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}}}",
185
+ "If false, the polygon or line will act as a part of the underlying map.": "Si es falso, el polígono o la línea actuarán como parte del mapa subyacente.",
186
+ "Iframe with custom height (in px): {{{http://iframe.url.com|height}}}": "Iframe con altura personalizada (en px): {{{http://iframe.url.com|altura}}}",
187
+ "Iframe with custom height and width (in px): {{{http://iframe.url.com|height*width}}}": "Iframe con altura y ancho personalizados (en px): {{{http://iframe.url.com|altura*ancho}}}",
188
188
  "iframe": "iframe",
189
189
  "Iframe: {{{http://iframe.url.com}}}": "Iframe: {{{http://iframe.url.com}}}",
190
- "Image with custom width (in px): {{http://image.url.com|width}}": "Imagen con anchura personalizada (en píxeles): {{http://imagen.url.com|anchura}}",
191
- "Image: {{http://image.url.com}}": "Imagen: {{http://imagen.url.com}}",
190
+ "Image with custom width (in px): {{http://image.url.com|width}}": "Imagen con ancho personalizado (en px): {{http://image.url.com|ancho}}",
191
+ "Image: {{http://image.url.com}}": "Imagen: {{http://image.url.com}}",
192
192
  "Import data": "Importar datos",
193
193
  "Import in a new layer": "Importar en una nueva capa",
194
- "Imports all umap data, including layers and settings.": "Importar todos los datos umap, incluyendo capas y ajustes.",
195
- "Include full screen link?": "¿Incluir el enlace a pantalla completa?",
194
+ "Imports all umap data, including layers and settings.": "Importa todos los datos de uMap, incluyendo capas y configuraciones.",
195
+ "Include full screen link?": "¿Incluir enlace a pantalla completa?",
196
196
  "Inherit": "Heredar",
197
197
  "inherit": "heredar",
198
198
  "Interaction options": "Opciones de interacción",
199
- "Invalid latitude or longitude": "Invalid latitude or longitude",
200
- "Invalid umap data in {filename}": "Datos umap inválido en {filename}",
201
- "Invalid umap data": "Datos umap inválido",
199
+ "Invalid latitude or longitude": "Latitud o longitud inválida",
200
+ "Invalid umap data in {filename}": "Datos de uMap inválidos en {filename}",
201
+ "Invalid umap data": "Datos de uMap inválidos",
202
202
  "Jenks-Fisher": "Jenks-Fisher",
203
203
  "K-means": "K-medias",
204
- "Keep current visible layers": "Guardar capas visibles actuales",
204
+ "Keep current visible layers": "Mantener las capas visibles actuales",
205
205
  "kilometers": "kilómetros",
206
206
  "km": "km",
207
207
  "Label direction": "Dirección de la etiqueta",
208
- "Label key": "Etiqueta de la clave",
209
- "Labels are clickable": "Las etiquetas se pueden hacer clic",
210
- "Latest feature": "Última novedad",
208
+ "Label key": "Clave de etiqueta",
209
+ "Labels are clickable": "Etiquetas cliqueables / en las que se puede hacer clic",
210
+ "Latest feature": "Último elemento",
211
211
  "Latitude": "Latitud",
212
212
  "Layer properties": "Propiedades de la capa",
213
213
  "Layer": "Capa",
214
214
  "Licence": "Licencia",
215
215
  "licence": "licencia",
216
216
  "Limit bounds": "Límites",
217
- "Link to view the map": "Link to view the map",
217
+ "Link to view the map": "Enlace para ver el mapa",
218
218
  "Link to…": "Enlace a...",
219
- "Link with text: [[http://example.com|text of the link]]": "Enlace con texto: [[http://ejemplo.com|texto del enlace]]",
219
+ "Link with text: [[http://example.com|text of the link]]": "Enlace con texto: [[http://example.com|texto del enlace]]",
220
220
  "Long credits": "Créditos largos",
221
221
  "Longitude": "Longitud",
222
- "Make main shape": "Hacer la figura principal",
223
- "Manage layers": "Gestionar capas",
222
+ "Make main shape": "Convertir en forma principal",
223
+ "Manage layers": "Administrar capas",
224
224
  "Manual": "Manual",
225
225
  "Map background credits": "Créditos del fondo del mapa",
226
- "Map has been attached to your account": "El mapa se ha adjuntado a su cuenta",
227
- "Map has been saved!": "¡Se ha guardado el mapa!",
226
+ "Map has been attached to your account": "El mapa se ha adjuntado a tu cuenta",
227
+ "Map has been saved!": "¡Mapa guardado!",
228
228
  "Map has been starred": "El mapa ha sido marcado con una estrella",
229
- "Map has been unstarred": "El mapa se ha desprotegido",
230
- "Map user content has been published under licence": "El contenido del mapa del usuario se ha publicado bajo la licencia",
229
+ "Map has been unstarred": "El mapa ha sido desmarcado",
230
+ "Map user content has been published under licence": "El contenido del mapa del usuario ha sido publicado bajo licencia",
231
231
  "Map's editors": "Editores del mapa",
232
232
  "Map's owner": "Propietario del mapa",
233
- "max East": "máximo Este",
234
- "max North": "máximo Norte",
235
- "max South": "máximo Sur",
236
- "max West": "máximo Oeste",
237
- "max zoom": "acercamiento máximo",
233
+ "max East": "Este máx.",
234
+ "max North": "Norte máx.",
235
+ "max South": "Sur máx.",
236
+ "max West": "Oeste máx.",
237
+ "max zoom": "zoom máximo",
238
238
  "Measure distances": "Medir distancias",
239
239
  "Merge lines": "Combinar líneas",
240
240
  "mi": "mi",
241
241
  "miles": "millas",
242
- "min zoom": "acercamiento mínimo",
242
+ "min zoom": "zoom mínimo",
243
243
  "More controls": "Más controles",
244
- "Must be a valid CSS value (eg.: DarkBlue or #123456)": "Debe ser un valor CSS válido (por ejemplo: DarkBlue o #123456)",
244
+ "Must be a valid CSS value (eg.: DarkBlue or #123456)": "Debe ser un valor CSS válido (ej.: DarkBlue o #123456)",
245
245
  "name": "nombre",
246
246
  "nautical miles": "millas náuticas",
247
247
  "never": "nunca",
@@ -249,148 +249,148 @@
249
249
  "next": "siguiente",
250
250
  "NM": "NM",
251
251
  "No cache": "Sin caché",
252
- "No licence has been set": "Ninguna licencia se ha establecida",
252
+ "No licence has been set": "No se ha establecido ninguna licencia",
253
253
  "No results": "Sin resultados",
254
254
  "no": "no",
255
- "No.": "No.",
255
+ "No.": "Núm.",
256
256
  "None": "Ninguno",
257
- "Number of desired classes (default 5)": "Número de clases deseadas (predeterminadas 5)",
257
+ "Number of desired classes (default 5)": "Número de clases deseadas (5 por defecto)",
258
258
  "On the bottom": "En la parte inferior",
259
259
  "On the left": "A la izquierda",
260
260
  "On the right": "A la derecha",
261
261
  "On the top": "En la parte superior",
262
- "Only visible layers' data": "Only visible layers' data",
262
+ "Only visible layers' data": "Solo datos de capas visibles",
263
263
  "opacity": "opacidad",
264
264
  "Opacity": "Opacidad",
265
265
  "Open current feature on load": "Abrir el elemento actual al cargar",
266
- "Open link in…": "Abrir enlace en...",
267
- "Open share & download panel": "Open share & download panel",
268
- "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",
266
+ "Open link in…": "Abrir enlace en",
267
+ "Open share & download panel": "Abrir panel de compartir y descargar",
268
+ "Open this map extent in a map editor to provide more accurate data to OpenStreetMap": "Abre esta extensión de mapa en un editor de mapas para proporcionar datos más precisos a OpenStreetMap",
269
269
  "OpenStreetMap": "OpenStreetMap",
270
- "Optional intensity property for heatmap": "Propiedad de intensidad opcional para el mapa de calor",
271
- "Optional. Same as color if not set.": "Opcional. Igual que el color si no está establecido.",
270
+ "Optional intensity property for heatmap": "Propiedad de intensidad opcional para mapa de calor",
271
+ "Optional. Same as color if not set.": "Opcional. Igual que el color si no se establece.",
272
272
  "Optional.": "Opcional.",
273
- "Override clustering radius (default 80)": "Sobrescribir el radio de agrupación (predeterminado 80)",
274
- "Override heatmap radius (default 25)": "Sobrescribir el radio del mapa de calor (predeterminado 25)",
275
- "parent window": "ventana principal",
273
+ "Override clustering radius (default 80)": "Anular el radio de agrupamiento (80 por defecto)",
274
+ "Override heatmap radius (default 25)": "Anular el radio del mapa de calor (25 por defecto)",
275
+ "parent window": "ventana padre",
276
276
  "Paste your data here": "Pega tus datos aquí",
277
- "Permalink": "Permalink",
278
- "Permanent credits background": "Permanent credits background",
279
- "Permanent credits": "Permanent credits",
280
- "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.",
281
- "Please choose a format": "Elija un formato",
282
- "Please enter the name of the property": "Introduzca el nombre de la propiedad",
283
- "Please enter the new name of this property": "Introduzca el nuevo nombre de esta propiedad",
284
- "Please save the map first": "Guarde primero el mapa",
277
+ "Permalink": "Enlace permanente",
278
+ "Permanent credits background": "Fondo de créditos permanente",
279
+ "Permanent credits": "Créditos permanentes",
280
+ "Please be sure the licence is compliant with your use.": "Asegúrate de que la licencia sea compatible con tu uso.",
281
+ "Please choose a format": "Elige un formato",
282
+ "Please enter the name of the property": "Introduce el nombre de la propiedad",
283
+ "Please enter the new name of this property": "Introduce el nuevo nombre de esta propiedad",
284
+ "Please save the map first": "Guarda el mapa primero",
285
285
  "Popup (large)": "Ventana emergente (grande)",
286
286
  "Popup content style": "Estilo del contenido emergente",
287
287
  "Popup content template": "Plantilla de contenido emergente",
288
- "Popup shape": "Forma de la ventana emergente",
289
- "Popup": "Ventana emergente",
288
+ "Popup shape": "Forma del elemento emergente",
289
+ "Popup": "Ventana emergente / emergente",
290
290
  "Powered by uMap": "Desarrollado por uMap",
291
291
  "previous": "anterior",
292
- "Problem in the response": "Problem in the response",
292
+ "Problem in the response": "Problema en la respuesta",
293
293
  "Properties imported:": "Propiedades importadas:",
294
- "Provide an URL here": "Proporcione una URL aquí",
295
- "Proxy request": "Petición proxy",
294
+ "Provide an URL here": "Proporciona una URL aquí",
295
+ "Proxy request": "Solicitud proxy",
296
296
  "Quantiles": "Cuantiles",
297
- "Recent": "Recent",
297
+ "Recent": "Recientes",
298
298
  "Remote data": "Datos remotos",
299
- "Remove shape from the multi": "Quitar la figura del multi elemento",
300
- "Replace layer content": "Reemplaza el contenido de la capa",
299
+ "Remove shape from the multi": "Eliminar forma del multielemento",
300
+ "Replace layer content": "Reemplazar el contenido de la capa",
301
301
  "Restore this version": "Restaurar esta versión",
302
302
  "Save current edits": "Guardar las ediciones actuales",
303
- "Save map": "Guardar el mapa",
304
- "Save this center and zoom": "Guardar este centrado y acercamiento",
305
- "Save this location as new feature": "Guardar esta ubicación como nuevo elemento",
303
+ "Save map": "Guardar mapa",
304
+ "Save this center and zoom": "Guardar este centro y zoom",
305
+ "Save this location as new feature": "Guardar esta ubicación como un nuevo elemento",
306
306
  "Save": "Guardar",
307
307
  "Saved center and zoom": "Centro y zoom guardados",
308
308
  "Search location": "Buscar ubicación",
309
309
  "Search": "Buscar",
310
310
  "Secret edit link:": "Enlace secreto de edición:",
311
- "See full screen": "Ver pantalla completa",
312
- "See on OpenStreetMap": "See on OpenStreetMap",
313
- "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...",
314
- "settings": "settings",
315
- "Shape properties": "Propiedades de la figura",
316
- "Share and download": "Share and download",
317
- "Share this link to open a customized map view": "Share this link to open a customized map view",
311
+ "See full screen": "Ver en pantalla completa",
312
+ "See on OpenStreetMap": "Ver en OpenStreetMap",
313
+ "Set it to false to hide this layer from the slideshow, the data browser, the popup navigation…": "Establécelo en falso para ocultar esta capa de la presentación de diapositivas, el explorador de datos, la navegación emergente",
314
+ "settings": "ajustes",
315
+ "Shape properties": "Propiedades de la forma",
316
+ "Share and download": "Compartir y descargar",
317
+ "Share this link to open a customized map view": "Comparte este enlace para abrir una vista de mapa personalizada",
318
318
  "Short credits": "Créditos cortos",
319
- "Short link": "Short link",
319
+ "Short link": "Enlace corto",
320
320
  "Show this layer in the caption": "Mostrar esta capa en la leyenda",
321
321
  "Show/hide layer": "Mostrar/ocultar capa",
322
322
  "Side panel": "Panel lateral",
323
- "Simple link: [[http://example.com]]": "Enlace simple: [[http://ejemplo.com]]",
323
+ "Simple link: [[http://example.com]]": "Enlace simple: [[http://example.com]]",
324
324
  "Simplify": "Simplificar",
325
- "Skipping unknown geometry.type: {type}": "Ignorando tipo de geometría desconocida: {type}",
325
+ "Skipping unknown geometry.type: {type}": "Omitiendo geometry.type desconocido: {type}",
326
326
  "Slideshow": "Presentación de diapositivas",
327
- "Sort key": "Orden de la clave",
328
- "Split line": "Linea de división",
327
+ "Sort key": "Clave de ordenación",
328
+ "Split line": "Línea de división",
329
329
  "Star this map": "Marcar este mapa con una estrella",
330
- "Start a hole here": "Iniciar un agujero aquí",
331
- "Start slideshow": "Iniciar presentación de diapositivas",
332
- "Stop editing": "Parar de editar",
333
- "Stop slideshow": "Parar presentación de diapositivas",
334
- "Street": "Street",
330
+ "Start a hole here": "Empezar un agujero aquí",
331
+ "Start slideshow": "Iniciar presentación",
332
+ "Stop editing": "Detener edición",
333
+ "Stop slideshow": "Detener presentación",
334
+ "Street": "Calle",
335
335
  "stroke": "trazo",
336
- "Supported scheme": "Esquema soportado",
337
- "Supported variables that will be dynamically replaced": "Las variables soportadas que serán reemplazadas dinámicamente",
338
- "Symbol": "Symbol",
336
+ "Supported scheme": "Esquema compatible",
337
+ "Supported variables that will be dynamically replaced": "Variables compatibles que se reemplazarán dinámicamente",
338
+ "Symbol": "Símbolo",
339
339
  "Table": "Tabla",
340
- "Text color for the cluster label": "Color del texto para la etiqueta clúster",
340
+ "Text color for the cluster label": "Color del texto de la etiqueta del clúster",
341
341
  "Text formatting": "Formato de texto",
342
- "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.: \"nombre\"). También puede utilizar propiedades entre llaves para utilizar más de una o mezclarlas con contenido estático (p. ej.: \"{nombre} en {lugar}\").",
342
+ "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 para usar como etiqueta de elemento (ej.: \"nombre\"). También puedes usar propiedades entre llaves para usar más de una o mezclar con contenido estático (p. ej.: \"{nombre} en {lugar}\")",
343
343
  "The name of the property to use as feature unique identifier.": "El nombre de la propiedad a utilizar como identificador único del elemento.",
344
344
  "The zoom and center have been modified.": "Se han modificado el zoom y el centro.",
345
345
  "TMS format": "formato TMS",
346
- "To use if remote server doesn't allow cross domain (slower)": "Para utilizar si el servidor remoto no permite dominios cruzados (más lento)",
347
- "To zoom": "Para acercar/alejar",
348
- "Toggle edit mode (⇧+Click)": "Conmutar el modo de edición (⇧+Clic)",
349
- "Toggle edit mode": "Toggle edit mode",
350
- "Transfer shape to edited feature": "Transferir la figura al elemento editado",
346
+ "To use if remote server doesn't allow cross domain (slower)": "Usar si el servidor remoto no permite dominios cruzados (más lento)",
347
+ "To zoom": "Para hacer zoom",
348
+ "Toggle edit mode (⇧+Click)": "Alternar modo de edición (⇧+Clic)",
349
+ "Toggle edit mode": "Alternar modo de edición",
350
+ "Transfer shape to edited feature": "Transferir forma al elemento editado",
351
351
  "Transform to lines": "Transformar a líneas",
352
352
  "Transform to polygon": "Transformar a polígono",
353
- "Type a place name or coordinates": "Type a place name or coordinates",
354
- "Type char or paste emoji": "Type char or paste emoji",
353
+ "Type a place name or coordinates": "Escribe un nombre de lugar o coordenadas",
354
+ "Type char or paste emoji": "Escribe un carácter o pega un emoji",
355
355
  "Type of layer": "Tipo de capa",
356
- "Unable to detect format of file {filename}": "No se puede detectar el formato de archivo {filename}",
356
+ "Unable to detect format of file {filename}": "No se puede detectar el formato del archivo {filename}",
357
357
  "Untitled layer": "Capa sin título",
358
358
  "Untitled map": "Mapa sin título",
359
359
  "Update permissions and editors": "Actualizar permisos y editores",
360
360
  "Update permissions": "Actualizar permisos",
361
361
  "Update who can see and edit the map": "Actualizar quién puede ver y editar el mapa",
362
- "Url": "Url",
362
+ "Url": "URL",
363
363
  "URL": "URL",
364
- "Use current bounds": "Utilizar límites actuales",
365
- "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.",
366
- "User content credits": "Créditos del contenido del usuario",
367
- "User interface options": "Opciones de la interface de usuario",
364
+ "Use current bounds": "Usar límites actuales",
365
+ "Use placeholders with feature properties between brackets, eg. {name}, they will be dynamically replaced by the corresponding values.": "Utiliza marcadores de posición con propiedades de elemento entre llaves, por ejemplo, {nombre}, que se reemplazarán dinámicamente con los valores correspondientes.",
366
+ "User content credits": "Créditos de contenido del usuario",
367
+ "User interface options": "Opciones de la interfaz de usuario",
368
368
  "User location": "Ubicación del usuario",
369
369
  "Verify remote URL": "Verificar URL remota",
370
370
  "Versions": "Versiones",
371
371
  "View Fullscreen": "Ver en pantalla completa",
372
- "View": "Vista",
372
+ "View": "Ver",
373
373
  "Visibility: {status}": "Visibilidad: {status}",
374
- "weight": "peso",
375
- "Where do we go from here?": "¿A dónde vamos a partir de aquí?",
376
- "Whether to display or not polygons paths.": "Si desea mostrar o no el trayecto de los polígonos.",
377
- "Whether to fill polygons with color.": "Si desea rellenar los polígonos con color.",
374
+ "weight": "grosor",
375
+ "Where do we go from here?": "¿A dónde vamos desde aquí?",
376
+ "Whether to display or not polygons paths.": "Si se deben mostrar o no las rutas de los polígonos.",
377
+ "Whether to fill polygons with color.": "Si se deben rellenar los polígonos con color.",
378
378
  "Who can edit \"{layer}\"": "Quién puede editar \"{layer}\"",
379
379
  "Who can edit": "Quién puede editar",
380
380
  "Who can view": "Quién puede ver",
381
- "width": "anchura",
382
- "Will be displayed in the bottom right corner of the map": "Se mostrará en la esquina inferior izquierda del mapa",
383
- "Will be permanently visible in the bottom left corner of the map": "Will be permanently visible in the bottom left corner of the map",
384
- "Will be visible in the caption of the map": "Será visible en el subtítulo del mapa",
385
- "yes": "si",
381
+ "width": "ancho",
382
+ "Will be displayed in the bottom right corner of the map": "Se mostrará en la esquina inferior derecha del mapa",
383
+ "Will be permanently visible in the bottom left corner of the map": "Estará visible permanentemente en la esquina inferior izquierda del mapa",
384
+ "Will be visible in the caption of the map": "Será visible en la leyenda del mapa",
385
+ "yes": "",
386
386
  "Zoom in": "Acercar",
387
- "Zoom level for automatic zooms": "Nivel de acercamiento para acercamientos automáticos",
387
+ "Zoom level for automatic zooms": "Nivel de zoom para zooms automáticos",
388
388
  "Zoom out": "Alejar",
389
- "Zoom to layer extent": "Acercamiento al nivel de la capa",
390
- "Zoom to the next": "Acercamiento al siguiente",
391
- "Zoom to the previous": "Acercamiento al anterior",
392
- "Zoom to this feature": "Acercamiento a este elemento",
393
- "Zoom to this place": "Acercamiento a este lugar",
389
+ "Zoom to layer extent": "Zoom a la extensión de la capa",
390
+ "Zoom to the next": "Zoom al siguiente",
391
+ "Zoom to the previous": "Zoom al anterior",
392
+ "Zoom to this feature": "Zoom a este elemento",
393
+ "Zoom to this place": "Zoom a este lugar",
394
394
  "{area} acres": "{area} acres",
395
395
  "{area} ha": "{area} ha",
396
396
  "{area} m²": "{area} m²",
@@ -398,113 +398,124 @@
398
398
  "{area} yd²": "{area} yd²",
399
399
  "{count} errors during import: {message}": "{count} errores durante la importación: {message}",
400
400
  "{delay} seconds": "{delay} segundos",
401
- "{distance} km": "{distance} km",
402
- "{distance} m": "{distance} m",
403
- "{distance} miles": "{distance} millas",
404
- "{distance} NM": "{distance} NM",
405
- "{distance} yd": "{distance} yd",
406
- "Edit map name and caption": "Edit map name and caption",
401
+ "{distance} km": "{distance} km",
402
+ "{distance} m": "{distance} m",
403
+ "{distance} miles": "{distance} millas",
404
+ "{distance} NM": "{distance} NM",
405
+ "{distance} yd": "{distance} yd",
406
+ "Edit map name and caption": "Editar nombre y leyenda del mapa",
407
407
  "Map advanced properties": "Propiedades avanzadas del mapa",
408
- "Edit map details": "Edit map details",
409
- "Back to browser": "Back to browser",
410
- "Toggle size": "Toggle size",
411
- "Display the caption control": "Display the caption control",
412
- "<empty value>": "<empty value>",
413
- "Min": "Min",
414
- "Max": "Max",
415
- "From": "From",
416
- "Until": "Until",
417
- "Example: key1,key2|Label 2,key3|Label 3|checkbox": "Example: key1,key2|Label 2,key3|Label 3|checkbox",
418
- "Edit in OpenStreetMap": "Edit in OpenStreetMap",
419
- "Cannot determine latitude and longitude columns.": "Cannot determine latitude and longitude columns.",
420
- "Back to layers": "Back to layers",
421
- "Filters": "Filters",
422
- "Comma separated list of properties to use when filtering features by text input": "Comma separated list of properties to use when filtering features by text input",
423
- "Comma separated list of properties to use for filters (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key). To control input field type, add it after another | (eg.: mykey|My Key|checkbox,otherkey|Other Key|datetime). Allowed values for the input field type are checkbox (default), radio, number, date and datetime.": "Comma separated list of properties to use for filters (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key). To control input field type, add it after another | (eg.: mykey|My Key|checkbox,otherkey|Other Key|datetime). Allowed values for the input field type are checkbox (default), radio, number, date and datetime.",
424
- "Search keys": "Search keys",
425
- "Filters keys": "Filters keys",
426
- "Filter data": "Filter data",
427
- "Search map features…": "Search map features…",
428
- "Reset all": "Reset all",
429
- "Open browser": "Open browser",
430
- "Open caption": "Open caption",
431
- "Your map has been created with an anonymous account!": "Your map has been created with an anonymous account!",
432
- "Real-time collaboration": "Real-time collaboration",
433
- "Cannot parse data": "Cannot parse data",
434
- "Start typing...": "Start typing...",
435
- "No result": "No result",
436
- "Data browser": "Data browser",
437
- "When providing an URL, uMap can copy the remote data in a layer, or add this URL as remote source of the layer. In that case, data will always be fetched from that URL, and thus be up to date, but it will not be possible to edit it inside uMap.": "When providing an URL, uMap can copy the remote data in a layer, or add this URL as remote source of the layer. In that case, data will always be fetched from that URL, and thus be up to date, but it will not be possible to edit it inside uMap.",
438
- "Overpass supported expressions": "Overpass supported expressions",
439
- "key (eg. building)": "key (eg. building)",
440
- "!key (eg. !name)": "!key (eg. !name)",
441
- "key=value (eg. building=yes)": "key=value (eg. building=yes)",
442
- "key!=value (eg. building!=yes)": "key!=value (eg. building!=yes)",
443
- "key~value (eg. name~Grisy)": "key~value (eg. name~Grisy)",
444
- "key=\"value|value2\" (eg. name=\"Paris|Berlin\")": "key=\"value|value2\" (eg. name=\"Paris|Berlin\")",
445
- "More info about Overpass syntax": "More info about Overpass syntax",
446
- "For more complex needs, see": "For more complex needs, see",
447
- "Choose data": "Choose data",
448
- "Import helpers:": "Import helpers:",
449
- "Choose the format": "Choose the format",
450
- "Choose the layer": "Choose the layer",
451
- "Layer name": "Layer name",
452
- "Choose import mode": "Choose import mode",
453
- "Copy into the layer": "Copy into the layer",
454
- "Link to the layer as remote data": "Link to the layer as remote data",
455
- "Condition": "Condition",
456
- "key=value or key!=value": "key=value or key!=value",
457
- "Are you sure you want to delete this rule?": "Are you sure you want to delete this rule?",
458
- "empty rule": "empty rule",
459
- "Conditional style rules": "Conditional style rules",
460
- "Add rule": "Add rule",
461
- "Browser: data": "Browser: data",
462
- "Browser: layers": "Browser: layers",
463
- "Browser: filters": "Browser: filters",
464
- "Enable real-time collaboration": "Enable real-time collaboration",
465
- "✅ Copied!": "✅ Copied!",
466
- "Choose a dataset": "Choose a dataset",
467
- "Choose this dataset": "Choose this dataset",
468
- "GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: thematic data from OpenStreetMap",
469
- "Choose a theme": "Choose a theme",
470
- "Symplify all geometries to points": "Symplify all geometries to points",
471
- "Choose this data": "Choose this data",
472
- "Search admin boundary": "Search admin boundary",
473
- "Please choose a theme and a boundary first.": "Please choose a theme and a boundary first.",
474
- "Expression": "Expression",
475
- "Geometry mode": "Geometry mode",
476
- "Only geometry centers": "Only geometry centers",
477
- "Search area": "Search area",
478
- "Type area name, or let empty to load data in current map view": "Type area name, or let empty to load data in current map view",
479
- "Data successfully imported!": "Data successfully imported!",
480
- "My Dashboard ({username})": "My Dashboard ({username})",
481
- "Clear data": "Clear data",
482
- "Remove layers": "Remove layers",
483
- "Categorized": "Categorized",
484
- "Alphabetical": "Alphabetical",
485
- "Category property": "Category property",
486
- "Color palette": "Color palette",
487
- "Categories": "Categories",
488
- "Comma separated list of categories.": "Comma separated list of categories.",
489
- "Categories mode": "Categories mode",
490
- "Remove filter for this column": "Remove filter for this column",
491
- "Add filter for this column": "Add filter for this column",
492
- "Rename this column": "Rename this column",
493
- "Delete this column": "Delete this column",
494
- "Name “{name}” should not contain a dot.": "Name “{name}” should not contain a dot.",
495
- "This name already exists: “{name}”": "This name already exists: “{name}”",
496
- "Delete selected rows": "Delete selected rows",
497
- "Found {count} rows. Are you sure you want to delete all?": "Found {count} rows. Are you sure you want to delete all?",
498
- "Expression is empty": "Expression is empty",
499
- "OK": "OK",
500
- "Cancel": "Cancel",
501
- "Attach map to a team": "Attach map to a team",
502
- "Display the polygon inverted": "Display the polygon inverted",
503
- "Proportional circles": "Proportional circles",
504
- "Property name to compute circles": "Property name to compute circles",
505
- "Min circle radius": "Min circle radius",
506
- "Max circle radius": "Max circle radius",
507
- "Display the open browser control": "Display the open browser control",
508
- "Copy as GeoJSON": "Copy as GeoJSON",
509
- "Please zoom in to edit the geometry": "Please zoom in to edit the geometry"
408
+ "Edit map details": "Editar detalles del mapa",
409
+ "Back to browser": "Volver al navegador",
410
+ "Toggle size": "Cambiar tamaño",
411
+ "Display the caption control": "Mostrar el control de leyenda",
412
+ "<empty value>": "<valor vacío>",
413
+ "Min": "Mín.",
414
+ "Max": "Máx.",
415
+ "From": "Desde",
416
+ "Until": "Hasta",
417
+ "Example: key1,key2|Label 2,key3|Label 3|checkbox": "Ejemplo: clave1,clave2|Etiqueta 2,clave3|Etiqueta 3|casilla de verificación",
418
+ "Edit in OpenStreetMap": "Editar en OpenStreetMap",
419
+ "Cannot determine latitude and longitude columns.": "No se pueden determinar las columnas de latitud y longitud.",
420
+ "Back to layers": "Volver a las capas",
421
+ "Filters": "Filtros",
422
+ "Comma separated list of properties to use when filtering features by text input": "Lista de propiedades separadas por comas para usar al filtrar elementos por entrada de texto",
423
+ "Comma separated list of properties to use for filters (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key). To control input field type, add it after another | (eg.: mykey|My Key|checkbox,otherkey|Other Key|datetime). Allowed values for the input field type are checkbox (default), radio, number, date and datetime.": "Lista de propiedades separadas por comas para usar para filtros (ej.: miclave,otraclave). Para controlar la etiqueta, agrégala después de un | (ej.: miclave|Mi Clave,otraclave|Otra Clave). Para controlar el tipo de campo de entrada, agrégalo después de otro | (ej.: miclave|Mi Clave|casilla de verificación,otraclave|Otra Clave|fechahora). Los valores permitidos para el tipo de campo de entrada son casilla de verificación (predeterminado), radio, número, fecha y fechahora.",
424
+ "Search keys": "Claves de búsqueda",
425
+ "Filters keys": "Claves de filtros",
426
+ "Filter data": "Filtrar datos",
427
+ "Search map features…": "Buscar elementos del mapa…",
428
+ "Reset all": "Reiniciar todo",
429
+ "Open browser": "Abrir navegador",
430
+ "Open caption": "Abrir leyenda",
431
+ "Your map has been created with an anonymous account!": "¡Tu mapa ha sido creado con una cuenta anónima!",
432
+ "Real-time collaboration": "Colaboración en tiempo real",
433
+ "Cannot parse data": "No se pueden analizar los datos",
434
+ "Start typing...": "Empieza a escribir...",
435
+ "No result": "Sin resultados",
436
+ "Data browser": "Explorador de datos",
437
+ "When providing an URL, uMap can copy the remote data in a layer, or add this URL as remote source of the layer. In that case, data will always be fetched from that URL, and thus be up to date, but it will not be possible to edit it inside uMap.": "Al proporcionar una URL, uMap puede copiar los datos remotos en una capa o agregar esta URL como fuente remota de la capa. En ese caso, los datos siempre se obtendrán de esa URL y, por lo tanto, estarán actualizados, pero no será posible editarlos dentro de uMap.",
438
+ "Overpass supported expressions": "Expresiones compatibles con Overpass",
439
+ "key (eg. building)": "clave (ej. edificio)",
440
+ "!key (eg. !name)": "!clave (ej. !nombre)",
441
+ "key=value (eg. building=yes)": "clave=valor (ej. edificio=)",
442
+ "key!=value (eg. building!=yes)": "clave!=valor (ej. edificio!=)",
443
+ "key~value (eg. name~Grisy)": "clave~valor (ej. nombre~Grisy)",
444
+ "key=\"value|value2\" (eg. name=\"Paris|Berlin\")": "clave=\"valor|valor2\" (ej. nombre=\"París|Berlín\")",
445
+ "More info about Overpass syntax": "Más información sobre la sintaxis de Overpass",
446
+ "For more complex needs, see": "Para necesidades más complejas, consulta",
447
+ "Choose data": "Elegir datos",
448
+ "Import helpers:": "Asistentes de importación:",
449
+ "Choose the format": "Elegir el formato",
450
+ "Choose the layer": "Elegir la capa",
451
+ "Layer name": "Nombre de la capa",
452
+ "Choose import mode": "Elegir modo de importación",
453
+ "Copy into the layer": "Copiar en la capa",
454
+ "Link to the layer as remote data": "Vincular a la capa como datos remotos",
455
+ "Condition": "Condición",
456
+ "key=value or key!=value": "clave=valor o clave!=valor",
457
+ "Are you sure you want to delete this rule?": "¿Estás seguro de que quieres eliminar esta regla?",
458
+ "empty rule": "regla vacía",
459
+ "Conditional style rules": "Reglas de estilo condicionales",
460
+ "Add rule": "Añadir regla",
461
+ "Browser: data": "Navegador: datos",
462
+ "Browser: layers": "Navegador: capas",
463
+ "Browser: filters": "Navegador: filtros",
464
+ "Enable real-time collaboration": "Habilitar la colaboración en tiempo real",
465
+ "✅ Copied!": "✅ ¡Copiado!",
466
+ "Choose a dataset": "Elegir un conjunto de datos",
467
+ "Choose this dataset": "Elegir este conjunto de datos",
468
+ "GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: datos temáticos de OpenStreetMap",
469
+ "Choose a theme": "Elegir un tema",
470
+ "Symplify all geometries to points": "Simplificar todas las geometrías a puntos",
471
+ "Choose this data": "Elegir estos datos",
472
+ "Search admin boundary": "Buscar límite administrativo",
473
+ "Please choose a theme and a boundary first.": "Primero elige un tema y un límite.",
474
+ "Expression": "Expresión",
475
+ "Geometry mode": "Modo de geometría",
476
+ "Only geometry centers": "Solo centros de geometría",
477
+ "Search area": "Área de búsqueda",
478
+ "Type area name, or let empty to load data in current map view": "Escribe el nombre del área o déjalo vacío para cargar datos en la vista actual del mapa",
479
+ "Data successfully imported!": "¡Datos importados correctamente!",
480
+ "Clear data": "Borrar datos",
481
+ "Remove layers": "Eliminar capas",
482
+ "Categorized": "Categorizado",
483
+ "Alphabetical": "Alfabético",
484
+ "Category property": "Propiedad de categoría",
485
+ "Color palette": "Paleta de colores",
486
+ "Categories": "Categorías",
487
+ "Comma separated list of categories.": "Lista de categorías separadas por comas.",
488
+ "Categories mode": "Modo de categorías",
489
+ "Remove filter for this column": "Eliminar filtro para esta columna",
490
+ "Add filter for this column": "Agregar filtro para esta columna",
491
+ "Rename this column": "Cambiar el nombre de esta columna",
492
+ "Delete this column": "Eliminar esta columna",
493
+ "Name “{name}” should not contain a dot.": "El nombre \"{name}\" no debe contener un punto.",
494
+ "This name already exists: “{name}”": "Este nombre ya existe: \"{name}\"",
495
+ "Delete selected rows": "Eliminar filas seleccionadas",
496
+ "Found {count} rows. Are you sure you want to delete all?": "Se encontraron {count} filas. ¿Estás seguro de que quieres eliminarlas todas?",
497
+ "Expression is empty": "La expresión está vacía",
498
+ "OK": "Aceptar",
499
+ "Cancel": "Cancelar",
500
+ "Attach map to a team": "Adjuntar mapa a un equipo",
501
+ "Display the polygon inverted": "Mostrar el polígono invertido",
502
+ "Proportional circles": "Círculos proporcionales",
503
+ "Property name to compute circles": "Nombre de la propiedad para calcular círculos",
504
+ "Min circle radius": "Radio mínimo del círculo",
505
+ "Max circle radius": "Radio máximo del círculo",
506
+ "Display the open browser control": "Mostrar el control de abrir el navegador",
507
+ "Copy as GeoJSON": "Copiar como GeoJSON",
508
+ "Please zoom in to edit the geometry": "Acerca el zoom para editar la geometría",
509
+ "New map": "Nuevo mapa",
510
+ "My maps": "Mis mapas",
511
+ "My teams": "Mis equipos",
512
+ "My profile": "Mi perfil",
513
+ "Type new owner's username": "Escribe el nombre de usuario del nuevo propietario",
514
+ "Type editor's username": "Escribe el nombre de usuario del editor",
515
+ "Map": "Mapa",
516
+ "Manage collaborators": "Administrar colaboradores",
517
+ "show/hide all layers": "mostrar/ocultar todas las capas",
518
+ "zoom to data extent": "zoom a la extensión de los datos",
519
+ "download visible data": "descargar datos visibles",
520
+ "{connectedPeers} peer(s) currently connected to this map": "{connectedPeers} peer(s) currently connected to this map"
510
521
  }