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.
- umap/__init__.py +1 -1
- umap/context_processors.py +4 -1
- umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- umap/locale/cs_CZ/LC_MESSAGES/django.po +43 -33
- umap/locale/da/LC_MESSAGES/django.mo +0 -0
- umap/locale/da/LC_MESSAGES/django.po +43 -33
- umap/locale/de/LC_MESSAGES/django.mo +0 -0
- umap/locale/de/LC_MESSAGES/django.po +64 -53
- umap/locale/el/LC_MESSAGES/django.mo +0 -0
- umap/locale/el/LC_MESSAGES/django.po +35 -29
- umap/locale/en/LC_MESSAGES/django.po +47 -41
- umap/locale/es/LC_MESSAGES/django.mo +0 -0
- umap/locale/es/LC_MESSAGES/django.po +43 -33
- umap/locale/et/LC_MESSAGES/django.mo +0 -0
- umap/locale/et/LC_MESSAGES/django.po +58 -54
- umap/locale/eu/LC_MESSAGES/django.mo +0 -0
- umap/locale/eu/LC_MESSAGES/django.po +43 -33
- umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
- umap/locale/fa_IR/LC_MESSAGES/django.po +43 -33
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +36 -30
- umap/locale/gl/LC_MESSAGES/django.mo +0 -0
- umap/locale/gl/LC_MESSAGES/django.po +43 -33
- umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- umap/locale/hu/LC_MESSAGES/django.po +35 -29
- umap/locale/is/LC_MESSAGES/django.mo +0 -0
- umap/locale/is/LC_MESSAGES/django.po +43 -33
- umap/locale/it/LC_MESSAGES/django.mo +0 -0
- umap/locale/it/LC_MESSAGES/django.po +43 -33
- umap/locale/nl/LC_MESSAGES/django.mo +0 -0
- umap/locale/nl/LC_MESSAGES/django.po +35 -29
- umap/locale/pl/LC_MESSAGES/django.mo +0 -0
- umap/locale/pl/LC_MESSAGES/django.po +114 -103
- umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- umap/locale/pt/LC_MESSAGES/django.po +43 -33
- umap/locale/th_TH/LC_MESSAGES/django.mo +0 -0
- umap/locale/th_TH/LC_MESSAGES/django.po +310 -109
- umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
- umap/locale/zh_TW/LC_MESSAGES/django.po +80 -70
- umap/management/commands/switch_user.py +2 -2
- umap/migrations/0018_datalayer_uuid.py +1 -1
- umap/models.py +7 -3
- umap/settings/local.py.sample +1 -1
- umap/static/umap/base.css +89 -32
- umap/static/umap/content.css +129 -33
- umap/static/umap/css/bar.css +82 -20
- umap/static/umap/css/browser.css +163 -0
- umap/static/umap/css/contextmenu.css +15 -0
- umap/static/umap/css/dialog.css +36 -16
- umap/static/umap/css/form.css +123 -33
- umap/static/umap/css/icon.css +46 -3
- umap/static/umap/css/panel.css +7 -3
- umap/static/umap/css/popup.css +34 -8
- umap/static/umap/css/tooltip.css +8 -4
- umap/static/umap/img/16-white.svg +26 -8
- umap/static/umap/img/16.svg +1 -1
- umap/static/umap/img/source/16-white.svg +36 -18
- umap/static/umap/img/source/16.svg +1 -1
- umap/static/umap/js/components/alerts/alert.css +69 -31
- umap/static/umap/js/components/alerts/alert.js +20 -2
- umap/static/umap/js/components/base.js +1 -1
- umap/static/umap/js/modules/browser.js +69 -61
- umap/static/umap/js/modules/caption.js +10 -7
- umap/static/umap/js/modules/data/features.js +89 -63
- umap/static/umap/js/modules/data/fields.js +446 -0
- umap/static/umap/js/modules/data/layer.js +116 -196
- umap/static/umap/js/modules/domutils.js +109 -0
- umap/static/umap/js/modules/filters.js +780 -0
- umap/static/umap/js/modules/form/builder.js +8 -5
- umap/static/umap/js/modules/form/fields.js +111 -221
- umap/static/umap/js/modules/formatter.js +24 -1
- umap/static/umap/js/modules/help.js +4 -3
- umap/static/umap/js/modules/i18n.js +1 -1
- umap/static/umap/js/modules/importer.js +1 -1
- umap/static/umap/js/modules/importers/opendata.js +15 -0
- umap/static/umap/js/modules/importers/openrouteservice.js +6 -1
- umap/static/umap/js/modules/managers.js +2 -1
- umap/static/umap/js/modules/permissions.js +39 -31
- umap/static/umap/js/modules/rendering/controls.js +11 -9
- umap/static/umap/js/modules/rendering/icon.js +3 -8
- umap/static/umap/js/modules/rendering/layers/base.js +3 -3
- umap/static/umap/js/modules/rendering/layers/classified.js +18 -11
- umap/static/umap/js/modules/rendering/layers/cluster.js +23 -11
- umap/static/umap/js/modules/rendering/layers/heat.js +27 -21
- umap/static/umap/js/modules/rendering/map.js +1 -0
- umap/static/umap/js/modules/rendering/template.js +50 -23
- umap/static/umap/js/modules/rendering/ui.js +33 -25
- umap/static/umap/js/modules/rules.js +38 -44
- umap/static/umap/js/modules/schema.js +3 -6
- umap/static/umap/js/modules/share.js +5 -4
- umap/static/umap/js/modules/tableeditor.js +50 -38
- umap/static/umap/js/modules/templates.js +2 -3
- umap/static/umap/js/modules/ui/bar.js +55 -23
- umap/static/umap/js/modules/ui/dialog.js +38 -27
- umap/static/umap/js/modules/ui/panel.js +23 -8
- umap/static/umap/js/modules/ui/tooltip.js +6 -5
- umap/static/umap/js/modules/umap.js +158 -51
- umap/static/umap/js/modules/utils.js +24 -2
- umap/static/umap/js/umap.core.js +1 -110
- umap/static/umap/locale/am_ET.js +52 -17
- umap/static/umap/locale/am_ET.json +52 -17
- umap/static/umap/locale/ar.js +52 -17
- umap/static/umap/locale/ar.json +52 -17
- umap/static/umap/locale/ast.js +52 -17
- umap/static/umap/locale/ast.json +52 -17
- umap/static/umap/locale/bg.js +52 -17
- umap/static/umap/locale/bg.json +52 -17
- umap/static/umap/locale/br.js +48 -22
- umap/static/umap/locale/br.json +48 -22
- umap/static/umap/locale/ca.js +52 -17
- umap/static/umap/locale/ca.json +52 -17
- umap/static/umap/locale/cs_CZ.js +52 -17
- umap/static/umap/locale/cs_CZ.json +52 -17
- umap/static/umap/locale/da.js +54 -17
- umap/static/umap/locale/da.json +54 -17
- umap/static/umap/locale/de.js +102 -67
- umap/static/umap/locale/de.json +102 -67
- umap/static/umap/locale/el.js +52 -17
- umap/static/umap/locale/el.json +52 -17
- umap/static/umap/locale/en.js +54 -16
- umap/static/umap/locale/en.json +54 -16
- umap/static/umap/locale/en_US.json +52 -17
- umap/static/umap/locale/es.js +54 -17
- umap/static/umap/locale/es.json +54 -17
- umap/static/umap/locale/et.js +91 -56
- umap/static/umap/locale/et.json +91 -56
- umap/static/umap/locale/eu.js +84 -49
- umap/static/umap/locale/eu.json +84 -49
- umap/static/umap/locale/fa_IR.js +52 -17
- umap/static/umap/locale/fa_IR.json +52 -17
- umap/static/umap/locale/fi.js +52 -17
- umap/static/umap/locale/fi.json +52 -17
- umap/static/umap/locale/fr.js +54 -17
- umap/static/umap/locale/fr.json +54 -17
- umap/static/umap/locale/gl.js +52 -17
- umap/static/umap/locale/gl.json +52 -17
- umap/static/umap/locale/he.js +52 -17
- umap/static/umap/locale/he.json +52 -17
- umap/static/umap/locale/hr.js +52 -17
- umap/static/umap/locale/hr.json +52 -17
- umap/static/umap/locale/hu.js +59 -24
- umap/static/umap/locale/hu.json +59 -24
- umap/static/umap/locale/id.js +52 -17
- umap/static/umap/locale/id.json +52 -17
- umap/static/umap/locale/is.js +52 -17
- umap/static/umap/locale/is.json +52 -17
- umap/static/umap/locale/it.js +52 -17
- umap/static/umap/locale/it.json +52 -17
- umap/static/umap/locale/ja.js +52 -17
- umap/static/umap/locale/ja.json +52 -17
- umap/static/umap/locale/ko.js +52 -17
- umap/static/umap/locale/ko.json +52 -17
- umap/static/umap/locale/lt.js +52 -17
- umap/static/umap/locale/lt.json +52 -17
- umap/static/umap/locale/ms.js +52 -17
- umap/static/umap/locale/ms.json +52 -17
- umap/static/umap/locale/nl.js +52 -17
- umap/static/umap/locale/nl.json +52 -17
- umap/static/umap/locale/no.js +52 -17
- umap/static/umap/locale/no.json +52 -17
- umap/static/umap/locale/pl.js +53 -17
- umap/static/umap/locale/pl.json +53 -17
- umap/static/umap/locale/pl_PL.json +52 -17
- umap/static/umap/locale/pt.js +52 -17
- umap/static/umap/locale/pt.json +52 -17
- umap/static/umap/locale/pt_BR.js +52 -17
- umap/static/umap/locale/pt_BR.json +52 -17
- umap/static/umap/locale/pt_PT.js +52 -17
- umap/static/umap/locale/pt_PT.json +52 -17
- umap/static/umap/locale/ro.js +52 -17
- umap/static/umap/locale/ro.json +52 -17
- umap/static/umap/locale/ru.js +52 -17
- umap/static/umap/locale/ru.json +52 -17
- umap/static/umap/locale/si.js +1 -1
- umap/static/umap/locale/si.json +1 -1
- umap/static/umap/locale/sk_SK.js +52 -17
- umap/static/umap/locale/sk_SK.json +52 -17
- umap/static/umap/locale/sl.js +52 -17
- umap/static/umap/locale/sl.json +52 -17
- umap/static/umap/locale/sr.js +52 -17
- umap/static/umap/locale/sr.json +52 -17
- umap/static/umap/locale/sv.js +52 -17
- umap/static/umap/locale/sv.json +52 -17
- umap/static/umap/locale/th_TH.js +52 -17
- umap/static/umap/locale/th_TH.json +52 -17
- umap/static/umap/locale/tr.js +52 -17
- umap/static/umap/locale/tr.json +52 -17
- umap/static/umap/locale/uk_UA.js +52 -17
- umap/static/umap/locale/uk_UA.json +52 -17
- umap/static/umap/locale/vi.js +52 -17
- umap/static/umap/locale/vi.json +52 -17
- umap/static/umap/locale/vi_VN.json +52 -17
- umap/static/umap/locale/zh.js +52 -17
- umap/static/umap/locale/zh.json +52 -17
- umap/static/umap/locale/zh_CN.json +52 -17
- umap/static/umap/locale/zh_TW.Big5.json +52 -17
- umap/static/umap/locale/zh_TW.js +53 -17
- umap/static/umap/locale/zh_TW.json +53 -17
- umap/static/umap/map.css +63 -226
- umap/static/umap/unittests/utils.js +18 -0
- umap/static/umap/vars.css +23 -5
- umap/templates/umap/components/alerts/alert.html +32 -29
- umap/templates/umap/css.html +2 -1
- umap/templates/umap/login_popup_end.html +18 -9
- umap/templates/umap/user_map_table.html +7 -2
- umap/tests/integration/conftest.py +10 -6
- umap/tests/integration/test_anonymous_owned_map.py +90 -37
- umap/tests/integration/test_basics.py +25 -1
- umap/tests/integration/test_browser.py +37 -0
- umap/tests/integration/test_cluster.py +110 -0
- umap/tests/integration/test_conditional_rules.py +107 -52
- umap/tests/integration/test_datalayer.py +9 -16
- umap/tests/integration/test_draw_polygon.py +6 -0
- umap/tests/integration/test_draw_polyline.py +11 -0
- umap/tests/integration/test_edit_marker.py +12 -1
- umap/tests/integration/test_export_map.py +19 -0
- umap/tests/integration/test_fields.py +541 -0
- umap/tests/integration/test_filters.py +616 -0
- umap/tests/integration/test_iframe.py +1 -1
- umap/tests/integration/test_import.py +38 -42
- umap/tests/integration/test_map_preview.py +1 -1
- umap/tests/integration/test_picto.py +1 -1
- umap/tests/integration/test_popup.py +31 -0
- umap/tests/integration/test_remote_data.py +60 -4
- umap/tests/integration/test_save.py +1 -1
- umap/tests/integration/test_share.py +4 -4
- umap/tests/integration/test_tableeditor.py +31 -7
- umap/tests/integration/test_websocket_sync.py +71 -20
- umap/tests/test_dashboard.py +11 -1
- umap/tests/test_statics.py +2 -2
- umap/tests/test_utils.py +19 -2
- umap/tests/test_views.py +1 -1
- umap/urls.py +1 -0
- umap/utils.py +8 -1
- umap/views.py +5 -0
- {umap_project-3.3.2.dist-info → umap_project-3.4.0.dist-info}/METADATA +15 -15
- {umap_project-3.3.2.dist-info → umap_project-3.4.0.dist-info}/RECORD +240 -236
- umap/static/umap/js/modules/facets.js +0 -164
- umap/tests/integration/test_facets_browser.py +0 -279
- {umap_project-3.3.2.dist-info → umap_project-3.4.0.dist-info}/WHEEL +0 -0
- {umap_project-3.3.2.dist-info → umap_project-3.4.0.dist-info}/entry_points.txt +0 -0
- {umap_project-3.3.2.dist-info → umap_project-3.4.0.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-
|
|
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:
|
|
414
|
-
#: templates/umap/components/alerts/alert.html:
|
|
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
|
-
"
|
|
422
|
-
"
|
|
423
|
-
"
|
|
424
|
-
msgstr "
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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-
|
|
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:
|
|
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:
|
|
413
|
-
#: templates/umap/components/alerts/alert.html:
|
|
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
|
-
"
|
|
421
|
-
"
|
|
422
|
-
"
|
|
423
|
-
msgstr "
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
829
|
+
#: views.py:464
|
|
824
830
|
msgid "View the map"
|
|
825
831
|
msgstr "Skoða kortið"
|
|
826
832
|
|
|
827
|
-
#: views.py:
|
|
833
|
+
#: views.py:872
|
|
828
834
|
msgid "See full screen"
|
|
829
835
|
msgstr "Fylla skjáinn"
|
|
830
836
|
|
|
831
|
-
#: views.py:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
865
|
+
#: views.py:1081
|
|
860
866
|
msgid "Map successfully deleted."
|
|
861
867
|
msgstr "Tókst að eyða korti."
|
|
862
868
|
|
|
863
|
-
#: views.py:
|
|
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:
|
|
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:
|
|
880
|
+
#: views.py:1366
|
|
875
881
|
msgid "Layer successfully deleted."
|
|
876
882
|
msgstr "Tókst að eyða lagi."
|
|
877
883
|
|
|
878
|
-
#: views.py:
|
|
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-
|
|
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:
|
|
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:
|
|
426
|
-
#: templates/umap/components/alerts/alert.html:
|
|
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
|
-
"
|
|
434
|
-
"
|
|
435
|
-
"
|
|
436
|
-
msgstr "
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
843
|
+
#: views.py:464
|
|
838
844
|
msgid "View the map"
|
|
839
845
|
msgstr "Visualizza la mappa"
|
|
840
846
|
|
|
841
|
-
#: views.py:
|
|
847
|
+
#: views.py:872
|
|
842
848
|
msgid "See full screen"
|
|
843
849
|
msgstr "Vedi a schermo interno"
|
|
844
850
|
|
|
845
|
-
#: views.py:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
879
|
+
#: views.py:1081
|
|
874
880
|
msgid "Map successfully deleted."
|
|
875
881
|
msgstr "La mappa è stata eliminata definitivamente."
|
|
876
882
|
|
|
877
|
-
#: views.py:
|
|
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:
|
|
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:
|
|
894
|
+
#: views.py:1366
|
|
889
895
|
msgid "Layer successfully deleted."
|
|
890
896
|
msgstr "Layer eliminato correttamente"
|
|
891
897
|
|
|
892
|
-
#: views.py:
|
|
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
|