umap-project 3.3.6__py3-none-any.whl → 3.4.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.
Files changed (239) hide show
  1. umap/__init__.py +1 -1
  2. umap/context_processors.py +4 -1
  3. umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
  4. umap/locale/cs_CZ/LC_MESSAGES/django.po +43 -33
  5. umap/locale/da/LC_MESSAGES/django.mo +0 -0
  6. umap/locale/da/LC_MESSAGES/django.po +43 -33
  7. umap/locale/de/LC_MESSAGES/django.mo +0 -0
  8. umap/locale/de/LC_MESSAGES/django.po +35 -29
  9. umap/locale/el/LC_MESSAGES/django.mo +0 -0
  10. umap/locale/el/LC_MESSAGES/django.po +35 -29
  11. umap/locale/en/LC_MESSAGES/django.po +47 -41
  12. umap/locale/es/LC_MESSAGES/django.mo +0 -0
  13. umap/locale/es/LC_MESSAGES/django.po +43 -33
  14. umap/locale/et/LC_MESSAGES/django.mo +0 -0
  15. umap/locale/et/LC_MESSAGES/django.po +58 -54
  16. umap/locale/eu/LC_MESSAGES/django.mo +0 -0
  17. umap/locale/eu/LC_MESSAGES/django.po +43 -33
  18. umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
  19. umap/locale/fa_IR/LC_MESSAGES/django.po +43 -33
  20. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  21. umap/locale/fr/LC_MESSAGES/django.po +36 -30
  22. umap/locale/gl/LC_MESSAGES/django.mo +0 -0
  23. umap/locale/gl/LC_MESSAGES/django.po +43 -33
  24. umap/locale/hu/LC_MESSAGES/django.mo +0 -0
  25. umap/locale/hu/LC_MESSAGES/django.po +35 -29
  26. umap/locale/is/LC_MESSAGES/django.mo +0 -0
  27. umap/locale/is/LC_MESSAGES/django.po +43 -33
  28. umap/locale/it/LC_MESSAGES/django.mo +0 -0
  29. umap/locale/it/LC_MESSAGES/django.po +43 -33
  30. umap/locale/nl/LC_MESSAGES/django.mo +0 -0
  31. umap/locale/nl/LC_MESSAGES/django.po +35 -29
  32. umap/locale/pl/LC_MESSAGES/django.mo +0 -0
  33. umap/locale/pl/LC_MESSAGES/django.po +114 -103
  34. umap/locale/pt/LC_MESSAGES/django.mo +0 -0
  35. umap/locale/pt/LC_MESSAGES/django.po +43 -33
  36. umap/locale/th_TH/LC_MESSAGES/django.mo +0 -0
  37. umap/locale/th_TH/LC_MESSAGES/django.po +310 -109
  38. umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
  39. umap/locale/zh_TW/LC_MESSAGES/django.po +80 -70
  40. umap/management/commands/switch_user.py +2 -2
  41. umap/migrations/0018_datalayer_uuid.py +1 -1
  42. umap/models.py +7 -3
  43. umap/settings/local.py.sample +1 -1
  44. umap/static/umap/base.css +89 -32
  45. umap/static/umap/content.css +129 -33
  46. umap/static/umap/css/bar.css +82 -20
  47. umap/static/umap/css/browser.css +163 -0
  48. umap/static/umap/css/contextmenu.css +15 -0
  49. umap/static/umap/css/dialog.css +36 -16
  50. umap/static/umap/css/form.css +123 -33
  51. umap/static/umap/css/icon.css +46 -3
  52. umap/static/umap/css/panel.css +7 -3
  53. umap/static/umap/css/popup.css +34 -8
  54. umap/static/umap/css/tooltip.css +8 -4
  55. umap/static/umap/img/16-white.svg +26 -8
  56. umap/static/umap/img/16.svg +1 -1
  57. umap/static/umap/img/source/16-white.svg +36 -18
  58. umap/static/umap/img/source/16.svg +1 -1
  59. umap/static/umap/js/components/alerts/alert.css +69 -31
  60. umap/static/umap/js/components/alerts/alert.js +20 -2
  61. umap/static/umap/js/components/base.js +1 -1
  62. umap/static/umap/js/modules/browser.js +69 -61
  63. umap/static/umap/js/modules/caption.js +10 -7
  64. umap/static/umap/js/modules/data/features.js +85 -60
  65. umap/static/umap/js/modules/data/fields.js +446 -0
  66. umap/static/umap/js/modules/data/layer.js +78 -184
  67. umap/static/umap/js/modules/domutils.js +109 -0
  68. umap/static/umap/js/modules/filters.js +780 -0
  69. umap/static/umap/js/modules/form/builder.js +8 -5
  70. umap/static/umap/js/modules/form/fields.js +111 -221
  71. umap/static/umap/js/modules/formatter.js +24 -1
  72. umap/static/umap/js/modules/help.js +4 -3
  73. umap/static/umap/js/modules/i18n.js +1 -1
  74. umap/static/umap/js/modules/importer.js +1 -1
  75. umap/static/umap/js/modules/importers/opendata.js +15 -0
  76. umap/static/umap/js/modules/importers/openrouteservice.js +6 -1
  77. umap/static/umap/js/modules/managers.js +2 -2
  78. umap/static/umap/js/modules/permissions.js +39 -31
  79. umap/static/umap/js/modules/rendering/controls.js +11 -9
  80. umap/static/umap/js/modules/rendering/icon.js +3 -8
  81. umap/static/umap/js/modules/rendering/layers/base.js +1 -1
  82. umap/static/umap/js/modules/rendering/layers/classified.js +18 -11
  83. umap/static/umap/js/modules/rendering/layers/cluster.js +5 -3
  84. umap/static/umap/js/modules/rendering/layers/heat.js +27 -21
  85. umap/static/umap/js/modules/rendering/template.js +50 -23
  86. umap/static/umap/js/modules/rendering/ui.js +29 -23
  87. umap/static/umap/js/modules/rules.js +38 -44
  88. umap/static/umap/js/modules/schema.js +3 -6
  89. umap/static/umap/js/modules/share.js +5 -4
  90. umap/static/umap/js/modules/tableeditor.js +50 -38
  91. umap/static/umap/js/modules/templates.js +2 -3
  92. umap/static/umap/js/modules/ui/bar.js +55 -23
  93. umap/static/umap/js/modules/ui/dialog.js +38 -27
  94. umap/static/umap/js/modules/ui/panel.js +23 -8
  95. umap/static/umap/js/modules/ui/tooltip.js +6 -5
  96. umap/static/umap/js/modules/umap.js +151 -56
  97. umap/static/umap/js/modules/utils.js +24 -2
  98. umap/static/umap/js/umap.core.js +1 -110
  99. umap/static/umap/locale/am_ET.js +52 -17
  100. umap/static/umap/locale/am_ET.json +52 -17
  101. umap/static/umap/locale/ar.js +52 -17
  102. umap/static/umap/locale/ar.json +52 -17
  103. umap/static/umap/locale/ast.js +52 -17
  104. umap/static/umap/locale/ast.json +52 -17
  105. umap/static/umap/locale/bg.js +52 -17
  106. umap/static/umap/locale/bg.json +52 -17
  107. umap/static/umap/locale/br.js +48 -22
  108. umap/static/umap/locale/br.json +48 -22
  109. umap/static/umap/locale/ca.js +52 -17
  110. umap/static/umap/locale/ca.json +52 -17
  111. umap/static/umap/locale/cs_CZ.js +52 -17
  112. umap/static/umap/locale/cs_CZ.json +52 -17
  113. umap/static/umap/locale/da.js +54 -17
  114. umap/static/umap/locale/da.json +54 -17
  115. umap/static/umap/locale/de.js +51 -16
  116. umap/static/umap/locale/de.json +51 -16
  117. umap/static/umap/locale/el.js +52 -17
  118. umap/static/umap/locale/el.json +52 -17
  119. umap/static/umap/locale/en.js +53 -16
  120. umap/static/umap/locale/en.json +53 -16
  121. umap/static/umap/locale/en_US.json +52 -17
  122. umap/static/umap/locale/es.js +54 -17
  123. umap/static/umap/locale/es.json +54 -17
  124. umap/static/umap/locale/et.js +91 -56
  125. umap/static/umap/locale/et.json +91 -56
  126. umap/static/umap/locale/eu.js +84 -49
  127. umap/static/umap/locale/eu.json +84 -49
  128. umap/static/umap/locale/fa_IR.js +52 -17
  129. umap/static/umap/locale/fa_IR.json +52 -17
  130. umap/static/umap/locale/fi.js +52 -17
  131. umap/static/umap/locale/fi.json +52 -17
  132. umap/static/umap/locale/fr.js +53 -16
  133. umap/static/umap/locale/fr.json +53 -16
  134. umap/static/umap/locale/gl.js +52 -17
  135. umap/static/umap/locale/gl.json +52 -17
  136. umap/static/umap/locale/he.js +52 -17
  137. umap/static/umap/locale/he.json +52 -17
  138. umap/static/umap/locale/hr.js +52 -17
  139. umap/static/umap/locale/hr.json +52 -17
  140. umap/static/umap/locale/hu.js +59 -24
  141. umap/static/umap/locale/hu.json +59 -24
  142. umap/static/umap/locale/id.js +52 -17
  143. umap/static/umap/locale/id.json +52 -17
  144. umap/static/umap/locale/is.js +52 -17
  145. umap/static/umap/locale/is.json +52 -17
  146. umap/static/umap/locale/it.js +52 -17
  147. umap/static/umap/locale/it.json +52 -17
  148. umap/static/umap/locale/ja.js +52 -17
  149. umap/static/umap/locale/ja.json +52 -17
  150. umap/static/umap/locale/ko.js +52 -17
  151. umap/static/umap/locale/ko.json +52 -17
  152. umap/static/umap/locale/lt.js +52 -17
  153. umap/static/umap/locale/lt.json +52 -17
  154. umap/static/umap/locale/ms.js +52 -17
  155. umap/static/umap/locale/ms.json +52 -17
  156. umap/static/umap/locale/nl.js +52 -17
  157. umap/static/umap/locale/nl.json +52 -17
  158. umap/static/umap/locale/no.js +52 -17
  159. umap/static/umap/locale/no.json +52 -17
  160. umap/static/umap/locale/pl.js +53 -17
  161. umap/static/umap/locale/pl.json +53 -17
  162. umap/static/umap/locale/pl_PL.json +52 -17
  163. umap/static/umap/locale/pt.js +52 -17
  164. umap/static/umap/locale/pt.json +52 -17
  165. umap/static/umap/locale/pt_BR.js +52 -17
  166. umap/static/umap/locale/pt_BR.json +52 -17
  167. umap/static/umap/locale/pt_PT.js +52 -17
  168. umap/static/umap/locale/pt_PT.json +52 -17
  169. umap/static/umap/locale/ro.js +52 -17
  170. umap/static/umap/locale/ro.json +52 -17
  171. umap/static/umap/locale/ru.js +52 -17
  172. umap/static/umap/locale/ru.json +52 -17
  173. umap/static/umap/locale/si.js +1 -1
  174. umap/static/umap/locale/si.json +1 -1
  175. umap/static/umap/locale/sk_SK.js +52 -17
  176. umap/static/umap/locale/sk_SK.json +52 -17
  177. umap/static/umap/locale/sl.js +52 -17
  178. umap/static/umap/locale/sl.json +52 -17
  179. umap/static/umap/locale/sr.js +52 -17
  180. umap/static/umap/locale/sr.json +52 -17
  181. umap/static/umap/locale/sv.js +52 -17
  182. umap/static/umap/locale/sv.json +52 -17
  183. umap/static/umap/locale/th_TH.js +52 -17
  184. umap/static/umap/locale/th_TH.json +52 -17
  185. umap/static/umap/locale/tr.js +52 -17
  186. umap/static/umap/locale/tr.json +52 -17
  187. umap/static/umap/locale/uk_UA.js +52 -17
  188. umap/static/umap/locale/uk_UA.json +52 -17
  189. umap/static/umap/locale/vi.js +52 -17
  190. umap/static/umap/locale/vi.json +52 -17
  191. umap/static/umap/locale/vi_VN.json +52 -17
  192. umap/static/umap/locale/zh.js +52 -17
  193. umap/static/umap/locale/zh.json +52 -17
  194. umap/static/umap/locale/zh_CN.json +52 -17
  195. umap/static/umap/locale/zh_TW.Big5.json +52 -17
  196. umap/static/umap/locale/zh_TW.js +52 -16
  197. umap/static/umap/locale/zh_TW.json +52 -16
  198. umap/static/umap/map.css +63 -226
  199. umap/static/umap/unittests/utils.js +18 -0
  200. umap/static/umap/vars.css +23 -5
  201. umap/templates/umap/components/alerts/alert.html +32 -29
  202. umap/templates/umap/css.html +2 -1
  203. umap/templates/umap/login_popup_end.html +18 -9
  204. umap/templates/umap/user_map_table.html +7 -2
  205. umap/tests/integration/conftest.py +10 -6
  206. umap/tests/integration/test_anonymous_owned_map.py +90 -37
  207. umap/tests/integration/test_basics.py +25 -1
  208. umap/tests/integration/test_browser.py +37 -0
  209. umap/tests/integration/test_conditional_rules.py +107 -52
  210. umap/tests/integration/test_draw_polygon.py +6 -0
  211. umap/tests/integration/test_draw_polyline.py +11 -0
  212. umap/tests/integration/test_edit_marker.py +1 -1
  213. umap/tests/integration/test_export_map.py +19 -0
  214. umap/tests/integration/test_fields.py +541 -0
  215. umap/tests/integration/test_filters.py +616 -0
  216. umap/tests/integration/test_iframe.py +1 -1
  217. umap/tests/integration/test_import.py +38 -42
  218. umap/tests/integration/test_map_preview.py +1 -1
  219. umap/tests/integration/test_picto.py +1 -1
  220. umap/tests/integration/test_popup.py +31 -0
  221. umap/tests/integration/test_remote_data.py +60 -4
  222. umap/tests/integration/test_save.py +1 -1
  223. umap/tests/integration/test_share.py +4 -4
  224. umap/tests/integration/test_tableeditor.py +31 -7
  225. umap/tests/integration/test_websocket_sync.py +71 -20
  226. umap/tests/test_dashboard.py +11 -1
  227. umap/tests/test_statics.py +2 -2
  228. umap/tests/test_utils.py +19 -2
  229. umap/tests/test_views.py +1 -1
  230. umap/urls.py +1 -0
  231. umap/utils.py +8 -1
  232. umap/views.py +5 -0
  233. {umap_project-3.3.6.dist-info → umap_project-3.4.0.dist-info}/METADATA +15 -15
  234. {umap_project-3.3.6.dist-info → umap_project-3.4.0.dist-info}/RECORD +237 -233
  235. umap/static/umap/js/modules/facets.js +0 -164
  236. umap/tests/integration/test_facets_browser.py +0 -279
  237. {umap_project-3.3.6.dist-info → umap_project-3.4.0.dist-info}/WHEEL +0 -0
  238. {umap_project-3.3.6.dist-info → umap_project-3.4.0.dist-info}/entry_points.txt +0 -0
  239. {umap_project-3.3.6.dist-info → umap_project-3.4.0.dist-info}/licenses/LICENSE +0 -0
@@ -70,7 +70,7 @@
70
70
  "color": "color",
71
71
  "Comma separated list of numbers, including min and max values.": "Lista de números separados por comas, incluyendo valores mínimos y máximos.",
72
72
  "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.",
73
- "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.",
73
+ "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 beginning of the header, case insensitive. All other column are imported as properties.": "Valores separados por coma, tabulación o punto y coma. Se asume el SRS WGS84. Solo se importan geometrías de tipo Punto. La importación buscará en los encabezados de las columnas cualquier mención a «lat» y «lon» al comienzo del encabezado, sin distinción entre mayúsculas y minúsculas. Todas las demás columnas se importan como propiedades.",
74
74
  "Congratulations, your map has been created!": "¡Felicidades, tu mapa ha sido creado!",
75
75
  "Continue line": "Línea continua",
76
76
  "Coordinates": "Coordenadas",
@@ -159,7 +159,6 @@
159
159
  "Go to \"{coords}\"": "Ir a \"{coords}\"",
160
160
  "Go to the homepage": "Ir a la página de inicio",
161
161
  "Go to «{feature}»": "Ir a «{feature}»",
162
- "Heatmap intensity property": "Propiedad de intensidad del mapa de calor",
163
162
  "Heatmap radius": "Radio del mapa de calor",
164
163
  "Heatmap": "Mapa de calor",
165
164
  "height": "altura",
@@ -255,7 +254,6 @@
255
254
  "Open share & download panel": "Abrir panel de compartir y descargar",
256
255
  "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",
257
256
  "OpenStreetMap": "OpenStreetMap",
258
- "Optional intensity property for heatmap": "Propiedad de intensidad opcional para mapa de calor",
259
257
  "Optional. Same as color if not set.": "Opcional. Igual que el color si no se establece.",
260
258
  "Optional.": "Opcional.",
261
259
  "Override clustering radius (default 80)": "Anular el radio de agrupamiento (80 por defecto)",
@@ -267,7 +265,6 @@
267
265
  "Permanent credits": "Créditos permanentes",
268
266
  "Please be sure the licence is compliant with your use.": "Asegúrate de que la licencia sea compatible con tu uso.",
269
267
  "Please choose a format": "Elige un formato",
270
- "Please enter the name of the property": "Introduce el nombre de la propiedad",
271
268
  "Please save the map first": "Guarda el mapa primero",
272
269
  "Popup (large)": "Ventana emergente (grande)",
273
270
  "Popup content style": "Estilo del contenido emergente",
@@ -397,20 +394,16 @@
397
394
  "Max": "Máx.",
398
395
  "From": "Desde",
399
396
  "Until": "Hasta",
400
- "Example: key1,key2|Label 2,key3|Label 3|checkbox": "Ejemplo: clave1,clave2|Etiqueta 2,clave3|Etiqueta 3|casilla de verificación",
401
397
  "Edit in OpenStreetMap": "Editar en OpenStreetMap",
402
398
  "Back to layers": "Volver a las capas",
403
399
  "Filters": "Filtros",
404
400
  "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",
405
- "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.",
406
401
  "Search keys": "Claves de búsqueda",
407
- "Filters keys": "Claves de filtros",
408
402
  "Filter data": "Filtrar datos",
409
403
  "Search map features…": "Buscar elementos del mapa…",
410
404
  "Reset all": "Reiniciar todo",
411
405
  "Open browser": "Abrir navegador",
412
406
  "Open caption": "Abrir leyenda",
413
- "Your map has been created with an anonymous account!": "¡Tu mapa ha sido creado con una cuenta anónima!",
414
407
  "Real-time collaboration": "Colaboración en tiempo real",
415
408
  "Cannot parse data": "No se pueden analizar los datos",
416
409
  "Start typing...": "Empieza a escribir...",
@@ -466,10 +459,6 @@
466
459
  "Categories": "Categorías",
467
460
  "Comma separated list of categories.": "Lista de categorías separadas por comas.",
468
461
  "Categories mode": "Modo de categorías",
469
- "Remove filter for this column": "Eliminar filtro para esta columna",
470
- "Add filter for this column": "Agregar filtro para esta columna",
471
- "Rename this column": "Cambiar el nombre de esta columna",
472
- "Delete this column": "Eliminar esta columna",
473
462
  "Name “{name}” should not contain a dot.": "El nombre \"{name}\" no debe contener un punto.",
474
463
  "This name already exists: “{name}”": "Este nombre ya existe: \"{name}\"",
475
464
  "Delete selected rows": "Eliminar filas seleccionadas",
@@ -571,11 +560,8 @@
571
560
  "Please choose an instance first.": "Por favor elige una instancia primero.",
572
561
  "No geo column found: must be either `lat(itude)` and `lon(gitude)` or `geom(etry)`.": "No se encontró una columna geográfica: debe ser `lat(itud)` y `lon(gitud)` o `geom(etría)`.",
573
562
  "Add a new field": "Agregar un campo nuevo",
574
- "Are you sure you want to delete this field on all the features?": "¿Estás seguro de que deseas eliminar este campo en todos los elementos?",
575
- "Please enter the new name of this field": "Ingresa el nuevo nombre de este campo",
576
563
  "Cannot process MultiPoint": "No se puede procesar MultiPoint",
577
564
  "Manage Fields": "Administrar campos",
578
- "Rename this field": "Renombrar este campo",
579
565
  "Delete this field": "Eliminar este campo",
580
566
  "Double click to edit the name": "Doble clic para editar el nombre",
581
567
  "Print map": "Imprimir mapa",
@@ -595,7 +581,6 @@
595
581
  "Transform to regular line": "Transformar en línea regular",
596
582
  "Transform to route": "Transformar en ruta",
597
583
  "Restore route": "Restaurar ruta",
598
- "Compute elevation": "Calcular elevación",
599
584
  "Profile": "Perfil",
600
585
  "Compute elevations": "Calcular elevaciones",
601
586
  "Route preference": "Preferencia de ruta",
@@ -615,5 +600,57 @@
615
600
  "Loss:": "Descenso:",
616
601
  "Altitude:": "Altitud:",
617
602
  "Right-click to edit": "Haz clic derecho para editar",
618
- "Draw along routes": "Dibujar siguiendo rutas"
603
+ "Draw along routes": "Dibujar siguiendo rutas",
604
+ "Skipping invalid geometry": "Omitiendo geometría no válida",
605
+ "Add filter": "Agregar filtro",
606
+ "Min/Max": "Mín/Máx",
607
+ "Multiple choices": "Opciones múltiples",
608
+ "Exclusive choice": "Opción exclusiva",
609
+ "Yes/No": "Sí/No",
610
+ "Add a field prior to create a filter.": "Agrega un campo antes de crear un filtro.",
611
+ "Edit this filter": "Editar este filtro",
612
+ "Remove this filter": "Eliminar este filtro",
613
+ "Apply filter to": "Aplicar filtro a",
614
+ "Filter on": "Filtrar por",
615
+ "Human readable name of the filter": "Nombre legible del filtro",
616
+ "Widget for the filter": "Widget del filtro",
617
+ "Edit filter": "Editar filtro",
618
+ "Edit this field": "Editar este campo",
619
+ "all layers": "todas las capas",
620
+ "single layer": "una sola capa",
621
+ "unset": "no establecido",
622
+ "Filters will be displayed in the data browser to ease data selection.": "Los filtros se mostrarán en el navegador de datos para facilitar la selección de información.",
623
+ "[key=\"value\"][key2=\"value2\"] (eg. [boundary=\"educational\"][name=\"Académie de Lyon\"])": "[key=\"value\"][key2=\"value2\"] (por ejemplo, [boundary=\"educational\"][name=\"Académie de Lyon\"])",
624
+ "Field Name": "Nombre del campo",
625
+ "Field Type": "Tipo de campo",
626
+ "Manage field": "Administrar campo",
627
+ "Add filter for this field": "Agregar filtro para este campo",
628
+ "Name cannot be empty.": "El nombre no puede estar vacío.",
629
+ "Are you sure you want to delete this field on all the data?": "¿Estás seguro de que quieres eliminar este campo de todos los datos?",
630
+ "Anonymous map": "Mapa anónimo",
631
+ "Edit filter for this field": "Editar filtro para este campo",
632
+ "Hey, you created a map without an account!": "¡Creaste un mapa sin una cuenta!",
633
+ "This map is anonymous, do you want to attach it to your account?": "Este mapa es anónimo, ¿quieres vincularlo a tu cuenta?",
634
+ "The map has been upgraded to latest version, please save it.": "El mapa se ha actualizado a la última versión, guárdalo.",
635
+ "Elevation has been added!": "¡Se agregó la elevación!",
636
+ "Mapillary": "Mapillary",
637
+ "Wikidata": "Wikidata",
638
+ "Wikipedia contributors": "Colaboradores de Wikipedia",
639
+ "See on Wikipedia": "Ver en Wikipedia",
640
+ "Anonymous map: update who can see and edit it": "Mapa anónimo: actualiza quién puede verlo y editarlo",
641
+ "Login": "Iniciar sesión",
642
+ "Manage filters": "Administrar filtros",
643
+ "Map (all layers)": "Mapa (todas las capas)",
644
+ "Add a filter for this field": "Agregar un filtro para este campo",
645
+ "Short text": "Texto corto",
646
+ "Text": "Texto",
647
+ "Number": "Número",
648
+ "Date": "Fecha",
649
+ "Date and time": "Fecha y hora",
650
+ "List of values": "Lista de valores",
651
+ "Yes / No": "Sí / No",
652
+ "Select field to compute intensity": "Seleccionar campo para calcular intensidad",
653
+ "Optional intensity field to compute heatmap": "Campo de intensidad opcional para calcular el mapa de calor",
654
+ "All layers": "Todas las capas",
655
+ "Comma separated list of values": "Comma separated list of values"
619
656
  }
@@ -5,19 +5,19 @@ const locale = {
5
5
  "## two hashes for second heading": "## kaks trelli teise pealkirja jaoks",
6
6
  "### three hashes for third heading": "### kolm trelli kolmanda pealkirja jaoks",
7
7
  "**double star for bold**": "**kaks tärni paksu kirja jaoks**",
8
- "*single star for italic*": "*single star for italic*",
9
- "--- for a horizontal rule": "--- for a horizontal rule",
8
+ "*single star for italic*": "*üks tärn kursiivi jaoks",
9
+ "--- for a horizontal rule": "--- horisontaalse joone jaoks",
10
10
  "1 day": "1 päev",
11
11
  "1 hour": "1 tund",
12
12
  "5 min": "5 min",
13
13
  "A comma separated list of numbers that defines the stroke dash pattern. Ex.: \"5, 10, 15\".": "Komaga eraldatud numbriloend, mis määrab katkendjoone mustri, nt \"5, 10, 15\".",
14
14
  "About": "Teave",
15
- "Action not allowed :(": "Action not allowed :(",
15
+ "Action not allowed :(": "Tegevus pole lubatud :(",
16
16
  "Activate slideshow mode": "Aktiveeri slaidiesitluse režiim",
17
17
  "Add a layer": "Lisa kiht",
18
18
  "Add a line to the current multi": "Add a line to the current multi",
19
19
  "Add a polygon to the current multi": "Add a polygon to the current multi",
20
- "Add image URL": "Add image URL",
20
+ "Add image URL": "Lisa pildi URL",
21
21
  "Advanced actions": "Täiendavad tegevused",
22
22
  "Advanced properties": "Täiendavad omadused",
23
23
  "All data and settings of the map": "All data and settings of the map",
@@ -34,7 +34,7 @@ const locale = {
34
34
  "Auto": "Auto",
35
35
  "Automatic": "Automaatne",
36
36
  "Autostart when map is loaded": "Automaatne käivitus kaardi laadimisel",
37
- "Back to preview": "Back to preview",
37
+ "Back to preview": "Tagasi eelvaate juurde",
38
38
  "Background overlay url": "Background overlay url",
39
39
  "Ball": "Nööpnõel",
40
40
  "Bring feature to center": "Bring feature to center",
@@ -44,7 +44,7 @@ const locale = {
44
44
  "Caption": "Legend",
45
45
  "Center map on your location": "Sea oma asukoht keskpunktiks",
46
46
  "Change tilelayers": "Vaheta kaardi taust",
47
- "Change": "Change",
47
+ "Change": "Muuda",
48
48
  "Choose the data format": "Vali andmevorming",
49
49
  "Choropleth breakpoints": "Choropleth breakpoints",
50
50
  "Choropleth classes": "Choropleth classes",
@@ -70,13 +70,13 @@ const locale = {
70
70
  "color": "Värv",
71
71
  "Comma separated list of numbers, including min and max values.": "Comma separated list of numbers, including min and max values.",
72
72
  "Comma separated list of properties to use for sorting features. To reverse the sort, put a minus sign (-) before. Eg. mykey,-otherkey.": "Comma separated list of properties to use for sorting features. To reverse the sort, put a minus sign (-) before. Eg. mykey,-otherkey.",
73
- "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.": "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.",
73
+ "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 beginning of the header, case insensitive. All other column are imported as properties.": "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 beginning of the header, case insensitive. All other column are imported as properties.",
74
74
  "Congratulations, your map has been created!": "Congratulations, your map has been created!",
75
75
  "Continue line": "Jätka joont",
76
76
  "Coordinates": "Koordinaadid",
77
- "copy": "copy",
77
+ "copy": "kopeeri",
78
78
  "Credits": "Õigused",
79
- "Current map view": "Current map view",
79
+ "Current map view": "Praegune vaade",
80
80
  "Current view instead of default map view?": "Praegune vaade vaikimisi vaate asemel?",
81
81
  "Custom background": "Kohandatud taust",
82
82
  "Custom overlay": "Custom overlay",
@@ -86,7 +86,7 @@ const locale = {
86
86
  "Default interaction options": "Interaktsiooni vaikesuvandid",
87
87
  "Default properties": "Vaikeomadused",
88
88
  "Default shape properties": "Kujundi vaikeomadused",
89
- "Default view": "Default view",
89
+ "Default view": "Vaikevaade",
90
90
  "Default zoom level": "Vaikimisi suurendusaste",
91
91
  "Default": "Vaikesäte",
92
92
  "Default: name": "Vaikimisi: name",
@@ -99,7 +99,7 @@ const locale = {
99
99
  "Delete this vertex (Alt+Click)": "Kustuta see tipp (Alt+Klõps)",
100
100
  "Delete": "Kustuta",
101
101
  "description": "kirjeldus",
102
- "Direct link": "Direct link",
102
+ "Direct link": "Otselink",
103
103
  "Directions from here": "Juhised siit",
104
104
  "Display label": "Kuva silt",
105
105
  "Display measure": "Kuva suurus",
@@ -131,7 +131,7 @@ const locale = {
131
131
  "Dynamic": "Dünaamiline",
132
132
  "Edit feature's layer": "Muuda elemendi kihti",
133
133
  "Edit properties in a table": "Muuda omadusi tabelis",
134
- "Edit the title of the map": "Edit the title of the map",
134
+ "Edit the title of the map": "Muuda kaardi pealkirja",
135
135
  "Edit this feature": "Muuda seda elementi",
136
136
  "Edit": "Muuda",
137
137
  "Embed and link options": "Embed and link options",
@@ -159,7 +159,6 @@ const locale = {
159
159
  "Go to \"{coords}\"": "Go to \"{coords}\"",
160
160
  "Go to the homepage": "Go to the homepage",
161
161
  "Go to «{feature}»": "Mine «{feature}» juurde",
162
- "Heatmap intensity property": "Heatmap intensity property",
163
162
  "Heatmap radius": "Soojuskaardi raadius",
164
163
  "Heatmap": "Soojuskaart",
165
164
  "height": "kõrgus",
@@ -203,7 +202,7 @@ const locale = {
203
202
  "Licence": "Litsents",
204
203
  "licence": "litsents",
205
204
  "Limit bounds": "Määra piirid",
206
- "Link to view the map": "Link to view the map",
205
+ "Link to view the map": "Link kaardi vaatamiseks",
207
206
  "Link to…": "Lingi…",
208
207
  "Link with text: [[https://example.com|text of the link]]": "Link with text: [[https://example.com|text of the link]]",
209
208
  "Long credits": "Long credits",
@@ -240,22 +239,21 @@ const locale = {
240
239
  "No licence has been set": "Litsentsi pole määratud",
241
240
  "No results": "Tulemused puuduvad",
242
241
  "no": "ei",
243
- "No.": "No.",
242
+ "No.": "Nr",
244
243
  "None": "Mitte midagi",
245
244
  "Number of desired classes (default 5)": "Number of desired classes (default 5)",
246
245
  "On the bottom": "All",
247
246
  "On the left": "Vasakul",
248
247
  "On the right": "Paremal",
249
248
  "On the top": "Ülal",
250
- "Only visible layers' data": "Only visible layers' data",
249
+ "Only visible layers' data": "Ainult nähtavate kihtide andmed",
251
250
  "opacity": "läbipaistvus",
252
- "Opacity": "Opacity",
251
+ "Opacity": "Läbipaistvus",
253
252
  "Open current feature on load": "Open current feature on load",
254
253
  "Open link in…": "Ava link...",
255
254
  "Open share & download panel": "Open share & download panel",
256
255
  "Open this map extent in a map editor to provide more accurate data to OpenStreetMap": "Open this map extent in a map editor to provide more accurate data to OpenStreetMap",
257
256
  "OpenStreetMap": "OpenStreetMap",
258
- "Optional intensity property for heatmap": "Optional intensity property for heatmap",
259
257
  "Optional. Same as color if not set.": "Valikuline. Sama mis värv, kui pole määratud teisiti",
260
258
  "Optional.": "Valikuline.",
261
259
  "Override clustering radius (default 80)": "Override clustering radius (default 80)",
@@ -267,14 +265,13 @@ const locale = {
267
265
  "Permanent credits": "Permanent credits",
268
266
  "Please be sure the licence is compliant with your use.": "Please be sure the licence is compliant with your use.",
269
267
  "Please choose a format": "Vali palun vorming",
270
- "Please enter the name of the property": "Sisesta palun omaduse nimi",
271
268
  "Please save the map first": "Salvesta palun enne kaart",
272
269
  "Popup (large)": "Hüpik (suur)",
273
270
  "Popup content style": "Hüpiku sisu stiil",
274
271
  "Popup content template": "Hüpiku mall",
275
272
  "Popup shape": "Hüpiku kuju",
276
273
  "Popup": "Hüpik",
277
- "Powered by uMap": "Powered by uMap",
274
+ "Powered by uMap": "Valminud uMapiga",
278
275
  "previous": "tagasi",
279
276
  "Problem in the response": "Problem in the response",
280
277
  "Properties imported:": "Imporditud omadused:",
@@ -286,7 +283,7 @@ const locale = {
286
283
  "Replace layer content": "Asenda kihi sisu",
287
284
  "Restore this version": "Taasta see versioon",
288
285
  "Save current edits": "Salvesta praegused muudatused",
289
- "Save map": "Save map",
286
+ "Save map": "Salvesta kaart",
290
287
  "Save": "Salvesta",
291
288
  "Saved center and zoom": "Saved center and zoom",
292
289
  "Search location": "Asukoha otsing",
@@ -295,12 +292,12 @@ const locale = {
295
292
  "See full screen": "Täisekraanvaade",
296
293
  "See on OpenStreetMap": "See on OpenStreetMap",
297
294
  "Set it to false to hide this layer from the slideshow, the data browser, the popup navigation…": "Set it to false to hide this layer from the slideshow, the data browser, the popup navigation…",
298
- "settings": "settings",
295
+ "settings": "sätted",
299
296
  "Shape properties": "Kujundi omadused",
300
297
  "Share and download": "Share and download",
301
298
  "Share this link to open a customized map view": "Share this link to open a customized map view",
302
299
  "Short credits": "Short credits",
303
- "Short link": "Short link",
300
+ "Short link": "Lühilink",
304
301
  "Show this layer in the caption": "Show this layer in the caption",
305
302
  "Show/hide layer": "Näita/peida kiht",
306
303
  "Side panel": "Külgpaneel",
@@ -315,7 +312,7 @@ const locale = {
315
312
  "Start slideshow": "Alusta slaidiprogrammi",
316
313
  "Stop editing": "Lõpeta muutmine",
317
314
  "Stop slideshow": "Lõpeta slaidiprogramm",
318
- "Street": "Street",
315
+ "Street": "Tänav",
319
316
  "stroke": "piirjoon",
320
317
  "Supported scheme": "Supported scheme",
321
318
  "Supported variables that will be dynamically replaced": "Supported variables that will be dynamically replaced",
@@ -349,11 +346,11 @@ const locale = {
349
346
  "Use placeholders with feature properties between brackets, eg. {name}, they will be dynamically replaced by the corresponding values.": "Use placeholders with feature properties between brackets, eg. {name}, they will be dynamically replaced by the corresponding values.",
350
347
  "User content credits": "Kasutaja sisu õigused",
351
348
  "User interface options": "Kasutajaliidese suvandid",
352
- "User location": "User location",
349
+ "User location": "Kasutaja asukoht",
353
350
  "Verify remote URL": "Verify remote URL",
354
351
  "Versions": "Versioonid",
355
352
  "View Fullscreen": "Täisekraanivaade",
356
- "View": "View",
353
+ "View": "Vaade",
357
354
  "Visibility: {status}": "Visibility: {status}",
358
355
  "weight": "jämedus",
359
356
  "Where do we go from here?": "Kuhu läheb siit edasi?",
@@ -383,9 +380,9 @@ const locale = {
383
380
  "{delay} seconds": "{delay} sekundit",
384
381
  "{distance} km": "{distance} km",
385
382
  "{distance} m": "{distance} m",
386
- "{distance} miles": "{distance} miles",
383
+ "{distance} miles": "{distance} miili",
387
384
  "{distance} NM": "{distance} NM",
388
- "{distance} yd": "{distance} yd",
385
+ "{distance} yd": "{distance} jardi",
389
386
  "Edit map name and caption": "Edit map name and caption",
390
387
  "Map advanced properties": "Map advanced properties",
391
388
  "Edit map details": "Edit map details",
@@ -395,26 +392,22 @@ const locale = {
395
392
  "<empty value>": "<empty value>",
396
393
  "Min": "Min",
397
394
  "Max": "Max",
398
- "From": "From",
399
- "Until": "Until",
400
- "Example: key1,key2|Label 2,key3|Label 3|checkbox": "Example: key1,key2|Label 2,key3|Label 3|checkbox",
401
- "Edit in OpenStreetMap": "Edit in OpenStreetMap",
402
- "Back to layers": "Back to layers",
403
- "Filters": "Filters",
395
+ "From": "Alates",
396
+ "Until": "Kuni",
397
+ "Edit in OpenStreetMap": "Muuda OpenStreetMapis",
398
+ "Back to layers": "Tagasi kihtide juurde",
399
+ "Filters": "Filtrid",
404
400
  "Comma separated list of properties to use when filtering features by text input": "Comma separated list of properties to use when filtering features by text input",
405
- "Comma separated list of properties to use for filters (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key). To control input field type, add it after another | (eg.: mykey|My Key|checkbox,otherkey|Other Key|datetime). Allowed values for the input field type are checkbox (default), radio, number, date and datetime.": "Comma separated list of properties to use for filters (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key). To control input field type, add it after another | (eg.: mykey|My Key|checkbox,otherkey|Other Key|datetime). Allowed values for the input field type are checkbox (default), radio, number, date and datetime.",
406
401
  "Search keys": "Search keys",
407
- "Filters keys": "Filters keys",
408
402
  "Filter data": "Filter data",
409
403
  "Search map features…": "Search map features…",
410
- "Reset all": "Reset all",
411
- "Open browser": "Open browser",
404
+ "Reset all": "Lähtesta kõik",
405
+ "Open browser": "Ava brauser",
412
406
  "Open caption": "Open caption",
413
- "Your map has been created with an anonymous account!": "Your map has been created with an anonymous account!",
414
407
  "Real-time collaboration": "Real-time collaboration",
415
408
  "Cannot parse data": "Cannot parse data",
416
409
  "Start typing...": "Start typing...",
417
- "No result": "No result",
410
+ "No result": "Tulemused puuduvad",
418
411
  "Data browser": "Data browser",
419
412
  "When providing an URL, uMap can copy the remote data in a layer, or add this URL as remote source of the layer. In that case, data will always be fetched from that URL, and thus be up to date, but it will not be possible to edit it inside uMap.": "When providing an URL, uMap can copy the remote data in a layer, or add this URL as remote source of the layer. In that case, data will always be fetched from that URL, and thus be up to date, but it will not be possible to edit it inside uMap.",
420
413
  "Overpass supported expressions": "Overpass supported expressions",
@@ -426,10 +419,10 @@ const locale = {
426
419
  "key=\"value|value2\" (eg. name=\"Paris|Berlin\")": "key=\"value|value2\" (eg. name=\"Paris|Berlin\")",
427
420
  "More info about Overpass syntax": "More info about Overpass syntax",
428
421
  "For more complex needs, see": "For more complex needs, see",
429
- "Choose data": "Choose data",
430
- "Choose the format": "Choose the format",
431
- "Choose the layer": "Choose the layer",
432
- "Layer name": "Layer name",
422
+ "Choose data": "Vali andmed",
423
+ "Choose the format": "Vali vorming",
424
+ "Choose the layer": "Vali kiht",
425
+ "Layer name": "Kihi nimi",
433
426
  "Choose import mode": "Choose import mode",
434
427
  "Copy into the layer": "Copy into the layer",
435
428
  "Link to the layer as remote data": "Link to the layer as remote data",
@@ -443,11 +436,11 @@ const locale = {
443
436
  "Browser: layers": "Browser: layers",
444
437
  "Browser: filters": "Browser: filters",
445
438
  "Enable real-time collaboration": "Enable real-time collaboration",
446
- "✅ Copied!": "✅ Copied!",
439
+ "✅ Copied!": "✅ Kopeeritud!",
447
440
  "Choose a dataset": "Choose a dataset",
448
441
  "Choose this dataset": "Choose this dataset",
449
442
  "GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: thematic data from OpenStreetMap",
450
- "Choose a theme": "Choose a theme",
443
+ "Choose a theme": "Vali teema",
451
444
  "Choose this data": "Choose this data",
452
445
  "Search admin boundary": "Search admin boundary",
453
446
  "Please choose a theme and a boundary first.": "Please choose a theme and a boundary first.",
@@ -466,10 +459,6 @@ const locale = {
466
459
  "Categories": "Categories",
467
460
  "Comma separated list of categories.": "Comma separated list of categories.",
468
461
  "Categories mode": "Categories mode",
469
- "Remove filter for this column": "Remove filter for this column",
470
- "Add filter for this column": "Add filter for this column",
471
- "Rename this column": "Rename this column",
472
- "Delete this column": "Delete this column",
473
462
  "Name “{name}” should not contain a dot.": "Name “{name}” should not contain a dot.",
474
463
  "This name already exists: “{name}”": "This name already exists: “{name}”",
475
464
  "Delete selected rows": "Delete selected rows",
@@ -515,7 +504,7 @@ const locale = {
515
504
  "Default zoom": "Default zoom",
516
505
  "Default latitude": "Default latitude",
517
506
  "Default longitude": "Default longitude",
518
- "Edit map default view": "Edit map default view",
507
+ "Edit map default view": "Kaardi muutmise vaikevaade",
519
508
  "Use current center and zoom": "Use current center and zoom",
520
509
  "Layer permalink": "Layer permalink",
521
510
  "Back to home": "Back to home",
@@ -571,11 +560,8 @@ const locale = {
571
560
  "Please choose an instance first.": "Please choose an instance first.",
572
561
  "No geo column found: must be either `lat(itude)` and `lon(gitude)` or `geom(etry)`.": "No geo column found: must be either `lat(itude)` and `lon(gitude)` or `geom(etry)`.",
573
562
  "Add a new field": "Add a new field",
574
- "Are you sure you want to delete this field on all the features?": "Are you sure you want to delete this field on all the features?",
575
- "Please enter the new name of this field": "Please enter the new name of this field",
576
563
  "Cannot process MultiPoint": "Cannot process MultiPoint",
577
564
  "Manage Fields": "Manage Fields",
578
- "Rename this field": "Rename this field",
579
565
  "Delete this field": "Delete this field",
580
566
  "Double click to edit the name": "Double click to edit the name",
581
567
  "Print map": "Print map",
@@ -595,7 +581,6 @@ const locale = {
595
581
  "Transform to regular line": "Transform to regular line",
596
582
  "Transform to route": "Transform to route",
597
583
  "Restore route": "Restore route",
598
- "Compute elevation": "Compute elevation",
599
584
  "Profile": "Profile",
600
585
  "Compute elevations": "Compute elevations",
601
586
  "Route preference": "Route preference",
@@ -615,7 +600,57 @@ const locale = {
615
600
  "Loss:": "Loss:",
616
601
  "Altitude:": "Altitude:",
617
602
  "Right-click to edit": "Right-click to edit",
618
- "Draw along routes": "Draw along routes"
603
+ "Draw along routes": "Draw along routes",
604
+ "Skipping invalid geometry": "Skipping invalid geometry",
605
+ "Add filter": "Add filter",
606
+ "Min/Max": "Min/Max",
607
+ "Multiple choices": "Multiple choices",
608
+ "Exclusive choice": "Exclusive choice",
609
+ "Yes/No": "Yes/No",
610
+ "Add a field prior to create a filter.": "Add a field prior to create a filter.",
611
+ "Edit this filter": "Edit this filter",
612
+ "Remove this filter": "Remove this filter",
613
+ "Apply filter to": "Apply filter to",
614
+ "Filter on": "Filter on",
615
+ "Human readable name of the filter": "Human readable name of the filter",
616
+ "Widget for the filter": "Widget for the filter",
617
+ "Edit filter": "Edit filter",
618
+ "Edit this field": "Edit this field",
619
+ "all layers": "all layers",
620
+ "single layer": "single layer",
621
+ "unset": "unset",
622
+ "Filters will be displayed in the data browser to ease data selection.": "Filters will be displayed in the data browser to ease data selection.",
623
+ "[key=\"value\"][key2=\"value2\"] (eg. [boundary=\"educational\"][name=\"Académie de Lyon\"])": "[key=\"value\"][key2=\"value2\"] (eg. [boundary=\"educational\"][name=\"Académie de Lyon\"])",
624
+ "Field Name": "Field Name",
625
+ "Field Type": "Field Type",
626
+ "Manage field": "Manage field",
627
+ "Add filter for this field": "Add filter for this field",
628
+ "Name cannot be empty.": "Name cannot be empty.",
629
+ "Are you sure you want to delete this field on all the data?": "Are you sure you want to delete this field on all the data?",
630
+ "Anonymous map": "Anonymous map",
631
+ "Edit filter for this field": "Edit filter for this field",
632
+ "Hey, you created a map without an account!": "Hey, you created a map without an account!",
633
+ "This map is anonymous, do you want to attach it to your account?": "This map is anonymous, do you want to attach it to your account?",
634
+ "The map has been upgraded to latest version, please save it.": "The map has been upgraded to latest version, please save it.",
635
+ "Elevation has been added!": "Elevation has been added!",
636
+ "Mapillary": "Mapillary",
637
+ "Wikidata": "Wikidata",
638
+ "Wikipedia contributors": "Wikipedia contributors",
639
+ "See on Wikipedia": "See on Wikipedia",
640
+ "Anonymous map: update who can see and edit it": "Anonymous map: update who can see and edit it",
641
+ "Login": "Login",
642
+ "Manage filters": "Manage filters",
643
+ "Map (all layers)": "Map (all layers)",
644
+ "Add a filter for this field": "Add a filter for this field",
645
+ "Short text": "Short text",
646
+ "Text": "Text",
647
+ "Number": "Number",
648
+ "Date": "Date",
649
+ "Date and time": "Date and time",
650
+ "List of values": "List of values",
651
+ "Yes / No": "Yes / No",
652
+ "Select field to compute intensity": "Select field to compute intensity",
653
+ "Optional intensity field to compute heatmap": "Optional intensity field to compute heatmap"
619
654
  }
620
655
  L.registerLocale("et", locale)
621
656
  L.setLocale("et")