umap-project 3.3.6__py3-none-any.whl → 3.4.0b0__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 (216) hide show
  1. umap/__init__.py +1 -1
  2. umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
  3. umap/locale/cs_CZ/LC_MESSAGES/django.po +43 -33
  4. umap/locale/da/LC_MESSAGES/django.mo +0 -0
  5. umap/locale/da/LC_MESSAGES/django.po +43 -33
  6. umap/locale/de/LC_MESSAGES/django.mo +0 -0
  7. umap/locale/de/LC_MESSAGES/django.po +35 -29
  8. umap/locale/el/LC_MESSAGES/django.mo +0 -0
  9. umap/locale/el/LC_MESSAGES/django.po +35 -29
  10. umap/locale/en/LC_MESSAGES/django.po +34 -28
  11. umap/locale/es/LC_MESSAGES/django.mo +0 -0
  12. umap/locale/es/LC_MESSAGES/django.po +43 -33
  13. umap/locale/et/LC_MESSAGES/django.mo +0 -0
  14. umap/locale/et/LC_MESSAGES/django.po +58 -54
  15. umap/locale/eu/LC_MESSAGES/django.mo +0 -0
  16. umap/locale/eu/LC_MESSAGES/django.po +43 -33
  17. umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
  18. umap/locale/fa_IR/LC_MESSAGES/django.po +43 -33
  19. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  20. umap/locale/fr/LC_MESSAGES/django.po +36 -30
  21. umap/locale/gl/LC_MESSAGES/django.mo +0 -0
  22. umap/locale/gl/LC_MESSAGES/django.po +43 -33
  23. umap/locale/hu/LC_MESSAGES/django.mo +0 -0
  24. umap/locale/hu/LC_MESSAGES/django.po +35 -29
  25. umap/locale/is/LC_MESSAGES/django.mo +0 -0
  26. umap/locale/is/LC_MESSAGES/django.po +43 -33
  27. umap/locale/it/LC_MESSAGES/django.mo +0 -0
  28. umap/locale/it/LC_MESSAGES/django.po +43 -33
  29. umap/locale/nl/LC_MESSAGES/django.mo +0 -0
  30. umap/locale/nl/LC_MESSAGES/django.po +35 -29
  31. umap/locale/pl/LC_MESSAGES/django.mo +0 -0
  32. umap/locale/pl/LC_MESSAGES/django.po +43 -33
  33. umap/locale/pt/LC_MESSAGES/django.mo +0 -0
  34. umap/locale/pt/LC_MESSAGES/django.po +43 -33
  35. umap/locale/th_TH/LC_MESSAGES/django.mo +0 -0
  36. umap/locale/th_TH/LC_MESSAGES/django.po +310 -109
  37. umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
  38. umap/locale/zh_TW/LC_MESSAGES/django.po +80 -70
  39. umap/management/commands/switch_user.py +2 -2
  40. umap/static/umap/base.css +89 -32
  41. umap/static/umap/content.css +129 -33
  42. umap/static/umap/css/bar.css +82 -20
  43. umap/static/umap/css/browser.css +163 -0
  44. umap/static/umap/css/contextmenu.css +15 -0
  45. umap/static/umap/css/dialog.css +36 -16
  46. umap/static/umap/css/form.css +122 -32
  47. umap/static/umap/css/icon.css +46 -3
  48. umap/static/umap/css/panel.css +7 -3
  49. umap/static/umap/css/popup.css +34 -8
  50. umap/static/umap/css/tooltip.css +8 -4
  51. umap/static/umap/img/16-white.svg +26 -8
  52. umap/static/umap/img/16.svg +1 -1
  53. umap/static/umap/img/source/16-white.svg +36 -18
  54. umap/static/umap/img/source/16.svg +1 -1
  55. umap/static/umap/js/components/alerts/alert.css +69 -31
  56. umap/static/umap/js/components/alerts/alert.js +20 -2
  57. umap/static/umap/js/modules/browser.js +63 -55
  58. umap/static/umap/js/modules/caption.js +10 -7
  59. umap/static/umap/js/modules/data/features.js +82 -59
  60. umap/static/umap/js/modules/data/layer.js +56 -157
  61. umap/static/umap/js/modules/domutils.js +109 -0
  62. umap/static/umap/js/modules/filters.js +807 -0
  63. umap/static/umap/js/modules/form/builder.js +8 -5
  64. umap/static/umap/js/modules/form/fields.js +110 -220
  65. umap/static/umap/js/modules/formatter.js +24 -1
  66. umap/static/umap/js/modules/help.js +3 -2
  67. umap/static/umap/js/modules/importers/opendata.js +5 -0
  68. umap/static/umap/js/modules/importers/openrouteservice.js +6 -1
  69. umap/static/umap/js/modules/managers.js +265 -1
  70. umap/static/umap/js/modules/permissions.js +35 -31
  71. umap/static/umap/js/modules/rendering/controls.js +7 -7
  72. umap/static/umap/js/modules/rendering/icon.js +3 -8
  73. umap/static/umap/js/modules/rendering/layers/classified.js +17 -10
  74. umap/static/umap/js/modules/rendering/layers/cluster.js +2 -2
  75. umap/static/umap/js/modules/rendering/template.js +44 -8
  76. umap/static/umap/js/modules/rendering/ui.js +29 -23
  77. umap/static/umap/js/modules/rules.js +4 -3
  78. umap/static/umap/js/modules/schema.js +3 -6
  79. umap/static/umap/js/modules/share.js +4 -3
  80. umap/static/umap/js/modules/tableeditor.js +50 -38
  81. umap/static/umap/js/modules/templates.js +2 -3
  82. umap/static/umap/js/modules/ui/bar.js +42 -18
  83. umap/static/umap/js/modules/ui/dialog.js +33 -31
  84. umap/static/umap/js/modules/ui/panel.js +21 -7
  85. umap/static/umap/js/modules/ui/tooltip.js +6 -5
  86. umap/static/umap/js/modules/umap.js +148 -51
  87. umap/static/umap/js/modules/utils.js +23 -1
  88. umap/static/umap/js/umap.core.js +1 -110
  89. umap/static/umap/locale/am_ET.js +40 -14
  90. umap/static/umap/locale/am_ET.json +40 -14
  91. umap/static/umap/locale/ar.js +40 -14
  92. umap/static/umap/locale/ar.json +40 -14
  93. umap/static/umap/locale/ast.js +40 -14
  94. umap/static/umap/locale/ast.json +40 -14
  95. umap/static/umap/locale/bg.js +40 -14
  96. umap/static/umap/locale/bg.json +40 -14
  97. umap/static/umap/locale/br.js +47 -21
  98. umap/static/umap/locale/br.json +47 -21
  99. umap/static/umap/locale/ca.js +40 -14
  100. umap/static/umap/locale/ca.json +40 -14
  101. umap/static/umap/locale/cs_CZ.js +40 -14
  102. umap/static/umap/locale/cs_CZ.json +40 -14
  103. umap/static/umap/locale/da.js +40 -14
  104. umap/static/umap/locale/da.json +40 -14
  105. umap/static/umap/locale/de.js +39 -13
  106. umap/static/umap/locale/de.json +39 -13
  107. umap/static/umap/locale/el.js +40 -14
  108. umap/static/umap/locale/el.json +40 -14
  109. umap/static/umap/locale/en.js +39 -13
  110. umap/static/umap/locale/en.json +39 -13
  111. umap/static/umap/locale/en_US.json +40 -14
  112. umap/static/umap/locale/es.js +40 -14
  113. umap/static/umap/locale/es.json +40 -14
  114. umap/static/umap/locale/et.js +79 -53
  115. umap/static/umap/locale/et.json +79 -53
  116. umap/static/umap/locale/eu.js +72 -46
  117. umap/static/umap/locale/eu.json +72 -46
  118. umap/static/umap/locale/fa_IR.js +40 -14
  119. umap/static/umap/locale/fa_IR.json +40 -14
  120. umap/static/umap/locale/fi.js +40 -14
  121. umap/static/umap/locale/fi.json +40 -14
  122. umap/static/umap/locale/fr.js +39 -13
  123. umap/static/umap/locale/fr.json +39 -13
  124. umap/static/umap/locale/gl.js +40 -14
  125. umap/static/umap/locale/gl.json +40 -14
  126. umap/static/umap/locale/he.js +40 -14
  127. umap/static/umap/locale/he.json +40 -14
  128. umap/static/umap/locale/hr.js +40 -14
  129. umap/static/umap/locale/hr.json +40 -14
  130. umap/static/umap/locale/hu.js +40 -14
  131. umap/static/umap/locale/hu.json +40 -14
  132. umap/static/umap/locale/id.js +40 -14
  133. umap/static/umap/locale/id.json +40 -14
  134. umap/static/umap/locale/is.js +40 -14
  135. umap/static/umap/locale/is.json +40 -14
  136. umap/static/umap/locale/it.js +40 -14
  137. umap/static/umap/locale/it.json +40 -14
  138. umap/static/umap/locale/ja.js +40 -14
  139. umap/static/umap/locale/ja.json +40 -14
  140. umap/static/umap/locale/ko.js +40 -14
  141. umap/static/umap/locale/ko.json +40 -14
  142. umap/static/umap/locale/lt.js +40 -14
  143. umap/static/umap/locale/lt.json +40 -14
  144. umap/static/umap/locale/ms.js +40 -14
  145. umap/static/umap/locale/ms.json +40 -14
  146. umap/static/umap/locale/nl.js +40 -14
  147. umap/static/umap/locale/nl.json +40 -14
  148. umap/static/umap/locale/no.js +40 -14
  149. umap/static/umap/locale/no.json +40 -14
  150. umap/static/umap/locale/pl.js +40 -14
  151. umap/static/umap/locale/pl.json +40 -14
  152. umap/static/umap/locale/pl_PL.json +40 -14
  153. umap/static/umap/locale/pt.js +40 -14
  154. umap/static/umap/locale/pt.json +40 -14
  155. umap/static/umap/locale/pt_BR.js +40 -14
  156. umap/static/umap/locale/pt_BR.json +40 -14
  157. umap/static/umap/locale/pt_PT.js +40 -14
  158. umap/static/umap/locale/pt_PT.json +40 -14
  159. umap/static/umap/locale/ro.js +40 -14
  160. umap/static/umap/locale/ro.json +40 -14
  161. umap/static/umap/locale/ru.js +40 -14
  162. umap/static/umap/locale/ru.json +40 -14
  163. umap/static/umap/locale/sk_SK.js +40 -14
  164. umap/static/umap/locale/sk_SK.json +40 -14
  165. umap/static/umap/locale/sl.js +40 -14
  166. umap/static/umap/locale/sl.json +40 -14
  167. umap/static/umap/locale/sr.js +40 -14
  168. umap/static/umap/locale/sr.json +40 -14
  169. umap/static/umap/locale/sv.js +40 -14
  170. umap/static/umap/locale/sv.json +40 -14
  171. umap/static/umap/locale/th_TH.js +40 -14
  172. umap/static/umap/locale/th_TH.json +40 -14
  173. umap/static/umap/locale/tr.js +40 -14
  174. umap/static/umap/locale/tr.json +40 -14
  175. umap/static/umap/locale/uk_UA.js +40 -14
  176. umap/static/umap/locale/uk_UA.json +40 -14
  177. umap/static/umap/locale/vi.js +40 -14
  178. umap/static/umap/locale/vi.json +40 -14
  179. umap/static/umap/locale/vi_VN.json +40 -14
  180. umap/static/umap/locale/zh.js +40 -14
  181. umap/static/umap/locale/zh.json +40 -14
  182. umap/static/umap/locale/zh_CN.json +40 -14
  183. umap/static/umap/locale/zh_TW.Big5.json +40 -14
  184. umap/static/umap/locale/zh_TW.js +39 -13
  185. umap/static/umap/locale/zh_TW.json +39 -13
  186. umap/static/umap/map.css +60 -223
  187. umap/static/umap/unittests/utils.js +18 -0
  188. umap/static/umap/vars.css +23 -5
  189. umap/templates/umap/components/alerts/alert.html +32 -29
  190. umap/templates/umap/css.html +2 -1
  191. umap/templates/umap/login_popup_end.html +18 -9
  192. umap/templates/umap/user_map_table.html +7 -2
  193. umap/tests/integration/conftest.py +2 -6
  194. umap/tests/integration/test_anonymous_owned_map.py +89 -36
  195. umap/tests/integration/test_basics.py +25 -1
  196. umap/tests/integration/test_browser.py +37 -0
  197. umap/tests/integration/test_draw_polygon.py +2 -0
  198. umap/tests/integration/test_edit_marker.py +1 -1
  199. umap/tests/integration/test_export_map.py +19 -0
  200. umap/tests/integration/test_fields.py +522 -0
  201. umap/tests/integration/test_filters.py +617 -0
  202. umap/tests/integration/test_import.py +15 -42
  203. umap/tests/integration/test_remote_data.py +60 -4
  204. umap/tests/integration/test_share.py +4 -4
  205. umap/tests/integration/test_tableeditor.py +31 -7
  206. umap/tests/integration/test_websocket_sync.py +3 -1
  207. umap/tests/test_dashboard.py +10 -0
  208. umap/urls.py +1 -0
  209. umap/views.py +5 -0
  210. {umap_project-3.3.6.dist-info → umap_project-3.4.0b0.dist-info}/METADATA +12 -12
  211. {umap_project-3.3.6.dist-info → umap_project-3.4.0b0.dist-info}/RECORD +214 -211
  212. umap/static/umap/js/modules/facets.js +0 -164
  213. umap/tests/integration/test_facets_browser.py +0 -279
  214. {umap_project-3.3.6.dist-info → umap_project-3.4.0b0.dist-info}/WHEEL +0 -0
  215. {umap_project-3.3.6.dist-info → umap_project-3.4.0b0.dist-info}/entry_points.txt +0 -0
  216. {umap_project-3.3.6.dist-info → umap_project-3.4.0b0.dist-info}/licenses/LICENSE +0 -0
@@ -9,7 +9,7 @@ msgid ""
9
9
  msgstr ""
10
10
  "Project-Id-Version: uMap\n"
11
11
  "Report-Msgid-Bugs-To: \n"
12
- "POT-Creation-Date: 2025-08-14 15:22+0000\n"
12
+ "POT-Creation-Date: 2025-10-14 15:28+0000\n"
13
13
  "PO-Revision-Date: 2013-11-22 14:00+0000\n"
14
14
  "Last-Translator: Gábor Babos <gabor.babos@gmail.com>, 2017-2019,2023-2025\n"
15
15
  "Language-Team: Hungarian (http://app.transifex.com/openstreetmap/umap/language/hu/)\n"
@@ -410,48 +410,54 @@ msgid "Play with the demo"
410
410
  msgstr "Játék a bemutatóval"
411
411
 
412
412
  #: templates/umap/components/alerts/alert.html:17
413
- #: templates/umap/components/alerts/alert.html:66
414
- #: templates/umap/components/alerts/alert.html:94
413
+ #: templates/umap/components/alerts/alert.html:69
414
+ #: templates/umap/components/alerts/alert.html:97
415
415
  msgid "Close"
416
416
  msgstr "Bezárás"
417
417
 
418
418
  #: templates/umap/components/alerts/alert.html:32
419
419
  #, python-format
420
420
  msgid ""
421
- "Pro-tip: to easily find back your maps, <a href=\"%(login_url)s\" "
422
- "target=\"_blank\">create an account</a> or <a href=\"%(login_url)s\" "
423
- "target=\"_blank\">log in</a>."
424
- msgstr "Haladó tipp: ha térképét később szeretné könnyedén megtalálni, <a href=\"%(login_url)s\" target=\"_blank\">hozzon létre egy fiókot</a> vagy <a href=\"%(login_url)s\" target=\"_blank\">jelentkezzék be</a>."
421
+ "Oops, I didn't mean it, I want to <a href=\"%(login_url)s\" "
422
+ "class=\"login\">create an account</a> or <a href=\"%(login_url)s\" "
423
+ "class=\"login\">log in</a> (no worry, we'll attach the map to your account)."
424
+ msgstr ""
425
425
 
426
- #: templates/umap/components/alerts/alert.html:37
426
+ #: templates/umap/components/alerts/alert.html:35
427
+ msgid ""
428
+ "Yes, I want to continue editing anonymously, I will save the secret edit "
429
+ "link to be able to edit this map later or on another device"
430
+ msgstr ""
431
+
432
+ #: templates/umap/components/alerts/alert.html:39
427
433
  msgid "Here is your secret link to edit the map, please keep it safe:"
428
434
  msgstr "Itt van a térkép szerkesztéséhez vezető titkos link, őrizze meg gondosan:"
429
435
 
430
- #: templates/umap/components/alerts/alert.html:41
436
+ #: templates/umap/components/alerts/alert.html:43
431
437
  msgid "Copy link"
432
438
  msgstr "Link másolása"
433
439
 
434
- #: templates/umap/components/alerts/alert.html:48
440
+ #: templates/umap/components/alerts/alert.html:50
435
441
  msgid "Enter your email address to receive the secret link:"
436
442
  msgstr "Adja meg az e-mail-címét, hogy megkapja a titkos linket: "
437
443
 
438
- #: templates/umap/components/alerts/alert.html:54
444
+ #: templates/umap/components/alerts/alert.html:56
439
445
  msgid "Email"
440
446
  msgstr "E-mail"
441
447
 
442
- #: templates/umap/components/alerts/alert.html:57
448
+ #: templates/umap/components/alerts/alert.html:59
443
449
  msgid "Send me the link"
444
450
  msgstr "Link elküldése magamnak"
445
451
 
446
- #: templates/umap/components/alerts/alert.html:81
452
+ #: templates/umap/components/alerts/alert.html:84
447
453
  msgid "See their edits in another tab"
448
454
  msgstr "Szerkesztéseik megtekintése egy másik fülön"
449
455
 
450
- #: templates/umap/components/alerts/alert.html:84
456
+ #: templates/umap/components/alerts/alert.html:87
451
457
  msgid "Keep your changes and loose theirs"
452
458
  msgstr "Saját szerkesztéseim megőrzése és az övék elvetése"
453
459
 
454
- #: templates/umap/components/alerts/alert.html:87
460
+ #: templates/umap/components/alerts/alert.html:90
455
461
  msgid "Keep their changes and loose yours"
456
462
  msgstr "Az ő szerkesztéseik megőrzése és a sajátjaim elvetése"
457
463
 
@@ -719,7 +725,7 @@ msgstr "Legutóbb létrehozott térképek"
719
725
  msgid "Search maps"
720
726
  msgstr "Térképek keresése"
721
727
 
722
- #: templates/umap/search_bar.html:14
728
+ #: templates/umap/search_bar.html:14 templates/umap/user_map_table.html:15
723
729
  msgid "Any category"
724
730
  msgstr "Bármely kategória"
725
731
 
@@ -825,61 +831,61 @@ msgstr "%(name)s csoport törölve"
825
831
  msgid "View the map"
826
832
  msgstr "Térkép megtekintése"
827
833
 
828
- #: views.py:867
834
+ #: views.py:872
829
835
  msgid "See full screen"
830
836
  msgstr "Teljes képernyős nézet megtekintése"
831
837
 
832
- #: views.py:1010
838
+ #: views.py:1015
833
839
  msgid "Map editors updated with success!"
834
840
  msgstr "A térképszerkesztők sikeresen frissültek."
835
841
 
836
- #: views.py:1046
842
+ #: views.py:1051
837
843
  #, python-format
838
844
  msgid "The uMap edit link for your map: %(map_name)s"
839
845
  msgstr "A térképéhez tartozó uMap szerkesztési link: %(map_name)s"
840
846
 
841
- #: views.py:1049
847
+ #: views.py:1054
842
848
  #, python-format
843
849
  msgid "Here is your secret edit link: %(link)s"
844
850
  msgstr "Az Ön titkos szerkesztési linkje: %(link)s"
845
851
 
846
- #: views.py:1056
852
+ #: views.py:1061
847
853
  #, python-format
848
854
  msgid "Can't send email to %(email)s"
849
855
  msgstr "Nem sikerül e-mailt küldeni ide: %(email)s"
850
856
 
851
- #: views.py:1059
857
+ #: views.py:1064
852
858
  #, python-format
853
859
  msgid "Email sent to %(email)s"
854
860
  msgstr "E-mail elküldve ide: %(email)s"
855
861
 
856
- #: views.py:1070
862
+ #: views.py:1075
857
863
  msgid "Only its owner can delete the map."
858
864
  msgstr "A térképet csak a tulajdonosa törölheti."
859
865
 
860
- #: views.py:1076
866
+ #: views.py:1081
861
867
  msgid "Map successfully deleted."
862
868
  msgstr "Térkép sikeresen törölve."
863
869
 
864
- #: views.py:1102
870
+ #: views.py:1107
865
871
  #, python-format
866
872
  msgid ""
867
873
  "Your map has been cloned! If you want to edit this map from another "
868
874
  "computer, please use this link: %(anonymous_url)s"
869
875
  msgstr "Elkészült a térképe másolata. Ha egy másik számítógépről szeretné szerkeszteni, ezt a linket használja: %(anonymous_url)s"
870
876
 
871
- #: views.py:1107
877
+ #: views.py:1112
872
878
  msgid "Congratulations, your map has been cloned!"
873
879
  msgstr "Gratulálunk, elkészült a térképe másolata!"
874
880
 
875
- #: views.py:1361
881
+ #: views.py:1366
876
882
  msgid "Layer successfully deleted."
877
883
  msgstr "A réteg sikeresen törlődött."
878
884
 
879
- #: views.py:1383
885
+ #: views.py:1388
880
886
  msgid "Permissions updated with success!"
881
887
  msgstr "Az engedélyek sikeresen frissültek!"
882
888
 
883
- #: views.py:1400
889
+ #: views.py:1405
884
890
  msgid "Generic"
885
891
  msgstr "Általános"
Binary file
@@ -8,7 +8,7 @@ msgid ""
8
8
  msgstr ""
9
9
  "Project-Id-Version: uMap\n"
10
10
  "Report-Msgid-Bugs-To: \n"
11
- "POT-Creation-Date: 2025-06-10 09:19+0000\n"
11
+ "POT-Creation-Date: 2025-10-14 15:28+0000\n"
12
12
  "PO-Revision-Date: 2013-11-22 14:00+0000\n"
13
13
  "Last-Translator: Sveinn í Felli <sv1@fellsnet.is>, 2020\n"
14
14
  "Language-Team: Icelandic (http://app.transifex.com/openstreetmap/umap/language/is/)\n"
@@ -325,7 +325,7 @@ msgstr "Skoða stjörnumerkt landakort frá %(current_user)s"
325
325
  msgid "%(current_user)s has no starred maps yet."
326
326
  msgstr "%(current_user)s er ekki ennþá með nein stjörnumerkt kort."
327
327
 
328
- #: templates/base.html:13
328
+ #: templates/base.html:16
329
329
  msgid ""
330
330
  "uMap lets you create maps with OpenStreetMap layers in a minute and embed "
331
331
  "them in your site."
@@ -409,48 +409,54 @@ msgid "Play with the demo"
409
409
  msgstr "Leiktu þér með sýnisútgáfuna"
410
410
 
411
411
  #: templates/umap/components/alerts/alert.html:17
412
- #: templates/umap/components/alerts/alert.html:66
413
- #: templates/umap/components/alerts/alert.html:94
412
+ #: templates/umap/components/alerts/alert.html:69
413
+ #: templates/umap/components/alerts/alert.html:97
414
414
  msgid "Close"
415
415
  msgstr "Loka"
416
416
 
417
417
  #: templates/umap/components/alerts/alert.html:32
418
418
  #, python-format
419
419
  msgid ""
420
- "Pro-tip: to easily find back your maps, <a href=\"%(login_url)s\" "
421
- "target=\"_blank\">create an account</a> or <a href=\"%(login_url)s\" "
422
- "target=\"_blank\">log in</a>."
423
- msgstr "Til þess að finna aftur kortin þín á einfaldan máta, skaltu annaðhvort <a href=\"%(login_url)s\" target=\"_blank\">búa til aðgang</a> eða <a href=\"%(login_url)s\" target=\"_blank\">skrá þig inn</a>."
420
+ "Oops, I didn't mean it, I want to <a href=\"%(login_url)s\" "
421
+ "class=\"login\">create an account</a> or <a href=\"%(login_url)s\" "
422
+ "class=\"login\">log in</a> (no worry, we'll attach the map to your account)."
423
+ msgstr ""
424
424
 
425
- #: templates/umap/components/alerts/alert.html:37
425
+ #: templates/umap/components/alerts/alert.html:35
426
+ msgid ""
427
+ "Yes, I want to continue editing anonymously, I will save the secret edit "
428
+ "link to be able to edit this map later or on another device"
429
+ msgstr ""
430
+
431
+ #: templates/umap/components/alerts/alert.html:39
426
432
  msgid "Here is your secret link to edit the map, please keep it safe:"
427
433
  msgstr "Hér er leynilegi tengillinn þinn til að breyta kortinu, haltu honum öruggum:"
428
434
 
429
- #: templates/umap/components/alerts/alert.html:41
435
+ #: templates/umap/components/alerts/alert.html:43
430
436
  msgid "Copy link"
431
437
  msgstr "Afrita tengil"
432
438
 
433
- #: templates/umap/components/alerts/alert.html:48
439
+ #: templates/umap/components/alerts/alert.html:50
434
440
  msgid "Enter your email address to receive the secret link:"
435
441
  msgstr "Settu inn tölvupóstfangið þitt til að taka við leynilega tenglinum:"
436
442
 
437
- #: templates/umap/components/alerts/alert.html:54
443
+ #: templates/umap/components/alerts/alert.html:56
438
444
  msgid "Email"
439
445
  msgstr "Tölvupóstur"
440
446
 
441
- #: templates/umap/components/alerts/alert.html:57
447
+ #: templates/umap/components/alerts/alert.html:59
442
448
  msgid "Send me the link"
443
449
  msgstr "Senda mér tengilinn"
444
450
 
445
- #: templates/umap/components/alerts/alert.html:81
451
+ #: templates/umap/components/alerts/alert.html:84
446
452
  msgid "See their edits in another tab"
447
453
  msgstr "Skoða breytingar þeirra í öðrum flipa"
448
454
 
449
- #: templates/umap/components/alerts/alert.html:84
455
+ #: templates/umap/components/alerts/alert.html:87
450
456
  msgid "Keep your changes and loose theirs"
451
457
  msgstr "Halda þínum breytingum og tapa þeirra"
452
458
 
453
- #: templates/umap/components/alerts/alert.html:87
459
+ #: templates/umap/components/alerts/alert.html:90
454
460
  msgid "Keep their changes and loose yours"
455
461
  msgstr "Halda breytingum þeirra og tapa þínum"
456
462
 
@@ -531,7 +537,7 @@ msgstr "Þú ert skráð/ur inn. Held áfram..."
531
537
  msgid "template"
532
538
  msgstr ""
533
539
 
534
- #: templates/umap/map_list.html:18 views.py:458
540
+ #: templates/umap/map_list.html:18 views.py:459
535
541
  msgid "by"
536
542
  msgstr "eftir"
537
543
 
@@ -718,7 +724,7 @@ msgstr "Síðast útbúnu kortin"
718
724
  msgid "Search maps"
719
725
  msgstr "Leita í landakortum"
720
726
 
721
- #: templates/umap/search_bar.html:14
727
+ #: templates/umap/search_bar.html:14 templates/umap/user_map_table.html:15
722
728
  msgid "Any category"
723
729
  msgstr ""
724
730
 
@@ -811,70 +817,74 @@ msgstr ""
811
817
  msgid "No template found."
812
818
  msgstr ""
813
819
 
814
- #: views.py:233
820
+ #: views.py:235
815
821
  msgid "Cannot delete a team with more than one member"
816
822
  msgstr "Get ekki eytt teymi með fleiri en einum meðlim"
817
823
 
818
- #: views.py:237
824
+ #: views.py:239
819
825
  #, python-format
820
826
  msgid "Team “%(name)s” has been deleted"
821
827
  msgstr "Teyminu “%(name)s” hefur verið eytt"
822
828
 
823
- #: views.py:463
829
+ #: views.py:464
824
830
  msgid "View the map"
825
831
  msgstr "Skoða kortið"
826
832
 
827
- #: views.py:864
833
+ #: views.py:872
828
834
  msgid "See full screen"
829
835
  msgstr "Fylla skjáinn"
830
836
 
831
- #: views.py:1007
837
+ #: views.py:1015
832
838
  msgid "Map editors updated with success!"
833
839
  msgstr "Tókst að uppfæra vinnslu korta!"
834
840
 
835
- #: views.py:1043
841
+ #: views.py:1051
836
842
  #, python-format
837
843
  msgid "The uMap edit link for your map: %(map_name)s"
838
844
  msgstr "uMap-breytingatengillinn fyrir landakortið þitt: %(map_name)s"
839
845
 
840
- #: views.py:1046
846
+ #: views.py:1054
841
847
  #, python-format
842
848
  msgid "Here is your secret edit link: %(link)s"
843
849
  msgstr "Hér er leynilegi breytingatengillinn þinn: %(link)s"
844
850
 
845
- #: views.py:1053
851
+ #: views.py:1061
846
852
  #, python-format
847
853
  msgid "Can't send email to %(email)s"
848
854
  msgstr "Tekst ekki að senda tölvupóst á %(email)s"
849
855
 
850
- #: views.py:1056
856
+ #: views.py:1064
851
857
  #, python-format
852
858
  msgid "Email sent to %(email)s"
853
859
  msgstr "Tölvupóstur var sendur á %(email)s"
854
860
 
855
- #: views.py:1067
861
+ #: views.py:1075
856
862
  msgid "Only its owner can delete the map."
857
863
  msgstr "Aðeins eigandinn getur eytt landakortinu."
858
864
 
859
- #: views.py:1073
865
+ #: views.py:1081
860
866
  msgid "Map successfully deleted."
861
867
  msgstr "Tókst að eyða korti."
862
868
 
863
- #: views.py:1099
869
+ #: views.py:1107
864
870
  #, python-format
865
871
  msgid ""
866
872
  "Your map has been cloned! If you want to edit this map from another "
867
873
  "computer, please use this link: %(anonymous_url)s"
868
874
  msgstr "Það tókst að klóna landakortið þitt! Ef þú ætlar að breyta þessu landakorti úr annarri tölvu, ættirðu að nota þennan tengil: %(anonymous_url)s"
869
875
 
870
- #: views.py:1104
876
+ #: views.py:1112
871
877
  msgid "Congratulations, your map has been cloned!"
872
878
  msgstr "Til hamingju, það tókst að klóna landakortið þitt!"
873
879
 
874
- #: views.py:1358
880
+ #: views.py:1366
875
881
  msgid "Layer successfully deleted."
876
882
  msgstr "Tókst að eyða lagi."
877
883
 
878
- #: views.py:1380
884
+ #: views.py:1388
879
885
  msgid "Permissions updated with success!"
880
886
  msgstr "Tókst að uppfæra heimildir!"
887
+
888
+ #: views.py:1405
889
+ msgid "Generic"
890
+ msgstr ""
Binary file
@@ -21,7 +21,7 @@ msgid ""
21
21
  msgstr ""
22
22
  "Project-Id-Version: uMap\n"
23
23
  "Report-Msgid-Bugs-To: \n"
24
- "POT-Creation-Date: 2025-06-10 09:19+0000\n"
24
+ "POT-Creation-Date: 2025-10-14 15:28+0000\n"
25
25
  "PO-Revision-Date: 2013-11-22 14:00+0000\n"
26
26
  "Last-Translator: Marco <marcxosm@gmail.com>, 2017-2019,2024-2025\n"
27
27
  "Language-Team: Italian (http://app.transifex.com/openstreetmap/umap/language/it/)\n"
@@ -338,7 +338,7 @@ msgstr "Sfoglia le mappe selezionate da %(current_user)s"
338
338
  msgid "%(current_user)s has no starred maps yet."
339
339
  msgstr "%(current_user)snon ha ancora selezionato mappe"
340
340
 
341
- #: templates/base.html:13
341
+ #: templates/base.html:16
342
342
  msgid ""
343
343
  "uMap lets you create maps with OpenStreetMap layers in a minute and embed "
344
344
  "them in your site."
@@ -422,48 +422,54 @@ msgid "Play with the demo"
422
422
  msgstr "Gioca con la demo"
423
423
 
424
424
  #: templates/umap/components/alerts/alert.html:17
425
- #: templates/umap/components/alerts/alert.html:66
426
- #: templates/umap/components/alerts/alert.html:94
425
+ #: templates/umap/components/alerts/alert.html:69
426
+ #: templates/umap/components/alerts/alert.html:97
427
427
  msgid "Close"
428
428
  msgstr "Chiudi"
429
429
 
430
430
  #: templates/umap/components/alerts/alert.html:32
431
431
  #, python-format
432
432
  msgid ""
433
- "Pro-tip: to easily find back your maps, <a href=\"%(login_url)s\" "
434
- "target=\"_blank\">create an account</a> or <a href=\"%(login_url)s\" "
435
- "target=\"_blank\">log in</a>."
436
- msgstr "Pro-tip: per trovare facilmente le tue mappe, <a href=\"%(login_url)s\" target=\"_blank\">crea un account</a> o <a href=\"%(login_url)s\" target=\"_blank\">effettua il log in</a>."
433
+ "Oops, I didn't mean it, I want to <a href=\"%(login_url)s\" "
434
+ "class=\"login\">create an account</a> or <a href=\"%(login_url)s\" "
435
+ "class=\"login\">log in</a> (no worry, we'll attach the map to your account)."
436
+ msgstr ""
437
437
 
438
- #: templates/umap/components/alerts/alert.html:37
438
+ #: templates/umap/components/alerts/alert.html:35
439
+ msgid ""
440
+ "Yes, I want to continue editing anonymously, I will save the secret edit "
441
+ "link to be able to edit this map later or on another device"
442
+ msgstr ""
443
+
444
+ #: templates/umap/components/alerts/alert.html:39
439
445
  msgid "Here is your secret link to edit the map, please keep it safe:"
440
446
  msgstr "Ecco il tuo link segreto per modificare la mappa, fa attenzione a tenerlo al sicuro:"
441
447
 
442
- #: templates/umap/components/alerts/alert.html:41
448
+ #: templates/umap/components/alerts/alert.html:43
443
449
  msgid "Copy link"
444
450
  msgstr "Copia link"
445
451
 
446
- #: templates/umap/components/alerts/alert.html:48
452
+ #: templates/umap/components/alerts/alert.html:50
447
453
  msgid "Enter your email address to receive the secret link:"
448
454
  msgstr "Fornisci la tua email per ricevere il link segreto:"
449
455
 
450
- #: templates/umap/components/alerts/alert.html:54
456
+ #: templates/umap/components/alerts/alert.html:56
451
457
  msgid "Email"
452
458
  msgstr "Email"
453
459
 
454
- #: templates/umap/components/alerts/alert.html:57
460
+ #: templates/umap/components/alerts/alert.html:59
455
461
  msgid "Send me the link"
456
462
  msgstr "Inviami il link"
457
463
 
458
- #: templates/umap/components/alerts/alert.html:81
464
+ #: templates/umap/components/alerts/alert.html:84
459
465
  msgid "See their edits in another tab"
460
466
  msgstr "Vedi le loro modifiche in un'altra scheda"
461
467
 
462
- #: templates/umap/components/alerts/alert.html:84
468
+ #: templates/umap/components/alerts/alert.html:87
463
469
  msgid "Keep your changes and loose theirs"
464
470
  msgstr "Mantieni i tuoi cambiamenti e perdi i precedenti"
465
471
 
466
- #: templates/umap/components/alerts/alert.html:87
472
+ #: templates/umap/components/alerts/alert.html:90
467
473
  msgid "Keep their changes and loose yours"
468
474
  msgstr "Mantieni i loro cambiamenti e perdi i tuoi"
469
475
 
@@ -544,7 +550,7 @@ msgstr "Utente loggato. Continuare..."
544
550
  msgid "template"
545
551
  msgstr ""
546
552
 
547
- #: templates/umap/map_list.html:18 views.py:458
553
+ #: templates/umap/map_list.html:18 views.py:459
548
554
  msgid "by"
549
555
  msgstr "di"
550
556
 
@@ -732,7 +738,7 @@ msgstr "Ultime mappe create"
732
738
  msgid "Search maps"
733
739
  msgstr "Cerca mappe"
734
740
 
735
- #: templates/umap/search_bar.html:14
741
+ #: templates/umap/search_bar.html:14 templates/umap/user_map_table.html:15
736
742
  msgid "Any category"
737
743
  msgstr "Qualsiasi categoria"
738
744
 
@@ -825,70 +831,74 @@ msgstr ""
825
831
  msgid "No template found."
826
832
  msgstr ""
827
833
 
828
- #: views.py:233
834
+ #: views.py:235
829
835
  msgid "Cannot delete a team with more than one member"
830
836
  msgstr "Non si può eliminare un team con più di un membro"
831
837
 
832
- #: views.py:237
838
+ #: views.py:239
833
839
  #, python-format
834
840
  msgid "Team “%(name)s” has been deleted"
835
841
  msgstr "Il team “%(name)s” è stato cancellato"
836
842
 
837
- #: views.py:463
843
+ #: views.py:464
838
844
  msgid "View the map"
839
845
  msgstr "Visualizza la mappa"
840
846
 
841
- #: views.py:864
847
+ #: views.py:872
842
848
  msgid "See full screen"
843
849
  msgstr "Vedi a schermo interno"
844
850
 
845
- #: views.py:1007
851
+ #: views.py:1015
846
852
  msgid "Map editors updated with success!"
847
853
  msgstr "Aggiornato l'elenco degli editor abilitati alla modifica della mappa!"
848
854
 
849
- #: views.py:1043
855
+ #: views.py:1051
850
856
  #, python-format
851
857
  msgid "The uMap edit link for your map: %(map_name)s"
852
858
  msgstr "Link uMap per la modifica della tua mappa: %(map_name)s"
853
859
 
854
- #: views.py:1046
860
+ #: views.py:1054
855
861
  #, python-format
856
862
  msgid "Here is your secret edit link: %(link)s"
857
863
  msgstr "Qui il tuo link segreto: %(link)s"
858
864
 
859
- #: views.py:1053
865
+ #: views.py:1061
860
866
  #, python-format
861
867
  msgid "Can't send email to %(email)s"
862
868
  msgstr "Non riesco ad inviare email a 1%(email)s"
863
869
 
864
- #: views.py:1056
870
+ #: views.py:1064
865
871
  #, python-format
866
872
  msgid "Email sent to %(email)s"
867
873
  msgstr "Email inviata a %(email)s"
868
874
 
869
- #: views.py:1067
875
+ #: views.py:1075
870
876
  msgid "Only its owner can delete the map."
871
877
  msgstr "Solo il proprietario può eliminare la mappa."
872
878
 
873
- #: views.py:1073
879
+ #: views.py:1081
874
880
  msgid "Map successfully deleted."
875
881
  msgstr "La mappa è stata eliminata definitivamente."
876
882
 
877
- #: views.py:1099
883
+ #: views.py:1107
878
884
  #, python-format
879
885
  msgid ""
880
886
  "Your map has been cloned! If you want to edit this map from another "
881
887
  "computer, please use this link: %(anonymous_url)s"
882
888
  msgstr "La mappa è stata clonata! Per modificarla usando un altro computer, si deve utilizzare questo link: %(anonymous_url)s"
883
889
 
884
- #: views.py:1104
890
+ #: views.py:1112
885
891
  msgid "Congratulations, your map has been cloned!"
886
892
  msgstr "Perfetto, la tua mappa è stata clonata!"
887
893
 
888
- #: views.py:1358
894
+ #: views.py:1366
889
895
  msgid "Layer successfully deleted."
890
896
  msgstr "Layer eliminato correttamente"
891
897
 
892
- #: views.py:1380
898
+ #: views.py:1388
893
899
  msgid "Permissions updated with success!"
894
900
  msgstr "Autorizzazioni aggiornate con successo!"
901
+
902
+ #: views.py:1405
903
+ msgid "Generic"
904
+ msgstr ""
Binary file