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
@@ -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
@@ -17,7 +17,7 @@ msgid ""
17
17
  msgstr ""
18
18
  "Project-Id-Version: uMap\n"
19
19
  "Report-Msgid-Bugs-To: \n"
20
- "POT-Creation-Date: 2025-06-10 09:19+0000\n"
20
+ "POT-Creation-Date: 2025-10-14 15:28+0000\n"
21
21
  "PO-Revision-Date: 2013-11-22 14:00+0000\n"
22
22
  "Last-Translator: Krzysztof Chorzempa, 2023-2024\n"
23
23
  "Language-Team: Polish (http://app.transifex.com/openstreetmap/umap/language/pl/)\n"
@@ -334,7 +334,7 @@ msgstr "Przeglądaj mapy oznaczone gwiazdką przez %(current_user)s"
334
334
  msgid "%(current_user)s has no starred maps yet."
335
335
  msgstr "%(current_user)s nie ma map oznaczonych gwiazdką."
336
336
 
337
- #: templates/base.html:13
337
+ #: templates/base.html:16
338
338
  msgid ""
339
339
  "uMap lets you create maps with OpenStreetMap layers in a minute and embed "
340
340
  "them in your site."
@@ -418,48 +418,54 @@ msgid "Play with the demo"
418
418
  msgstr "Zobacz wersję demo"
419
419
 
420
420
  #: templates/umap/components/alerts/alert.html:17
421
- #: templates/umap/components/alerts/alert.html:66
422
- #: templates/umap/components/alerts/alert.html:94
421
+ #: templates/umap/components/alerts/alert.html:69
422
+ #: templates/umap/components/alerts/alert.html:97
423
423
  msgid "Close"
424
424
  msgstr "Zamknij"
425
425
 
426
426
  #: templates/umap/components/alerts/alert.html:32
427
427
  #, python-format
428
428
  msgid ""
429
- "Pro-tip: to easily find back your maps, <a href=\"%(login_url)s\" "
430
- "target=\"_blank\">create an account</a> or <a href=\"%(login_url)s\" "
431
- "target=\"_blank\">log in</a>."
432
- msgstr "Wskazówka: aby łatwo znaleźć swoje mapy, <a href=\"%(login_url)s\" target=\"_blank\">utwórz konto</a> lub <a href=\"%(login_url)s\" target=\"_blank\">zaloguj się</a>. "
429
+ "Oops, I didn't mean it, I want to <a href=\"%(login_url)s\" "
430
+ "class=\"login\">create an account</a> or <a href=\"%(login_url)s\" "
431
+ "class=\"login\">log in</a> (no worry, we'll attach the map to your account)."
432
+ msgstr ""
433
433
 
434
- #: templates/umap/components/alerts/alert.html:37
434
+ #: templates/umap/components/alerts/alert.html:35
435
+ msgid ""
436
+ "Yes, I want to continue editing anonymously, I will save the secret edit "
437
+ "link to be able to edit this map later or on another device"
438
+ msgstr ""
439
+
440
+ #: templates/umap/components/alerts/alert.html:39
435
441
  msgid "Here is your secret link to edit the map, please keep it safe:"
436
442
  msgstr ""
437
443
 
438
- #: templates/umap/components/alerts/alert.html:41
444
+ #: templates/umap/components/alerts/alert.html:43
439
445
  msgid "Copy link"
440
446
  msgstr "Skopiuj link"
441
447
 
442
- #: templates/umap/components/alerts/alert.html:48
448
+ #: templates/umap/components/alerts/alert.html:50
443
449
  msgid "Enter your email address to receive the secret link:"
444
450
  msgstr "Wprowadź swój adres email, aby otrzymać tajny link:"
445
451
 
446
- #: templates/umap/components/alerts/alert.html:54
452
+ #: templates/umap/components/alerts/alert.html:56
447
453
  msgid "Email"
448
454
  msgstr "Email"
449
455
 
450
- #: templates/umap/components/alerts/alert.html:57
456
+ #: templates/umap/components/alerts/alert.html:59
451
457
  msgid "Send me the link"
452
458
  msgstr "Wyślij mi link"
453
459
 
454
- #: templates/umap/components/alerts/alert.html:81
460
+ #: templates/umap/components/alerts/alert.html:84
455
461
  msgid "See their edits in another tab"
456
462
  msgstr "Zobacz edycje innych w osobnej zakładce"
457
463
 
458
- #: templates/umap/components/alerts/alert.html:84
464
+ #: templates/umap/components/alerts/alert.html:87
459
465
  msgid "Keep your changes and loose theirs"
460
466
  msgstr "Zachowaj swoje zmiany i utrać zmiany innych"
461
467
 
462
- #: templates/umap/components/alerts/alert.html:87
468
+ #: templates/umap/components/alerts/alert.html:90
463
469
  msgid "Keep their changes and loose yours"
464
470
  msgstr "Zachowaj zmiany innych i utrać swoje"
465
471
 
@@ -540,7 +546,7 @@ msgstr "Jesteś zalogowany. Kontynuowanie..."
540
546
  msgid "template"
541
547
  msgstr ""
542
548
 
543
- #: templates/umap/map_list.html:18 views.py:458
549
+ #: templates/umap/map_list.html:18 views.py:459
544
550
  msgid "by"
545
551
  msgstr "przez"
546
552
 
@@ -729,7 +735,7 @@ msgstr "Ostatnio utworzone mapy"
729
735
  msgid "Search maps"
730
736
  msgstr "Znajdź mapy"
731
737
 
732
- #: templates/umap/search_bar.html:14
738
+ #: templates/umap/search_bar.html:14 templates/umap/user_map_table.html:15
733
739
  msgid "Any category"
734
740
  msgstr ""
735
741
 
@@ -822,70 +828,74 @@ msgstr ""
822
828
  msgid "No template found."
823
829
  msgstr ""
824
830
 
825
- #: views.py:233
831
+ #: views.py:235
826
832
  msgid "Cannot delete a team with more than one member"
827
833
  msgstr ""
828
834
 
829
- #: views.py:237
835
+ #: views.py:239
830
836
  #, python-format
831
837
  msgid "Team “%(name)s” has been deleted"
832
838
  msgstr ""
833
839
 
834
- #: views.py:463
840
+ #: views.py:464
835
841
  msgid "View the map"
836
842
  msgstr "Zobacz mapę"
837
843
 
838
- #: views.py:864
844
+ #: views.py:872
839
845
  msgid "See full screen"
840
846
  msgstr ""
841
847
 
842
- #: views.py:1007
848
+ #: views.py:1015
843
849
  msgid "Map editors updated with success!"
844
850
  msgstr "Edytorzy mapy zaktualizowani pomyślnie!"
845
851
 
846
- #: views.py:1043
852
+ #: views.py:1051
847
853
  #, python-format
848
854
  msgid "The uMap edit link for your map: %(map_name)s"
849
855
  msgstr "Link uMap do edytowania twojej mapy: %(map_name)s"
850
856
 
851
- #: views.py:1046
857
+ #: views.py:1054
852
858
  #, python-format
853
859
  msgid "Here is your secret edit link: %(link)s"
854
860
  msgstr "Oto twój sekretny link do edycji: %(link)s"
855
861
 
856
- #: views.py:1053
862
+ #: views.py:1061
857
863
  #, python-format
858
864
  msgid "Can't send email to %(email)s"
859
865
  msgstr "Nie można wysłać emaila do %(email)s"
860
866
 
861
- #: views.py:1056
867
+ #: views.py:1064
862
868
  #, python-format
863
869
  msgid "Email sent to %(email)s"
864
870
  msgstr "Email wysłany do %(email)s"
865
871
 
866
- #: views.py:1067
872
+ #: views.py:1075
867
873
  msgid "Only its owner can delete the map."
868
874
  msgstr "Tylko właściciel może usunąć mapę."
869
875
 
870
- #: views.py:1073
876
+ #: views.py:1081
871
877
  msgid "Map successfully deleted."
872
878
  msgstr "Pomyślnie usunięto mapę."
873
879
 
874
- #: views.py:1099
880
+ #: views.py:1107
875
881
  #, python-format
876
882
  msgid ""
877
883
  "Your map has been cloned! If you want to edit this map from another "
878
884
  "computer, please use this link: %(anonymous_url)s"
879
885
  msgstr "Twoja mapa została skopiowana! Jeśli chcesz edytować ją z innego komputera, użyj odnośnika: %(anonymous_url)s"
880
886
 
881
- #: views.py:1104
887
+ #: views.py:1112
882
888
  msgid "Congratulations, your map has been cloned!"
883
889
  msgstr "Gratulacje, twoja mapa została skopiowana!"
884
890
 
885
- #: views.py:1358
891
+ #: views.py:1366
886
892
  msgid "Layer successfully deleted."
887
893
  msgstr "Warstwa usunięta pomyślnie."
888
894
 
889
- #: views.py:1380
895
+ #: views.py:1388
890
896
  msgid "Permissions updated with success!"
891
897
  msgstr "Pomyślnie zaktualizowano uprawnienia!"
898
+
899
+ #: views.py:1405
900
+ msgid "Generic"
901
+ msgstr ""
Binary file
@@ -10,7 +10,7 @@ msgid ""
10
10
  msgstr ""
11
11
  "Project-Id-Version: uMap\n"
12
12
  "Report-Msgid-Bugs-To: \n"
13
- "POT-Creation-Date: 2025-06-10 09:19+0000\n"
13
+ "POT-Creation-Date: 2025-10-14 15:28+0000\n"
14
14
  "PO-Revision-Date: 2013-11-22 14:00+0000\n"
15
15
  "Last-Translator: lecalam, 2024-2025\n"
16
16
  "Language-Team: Portuguese (http://app.transifex.com/openstreetmap/umap/language/pt/)\n"
@@ -327,7 +327,7 @@ msgstr "Ver mapas com estrela de %(current_user)s's"
327
327
  msgid "%(current_user)s has no starred maps yet."
328
328
  msgstr "%(current_user)s não tem mapas com estrela."
329
329
 
330
- #: templates/base.html:13
330
+ #: templates/base.html:16
331
331
  msgid ""
332
332
  "uMap lets you create maps with OpenStreetMap layers in a minute and embed "
333
333
  "them in your site."
@@ -411,48 +411,54 @@ msgid "Play with the demo"
411
411
  msgstr "Testar a demo"
412
412
 
413
413
  #: templates/umap/components/alerts/alert.html:17
414
- #: templates/umap/components/alerts/alert.html:66
415
- #: templates/umap/components/alerts/alert.html:94
414
+ #: templates/umap/components/alerts/alert.html:69
415
+ #: templates/umap/components/alerts/alert.html:97
416
416
  msgid "Close"
417
417
  msgstr "Fechar"
418
418
 
419
419
  #: templates/umap/components/alerts/alert.html:32
420
420
  #, python-format
421
421
  msgid ""
422
- "Pro-tip: to easily find back your maps, <a href=\"%(login_url)s\" "
423
- "target=\"_blank\">create an account</a> or <a href=\"%(login_url)s\" "
424
- "target=\"_blank\">log in</a>."
425
- msgstr "Sugestão: para voltar a encontrar facilmente os seus mapas, <a href=\"%(login_url)s\" target=\"_blank\">crie uma conta</a> ou <a href=\"%(login_url)s\" target=\"_blank\">inicie a sessão</a>."
422
+ "Oops, I didn't mean it, I want to <a href=\"%(login_url)s\" "
423
+ "class=\"login\">create an account</a> or <a href=\"%(login_url)s\" "
424
+ "class=\"login\">log in</a> (no worry, we'll attach the map to your account)."
425
+ msgstr ""
426
426
 
427
- #: templates/umap/components/alerts/alert.html:37
427
+ #: templates/umap/components/alerts/alert.html:35
428
+ msgid ""
429
+ "Yes, I want to continue editing anonymously, I will save the secret edit "
430
+ "link to be able to edit this map later or on another device"
431
+ msgstr ""
432
+
433
+ #: templates/umap/components/alerts/alert.html:39
428
434
  msgid "Here is your secret link to edit the map, please keep it safe:"
429
435
  msgstr "Aqui está a sua hiperligação secreta para editar o mapa, por favor mantenha-a segura:"
430
436
 
431
- #: templates/umap/components/alerts/alert.html:41
437
+ #: templates/umap/components/alerts/alert.html:43
432
438
  msgid "Copy link"
433
439
  msgstr "Copiar hiperligação"
434
440
 
435
- #: templates/umap/components/alerts/alert.html:48
441
+ #: templates/umap/components/alerts/alert.html:50
436
442
  msgid "Enter your email address to receive the secret link:"
437
443
  msgstr "Introduza o seu endereço de e-mail para receber a hiperligação secreta:"
438
444
 
439
- #: templates/umap/components/alerts/alert.html:54
445
+ #: templates/umap/components/alerts/alert.html:56
440
446
  msgid "Email"
441
447
  msgstr "E-mail"
442
448
 
443
- #: templates/umap/components/alerts/alert.html:57
449
+ #: templates/umap/components/alerts/alert.html:59
444
450
  msgid "Send me the link"
445
451
  msgstr "Envie-me a hiperligação"
446
452
 
447
- #: templates/umap/components/alerts/alert.html:81
453
+ #: templates/umap/components/alerts/alert.html:84
448
454
  msgid "See their edits in another tab"
449
455
  msgstr "Ver as edições deles noutro separador"
450
456
 
451
- #: templates/umap/components/alerts/alert.html:84
457
+ #: templates/umap/components/alerts/alert.html:87
452
458
  msgid "Keep your changes and loose theirs"
453
459
  msgstr "Manter as minhas mudanças e perder as deles"
454
460
 
455
- #: templates/umap/components/alerts/alert.html:87
461
+ #: templates/umap/components/alerts/alert.html:90
456
462
  msgid "Keep their changes and loose yours"
457
463
  msgstr "Manter as mudanças deles e perder as minhas"
458
464
 
@@ -533,7 +539,7 @@ msgstr "Sucesso na identificação. Continuando..."
533
539
  msgid "template"
534
540
  msgstr ""
535
541
 
536
- #: templates/umap/map_list.html:18 views.py:458
542
+ #: templates/umap/map_list.html:18 views.py:459
537
543
  msgid "by"
538
544
  msgstr "por"
539
545
 
@@ -721,7 +727,7 @@ msgstr "Últimos mapas criados"
721
727
  msgid "Search maps"
722
728
  msgstr "Procurar mapas"
723
729
 
724
- #: templates/umap/search_bar.html:14
730
+ #: templates/umap/search_bar.html:14 templates/umap/user_map_table.html:15
725
731
  msgid "Any category"
726
732
  msgstr ""
727
733
 
@@ -814,70 +820,74 @@ msgstr ""
814
820
  msgid "No template found."
815
821
  msgstr ""
816
822
 
817
- #: views.py:233
823
+ #: views.py:235
818
824
  msgid "Cannot delete a team with more than one member"
819
825
  msgstr "Não é possível eliminar uma equipa com mais de um membro"
820
826
 
821
- #: views.py:237
827
+ #: views.py:239
822
828
  #, python-format
823
829
  msgid "Team “%(name)s” has been deleted"
824
830
  msgstr "A equipa “%(name)s” foi eliminada"
825
831
 
826
- #: views.py:463
832
+ #: views.py:464
827
833
  msgid "View the map"
828
834
  msgstr "Ver o mapa"
829
835
 
830
- #: views.py:864
836
+ #: views.py:872
831
837
  msgid "See full screen"
832
838
  msgstr "Ver em ecrã inteiro"
833
839
 
834
- #: views.py:1007
840
+ #: views.py:1015
835
841
  msgid "Map editors updated with success!"
836
842
  msgstr "Os editores do mapa foram atualizados com sucesso!"
837
843
 
838
- #: views.py:1043
844
+ #: views.py:1051
839
845
  #, python-format
840
846
  msgid "The uMap edit link for your map: %(map_name)s"
841
847
  msgstr "A hiperligação de edição do uMap para o seu mapa: %(map_name)s"
842
848
 
843
- #: views.py:1046
849
+ #: views.py:1054
844
850
  #, python-format
845
851
  msgid "Here is your secret edit link: %(link)s"
846
852
  msgstr "Aqui está a hiperligação de edição secreta: %(link)s"
847
853
 
848
- #: views.py:1053
854
+ #: views.py:1061
849
855
  #, python-format
850
856
  msgid "Can't send email to %(email)s"
851
857
  msgstr "Não é possível enviar o email para %(email)s"
852
858
 
853
- #: views.py:1056
859
+ #: views.py:1064
854
860
  #, python-format
855
861
  msgid "Email sent to %(email)s"
856
862
  msgstr "Email enviado para %(email)s"
857
863
 
858
- #: views.py:1067
864
+ #: views.py:1075
859
865
  msgid "Only its owner can delete the map."
860
866
  msgstr "Só o proprietário pode eliminar o mapa."
861
867
 
862
- #: views.py:1073
868
+ #: views.py:1081
863
869
  msgid "Map successfully deleted."
864
870
  msgstr "Mapa eliminado com sucesso."
865
871
 
866
- #: views.py:1099
872
+ #: views.py:1107
867
873
  #, python-format
868
874
  msgid ""
869
875
  "Your map has been cloned! If you want to edit this map from another "
870
876
  "computer, please use this link: %(anonymous_url)s"
871
877
  msgstr "O seu mapa foi clonado! Se quiser editar este mapa noutro computador, por favor utilize esta hiperligação: %(anonymous_url)s"
872
878
 
873
- #: views.py:1104
879
+ #: views.py:1112
874
880
  msgid "Congratulations, your map has been cloned!"
875
881
  msgstr "Parabéns, o seu mapa foi clonado!"
876
882
 
877
- #: views.py:1358
883
+ #: views.py:1366
878
884
  msgid "Layer successfully deleted."
879
885
  msgstr "Camada eliminada com sucesso."
880
886
 
881
- #: views.py:1380
887
+ #: views.py:1388
882
888
  msgid "Permissions updated with success!"
883
889
  msgstr "Permissões atualizadas com sucesso!"
890
+
891
+ #: views.py:1405
892
+ msgid "Generic"
893
+ msgstr ""
Binary file