umap-project 3.2.0__tar.gz → 3.3.1__tar.gz
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.
- {umap_project-3.2.0 → umap_project-3.3.1}/PKG-INFO +9 -9
- {umap_project-3.2.0 → umap_project-3.3.1}/pyproject.toml +8 -8
- umap_project-3.3.1/umap/__init__.py +1 -0
- umap_project-3.3.1/umap/locale/el/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/el/LC_MESSAGES/django.po +42 -38
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/en/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/en/LC_MESSAGES/django.po +15 -15
- umap_project-3.3.1/umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/hu/LC_MESSAGES/django.po +39 -35
- umap_project-3.3.1/umap/locale/nl/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/nl/LC_MESSAGES/django.po +31 -27
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/settings/base.py +2 -0
- umap_project-3.3.1/umap/static/umap/css/contextmenu.css +84 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/css/form.css +175 -45
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/css/icon.css +20 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/img/16-white.svg +21 -40
- umap_project-3.3.1/umap/static/umap/img/16.svg +1 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/img/24-white.svg +9 -9
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/img/24.svg +23 -10
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/img/source/16-white.svg +23 -41
- umap_project-3.3.1/umap/static/umap/img/source/16.svg +4 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/img/source/24-white.svg +11 -11
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/img/source/24.svg +25 -12
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/modules/caption.js +8 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/modules/data/features.js +318 -174
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/modules/data/layer.js +27 -20
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/modules/form/builder.js +11 -7
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/modules/form/fields.js +10 -7
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/modules/formatter.js +42 -20
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/modules/importer.js +6 -1
- umap_project-3.3.1/umap/static/umap/js/modules/importers/opendata.js +247 -0
- umap_project-3.3.1/umap/static/umap/js/modules/importers/openrouteservice.js +140 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/modules/managers.js +12 -4
- umap_project-3.3.1/umap/static/umap/js/modules/printer.js +107 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/modules/rendering/controls.js +78 -2
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/modules/rendering/icon.js +113 -82
- umap_project-3.3.1/umap/static/umap/js/modules/rendering/layers/cluster.js +276 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/modules/rendering/map.js +5 -1
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/modules/rendering/template.js +71 -1
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/modules/rendering/ui.js +101 -34
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/modules/schema.js +24 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/modules/share.js +19 -12
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/modules/ui/bar.js +6 -1
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/modules/ui/base.js +24 -9
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/modules/ui/contextmenu.js +17 -7
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/modules/ui/dialog.js +7 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/modules/umap.js +68 -62
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/umap.controls.js +22 -57
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/am_ET.js +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/am_ET.json +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/ar.js +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/ar.json +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/ast.js +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/ast.json +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/bg.js +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/bg.json +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/br.js +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/br.json +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/ca.js +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/ca.json +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/cs_CZ.js +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/cs_CZ.json +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/da.js +47 -12
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/da.json +47 -12
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/de.js +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/de.json +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/el.js +81 -46
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/el.json +81 -46
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/en.js +38 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/en.json +38 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/en_US.json +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/es.js +47 -12
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/es.json +47 -12
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/et.js +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/et.json +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/eu.js +80 -45
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/eu.json +80 -45
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/fa_IR.js +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/fa_IR.json +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/fi.js +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/fi.json +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/fr.js +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/fr.json +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/gl.js +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/gl.json +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/he.js +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/he.json +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/hr.js +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/hr.json +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/hu.js +55 -20
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/hu.json +55 -20
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/id.js +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/id.json +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/is.js +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/is.json +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/it.js +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/it.json +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/ja.js +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/ja.json +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/ko.js +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/ko.json +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/lt.js +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/lt.json +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/ms.js +52 -17
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/ms.json +52 -17
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/nl.js +58 -23
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/nl.json +58 -23
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/no.js +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/no.json +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/pl.js +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/pl.json +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/pl_PL.json +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/pt.js +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/pt.json +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/pt_BR.js +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/pt_BR.json +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/pt_PT.js +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/pt_PT.json +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/ro.js +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/ro.json +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/ru.js +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/ru.json +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/sk_SK.js +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/sk_SK.json +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/sl.js +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/sl.json +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/sr.js +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/sr.json +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/sv.js +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/sv.json +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/th_TH.js +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/th_TH.json +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/tr.js +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/tr.json +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/uk_UA.js +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/uk_UA.json +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/vi.js +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/vi.json +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/vi_VN.json +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/zh.js +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/zh.json +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/zh_CN.json +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/zh_TW.Big5.json +39 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/zh_TW.js +98 -63
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/zh_TW.json +98 -63
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/map.css +90 -41
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/vars.css +1 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/vendors/editable/Leaflet.Editable.js +3 -1
- umap_project-3.3.1/umap/static/umap/vendors/openrouteservice/ors-js-client.js +521 -0
- umap_project-3.3.1/umap/static/umap/vendors/openrouteservice/ors-js-client.js.map +1 -0
- umap_project-3.3.1/umap/static/umap/vendors/simple-elevation-chart/elevation.js +63 -0
- umap_project-3.3.1/umap/static/umap/vendors/simple-elevation-chart/elevation.svg +8 -0
- umap_project-3.3.1/umap/static/umap/vendors/snapdom/snapdom.min.mjs +3 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/storage/staticfiles.py +12 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/templates/umap/css.html +0 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/templates/umap/js.html +1 -3
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/integration/test_basics.py +2 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/integration/test_conditional_rules.py +17 -17
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/integration/test_datalayer.py +1 -1
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/integration/test_draw_polygon.py +3 -5
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/integration/test_draw_polyline.py +4 -6
- umap_project-3.3.1/umap/tests/integration/test_draw_route.py +178 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/integration/test_edit_map.py +1 -1
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/integration/test_edit_marker.py +7 -7
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/integration/test_edit_polygon.py +2 -2
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/integration/test_export_map.py +74 -10
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/integration/test_map_preview.py +1 -1
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/integration/test_share.py +1 -1
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/integration/test_tableeditor.py +4 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/integration/test_websocket_sync.py +4 -4
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/utils.py +5 -1
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/views.py +2 -0
- umap_project-3.2.0/umap/__init__.py +0 -1
- umap_project-3.2.0/umap/locale/el/LC_MESSAGES/django.mo +0 -0
- umap_project-3.2.0/umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- umap_project-3.2.0/umap/locale/nl/LC_MESSAGES/django.mo +0 -0
- umap_project-3.2.0/umap/static/umap/css/contextmenu.css +0 -28
- umap_project-3.2.0/umap/static/umap/img/16.svg +0 -1
- umap_project-3.2.0/umap/static/umap/img/source/16.svg +0 -4
- umap_project-3.2.0/umap/static/umap/js/modules/importers/opendata.js +0 -159
- umap_project-3.2.0/umap/static/umap/js/modules/rendering/layers/cluster.js +0 -120
- umap_project-3.2.0/umap/static/umap/vendors/markercluster/MarkerCluster.Default.css +0 -60
- umap_project-3.2.0/umap/static/umap/vendors/markercluster/MarkerCluster.css +0 -14
- umap_project-3.2.0/umap/static/umap/vendors/markercluster/leaflet.markercluster.js +0 -2
- umap_project-3.2.0/umap/static/umap/vendors/markercluster/leaflet.markercluster.js.map +0 -1
- {umap_project-3.2.0 → umap_project-3.3.1}/.gitignore +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/LICENSE +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/README.md +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/admin.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/apps.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/asgi.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/autocomplete.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/bin/__init__.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/context_processors.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/decorators.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/fields.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/forms.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/am_ET/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/am_ET/LC_MESSAGES/django.po +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/ar/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/ar/LC_MESSAGES/django.po +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/ast/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/ast/LC_MESSAGES/django.po +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/bg/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/bg/LC_MESSAGES/django.po +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/br/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/br/LC_MESSAGES/django.po +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/ca/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/ca/LC_MESSAGES/django.po +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/cs_CZ/LC_MESSAGES/django.po +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/da/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/da/LC_MESSAGES/django.po +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/de/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/de/LC_MESSAGES/django.po +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/es/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/es/LC_MESSAGES/django.po +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/et/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/et/LC_MESSAGES/django.po +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/eu/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/eu/LC_MESSAGES/django.po +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/fa_IR/LC_MESSAGES/django.po +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/fi/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/fi/LC_MESSAGES/django.po +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/fr/LC_MESSAGES/django.po +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/gl/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/gl/LC_MESSAGES/django.po +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/he/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/he/LC_MESSAGES/django.po +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/hr/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/hr/LC_MESSAGES/django.po +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/id/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/id/LC_MESSAGES/django.po +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/is/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/is/LC_MESSAGES/django.po +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/it/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/it/LC_MESSAGES/django.po +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/ja/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/ja/LC_MESSAGES/django.po +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/ko/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/ko/LC_MESSAGES/django.po +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/lt/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/lt/LC_MESSAGES/django.po +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/ms/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/ms/LC_MESSAGES/django.po +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/no/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/no/LC_MESSAGES/django.po +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/pl/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/pl/LC_MESSAGES/django.po +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/pt/LC_MESSAGES/django.po +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/pt_BR/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/pt_BR/LC_MESSAGES/django.po +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/pt_PT/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/pt_PT/LC_MESSAGES/django.po +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/ro/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/ro/LC_MESSAGES/django.po +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/ru/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/ru/LC_MESSAGES/django.po +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/si/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/si/LC_MESSAGES/django.po +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/sk_SK/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/sk_SK/LC_MESSAGES/django.po +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/sl/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/sl/LC_MESSAGES/django.po +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/sr/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/sr/LC_MESSAGES/django.po +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/sv/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/sv/LC_MESSAGES/django.po +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/th_TH/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/th_TH/LC_MESSAGES/django.po +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/tr/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/tr/LC_MESSAGES/django.po +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/uk_UA/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/uk_UA/LC_MESSAGES/django.po +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/vi/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/vi/LC_MESSAGES/django.po +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/zh/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/zh/LC_MESSAGES/django.po +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/locale/zh_TW/LC_MESSAGES/django.po +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/management/__init__.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/management/commands/__init__.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/management/commands/anonymous_edit_url.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/management/commands/clean_tilelayer.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/management/commands/empty_trash.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/management/commands/export_pictogram.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/management/commands/generate_js_locale.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/management/commands/import_pictograms.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/management/commands/migrate_to_S3.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/management/commands/purge_old_versions.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/management/commands/switch_user.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/managers.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/middleware.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/migrations/0001_initial.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/migrations/0002_tilelayer_tms.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/migrations/0003_add_tilelayer.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/migrations/0004_add_licence.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/migrations/0005_remove_map_tilelayer.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/migrations/0006_auto_20190407_0719.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/migrations/0007_auto_20190416_1757.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/migrations/0008_alter_map_settings.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/migrations/0009_star.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/migrations/0010_alter_map_edit_status_alter_map_share_status.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/migrations/0011_alter_map_edit_status_alter_map_share_status.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/migrations/0012_datalayer_settings.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/migrations/0013_datalayer_edit_status.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/migrations/0014_map_created_at.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/migrations/0015_alter_pictogram_pictogram.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/migrations/0016_pictogram_category.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/migrations/0017_migrate_to_openstreetmap_oauth2.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/migrations/0018_datalayer_uuid.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/migrations/0019_migrate_internal_remote_datalayers.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/migrations/0020_alter_tilelayer_url_template.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/migrations/0021_remove_map_description.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/migrations/0022_add_team.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/migrations/0023_alter_datalayer_uuid.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/migrations/0024_alter_map_share_status.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/migrations/0025_alter_datalayer_geojson.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/migrations/0026_datalayer_modified_at_datalayer_share_status.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/migrations/0027_map_tags.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/migrations/0028_map_is_template.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/migrations/__init__.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/models.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/settings/__init__.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/settings/dev.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/settings/local.py.sample +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/.gitignore +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/base.css +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/content.css +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/css/bar.css +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/css/dialog.css +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/css/importers.css +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/css/panel.css +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/css/popup.css +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/css/slideshow.css +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/css/tableeditor.css +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/css/tooltip.css +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/css/window.css +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/favicons/apple-touch-icon.png +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/favicons/favicon.ico +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/favicons/icon-192.png +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/favicons/icon-512.png +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/favicons/icon.svg +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/font/FiraSans-Light.woff +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/font/FiraSans-Light.woff2 +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/font/FiraSans-LightItalic.woff +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/font/FiraSans-LightItalic.woff2 +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/font/FiraSans-SemiBold.woff +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/font/FiraSans-SemiBold.woff2 +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/font.css +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/img/alert-icon-error.svg +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/img/alert-icon-info.svg +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/img/alert-icon-success.svg +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/img/edit.svg +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/img/home.svg +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/img/icon-bg.png +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/img/icon-delete.svg +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/img/icon-download.svg +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/img/icon-duplicate.svg +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/img/icon-edit.svg +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/img/icon-external-link.svg +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/img/icon-share.svg +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/img/icon-view.svg +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/img/importers/banfr.svg +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/img/importers/cadastrefr.svg +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/img/importers/communesfr.svg +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/img/importers/datasets.svg +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/img/importers/geodatamine.svg +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/img/importers/opendata.svg +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/img/importers/overpass.svg +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/img/importers/random.svg +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/img/importers/random1.svg +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/img/importers/random2.svg +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/img/logo.svg +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/img/logo_filigree.png +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/img/logo_lightcyan.svg +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/img/logo_small.svg +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/img/marker.png +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/img/marker.svg +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/img/opensource.svg +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/img/osm.svg +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/img/providers/bitbucket.png +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/img/providers/github.png +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/img/providers/keycloak.png +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/img/providers/openstreetmap-oauth2.png +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/img/providers/twitter-oauth2.png +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/img/search.gif +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/img/target.svg +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/components/alerts/alert.css +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/components/alerts/alert.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/components/base.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/components/fragment.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/components/modal.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/modules/autocomplete.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/modules/browser.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/modules/dompurify.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/modules/drop.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/modules/facets.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/modules/global.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/modules/help.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/modules/i18n.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/modules/importers/banfr.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/modules/importers/cadastrefr.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/modules/importers/communesfr.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/modules/importers/datasets.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/modules/importers/geodatamine.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/modules/importers/overpass.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/modules/leaflet-configure.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/modules/orderable.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/modules/permissions.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/modules/rendering/layers/base.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/modules/rendering/layers/classified.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/modules/rendering/layers/heat.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/modules/rendering/popup.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/modules/request.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/modules/rules.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/modules/slideshow.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/modules/sync/engine.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/modules/sync/hlc.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/modules/sync/undo.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/modules/sync/updaters.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/modules/sync/websocket.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/modules/tableeditor.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/modules/templates.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/modules/ui/panel.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/modules/ui/tooltip.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/modules/urls.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/modules/utils.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/js/umap.core.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/si.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/locale/si.json +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/nav.css +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/theme.css +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/unittests/URLs.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/unittests/hlc.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/unittests/sync.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/unittests/utils.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/vendors/betterknown/betterknown.mjs +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/vendors/colorbrewer/colorbrewer.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/vendors/csv2geojson/csv2geojson.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/vendors/dompurify/purify.es.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/vendors/dompurify/purify.es.mjs.map +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/vendors/editable/Path.Drag.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/vendors/editinosm/Leaflet.EditInOSM.css +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/vendors/editinosm/Leaflet.EditInOSM.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/vendors/editinosm/edit-in-osm.png +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/vendors/fullscreen/Leaflet.fullscreen.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/vendors/fullscreen/Leaflet.fullscreen.min.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/vendors/fullscreen/fullscreen.png +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/vendors/fullscreen/fullscreen@2x.png +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/vendors/fullscreen/leaflet.fullscreen.css +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/vendors/geojson-to-gpx/index.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/vendors/georsstogeojson/GeoRSSToGeoJSON.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/vendors/hash/leaflet-hash.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/vendors/heat/leaflet-heat.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/vendors/i18n/Leaflet.i18n.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/vendors/iconlayers/check.png +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/vendors/iconlayers/iconLayers.css +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/vendors/iconlayers/iconLayers.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/vendors/iconlayers/transparent-pixel.png +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/vendors/leaflet/images/layers-2x.png +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/vendors/leaflet/images/layers.png +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/vendors/leaflet/images/marker-icon-2x.png +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/vendors/leaflet/images/marker-icon.png +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/vendors/leaflet/images/marker-shadow.png +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/vendors/leaflet/leaflet-src.esm.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/vendors/leaflet/leaflet-src.esm.js.map +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/vendors/leaflet/leaflet.css +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/vendors/loading/Control.Loading.css +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/vendors/loading/Control.Loading.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.css +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.css.map +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js.map +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/vendors/measurable/Leaflet.Measurable.css +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/vendors/measurable/Leaflet.Measurable.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/vendors/minimap/Control.MiniMap.min.css +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/vendors/minimap/Control.MiniMap.min.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/vendors/minimap/images/toggle.png +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/vendors/minimap/images/toggle.svg +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/vendors/osmtogeojson/osmtogeojson.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/vendors/photon/leaflet.photon.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/vendors/simple-statistics/simple-statistics.min.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/vendors/simple-statistics/simple-statistics.min.js.map +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/vendors/textpath/leaflet.textpath.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/vendors/togeojson/togeojson.es.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/vendors/togeojson/togeojson.es.mjs.map +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/vendors/tokml/tokml.es.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/static/umap/vendors/tokml/tokml.es.mjs.map +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/storage/__init__.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/storage/fs.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/storage/s3.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/sync/__init__.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/sync/app.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/sync/payloads.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/templates/403.html +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/templates/404.html +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/templates/40x.html +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/templates/500.html +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/templates/auth/user_detail.html +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/templates/auth/user_form.html +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/templates/auth/user_stars.html +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/templates/base.html +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/templates/registration/login.html +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/templates/umap/about.html +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/templates/umap/about_summary.html +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/templates/umap/branding.html +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/templates/umap/components/alerts/alert.html +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/templates/umap/components/provider.html +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/templates/umap/content.html +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/templates/umap/content_footer.html +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/templates/umap/dashboard_menu.html +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/templates/umap/design_system.html +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/templates/umap/footer.html +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/templates/umap/header.html +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/templates/umap/home.html +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/templates/umap/locale.js +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/templates/umap/login_popup_end.html +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/templates/umap/map_detail.html +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/templates/umap/map_fragment.html +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/templates/umap/map_init.html +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/templates/umap/map_list.html +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/templates/umap/map_table.html +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/templates/umap/messages.html +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/templates/umap/navigation.html +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/templates/umap/password_change.html +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/templates/umap/password_change_done.html +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/templates/umap/search.html +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/templates/umap/search_bar.html +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/templates/umap/success.html +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/templates/umap/team_confirm_delete.html +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/templates/umap/team_detail.html +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/templates/umap/team_form.html +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/templates/umap/user_dashboard.html +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/templates/umap/user_map_table.html +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/templates/umap/user_teams.html +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/templates/umap/user_templates.html +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/templatetags/__init__.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/templatetags/umap_tags.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/__init__.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/base.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/conftest.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/fixtures/categorized_highway.geojson +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/fixtures/choropleth_region_chomage.geojson +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/fixtures/circle.svg +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/fixtures/display_on_load.umap +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/fixtures/empty_tile.png +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/fixtures/heatmap_data.json +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/fixtures/remote_data.umap +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/fixtures/star.svg +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/fixtures/test_circles_layer.geojson +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/fixtures/test_import_osm_relation.json +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/fixtures/test_upload_data.csv +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/fixtures/test_upload_data.gpx +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/fixtures/test_upload_data.json +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/fixtures/test_upload_data.kml +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/fixtures/test_upload_data.umap +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/fixtures/test_upload_data_osm.json +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/fixtures/test_upload_data_with_iconurl.umap +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/fixtures/test_upload_empty_coordinates.json +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/fixtures/test_upload_georss.xml +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/fixtures/test_upload_missing_name.json +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/fixtures/test_upload_non_linear_ring.json +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/fixtures/test_upload_simple_marker.json +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/integration/__init__.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/integration/conftest.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/integration/helpers.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/integration/test_anonymous_owned_map.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/integration/test_browser.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/integration/test_caption.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/integration/test_categorized_layer.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/integration/test_choropleth.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/integration/test_circles_layer.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/integration/test_cluster.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/integration/test_dashboard.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/integration/test_edit_datalayer.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/integration/test_facets_browser.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/integration/test_features_id_generation.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/integration/test_heatmap.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/integration/test_iframe.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/integration/test_import.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/integration/test_map.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/integration/test_map_list.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/integration/test_optimistic_merge.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/integration/test_owned_map.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/integration/test_picto.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/integration/test_popup.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/integration/test_querystring.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/integration/test_remote_data.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/integration/test_save.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/integration/test_slideshow.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/integration/test_star.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/integration/test_team.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/integration/test_templates.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/integration/test_tilelayer.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/integration/test_undo_redo.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/integration/test_view_marker.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/integration/test_view_polygon.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/integration/test_view_polyline.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/settings.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/test_clean_tilelayer.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/test_dashboard.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/test_datalayer.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/test_datalayer_s3.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/test_datalayer_views.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/test_empty_trash.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/test_licence.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/test_map.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/test_map_views.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/test_merge_features.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/test_purge_old_versions.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/test_statics.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/test_switch_user.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/test_team_views.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/test_tilelayer.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/test_utils.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/tests/test_views.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/urls.py +0 -0
- {umap_project-3.2.0 → umap_project-3.3.1}/umap/wsgi.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: umap-project
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.3.1
|
|
4
4
|
Summary: Create maps with OpenStreetMap layers in a minute and embed them in your site.
|
|
5
5
|
Author-email: Yohan Boniface <yb@enix.org>
|
|
6
6
|
Maintainer-email: David Larlet <david@larlet.fr>
|
|
@@ -19,11 +19,11 @@ Requires-Python: >=3.10
|
|
|
19
19
|
Requires-Dist: django-agnocomplete==2.2.0
|
|
20
20
|
Requires-Dist: django-environ==0.12.0
|
|
21
21
|
Requires-Dist: django-probes==1.7.0
|
|
22
|
-
Requires-Dist: django==5.2.
|
|
22
|
+
Requires-Dist: django==5.2.5
|
|
23
23
|
Requires-Dist: pillow==11.3.0
|
|
24
24
|
Requires-Dist: psycopg==3.2.9
|
|
25
25
|
Requires-Dist: rcssmin==1.2.1
|
|
26
|
-
Requires-Dist: requests==2.32.
|
|
26
|
+
Requires-Dist: requests==2.32.5
|
|
27
27
|
Requires-Dist: rjsmin==1.2.4
|
|
28
28
|
Requires-Dist: social-auth-app-django==5.4.3
|
|
29
29
|
Requires-Dist: social-auth-core==4.5.6
|
|
@@ -31,11 +31,11 @@ Provides-Extra: dev
|
|
|
31
31
|
Requires-Dist: djlint==1.36.4; extra == 'dev'
|
|
32
32
|
Requires-Dist: hatch==1.14.1; extra == 'dev'
|
|
33
33
|
Requires-Dist: isort==6.0.1; extra == 'dev'
|
|
34
|
-
Requires-Dist: mkdocs-material==9.6.
|
|
34
|
+
Requires-Dist: mkdocs-material==9.6.18; extra == 'dev'
|
|
35
35
|
Requires-Dist: mkdocs-static-i18n==1.3.0; extra == 'dev'
|
|
36
36
|
Requires-Dist: mkdocs==1.6.1; extra == 'dev'
|
|
37
|
-
Requires-Dist: pymdown-extensions==10.16; extra == 'dev'
|
|
38
|
-
Requires-Dist: ruff==0.12.
|
|
37
|
+
Requires-Dist: pymdown-extensions==10.16.1; extra == 'dev'
|
|
38
|
+
Requires-Dist: ruff==0.12.10; extra == 'dev'
|
|
39
39
|
Requires-Dist: vermin==1.6.0; extra == 'dev'
|
|
40
40
|
Provides-Extra: docker
|
|
41
41
|
Requires-Dist: uvicorn==0.35.0; extra == 'docker'
|
|
@@ -43,12 +43,12 @@ Provides-Extra: s3
|
|
|
43
43
|
Requires-Dist: django-storages[s3]==1.14.6; extra == 's3'
|
|
44
44
|
Provides-Extra: sync
|
|
45
45
|
Requires-Dist: pydantic==2.11.7; extra == 'sync'
|
|
46
|
-
Requires-Dist: redis==6.
|
|
46
|
+
Requires-Dist: redis==6.4.0; extra == 'sync'
|
|
47
47
|
Requires-Dist: websockets==15.0.1; extra == 'sync'
|
|
48
48
|
Provides-Extra: test
|
|
49
|
-
Requires-Dist: daphne==4.2.
|
|
49
|
+
Requires-Dist: daphne==4.2.1; extra == 'test'
|
|
50
50
|
Requires-Dist: factory-boy==3.3.3; extra == 'test'
|
|
51
|
-
Requires-Dist: moto[s3]==5.1.
|
|
51
|
+
Requires-Dist: moto[s3]==5.1.10; extra == 'test'
|
|
52
52
|
Requires-Dist: playwright>=1.39; extra == 'test'
|
|
53
53
|
Requires-Dist: pytest-django==4.11.1; extra == 'test'
|
|
54
54
|
Requires-Dist: pytest-playwright==0.7.0; extra == 'test'
|
|
@@ -28,13 +28,13 @@ classifiers = [
|
|
|
28
28
|
"Programming Language :: Python :: 3.12",
|
|
29
29
|
]
|
|
30
30
|
dependencies = [
|
|
31
|
-
"Django==5.2.
|
|
31
|
+
"Django==5.2.5",
|
|
32
32
|
"django-agnocomplete==2.2.0",
|
|
33
33
|
"django-environ==0.12.0",
|
|
34
34
|
"django-probes==1.7.0",
|
|
35
35
|
"Pillow==11.3.0",
|
|
36
36
|
"psycopg==3.2.9",
|
|
37
|
-
"requests==2.32.
|
|
37
|
+
"requests==2.32.5",
|
|
38
38
|
"rcssmin==1.2.1",
|
|
39
39
|
"rjsmin==1.2.4",
|
|
40
40
|
"social-auth-core==4.5.6",
|
|
@@ -44,17 +44,17 @@ dependencies = [
|
|
|
44
44
|
[project.optional-dependencies]
|
|
45
45
|
dev = [
|
|
46
46
|
"hatch==1.14.1",
|
|
47
|
-
"ruff==0.12.
|
|
47
|
+
"ruff==0.12.10",
|
|
48
48
|
"djlint==1.36.4",
|
|
49
49
|
"mkdocs==1.6.1",
|
|
50
|
-
"mkdocs-material==9.6.
|
|
50
|
+
"mkdocs-material==9.6.18",
|
|
51
51
|
"mkdocs-static-i18n==1.3.0",
|
|
52
52
|
"vermin==1.6.0",
|
|
53
|
-
"pymdown-extensions==10.16",
|
|
53
|
+
"pymdown-extensions==10.16.1",
|
|
54
54
|
"isort==6.0.1",
|
|
55
55
|
]
|
|
56
56
|
test = [
|
|
57
|
-
"daphne==4.2.
|
|
57
|
+
"daphne==4.2.1",
|
|
58
58
|
"factory-boy==3.3.3",
|
|
59
59
|
"playwright>=1.39",
|
|
60
60
|
"pytest==8.4.1",
|
|
@@ -62,7 +62,7 @@ test = [
|
|
|
62
62
|
"pytest-playwright==0.7.0",
|
|
63
63
|
"pytest-rerunfailures==15.1",
|
|
64
64
|
"pytest-xdist>=3.5.0,<4",
|
|
65
|
-
"moto[s3]==5.1.
|
|
65
|
+
"moto[s3]==5.1.10"
|
|
66
66
|
]
|
|
67
67
|
docker = [
|
|
68
68
|
"uvicorn==0.35.0",
|
|
@@ -72,7 +72,7 @@ s3 = [
|
|
|
72
72
|
]
|
|
73
73
|
sync = [
|
|
74
74
|
"pydantic==2.11.7",
|
|
75
|
-
"redis==6.
|
|
75
|
+
"redis==6.4.0",
|
|
76
76
|
"websockets==15.0.1",
|
|
77
77
|
]
|
|
78
78
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
VERSION = "3.3.1"
|
|
Binary file
|
|
@@ -6,16 +6,16 @@
|
|
|
6
6
|
# Emmanuel Verigos <emverigos@geodev.gr>, 2017-2018,2021
|
|
7
7
|
# Emmanuel Verigos <emverigos@geodev.gr>, 2018
|
|
8
8
|
# Emmanuel Verigos <emverigos@geodev.gr>, 2017
|
|
9
|
-
# Jim Kats <jim-kats@hotmail.com>, 2022-2023
|
|
9
|
+
# Jim Kats <jim-kats@hotmail.com>, 2022-2023,2025
|
|
10
10
|
# prendi <prendi@openmailbox.org>, 2017
|
|
11
|
-
# Yannis Kaskamanidis <kiolalis@gmail.com>, 2021,2023-
|
|
11
|
+
# Yannis Kaskamanidis <kiolalis@gmail.com>, 2021,2023-2025
|
|
12
12
|
msgid ""
|
|
13
13
|
msgstr ""
|
|
14
14
|
"Project-Id-Version: uMap\n"
|
|
15
15
|
"Report-Msgid-Bugs-To: \n"
|
|
16
|
-
"POT-Creation-Date: 2025-
|
|
16
|
+
"POT-Creation-Date: 2025-08-14 15:22+0000\n"
|
|
17
17
|
"PO-Revision-Date: 2013-11-22 14:00+0000\n"
|
|
18
|
-
"Last-Translator:
|
|
18
|
+
"Last-Translator: Yannis Kaskamanidis <kiolalis@gmail.com>, 2021,2023-2025\n"
|
|
19
19
|
"Language-Team: Greek (http://app.transifex.com/openstreetmap/umap/language/el/)\n"
|
|
20
20
|
"MIME-Version: 1.0\n"
|
|
21
21
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
@@ -157,11 +157,11 @@ msgstr "ρυθμίσεις"
|
|
|
157
157
|
|
|
158
158
|
#: models.py:243
|
|
159
159
|
msgid "save as template"
|
|
160
|
-
msgstr ""
|
|
160
|
+
msgstr "αποθήκευση ως πρότυπο"
|
|
161
161
|
|
|
162
162
|
#: models.py:244
|
|
163
163
|
msgid "This map is a template map."
|
|
164
|
-
msgstr ""
|
|
164
|
+
msgstr "Αυτός ο χάρτης είναι ένα πρότυπο χάρτη."
|
|
165
165
|
|
|
166
166
|
#: models.py:420
|
|
167
167
|
msgid "Clone of"
|
|
@@ -181,19 +181,19 @@ msgstr "Εμφάνιση αυτού του επιπέδου κατά την φό
|
|
|
181
181
|
|
|
182
182
|
#: settings/base.py:283
|
|
183
183
|
msgid "uMap user documentation"
|
|
184
|
-
msgstr ""
|
|
184
|
+
msgstr "Τεκμηρίωση χρήστη του uMap"
|
|
185
185
|
|
|
186
186
|
#: settings/base.py:288
|
|
187
187
|
msgid "Video tutorials"
|
|
188
|
-
msgstr ""
|
|
188
|
+
msgstr "Διδακτικά βοηθήματα σε βίντεο"
|
|
189
189
|
|
|
190
190
|
#: settings/base.py:293
|
|
191
191
|
msgid "OpenStreetMap.org forum"
|
|
192
|
-
msgstr ""
|
|
192
|
+
msgstr "Φόρουμ OpenStreetMap.org"
|
|
193
193
|
|
|
194
194
|
#: settings/base.py:298
|
|
195
195
|
msgid "OpenStreetMap France forum"
|
|
196
|
-
msgstr ""
|
|
196
|
+
msgstr "Φόρουμ OpenStreetMap Γαλλίας"
|
|
197
197
|
|
|
198
198
|
#: settings/base.py:318
|
|
199
199
|
msgid "Art and Culture"
|
|
@@ -330,7 +330,7 @@ msgstr "Περιήγηση στους χάρτες με αστέρι του χρ
|
|
|
330
330
|
msgid "%(current_user)s has no starred maps yet."
|
|
331
331
|
msgstr "Ο %(current_user)s δεν έχει ακόμη χάρτες με αστέρι."
|
|
332
332
|
|
|
333
|
-
#: templates/base.html:
|
|
333
|
+
#: templates/base.html:16
|
|
334
334
|
msgid ""
|
|
335
335
|
"uMap lets you create maps with OpenStreetMap layers in a minute and embed "
|
|
336
336
|
"them in your site."
|
|
@@ -506,11 +506,11 @@ msgstr "Οι χάρτες μου"
|
|
|
506
506
|
#: templates/umap/dashboard_menu.html:11
|
|
507
507
|
#, python-format
|
|
508
508
|
msgid "My Templates (%(count)s)"
|
|
509
|
-
msgstr ""
|
|
509
|
+
msgstr "Τα πρότυπά μου (%(count)s)"
|
|
510
510
|
|
|
511
511
|
#: templates/umap/dashboard_menu.html:13 templates/umap/user_templates.html:6
|
|
512
512
|
msgid "My Templates"
|
|
513
|
-
msgstr ""
|
|
513
|
+
msgstr "Τα πρότυπά μου"
|
|
514
514
|
|
|
515
515
|
#: templates/umap/dashboard_menu.html:17
|
|
516
516
|
msgid "My profile"
|
|
@@ -534,15 +534,15 @@ msgstr "Είστε συνδεδεμένοι. Συνέχεια..."
|
|
|
534
534
|
|
|
535
535
|
#: templates/umap/map_list.html:15
|
|
536
536
|
msgid "template"
|
|
537
|
-
msgstr ""
|
|
537
|
+
msgstr "πρότυπο"
|
|
538
538
|
|
|
539
|
-
#: templates/umap/map_list.html:18 views.py:
|
|
539
|
+
#: templates/umap/map_list.html:18 views.py:459
|
|
540
540
|
msgid "by"
|
|
541
541
|
msgstr "από"
|
|
542
542
|
|
|
543
543
|
#: templates/umap/map_list.html:22
|
|
544
544
|
msgid "See the template"
|
|
545
|
-
msgstr ""
|
|
545
|
+
msgstr "Δες το πρότυπο"
|
|
546
546
|
|
|
547
547
|
#: templates/umap/map_list.html:22
|
|
548
548
|
msgid "See the map"
|
|
@@ -768,7 +768,7 @@ msgstr "Αναζήτηση στους χάρτες μου"
|
|
|
768
768
|
|
|
769
769
|
#: templates/umap/user_dashboard.html:11
|
|
770
770
|
msgid "Map’s name"
|
|
771
|
-
msgstr ""
|
|
771
|
+
msgstr "Όνομα χάρτη"
|
|
772
772
|
|
|
773
773
|
#: templates/umap/user_dashboard.html:12
|
|
774
774
|
#, python-format
|
|
@@ -793,93 +793,97 @@ msgstr "Νέα ομάδα"
|
|
|
793
793
|
|
|
794
794
|
#: templates/umap/user_templates.html:10
|
|
795
795
|
msgid "Search my templates"
|
|
796
|
-
msgstr ""
|
|
796
|
+
msgstr "Αναζήτηση στα πρότυπά μου"
|
|
797
797
|
|
|
798
798
|
#: templates/umap/user_templates.html:11
|
|
799
799
|
msgid "Template’s name"
|
|
800
|
-
msgstr ""
|
|
800
|
+
msgstr "Όνομα προτύπου"
|
|
801
801
|
|
|
802
802
|
#: templates/umap/user_templates.html:12
|
|
803
803
|
#, python-format
|
|
804
804
|
msgid "Download %(count)s templates"
|
|
805
|
-
msgstr ""
|
|
805
|
+
msgstr "Κατεβάστε %(count)s πρότυπα"
|
|
806
806
|
|
|
807
807
|
#: templates/umap/user_templates.html:15
|
|
808
808
|
msgid "You have no template yet."
|
|
809
|
-
msgstr ""
|
|
809
|
+
msgstr "Δεν έχετε πρότυπο ακόμη."
|
|
810
810
|
|
|
811
811
|
#: templates/umap/user_templates.html:16
|
|
812
812
|
msgid "Create a template"
|
|
813
|
-
msgstr ""
|
|
813
|
+
msgstr "Δημιουργήστε ένα πρότυπο"
|
|
814
814
|
|
|
815
815
|
#: templates/umap/user_templates.html:17
|
|
816
816
|
msgid "No template found."
|
|
817
|
-
msgstr ""
|
|
817
|
+
msgstr "Δεν βρέθηκε πρότυπο."
|
|
818
818
|
|
|
819
|
-
#: views.py:
|
|
819
|
+
#: views.py:235
|
|
820
820
|
msgid "Cannot delete a team with more than one member"
|
|
821
821
|
msgstr "Δεν είναι δυνατή η διαγραφή μιας ομάδας που έχει περισσότερα από ένα μέλη"
|
|
822
822
|
|
|
823
|
-
#: views.py:
|
|
823
|
+
#: views.py:239
|
|
824
824
|
#, python-format
|
|
825
825
|
msgid "Team “%(name)s” has been deleted"
|
|
826
826
|
msgstr "Η ομάδα «%(name)s» έχει διαγραφεί."
|
|
827
827
|
|
|
828
|
-
#: views.py:
|
|
828
|
+
#: views.py:464
|
|
829
829
|
msgid "View the map"
|
|
830
830
|
msgstr "Προβολή του χάρτη"
|
|
831
831
|
|
|
832
|
-
#: views.py:
|
|
832
|
+
#: views.py:867
|
|
833
833
|
msgid "See full screen"
|
|
834
834
|
msgstr "Προβολή πλήρους οθόνης"
|
|
835
835
|
|
|
836
|
-
#: views.py:
|
|
836
|
+
#: views.py:1010
|
|
837
837
|
msgid "Map editors updated with success!"
|
|
838
838
|
msgstr "Η ενημέρωση των συντακτών χάρτη ήταν επιτυχής!"
|
|
839
839
|
|
|
840
|
-
#: views.py:
|
|
840
|
+
#: views.py:1046
|
|
841
841
|
#, python-format
|
|
842
842
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
843
843
|
msgstr "Ο uMap σύνδεσμος επεξεργασίας του χάρτη σας: %(map_name)s"
|
|
844
844
|
|
|
845
|
-
#: views.py:
|
|
845
|
+
#: views.py:1049
|
|
846
846
|
#, python-format
|
|
847
847
|
msgid "Here is your secret edit link: %(link)s"
|
|
848
848
|
msgstr "Εδώ είναι ο μυστικός σύνδεσμος επεξεργασίας: %(link)s"
|
|
849
849
|
|
|
850
|
-
#: views.py:
|
|
850
|
+
#: views.py:1056
|
|
851
851
|
#, python-format
|
|
852
852
|
msgid "Can't send email to %(email)s"
|
|
853
853
|
msgstr "Αδυναμία αποστολής email στο %(email)s"
|
|
854
854
|
|
|
855
|
-
#: views.py:
|
|
855
|
+
#: views.py:1059
|
|
856
856
|
#, python-format
|
|
857
857
|
msgid "Email sent to %(email)s"
|
|
858
858
|
msgstr "Μήνυμα email στάλθηκε στο %(email)s"
|
|
859
859
|
|
|
860
|
-
#: views.py:
|
|
860
|
+
#: views.py:1070
|
|
861
861
|
msgid "Only its owner can delete the map."
|
|
862
862
|
msgstr "Μονό ο ιδιοκτήτης μπορεί να διαγράψει αυτό τον χάρτη."
|
|
863
863
|
|
|
864
|
-
#: views.py:
|
|
864
|
+
#: views.py:1076
|
|
865
865
|
msgid "Map successfully deleted."
|
|
866
866
|
msgstr "Ο χάρτης διαγράφηκε με επιτυχία."
|
|
867
867
|
|
|
868
|
-
#: views.py:
|
|
868
|
+
#: views.py:1102
|
|
869
869
|
#, python-format
|
|
870
870
|
msgid ""
|
|
871
871
|
"Your map has been cloned! If you want to edit this map from another "
|
|
872
872
|
"computer, please use this link: %(anonymous_url)s"
|
|
873
873
|
msgstr "Ο χάρτης κλωνοποιήθηκε! Αν θέλετε να τον επεξεργαστείτε από κάποιον άλλο υπολογιστή, παρακαλώ χρησιμοποιήστε αυτόν τον σύνδεσμο: %(anonymous_url)s"
|
|
874
874
|
|
|
875
|
-
#: views.py:
|
|
875
|
+
#: views.py:1107
|
|
876
876
|
msgid "Congratulations, your map has been cloned!"
|
|
877
877
|
msgstr "Συγχαρητήρια ο χάρτης σας κλωνοποιήθηκε!"
|
|
878
878
|
|
|
879
|
-
#: views.py:
|
|
879
|
+
#: views.py:1361
|
|
880
880
|
msgid "Layer successfully deleted."
|
|
881
881
|
msgstr "Το επίπεδο διαγράφηκε με επιτυχία."
|
|
882
882
|
|
|
883
|
-
#: views.py:
|
|
883
|
+
#: views.py:1383
|
|
884
884
|
msgid "Permissions updated with success!"
|
|
885
885
|
msgstr "Τα δικαιώματα ενημερώθηκαν με επιτυχία!"
|
|
886
|
+
|
|
887
|
+
#: views.py:1400
|
|
888
|
+
msgid "Generic"
|
|
889
|
+
msgstr "Γενικό"
|
|
Binary file
|
|
@@ -8,7 +8,7 @@ msgid ""
|
|
|
8
8
|
msgstr ""
|
|
9
9
|
"Project-Id-Version: PACKAGE VERSION\n"
|
|
10
10
|
"Report-Msgid-Bugs-To: \n"
|
|
11
|
-
"POT-Creation-Date: 2025-
|
|
11
|
+
"POT-Creation-Date: 2025-08-14 15:22+0000\n"
|
|
12
12
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
|
13
13
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
14
14
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
|
@@ -324,7 +324,7 @@ msgstr ""
|
|
|
324
324
|
msgid "%(current_user)s has no starred maps yet."
|
|
325
325
|
msgstr ""
|
|
326
326
|
|
|
327
|
-
#: templates/base.html:
|
|
327
|
+
#: templates/base.html:16
|
|
328
328
|
msgid ""
|
|
329
329
|
"uMap lets you create maps with OpenStreetMap layers in a minute and embed "
|
|
330
330
|
"them in your site."
|
|
@@ -822,61 +822,61 @@ msgstr ""
|
|
|
822
822
|
msgid "View the map"
|
|
823
823
|
msgstr ""
|
|
824
824
|
|
|
825
|
-
#: views.py:
|
|
825
|
+
#: views.py:867
|
|
826
826
|
msgid "See full screen"
|
|
827
827
|
msgstr ""
|
|
828
828
|
|
|
829
|
-
#: views.py:
|
|
829
|
+
#: views.py:1010
|
|
830
830
|
msgid "Map editors updated with success!"
|
|
831
831
|
msgstr ""
|
|
832
832
|
|
|
833
|
-
#: views.py:
|
|
833
|
+
#: views.py:1046
|
|
834
834
|
#, python-format
|
|
835
835
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
836
836
|
msgstr ""
|
|
837
837
|
|
|
838
|
-
#: views.py:
|
|
838
|
+
#: views.py:1049
|
|
839
839
|
#, python-format
|
|
840
840
|
msgid "Here is your secret edit link: %(link)s"
|
|
841
841
|
msgstr ""
|
|
842
842
|
|
|
843
|
-
#: views.py:
|
|
843
|
+
#: views.py:1056
|
|
844
844
|
#, python-format
|
|
845
845
|
msgid "Can't send email to %(email)s"
|
|
846
846
|
msgstr ""
|
|
847
847
|
|
|
848
|
-
#: views.py:
|
|
848
|
+
#: views.py:1059
|
|
849
849
|
#, python-format
|
|
850
850
|
msgid "Email sent to %(email)s"
|
|
851
851
|
msgstr ""
|
|
852
852
|
|
|
853
|
-
#: views.py:
|
|
853
|
+
#: views.py:1070
|
|
854
854
|
msgid "Only its owner can delete the map."
|
|
855
855
|
msgstr ""
|
|
856
856
|
|
|
857
|
-
#: views.py:
|
|
857
|
+
#: views.py:1076
|
|
858
858
|
msgid "Map successfully deleted."
|
|
859
859
|
msgstr ""
|
|
860
860
|
|
|
861
|
-
#: views.py:
|
|
861
|
+
#: views.py:1102
|
|
862
862
|
#, python-format
|
|
863
863
|
msgid ""
|
|
864
864
|
"Your map has been cloned! If you want to edit this map from another "
|
|
865
865
|
"computer, please use this link: %(anonymous_url)s"
|
|
866
866
|
msgstr ""
|
|
867
867
|
|
|
868
|
-
#: views.py:
|
|
868
|
+
#: views.py:1107
|
|
869
869
|
msgid "Congratulations, your map has been cloned!"
|
|
870
870
|
msgstr ""
|
|
871
871
|
|
|
872
|
-
#: views.py:
|
|
872
|
+
#: views.py:1361
|
|
873
873
|
msgid "Layer successfully deleted."
|
|
874
874
|
msgstr ""
|
|
875
875
|
|
|
876
|
-
#: views.py:
|
|
876
|
+
#: views.py:1383
|
|
877
877
|
msgid "Permissions updated with success!"
|
|
878
878
|
msgstr ""
|
|
879
879
|
|
|
880
|
-
#: views.py:
|
|
880
|
+
#: views.py:1400
|
|
881
881
|
msgid "Generic"
|
|
882
882
|
msgstr ""
|
|
Binary file
|
|
@@ -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-08-14 15:22+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"
|
|
@@ -153,11 +153,11 @@ msgstr "beállítások"
|
|
|
153
153
|
|
|
154
154
|
#: models.py:243
|
|
155
155
|
msgid "save as template"
|
|
156
|
-
msgstr ""
|
|
156
|
+
msgstr "mentés sablonként"
|
|
157
157
|
|
|
158
158
|
#: models.py:244
|
|
159
159
|
msgid "This map is a template map."
|
|
160
|
-
msgstr ""
|
|
160
|
+
msgstr "Ez a térkép egy sablontérkép."
|
|
161
161
|
|
|
162
162
|
#: models.py:420
|
|
163
163
|
msgid "Clone of"
|
|
@@ -177,19 +177,19 @@ msgstr "Réteg megjelenítése betöltéskor"
|
|
|
177
177
|
|
|
178
178
|
#: settings/base.py:283
|
|
179
179
|
msgid "uMap user documentation"
|
|
180
|
-
msgstr ""
|
|
180
|
+
msgstr "uMap felhasználói dokumentáció"
|
|
181
181
|
|
|
182
182
|
#: settings/base.py:288
|
|
183
183
|
msgid "Video tutorials"
|
|
184
|
-
msgstr ""
|
|
184
|
+
msgstr "Oktatóvideók"
|
|
185
185
|
|
|
186
186
|
#: settings/base.py:293
|
|
187
187
|
msgid "OpenStreetMap.org forum"
|
|
188
|
-
msgstr ""
|
|
188
|
+
msgstr "OpenStreetMap.org fórum"
|
|
189
189
|
|
|
190
190
|
#: settings/base.py:298
|
|
191
191
|
msgid "OpenStreetMap France forum"
|
|
192
|
-
msgstr ""
|
|
192
|
+
msgstr "OpenStreetMap France fórum"
|
|
193
193
|
|
|
194
194
|
#: settings/base.py:318
|
|
195
195
|
msgid "Art and Culture"
|
|
@@ -326,7 +326,7 @@ msgstr "%(current_user)s megcsillagozott térképeinek böngészése"
|
|
|
326
326
|
msgid "%(current_user)s has no starred maps yet."
|
|
327
327
|
msgstr "%(current_user)s felhasználónak még nincs megcsillagozott térképe."
|
|
328
328
|
|
|
329
|
-
#: templates/base.html:
|
|
329
|
+
#: templates/base.html:16
|
|
330
330
|
msgid ""
|
|
331
331
|
"uMap lets you create maps with OpenStreetMap layers in a minute and embed "
|
|
332
332
|
"them in your site."
|
|
@@ -502,11 +502,11 @@ msgstr "Térképeim"
|
|
|
502
502
|
#: templates/umap/dashboard_menu.html:11
|
|
503
503
|
#, python-format
|
|
504
504
|
msgid "My Templates (%(count)s)"
|
|
505
|
-
msgstr ""
|
|
505
|
+
msgstr "Sablonjaim (%(count)s)"
|
|
506
506
|
|
|
507
507
|
#: templates/umap/dashboard_menu.html:13 templates/umap/user_templates.html:6
|
|
508
508
|
msgid "My Templates"
|
|
509
|
-
msgstr ""
|
|
509
|
+
msgstr "Sablonjaim"
|
|
510
510
|
|
|
511
511
|
#: templates/umap/dashboard_menu.html:17
|
|
512
512
|
msgid "My profile"
|
|
@@ -530,15 +530,15 @@ msgstr "Be van jelentkezve. Továbblépés…"
|
|
|
530
530
|
|
|
531
531
|
#: templates/umap/map_list.html:15
|
|
532
532
|
msgid "template"
|
|
533
|
-
msgstr ""
|
|
533
|
+
msgstr "sablon"
|
|
534
534
|
|
|
535
|
-
#: templates/umap/map_list.html:18 views.py:
|
|
535
|
+
#: templates/umap/map_list.html:18 views.py:459
|
|
536
536
|
msgid "by"
|
|
537
537
|
msgstr "– készítette:"
|
|
538
538
|
|
|
539
539
|
#: templates/umap/map_list.html:22
|
|
540
540
|
msgid "See the template"
|
|
541
|
-
msgstr ""
|
|
541
|
+
msgstr "Sablon megtekintése"
|
|
542
542
|
|
|
543
543
|
#: templates/umap/map_list.html:22
|
|
544
544
|
msgid "See the map"
|
|
@@ -764,7 +764,7 @@ msgstr "Saját térkép keresése"
|
|
|
764
764
|
|
|
765
765
|
#: templates/umap/user_dashboard.html:11
|
|
766
766
|
msgid "Map’s name"
|
|
767
|
-
msgstr ""
|
|
767
|
+
msgstr "Térkép címe"
|
|
768
768
|
|
|
769
769
|
#: templates/umap/user_dashboard.html:12
|
|
770
770
|
#, python-format
|
|
@@ -789,93 +789,97 @@ msgstr "Új csoport"
|
|
|
789
789
|
|
|
790
790
|
#: templates/umap/user_templates.html:10
|
|
791
791
|
msgid "Search my templates"
|
|
792
|
-
msgstr ""
|
|
792
|
+
msgstr "Saját sablon keresése"
|
|
793
793
|
|
|
794
794
|
#: templates/umap/user_templates.html:11
|
|
795
795
|
msgid "Template’s name"
|
|
796
|
-
msgstr ""
|
|
796
|
+
msgstr "Sablon címe"
|
|
797
797
|
|
|
798
798
|
#: templates/umap/user_templates.html:12
|
|
799
799
|
#, python-format
|
|
800
800
|
msgid "Download %(count)s templates"
|
|
801
|
-
msgstr ""
|
|
801
|
+
msgstr "%(count)s sablon letöltése"
|
|
802
802
|
|
|
803
803
|
#: templates/umap/user_templates.html:15
|
|
804
804
|
msgid "You have no template yet."
|
|
805
|
-
msgstr ""
|
|
805
|
+
msgstr "Még nincs sablonja."
|
|
806
806
|
|
|
807
807
|
#: templates/umap/user_templates.html:16
|
|
808
808
|
msgid "Create a template"
|
|
809
|
-
msgstr ""
|
|
809
|
+
msgstr "Sablon létrehozása"
|
|
810
810
|
|
|
811
811
|
#: templates/umap/user_templates.html:17
|
|
812
812
|
msgid "No template found."
|
|
813
|
-
msgstr ""
|
|
813
|
+
msgstr "Nem található sablon."
|
|
814
814
|
|
|
815
|
-
#: views.py:
|
|
815
|
+
#: views.py:235
|
|
816
816
|
msgid "Cannot delete a team with more than one member"
|
|
817
817
|
msgstr "Egynél több tagú csoport nem törölhető"
|
|
818
818
|
|
|
819
|
-
#: views.py:
|
|
819
|
+
#: views.py:239
|
|
820
820
|
#, python-format
|
|
821
821
|
msgid "Team “%(name)s” has been deleted"
|
|
822
822
|
msgstr "%(name)s csoport törölve"
|
|
823
823
|
|
|
824
|
-
#: views.py:
|
|
824
|
+
#: views.py:464
|
|
825
825
|
msgid "View the map"
|
|
826
826
|
msgstr "Térkép megtekintése"
|
|
827
827
|
|
|
828
|
-
#: views.py:
|
|
828
|
+
#: views.py:867
|
|
829
829
|
msgid "See full screen"
|
|
830
830
|
msgstr "Teljes képernyős nézet megtekintése"
|
|
831
831
|
|
|
832
|
-
#: views.py:
|
|
832
|
+
#: views.py:1010
|
|
833
833
|
msgid "Map editors updated with success!"
|
|
834
834
|
msgstr "A térképszerkesztők sikeresen frissültek."
|
|
835
835
|
|
|
836
|
-
#: views.py:
|
|
836
|
+
#: views.py:1046
|
|
837
837
|
#, python-format
|
|
838
838
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
839
839
|
msgstr "A térképéhez tartozó uMap szerkesztési link: %(map_name)s"
|
|
840
840
|
|
|
841
|
-
#: views.py:
|
|
841
|
+
#: views.py:1049
|
|
842
842
|
#, python-format
|
|
843
843
|
msgid "Here is your secret edit link: %(link)s"
|
|
844
844
|
msgstr "Az Ön titkos szerkesztési linkje: %(link)s"
|
|
845
845
|
|
|
846
|
-
#: views.py:
|
|
846
|
+
#: views.py:1056
|
|
847
847
|
#, python-format
|
|
848
848
|
msgid "Can't send email to %(email)s"
|
|
849
849
|
msgstr "Nem sikerül e-mailt küldeni ide: %(email)s"
|
|
850
850
|
|
|
851
|
-
#: views.py:
|
|
851
|
+
#: views.py:1059
|
|
852
852
|
#, python-format
|
|
853
853
|
msgid "Email sent to %(email)s"
|
|
854
854
|
msgstr "E-mail elküldve ide: %(email)s"
|
|
855
855
|
|
|
856
|
-
#: views.py:
|
|
856
|
+
#: views.py:1070
|
|
857
857
|
msgid "Only its owner can delete the map."
|
|
858
858
|
msgstr "A térképet csak a tulajdonosa törölheti."
|
|
859
859
|
|
|
860
|
-
#: views.py:
|
|
860
|
+
#: views.py:1076
|
|
861
861
|
msgid "Map successfully deleted."
|
|
862
862
|
msgstr "Térkép sikeresen törölve."
|
|
863
863
|
|
|
864
|
-
#: views.py:
|
|
864
|
+
#: views.py:1102
|
|
865
865
|
#, python-format
|
|
866
866
|
msgid ""
|
|
867
867
|
"Your map has been cloned! If you want to edit this map from another "
|
|
868
868
|
"computer, please use this link: %(anonymous_url)s"
|
|
869
869
|
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
870
|
|
|
871
|
-
#: views.py:
|
|
871
|
+
#: views.py:1107
|
|
872
872
|
msgid "Congratulations, your map has been cloned!"
|
|
873
873
|
msgstr "Gratulálunk, elkészült a térképe másolata!"
|
|
874
874
|
|
|
875
|
-
#: views.py:
|
|
875
|
+
#: views.py:1361
|
|
876
876
|
msgid "Layer successfully deleted."
|
|
877
877
|
msgstr "A réteg sikeresen törlődött."
|
|
878
878
|
|
|
879
|
-
#: views.py:
|
|
879
|
+
#: views.py:1383
|
|
880
880
|
msgid "Permissions updated with success!"
|
|
881
881
|
msgstr "Az engedélyek sikeresen frissültek!"
|
|
882
|
+
|
|
883
|
+
#: views.py:1400
|
|
884
|
+
msgid "Generic"
|
|
885
|
+
msgstr "Általános"
|
|
Binary file
|