umap-project 2.6.2__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.
- umap/__init__.py +1 -1
- umap/admin.py +64 -1
- umap/asgi.py +15 -0
- umap/context_processors.py +1 -0
- umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- umap/locale/cs_CZ/LC_MESSAGES/django.po +96 -92
- umap/locale/de/LC_MESSAGES/django.mo +0 -0
- umap/locale/de/LC_MESSAGES/django.po +19 -18
- umap/locale/en/LC_MESSAGES/django.po +47 -43
- umap/locale/es/LC_MESSAGES/django.mo +0 -0
- umap/locale/es/LC_MESSAGES/django.po +134 -128
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +51 -47
- umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- umap/locale/pt/LC_MESSAGES/django.po +64 -60
- umap/management/commands/clean_tilelayer.py +152 -0
- umap/management/commands/purge_purgatory.py +28 -0
- umap/models.py +27 -2
- umap/settings/base.py +3 -1
- umap/static/umap/base.css +4 -4
- umap/static/umap/css/contextmenu.css +6 -1
- umap/static/umap/css/icon.css +7 -2
- umap/static/umap/css/importers.css +4 -0
- umap/static/umap/img/16-white.svg +9 -2
- umap/static/umap/img/16.svg +1 -181
- umap/static/umap/img/24-white.svg +1 -0
- umap/static/umap/img/24.svg +1 -0
- umap/static/umap/img/importers/cadastrefr.svg +23 -0
- umap/static/umap/img/source/16-white.svg +10 -3
- umap/static/umap/img/source/16.svg +753 -197
- umap/static/umap/img/source/24-white.svg +3 -2
- umap/static/umap/img/source/24.svg +3 -2
- umap/static/umap/js/modules/autocomplete.js +7 -3
- umap/static/umap/js/modules/browser.js +55 -2
- umap/static/umap/js/modules/caption.js +16 -5
- umap/static/umap/js/modules/data/features.js +183 -8
- umap/static/umap/js/modules/data/layer.js +57 -40
- umap/static/umap/js/modules/formatter.js +3 -2
- umap/static/umap/js/modules/global.js +2 -0
- umap/static/umap/js/modules/importer.js +3 -0
- umap/static/umap/js/modules/importers/cadastrefr.js +62 -0
- umap/static/umap/js/modules/importers/communesfr.js +15 -3
- umap/static/umap/js/modules/permissions.js +123 -93
- umap/static/umap/js/modules/rendering/layers/classified.js +2 -0
- umap/static/umap/js/modules/rendering/ui.js +60 -213
- umap/static/umap/js/modules/share.js +1 -3
- umap/static/umap/js/modules/slideshow.js +1 -1
- umap/static/umap/js/modules/sync/engine.js +371 -14
- umap/static/umap/js/modules/sync/hlc.js +106 -0
- umap/static/umap/js/modules/sync/updaters.js +18 -6
- umap/static/umap/js/modules/sync/websocket.js +1 -1
- umap/static/umap/js/modules/tableeditor.js +1 -1
- umap/static/umap/js/modules/ui/base.js +2 -2
- umap/static/umap/js/modules/ui/contextmenu.js +51 -18
- umap/static/umap/js/modules/urls.js +5 -1
- umap/static/umap/js/modules/utils.js +28 -4
- umap/static/umap/js/umap.controls.js +76 -55
- umap/static/umap/js/umap.core.js +3 -3
- umap/static/umap/js/umap.forms.js +3 -1
- umap/static/umap/js/umap.js +115 -124
- umap/static/umap/locale/am_ET.js +2 -2
- umap/static/umap/locale/am_ET.json +2 -2
- umap/static/umap/locale/ar.js +2 -2
- umap/static/umap/locale/ar.json +2 -2
- umap/static/umap/locale/ast.js +2 -2
- umap/static/umap/locale/ast.json +2 -2
- umap/static/umap/locale/bg.js +2 -2
- umap/static/umap/locale/bg.json +2 -2
- umap/static/umap/locale/br.js +13 -4
- umap/static/umap/locale/br.json +13 -4
- umap/static/umap/locale/ca.js +30 -17
- umap/static/umap/locale/ca.json +30 -17
- umap/static/umap/locale/cs_CZ.js +89 -80
- umap/static/umap/locale/cs_CZ.json +89 -80
- umap/static/umap/locale/da.js +2 -2
- umap/static/umap/locale/da.json +2 -2
- umap/static/umap/locale/de.js +17 -8
- umap/static/umap/locale/de.json +17 -8
- umap/static/umap/locale/el.js +2 -2
- umap/static/umap/locale/el.json +2 -2
- umap/static/umap/locale/en.js +15 -4
- umap/static/umap/locale/en.json +15 -4
- umap/static/umap/locale/en_US.json +2 -2
- umap/static/umap/locale/es.js +338 -325
- umap/static/umap/locale/es.json +338 -325
- umap/static/umap/locale/et.js +2 -2
- umap/static/umap/locale/et.json +2 -2
- umap/static/umap/locale/eu.js +11 -4
- umap/static/umap/locale/eu.json +11 -4
- umap/static/umap/locale/fa_IR.js +11 -4
- umap/static/umap/locale/fa_IR.json +11 -4
- umap/static/umap/locale/fi.js +2 -2
- umap/static/umap/locale/fi.json +2 -2
- umap/static/umap/locale/fr.js +15 -4
- umap/static/umap/locale/fr.json +15 -4
- umap/static/umap/locale/gl.js +2 -2
- umap/static/umap/locale/gl.json +2 -2
- umap/static/umap/locale/he.js +2 -2
- umap/static/umap/locale/he.json +2 -2
- umap/static/umap/locale/hr.js +2 -2
- umap/static/umap/locale/hr.json +2 -2
- umap/static/umap/locale/hu.js +12 -5
- umap/static/umap/locale/hu.json +12 -5
- umap/static/umap/locale/id.js +2 -2
- umap/static/umap/locale/id.json +2 -2
- umap/static/umap/locale/is.js +2 -2
- umap/static/umap/locale/is.json +2 -2
- umap/static/umap/locale/it.js +2 -2
- umap/static/umap/locale/it.json +2 -2
- umap/static/umap/locale/ja.js +2 -2
- umap/static/umap/locale/ja.json +2 -2
- umap/static/umap/locale/ko.js +2 -2
- umap/static/umap/locale/ko.json +2 -2
- umap/static/umap/locale/lt.js +2 -2
- umap/static/umap/locale/lt.json +2 -2
- umap/static/umap/locale/ms.js +2 -2
- umap/static/umap/locale/ms.json +2 -2
- umap/static/umap/locale/nl.js +2 -2
- umap/static/umap/locale/nl.json +2 -2
- umap/static/umap/locale/no.js +2 -2
- umap/static/umap/locale/no.json +2 -2
- umap/static/umap/locale/pl.js +2 -2
- umap/static/umap/locale/pl.json +2 -2
- umap/static/umap/locale/pl_PL.json +2 -2
- umap/static/umap/locale/pt.js +19 -10
- umap/static/umap/locale/pt.json +19 -10
- umap/static/umap/locale/pt_BR.js +2 -2
- umap/static/umap/locale/pt_BR.json +2 -2
- umap/static/umap/locale/pt_PT.js +13 -4
- umap/static/umap/locale/pt_PT.json +13 -4
- umap/static/umap/locale/ro.js +2 -2
- umap/static/umap/locale/ro.json +2 -2
- umap/static/umap/locale/ru.js +2 -2
- umap/static/umap/locale/ru.json +2 -2
- umap/static/umap/locale/si.js +2 -2
- umap/static/umap/locale/si.json +2 -2
- umap/static/umap/locale/sk_SK.js +2 -2
- umap/static/umap/locale/sk_SK.json +2 -2
- umap/static/umap/locale/sl.js +2 -2
- umap/static/umap/locale/sl.json +2 -2
- umap/static/umap/locale/sr.js +2 -2
- umap/static/umap/locale/sr.json +2 -2
- umap/static/umap/locale/sv.js +2 -2
- umap/static/umap/locale/sv.json +2 -2
- umap/static/umap/locale/th_TH.js +2 -2
- umap/static/umap/locale/th_TH.json +2 -2
- umap/static/umap/locale/tr.js +2 -2
- umap/static/umap/locale/tr.json +2 -2
- umap/static/umap/locale/uk_UA.js +2 -2
- umap/static/umap/locale/uk_UA.json +2 -2
- umap/static/umap/locale/vi.js +2 -2
- umap/static/umap/locale/vi.json +2 -2
- umap/static/umap/locale/vi_VN.json +2 -2
- umap/static/umap/locale/zh.js +2 -2
- umap/static/umap/locale/zh.json +2 -2
- umap/static/umap/locale/zh_CN.json +2 -2
- umap/static/umap/locale/zh_TW.Big5.json +2 -2
- umap/static/umap/locale/zh_TW.js +13 -4
- umap/static/umap/locale/zh_TW.json +13 -4
- umap/static/umap/map.css +44 -29
- umap/static/umap/unittests/hlc.js +165 -0
- umap/static/umap/unittests/sync.js +321 -15
- umap/static/umap/unittests/utils.js +47 -0
- umap/static/umap/vars.css +2 -1
- umap/static/umap/vendors/colorbrewer/colorbrewer.js +309 -317
- umap/static/umap/vendors/dompurify/purify.es.js +15 -16
- umap/static/umap/vendors/dompurify/purify.es.mjs.map +1 -1
- umap/static/umap/vendors/georsstogeojson/GeoRSSToGeoJSON.js +111 -80
- umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js +2 -2
- umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js.map +1 -1
- umap/static/umap/vendors/simple-statistics/simple-statistics.min.js +1 -1
- umap/static/umap/vendors/simple-statistics/simple-statistics.min.js.map +1 -1
- umap/templates/umap/css.html +0 -2
- umap/templates/umap/dashboard_menu.html +4 -2
- umap/templates/umap/js.html +0 -5
- umap/templates/umap/map_detail.html +2 -2
- umap/tests/fixtures/test_upload_data.csv +2 -2
- umap/tests/integration/test_anonymous_owned_map.py +1 -0
- umap/tests/integration/test_basics.py +1 -1
- umap/tests/integration/test_browser.py +69 -7
- umap/tests/integration/test_caption.py +3 -3
- umap/tests/integration/test_circles_layer.py +12 -0
- umap/tests/integration/test_cluster.py +53 -0
- umap/tests/integration/test_datalayer.py +2 -1
- umap/tests/integration/test_draw_polygon.py +17 -9
- umap/tests/integration/test_draw_polyline.py +84 -7
- umap/tests/integration/test_edit_datalayer.py +5 -8
- umap/tests/integration/test_edit_map.py +2 -2
- umap/tests/integration/test_edit_marker.py +1 -1
- umap/tests/integration/test_facets_browser.py +3 -3
- umap/tests/integration/test_import.py +1 -0
- umap/tests/integration/test_map.py +1 -0
- umap/tests/integration/test_owned_map.py +1 -1
- umap/tests/integration/test_view_marker.py +63 -0
- umap/tests/integration/test_view_polygon.py +12 -12
- umap/tests/integration/test_websocket_sync.py +65 -3
- umap/tests/test_clean_tilelayer.py +83 -0
- umap/tests/test_datalayer.py +24 -0
- umap/tests/test_map_views.py +20 -0
- umap/tests/test_purge_purgatory.py +25 -0
- umap/tests/test_websocket_server.py +22 -0
- umap/urls.py +5 -1
- umap/views.py +6 -3
- umap/websocket_server.py +130 -27
- {umap_project-2.6.2.dist-info → umap_project-2.7.0.dist-info}/METADATA +18 -14
- {umap_project-2.6.2.dist-info → umap_project-2.7.0.dist-info}/RECORD +209 -200
- umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.css +0 -1
- umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.js +0 -7
- {umap_project-2.6.2.dist-info → umap_project-2.7.0.dist-info}/WHEEL +0 -0
- {umap_project-2.6.2.dist-info → umap_project-2.7.0.dist-info}/entry_points.txt +0 -0
- {umap_project-2.6.2.dist-info → umap_project-2.7.0.dist-info}/licenses/LICENSE +0 -0
umap/static/umap/locale/es.json
CHANGED
|
@@ -1,142 +1,142 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
4
|
-
"# one hash for main heading": "# una almohadilla para el
|
|
5
|
-
"## two hashes for second heading": "## dos almohadillas para el
|
|
6
|
-
"### three hashes for third heading": "### tres almohadillas para el
|
|
2
|
+
"(area: {measure})": "(área: {measure})",
|
|
3
|
+
"(length: {measure})": "(longitud: {measure})",
|
|
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*": "*
|
|
9
|
-
"--- for a horizontal rule": "--- para una
|
|
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
|
|
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
|
|
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
|
|
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
|
|
21
|
-
"Add image URL": "Añadir URL de
|
|
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": "
|
|
26
|
-
"All properties are imported.": "Todas las propiedades
|
|
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
|
|
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?": "¿
|
|
32
|
-
"Are you sure you want to clone this map and all its datalayers?": "¿
|
|
33
|
-
"Are you sure you want to delete the feature?": "¿
|
|
34
|
-
"Are you sure you want to delete this layer?": "¿
|
|
35
|
-
"Are you sure you want to delete this map?": "¿
|
|
36
|
-
"Are you sure you want to delete this property on all the features?": "¿
|
|
37
|
-
"Are you sure you want to restore this version?": "¿
|
|
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": "
|
|
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": "
|
|
44
|
+
"Background overlay url": "URL de superposición de fondo",
|
|
45
45
|
"Ball": "Bola",
|
|
46
|
-
"Bring feature to center": "
|
|
47
|
-
"Browse data": "
|
|
46
|
+
"Bring feature to center": "Centrar el elemento",
|
|
47
|
+
"Browse data": "Explorar datos",
|
|
48
48
|
"by": "por",
|
|
49
|
-
"Cache proxied request": "
|
|
50
|
-
"Cancel edits": "Cancelar
|
|
51
|
-
"Caption": "
|
|
52
|
-
"Center map on your location": "Centrar el mapa en
|
|
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
|
|
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
|
|
58
|
-
"Choropleth classes": "Clases de
|
|
59
|
-
"Choropleth color palette": "Paleta de colores
|
|
60
|
-
"Choropleth mode": "Modo
|
|
61
|
-
"Choropleth property value": "Valor de
|
|
62
|
-
"Choropleth": "
|
|
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": "
|
|
66
|
-
"Click to add a marker": "
|
|
67
|
-
"Click to continue drawing": "
|
|
68
|
-
"Click to edit": "
|
|
69
|
-
"Click to start drawing a line": "
|
|
70
|
-
"Click to start drawing a polygon": "
|
|
71
|
-
"Clone of {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": "
|
|
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,
|
|
81
|
-
"Comma separated list of properties to use for sorting features. To reverse the sort, put a minus sign (-) before. Eg. mykey,-otherkey.": "Lista
|
|
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,
|
|
83
|
-
"Congratulations, your map has been created!": "
|
|
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": "
|
|
89
|
-
"Current view instead of default map view?": "¿Vista actual en lugar de la vista
|
|
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": "
|
|
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
|
|
95
|
+
"Default interaction options": "Opciones de interacción predeterminadas",
|
|
96
96
|
"Default properties": "Propiedades predeterminadas",
|
|
97
|
-
"Default shape properties": "Propiedades de
|
|
97
|
+
"Default shape properties": "Propiedades de forma predeterminadas",
|
|
98
98
|
"Default view": "Vista predeterminada",
|
|
99
|
-
"Default zoom level": "Nivel de
|
|
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.": "
|
|
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
|
|
105
|
-
"Delete layer": "
|
|
106
|
-
"Delete this feature": "
|
|
107
|
-
"Delete this shape": "
|
|
108
|
-
"Delete this vertex (Alt+Click)": "
|
|
109
|
-
"Delete": "
|
|
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": "
|
|
112
|
+
"Directions from here": "Indicaciones desde aquí",
|
|
113
113
|
"Display label": "Mostrar etiqueta",
|
|
114
114
|
"Display measure": "Mostrar medición",
|
|
115
|
-
"display name": "mostrar
|
|
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
|
|
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
|
|
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
|
|
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
|
|
126
|
-
"Do you want to display a caption bar?": "¿
|
|
127
|
-
"Do you want to display a minimap?": "¿
|
|
128
|
-
"Do you want to display a panel on load?": "¿
|
|
129
|
-
"Do you want to display caption menus?": "
|
|
130
|
-
"Do you want to display popup footer?": "¿
|
|
131
|
-
"Do you want to display the scale control?": "¿
|
|
132
|
-
"Do you want to display the «more» control?": "¿
|
|
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": "
|
|
136
|
-
"Draw a polygon": "
|
|
137
|
-
"Draw a polyline": "
|
|
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": "
|
|
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": "
|
|
148
|
-
"Embed the map": "
|
|
149
|
-
"Emoji & Character": "Emoji
|
|
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
|
|
153
|
-
"Error in the tilelayer URL": "Error en la URL
|
|
154
|
-
"Exit Fullscreen": "Salir de
|
|
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
|
|
157
|
-
"Feature identifier key": "Clave
|
|
158
|
-
"Feature properties": "Propiedades
|
|
159
|
-
"Fetch data each time map view changes.": "
|
|
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
|
|
162
|
-
"fill": "
|
|
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
|
|
166
|
-
"full backup": "
|
|
167
|
-
"Generic": "
|
|
168
|
-
"GeoRSS (only link)": "GeoRSS (
|
|
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}\"": "
|
|
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
|
|
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": "
|
|
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
|
|
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
|
|
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
|
|
186
|
-
"Iframe with custom height (in px): {{{http://iframe.url.com|height}}}": "Iframe con altura personalizada (en
|
|
187
|
-
"Iframe with custom height and width (in px): {{{http://iframe.url.com|height*width}}}": "Iframe con
|
|
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
|
|
191
|
-
"Image: {{http://image.url.com}}": "Imagen: {{http://
|
|
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.": "
|
|
195
|
-
"Include full screen link?": "¿Incluir
|
|
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": "
|
|
200
|
-
"Invalid umap data in {filename}": "Datos
|
|
201
|
-
"Invalid umap data": "Datos
|
|
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": "
|
|
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": "
|
|
209
|
-
"Labels are clickable": "
|
|
210
|
-
"Latest feature": "
|
|
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": "
|
|
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://
|
|
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": "
|
|
223
|
-
"Manage layers": "
|
|
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
|
|
227
|
-
"Map has been saved!": "¡
|
|
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
|
|
230
|
-
"Map user content has been published under licence": "El contenido del mapa del usuario
|
|
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": "
|
|
234
|
-
"max North": "
|
|
235
|
-
"max South": "
|
|
236
|
-
"max West": "
|
|
237
|
-
"max zoom": "
|
|
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": "
|
|
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 (
|
|
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,260 +249,273 @@
|
|
|
249
249
|
"next": "siguiente",
|
|
250
250
|
"NM": "NM",
|
|
251
251
|
"No cache": "Sin caché",
|
|
252
|
-
"No licence has been set": "
|
|
252
|
+
"No licence has been set": "No se ha establecido ninguna licencia",
|
|
253
253
|
"No results": "Sin resultados",
|
|
254
254
|
"no": "no",
|
|
255
|
-
"No.": "
|
|
255
|
+
"No.": "Núm.",
|
|
256
256
|
"None": "Ninguno",
|
|
257
|
-
"Number of desired classes (default 5)": "Número de clases deseadas (
|
|
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": "
|
|
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": "
|
|
268
|
-
"Open this map extent in a map editor to provide more accurate data to OpenStreetMap": "Abre
|
|
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
|
|
271
|
-
"Optional. Same as color if not set.": "Opcional. Igual que el color si no
|
|
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)": "
|
|
274
|
-
"Override heatmap radius (default 25)": "
|
|
275
|
-
"parent window": "ventana
|
|
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": "
|
|
278
|
-
"Permanent credits background": "
|
|
279
|
-
"Permanent credits": "
|
|
280
|
-
"Please be sure the licence is compliant with your use.": "
|
|
281
|
-
"Please choose a format": "
|
|
282
|
-
"Please enter the name of the property": "
|
|
283
|
-
"Please enter the new name of this property": "
|
|
284
|
-
"Please save the map first": "
|
|
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
|
|
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": "
|
|
292
|
+
"Problem in the response": "Problema en la respuesta",
|
|
293
293
|
"Properties imported:": "Propiedades importadas:",
|
|
294
|
-
"Provide an URL here": "
|
|
295
|
-
"Proxy request": "
|
|
294
|
+
"Provide an URL here": "Proporciona una URL aquí",
|
|
295
|
+
"Proxy request": "Solicitud proxy",
|
|
296
296
|
"Quantiles": "Cuantiles",
|
|
297
|
-
"Recent": "
|
|
297
|
+
"Recent": "Recientes",
|
|
298
298
|
"Remote data": "Datos remotos",
|
|
299
|
-
"Remove shape from the multi": "
|
|
300
|
-
"Replace layer content": "
|
|
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
|
|
304
|
-
"Save this center and zoom": "Guardar este
|
|
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": "
|
|
313
|
-
"Set it to false to hide this layer from the slideshow, the data browser, the popup navigation…": "
|
|
314
|
-
"settings": "
|
|
315
|
-
"Shape properties": "Propiedades de la
|
|
316
|
-
"Share and download": "
|
|
317
|
-
"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": "
|
|
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://
|
|
323
|
+
"Simple link: [[http://example.com]]": "Enlace simple: [[http://example.com]]",
|
|
324
324
|
"Simplify": "Simplificar",
|
|
325
|
-
"Skipping unknown geometry.type: {type}": "
|
|
325
|
+
"Skipping unknown geometry.type: {type}": "Omitiendo geometry.type desconocido: {type}",
|
|
326
326
|
"Slideshow": "Presentación de diapositivas",
|
|
327
|
-
"Sort key": "
|
|
328
|
-
"Split line": "
|
|
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": "
|
|
331
|
-
"Start slideshow": "Iniciar presentación
|
|
332
|
-
"Stop editing": "
|
|
333
|
-
"Stop slideshow": "
|
|
334
|
-
"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
|
|
337
|
-
"Supported variables that will be dynamically replaced": "
|
|
338
|
-
"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
|
|
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
|
|
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)": "
|
|
347
|
-
"To zoom": "Para
|
|
348
|
-
"Toggle edit mode (⇧+Click)": "
|
|
349
|
-
"Toggle edit mode": "
|
|
350
|
-
"Transfer shape to edited feature": "Transferir
|
|
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": "
|
|
354
|
-
"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
|
|
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": "
|
|
362
|
+
"Url": "URL",
|
|
363
363
|
"URL": "URL",
|
|
364
|
-
"Use current bounds": "
|
|
365
|
-
"Use placeholders with feature properties between brackets, eg. {name}, they will be dynamically replaced by the corresponding values.": "
|
|
366
|
-
"User content credits": "Créditos
|
|
367
|
-
"User interface options": "Opciones de la
|
|
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": "
|
|
373
|
-
"Visibility: {status}": "Visibilidad: {
|
|
374
|
-
"weight": "
|
|
375
|
-
"Where do we go from here?": "¿A dónde vamos
|
|
376
|
-
"Whether to display or not polygons paths.": "Si
|
|
377
|
-
"Whether to fill polygons with color.": "Si
|
|
372
|
+
"View": "Ver",
|
|
373
|
+
"Visibility: {status}": "Visibilidad: {status}",
|
|
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": "
|
|
382
|
-
"Will be displayed in the bottom right corner of the map": "Se mostrará en la esquina inferior
|
|
383
|
-
"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
|
|
385
|
-
"yes": "
|
|
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": "sí",
|
|
386
386
|
"Zoom in": "Acercar",
|
|
387
|
-
"Zoom level for automatic zooms": "Nivel de
|
|
387
|
+
"Zoom level for automatic zooms": "Nivel de zoom para zooms automáticos",
|
|
388
388
|
"Zoom out": "Alejar",
|
|
389
|
-
"Zoom to layer extent": "
|
|
390
|
-
"Zoom to the next": "
|
|
391
|
-
"Zoom to the previous": "
|
|
392
|
-
"Zoom to this feature": "
|
|
393
|
-
"Zoom to this place": "
|
|
394
|
-
"{area} acres": "{
|
|
395
|
-
"{area} ha": "{
|
|
396
|
-
"{area} m²": "{
|
|
397
|
-
"{area} mi²": "{
|
|
398
|
-
"{area} yd²": "{
|
|
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
|
+
"{area} acres": "{area} acres",
|
|
395
|
+
"{area} ha": "{area} ha",
|
|
396
|
+
"{area} m²": "{area} m²",
|
|
397
|
+
"{area} mi²": "{area} mi²",
|
|
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": "{
|
|
402
|
-
"{distance} m": "{
|
|
403
|
-
"{distance} miles": "{
|
|
404
|
-
"{distance} NM": "{
|
|
405
|
-
"{distance} yd": "{
|
|
406
|
-
"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": "
|
|
409
|
-
"Back to browser": "
|
|
410
|
-
"Toggle size": "
|
|
411
|
-
"Display the caption control": "
|
|
412
|
-
"<empty value>": "<
|
|
413
|
-
"Min": "
|
|
414
|
-
"Max": "
|
|
415
|
-
"From": "
|
|
416
|
-
"Until": "
|
|
417
|
-
"Example: key1,key2|Label 2,key3|Label 3|checkbox": "
|
|
418
|
-
"Edit in OpenStreetMap": "
|
|
419
|
-
"Cannot determine latitude and longitude columns.": "
|
|
420
|
-
"Back to layers": "
|
|
421
|
-
"Filters": "
|
|
422
|
-
"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.": "
|
|
424
|
-
"Search keys": "
|
|
425
|
-
"Filters keys": "
|
|
426
|
-
"Filter data": "
|
|
427
|
-
"Search map features…": "
|
|
428
|
-
"Reset all": "
|
|
429
|
-
"Open browser": "
|
|
430
|
-
"Open caption": "
|
|
431
|
-
"Your map has been created with an anonymous account!": "
|
|
432
|
-
"Real-time collaboration": "
|
|
433
|
-
"Cannot parse data": "
|
|
434
|
-
"Start typing...": "
|
|
435
|
-
"No result": "
|
|
436
|
-
"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.": "
|
|
438
|
-
"Overpass supported expressions": "
|
|
439
|
-
"key (eg. building)": "
|
|
440
|
-
"!key (eg. !name)": "!
|
|
441
|
-
"key=value (eg. building=yes)": "
|
|
442
|
-
"key!=value (eg. building!=yes)": "
|
|
443
|
-
"key~value (eg. name~Grisy)": "
|
|
444
|
-
"key=\"value|value2\" (eg. name=\"Paris|Berlin\")": "
|
|
445
|
-
"More info about Overpass syntax": "
|
|
446
|
-
"For more complex needs, see": "
|
|
447
|
-
"Choose data": "
|
|
448
|
-
"Import helpers:": "
|
|
449
|
-
"Choose the format": "
|
|
450
|
-
"Choose the layer": "
|
|
451
|
-
"Layer name": "
|
|
452
|
-
"Choose import mode": "
|
|
453
|
-
"Copy into the layer": "
|
|
454
|
-
"Link to the layer as remote data": "
|
|
455
|
-
"Condition": "
|
|
456
|
-
"key=value or key!=value": "
|
|
457
|
-
"Are you sure you want to delete this rule?": "
|
|
458
|
-
"empty rule": "
|
|
459
|
-
"Conditional style rules": "
|
|
460
|
-
"Add rule": "
|
|
461
|
-
"Browser: data": "
|
|
462
|
-
"Browser: layers": "
|
|
463
|
-
"Browser: filters": "
|
|
464
|
-
"Enable real-time collaboration": "
|
|
465
|
-
"✅ Copied!": "✅
|
|
466
|
-
"Choose a dataset": "
|
|
467
|
-
"Choose this dataset": "
|
|
468
|
-
"GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine:
|
|
469
|
-
"Choose a theme": "
|
|
470
|
-
"Symplify all geometries to points": "
|
|
471
|
-
"Choose this data": "
|
|
472
|
-
"Search admin boundary": "
|
|
473
|
-
"Please choose a theme and a boundary first.": "
|
|
474
|
-
"Expression": "
|
|
475
|
-
"Geometry mode": "
|
|
476
|
-
"Only geometry centers": "
|
|
477
|
-
"Search area": "
|
|
478
|
-
"Type area name, or let empty to load data in current map view": "
|
|
479
|
-
"Data successfully imported!": "
|
|
480
|
-
"
|
|
481
|
-
"
|
|
482
|
-
"
|
|
483
|
-
"
|
|
484
|
-
"
|
|
485
|
-
"
|
|
486
|
-
"
|
|
487
|
-
"
|
|
488
|
-
"
|
|
489
|
-
"
|
|
490
|
-
"
|
|
491
|
-
"
|
|
492
|
-
"
|
|
493
|
-
"
|
|
494
|
-
"
|
|
495
|
-
"
|
|
496
|
-
"
|
|
497
|
-
"
|
|
498
|
-
"
|
|
499
|
-
"
|
|
500
|
-
"
|
|
501
|
-
"
|
|
502
|
-
"
|
|
503
|
-
"
|
|
504
|
-
"
|
|
505
|
-
"
|
|
506
|
-
"
|
|
507
|
-
"
|
|
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=sí)",
|
|
442
|
+
"key!=value (eg. building!=yes)": "clave!=valor (ej. edificio!=sí)",
|
|
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"
|
|
508
521
|
}
|