umap-project 3.4.0b3__py3-none-any.whl → 3.6.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 (222) hide show
  1. umap/__init__.py +1 -1
  2. umap/locale/br/LC_MESSAGES/django.mo +0 -0
  3. umap/locale/br/LC_MESSAGES/django.po +71 -57
  4. umap/locale/da/LC_MESSAGES/django.mo +0 -0
  5. umap/locale/da/LC_MESSAGES/django.po +18 -14
  6. umap/locale/de/LC_MESSAGES/django.mo +0 -0
  7. umap/locale/de/LC_MESSAGES/django.po +20 -16
  8. umap/locale/en/LC_MESSAGES/django.po +18 -14
  9. umap/locale/es/LC_MESSAGES/django.mo +0 -0
  10. umap/locale/es/LC_MESSAGES/django.po +20 -16
  11. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  12. umap/locale/fr/LC_MESSAGES/django.po +18 -14
  13. umap/locale/hu/LC_MESSAGES/django.mo +0 -0
  14. umap/locale/hu/LC_MESSAGES/django.po +20 -16
  15. umap/locale/pl/LC_MESSAGES/django.mo +0 -0
  16. umap/locale/pl/LC_MESSAGES/django.po +101 -95
  17. umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
  18. umap/locale/zh_TW/LC_MESSAGES/django.po +20 -16
  19. umap/management/commands/clean_tilelayer.py +0 -1
  20. umap/management/commands/search_maps.py +95 -0
  21. umap/settings/__init__.py +9 -1
  22. umap/settings/base.py +7 -6
  23. umap/static/umap/content.css +0 -3
  24. umap/static/umap/css/bar.css +9 -6
  25. umap/static/umap/css/form.css +25 -9
  26. umap/static/umap/css/icon.css +8 -0
  27. umap/static/umap/css/popup.css +1 -0
  28. umap/static/umap/img/16-white.svg +5 -2
  29. umap/static/umap/img/16.svg +1 -1
  30. umap/static/umap/img/source/16-white.svg +7 -4
  31. umap/static/umap/img/source/16.svg +1 -1
  32. umap/static/umap/js/components/copiable.js +47 -0
  33. umap/static/umap/js/modules/autocomplete.js +32 -67
  34. umap/static/umap/js/modules/browser.js +31 -14
  35. umap/static/umap/js/modules/data/features.js +34 -36
  36. umap/static/umap/js/modules/data/fields.js +199 -23
  37. umap/static/umap/js/modules/data/layer.js +85 -96
  38. umap/static/umap/js/modules/domutils.js +25 -1
  39. umap/static/umap/js/modules/filters.js +24 -50
  40. umap/static/umap/js/modules/form/builder.js +17 -16
  41. umap/static/umap/js/modules/form/fields.js +20 -20
  42. umap/static/umap/js/modules/formatter.js +9 -1
  43. umap/static/umap/js/modules/help.js +12 -13
  44. umap/static/umap/js/modules/importer.js +17 -26
  45. umap/static/umap/js/modules/importers/banfr.js +0 -1
  46. umap/static/umap/js/modules/importers/cadastrefr.js +19 -19
  47. umap/static/umap/js/modules/importers/communesfr.js +7 -8
  48. umap/static/umap/js/modules/importers/datasets.js +14 -14
  49. umap/static/umap/js/modules/importers/geodatamine.js +20 -22
  50. umap/static/umap/js/modules/importers/opendata.js +10 -0
  51. umap/static/umap/js/modules/importers/overpass.js +19 -18
  52. umap/static/umap/js/modules/managers.js +1 -1
  53. umap/static/umap/js/modules/permissions.js +15 -5
  54. umap/static/umap/js/modules/rendering/controls.js +203 -10
  55. umap/static/umap/js/modules/rendering/icon.js +5 -9
  56. umap/static/umap/js/modules/rendering/layers/base.js +1 -1
  57. umap/static/umap/js/modules/rendering/layers/classified.js +16 -11
  58. umap/static/umap/js/modules/rendering/layers/heat.js +1 -0
  59. umap/static/umap/js/modules/rendering/map.js +67 -57
  60. umap/static/umap/js/modules/rendering/popup.js +6 -3
  61. umap/static/umap/js/modules/rendering/template.js +40 -40
  62. umap/static/umap/js/modules/rendering/ui.js +1 -2
  63. umap/static/umap/js/modules/rules.js +34 -41
  64. umap/static/umap/js/modules/schema.js +0 -7
  65. umap/static/umap/js/modules/share.js +36 -69
  66. umap/static/umap/js/modules/slideshow.js +3 -3
  67. umap/static/umap/js/modules/tableeditor.js +0 -1
  68. umap/static/umap/js/modules/ui/bar.js +53 -33
  69. umap/static/umap/js/modules/ui/hash.js +36 -0
  70. umap/static/umap/js/modules/ui/loader.js +26 -0
  71. umap/static/umap/js/modules/ui/panel.js +33 -21
  72. umap/static/umap/js/modules/ui/tooltip.js +1 -1
  73. umap/static/umap/js/modules/umap.js +81 -80
  74. umap/static/umap/js/modules/utils.js +13 -3
  75. umap/static/umap/js/umap.controls.js +16 -179
  76. umap/static/umap/locale/am_ET.js +7 -8
  77. umap/static/umap/locale/am_ET.json +7 -8
  78. umap/static/umap/locale/ar.js +7 -8
  79. umap/static/umap/locale/ar.json +7 -8
  80. umap/static/umap/locale/ast.js +7 -8
  81. umap/static/umap/locale/ast.json +7 -8
  82. umap/static/umap/locale/bg.js +7 -8
  83. umap/static/umap/locale/bg.json +7 -8
  84. umap/static/umap/locale/br.js +44 -36
  85. umap/static/umap/locale/br.json +44 -36
  86. umap/static/umap/locale/ca.js +7 -8
  87. umap/static/umap/locale/ca.json +7 -8
  88. umap/static/umap/locale/cs_CZ.js +7 -8
  89. umap/static/umap/locale/cs_CZ.json +7 -8
  90. umap/static/umap/locale/da.js +8 -9
  91. umap/static/umap/locale/da.json +8 -9
  92. umap/static/umap/locale/de.js +62 -63
  93. umap/static/umap/locale/de.json +62 -63
  94. umap/static/umap/locale/el.js +7 -8
  95. umap/static/umap/locale/el.json +7 -8
  96. umap/static/umap/locale/en.js +7 -8
  97. umap/static/umap/locale/en.json +7 -8
  98. umap/static/umap/locale/en_US.json +7 -8
  99. umap/static/umap/locale/es.js +19 -20
  100. umap/static/umap/locale/es.json +19 -20
  101. umap/static/umap/locale/et.js +7 -8
  102. umap/static/umap/locale/et.json +7 -8
  103. umap/static/umap/locale/eu.js +23 -24
  104. umap/static/umap/locale/eu.json +23 -24
  105. umap/static/umap/locale/fa_IR.js +7 -8
  106. umap/static/umap/locale/fa_IR.json +7 -8
  107. umap/static/umap/locale/fi.js +7 -8
  108. umap/static/umap/locale/fi.json +7 -8
  109. umap/static/umap/locale/fr.js +11 -12
  110. umap/static/umap/locale/fr.json +11 -12
  111. umap/static/umap/locale/gl.js +147 -148
  112. umap/static/umap/locale/gl.json +147 -148
  113. umap/static/umap/locale/he.js +7 -8
  114. umap/static/umap/locale/he.json +7 -8
  115. umap/static/umap/locale/hr.js +7 -8
  116. umap/static/umap/locale/hr.json +7 -8
  117. umap/static/umap/locale/hu.js +8 -9
  118. umap/static/umap/locale/hu.json +8 -9
  119. umap/static/umap/locale/id.js +7 -8
  120. umap/static/umap/locale/id.json +7 -8
  121. umap/static/umap/locale/is.js +7 -8
  122. umap/static/umap/locale/is.json +7 -8
  123. umap/static/umap/locale/it.js +7 -8
  124. umap/static/umap/locale/it.json +7 -8
  125. umap/static/umap/locale/ja.js +7 -8
  126. umap/static/umap/locale/ja.json +7 -8
  127. umap/static/umap/locale/ko.js +7 -8
  128. umap/static/umap/locale/ko.json +7 -8
  129. umap/static/umap/locale/lt.js +7 -8
  130. umap/static/umap/locale/lt.json +7 -8
  131. umap/static/umap/locale/ms.js +7 -8
  132. umap/static/umap/locale/ms.json +7 -8
  133. umap/static/umap/locale/nl.js +7 -8
  134. umap/static/umap/locale/nl.json +7 -8
  135. umap/static/umap/locale/no.js +7 -8
  136. umap/static/umap/locale/no.json +7 -8
  137. umap/static/umap/locale/pl.js +53 -54
  138. umap/static/umap/locale/pl.json +53 -54
  139. umap/static/umap/locale/pl_PL.json +7 -8
  140. umap/static/umap/locale/pt.js +7 -8
  141. umap/static/umap/locale/pt.json +7 -8
  142. umap/static/umap/locale/pt_BR.js +7 -8
  143. umap/static/umap/locale/pt_BR.json +7 -8
  144. umap/static/umap/locale/pt_PT.js +7 -8
  145. umap/static/umap/locale/pt_PT.json +7 -8
  146. umap/static/umap/locale/ro.js +7 -8
  147. umap/static/umap/locale/ro.json +7 -8
  148. umap/static/umap/locale/ru.js +7 -8
  149. umap/static/umap/locale/ru.json +7 -8
  150. umap/static/umap/locale/sk_SK.js +7 -8
  151. umap/static/umap/locale/sk_SK.json +7 -8
  152. umap/static/umap/locale/sl.js +7 -8
  153. umap/static/umap/locale/sl.json +7 -8
  154. umap/static/umap/locale/sr.js +7 -8
  155. umap/static/umap/locale/sr.json +7 -8
  156. umap/static/umap/locale/sv.js +7 -8
  157. umap/static/umap/locale/sv.json +7 -8
  158. umap/static/umap/locale/th_TH.js +7 -8
  159. umap/static/umap/locale/th_TH.json +7 -8
  160. umap/static/umap/locale/tr.js +7 -8
  161. umap/static/umap/locale/tr.json +7 -8
  162. umap/static/umap/locale/uk_UA.js +7 -8
  163. umap/static/umap/locale/uk_UA.json +7 -8
  164. umap/static/umap/locale/vi.js +7 -8
  165. umap/static/umap/locale/vi.json +7 -8
  166. umap/static/umap/locale/vi_VN.json +7 -8
  167. umap/static/umap/locale/zh.js +7 -8
  168. umap/static/umap/locale/zh.json +7 -8
  169. umap/static/umap/locale/zh_CN.json +7 -8
  170. umap/static/umap/locale/zh_TW.Big5.json +7 -8
  171. umap/static/umap/locale/zh_TW.js +20 -21
  172. umap/static/umap/locale/zh_TW.json +20 -21
  173. umap/static/umap/map.css +6 -21
  174. umap/static/umap/unittests/utils.js +7 -7
  175. umap/static/umap/vendors/locatecontrol/L.Control.Locate.esm.js +942 -0
  176. umap/static/umap/vendors/photon/leaflet.photon.esm.js +472 -0
  177. umap/sync/app.py +4 -1
  178. umap/templates/umap/content_footer.html +1 -0
  179. umap/templates/umap/css.html +0 -4
  180. umap/templates/umap/js.html +1 -8
  181. umap/templates/umap/team_form.html +2 -1
  182. umap/tests/integration/conftest.py +3 -2
  183. umap/tests/integration/test_anonymous_owned_map.py +1 -1
  184. umap/tests/integration/test_conditional_rules.py +106 -51
  185. umap/tests/integration/test_draw_polygon.py +4 -0
  186. umap/tests/integration/test_draw_polyline.py +11 -0
  187. umap/tests/integration/test_edit_datalayer.py +1 -1
  188. umap/tests/integration/test_edit_map.py +2 -0
  189. umap/tests/integration/test_fields.py +19 -0
  190. umap/tests/integration/test_filters.py +24 -0
  191. umap/tests/integration/test_iframe.py +1 -1
  192. umap/tests/integration/test_import.py +26 -0
  193. umap/tests/integration/test_map.py +3 -3
  194. umap/tests/integration/test_optimistic_merge.py +7 -1
  195. umap/tests/integration/test_owned_map.py +2 -2
  196. umap/tests/integration/test_popup.py +31 -0
  197. umap/tests/integration/test_remote_data.py +5 -5
  198. umap/tests/integration/test_search.py +41 -0
  199. umap/tests/integration/test_share.py +2 -2
  200. umap/tests/integration/test_team.py +1 -1
  201. umap/tests/integration/test_websocket_sync.py +6 -1
  202. umap/tests/test_search_maps_command.py +44 -0
  203. umap/tests/test_utils.py +4 -1
  204. umap/utils.py +10 -3
  205. umap/views.py +17 -4
  206. {umap_project-3.4.0b3.dist-info → umap_project-3.6.0.dist-info}/METADATA +29 -23
  207. {umap_project-3.4.0b3.dist-info → umap_project-3.6.0.dist-info}/RECORD +210 -214
  208. {umap_project-3.4.0b3.dist-info → umap_project-3.6.0.dist-info}/WHEEL +1 -1
  209. umap/static/umap/js/umap.core.js +0 -93
  210. umap/static/umap/vendors/editinosm/Leaflet.EditInOSM.css +0 -46
  211. umap/static/umap/vendors/editinosm/Leaflet.EditInOSM.js +0 -240
  212. umap/static/umap/vendors/editinosm/edit-in-osm.png +0 -0
  213. umap/static/umap/vendors/hash/leaflet-hash.js +0 -162
  214. umap/static/umap/vendors/loading/Control.Loading.css +0 -26
  215. umap/static/umap/vendors/loading/Control.Loading.js +0 -351
  216. umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.css +0 -1
  217. umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.css.map +0 -1
  218. umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js +0 -4
  219. umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js.map +0 -1
  220. umap/static/umap/vendors/photon/leaflet.photon.js +0 -487
  221. {umap_project-3.4.0b3.dist-info → umap_project-3.6.0.dist-info}/entry_points.txt +0 -0
  222. {umap_project-3.4.0b3.dist-info → umap_project-3.6.0.dist-info}/licenses/LICENSE +0 -0
@@ -99,13 +99,11 @@
99
99
  "Delete this vertex (Alt+Click)": "Supprimer ce point (Alt+Clic)",
100
100
  "Delete": "Supprimer",
101
101
  "description": "description",
102
- "Direct link": "Lien",
103
102
  "Directions from here": "Itinéraire à partir de ce lieu",
104
103
  "Display label": "Afficher une étiquette",
105
104
  "Display measure": "Afficher les dimensions",
106
105
  "display name": "nom",
107
106
  "Display on load": "Afficher au chargement",
108
- "Display the control to open OpenStreetMap editor": "Afficher le bouton pour ouvrir l'éditeur d'OpenStreetMap",
109
107
  "Display the embed control": "Afficher le bouton de partage",
110
108
  "Display the fullscreen control": "Afficher le bouton de plein écran",
111
109
  "Display the locate control": "Afficher le bouton de localisation",
@@ -134,8 +132,7 @@
134
132
  "Edit the title of the map": "Modifier le titre de la carte",
135
133
  "Edit this feature": "Éditer cet élément",
136
134
  "Edit": "Éditer",
137
- "Embed and link options": "Intégration et partage",
138
- "Embed the map": "Intégrer la carte dans une iframe",
135
+ "Embed and link options": "Options d'intégration",
139
136
  "Emoji & Character": "Emoji & texte",
140
137
  "Empty": "Vider",
141
138
  "Equidistant": "Équidistant",
@@ -165,17 +162,16 @@
165
162
  "Help": "Aide",
166
163
  "hidden": "caché",
167
164
  "Hide controls": "Masquer les outils",
168
- "Home": "Accueil",
169
165
  "How much to simplify the polyline on each zoom level (more = better performance and smoother look, less = more accurate)": "Valeur de simplification des lignes pour chaque niveau de zoom (grand nombre = meilleure performance, petit nombre = plus précis)",
170
166
  "icon opacity": "Opacité de l'icône",
171
167
  "Icon shape": "Forme de l'icône",
172
168
  "Icon symbol": "Image de l'icône",
173
169
  "If false, the polygon or line will act as a part of the underlying map.": "Désactiver pour que le polygone ou la ligne ne réagisse plus aux interactions.",
174
- "Iframe with custom height (in px): {{{https://iframe.url.com|height}}}": "Iframe avec hauteur (en pixels) : {{{https://iframe.url.com|height}}}",
175
- "Iframe with custom height and width (in px): {{{https://iframe.url.com|height*width}}}": "Iframe avec hauteur et largeur (en px) : {{{https://iframe.url.com|height*width}}}",
170
+ "Iframe with custom height (in px): {{{https://iframe.url.com|height}}}": "Iframe avec hauteur (en pixels) : {{{https://iframe.url.com|hauteur}}}",
171
+ "Iframe with custom height and width (in px): {{{https://iframe.url.com|height*width}}}": "Iframe avec hauteur et largeur (en px) : {{{https://iframe.url.com|hauteur*largeur}}}",
176
172
  "iframe": "iframe",
177
173
  "Iframe: {{{https://iframe.url.com}}}": "Iframe : {{{https://iframe.url.com}}}",
178
- "Image with custom width (in px): {{https://image.url.com|width}}": "Image avec largeur (en pixels) : {{https://image.url.com|width}}",
174
+ "Image with custom width (in px): {{https://image.url.com|width}}": "Image avec largeur (en pixels) : {{https://image.url.com|largeur}}",
179
175
  "Image: {{https://image.url.com}}": "Image : {{https://image.url.com}}",
180
176
  "Import data": "Importer des données",
181
177
  "Import in a new layer": "Importer dans un nouveau calque",
@@ -239,7 +235,6 @@
239
235
  "No licence has been set": "Aucune licence définie",
240
236
  "No results": "Aucun résultat",
241
237
  "no": "non",
242
- "No.": "Non.",
243
238
  "None": "Aucun",
244
239
  "Number of desired classes (default 5)": "Nombre désiré de classes (par défaut 5)",
245
240
  "On the bottom": "Bas",
@@ -252,7 +247,6 @@
252
247
  "Open current feature on load": "Ouvrir l'élément courant au chargement",
253
248
  "Open link in…": "Ouvrir le lien dans…",
254
249
  "Open share & download panel": "Ouvrir le panneau de partage",
255
- "Open this map extent in a map editor to provide more accurate data to OpenStreetMap": "Ouvrir cette carte dans un éditeur OpenStreetMap pour améliorer les données",
256
250
  "OpenStreetMap": "OpenStreetMap",
257
251
  "Optional. Same as color if not set.": "Optionnel. La couleur principale sera utilisée si laissé vide.",
258
252
  "Optional.": "Facultatif",
@@ -295,7 +289,6 @@
295
289
  "settings": "paramètres",
296
290
  "Shape properties": "Propriétés de la forme",
297
291
  "Share and download": "Partager et télécharger",
298
- "Share this link to open a customized map view": "Partager ce lien pour avoir une vue personnalisée",
299
292
  "Short credits": "Crédit court",
300
293
  "Short link": "Lien court",
301
294
  "Show this layer in the caption": "Montrer ce calque dans la légende",
@@ -650,5 +643,11 @@
650
643
  "List of values": "Liste de valeurs",
651
644
  "Yes / No": "Oui / Non",
652
645
  "Select field to compute intensity": "Champ pour le calcul d'intensité",
653
- "Optional intensity field to compute heatmap": "Champ optionnel pour le calcul de l'intensité"
646
+ "Optional intensity field to compute heatmap": "Champ optionnel pour le calcul de l'intensité",
647
+ "All layers": "Tous les calques",
648
+ "Comma separated list of values": "Valeurs séparées par des virgules",
649
+ "Share": "Partager",
650
+ "Customized link": "Lien personnalisé",
651
+ "Iframe": "Iframe",
652
+ "№": "№"
654
653
  }
@@ -70,7 +70,7 @@ const locale = {
70
70
  "color": "cor",
71
71
  "Comma separated list of numbers, including min and max values.": "Lista de números separados por comas, incluídos os valores mínimo e máximo.",
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 a empregar para ordenar elementos. Para inverter a ordenación, pon un signo menos (-) antes. ex.: amiñaclave,-outraclave.",
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.",
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 comas, tabulacións ou puntos e coma. SRS WGS84 está implícito. se importan xeometrías de puntos. A importación buscará nas cabeceiras das columnas calquera mención de «lat» e «lon» ao comezo da cabeceira, sen distinción entre maiúsculas e minúsculas. Todas as demais columnas impórtanse como propiedades.",
74
74
  "Congratulations, your map has been created!": "Parabéns! O teu mapa foi creado!",
75
75
  "Continue line": "Liña continua",
76
76
  "Coordinates": "Coordenadas",
@@ -99,13 +99,11 @@ const locale = {
99
99
  "Delete this vertex (Alt+Click)": "Eliminar este vértice (Alt+Premer)",
100
100
  "Delete": "Eliminar",
101
101
  "description": "descrición",
102
- "Direct link": "Ligazón directa",
103
102
  "Directions from here": "Direccións desde aquí",
104
103
  "Display label": "Amosar a etiqueta",
105
104
  "Display measure": "Amosar a medida",
106
105
  "display name": "amosar o nome",
107
106
  "Display on load": "Amosar ao cargar",
108
- "Display the control to open OpenStreetMap editor": "Amosar o control para abrir o editor de OpenStreetMap",
109
107
  "Display the embed control": "Amosar o control de incrustado",
110
108
  "Display the fullscreen control": "Amosar o control de pantalla completa",
111
109
  "Display the locate control": "Amosar o control de posición",
@@ -135,7 +133,6 @@ const locale = {
135
133
  "Edit this feature": "Editar este elemento",
136
134
  "Edit": "Editar",
137
135
  "Embed and link options": "Opcións de incrustación e ligazón",
138
- "Embed the map": "Incrustar o mapa",
139
136
  "Emoji & Character": "Emojis e personaxes",
140
137
  "Empty": "Baleirar",
141
138
  "Equidistant": "Equidistante",
@@ -165,7 +162,6 @@ const locale = {
165
162
  "Help": "Axuda",
166
163
  "hidden": "agochar",
167
164
  "Hide controls": "Agochar os controis",
168
- "Home": "Inicio",
169
165
  "How much to simplify the polyline on each zoom level (more = better performance and smoother look, less = more accurate)": "Canto se simplificará a poliliña en cada nivel de zoom (máis = mellor comportamento e aparencia máis feble, menos = máis preciso)",
170
166
  "icon opacity": "opacidade da icona",
171
167
  "Icon shape": "Forma da icona",
@@ -239,7 +235,6 @@ const locale = {
239
235
  "No licence has been set": "Non foi definida ningunha licenza",
240
236
  "No results": "Sen resultados",
241
237
  "no": "non",
242
- "No.": "Núm.",
243
238
  "None": "Ningún",
244
239
  "Number of desired classes (default 5)": "Número de clases desexadas (predeterminado 5)",
245
240
  "On the bottom": "Na parte de embaixo",
@@ -252,7 +247,6 @@ const locale = {
252
247
  "Open current feature on load": "Abrir o elemento actual na carga",
253
248
  "Open link in…": "Abrir a ligazón en…",
254
249
  "Open share & download panel": "Abrir o panel de compartición e descarga",
255
- "Open this map extent in a map editor to provide more accurate data to OpenStreetMap": "Abrir esta extensión do mapa nun editor de mapas para fornecer datos máis precisos a OpenStreetMap",
256
250
  "OpenStreetMap": "OpenStreetMap",
257
251
  "Optional. Same as color if not set.": "Opcional. A mesma cor se non se define.",
258
252
  "Optional.": "Opcional.",
@@ -295,7 +289,6 @@ const locale = {
295
289
  "settings": "axustes",
296
290
  "Shape properties": "Propiedades da forma",
297
291
  "Share and download": "Compartición e descarga",
298
- "Share this link to open a customized map view": "Comparte esta ligazón para abrir unha vista de mapa personalizada",
299
292
  "Short credits": "Recoñecementos breves",
300
293
  "Short link": "Ligazón curta",
301
294
  "Show this layer in the caption": "Amosar esta capa na lenda",
@@ -507,150 +500,156 @@ const locale = {
507
500
  "Edit map default view": "Editar a vista predeterminada do mapa",
508
501
  "Use current center and zoom": "Usar o centrado e o nivel de zoom actual",
509
502
  "Layer permalink": "Ligazón permanente de capa",
510
- "Back to home": "Back to home",
511
- "Home logo": "Home logo",
512
- "Add this geometry to my map": "Add this geometry to my map",
513
- "Add this place to my map": "Add this place to my map",
514
- "Cancel last edit": "Cancel last edit",
515
- "Redo last edit": "Redo last edit",
516
- "Links": "Links",
517
- "Images": "Images",
503
+ "Back to home": "Volver ao inicio",
504
+ "Home logo": "Logotipo do inicio",
505
+ "Add this geometry to my map": "Engadir esta xeometría ao meu mapa",
506
+ "Add this place to my map": "Engadir este lugar ao meu mapa",
507
+ "Cancel last edit": "Cancelar a última edición",
508
+ "Redo last edit": "Refacer a última edición",
509
+ "Links": "Ligazóns",
510
+ "Images": "Imaxes",
518
511
  "Iframes": "Iframes",
519
- "Tags": "Tags",
520
- "Geocode": "Geocode",
521
- "Display the back to home icon": "Display the back to home icon",
522
- "Do you want to display layer switcher in caption bar?": "Do you want to display layer switcher in caption bar?",
523
- "Simplify all geometries to points": "Simplify all geometries to points",
524
- "Back to list": "Back to list",
525
- "Toggle rule": "Toggle rule",
526
- "Delete rule": "Delete rule",
527
- "Cannot save layer, please try again in a few minutes.": "Cannot save layer, please try again in a few minutes.",
528
- "Activate collaborative live editing on this map. Other users must reload the map after changing this setting.": "Activate collaborative live editing on this map. Other users must reload the map after changing this setting.",
529
- "More help resources": "More help resources",
530
- "This map is a template": "This map is a template",
531
- "Add text along path": "Add text along path",
532
- "Text color": "Text color",
533
- "Text offset": "Text offset",
534
- "Text position": "Text position",
535
- "start": "start",
536
- "center": "center",
537
- "end": "end",
538
- "Text repeat": "Text repeat",
539
- "Text rotate": "Text rotate",
540
- "Text size": "Text size",
541
- "Load map template": "Load map template",
542
- "My templates": "My templates",
543
- "From staff": "From staff",
544
- "From community": "From community",
545
- "You must select a template.": "You must select a template.",
546
- "Line decoration": "Line decoration",
547
- "Reuse this template": "Reuse this template",
548
- "Create a new map using this template": "Create a new map using this template",
549
- "Save template": "Save template",
550
- "Load template": "Load template",
551
- "Loading a template will apply predefined styles and settings to your map": "Loading a template will apply predefined styles and settings to your map",
552
- "Load template with data": "Load template with data",
553
- "You have no registered template yet. You can add one by creating a new map and flagging it as \"template\".": "You have no registered template yet. You can add one by creating a new map and flagging it as \"template\".",
554
- "There is no recommended template yet. Recommended templates are the ones starred by uMap administrators.": "There is no recommended template yet. Recommended templates are the ones starred by uMap administrators.",
555
- "There is no public template yet.": "There is no public template yet.",
556
- "Explore": "Explore",
557
- "Import data from public open data portals": "Import data from public open data portals",
558
- "Choose a portal": "Choose a portal",
559
- "Limit results to current map view": "Limit results to current map view",
560
- "Please choose an instance first.": "Please choose an instance first.",
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)`.",
562
- "Add a new field": "Add a new field",
563
- "Cannot process MultiPoint": "Cannot process MultiPoint",
564
- "Manage Fields": "Manage Fields",
565
- "Delete this field": "Delete this field",
566
- "Double click to edit the name": "Double click to edit the name",
567
- "Print map": "Print map",
568
- "Choose a format": "Choose a format",
569
- "Scale map": "Scale map",
570
- "portrait": "portrait",
571
- "landscape": "landscape",
572
- "Print": "Print",
573
- "Preparing the print…": "Preparing the print…",
574
- "Large Circle": "Large Circle",
575
- "Icon size": "Icon size",
576
- "Will only affect raw and large circle icons.": "Will only affect raw and large circle icons.",
577
- "Route": "Route",
578
- "Display the print control": "Display the print control",
579
- "Compute isochrone from here": "Compute isochrone from here",
580
- "Route settings": "Route settings",
581
- "Transform to regular line": "Transform to regular line",
582
- "Transform to route": "Transform to route",
583
- "Restore route": "Restore route",
584
- "Profile": "Profile",
585
- "Compute elevations": "Compute elevations",
586
- "Route preference": "Route preference",
587
- "Compute route": "Compute route",
588
- "Walking": "Walking",
589
- "Hiking": "Hiking",
590
- "By car": "By car",
591
- "Cycling": "Cycling",
592
- "Wheelchair": "Wheelchair",
593
- "Recommended": "Recommended",
594
- "Fastest": "Fastest",
595
- "Shortest": "Shortest",
596
- "Max time (in minutes)": "Max time (in minutes)",
597
- "Number of lines": "Number of lines",
598
- "Distance:": "Distance:",
599
- "Gain:": "Gain:",
600
- "Loss:": "Loss:",
512
+ "Tags": "Etiquetas",
513
+ "Geocode": "Geocodigo",
514
+ "Display the back to home icon": "Amosar a icona de volver ao inicio",
515
+ "Do you want to display layer switcher in caption bar?": "Queres amosar o conmutador de capas na barra de título?",
516
+ "Simplify all geometries to points": "Simplificar todas as xeometrías a puntos",
517
+ "Back to list": "Volver á lista",
518
+ "Toggle rule": "Alternar a regra",
519
+ "Delete rule": "Eliminar a regra",
520
+ "Cannot save layer, please try again in a few minutes.": "Non é posíbel gardar a capa, ténteo de novo dentro duns minutos.",
521
+ "Activate collaborative live editing on this map. Other users must reload the map after changing this setting.": "Activa a edición colaborativa en vivo neste mapa. O resto de usuarios deberán volver cargar o mapa após cambiar este axuste.",
522
+ "More help resources": "Máis recursos de axuda",
523
+ "This map is a template": "Este mapa é un modelo.",
524
+ "Add text along path": "Engadir texto ao longo da ruta",
525
+ "Text color": "Cor do texto",
526
+ "Text offset": "Desprazamento do texto",
527
+ "Text position": "Posición do texto",
528
+ "start": "inicio",
529
+ "center": "centro",
530
+ "end": "final",
531
+ "Text repeat": "Repetición do texto",
532
+ "Text rotate": "Rotación do texto",
533
+ "Text size": "Tamaño do texto",
534
+ "Load map template": "Cargar o modelo de mapa",
535
+ "My templates": "Os meus modelos",
536
+ "From staff": "Do persoal",
537
+ "From community": "Da comunidade",
538
+ "You must select a template.": "Tes que seleccionar un modelo.",
539
+ "Line decoration": "Decoración de liñas",
540
+ "Reuse this template": "Reutilizar este modelo",
541
+ "Create a new map using this template": "Crear un novo mapa usando este modelo",
542
+ "Save template": "Gardar o modelo",
543
+ "Load template": "Cargar o modelo",
544
+ "Loading a template will apply predefined styles and settings to your map": "Cargar un modelo aplicará estilos e configuracións predefinidos ao mapa",
545
+ "Load template with data": "Cargar o modelo con datos",
546
+ "You have no registered template yet. You can add one by creating a new map and flagging it as \"template\".": "Aínda non tes un modelo rexistrado. Podes engadir un creando un novo mapa e marcándoo como «modelo».",
547
+ "There is no recommended template yet. Recommended templates are the ones starred by uMap administrators.": "Aínda non hai modelo recomendado. Os modelos recomendados son os marcados cunha estrela pola administración de uMap.",
548
+ "There is no public template yet.": "Aínda non existe un modelo público.",
549
+ "Explore": "Examinar",
550
+ "Import data from public open data portals": "Importar datos de portais públicos de datos abertos",
551
+ "Choose a portal": "Escolle un portal",
552
+ "Limit results to current map view": "Limitar os resultados á vista actual do mapa",
553
+ "Please choose an instance first.": "Escolle antes unha instancia.",
554
+ "No geo column found: must be either `lat(itude)` and `lon(gitude)` or `geom(etry)`.": "Non se atopou ningunha columna «geo»: debe ser «lat(itude)» e «lon(xitude)» ou \"geom(etry)\".\n\n\nNo se ha encontrado ninguna columna geo: debe ser `lat(itude)` e `lon(xitude)` ou `xeom(etría)`.",
555
+ "Add a new field": "Engadir un novo campo",
556
+ "Cannot process MultiPoint": "Non é posíbel procesar MultiPunto",
557
+ "Manage Fields": "Xestionar os campos",
558
+ "Delete this field": "Eliminar este campo",
559
+ "Double click to edit the name": "Prema dúas veces para editar o nome",
560
+ "Print map": "Imprimir o mapa",
561
+ "Choose a format": "Escolle un formato",
562
+ "Scale map": "Escala do mapa",
563
+ "portrait": "retrato",
564
+ "landscape": "apaisado",
565
+ "Print": "Imprimir",
566
+ "Preparing the print…": "Preparando a impresión…",
567
+ "Large Circle": "Círculo grande",
568
+ "Icon size": "Tamaño da icona",
569
+ "Will only affect raw and large circle icons.": " afectará ás iconas de círculos grandes e en bruto.",
570
+ "Route": "Ruta",
571
+ "Display the print control": "Amosar o control de impresión",
572
+ "Compute isochrone from here": "Calcula a isócrona desde aquí",
573
+ "Route settings": "Axustes da ruta",
574
+ "Transform to regular line": "Transformar en liña regular",
575
+ "Transform to route": "Transformar en ruta",
576
+ "Restore route": "Recuperar a ruta",
577
+ "Profile": "Perfil",
578
+ "Compute elevations": "Calcular as elevacións",
579
+ "Route preference": "Preferencia de ruta",
580
+ "Compute route": "Calcular a ruta",
581
+ "Walking": "Camiñando",
582
+ "Hiking": "Paseando",
583
+ "By car": "En coche",
584
+ "Cycling": "En bicicleta",
585
+ "Wheelchair": "Cadeira de rodas",
586
+ "Recommended": "Recomendado",
587
+ "Fastest": "Máis rápido",
588
+ "Shortest": "Máis curto",
589
+ "Max time (in minutes)": "Tempo máximo (en minutos)",
590
+ "Number of lines": "Número de liñas",
591
+ "Distance:": "Distancia:",
592
+ "Gain:": "Ganancia:",
593
+ "Loss:": "Perda:",
601
594
  "Altitude:": "Altitude:",
602
- "Right-click to edit": "Right-click to edit",
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!",
595
+ "Right-click to edit": "Prema co botón dereito para editar",
596
+ "Draw along routes": "Debuxar ao longo de rutas",
597
+ "Skipping invalid geometry": "Omitir a xeometría non válida",
598
+ "Add filter": "Engadir filtro",
599
+ "Min/Max": "Mín/Máx",
600
+ "Multiple choices": "Escolla múltiple",
601
+ "Exclusive choice": "Escolla única",
602
+ "Yes/No": "Si/Non",
603
+ "Add a field prior to create a filter.": "Engadir un campo antes de crear un filtro.",
604
+ "Edit this filter": "Editar este filtro",
605
+ "Remove this filter": "Retirar este filtro",
606
+ "Apply filter to": "Aplicar o filtro a",
607
+ "Filter on": "Filtrar en",
608
+ "Human readable name of the filter": "Nome lexíbel do filtro",
609
+ "Widget for the filter": "Trebello para o filtro",
610
+ "Edit filter": "Editar o filtro",
611
+ "Edit this field": "Editar este campo",
612
+ "all layers": "todas as capas",
613
+ "single layer": "capa única",
614
+ "unset": "desmarcar",
615
+ "Filters will be displayed in the data browser to ease data selection.": "Os filtros amosaranse no navegador de datos para facilitar a selección de datos.",
616
+ "[key=\"value\"][key2=\"value2\"] (eg. [boundary=\"educational\"][name=\"Académie de Lyon\"])": "[key=\"valor\"][key2=\"valor2\"] (eg. [boundary=\"educativo\"][name=\"Academia Galega de Ciencias\"])",
617
+ "Field Name": "Nome do campo",
618
+ "Field Type": "Tipo de campo",
619
+ "Manage field": "Xestionar o campo",
620
+ "Add filter for this field": "Engadir un filtro para este campo",
621
+ "Name cannot be empty.": "O nome non pode estar baleiro.",
622
+ "Are you sure you want to delete this field on all the data?": "Confirmas que queres eliminar este campo en todos os datos?",
623
+ "Anonymous map": "Mapa anónimo",
624
+ "Edit filter for this field": "Editar o filtro para este campo",
625
+ "Hey, you created a map without an account!": "Oi, creaches un mapa sen conta!",
626
+ "This map is anonymous, do you want to attach it to your account?": "Este mapa é anónimo, queres axuntalo á túa conta?",
627
+ "The map has been upgraded to latest version, please save it.": "O mapa foi actualizado á última versión, gárdao.",
628
+ "Elevation has been added!": "A elevación foi engadida!",
636
629
  "Mapillary": "Mapillary",
637
630
  "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"
631
+ "Wikipedia contributors": "Colaboradores da Wikipedia",
632
+ "See on Wikipedia": "Ver na Wikipedia",
633
+ "Anonymous map: update who can see and edit it": "Mapa anónimo: actualiza quen pode velo e editalo",
634
+ "Login": "Acceder",
635
+ "Manage filters": "Xestionar os filtros",
636
+ "Map (all layers)": "Mapa (todas as capas)",
637
+ "Add a filter for this field": "Engadir un filtro para este campo",
638
+ "Short text": "Texto breve",
639
+ "Text": "Texto",
640
+ "Number": "Número",
641
+ "Date": "Data",
642
+ "Date and time": "Data e hora",
643
+ "List of values": "Lista de valores",
644
+ "Yes / No": "Si / Non",
645
+ "Select field to compute intensity": "Seleccionar o campo para calcular a intensidade",
646
+ "Optional intensity field to compute heatmap": "Campo de intensidade opcional para calcular o mapa de calor",
647
+ "All layers": "Todas as capas",
648
+ "Comma separated list of values": "Lista de valores separados por comas",
649
+ "Share": "Share",
650
+ "Customized link": "Customized link",
651
+ "Iframe": "Iframe",
652
+ "№": "№"
654
653
  }
655
654
  L.registerLocale("gl", locale)
656
655
  L.setLocale("gl")