umap-project 2.5.0__py3-none-any.whl → 2.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.

Potentially problematic release.


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

Files changed (276) hide show
  1. umap/__init__.py +1 -1
  2. umap/admin.py +6 -1
  3. umap/context_processors.py +2 -1
  4. umap/decorators.py +13 -2
  5. umap/forms.py +26 -2
  6. umap/locale/br/LC_MESSAGES/django.mo +0 -0
  7. umap/locale/br/LC_MESSAGES/django.po +252 -146
  8. umap/locale/ca/LC_MESSAGES/django.mo +0 -0
  9. umap/locale/ca/LC_MESSAGES/django.po +274 -162
  10. umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
  11. umap/locale/cs_CZ/LC_MESSAGES/django.po +261 -150
  12. umap/locale/de/LC_MESSAGES/django.mo +0 -0
  13. umap/locale/de/LC_MESSAGES/django.po +299 -187
  14. umap/locale/el/LC_MESSAGES/django.mo +0 -0
  15. umap/locale/el/LC_MESSAGES/django.po +215 -159
  16. umap/locale/en/LC_MESSAGES/django.po +211 -155
  17. umap/locale/es/LC_MESSAGES/django.mo +0 -0
  18. umap/locale/es/LC_MESSAGES/django.po +255 -144
  19. umap/locale/eu/LC_MESSAGES/django.mo +0 -0
  20. umap/locale/eu/LC_MESSAGES/django.po +254 -198
  21. umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
  22. umap/locale/fa_IR/LC_MESSAGES/django.po +347 -235
  23. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  24. umap/locale/fr/LC_MESSAGES/django.po +216 -160
  25. umap/locale/hu/LC_MESSAGES/django.mo +0 -0
  26. umap/locale/hu/LC_MESSAGES/django.po +215 -159
  27. umap/locale/it/LC_MESSAGES/django.mo +0 -0
  28. umap/locale/it/LC_MESSAGES/django.po +252 -146
  29. umap/locale/ms/LC_MESSAGES/django.mo +0 -0
  30. umap/locale/ms/LC_MESSAGES/django.po +252 -146
  31. umap/locale/pl/LC_MESSAGES/django.mo +0 -0
  32. umap/locale/pl/LC_MESSAGES/django.po +254 -148
  33. umap/locale/pt/LC_MESSAGES/django.mo +0 -0
  34. umap/locale/pt/LC_MESSAGES/django.po +215 -159
  35. umap/locale/sv/LC_MESSAGES/django.mo +0 -0
  36. umap/locale/sv/LC_MESSAGES/django.po +254 -143
  37. umap/locale/th_TH/LC_MESSAGES/django.mo +0 -0
  38. umap/locale/th_TH/LC_MESSAGES/django.po +125 -70
  39. umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
  40. umap/locale/zh_TW/LC_MESSAGES/django.po +256 -145
  41. umap/migrations/0022_add_team.py +94 -0
  42. umap/models.py +45 -10
  43. umap/settings/__init__.py +2 -0
  44. umap/settings/base.py +9 -2
  45. umap/static/umap/base.css +32 -41
  46. umap/static/umap/content.css +19 -25
  47. umap/static/umap/css/icon.css +63 -37
  48. umap/static/umap/css/importers.css +1 -1
  49. umap/static/umap/css/slideshow.css +7 -5
  50. umap/static/umap/css/tableeditor.css +4 -3
  51. umap/static/umap/img/16-white.svg +1 -4
  52. umap/static/umap/img/16.svg +2 -6
  53. umap/static/umap/img/24-white.svg +4 -4
  54. umap/static/umap/img/24.svg +6 -6
  55. umap/static/umap/img/source/16-white.svg +2 -5
  56. umap/static/umap/img/source/16.svg +3 -7
  57. umap/static/umap/img/source/24-white.svg +7 -14
  58. umap/static/umap/img/source/24.svg +10 -17
  59. umap/static/umap/js/components/alerts/alert.css +20 -8
  60. umap/static/umap/js/modules/autocomplete.js +8 -12
  61. umap/static/umap/js/modules/browser.js +4 -3
  62. umap/static/umap/js/modules/caption.js +9 -11
  63. umap/static/umap/js/modules/data/features.js +993 -0
  64. umap/static/umap/js/modules/data/layer.js +1210 -0
  65. umap/static/umap/js/modules/formatter.js +12 -3
  66. umap/static/umap/js/modules/global.js +21 -5
  67. umap/static/umap/js/modules/importers/overpass.js +22 -8
  68. umap/static/umap/js/modules/permissions.js +280 -0
  69. umap/static/umap/js/{umap.icon.js → modules/rendering/icon.js} +77 -56
  70. umap/static/umap/js/modules/rendering/layers/base.js +105 -0
  71. umap/static/umap/js/modules/rendering/layers/classified.js +484 -0
  72. umap/static/umap/js/modules/rendering/layers/cluster.js +103 -0
  73. umap/static/umap/js/modules/rendering/layers/heat.js +182 -0
  74. umap/static/umap/js/modules/rendering/popup.js +99 -0
  75. umap/static/umap/js/modules/rendering/template.js +217 -0
  76. umap/static/umap/js/modules/rendering/ui.js +610 -0
  77. umap/static/umap/js/modules/rules.js +16 -3
  78. umap/static/umap/js/modules/schema.js +25 -1
  79. umap/static/umap/js/modules/share.js +66 -45
  80. umap/static/umap/js/modules/sync/updaters.js +9 -10
  81. umap/static/umap/js/modules/tableeditor.js +7 -7
  82. umap/static/umap/js/modules/ui/dialog.js +8 -4
  83. umap/static/umap/js/modules/utils.js +22 -13
  84. umap/static/umap/js/umap.controls.js +80 -146
  85. umap/static/umap/js/umap.core.js +9 -9
  86. umap/static/umap/js/umap.forms.js +41 -17
  87. umap/static/umap/js/umap.js +72 -65
  88. umap/static/umap/locale/am_ET.js +8 -2
  89. umap/static/umap/locale/am_ET.json +8 -2
  90. umap/static/umap/locale/ar.js +8 -2
  91. umap/static/umap/locale/ar.json +8 -2
  92. umap/static/umap/locale/ast.js +8 -2
  93. umap/static/umap/locale/ast.json +8 -2
  94. umap/static/umap/locale/bg.js +8 -2
  95. umap/static/umap/locale/bg.json +8 -2
  96. umap/static/umap/locale/br.js +42 -36
  97. umap/static/umap/locale/br.json +42 -36
  98. umap/static/umap/locale/ca.js +67 -61
  99. umap/static/umap/locale/ca.json +67 -61
  100. umap/static/umap/locale/cs_CZ.js +8 -2
  101. umap/static/umap/locale/cs_CZ.json +8 -2
  102. umap/static/umap/locale/da.js +8 -2
  103. umap/static/umap/locale/da.json +8 -2
  104. umap/static/umap/locale/de.js +143 -137
  105. umap/static/umap/locale/de.json +143 -137
  106. umap/static/umap/locale/el.js +54 -48
  107. umap/static/umap/locale/el.json +54 -48
  108. umap/static/umap/locale/en.js +10 -2
  109. umap/static/umap/locale/en.json +10 -2
  110. umap/static/umap/locale/en_US.json +8 -2
  111. umap/static/umap/locale/es.js +8 -2
  112. umap/static/umap/locale/es.json +8 -2
  113. umap/static/umap/locale/et.js +8 -2
  114. umap/static/umap/locale/et.json +8 -2
  115. umap/static/umap/locale/eu.js +346 -338
  116. umap/static/umap/locale/eu.json +346 -338
  117. umap/static/umap/locale/fa_IR.js +415 -407
  118. umap/static/umap/locale/fa_IR.json +415 -407
  119. umap/static/umap/locale/fi.js +8 -2
  120. umap/static/umap/locale/fi.json +8 -2
  121. umap/static/umap/locale/fr.js +11 -3
  122. umap/static/umap/locale/fr.json +11 -3
  123. umap/static/umap/locale/gl.js +8 -2
  124. umap/static/umap/locale/gl.json +8 -2
  125. umap/static/umap/locale/he.js +8 -2
  126. umap/static/umap/locale/he.json +8 -2
  127. umap/static/umap/locale/hr.js +8 -2
  128. umap/static/umap/locale/hr.json +8 -2
  129. umap/static/umap/locale/hu.js +31 -23
  130. umap/static/umap/locale/hu.json +31 -23
  131. umap/static/umap/locale/id.js +8 -2
  132. umap/static/umap/locale/id.json +8 -2
  133. umap/static/umap/locale/is.js +8 -2
  134. umap/static/umap/locale/is.json +8 -2
  135. umap/static/umap/locale/it.js +8 -2
  136. umap/static/umap/locale/it.json +8 -2
  137. umap/static/umap/locale/ja.js +8 -2
  138. umap/static/umap/locale/ja.json +8 -2
  139. umap/static/umap/locale/ko.js +8 -2
  140. umap/static/umap/locale/ko.json +8 -2
  141. umap/static/umap/locale/lt.js +8 -2
  142. umap/static/umap/locale/lt.json +8 -2
  143. umap/static/umap/locale/ms.js +8 -2
  144. umap/static/umap/locale/ms.json +8 -2
  145. umap/static/umap/locale/nl.js +8 -2
  146. umap/static/umap/locale/nl.json +8 -2
  147. umap/static/umap/locale/no.js +8 -2
  148. umap/static/umap/locale/no.json +8 -2
  149. umap/static/umap/locale/pl.js +54 -48
  150. umap/static/umap/locale/pl.json +54 -48
  151. umap/static/umap/locale/pl_PL.json +8 -2
  152. umap/static/umap/locale/pt.js +24 -18
  153. umap/static/umap/locale/pt.json +24 -18
  154. umap/static/umap/locale/pt_BR.js +8 -2
  155. umap/static/umap/locale/pt_BR.json +8 -2
  156. umap/static/umap/locale/pt_PT.js +214 -208
  157. umap/static/umap/locale/pt_PT.json +214 -208
  158. umap/static/umap/locale/ro.js +8 -2
  159. umap/static/umap/locale/ro.json +8 -2
  160. umap/static/umap/locale/ru.js +8 -2
  161. umap/static/umap/locale/ru.json +8 -2
  162. umap/static/umap/locale/sk_SK.js +8 -2
  163. umap/static/umap/locale/sk_SK.json +8 -2
  164. umap/static/umap/locale/sl.js +8 -2
  165. umap/static/umap/locale/sl.json +8 -2
  166. umap/static/umap/locale/sr.js +8 -2
  167. umap/static/umap/locale/sr.json +8 -2
  168. umap/static/umap/locale/sv.js +8 -2
  169. umap/static/umap/locale/sv.json +8 -2
  170. umap/static/umap/locale/th_TH.js +33 -27
  171. umap/static/umap/locale/th_TH.json +33 -27
  172. umap/static/umap/locale/tr.js +8 -2
  173. umap/static/umap/locale/tr.json +8 -2
  174. umap/static/umap/locale/uk_UA.js +8 -2
  175. umap/static/umap/locale/uk_UA.json +8 -2
  176. umap/static/umap/locale/vi.js +8 -2
  177. umap/static/umap/locale/vi.json +8 -2
  178. umap/static/umap/locale/vi_VN.json +8 -2
  179. umap/static/umap/locale/zh.js +8 -2
  180. umap/static/umap/locale/zh.json +8 -2
  181. umap/static/umap/locale/zh_CN.json +8 -2
  182. umap/static/umap/locale/zh_TW.Big5.json +8 -2
  183. umap/static/umap/locale/zh_TW.js +102 -96
  184. umap/static/umap/locale/zh_TW.json +102 -96
  185. umap/static/umap/map.css +111 -108
  186. umap/static/umap/nav.css +19 -10
  187. umap/static/umap/unittests/utils.js +230 -107
  188. umap/static/umap/vars.css +1 -0
  189. umap/static/umap/vendors/csv2geojson/csv2geojson.js +62 -40
  190. umap/static/umap/vendors/editable/Leaflet.Editable.js +2079 -1937
  191. umap/storage.py +4 -3
  192. umap/templates/404.html +5 -1
  193. umap/templates/500.html +3 -1
  194. umap/templates/auth/user_detail.html +8 -2
  195. umap/templates/auth/user_form.html +19 -10
  196. umap/templates/auth/user_stars.html +8 -2
  197. umap/templates/base.html +1 -0
  198. umap/templates/registration/login.html +18 -3
  199. umap/templates/umap/about.html +1 -0
  200. umap/templates/umap/about_summary.html +22 -7
  201. umap/templates/umap/components/alerts/alert.html +42 -21
  202. umap/templates/umap/content.html +2 -0
  203. umap/templates/umap/content_footer.html +7 -3
  204. umap/templates/umap/css.html +1 -0
  205. umap/templates/umap/dashboard_menu.html +15 -0
  206. umap/templates/umap/home.html +14 -4
  207. umap/templates/umap/js.html +4 -9
  208. umap/templates/umap/login_popup_end.html +10 -4
  209. umap/templates/umap/map_detail.html +8 -2
  210. umap/templates/umap/map_fragment.html +3 -1
  211. umap/templates/umap/map_init.html +2 -1
  212. umap/templates/umap/map_list.html +6 -3
  213. umap/templates/umap/map_table.html +36 -12
  214. umap/templates/umap/messages.html +0 -1
  215. umap/templates/umap/navigation.html +2 -1
  216. umap/templates/umap/password_change.html +5 -1
  217. umap/templates/umap/password_change_done.html +8 -2
  218. umap/templates/umap/search.html +8 -2
  219. umap/templates/umap/search_bar.html +1 -0
  220. umap/templates/umap/team_confirm_delete.html +19 -0
  221. umap/templates/umap/team_detail.html +27 -0
  222. umap/templates/umap/team_form.html +60 -0
  223. umap/templates/umap/user_dashboard.html +7 -9
  224. umap/templates/umap/user_teams.html +51 -0
  225. umap/tests/base.py +8 -1
  226. umap/tests/conftest.py +6 -0
  227. umap/tests/fixtures/test_circles_layer.geojson +219 -0
  228. umap/tests/fixtures/test_upload_georss.xml +20 -0
  229. umap/tests/integration/conftest.py +18 -4
  230. umap/tests/integration/helpers.py +12 -0
  231. umap/tests/integration/test_anonymous_owned_map.py +23 -0
  232. umap/tests/integration/test_basics.py +29 -0
  233. umap/tests/integration/test_browser.py +20 -0
  234. umap/tests/integration/test_caption.py +20 -0
  235. umap/tests/integration/test_circles_layer.py +69 -0
  236. umap/tests/integration/test_conditional_rules.py +102 -17
  237. umap/tests/integration/test_draw_polygon.py +138 -13
  238. umap/tests/integration/test_draw_polyline.py +8 -18
  239. umap/tests/integration/test_edit_datalayer.py +3 -3
  240. umap/tests/integration/test_import.py +124 -5
  241. umap/tests/integration/test_owned_map.py +21 -13
  242. umap/tests/integration/test_querystring.py +7 -0
  243. umap/tests/integration/test_team.py +47 -0
  244. umap/tests/integration/test_tilelayer.py +19 -2
  245. umap/tests/integration/test_view_marker.py +28 -1
  246. umap/tests/integration/test_websocket_sync.py +5 -5
  247. umap/tests/test_datalayer.py +32 -7
  248. umap/tests/test_datalayer_views.py +1 -1
  249. umap/tests/test_map.py +30 -4
  250. umap/tests/test_map_views.py +2 -2
  251. umap/tests/test_statics.py +40 -0
  252. umap/tests/test_team_views.py +131 -0
  253. umap/tests/test_views.py +15 -1
  254. umap/urls.py +23 -13
  255. umap/views.py +116 -10
  256. {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/METADATA +14 -14
  257. {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/RECORD +260 -253
  258. umap/static/umap/js/umap.datalayer.permissions.js +0 -70
  259. umap/static/umap/js/umap.features.js +0 -1290
  260. umap/static/umap/js/umap.layer.js +0 -1837
  261. umap/static/umap/js/umap.permissions.js +0 -208
  262. umap/static/umap/js/umap.popup.js +0 -341
  263. umap/static/umap/test/TableEditor.js +0 -104
  264. umap/static/umap/vendors/leaflet/leaflet-src.js +0 -14512
  265. umap/static/umap/vendors/leaflet/leaflet-src.js.map +0 -1
  266. umap/static/umap/vendors/leaflet/leaflet.js +0 -6
  267. umap/static/umap/vendors/leaflet/leaflet.js.map +0 -1
  268. umap/static/umap/vendors/markercluster/WhereAreTheJavascriptFiles.txt +0 -5
  269. umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js +0 -2718
  270. umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js.map +0 -1
  271. umap/static/umap/vendors/toolbar/leaflet.toolbar-src.css +0 -117
  272. umap/static/umap/vendors/toolbar/leaflet.toolbar-src.js +0 -365
  273. umap/tests/integration/test_statics.py +0 -47
  274. {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/WHEEL +0 -0
  275. {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/entry_points.txt +0 -0
  276. {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/licenses/LICENSE +0 -0
@@ -30,10 +30,10 @@
30
30
  "Animated transitions": "Trantsizio animatuak",
31
31
  "Are you sure you want to cancel your changes?": "Ziur aldaketak bertan behera utzi nahi dituzula?",
32
32
  "Are you sure you want to clone this map and all its datalayers?": "Ziur mapa hau eta bere datu-geruza guztiak klonatu nahi dituzula?",
33
- "Are you sure you want to delete the feature?": "Ziur eginbidea ezabatu nahi duzula?",
33
+ "Are you sure you want to delete the feature?": "Ziur entitatea ezabatu nahi duzula?",
34
34
  "Are you sure you want to delete this layer?": "Ziur geruza hau ezabatu nahi duzula?",
35
35
  "Are you sure you want to delete this map?": "Ziur mapa hau ezabatu nahi duzula?",
36
- "Are you sure you want to delete this property on all the features?": "Ziur propietate hau eginbide guztietan ezabatu nahi duzula?",
36
+ "Are you sure you want to delete this property on all the features?": "Ziur propietate hau entitate guztietan ezabatu nahi duzula?",
37
37
  "Are you sure you want to restore this version?": "Ziur bertsio hau leheneratu nahi duzula?",
38
38
  "Attach the map to my account": "Erantsi mapa nire kontuan",
39
39
  "attribution": "atribuzioa",
@@ -43,7 +43,7 @@
43
43
  "Back to preview": "Itzuli aurrebistara",
44
44
  "Background overlay url": "Atzeko planoan gainjartzeko URLa",
45
45
  "Ball": "Baloia",
46
- "Bring feature to center": "Ekarri funtzioa erdigunera",
46
+ "Bring feature to center": "Ekarri entitatea erdigunera",
47
47
  "Browse data": "Arakatu datuak",
48
48
  "by": "egilea",
49
49
  "Cache proxied request": "Cache proxy eskaera",
@@ -51,25 +51,25 @@
51
51
  "Caption": "Testua",
52
52
  "Center map on your location": "Zentratu mapa zure kokapenean",
53
53
  "Change map background": "Aldatu maparen atzeko planoa",
54
- "Change tilelayers": "Aldatu lauzen-geruzak",
54
+ "Change tilelayers": "Aldatu lauzen geruza",
55
55
  "Change": "Aldatu",
56
56
  "Choose the data format": "Aukeratu data-formatua",
57
57
  "Choropleth breakpoints": "Koropletaren eten-puntuak",
58
58
  "Choropleth classes": "Koropleta motak",
59
59
  "Choropleth color palette": "Koropletaren kolore paleta",
60
60
  "Choropleth mode": "Koropleta mota",
61
- "Choropleth property value": "Koropletaren jabetza-balioa",
61
+ "Choropleth property value": "Koropletaren propietate-balioa",
62
62
  "Choropleth": "Koropleta",
63
63
  "Circle": "Borobila",
64
64
  "clear": "garbitu",
65
65
  "Click last point to finish shape": "Egin klik azken puntuan forma amaitzeko",
66
- "Click to add a marker": "Egin klik markatzaile bat gehitzeko",
66
+ "Click to add a marker": "Egin klik markagailu bat gehitzeko",
67
67
  "Click to continue drawing": "Egin klik marrazten jarraitzeko",
68
68
  "Click to edit": "Egin klik editatzeko",
69
69
  "Click to start drawing a line": "Egin klik lerro bat marrazten hasteko",
70
70
  "Click to start drawing a polygon": "Egin klik poligono bat marrazten hasteko",
71
71
  "Clone of {name}": "{name}-ren klona",
72
- "Clone this feature": "Klonatu eginbide hau",
72
+ "Clone this feature": "Klonatu entitate hau",
73
73
  "Clone this map": "Klonatu mapa hau",
74
74
  "Clone": "Klonatu",
75
75
  "Close": "Itxi",
@@ -78,7 +78,7 @@
78
78
  "collapsed": "taldekatua",
79
79
  "color": "kolorea",
80
80
  "Comma separated list of numbers, including min and max values.": "Komaz bereizitako zenbakien zerrenda, gutxieneko eta gehienezko balioak barne.",
81
- "Comma separated list of properties to use for sorting features. To reverse the sort, put a minus sign (-) before. Eg. mykey,-otherkey.": "Komaz bereizitako propietateen zerrenda ordenatzeko irizpide gisa erabiltzeko. Ordena aldatzeko, jarri minus ikurra (-) aurretik. Adib. niretekla,-bestetekla.",
81
+ "Comma separated list of properties to use for sorting features. To reverse the sort, put a minus sign (-) before. Eg. mykey,-otherkey.": "Komaz bereizitako propietateen zerrenda entitateak ordenatzeko irizpide gisa erabiltzeko. Ordena aldatzeko, jarri minus ikurra (-) aurretik. Adib. niretekla,-bestetekla.",
82
82
  "Comma, tab or semi-colon separated values. SRS WGS84 is implied. Only Point geometries are imported. The import will look at the column headers for any mention of «lat» and «lon» at the begining of the header, case insensitive. All other column are imported as properties.": "Koma, tabulazioa edo puntu eta komaz bereizitako balioak. SRS WGS84 inplizitua dago. Puntuen geometriak bakarrik inportatzen dira. Inportazioak zutabeen goiburuak aztertuko ditu goiburuaren hasieran «lat» eta «lon» aipatzearren, maiuskulak eta minuskulak bereizten dituena. Beste zutabe guztiak propietate gisa inportatzen dira.",
83
83
  "Congratulations, your map has been created!": "Zorionak, zure mapa ondo sortu da!",
84
84
  "Continue line": "Lerro jarrai",
@@ -103,7 +103,7 @@
103
103
  "define": "definitu",
104
104
  "Delay between two transitions when in play mode": "Bi trantsizioren arteko atzerapena erreprodukzio moduan dagoenean",
105
105
  "Delete layer": "Ezabatu geruza",
106
- "Delete this feature": "Ezabatu eginbide hau",
106
+ "Delete this feature": "Ezabatu entitate hau",
107
107
  "Delete this shape": "Ezabatu forma hau",
108
108
  "Delete this vertex (Alt+Click)": "Ezabatu erpin hau (Alt+Klik)",
109
109
  "Delete": "Ezabatu",
@@ -115,14 +115,13 @@
115
115
  "display name": "bistaratu izena",
116
116
  "Display on load": "Bistaratu kargatzean",
117
117
  "Display the control to open OpenStreetMap editor": "Bistaratu OpenStreetMap editorea irekitzeko kontrola",
118
- "Display the data layers control": "Bistaratu datu-geruzen kontrola",
119
118
  "Display the embed control": "Bistaratu kapsulatzeko kontrola",
120
119
  "Display the fullscreen control": "Bistaratu pantaila osoko kontrola",
121
120
  "Display the locate control": "Bistaratu lokalizazio kontrola",
122
121
  "Display the measure control": "Bistaratu neurrien kontrola",
123
122
  "Display the search control": "Bistaratu bilaketa-kontrola",
124
- "Display the star map button": "Bistaratu izarren maparen botoia",
125
- "Display the tile layers control": "Bistaratu lauza-geruzaren kontrola",
123
+ "Display the star map button": "Bistaratu gogoko mapen botoia",
124
+ "Display the tile layers control": "Bistaratu lauzen geruzaren kontrola",
126
125
  "Display the zoom control": "Bistaratu zoom kontrola",
127
126
  "Do you want to display a caption bar?": "Epigrafeen barra bistaratu nahi duzu?",
128
127
  "Do you want to display a minimap?": "Minimapa erakutsi nahi duzu?",
@@ -133,370 +132,379 @@
133
132
  "Do you want to display the «more» control?": "«Gehiago» kontrola bistaratu nahi duzu?",
134
133
  "Download": "Deskargatu",
135
134
  "Drag to reorder": "Arrastatu berrantolatzeko",
136
- "Draw a marker": "Marraztu markatzaile bat",
135
+ "Draw a marker": "Jarri markagailu bat",
137
136
  "Draw a polygon": "Marraztu poligono bat",
138
137
  "Draw a polyline": "Marraztu polilinea bat",
139
138
  "Drawing": "Marrazten",
140
139
  "Drop": "Jaregin",
141
140
  "Dynamic properties": "Propietate dinamikoak",
142
141
  "Dynamic": "Dinamikoa",
143
- "Edit feature's layer": "Editatu eginbideen geruza",
142
+ "Edit feature's layer": "Editatu entitateen geruza",
144
143
  "Edit properties in a table": "Editatu propietateak taula batean",
145
144
  "Edit the title of the map": "Editatu maparen izenburua",
146
- "Edit this feature": "Editatu eginbide hau",
145
+ "Edit this feature": "Editatu entitate hau",
147
146
  "Edit": "Editatu",
148
147
  "Embed and link options": "Kapsulatzeko eta estekatzeko aukerak",
149
148
  "Embed the map": "Kapsulatu mapa",
150
- "Emoji & Character": "Emoji & Character",
149
+ "Emoji & Character": "Emoji eta karaktereak",
151
150
  "Empty": "Hutsa",
152
151
  "Equidistant": "Ekidistantea",
153
152
  "Error in the overlay URL": "Errorea gainjarritako URLan",
154
- "Error in the tilelayer URL": "Errore bat lauza-geruzaren URLan",
153
+ "Error in the tilelayer URL": "Errore bat lauzen geruzaren URLan",
155
154
  "Exit Fullscreen": "Irten pantaila osotik",
156
155
  "expanded": "hedatua",
157
- "Extract shape to separate feature": "Extract shape to separate feature",
158
- "Feature identifier key": "Feature identifier key",
159
- "Feature properties": "Feature properties",
160
- "Fetch data each time map view changes.": "Fetch data each time map view changes.",
161
- "fill color": "fill color",
162
- "fill opacity": "fill opacity",
163
- "fill": "fill",
164
- "Fit all data": "Fit all data",
165
- "Format": "Format",
166
- "From zoom": "From zoom",
167
- "full backup": "full backup",
168
- "Generic": "Generic",
169
- "GeoRSS (only link)": "GeoRSS (only link)",
170
- "GeoRSS (title + image)": "GeoRSS (title + image)",
171
- "Go to \"{coords}\"": "Go to \"{coords}\"",
172
- "Go to the homepage": "Go to the homepage",
173
- "Go to «{feature}»": "Go to «{feature}»",
174
- "Heatmap intensity property": "Heatmap intensity property",
175
- "Heatmap radius": "Heatmap radius",
176
- "Heatmap": "Heatmap",
177
- "height": "height",
178
- "Help": "Help",
179
- "hidden": "hidden",
180
- "Hide controls": "Hide controls",
181
- "Home": "Home",
182
- "How much to simplify the polyline on each zoom level (more = better performance and smoother look, less = more accurate)": "How much to simplify the polyline on each zoom level (more = better performance and smoother look, less = more accurate)",
183
- "icon opacity": "icon opacity",
184
- "Icon shape": "Icon shape",
185
- "Icon symbol": "Icon symbol",
186
- "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.",
187
- "Iframe with custom height (in px): {{{http://iframe.url.com|height}}}": "Iframe with custom height (in px): {{{http://iframe.url.com|height}}}",
188
- "Iframe with custom height and width (in px): {{{http://iframe.url.com|height*width}}}": "Iframe with custom height and width (in px): {{{http://iframe.url.com|height*width}}}",
189
- "iframe": "iframe",
190
- "Iframe: {{{http://iframe.url.com}}}": "Iframe: {{{http://iframe.url.com}}}",
191
- "Image with custom width (in px): {{http://image.url.com|width}}": "Image with custom width (in px): {{http://image.url.com|width}}",
192
- "Image: {{http://image.url.com}}": "Image: {{http://image.url.com}}",
193
- "Import data": "Import data",
194
- "Import in a new layer": "Import in a new layer",
195
- "Imports all umap data, including layers and settings.": "Imports all umap data, including layers and settings.",
196
- "Include full screen link?": "Include full screen link?",
197
- "Inherit": "Inherit",
198
- "inherit": "inherit",
199
- "Interaction options": "Interaction options",
200
- "Invalid latitude or longitude": "Invalid latitude or longitude",
201
- "Invalid umap data in {filename}": "Invalid umap data in {filename}",
202
- "Invalid umap data": "Invalid umap data",
156
+ "Extract shape to separate feature": "Atera ezazu forma entitatea bereizteko",
157
+ "Feature identifier key": "Entitatea identifikatzeko gakoa",
158
+ "Feature properties": "Entitatearen propietateak",
159
+ "Fetch data each time map view changes.": "Lortu datuak mapa-ikuspegia aldatzen den bakoitzean.",
160
+ "fill color": "betetzeko kolorea",
161
+ "fill opacity": "betegarriaren opakutasuna",
162
+ "fill": "bete",
163
+ "Fit all data": "Egokitu datu guztiak",
164
+ "Format": "Formatua",
165
+ "From zoom": "Zoometik",
166
+ "full backup": "babeskopia osoa",
167
+ "Generic": "Generikoa",
168
+ "GeoRSS (only link)": "GeoRSS (esteka bakarrik)",
169
+ "GeoRSS (title + image)": "GeoRSS (titulua + irudia)",
170
+ "Go to \"{coords}\"": "Joan \"{coords}\"-ra",
171
+ "Go to the homepage": "Joan hasierako orrira",
172
+ "Go to «{feature}»": "Joan «{feature}» atalera",
173
+ "Heatmap intensity property": "Bero-maparen intentsitatearen propietatea",
174
+ "Heatmap radius": "Bero-maparen erradioa",
175
+ "Heatmap": "Bero-mapa",
176
+ "height": "altuera",
177
+ "Help": "Laguntza",
178
+ "hidden": "ezkutuan",
179
+ "Hide controls": "Ezkutatu kontrolak",
180
+ "Home": "Hasiera",
181
+ "How much to simplify the polyline on each zoom level (more = better performance and smoother look, less = more accurate)": "Zenbat sinplifikatu poli-linea zoom maila bakoitzean (gehiago = errendimendu hobea eta itxura leunagoa, gutxiago = zehatzagoa)",
182
+ "icon opacity": "ikonoaren opakutasuna",
183
+ "Icon shape": "Ikonoaren forma",
184
+ "Icon symbol": "Ikonoaren ikurra",
185
+ "If false, the polygon or line will act as a part of the underlying map.": "Gezurra bada, poligonoak edo lerroak azpiko maparen zati gisa jardungo du.",
186
+ "Iframe with custom height (in px): {{{http://iframe.url.com|height}}}": "Altuera pertsonalizatua duen markoa (px-tan): {{{http://iframe.url.com|height}}}",
187
+ "Iframe with custom height and width (in px): {{{http://iframe.url.com|height*width}}}": "Altuera eta zabalera pertsonalizatua duen markoa (px-tan): {{{http://iframe.url.com|height*width}}}",
188
+ "iframe": "markoa",
189
+ "Iframe: {{{http://iframe.url.com}}}": "markoa: {{{http://iframe.url.com}}}",
190
+ "Image with custom width (in px): {{http://image.url.com|width}}": "Zabalera pertsonalizatua duen irudia (px-tan): {{http://image.url.com|width}}",
191
+ "Image: {{http://image.url.com}}": "Irudia: {{http://image.url.com}}",
192
+ "Import data": "Inportatu datuak",
193
+ "Import in a new layer": "Inportatu geruza berri batean",
194
+ "Imports all umap data, including layers and settings.": "Umap-en datu guztiak inportatzen ditu, geruzak eta ezarpenak barne.",
195
+ "Include full screen link?": "Pantaila osoko esteka sartu nahi duzu?",
196
+ "Inherit": "Heredatu",
197
+ "inherit": "heredatu",
198
+ "Interaction options": "Interakzio-aukerak",
199
+ "Invalid latitude or longitude": "Latitude edo longitude baliogabea",
200
+ "Invalid umap data in {filename}": "Umap-en datu baliogabeak {filename}-n",
201
+ "Invalid umap data": "Umap datu baliogabeak",
203
202
  "Jenks-Fisher": "Jenks-Fisher",
204
203
  "K-means": "K-means",
205
- "Keep current visible layers": "Keep current visible layers",
206
- "kilometers": "kilometers",
204
+ "Keep current visible layers": "Mantendu uneko geruzak ikusgai",
205
+ "kilometers": "kilometroak",
207
206
  "km": "km",
208
- "Label direction": "Label direction",
209
- "Label key": "Label key",
210
- "Labels are clickable": "Labels are clickable",
211
- "Latest feature": "Latest feature",
212
- "Latitude": "Latitude",
213
- "Layer properties": "Layer properties",
214
- "Layer": "Layer",
215
- "Licence": "Licence",
216
- "licence": "licence",
217
- "Limit bounds": "Limit bounds",
218
- "Link to view the map": "Link to view the map",
219
- "Link to…": "Link to…",
220
- "Link with text: [[http://example.com|text of the link]]": "Link with text: [[http://example.com|text of the link]]",
221
- "Long credits": "Long credits",
222
- "Longitude": "Longitude",
223
- "Make main shape": "Make main shape",
224
- "Manage layers": "Manage layers",
225
- "Manual": "Manual",
226
- "Map background credits": "Map background credits",
227
- "Map has been attached to your account": "Map has been attached to your account",
228
- "Map has been saved!": "Map has been saved!",
229
- "Map has been starred": "Map has been starred",
230
- "Map has been unstarred": "Map has been unstarred",
231
- "Map user content has been published under licence": "Map user content has been published under licence",
232
- "Map's editors": "Map's editors",
233
- "Map's owner": "Map's owner",
234
- "max East": "max East",
235
- "max North": "max North",
236
- "max South": "max South",
237
- "max West": "max West",
238
- "max zoom": "max zoom",
239
- "Measure distances": "Measure distances",
240
- "Merge lines": "Merge lines",
241
- "mi": "mi",
242
- "miles": "miles",
243
- "min zoom": "min zoom",
244
- "More controls": "More controls",
245
- "Must be a valid CSS value (eg.: DarkBlue or #123456)": "Must be a valid CSS value (eg.: DarkBlue or #123456)",
207
+ "Label direction": "Etiketaren norabidea",
208
+ "Label key": "Etiketa-gakoa",
209
+ "Labels are clickable": "Etiketak klik egin daitezke",
210
+ "Latest feature": "Azken entitatea",
211
+ "Latitude": "Latitudea",
212
+ "Layer properties": "Geruzaren propietateak",
213
+ "Layer": "Geruza",
214
+ "Licence": "Lizentzia",
215
+ "licence": "lizentzia",
216
+ "Limit bounds": "Mugak",
217
+ "Link to view the map": "Mapa ikusteko esteka",
218
+ "Link to…": "Estekatu honi...",
219
+ "Link with text: [[http://example.com|text of the link]]": "Testua duen esteka: [[http://adibidea.com|estekaren testua]]",
220
+ "Long credits": "Kreditu luzeak",
221
+ "Longitude": "Longitudea",
222
+ "Make main shape": "Egin forma nagusia",
223
+ "Manage layers": "Kudeatu geruzak",
224
+ "Manual": "Eskuliburua",
225
+ "Map background credits": "Maparen atzeko planoaren kredituak",
226
+ "Map has been attached to your account": "Mapa erantsi da zure kontuan",
227
+ "Map has been saved!": "Mapa gorde da!",
228
+ "Map has been starred": "Mapa hau gogokoa da",
229
+ "Map has been unstarred": "Mapa hau gogokoetatik kendu da",
230
+ "Map user content has been published under licence": "Maparen erabiltzaileen edukia lizentziapean argitaratu da",
231
+ "Map's editors": "Maparen editoreak",
232
+ "Map's owner": "Maparen jabea",
233
+ "max East": "Ekialdea maximoa",
234
+ "max North": "Iparra maximoa",
235
+ "max South": "Hegoa maximoa",
236
+ "max West": "Mendebaldea maximoa",
237
+ "max zoom": "zoom maximoa",
238
+ "Measure distances": "Neurtu distantziak",
239
+ "Merge lines": "Bateratu lerroak",
240
+ "mi": "mila",
241
+ "miles": "mila",
242
+ "min zoom": "zoom minimoa",
243
+ "More controls": "Kontrol gehiago",
244
+ "Must be a valid CSS value (eg.: DarkBlue or #123456)": "Baliozko CSS balio bat izan behar du (adib.: DarkBlue edo #123456)",
246
245
  "name": "izena",
247
- "nautical miles": "nautical miles",
248
- "never": "never",
249
- "new window": "new window",
250
- "next": "next",
251
- "NM": "NM",
252
- "No cache": "No cache",
253
- "No licence has been set": "No licence has been set",
254
- "No results": "No results",
246
+ "nautical miles": "itsas milia",
247
+ "never": "inoiz ez",
248
+ "new window": "leiho berria",
249
+ "next": "hurrengoa",
250
+ "NM": "itsas mila",
251
+ "No cache": "Cacherik gabe",
252
+ "No licence has been set": "Ez da lizentziarik ezarri",
253
+ "No results": "Emaitzarik ez",
255
254
  "no": "ez",
256
- "No.": "No.",
257
- "None": "None",
258
- "Number of desired classes (default 5)": "Number of desired classes (default 5)",
259
- "On the bottom": "On the bottom",
260
- "On the left": "On the left",
261
- "On the right": "On the right",
262
- "On the top": "On the top",
263
- "Only visible layers' data": "Only visible layers' data",
264
- "opacity": "opacity",
265
- "Opacity": "Opacity",
266
- "Open current feature on load": "Open current feature on load",
267
- "Open link in…": "Open link in…",
268
- "Open share & download panel": "Open share & download panel",
269
- "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",
255
+ "No.": "Ez.",
256
+ "None": "Bat ere ez",
257
+ "Number of desired classes (default 5)": "Nahi diren klase kopurua (lehenetsia 5)",
258
+ "On the bottom": "Behean",
259
+ "On the left": "Ezkerrean",
260
+ "On the right": "Eskuinean",
261
+ "On the top": "Goian",
262
+ "Only visible layers' data": "Ikusgai dauden geruzen datuak soilik",
263
+ "opacity": "opakutasuna",
264
+ "Opacity": "Opakutasuna",
265
+ "Open current feature on load": "Ireki uneko entitatea kargatzean",
266
+ "Open link in…": "Ireki esteka hemen...",
267
+ "Open share & download panel": "Ireki partekatzeko eta deskargatzeko panela",
268
+ "Open this map extent in a map editor to provide more accurate data to OpenStreetMap": "Ireki mapa hau mapa-editore batean OpenStreetMap-i datu zehatzagoak emateko",
270
269
  "OpenStreetMap": "OpenStreetMap",
271
- "Optional intensity property for heatmap": "Optional intensity property for heatmap",
272
- "Optional. Same as color if not set.": "Optional. Same as color if not set.",
273
- "Optional.": "Optional.",
274
- "Override clustering radius (default 80)": "Override clustering radius (default 80)",
275
- "Override heatmap radius (default 25)": "Override heatmap radius (default 25)",
276
- "parent window": "parent window",
277
- "Paste your data here": "Paste your data here",
278
- "Permalink": "Permalink",
279
- "Permanent credits background": "Permanent credits background",
280
- "Permanent credits": "Permanent credits",
281
- "Please be sure the licence is compliant with your use.": "Please be sure the licence is compliant with your use.",
282
- "Please choose a format": "Please choose a format",
283
- "Please enter the name of the property": "Please enter the name of the property",
284
- "Please enter the new name of this property": "Please enter the new name of this property",
285
- "Please save the map first": "Please save the map first",
286
- "Popup (large)": "Popup (large)",
287
- "Popup content style": "Popup content style",
288
- "Popup content template": "Popup content template",
289
- "Popup shape": "Popup shape",
290
- "Popup": "Popup",
291
- "Powered by uMap": "Powered by uMap",
292
- "previous": "previous",
293
- "Problem in the response": "Problem in the response",
294
- "Properties imported:": "Properties imported:",
295
- "Provide an URL here": "Provide an URL here",
296
- "Proxy request": "Proxy request",
297
- "Quantiles": "Quantiles",
298
- "Recent": "Recent",
299
- "Remote data": "Remote data",
300
- "Remove shape from the multi": "Remove shape from the multi",
301
- "Replace layer content": "Replace layer content",
302
- "Restore this version": "Restore this version",
303
- "Save current edits": "Save current edits",
304
- "Save map": "Save map",
305
- "Save this center and zoom": "Save this center and zoom",
306
- "Save this location as new feature": "Save this location as new feature",
307
- "Save": "Save",
308
- "Saved center and zoom": "Saved center and zoom",
309
- "Search location": "Search location",
310
- "Search": "Search",
311
- "Secret edit link:": "Secret edit link:",
312
- "See full screen": "See full screen",
313
- "See on OpenStreetMap": "See on OpenStreetMap",
314
- "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…",
315
- "settings": "settings",
316
- "Shape properties": "Shape properties",
317
- "Share and download": "Share and download",
318
- "Share this link to open a customized map view": "Share this link to open a customized map view",
319
- "Short credits": "Short credits",
320
- "Short link": "Short link",
321
- "Show this layer in the caption": "Show this layer in the caption",
322
- "Show/hide layer": "Show/hide layer",
323
- "Side panel": "Side panel",
324
- "Simple link: [[http://example.com]]": "Simple link: [[http://example.com]]",
325
- "Simplify": "Simplify",
326
- "Skipping unknown geometry.type: {type}": "Skipping unknown geometry.type: {type}",
327
- "Slideshow": "Slideshow",
328
- "Sort key": "Sort key",
329
- "Split line": "Split line",
330
- "Star this map": "Star this map",
331
- "Start a hole here": "Start a hole here",
332
- "Start slideshow": "Start slideshow",
333
- "Stop editing": "Stop editing",
334
- "Stop slideshow": "Stop slideshow",
335
- "Street": "Street",
336
- "stroke": "stroke",
337
- "Supported scheme": "Supported scheme",
338
- "Supported variables that will be dynamically replaced": "Supported variables that will be dynamically replaced",
339
- "Symbol": "Symbol",
340
- "Table": "Table",
341
- "Text color for the cluster label": "Text color for the cluster label",
342
- "Text formatting": "Text formatting",
343
- "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}\")": "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}\")",
344
- "The name of the property to use as feature unique identifier.": "The name of the property to use as feature unique identifier.",
345
- "The zoom and center have been modified.": "The zoom and center have been modified.",
346
- "TMS format": "TMS format",
347
- "To use if remote server doesn't allow cross domain (slower)": "To use if remote server doesn't allow cross domain (slower)",
348
- "To zoom": "To zoom",
349
- "Toggle edit mode (⇧+Click)": "Toggle edit mode (⇧+Click)",
350
- "Toggle edit mode": "Toggle edit mode",
351
- "Transfer shape to edited feature": "Transfer shape to edited feature",
352
- "Transform to lines": "Transform to lines",
353
- "Transform to polygon": "Transform to polygon",
354
- "Type a place name or coordinates": "Type a place name or coordinates",
355
- "Type char or paste emoji": "Type char or paste emoji",
356
- "Type of layer": "Type of layer",
357
- "Unable to detect format of file {filename}": "Unable to detect format of file {filename}",
358
- "Untitled layer": "Untitled layer",
359
- "Untitled map": "Untitled map",
360
- "Update permissions and editors": "Update permissions and editors",
361
- "Update permissions": "Update permissions",
362
- "Update who can see and edit the map": "Update who can see and edit the map",
363
- "Url": "Url",
364
- "URL": "URL",
365
- "Use current bounds": "Use current bounds",
366
- "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.",
367
- "User content credits": "User content credits",
368
- "User interface options": "User interface options",
369
- "User location": "User location",
370
- "Verify remote URL": "Verify remote URL",
371
- "Versions": "Versions",
372
- "View Fullscreen": "View Fullscreen",
373
- "View": "View",
374
- "Visibility: {status}": "Visibility: {status}",
375
- "weight": "weight",
376
- "Where do we go from here?": "Where do we go from here?",
377
- "Whether to display or not polygons paths.": "Whether to display or not polygons paths.",
378
- "Whether to fill polygons with color.": "Whether to fill polygons with color.",
379
- "Who can edit \"{layer}\"": "Who can edit \"{layer}\"",
380
- "Who can edit": "Who can edit",
381
- "Who can view": "Who can view",
382
- "width": "width",
383
- "Will be displayed in the bottom right corner of the map": "Will be displayed in the bottom right corner of the map",
384
- "Will be permanently visible in the bottom left corner of the map": "Will be permanently visible in the bottom left corner of the map",
385
- "Will be visible in the caption of the map": "Will be visible in the caption of the map",
270
+ "Optional intensity property for heatmap": "Bero-maparen intentsitate propietate aukerakoa",
271
+ "Optional. Same as color if not set.": "Aukerakoa. Kolore berdina ezarri ez bada.",
272
+ "Optional.": "Aukerakoa.",
273
+ "Override clustering radius (default 80)": "Gainidatzi multzokatze-erradioa (80 lehenetsia)",
274
+ "Override heatmap radius (default 25)": "Gainidatzi bero-maparen erradioa (lehenetsia 25)",
275
+ "parent window": "leiho nagusia",
276
+ "Paste your data here": "Itsatsi zure datuak hemen",
277
+ "Permalink": "Esteka iraunkorra",
278
+ "Permanent credits background": "Kredituak beti atzeko planoan",
279
+ "Permanent credits": "Kreditu iraunkorrak",
280
+ "Please be sure the licence is compliant with your use.": "Mesedez, ziurtatu lizentzia zure erabilerarekin bat datorrela.",
281
+ "Please choose a format": "Aukeratu formatu bat",
282
+ "Please enter the name of the property": "Sartu propietate honen izena",
283
+ "Please enter the new name of this property": "Sartu propietate honen izen berria",
284
+ "Please save the map first": "Gorde mapa lehenik",
285
+ "Popup (large)": "Laster-leiho (handia)",
286
+ "Popup content style": "Laster-leihoaren edukiaren estiloa",
287
+ "Popup content template": "Laster-leihoaren edukiaren txantiloia",
288
+ "Popup shape": "Laster-leihoaren forma",
289
+ "Popup": "Laster-leihoa",
290
+ "Powered by uMap": "uMap-ek bultzatuta",
291
+ "previous": "aurrekoa",
292
+ "Problem in the response": "Arazoa erantzunean",
293
+ "Properties imported:": "Inportatutako propietateak:",
294
+ "Provide an URL here": "Eman URL bat hemen",
295
+ "Proxy request": "Proxy eskaera",
296
+ "Quantiles": "Kuantilak",
297
+ "Recent": "Duela gutxikoa",
298
+ "Remote data": "Urrutiko datuak",
299
+ "Remove shape from the multi": "Kendu forma multitik",
300
+ "Replace layer content": "Ordeztu geruzaren edukia",
301
+ "Restore this version": "Berreskuratu bertsio hau",
302
+ "Save current edits": "Gorde uneko aldaketak",
303
+ "Save map": "Gorde mapa",
304
+ "Save this center and zoom": "Gorde zentro hau eta zoom-maila",
305
+ "Save this location as new feature": "Gorde kokapen hau entitate berri gisa",
306
+ "Save": "Gorde",
307
+ "Saved center and zoom": "Zentroa eta zoom-maila gordeta",
308
+ "Search location": "Bilatu tokia",
309
+ "Search": "Bilatu",
310
+ "Secret edit link:": "Editatzeko esteka sekretua:",
311
+ "See full screen": "Ikusi pantaila osoan",
312
+ "See on OpenStreetMap": "Ikusi OpenStreetMap-en",
313
+ "Set it to false to hide this layer from the slideshow, the data browser, the popup navigation…": "Ezarri faltsu gisa geruza hau ezkutatzeko diapositiba-aurkezpenetik, datu-arakatzailetik, popup nabigaziotik...",
314
+ "settings": "ezarpenak",
315
+ "Shape properties": "Formaren propietateak",
316
+ "Share and download": "Partekatu eta deskargatu",
317
+ "Share this link to open a customized map view": "Partekatu esteka hau mapa-ikuspegi pertsonalizatu bat irekitzeko",
318
+ "Short credits": "Kreditu laburrak",
319
+ "Short link": "Esteka laburra",
320
+ "Show this layer in the caption": "Erakutsi geruza hau epigrafean",
321
+ "Show/hide layer": "Erakutsi/Ezkutatu geruza",
322
+ "Side panel": "Alboko panela",
323
+ "Simple link: [[http://example.com]]": "Esteka sinplea: [[http://adibidea.com]]",
324
+ "Simplify": "Sinplifikatu",
325
+ "Skipping unknown geometry.type: {type}": "geometry.type ezezaguna saltatzen: {type}",
326
+ "Slideshow": "Aurkezpena",
327
+ "Sort key": "Ordenatzeko tekla",
328
+ "Split line": "Bereizteko lerroa",
329
+ "Star this map": "Markatu gogoko gisa",
330
+ "Start a hole here": "Hasi zulo bat hemen",
331
+ "Start slideshow": "Hasi diaporama",
332
+ "Stop editing": "Utzi editatzeari",
333
+ "Stop slideshow": "Gelditu aurkezpena",
334
+ "Street": "Kalea",
335
+ "stroke": "trazua",
336
+ "Supported scheme": "Onartutako eskema",
337
+ "Supported variables that will be dynamically replaced": "Dinamikoki ordezkatuko diren aldagaiak",
338
+ "Symbol": "Ikurra",
339
+ "Table": "Taula",
340
+ "Text color for the cluster label": "Taldeko etiketaren testuko kolorea",
341
+ "Text formatting": "Testuaren formatua",
342
+ "The name of the property to use as feature label (eg.: \"nom\"). You can also use properties inside brackets to use more than one or mix with static content (eg.: \"{name} in {place}\")": "Entitatearen etiketa gisa erabili beharreko propietatearen izena (adibidez: \"nom\"). Kortxeteen barneko propietateak ere erabil ditzakezu bat baino gehiago erabiltzeko edo eduki estatikoarekin nahasteko (adibidez: \"{name} in {place}\")",
343
+ "The name of the property to use as feature unique identifier.": "Entitatearen identifikatzaile esklusibo gisa erabili beharreko propietatearen izena.",
344
+ "The zoom and center have been modified.": "Zooma eta zentroa aldatu dira.",
345
+ "TMS format": "TMS formatua",
346
+ "To use if remote server doesn't allow cross domain (slower)": "Urruneko zerbitzariak domeinu gurutzatua onartzen ez badu erabiltzeko (motelago)",
347
+ "To zoom": "Zooma egiteko",
348
+ "Toggle edit mode (⇧+Click)": "Aldatu editatzeko modua (⇧+Klik)",
349
+ "Toggle edit mode": "Aldatu editatzeko modua",
350
+ "Transfer shape to edited feature": "Transferitu forma editatutako entitatera",
351
+ "Transform to lines": "Lerroak bihurtu",
352
+ "Transform to polygon": "Poligono bihurtu",
353
+ "Type a place name or coordinates": "Idatzi leku-izena edo koordenatuak",
354
+ "Type char or paste emoji": "Idatzi karakterea edo itsatsi emojia",
355
+ "Type of layer": "Geruza mota",
356
+ "Unable to detect format of file {filename}": "Ezin da hauteman {filename} fitxategiaren formatua",
357
+ "Untitled layer": "Izenik gabeko geruza",
358
+ "Untitled map": "Izenik gabeko mapa",
359
+ "Update permissions and editors": "Eguneratu baimenak eta editoreak",
360
+ "Update permissions": "Eguneratu baimenak",
361
+ "Update who can see and edit the map": "Eguneratu mapa nork ikusi eta edita dezakeen",
362
+ "Url": "Url-a",
363
+ "URL": "URLa",
364
+ "Use current bounds": "Erabili uneko mugak",
365
+ "Use placeholders with feature properties between brackets, eg. {name}, they will be dynamically replaced by the corresponding values.": "Erabili parentesi artean entitateen propietateak dituzten leku-markak, adibidez. {izena}, dagozkien balioekin dinamikoki ordezkatuko dira.",
366
+ "User content credits": "Erabiltzaileen edukien kredituak",
367
+ "User interface options": "Erabiltzailearen interfazearen aukerak",
368
+ "User location": "Erabiltzailearen kokapena",
369
+ "Verify remote URL": "Egiaztatu urruneko URLa",
370
+ "Versions": "Bertsioak",
371
+ "View Fullscreen": "Ikusi pantaila osoan",
372
+ "View": "Ikuspegia",
373
+ "Visibility: {status}": "Ikusgarritasuna: {egoera}",
374
+ "weight": "pisua",
375
+ "Where do we go from here?": "Hemendik nora joan behar dugu?",
376
+ "Whether to display or not polygons paths.": "Poligonoen bideak bistaratu ala ez.",
377
+ "Whether to fill polygons with color.": "Poligonoak kolorez bete behar diren ala ez.",
378
+ "Who can edit \"{layer}\"": "Nork edita dezake \"{layer}\"",
379
+ "Who can edit": "Nork edita dezake",
380
+ "Who can view": "Nork ikus dezake",
381
+ "width": "zabalera",
382
+ "Will be displayed in the bottom right corner of the map": "Maparen beheko eskuineko izkinan bistaratuko da",
383
+ "Will be permanently visible in the bottom left corner of the map": "Beti ikusgai egongo da maparen beheko ezkerreko izkinan",
384
+ "Will be visible in the caption of the map": "Maparen epigrafean ikusiko da",
386
385
  "yes": "bai",
387
- "Zoom in": "Zoom in",
388
- "Zoom level for automatic zooms": "Zoom level for automatic zooms",
389
- "Zoom out": "Zoom out",
390
- "Zoom to layer extent": "Zoom to layer extent",
391
- "Zoom to the next": "Zoom to the next",
392
- "Zoom to the previous": "Zoom to the previous",
393
- "Zoom to this feature": "Zoom to this feature",
394
- "Zoom to this place": "Zoom to this place",
395
- "{area} acres": "{area} acres",
386
+ "Zoom in": "Handiagotu",
387
+ "Zoom level for automatic zooms": "Zoom-maila zoom automatikoetarako",
388
+ "Zoom out": "Txikiagotu",
389
+ "Zoom to layer extent": "Zoom egin geruzaren neurrira",
390
+ "Zoom to the next": "Zooma hurrengora",
391
+ "Zoom to the previous": "Zoom aurrekora",
392
+ "Zoom to this feature": "Egin zoom entitate honetan",
393
+ "Zoom to this place": "Handitu toki honetara",
394
+ "{area} acres": "{area} akre",
396
395
  "{area} ha": "{area} ha",
397
396
  "{area} m²": "{area} m²",
398
397
  "{area} mi²": "{area} mi²",
399
398
  "{area} yd²": "{area} yd²",
400
- "{count} errors during import: {message}": "{count} errors during import: {message}",
401
- "{delay} seconds": "{delay} seconds",
399
+ "{count} errors during import: {message}": "{count} errore inportatzean: {message}",
400
+ "{delay} seconds": "{delay} segundo",
402
401
  "{distance} km": "{distance} km",
403
402
  "{distance} m": "{distance} m",
404
- "{distance} miles": "{distance} miles",
405
- "{distance} NM": "{distance} NM",
403
+ "{distance} miles": "{distance} mila",
404
+ "{distance} NM": "{distance} itsas mila",
406
405
  "{distance} yd": "{distance} yd",
407
- "Edit map name and caption": "Edit map name and caption",
408
- "Map advanced properties": "Map advanced properties",
409
- "Edit map details": "Edit map details",
410
- "Back to browser": "Back to browser",
411
- "Toggle size": "Toggle size",
412
- "Display the caption control": "Display the caption control",
406
+ "Edit map name and caption": "Editatu maparen izena eta epigrafea",
407
+ "Map advanced properties": "Maparen propietate aurreratuak",
408
+ "Edit map details": "Editatu maparen xehetasunak",
409
+ "Back to browser": "Itzuli nabigatzailera",
410
+ "Toggle size": "Aldatu tamaina",
411
+ "Display the caption control": "Erakutsi azpitituluaren kontrola",
413
412
  "<empty value>": "<empty value>",
414
413
  "Min": "Min",
415
414
  "Max": "Max",
416
- "From": "From",
417
- "Until": "Until",
418
- "Example: key1,key2|Label 2,key3|Label 3|checkbox": "Example: key1,key2|Label 2,key3|Label 3|checkbox",
419
- "Edit in OpenStreetMap": "Edit in OpenStreetMap",
420
- "Cannot determine latitude and longitude columns.": "Cannot determine latitude and longitude columns.",
421
- "Back to layers": "Back to layers",
422
- "Filters": "Filters",
423
- "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",
424
- "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.",
425
- "Search keys": "Search keys",
426
- "Filters keys": "Filters keys",
427
- "Filter data": "Filter data",
428
- "Search map features…": "Search map features…",
429
- "Reset all": "Reset all",
430
- "Open browser": "Open browser",
431
- "Open caption": "Open caption",
432
- "Your map has been created with an anonymous account!": "Your map has been created with an anonymous account!",
433
- "Real-time collaboration": "Real-time collaboration",
434
- "Cannot parse data": "Cannot parse data",
435
- "Start typing...": "Start typing...",
436
- "No result": "No result",
437
- "Data browser": "Data browser",
438
- "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.",
439
- "Overpass supported expressions": "Overpass supported expressions",
415
+ "From": "Nondik",
416
+ "Until": "Noraino",
417
+ "Example: key1,key2|Label 2,key3|Label 3|checkbox": "Adibidea: key1,key2|Label 2,key3|Label 3|checkbox",
418
+ "Edit in OpenStreetMap": "Editatu OpenStreetMap-en",
419
+ "Cannot determine latitude and longitude columns.": "Ezin dira zehaztu latitude eta longitudearen zutabeak.",
420
+ "Back to layers": "Itzuli geruzetara",
421
+ "Filters": "Iragazkiak",
422
+ "Comma separated list of properties to use when filtering features by text input": "Testu sarreren bidez entitateak iragazteko erabili beharreko propietateen zerrenda komaz bereizita",
423
+ "Comma separated list of properties to use for filters (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key). To control input field type, add it after another | (eg.: mykey|My Key|checkbox,otherkey|Other Key|datetime). Allowed values for the input field type are checkbox (default), radio, number, date and datetime.": "Iragazteko erabili beharreko propietateen zerrenda komaz bereizita (adib.: niregakoa,bestegakoa). Etiketa kontrolatzeko, gehitu | (adib.: niregakoa|niregakoa,bestegakoa|beste gakoa). Sarrera-eremu mota kontrolatzeko, gehitu beste | (adib.: nire gakoa|Nire gakoa|kontrol-laukia,bestegakoa|Beste gakoa|data-ordua). Sarrera-eremu motarako baimendutako balioak kontrol-laukia (lehenetsia), irratia, zenbakia, data eta data-ordua dira.",
424
+ "Search keys": "Bilatu gakoak",
425
+ "Filters keys": "Iragazkien gakoak",
426
+ "Filter data": "Iragazi datuak",
427
+ "Search map features…": "Bilatu maparen entitateak...",
428
+ "Reset all": "Berrezarri dena",
429
+ "Open browser": "Ireki arakatzailea",
430
+ "Open caption": "Ireki epigrafea",
431
+ "Your map has been created with an anonymous account!": "Zure mapa kontu anonimo batekin sortu da!",
432
+ "Real-time collaboration": "Denbora errealeko lankidetza",
433
+ "Cannot parse data": "Ezin dira datuak analizatu",
434
+ "Start typing...": "Hasi idazten...",
435
+ "No result": "Emaitzarik ez",
436
+ "Data browser": "Datu arakatzailea",
437
+ "When providing an URL, uMap can copy the remote data in a layer, or add this URL as remote source of the layer. In that case, data will always be fetched from that URL, and thus be up to date, but it will not be possible to edit it inside uMap.": "URL bat ematerakoan, uMap-ek urruneko datuak geruza batean kopiatu ditzake, edo URL hau gehitu geruzaren urruneko iturri gisa. Kasu horretan, datuak beti URL horretatik eskuratuko dira, eta horrela eguneratuta egongo dira, baina ezin izango da editatu uMap-en barruan.",
438
+ "Overpass supported expressions": "Overpass onartzen duten esamoldeak",
440
439
  "key (eg. building)": "key (eg. building)",
441
440
  "!key (eg. !name)": "!key (eg. !name)",
442
441
  "key=value (eg. building=yes)": "key=value (eg. building=yes)",
443
442
  "key!=value (eg. building!=yes)": "key!=value (eg. building!=yes)",
444
443
  "key~value (eg. name~Grisy)": "key~value (eg. name~Grisy)",
445
444
  "key=\"value|value2\" (eg. name=\"Paris|Berlin\")": "key=\"value|value2\" (eg. name=\"Paris|Berlin\")",
446
- "More info about Overpass syntax": "More info about Overpass syntax",
447
- "For more complex needs, see": "For more complex needs, see",
448
- "Choose data": "Choose data",
449
- "Import helpers:": "Import helpers:",
450
- "Choose the format": "Choose the format",
451
- "Choose the layer": "Choose the layer",
452
- "Layer name": "Layer name",
453
- "Choose import mode": "Choose import mode",
454
- "Copy into the layer": "Copy into the layer",
455
- "Link to the layer as remote data": "Link to the layer as remote data",
456
- "Condition": "Condition",
445
+ "More info about Overpass syntax": "Overpass sintaxiari buruzko informazio gehiago",
446
+ "For more complex needs, see": "Behar konplexuagoetarako, ikusi",
447
+ "Choose data": "Aukeratu datuak",
448
+ "Import helpers:": "Inportatu laguntzaileak:",
449
+ "Choose the format": "Aukeratu formatua",
450
+ "Choose the layer": "Aukeratu geruza",
451
+ "Layer name": "Geruzaren izena",
452
+ "Choose import mode": "Aukeratu inportatzeko modua",
453
+ "Copy into the layer": "Kopiatu geruzan",
454
+ "Link to the layer as remote data": "Estekatu geruza urruneko datu gisa",
455
+ "Condition": "Baldintza",
457
456
  "key=value or key!=value": "key=value or key!=value",
458
- "Are you sure you want to delete this rule?": "Are you sure you want to delete this rule?",
459
- "empty rule": "empty rule",
460
- "Conditional style rules": "Conditional style rules",
461
- "Add rule": "Add rule",
462
- "Browser: data": "Browser: data",
463
- "Browser: layers": "Browser: layers",
464
- "Browser: filters": "Browser: filters",
465
- "Enable real-time collaboration": "Enable real-time collaboration",
466
- "✅ Copied!": "✅ Copied!",
467
- "Choose a dataset": "Choose a dataset",
468
- "Choose this dataset": "Choose this dataset",
469
- "GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: thematic data from OpenStreetMap",
470
- "Choose a theme": "Choose a theme",
471
- "Symplify all geometries to points": "Symplify all geometries to points",
472
- "Choose this data": "Choose this data",
473
- "Search admin boundary": "Search admin boundary",
474
- "Please choose a theme and a boundary first.": "Please choose a theme and a boundary first.",
475
- "Expression": "Expression",
476
- "Geometry mode": "Geometry mode",
477
- "Only geometry centers": "Only geometry centers",
478
- "Search area": "Search area",
479
- "Type area name, or let empty to load data in current map view": "Type area name, or let empty to load data in current map view",
480
- "Data successfully imported!": "Data successfully imported!",
481
- "My Dashboard ({username})": "My Dashboard ({username})",
482
- "Clear data": "Clear data",
483
- "Remove layers": "Remove layers",
484
- "Categorized": "Categorized",
485
- "Alphabetical": "Alphabetical",
486
- "Category property": "Category property",
487
- "Color palette": "Color palette",
488
- "Categories": "Categories",
489
- "Comma separated list of categories.": "Comma separated list of categories.",
490
- "Categories mode": "Categories mode",
491
- "Remove filter for this column": "Remove filter for this column",
492
- "Add filter for this column": "Add filter for this column",
493
- "Rename this column": "Rename this column",
494
- "Delete this column": "Delete this column",
495
- "Name “{name}” should not contain a dot.": "Name “{name} should not contain a dot.",
496
- "This name already exists: “{name}”": "This name already exists: “{name}”",
497
- "Delete selected rows": "Delete selected rows",
498
- "Found {count} rows. Are you sure you want to delete all?": "Found {count} rows. Are you sure you want to delete all?",
499
- "Expression is empty": "Expression is empty",
500
- "OK": "OK",
501
- "Cancel": "Cancel"
457
+ "Are you sure you want to delete this rule?": "Ziur arau hau ezabatu nahi duzula?",
458
+ "empty rule": "arau hutsa",
459
+ "Conditional style rules": "Baldintzapeko estiloko arauak",
460
+ "Add rule": "Gehitu araua",
461
+ "Browser: data": "Arakatzailea: datuak",
462
+ "Browser: layers": "Arakatzailea: geruzak",
463
+ "Browser: filters": "Arakatzailea: iragazkiak",
464
+ "Enable real-time collaboration": "Gaitu denbora errealeko lankidetza",
465
+ "✅ Copied!": "✅ Kopiatuta!",
466
+ "Choose a dataset": "Aukeratu datu-multzo bat",
467
+ "Choose this dataset": "Aukeratu datu-multzo hau",
468
+ "GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: OpenStreetMap-eko datu tematikoak",
469
+ "Choose a theme": "Aukeratu gai bat",
470
+ "Symplify all geometries to points": "Sinplifikatu geometria guztiak puntutan",
471
+ "Choose this data": "Aukeratu datu hauek",
472
+ "Search admin boundary": "Bilatu muga administratiboa",
473
+ "Please choose a theme and a boundary first.": "Aukeratu gai bat eta muga bat.",
474
+ "Expression": "Esamoldea",
475
+ "Geometry mode": "Geometria modua",
476
+ "Only geometry centers": "Geometria zentroak bakarrik",
477
+ "Search area": "Bilatu eremua",
478
+ "Type area name, or let empty to load data in current map view": "Idatzi eremuaren izena edo utzi hutsik datuak kargatzeko uneko maparen ikuspegian",
479
+ "Data successfully imported!": "Datuak behar bezala inportatu dira!",
480
+ "My Dashboard ({username})": "Nire panela ({username})",
481
+ "Clear data": "Garbitu datuak",
482
+ "Remove layers": "Kendu geruzak",
483
+ "Categorized": "Sailkatuta",
484
+ "Alphabetical": "Alfabetikoa",
485
+ "Category property": "Kategoriaren propietatea",
486
+ "Color palette": "Kolore paleta",
487
+ "Categories": "Kategoriak",
488
+ "Comma separated list of categories.": "Komaz bereizitako kategorien zerrenda.",
489
+ "Categories mode": "Kategoriak modua",
490
+ "Remove filter for this column": "Kendu iragazkia zutabe honetarako",
491
+ "Add filter for this column": "Gehitu iragazkia zutabe honetarako",
492
+ "Rename this column": "Aldatu izena zutabe honi",
493
+ "Delete this column": "Ezabatu zutabe hau",
494
+ "Name “{name}” should not contain a dot.": "\"{name}\" izenak ez luke punturik izan behar.",
495
+ "This name already exists: “{name}”": "Izen hau dagoeneko badago: “{name}”",
496
+ "Delete selected rows": "Ezabatu hautatutako errenkadak",
497
+ "Found {count} rows. Are you sure you want to delete all?": "{count} errenkada aurkitu dira. Ziur guztiak ezabatu nahi dituzula?",
498
+ "Expression is empty": "Esamoldea hutsa dago",
499
+ "OK": "Ados",
500
+ "Cancel": "Utzi",
501
+ "Attach map to a team": "Erantsi mapa talde bati",
502
+ "Display the polygon inverted": "Bistaratu poligonoa alderantziz",
503
+ "Proportional circles": "Zirkulu proportzionalak",
504
+ "Property name to compute circles": "Property name to compute circles",
505
+ "Min circle radius": "Zirkuluaren gutxieneko erradioa",
506
+ "Max circle radius": "Zirkuluaren gehieneko erradioa",
507
+ "Display the open browser control": "Display the open browser control",
508
+ "Copy as GeoJSON": "Kopiatu GeoJSON gisa",
509
+ "Please zoom in to edit the geometry": "Mesedez, handitu geometria editatzeko"
502
510
  }