umap-project 3.3.2__py3-none-any.whl → 3.4.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (242) hide show
  1. umap/__init__.py +1 -1
  2. umap/context_processors.py +4 -1
  3. umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
  4. umap/locale/cs_CZ/LC_MESSAGES/django.po +43 -33
  5. umap/locale/da/LC_MESSAGES/django.mo +0 -0
  6. umap/locale/da/LC_MESSAGES/django.po +43 -33
  7. umap/locale/de/LC_MESSAGES/django.mo +0 -0
  8. umap/locale/de/LC_MESSAGES/django.po +64 -53
  9. umap/locale/el/LC_MESSAGES/django.mo +0 -0
  10. umap/locale/el/LC_MESSAGES/django.po +35 -29
  11. umap/locale/en/LC_MESSAGES/django.po +47 -41
  12. umap/locale/es/LC_MESSAGES/django.mo +0 -0
  13. umap/locale/es/LC_MESSAGES/django.po +43 -33
  14. umap/locale/et/LC_MESSAGES/django.mo +0 -0
  15. umap/locale/et/LC_MESSAGES/django.po +58 -54
  16. umap/locale/eu/LC_MESSAGES/django.mo +0 -0
  17. umap/locale/eu/LC_MESSAGES/django.po +43 -33
  18. umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
  19. umap/locale/fa_IR/LC_MESSAGES/django.po +43 -33
  20. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  21. umap/locale/fr/LC_MESSAGES/django.po +36 -30
  22. umap/locale/gl/LC_MESSAGES/django.mo +0 -0
  23. umap/locale/gl/LC_MESSAGES/django.po +43 -33
  24. umap/locale/hu/LC_MESSAGES/django.mo +0 -0
  25. umap/locale/hu/LC_MESSAGES/django.po +35 -29
  26. umap/locale/is/LC_MESSAGES/django.mo +0 -0
  27. umap/locale/is/LC_MESSAGES/django.po +43 -33
  28. umap/locale/it/LC_MESSAGES/django.mo +0 -0
  29. umap/locale/it/LC_MESSAGES/django.po +43 -33
  30. umap/locale/nl/LC_MESSAGES/django.mo +0 -0
  31. umap/locale/nl/LC_MESSAGES/django.po +35 -29
  32. umap/locale/pl/LC_MESSAGES/django.mo +0 -0
  33. umap/locale/pl/LC_MESSAGES/django.po +114 -103
  34. umap/locale/pt/LC_MESSAGES/django.mo +0 -0
  35. umap/locale/pt/LC_MESSAGES/django.po +43 -33
  36. umap/locale/th_TH/LC_MESSAGES/django.mo +0 -0
  37. umap/locale/th_TH/LC_MESSAGES/django.po +310 -109
  38. umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
  39. umap/locale/zh_TW/LC_MESSAGES/django.po +80 -70
  40. umap/management/commands/switch_user.py +2 -2
  41. umap/migrations/0018_datalayer_uuid.py +1 -1
  42. umap/models.py +7 -3
  43. umap/settings/local.py.sample +1 -1
  44. umap/static/umap/base.css +89 -32
  45. umap/static/umap/content.css +129 -33
  46. umap/static/umap/css/bar.css +82 -20
  47. umap/static/umap/css/browser.css +163 -0
  48. umap/static/umap/css/contextmenu.css +15 -0
  49. umap/static/umap/css/dialog.css +36 -16
  50. umap/static/umap/css/form.css +123 -33
  51. umap/static/umap/css/icon.css +46 -3
  52. umap/static/umap/css/panel.css +7 -3
  53. umap/static/umap/css/popup.css +34 -8
  54. umap/static/umap/css/tooltip.css +8 -4
  55. umap/static/umap/img/16-white.svg +26 -8
  56. umap/static/umap/img/16.svg +1 -1
  57. umap/static/umap/img/source/16-white.svg +36 -18
  58. umap/static/umap/img/source/16.svg +1 -1
  59. umap/static/umap/js/components/alerts/alert.css +69 -31
  60. umap/static/umap/js/components/alerts/alert.js +20 -2
  61. umap/static/umap/js/components/base.js +1 -1
  62. umap/static/umap/js/modules/browser.js +69 -61
  63. umap/static/umap/js/modules/caption.js +10 -7
  64. umap/static/umap/js/modules/data/features.js +89 -63
  65. umap/static/umap/js/modules/data/fields.js +446 -0
  66. umap/static/umap/js/modules/data/layer.js +116 -196
  67. umap/static/umap/js/modules/domutils.js +109 -0
  68. umap/static/umap/js/modules/filters.js +780 -0
  69. umap/static/umap/js/modules/form/builder.js +8 -5
  70. umap/static/umap/js/modules/form/fields.js +111 -221
  71. umap/static/umap/js/modules/formatter.js +24 -1
  72. umap/static/umap/js/modules/help.js +4 -3
  73. umap/static/umap/js/modules/i18n.js +1 -1
  74. umap/static/umap/js/modules/importer.js +1 -1
  75. umap/static/umap/js/modules/importers/opendata.js +15 -0
  76. umap/static/umap/js/modules/importers/openrouteservice.js +6 -1
  77. umap/static/umap/js/modules/managers.js +2 -1
  78. umap/static/umap/js/modules/permissions.js +39 -31
  79. umap/static/umap/js/modules/rendering/controls.js +11 -9
  80. umap/static/umap/js/modules/rendering/icon.js +3 -8
  81. umap/static/umap/js/modules/rendering/layers/base.js +3 -3
  82. umap/static/umap/js/modules/rendering/layers/classified.js +18 -11
  83. umap/static/umap/js/modules/rendering/layers/cluster.js +23 -11
  84. umap/static/umap/js/modules/rendering/layers/heat.js +27 -21
  85. umap/static/umap/js/modules/rendering/map.js +1 -0
  86. umap/static/umap/js/modules/rendering/template.js +50 -23
  87. umap/static/umap/js/modules/rendering/ui.js +33 -25
  88. umap/static/umap/js/modules/rules.js +38 -44
  89. umap/static/umap/js/modules/schema.js +3 -6
  90. umap/static/umap/js/modules/share.js +5 -4
  91. umap/static/umap/js/modules/tableeditor.js +50 -38
  92. umap/static/umap/js/modules/templates.js +2 -3
  93. umap/static/umap/js/modules/ui/bar.js +55 -23
  94. umap/static/umap/js/modules/ui/dialog.js +38 -27
  95. umap/static/umap/js/modules/ui/panel.js +23 -8
  96. umap/static/umap/js/modules/ui/tooltip.js +6 -5
  97. umap/static/umap/js/modules/umap.js +158 -51
  98. umap/static/umap/js/modules/utils.js +24 -2
  99. umap/static/umap/js/umap.core.js +1 -110
  100. umap/static/umap/locale/am_ET.js +52 -17
  101. umap/static/umap/locale/am_ET.json +52 -17
  102. umap/static/umap/locale/ar.js +52 -17
  103. umap/static/umap/locale/ar.json +52 -17
  104. umap/static/umap/locale/ast.js +52 -17
  105. umap/static/umap/locale/ast.json +52 -17
  106. umap/static/umap/locale/bg.js +52 -17
  107. umap/static/umap/locale/bg.json +52 -17
  108. umap/static/umap/locale/br.js +48 -22
  109. umap/static/umap/locale/br.json +48 -22
  110. umap/static/umap/locale/ca.js +52 -17
  111. umap/static/umap/locale/ca.json +52 -17
  112. umap/static/umap/locale/cs_CZ.js +52 -17
  113. umap/static/umap/locale/cs_CZ.json +52 -17
  114. umap/static/umap/locale/da.js +54 -17
  115. umap/static/umap/locale/da.json +54 -17
  116. umap/static/umap/locale/de.js +102 -67
  117. umap/static/umap/locale/de.json +102 -67
  118. umap/static/umap/locale/el.js +52 -17
  119. umap/static/umap/locale/el.json +52 -17
  120. umap/static/umap/locale/en.js +54 -16
  121. umap/static/umap/locale/en.json +54 -16
  122. umap/static/umap/locale/en_US.json +52 -17
  123. umap/static/umap/locale/es.js +54 -17
  124. umap/static/umap/locale/es.json +54 -17
  125. umap/static/umap/locale/et.js +91 -56
  126. umap/static/umap/locale/et.json +91 -56
  127. umap/static/umap/locale/eu.js +84 -49
  128. umap/static/umap/locale/eu.json +84 -49
  129. umap/static/umap/locale/fa_IR.js +52 -17
  130. umap/static/umap/locale/fa_IR.json +52 -17
  131. umap/static/umap/locale/fi.js +52 -17
  132. umap/static/umap/locale/fi.json +52 -17
  133. umap/static/umap/locale/fr.js +54 -17
  134. umap/static/umap/locale/fr.json +54 -17
  135. umap/static/umap/locale/gl.js +52 -17
  136. umap/static/umap/locale/gl.json +52 -17
  137. umap/static/umap/locale/he.js +52 -17
  138. umap/static/umap/locale/he.json +52 -17
  139. umap/static/umap/locale/hr.js +52 -17
  140. umap/static/umap/locale/hr.json +52 -17
  141. umap/static/umap/locale/hu.js +59 -24
  142. umap/static/umap/locale/hu.json +59 -24
  143. umap/static/umap/locale/id.js +52 -17
  144. umap/static/umap/locale/id.json +52 -17
  145. umap/static/umap/locale/is.js +52 -17
  146. umap/static/umap/locale/is.json +52 -17
  147. umap/static/umap/locale/it.js +52 -17
  148. umap/static/umap/locale/it.json +52 -17
  149. umap/static/umap/locale/ja.js +52 -17
  150. umap/static/umap/locale/ja.json +52 -17
  151. umap/static/umap/locale/ko.js +52 -17
  152. umap/static/umap/locale/ko.json +52 -17
  153. umap/static/umap/locale/lt.js +52 -17
  154. umap/static/umap/locale/lt.json +52 -17
  155. umap/static/umap/locale/ms.js +52 -17
  156. umap/static/umap/locale/ms.json +52 -17
  157. umap/static/umap/locale/nl.js +52 -17
  158. umap/static/umap/locale/nl.json +52 -17
  159. umap/static/umap/locale/no.js +52 -17
  160. umap/static/umap/locale/no.json +52 -17
  161. umap/static/umap/locale/pl.js +53 -17
  162. umap/static/umap/locale/pl.json +53 -17
  163. umap/static/umap/locale/pl_PL.json +52 -17
  164. umap/static/umap/locale/pt.js +52 -17
  165. umap/static/umap/locale/pt.json +52 -17
  166. umap/static/umap/locale/pt_BR.js +52 -17
  167. umap/static/umap/locale/pt_BR.json +52 -17
  168. umap/static/umap/locale/pt_PT.js +52 -17
  169. umap/static/umap/locale/pt_PT.json +52 -17
  170. umap/static/umap/locale/ro.js +52 -17
  171. umap/static/umap/locale/ro.json +52 -17
  172. umap/static/umap/locale/ru.js +52 -17
  173. umap/static/umap/locale/ru.json +52 -17
  174. umap/static/umap/locale/si.js +1 -1
  175. umap/static/umap/locale/si.json +1 -1
  176. umap/static/umap/locale/sk_SK.js +52 -17
  177. umap/static/umap/locale/sk_SK.json +52 -17
  178. umap/static/umap/locale/sl.js +52 -17
  179. umap/static/umap/locale/sl.json +52 -17
  180. umap/static/umap/locale/sr.js +52 -17
  181. umap/static/umap/locale/sr.json +52 -17
  182. umap/static/umap/locale/sv.js +52 -17
  183. umap/static/umap/locale/sv.json +52 -17
  184. umap/static/umap/locale/th_TH.js +52 -17
  185. umap/static/umap/locale/th_TH.json +52 -17
  186. umap/static/umap/locale/tr.js +52 -17
  187. umap/static/umap/locale/tr.json +52 -17
  188. umap/static/umap/locale/uk_UA.js +52 -17
  189. umap/static/umap/locale/uk_UA.json +52 -17
  190. umap/static/umap/locale/vi.js +52 -17
  191. umap/static/umap/locale/vi.json +52 -17
  192. umap/static/umap/locale/vi_VN.json +52 -17
  193. umap/static/umap/locale/zh.js +52 -17
  194. umap/static/umap/locale/zh.json +52 -17
  195. umap/static/umap/locale/zh_CN.json +52 -17
  196. umap/static/umap/locale/zh_TW.Big5.json +52 -17
  197. umap/static/umap/locale/zh_TW.js +53 -17
  198. umap/static/umap/locale/zh_TW.json +53 -17
  199. umap/static/umap/map.css +63 -226
  200. umap/static/umap/unittests/utils.js +18 -0
  201. umap/static/umap/vars.css +23 -5
  202. umap/templates/umap/components/alerts/alert.html +32 -29
  203. umap/templates/umap/css.html +2 -1
  204. umap/templates/umap/login_popup_end.html +18 -9
  205. umap/templates/umap/user_map_table.html +7 -2
  206. umap/tests/integration/conftest.py +10 -6
  207. umap/tests/integration/test_anonymous_owned_map.py +90 -37
  208. umap/tests/integration/test_basics.py +25 -1
  209. umap/tests/integration/test_browser.py +37 -0
  210. umap/tests/integration/test_cluster.py +110 -0
  211. umap/tests/integration/test_conditional_rules.py +107 -52
  212. umap/tests/integration/test_datalayer.py +9 -16
  213. umap/tests/integration/test_draw_polygon.py +6 -0
  214. umap/tests/integration/test_draw_polyline.py +11 -0
  215. umap/tests/integration/test_edit_marker.py +12 -1
  216. umap/tests/integration/test_export_map.py +19 -0
  217. umap/tests/integration/test_fields.py +541 -0
  218. umap/tests/integration/test_filters.py +616 -0
  219. umap/tests/integration/test_iframe.py +1 -1
  220. umap/tests/integration/test_import.py +38 -42
  221. umap/tests/integration/test_map_preview.py +1 -1
  222. umap/tests/integration/test_picto.py +1 -1
  223. umap/tests/integration/test_popup.py +31 -0
  224. umap/tests/integration/test_remote_data.py +60 -4
  225. umap/tests/integration/test_save.py +1 -1
  226. umap/tests/integration/test_share.py +4 -4
  227. umap/tests/integration/test_tableeditor.py +31 -7
  228. umap/tests/integration/test_websocket_sync.py +71 -20
  229. umap/tests/test_dashboard.py +11 -1
  230. umap/tests/test_statics.py +2 -2
  231. umap/tests/test_utils.py +19 -2
  232. umap/tests/test_views.py +1 -1
  233. umap/urls.py +1 -0
  234. umap/utils.py +8 -1
  235. umap/views.py +5 -0
  236. {umap_project-3.3.2.dist-info → umap_project-3.4.0.dist-info}/METADATA +15 -15
  237. {umap_project-3.3.2.dist-info → umap_project-3.4.0.dist-info}/RECORD +240 -236
  238. umap/static/umap/js/modules/facets.js +0 -164
  239. umap/tests/integration/test_facets_browser.py +0 -279
  240. {umap_project-3.3.2.dist-info → umap_project-3.4.0.dist-info}/WHEEL +0 -0
  241. {umap_project-3.3.2.dist-info → umap_project-3.4.0.dist-info}/entry_points.txt +0 -0
  242. {umap_project-3.3.2.dist-info → umap_project-3.4.0.dist-info}/licenses/LICENSE +0 -0
@@ -12,7 +12,7 @@ msgid ""
12
12
  msgstr ""
13
13
  "Project-Id-Version: uMap\n"
14
14
  "Report-Msgid-Bugs-To: \n"
15
- "POT-Creation-Date: 2025-08-14 15:22+0000\n"
15
+ "POT-Creation-Date: 2025-10-14 15:28+0000\n"
16
16
  "PO-Revision-Date: 2013-11-22 14:00+0000\n"
17
17
  "Last-Translator: Joost Schouppe <joost.schouppe@gmail.com>, 2025\n"
18
18
  "Language-Team: Dutch (http://app.transifex.com/openstreetmap/umap/language/nl/)\n"
@@ -413,48 +413,54 @@ msgid "Play with the demo"
413
413
  msgstr "Speel met de demo"
414
414
 
415
415
  #: templates/umap/components/alerts/alert.html:17
416
- #: templates/umap/components/alerts/alert.html:66
417
- #: templates/umap/components/alerts/alert.html:94
416
+ #: templates/umap/components/alerts/alert.html:69
417
+ #: templates/umap/components/alerts/alert.html:97
418
418
  msgid "Close"
419
419
  msgstr "Afsluiten"
420
420
 
421
421
  #: templates/umap/components/alerts/alert.html:32
422
422
  #, python-format
423
423
  msgid ""
424
- "Pro-tip: to easily find back your maps, <a href=\"%(login_url)s\" "
425
- "target=\"_blank\">create an account</a> or <a href=\"%(login_url)s\" "
426
- "target=\"_blank\">log in</a>."
427
- msgstr "Pro-tip: om je kaarten gemakkelijk terug te vinden, <a href=\"%(login_url)s\" target=\"_blank\">maak een account aan</a> of <a href=\"%(login_url)s\" target=\"_blank\">log in</a>."
424
+ "Oops, I didn't mean it, I want to <a href=\"%(login_url)s\" "
425
+ "class=\"login\">create an account</a> or <a href=\"%(login_url)s\" "
426
+ "class=\"login\">log in</a> (no worry, we'll attach the map to your account)."
427
+ msgstr ""
428
428
 
429
- #: templates/umap/components/alerts/alert.html:37
429
+ #: templates/umap/components/alerts/alert.html:35
430
+ msgid ""
431
+ "Yes, I want to continue editing anonymously, I will save the secret edit "
432
+ "link to be able to edit this map later or on another device"
433
+ msgstr ""
434
+
435
+ #: templates/umap/components/alerts/alert.html:39
430
436
  msgid "Here is your secret link to edit the map, please keep it safe:"
431
437
  msgstr "Hier is je geheime link om de kaart te bewerken, houd deze alsjeblieft veilig:"
432
438
 
433
- #: templates/umap/components/alerts/alert.html:41
439
+ #: templates/umap/components/alerts/alert.html:43
434
440
  msgid "Copy link"
435
441
  msgstr "Kopieer link"
436
442
 
437
- #: templates/umap/components/alerts/alert.html:48
443
+ #: templates/umap/components/alerts/alert.html:50
438
444
  msgid "Enter your email address to receive the secret link:"
439
445
  msgstr "Voer je e-mailadres in om de geheime link te ontvangen:"
440
446
 
441
- #: templates/umap/components/alerts/alert.html:54
447
+ #: templates/umap/components/alerts/alert.html:56
442
448
  msgid "Email"
443
449
  msgstr "E-mail"
444
450
 
445
- #: templates/umap/components/alerts/alert.html:57
451
+ #: templates/umap/components/alerts/alert.html:59
446
452
  msgid "Send me the link"
447
453
  msgstr "Stuur mij de link"
448
454
 
449
- #: templates/umap/components/alerts/alert.html:81
455
+ #: templates/umap/components/alerts/alert.html:84
450
456
  msgid "See their edits in another tab"
451
457
  msgstr "Bekijk hun bewerkingen in een ander tabblad"
452
458
 
453
- #: templates/umap/components/alerts/alert.html:84
459
+ #: templates/umap/components/alerts/alert.html:87
454
460
  msgid "Keep your changes and loose theirs"
455
461
  msgstr "Bewaar uw wijzigingen en verlies die van hen"
456
462
 
457
- #: templates/umap/components/alerts/alert.html:87
463
+ #: templates/umap/components/alerts/alert.html:90
458
464
  msgid "Keep their changes and loose yours"
459
465
  msgstr "Behoud hun wijzigingen en verlies de jouwe"
460
466
 
@@ -722,7 +728,7 @@ msgstr "Laatste gemaakte kaarten"
722
728
  msgid "Search maps"
723
729
  msgstr "Zoek kaarten"
724
730
 
725
- #: templates/umap/search_bar.html:14
731
+ #: templates/umap/search_bar.html:14 templates/umap/user_map_table.html:15
726
732
  msgid "Any category"
727
733
  msgstr "Elke categorie"
728
734
 
@@ -828,61 +834,61 @@ msgstr "Team “%(name)s” is verwijderd"
828
834
  msgid "View the map"
829
835
  msgstr "Bekijk de kaart"
830
836
 
831
- #: views.py:867
837
+ #: views.py:872
832
838
  msgid "See full screen"
833
839
  msgstr "Volledig scherm weergeven"
834
840
 
835
- #: views.py:1010
841
+ #: views.py:1015
836
842
  msgid "Map editors updated with success!"
837
843
  msgstr "Kaarteditors met succes bijgewerkt!"
838
844
 
839
- #: views.py:1046
845
+ #: views.py:1051
840
846
  #, python-format
841
847
  msgid "The uMap edit link for your map: %(map_name)s"
842
848
  msgstr "De uMap-bewerkingslink voor uw kaart: %(map_name)s"
843
849
 
844
- #: views.py:1049
850
+ #: views.py:1054
845
851
  #, python-format
846
852
  msgid "Here is your secret edit link: %(link)s"
847
853
  msgstr "Hier is je geheime bewerkingslink: %(link)s"
848
854
 
849
- #: views.py:1056
855
+ #: views.py:1061
850
856
  #, python-format
851
857
  msgid "Can't send email to %(email)s"
852
858
  msgstr "Kan geen e-mail verzenden naar %(email)s"
853
859
 
854
- #: views.py:1059
860
+ #: views.py:1064
855
861
  #, python-format
856
862
  msgid "Email sent to %(email)s"
857
863
  msgstr "E-mail verzonden naar %(email)s"
858
864
 
859
- #: views.py:1070
865
+ #: views.py:1075
860
866
  msgid "Only its owner can delete the map."
861
867
  msgstr "Kaart kan alleen door eigenaar worden verwijderd."
862
868
 
863
- #: views.py:1076
869
+ #: views.py:1081
864
870
  msgid "Map successfully deleted."
865
871
  msgstr "Kaart succesvol verwijderd."
866
872
 
867
- #: views.py:1102
873
+ #: views.py:1107
868
874
  #, python-format
869
875
  msgid ""
870
876
  "Your map has been cloned! If you want to edit this map from another "
871
877
  "computer, please use this link: %(anonymous_url)s"
872
878
  msgstr "Uw kaart is gekopieerd! Als u deze kaart wilt wijzigen vanaf een andere computer, gebruik dan deze link: %(anonymous_url)s"
873
879
 
874
- #: views.py:1107
880
+ #: views.py:1112
875
881
  msgid "Congratulations, your map has been cloned!"
876
882
  msgstr "Gefeliciteerd, uw kaart is gekopieerd!"
877
883
 
878
- #: views.py:1361
884
+ #: views.py:1366
879
885
  msgid "Layer successfully deleted."
880
886
  msgstr "Laag is verwijderd."
881
887
 
882
- #: views.py:1383
888
+ #: views.py:1388
883
889
  msgid "Permissions updated with success!"
884
890
  msgstr "Machtigingen met succes bijgewerkt!"
885
891
 
886
- #: views.py:1400
892
+ #: views.py:1405
887
893
  msgid "Generic"
888
894
  msgstr "Generiek"
Binary file