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