umap-project 3.3.6__py3-none-any.whl → 3.4.0b1__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 +35 -29
- 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 +34 -28
- 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 +43 -33
- 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/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 +122 -32
- 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/modules/browser.js +63 -55
- umap/static/umap/js/modules/caption.js +10 -7
- umap/static/umap/js/modules/data/features.js +82 -59
- umap/static/umap/js/modules/data/layer.js +56 -157
- umap/static/umap/js/modules/domutils.js +109 -0
- umap/static/umap/js/modules/filters.js +807 -0
- umap/static/umap/js/modules/form/builder.js +8 -5
- umap/static/umap/js/modules/form/fields.js +110 -220
- umap/static/umap/js/modules/formatter.js +24 -1
- umap/static/umap/js/modules/help.js +3 -2
- umap/static/umap/js/modules/importers/opendata.js +5 -0
- umap/static/umap/js/modules/importers/openrouteservice.js +6 -1
- umap/static/umap/js/modules/managers.js +265 -1
- umap/static/umap/js/modules/permissions.js +39 -31
- umap/static/umap/js/modules/rendering/controls.js +7 -7
- umap/static/umap/js/modules/rendering/icon.js +3 -8
- umap/static/umap/js/modules/rendering/layers/classified.js +17 -10
- umap/static/umap/js/modules/rendering/layers/cluster.js +5 -3
- umap/static/umap/js/modules/rendering/template.js +44 -8
- umap/static/umap/js/modules/rendering/ui.js +29 -23
- umap/static/umap/js/modules/rules.js +4 -3
- umap/static/umap/js/modules/schema.js +3 -6
- umap/static/umap/js/modules/share.js +4 -3
- 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 +42 -18
- umap/static/umap/js/modules/ui/dialog.js +33 -31
- umap/static/umap/js/modules/ui/panel.js +21 -7
- umap/static/umap/js/modules/ui/tooltip.js +6 -5
- umap/static/umap/js/modules/umap.js +149 -51
- umap/static/umap/js/modules/utils.js +23 -1
- umap/static/umap/js/umap.core.js +1 -110
- umap/static/umap/locale/am_ET.js +40 -14
- umap/static/umap/locale/am_ET.json +40 -14
- umap/static/umap/locale/ar.js +40 -14
- umap/static/umap/locale/ar.json +40 -14
- umap/static/umap/locale/ast.js +40 -14
- umap/static/umap/locale/ast.json +40 -14
- umap/static/umap/locale/bg.js +40 -14
- umap/static/umap/locale/bg.json +40 -14
- umap/static/umap/locale/br.js +47 -21
- umap/static/umap/locale/br.json +47 -21
- umap/static/umap/locale/ca.js +40 -14
- umap/static/umap/locale/ca.json +40 -14
- umap/static/umap/locale/cs_CZ.js +40 -14
- umap/static/umap/locale/cs_CZ.json +40 -14
- umap/static/umap/locale/da.js +40 -14
- umap/static/umap/locale/da.json +40 -14
- umap/static/umap/locale/de.js +39 -13
- umap/static/umap/locale/de.json +39 -13
- umap/static/umap/locale/el.js +40 -14
- umap/static/umap/locale/el.json +40 -14
- umap/static/umap/locale/en.js +39 -13
- umap/static/umap/locale/en.json +39 -13
- umap/static/umap/locale/en_US.json +40 -14
- umap/static/umap/locale/es.js +40 -14
- umap/static/umap/locale/es.json +40 -14
- umap/static/umap/locale/et.js +79 -53
- umap/static/umap/locale/et.json +79 -53
- umap/static/umap/locale/eu.js +72 -46
- umap/static/umap/locale/eu.json +72 -46
- umap/static/umap/locale/fa_IR.js +40 -14
- umap/static/umap/locale/fa_IR.json +40 -14
- umap/static/umap/locale/fi.js +40 -14
- umap/static/umap/locale/fi.json +40 -14
- umap/static/umap/locale/fr.js +39 -13
- umap/static/umap/locale/fr.json +39 -13
- umap/static/umap/locale/gl.js +40 -14
- umap/static/umap/locale/gl.json +40 -14
- umap/static/umap/locale/he.js +40 -14
- umap/static/umap/locale/he.json +40 -14
- umap/static/umap/locale/hr.js +40 -14
- umap/static/umap/locale/hr.json +40 -14
- umap/static/umap/locale/hu.js +40 -14
- umap/static/umap/locale/hu.json +40 -14
- umap/static/umap/locale/id.js +40 -14
- umap/static/umap/locale/id.json +40 -14
- umap/static/umap/locale/is.js +40 -14
- umap/static/umap/locale/is.json +40 -14
- umap/static/umap/locale/it.js +40 -14
- umap/static/umap/locale/it.json +40 -14
- umap/static/umap/locale/ja.js +40 -14
- umap/static/umap/locale/ja.json +40 -14
- umap/static/umap/locale/ko.js +40 -14
- umap/static/umap/locale/ko.json +40 -14
- umap/static/umap/locale/lt.js +40 -14
- umap/static/umap/locale/lt.json +40 -14
- umap/static/umap/locale/ms.js +40 -14
- umap/static/umap/locale/ms.json +40 -14
- umap/static/umap/locale/nl.js +40 -14
- umap/static/umap/locale/nl.json +40 -14
- umap/static/umap/locale/no.js +40 -14
- umap/static/umap/locale/no.json +40 -14
- umap/static/umap/locale/pl.js +40 -14
- umap/static/umap/locale/pl.json +40 -14
- umap/static/umap/locale/pl_PL.json +40 -14
- umap/static/umap/locale/pt.js +40 -14
- umap/static/umap/locale/pt.json +40 -14
- umap/static/umap/locale/pt_BR.js +40 -14
- umap/static/umap/locale/pt_BR.json +40 -14
- umap/static/umap/locale/pt_PT.js +40 -14
- umap/static/umap/locale/pt_PT.json +40 -14
- umap/static/umap/locale/ro.js +40 -14
- umap/static/umap/locale/ro.json +40 -14
- umap/static/umap/locale/ru.js +40 -14
- umap/static/umap/locale/ru.json +40 -14
- umap/static/umap/locale/sk_SK.js +40 -14
- umap/static/umap/locale/sk_SK.json +40 -14
- umap/static/umap/locale/sl.js +40 -14
- umap/static/umap/locale/sl.json +40 -14
- umap/static/umap/locale/sr.js +40 -14
- umap/static/umap/locale/sr.json +40 -14
- umap/static/umap/locale/sv.js +40 -14
- umap/static/umap/locale/sv.json +40 -14
- umap/static/umap/locale/th_TH.js +40 -14
- umap/static/umap/locale/th_TH.json +40 -14
- umap/static/umap/locale/tr.js +40 -14
- umap/static/umap/locale/tr.json +40 -14
- umap/static/umap/locale/uk_UA.js +40 -14
- umap/static/umap/locale/uk_UA.json +40 -14
- umap/static/umap/locale/vi.js +40 -14
- umap/static/umap/locale/vi.json +40 -14
- umap/static/umap/locale/vi_VN.json +40 -14
- umap/static/umap/locale/zh.js +40 -14
- umap/static/umap/locale/zh.json +40 -14
- umap/static/umap/locale/zh_CN.json +40 -14
- umap/static/umap/locale/zh_TW.Big5.json +40 -14
- umap/static/umap/locale/zh_TW.js +39 -13
- umap/static/umap/locale/zh_TW.json +39 -13
- umap/static/umap/map.css +60 -223
- 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 +2 -6
- umap/tests/integration/test_anonymous_owned_map.py +89 -36
- umap/tests/integration/test_basics.py +25 -1
- umap/tests/integration/test_browser.py +37 -0
- umap/tests/integration/test_draw_polygon.py +2 -0
- umap/tests/integration/test_edit_marker.py +1 -1
- umap/tests/integration/test_export_map.py +19 -0
- umap/tests/integration/test_fields.py +522 -0
- umap/tests/integration/test_filters.py +617 -0
- umap/tests/integration/test_import.py +15 -42
- umap/tests/integration/test_remote_data.py +60 -4
- umap/tests/integration/test_share.py +4 -4
- umap/tests/integration/test_tableeditor.py +31 -7
- umap/tests/integration/test_websocket_sync.py +3 -1
- umap/tests/test_dashboard.py +10 -0
- umap/tests/test_utils.py +15 -1
- umap/urls.py +1 -0
- umap/utils.py +6 -0
- umap/views.py +5 -0
- {umap_project-3.3.6.dist-info → umap_project-3.4.0b1.dist-info}/METADATA +12 -12
- {umap_project-3.3.6.dist-info → umap_project-3.4.0b1.dist-info}/RECORD +217 -214
- umap/static/umap/js/modules/facets.js +0 -164
- umap/tests/integration/test_facets_browser.py +0 -279
- {umap_project-3.3.6.dist-info → umap_project-3.4.0b1.dist-info}/WHEEL +0 -0
- {umap_project-3.3.6.dist-info → umap_project-3.4.0b1.dist-info}/entry_points.txt +0 -0
- {umap_project-3.3.6.dist-info → umap_project-3.4.0b1.dist-info}/licenses/LICENSE +0 -0
umap/__init__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
VERSION = "3.
|
|
1
|
+
VERSION = "3.4.0b1"
|
umap/context_processors.py
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
from django.conf import settings as djsettings
|
|
2
2
|
|
|
3
3
|
from . import VERSION
|
|
4
|
+
from .utils import normalize_string
|
|
4
5
|
|
|
5
6
|
|
|
6
7
|
def settings(request):
|
|
@@ -14,7 +15,9 @@ def settings(request):
|
|
|
14
15
|
"UMAP_DEMO_SITE": djsettings.UMAP_DEMO_SITE,
|
|
15
16
|
"UMAP_HOST_INFOS": djsettings.UMAP_HOST_INFOS,
|
|
16
17
|
"UMAP_ALLOW_EDIT_PROFILE": djsettings.UMAP_ALLOW_EDIT_PROFILE,
|
|
17
|
-
"UMAP_TAGS":
|
|
18
|
+
"UMAP_TAGS": sorted(
|
|
19
|
+
djsettings.UMAP_TAGS, key=lambda item: normalize_string(str(item[1]))
|
|
20
|
+
),
|
|
18
21
|
}
|
|
19
22
|
|
|
20
23
|
|
|
Binary file
|
|
@@ -16,7 +16,7 @@ msgid ""
|
|
|
16
16
|
msgstr ""
|
|
17
17
|
"Project-Id-Version: uMap\n"
|
|
18
18
|
"Report-Msgid-Bugs-To: \n"
|
|
19
|
-
"POT-Creation-Date: 2025-
|
|
19
|
+
"POT-Creation-Date: 2025-10-14 15:28+0000\n"
|
|
20
20
|
"PO-Revision-Date: 2013-11-22 14:00+0000\n"
|
|
21
21
|
"Last-Translator: Jiří Podhorecký <jirka.p@volny.cz>, 2018-2019,2023-2025\n"
|
|
22
22
|
"Language-Team: Czech (Czech Republic) (http://app.transifex.com/openstreetmap/umap/language/cs_CZ/)\n"
|
|
@@ -333,7 +333,7 @@ msgstr "Prohlížet mapy označené hvězdičkou uživatele %(current_user)s"
|
|
|
333
333
|
msgid "%(current_user)s has no starred maps yet."
|
|
334
334
|
msgstr "%(current_user)s nemá zatím žádné mapy označené hvězdičkou."
|
|
335
335
|
|
|
336
|
-
#: templates/base.html:
|
|
336
|
+
#: templates/base.html:16
|
|
337
337
|
msgid ""
|
|
338
338
|
"uMap lets you create maps with OpenStreetMap layers in a minute and embed "
|
|
339
339
|
"them in your site."
|
|
@@ -417,48 +417,54 @@ msgid "Play with the demo"
|
|
|
417
417
|
msgstr "Vyzkoušejte si to hned"
|
|
418
418
|
|
|
419
419
|
#: templates/umap/components/alerts/alert.html:17
|
|
420
|
-
#: templates/umap/components/alerts/alert.html:
|
|
421
|
-
#: templates/umap/components/alerts/alert.html:
|
|
420
|
+
#: templates/umap/components/alerts/alert.html:69
|
|
421
|
+
#: templates/umap/components/alerts/alert.html:97
|
|
422
422
|
msgid "Close"
|
|
423
423
|
msgstr "Zavřít"
|
|
424
424
|
|
|
425
425
|
#: templates/umap/components/alerts/alert.html:32
|
|
426
426
|
#, python-format
|
|
427
427
|
msgid ""
|
|
428
|
-
"
|
|
429
|
-
"
|
|
430
|
-
"
|
|
431
|
-
msgstr "
|
|
428
|
+
"Oops, I didn't mean it, I want to <a href=\"%(login_url)s\" "
|
|
429
|
+
"class=\"login\">create an account</a> or <a href=\"%(login_url)s\" "
|
|
430
|
+
"class=\"login\">log in</a> (no worry, we'll attach the map to your account)."
|
|
431
|
+
msgstr ""
|
|
432
432
|
|
|
433
|
-
#: templates/umap/components/alerts/alert.html:
|
|
433
|
+
#: templates/umap/components/alerts/alert.html:35
|
|
434
|
+
msgid ""
|
|
435
|
+
"Yes, I want to continue editing anonymously, I will save the secret edit "
|
|
436
|
+
"link to be able to edit this map later or on another device"
|
|
437
|
+
msgstr ""
|
|
438
|
+
|
|
439
|
+
#: templates/umap/components/alerts/alert.html:39
|
|
434
440
|
msgid "Here is your secret link to edit the map, please keep it safe:"
|
|
435
441
|
msgstr "Zde je váš tajný odkaz pro úpravu mapy, prosím, mějte ho v bezpečí:"
|
|
436
442
|
|
|
437
|
-
#: templates/umap/components/alerts/alert.html:
|
|
443
|
+
#: templates/umap/components/alerts/alert.html:43
|
|
438
444
|
msgid "Copy link"
|
|
439
445
|
msgstr "Zkopírovat odkaz"
|
|
440
446
|
|
|
441
|
-
#: templates/umap/components/alerts/alert.html:
|
|
447
|
+
#: templates/umap/components/alerts/alert.html:50
|
|
442
448
|
msgid "Enter your email address to receive the secret link:"
|
|
443
449
|
msgstr "Zadejte svou e-mailovou adresu, abyste obdrželi tajný odkaz:"
|
|
444
450
|
|
|
445
|
-
#: templates/umap/components/alerts/alert.html:
|
|
451
|
+
#: templates/umap/components/alerts/alert.html:56
|
|
446
452
|
msgid "Email"
|
|
447
453
|
msgstr "E-mail"
|
|
448
454
|
|
|
449
|
-
#: templates/umap/components/alerts/alert.html:
|
|
455
|
+
#: templates/umap/components/alerts/alert.html:59
|
|
450
456
|
msgid "Send me the link"
|
|
451
457
|
msgstr "Pošlete mi odkaz"
|
|
452
458
|
|
|
453
|
-
#: templates/umap/components/alerts/alert.html:
|
|
459
|
+
#: templates/umap/components/alerts/alert.html:84
|
|
454
460
|
msgid "See their edits in another tab"
|
|
455
461
|
msgstr "Zobrazit jejich úpravy na jiné kartě"
|
|
456
462
|
|
|
457
|
-
#: templates/umap/components/alerts/alert.html:
|
|
463
|
+
#: templates/umap/components/alerts/alert.html:87
|
|
458
464
|
msgid "Keep your changes and loose theirs"
|
|
459
465
|
msgstr "Ponechte si své změny a opusťte cizí"
|
|
460
466
|
|
|
461
|
-
#: templates/umap/components/alerts/alert.html:
|
|
467
|
+
#: templates/umap/components/alerts/alert.html:90
|
|
462
468
|
msgid "Keep their changes and loose yours"
|
|
463
469
|
msgstr "Ponechte si jejich změny a opusťte své"
|
|
464
470
|
|
|
@@ -539,7 +545,7 @@ msgstr "Jste přihlášeni. Jedeme dál ..."
|
|
|
539
545
|
msgid "template"
|
|
540
546
|
msgstr ""
|
|
541
547
|
|
|
542
|
-
#: templates/umap/map_list.html:18 views.py:
|
|
548
|
+
#: templates/umap/map_list.html:18 views.py:459
|
|
543
549
|
msgid "by"
|
|
544
550
|
msgstr ", autor:"
|
|
545
551
|
|
|
@@ -728,7 +734,7 @@ msgstr "Nedávno vytvořené mapy"
|
|
|
728
734
|
msgid "Search maps"
|
|
729
735
|
msgstr "Prohledávejte mapy"
|
|
730
736
|
|
|
731
|
-
#: templates/umap/search_bar.html:14
|
|
737
|
+
#: templates/umap/search_bar.html:14 templates/umap/user_map_table.html:15
|
|
732
738
|
msgid "Any category"
|
|
733
739
|
msgstr ""
|
|
734
740
|
|
|
@@ -821,70 +827,74 @@ msgstr ""
|
|
|
821
827
|
msgid "No template found."
|
|
822
828
|
msgstr ""
|
|
823
829
|
|
|
824
|
-
#: views.py:
|
|
830
|
+
#: views.py:235
|
|
825
831
|
msgid "Cannot delete a team with more than one member"
|
|
826
832
|
msgstr "Nelze smazat tým s více než jedním členem"
|
|
827
833
|
|
|
828
|
-
#: views.py:
|
|
834
|
+
#: views.py:239
|
|
829
835
|
#, python-format
|
|
830
836
|
msgid "Team “%(name)s” has been deleted"
|
|
831
837
|
msgstr "Tým \"%(name)s\" byl smazán"
|
|
832
838
|
|
|
833
|
-
#: views.py:
|
|
839
|
+
#: views.py:464
|
|
834
840
|
msgid "View the map"
|
|
835
841
|
msgstr "Prohlídnout si tuto mapu"
|
|
836
842
|
|
|
837
|
-
#: views.py:
|
|
843
|
+
#: views.py:872
|
|
838
844
|
msgid "See full screen"
|
|
839
845
|
msgstr "Zobrazit celou obrazovku"
|
|
840
846
|
|
|
841
|
-
#: views.py:
|
|
847
|
+
#: views.py:1015
|
|
842
848
|
msgid "Map editors updated with success!"
|
|
843
849
|
msgstr "Seznam přispěvovatelů byl úspěšně upraven!"
|
|
844
850
|
|
|
845
|
-
#: views.py:
|
|
851
|
+
#: views.py:1051
|
|
846
852
|
#, python-format
|
|
847
853
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
848
854
|
msgstr "Odkaz na úpravu uMap pro vaši mapu: %(map_name)s"
|
|
849
855
|
|
|
850
|
-
#: views.py:
|
|
856
|
+
#: views.py:1054
|
|
851
857
|
#, python-format
|
|
852
858
|
msgid "Here is your secret edit link: %(link)s"
|
|
853
859
|
msgstr "Zde je váš tajný odkaz na úpravu: %(link)s"
|
|
854
860
|
|
|
855
|
-
#: views.py:
|
|
861
|
+
#: views.py:1061
|
|
856
862
|
#, python-format
|
|
857
863
|
msgid "Can't send email to %(email)s"
|
|
858
864
|
msgstr "Nelze odeslat e-mail na %(email)s"
|
|
859
865
|
|
|
860
|
-
#: views.py:
|
|
866
|
+
#: views.py:1064
|
|
861
867
|
#, python-format
|
|
862
868
|
msgid "Email sent to %(email)s"
|
|
863
869
|
msgstr "E-mail odeslán na %(email)s"
|
|
864
870
|
|
|
865
|
-
#: views.py:
|
|
871
|
+
#: views.py:1075
|
|
866
872
|
msgid "Only its owner can delete the map."
|
|
867
873
|
msgstr "Jen vlastník může vymzat tuto mapu."
|
|
868
874
|
|
|
869
|
-
#: views.py:
|
|
875
|
+
#: views.py:1081
|
|
870
876
|
msgid "Map successfully deleted."
|
|
871
877
|
msgstr "Mapa byla úspěšně smazána."
|
|
872
878
|
|
|
873
|
-
#: views.py:
|
|
879
|
+
#: views.py:1107
|
|
874
880
|
#, python-format
|
|
875
881
|
msgid ""
|
|
876
882
|
"Your map has been cloned! If you want to edit this map from another "
|
|
877
883
|
"computer, please use this link: %(anonymous_url)s"
|
|
878
884
|
msgstr "Byla vytvořena kopie mapy! Pokud chcete upravovat tuto mapu z jiného počítače, použijte tento odkaz: %(anonymous_url)s"
|
|
879
885
|
|
|
880
|
-
#: views.py:
|
|
886
|
+
#: views.py:1112
|
|
881
887
|
msgid "Congratulations, your map has been cloned!"
|
|
882
888
|
msgstr "Gratulujeme, byla vytvořena kopie mapy!"
|
|
883
889
|
|
|
884
|
-
#: views.py:
|
|
890
|
+
#: views.py:1366
|
|
885
891
|
msgid "Layer successfully deleted."
|
|
886
892
|
msgstr "Vrstva úspěšně vymazána."
|
|
887
893
|
|
|
888
|
-
#: views.py:
|
|
894
|
+
#: views.py:1388
|
|
889
895
|
msgid "Permissions updated with success!"
|
|
890
896
|
msgstr "Oprávnění úspěšně aktualizována!"
|
|
897
|
+
|
|
898
|
+
#: views.py:1405
|
|
899
|
+
msgid "Generic"
|
|
900
|
+
msgstr ""
|
|
Binary file
|
|
@@ -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-
|
|
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: ERYpTION, 2025\n"
|
|
18
18
|
"Language-Team: Danish (http://app.transifex.com/openstreetmap/umap/language/da/)\n"
|
|
@@ -329,7 +329,7 @@ msgstr "Udforsk %(current_user)s's stjernemarkerede kort"
|
|
|
329
329
|
msgid "%(current_user)s has no starred maps yet."
|
|
330
330
|
msgstr "%(current_user)s har endnu ingen stjernemarkerede kort."
|
|
331
331
|
|
|
332
|
-
#: templates/base.html:
|
|
332
|
+
#: templates/base.html:16
|
|
333
333
|
msgid ""
|
|
334
334
|
"uMap lets you create maps with OpenStreetMap layers in a minute and embed "
|
|
335
335
|
"them in your site."
|
|
@@ -413,48 +413,54 @@ msgid "Play with the demo"
|
|
|
413
413
|
msgstr "Leg med demoen"
|
|
414
414
|
|
|
415
415
|
#: templates/umap/components/alerts/alert.html:17
|
|
416
|
-
#: templates/umap/components/alerts/alert.html:
|
|
417
|
-
#: templates/umap/components/alerts/alert.html:
|
|
416
|
+
#: templates/umap/components/alerts/alert.html:69
|
|
417
|
+
#: templates/umap/components/alerts/alert.html:97
|
|
418
418
|
msgid "Close"
|
|
419
419
|
msgstr "Luk"
|
|
420
420
|
|
|
421
421
|
#: templates/umap/components/alerts/alert.html:32
|
|
422
422
|
#, python-format
|
|
423
423
|
msgid ""
|
|
424
|
-
"
|
|
425
|
-
"
|
|
426
|
-
"
|
|
427
|
-
msgstr "
|
|
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:
|
|
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 "Her er dit hemmelige link til at redigere kortet, pas godt på det:"
|
|
432
438
|
|
|
433
|
-
#: templates/umap/components/alerts/alert.html:
|
|
439
|
+
#: templates/umap/components/alerts/alert.html:43
|
|
434
440
|
msgid "Copy link"
|
|
435
441
|
msgstr "Kopier link"
|
|
436
442
|
|
|
437
|
-
#: templates/umap/components/alerts/alert.html:
|
|
443
|
+
#: templates/umap/components/alerts/alert.html:50
|
|
438
444
|
msgid "Enter your email address to receive the secret link:"
|
|
439
445
|
msgstr "Indtast din e-mailadresse for at modtage det hemmelige link:"
|
|
440
446
|
|
|
441
|
-
#: templates/umap/components/alerts/alert.html:
|
|
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:
|
|
451
|
+
#: templates/umap/components/alerts/alert.html:59
|
|
446
452
|
msgid "Send me the link"
|
|
447
453
|
msgstr "Send mig linket"
|
|
448
454
|
|
|
449
|
-
#: templates/umap/components/alerts/alert.html:
|
|
455
|
+
#: templates/umap/components/alerts/alert.html:84
|
|
450
456
|
msgid "See their edits in another tab"
|
|
451
457
|
msgstr "Se deres redigeringer i en anden fane"
|
|
452
458
|
|
|
453
|
-
#: templates/umap/components/alerts/alert.html:
|
|
459
|
+
#: templates/umap/components/alerts/alert.html:87
|
|
454
460
|
msgid "Keep your changes and loose theirs"
|
|
455
461
|
msgstr "Behold dine ændringer og mist deres"
|
|
456
462
|
|
|
457
|
-
#: templates/umap/components/alerts/alert.html:
|
|
463
|
+
#: templates/umap/components/alerts/alert.html:90
|
|
458
464
|
msgid "Keep their changes and loose yours"
|
|
459
465
|
msgstr "Behold deres ændringer og mist dine"
|
|
460
466
|
|
|
@@ -535,7 +541,7 @@ msgstr "Du er logget ind. Fortsætter..."
|
|
|
535
541
|
msgid "template"
|
|
536
542
|
msgstr "skabelon"
|
|
537
543
|
|
|
538
|
-
#: templates/umap/map_list.html:18 views.py:
|
|
544
|
+
#: templates/umap/map_list.html:18 views.py:459
|
|
539
545
|
msgid "by"
|
|
540
546
|
msgstr "af"
|
|
541
547
|
|
|
@@ -722,7 +728,7 @@ msgstr "Senest oprettede kort"
|
|
|
722
728
|
msgid "Search maps"
|
|
723
729
|
msgstr "Søg i kortene"
|
|
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 "Enhver kategori"
|
|
728
734
|
|
|
@@ -815,70 +821,74 @@ msgstr "Opret en skabelon"
|
|
|
815
821
|
msgid "No template found."
|
|
816
822
|
msgstr "Ingen skabelon fundet."
|
|
817
823
|
|
|
818
|
-
#: views.py:
|
|
824
|
+
#: views.py:235
|
|
819
825
|
msgid "Cannot delete a team with more than one member"
|
|
820
826
|
msgstr "Kan ikke slette et hold med mere end ét medlem"
|
|
821
827
|
|
|
822
|
-
#: views.py:
|
|
828
|
+
#: views.py:239
|
|
823
829
|
#, python-format
|
|
824
830
|
msgid "Team “%(name)s” has been deleted"
|
|
825
831
|
msgstr "Teamet “%(name)s” er blevet slettet"
|
|
826
832
|
|
|
827
|
-
#: views.py:
|
|
833
|
+
#: views.py:464
|
|
828
834
|
msgid "View the map"
|
|
829
835
|
msgstr "Vis kortet"
|
|
830
836
|
|
|
831
|
-
#: views.py:
|
|
837
|
+
#: views.py:872
|
|
832
838
|
msgid "See full screen"
|
|
833
839
|
msgstr "Se i fuldskærm"
|
|
834
840
|
|
|
835
|
-
#: views.py:
|
|
841
|
+
#: views.py:1015
|
|
836
842
|
msgid "Map editors updated with success!"
|
|
837
843
|
msgstr "Kortredaktører blev opdateret!"
|
|
838
844
|
|
|
839
|
-
#: views.py:
|
|
845
|
+
#: views.py:1051
|
|
840
846
|
#, python-format
|
|
841
847
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
842
848
|
msgstr "uMap-redigeringslinket for dit kort: %(map_name)s"
|
|
843
849
|
|
|
844
|
-
#: views.py:
|
|
850
|
+
#: views.py:1054
|
|
845
851
|
#, python-format
|
|
846
852
|
msgid "Here is your secret edit link: %(link)s"
|
|
847
853
|
msgstr "Her er dit hemmelige redigeringslink: %(link)s"
|
|
848
854
|
|
|
849
|
-
#: views.py:
|
|
855
|
+
#: views.py:1061
|
|
850
856
|
#, python-format
|
|
851
857
|
msgid "Can't send email to %(email)s"
|
|
852
858
|
msgstr "Kan ikke sende e-mail til %(email)s"
|
|
853
859
|
|
|
854
|
-
#: views.py:
|
|
860
|
+
#: views.py:1064
|
|
855
861
|
#, python-format
|
|
856
862
|
msgid "Email sent to %(email)s"
|
|
857
863
|
msgstr "E-mail sendt til %(email)s"
|
|
858
864
|
|
|
859
|
-
#: views.py:
|
|
865
|
+
#: views.py:1075
|
|
860
866
|
msgid "Only its owner can delete the map."
|
|
861
867
|
msgstr "Kun ejeren kan slette kortet."
|
|
862
868
|
|
|
863
|
-
#: views.py:
|
|
869
|
+
#: views.py:1081
|
|
864
870
|
msgid "Map successfully deleted."
|
|
865
871
|
msgstr "Kort slettet."
|
|
866
872
|
|
|
867
|
-
#: views.py:
|
|
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 "Dit kort er blevet klonet! Hvis du ønsker at redigere kortet fra en anden computer, så brug følgende link: %(anonymous_url)s"
|
|
873
879
|
|
|
874
|
-
#: views.py:
|
|
880
|
+
#: views.py:1112
|
|
875
881
|
msgid "Congratulations, your map has been cloned!"
|
|
876
882
|
msgstr "Tillykke, dit kort er blevet klonet!"
|
|
877
883
|
|
|
878
|
-
#: views.py:
|
|
884
|
+
#: views.py:1366
|
|
879
885
|
msgid "Layer successfully deleted."
|
|
880
886
|
msgstr "Lag blev slettet."
|
|
881
887
|
|
|
882
|
-
#: views.py:
|
|
888
|
+
#: views.py:1388
|
|
883
889
|
msgid "Permissions updated with success!"
|
|
884
890
|
msgstr "Tilladelser opdateret!"
|
|
891
|
+
|
|
892
|
+
#: views.py:1405
|
|
893
|
+
msgid "Generic"
|
|
894
|
+
msgstr "Generisk"
|
|
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: s r, 2025\n"
|
|
27
27
|
"Language-Team: German (http://app.transifex.com/openstreetmap/umap/language/de/)\n"
|
|
@@ -422,48 +422,54 @@ msgid "Play with the demo"
|
|
|
422
422
|
msgstr "Spiele mit der 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 "Schließen"
|
|
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 "Hier ist der geheime Link zum Bearbeiten der Karte, bitte bewahre ihn sicher auf:"
|
|
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 "Link kopieren"
|
|
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 "Gib Deine E-Mail-Adresse ein, um den geheimen Link zu gesendet zu bekommen:"
|
|
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 "Link verschicken"
|
|
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 "Die Bearbeitungen in einem anderen Browser-Tab öffnen"
|
|
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 "Behalte Deine Änderungen und verwirf die anderen"
|
|
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 "Behalte die anderen Änderungen und verwirf Deine"
|
|
469
475
|
|
|
@@ -731,7 +737,7 @@ msgstr "Zuletzt erstellte Karten"
|
|
|
731
737
|
msgid "Search maps"
|
|
732
738
|
msgstr "Karten suchen"
|
|
733
739
|
|
|
734
|
-
#: templates/umap/search_bar.html:14
|
|
740
|
+
#: templates/umap/search_bar.html:14 templates/umap/user_map_table.html:15
|
|
735
741
|
msgid "Any category"
|
|
736
742
|
msgstr "Jede Kategorie"
|
|
737
743
|
|
|
@@ -837,61 +843,61 @@ msgstr "Team “%(name)s” wurde gelöscht"
|
|
|
837
843
|
msgid "View the map"
|
|
838
844
|
msgstr "Diese Karte anzeigen"
|
|
839
845
|
|
|
840
|
-
#: views.py:
|
|
846
|
+
#: views.py:872
|
|
841
847
|
msgid "See full screen"
|
|
842
848
|
msgstr "Vollbildanzeige"
|
|
843
849
|
|
|
844
|
-
#: views.py:
|
|
850
|
+
#: views.py:1015
|
|
845
851
|
msgid "Map editors updated with success!"
|
|
846
852
|
msgstr "Bearbeiter erfolgreich geändert"
|
|
847
853
|
|
|
848
|
-
#: views.py:
|
|
854
|
+
#: views.py:1051
|
|
849
855
|
#, python-format
|
|
850
856
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
851
857
|
msgstr "Der uMap-Bearbeitungslink für Deine Karte: %(map_name)s"
|
|
852
858
|
|
|
853
|
-
#: views.py:
|
|
859
|
+
#: views.py:1054
|
|
854
860
|
#, python-format
|
|
855
861
|
msgid "Here is your secret edit link: %(link)s"
|
|
856
862
|
msgstr "Dies ist der geheime Bearbeitungslink: %(link)s"
|
|
857
863
|
|
|
858
|
-
#: views.py:
|
|
864
|
+
#: views.py:1061
|
|
859
865
|
#, python-format
|
|
860
866
|
msgid "Can't send email to %(email)s"
|
|
861
867
|
msgstr "E-Mail kann nicht gesendet werden an %(email)s"
|
|
862
868
|
|
|
863
|
-
#: views.py:
|
|
869
|
+
#: views.py:1064
|
|
864
870
|
#, python-format
|
|
865
871
|
msgid "Email sent to %(email)s"
|
|
866
872
|
msgstr "Email gesendet an %(email)s"
|
|
867
873
|
|
|
868
|
-
#: views.py:
|
|
874
|
+
#: views.py:1075
|
|
869
875
|
msgid "Only its owner can delete the map."
|
|
870
876
|
msgstr "Nur der Ersteller kann die Karte löschen."
|
|
871
877
|
|
|
872
|
-
#: views.py:
|
|
878
|
+
#: views.py:1081
|
|
873
879
|
msgid "Map successfully deleted."
|
|
874
880
|
msgstr "Karte erfolgreich gelöscht."
|
|
875
881
|
|
|
876
|
-
#: views.py:
|
|
882
|
+
#: views.py:1107
|
|
877
883
|
#, python-format
|
|
878
884
|
msgid ""
|
|
879
885
|
"Your map has been cloned! If you want to edit this map from another "
|
|
880
886
|
"computer, please use this link: %(anonymous_url)s"
|
|
881
887
|
msgstr "Deine Karte wurde kopiert! Wenn du diese Karte von einem anderen Computer aus bearbeiten möchtest, benutze bitte diesen Link: %(anonymous_url)s"
|
|
882
888
|
|
|
883
|
-
#: views.py:
|
|
889
|
+
#: views.py:1112
|
|
884
890
|
msgid "Congratulations, your map has been cloned!"
|
|
885
891
|
msgstr "Glückwunsch, deine Karte wurde kopiert!"
|
|
886
892
|
|
|
887
|
-
#: views.py:
|
|
893
|
+
#: views.py:1366
|
|
888
894
|
msgid "Layer successfully deleted."
|
|
889
895
|
msgstr "Ebene erfolgreich gelöscht."
|
|
890
896
|
|
|
891
|
-
#: views.py:
|
|
897
|
+
#: views.py:1388
|
|
892
898
|
msgid "Permissions updated with success!"
|
|
893
899
|
msgstr "Berechtigungen erfolgreich aktualisiert!"
|
|
894
900
|
|
|
895
|
-
#: views.py:
|
|
901
|
+
#: views.py:1405
|
|
896
902
|
msgid "Generic"
|
|
897
903
|
msgstr "Allgemein"
|
|
Binary file
|