umap-project 2.4.0b2__tar.gz → 2.4.2__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-2.4.0b2 → umap_project-2.4.2}/.gitignore +3 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/PKG-INFO +3 -3
- {umap_project-2.4.0b2 → umap_project-2.4.2}/pyproject.toml +1 -1
- umap_project-2.4.2/umap/__init__.py +1 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/el/LC_MESSAGES/django.po +145 -90
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/en/LC_MESSAGES/django.po +3 -3
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/eu/LC_MESSAGES/django.po +145 -89
- umap_project-2.4.2/umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/pt/LC_MESSAGES/django.po +87 -37
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/base.css +20 -6
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/content.css +2 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/css/dialog.css +1 -1
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/css/importers.css +2 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/css/panel.css +2 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/css/tooltip.css +1 -1
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/img/16-white.svg +1 -3
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/img/source/16-white.svg +2 -4
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/js/components/alerts/alert.css +1 -1
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/js/components/alerts/alert.js +1 -1
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/js/modules/autocomplete.js +4 -4
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/js/modules/browser.js +11 -11
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/js/modules/caption.js +5 -5
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/js/modules/dompurify.js +2 -3
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/js/modules/facets.js +16 -10
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/js/modules/global.js +16 -16
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/js/modules/help.js +2 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/js/modules/importer.js +6 -6
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/js/modules/importers/geodatamine.js +4 -4
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/js/modules/importers/overpass.js +2 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/js/modules/orderable.js +2 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/js/modules/rules.js +13 -10
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/js/modules/sync/engine.js +3 -3
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/js/modules/sync/updaters.js +10 -11
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/js/modules/sync/websocket.js +1 -1
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/js/modules/ui/dialog.js +1 -1
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/js/modules/ui/panel.js +1 -1
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/js/modules/ui/tooltip.js +6 -6
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/js/modules/urls.js +1 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/js/modules/utils.js +19 -19
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/js/umap.controls.js +26 -28
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/js/umap.core.js +19 -15
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/js/umap.datalayer.permissions.js +15 -18
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/js/umap.features.js +102 -120
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/js/umap.forms.js +46 -74
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/js/umap.icon.js +17 -22
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/js/umap.js +126 -131
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/js/umap.layer.js +159 -167
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/js/umap.permissions.js +6 -9
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/js/umap.popup.js +20 -20
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/js/umap.share.js +9 -15
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/js/umap.slideshow.js +12 -14
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/js/umap.tableeditor.js +5 -5
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/am_ET.json +5 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/ar.json +5 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/ast.json +5 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/bg.json +5 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/br.json +5 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/ca.json +5 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/cs_CZ.json +5 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/da.json +5 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/de.json +5 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/el.json +10 -7
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/en.js +2 -1
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/en.json +5 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/en_US.json +5 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/es.js +9 -8
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/es.json +12 -9
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/et.json +5 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/fa_IR.json +5 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/fi.json +5 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/fr.js +2 -1
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/fr.json +5 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/gl.json +5 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/he.json +5 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/hr.json +5 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/hu.json +5 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/id.json +5 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/is.json +5 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/it.json +5 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/ja.json +5 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/ko.json +5 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/lt.json +5 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/ms.json +5 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/nl.json +5 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/no.json +5 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/pl.json +5 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/pl_PL.json +5 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/pt.js +61 -60
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/pt.json +64 -61
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/pt_BR.json +5 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/pt_PT.json +5 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/ro.json +5 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/ru.json +5 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/sk_SK.json +5 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/sl.json +5 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/sr.json +5 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/sv.json +5 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/th_TH.json +5 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/tr.json +5 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/uk_UA.json +5 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/vi.json +5 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/vi_VN.json +5 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/zh.json +5 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/zh_CN.json +5 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/zh_TW.Big5.json +5 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/zh_TW.json +5 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/map.css +22 -22
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/unittests/utils.js +5 -5
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vars.css +12 -1
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/storage.py +1 -1
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/integration/test_browser.py +76 -3
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/integration/test_edit_polygon.py +11 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/integration/test_map.py +29 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/integration/test_map_preview.py +36 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/integration/test_view_marker.py +2 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/test_views.py +2 -2
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/views.py +3 -2
- umap_project-2.4.0b2/umap/.DS_Store +0 -0
- umap_project-2.4.0b2/umap/__init__.py +0 -1
- umap_project-2.4.0b2/umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- umap_project-2.4.0b2/umap/static/.DS_Store +0 -0
- umap_project-2.4.0b2/umap/static/umap/.DS_Store +0 -0
- umap_project-2.4.0b2/umap/static/umap/favicons/.DS_Store +0 -0
- umap_project-2.4.0b2/umap/static/umap/fonts/.DS_Store +0 -0
- umap_project-2.4.0b2/umap/static/umap/img/.DS_Store +0 -0
- umap_project-2.4.0b2/umap/static/umap/img/source/.DS_Store +0 -0
- umap_project-2.4.0b2/umap/tests/.DS_Store +0 -0
- umap_project-2.4.0b2/umap/tests/integration/.DS_Store +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/LICENSE +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/README.md +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/admin.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/apps.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/autocomplete.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/bin/__init__.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/context_processors.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/decorators.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/fields.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/forms.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/am_ET/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/am_ET/LC_MESSAGES/django.po +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/ar/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/ar/LC_MESSAGES/django.po +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/ast/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/ast/LC_MESSAGES/django.po +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/bg/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/bg/LC_MESSAGES/django.po +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/br/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/br/LC_MESSAGES/django.po +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/ca/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/ca/LC_MESSAGES/django.po +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/cs_CZ/LC_MESSAGES/django.po +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/da/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/da/LC_MESSAGES/django.po +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/de/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/de/LC_MESSAGES/django.po +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/el/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/en/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/es/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/es/LC_MESSAGES/django.po +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/et/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/et/LC_MESSAGES/django.po +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/eu/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/fa_IR/LC_MESSAGES/django.po +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/fi/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/fi/LC_MESSAGES/django.po +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/fr/LC_MESSAGES/django.po +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/gl/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/gl/LC_MESSAGES/django.po +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/he/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/he/LC_MESSAGES/django.po +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/hr/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/hr/LC_MESSAGES/django.po +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/hu/LC_MESSAGES/django.po +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/id/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/id/LC_MESSAGES/django.po +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/is/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/is/LC_MESSAGES/django.po +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/it/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/it/LC_MESSAGES/django.po +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/ja/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/ja/LC_MESSAGES/django.po +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/ko/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/ko/LC_MESSAGES/django.po +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/lt/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/lt/LC_MESSAGES/django.po +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/ms/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/ms/LC_MESSAGES/django.po +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/nl/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/nl/LC_MESSAGES/django.po +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/no/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/no/LC_MESSAGES/django.po +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/pl/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/pl/LC_MESSAGES/django.po +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/pt_BR/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/pt_BR/LC_MESSAGES/django.po +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/pt_PT/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/pt_PT/LC_MESSAGES/django.po +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/ro/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/ro/LC_MESSAGES/django.po +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/ru/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/ru/LC_MESSAGES/django.po +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/si/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/si/LC_MESSAGES/django.po +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/sk_SK/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/sk_SK/LC_MESSAGES/django.po +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/sl/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/sl/LC_MESSAGES/django.po +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/sr/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/sr/LC_MESSAGES/django.po +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/sv/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/sv/LC_MESSAGES/django.po +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/th_TH/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/th_TH/LC_MESSAGES/django.po +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/tr/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/tr/LC_MESSAGES/django.po +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/uk_UA/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/uk_UA/LC_MESSAGES/django.po +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/vi/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/vi/LC_MESSAGES/django.po +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/zh/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/zh/LC_MESSAGES/django.po +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/locale/zh_TW/LC_MESSAGES/django.po +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/management/__init__.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/management/commands/__init__.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/management/commands/anonymous_edit_url.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/management/commands/generate_js_locale.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/management/commands/import_pictograms.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/management/commands/run_websocket_server.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/managers.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/middleware.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/migrations/0001_initial.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/migrations/0002_tilelayer_tms.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/migrations/0003_add_tilelayer.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/migrations/0004_add_licence.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/migrations/0005_remove_map_tilelayer.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/migrations/0006_auto_20190407_0719.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/migrations/0007_auto_20190416_1757.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/migrations/0008_alter_map_settings.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/migrations/0009_star.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/migrations/0010_alter_map_edit_status_alter_map_share_status.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/migrations/0011_alter_map_edit_status_alter_map_share_status.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/migrations/0012_datalayer_settings.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/migrations/0013_datalayer_edit_status.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/migrations/0014_map_created_at.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/migrations/0015_alter_pictogram_pictogram.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/migrations/0016_pictogram_category.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/migrations/0017_migrate_to_openstreetmap_oauth2.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/migrations/0018_datalayer_uuid.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/migrations/0019_migrate_internal_remote_datalayers.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/migrations/0020_alter_tilelayer_url_template.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/migrations/0021_remove_map_description.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/migrations/__init__.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/models.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/settings/__init__.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/settings/base.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/settings/dev.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/settings/local.py.sample +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/.gitignore +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/bitbucket.png +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/css/icon.css +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/css/window.css +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/favicons/apple-touch-icon.png +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/favicons/favicon.ico +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/favicons/icon-192.png +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/favicons/icon-512.png +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/favicons/icon.svg +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/font/FiraSans-Light.woff +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/font/FiraSans-Light.woff2 +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/font/FiraSans-LightItalic.woff +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/font/FiraSans-LightItalic.woff2 +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/font/FiraSans-SemiBold.woff +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/font/FiraSans-SemiBold.woff2 +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/font.css +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/github.png +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/img/16.svg +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/img/24-white.svg +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/img/24.svg +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/img/alert-icon-error.svg +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/img/alert-icon-info.svg +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/img/alert-icon-success.svg +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/img/edit.svg +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/img/icon-bg.png +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/img/icon-delete.svg +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/img/icon-download.svg +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/img/icon-duplicate.svg +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/img/icon-edit.svg +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/img/icon-external-link.svg +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/img/icon-share.svg +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/img/icon-view.svg +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/img/importers/communesfr.svg +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/img/importers/datasets.svg +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/img/importers/geodatamine.svg +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/img/importers/overpass.svg +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/img/importers/random.svg +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/img/importers/random1.svg +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/img/importers/random2.svg +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/img/logo.svg +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/img/logo_filigree.png +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/img/logo_small.svg +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/img/marker.png +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/img/marker.svg +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/img/opensource.svg +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/img/osm.svg +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/img/search.gif +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/img/source/16.svg +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/img/source/24-white.svg +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/img/source/24.svg +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/js/components/base.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/js/components/fragment.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/js/modules/i18n.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/js/modules/importers/communesfr.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/js/modules/importers/datasets.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/js/modules/leaflet-configure.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/js/modules/request.js +1 -1
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/js/modules/schema.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/am_ET.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/ar.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/ast.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/bg.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/br.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/ca.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/cs_CZ.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/da.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/de.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/el.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/et.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/eu.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/eu.json +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/fa_IR.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/fi.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/gl.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/he.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/hr.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/hu.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/id.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/is.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/it.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/ja.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/ko.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/lt.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/ms.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/nl.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/no.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/pl.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/pt_BR.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/pt_PT.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/ro.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/ru.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/si.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/si.json +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/sk_SK.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/sl.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/sr.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/sv.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/th_TH.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/tr.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/uk_UA.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/vi.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/zh.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/locale/zh_TW.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/nav.css +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/openstreetmap.png +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/test/.eslintrc +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/test/DataLayer.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/test/Feature.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/test/Map.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/test/Marker.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/test/Polygon.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/test/Polyline.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/test/TableEditor.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/test/Util.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/test/_pre.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/test/index.html +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/theme.css +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/twitter.png +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/unittests/URLs.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/unittests/sync.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/colorbrewer/colorbrewer.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.css +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/csv2geojson/csv2geojson.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/dompurify/purify.es.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/dompurify/purify.es.mjs.map +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/editable/Leaflet.Editable.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/editable/Path.Drag.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/editinosm/Leaflet.EditInOSM.css +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/editinosm/Leaflet.EditInOSM.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/editinosm/edit-in-osm.png +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/formbuilder/Leaflet.FormBuilder.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/fullscreen/Leaflet.fullscreen.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/fullscreen/Leaflet.fullscreen.min.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/fullscreen/fullscreen.png +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/fullscreen/fullscreen@2x.png +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/fullscreen/leaflet.fullscreen.css +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/georsstogeojson/GeoRSSToGeoJSON.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/hash/leaflet-hash.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/heat/leaflet-heat.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/i18n/Leaflet.i18n.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/iconlayers/check.png +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/iconlayers/iconLayers.css +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/iconlayers/iconLayers.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/iconlayers/transparent-pixel.png +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/leaflet/images/layers-2x.png +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/leaflet/images/layers.png +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/leaflet/images/marker-icon-2x.png +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/leaflet/images/marker-icon.png +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/leaflet/images/marker-shadow.png +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/leaflet/leaflet-src.esm.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/leaflet/leaflet-src.esm.js.map +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/leaflet/leaflet-src.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/leaflet/leaflet-src.js.map +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/leaflet/leaflet.css +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/leaflet/leaflet.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/leaflet/leaflet.js.map +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/loading/Control.Loading.css +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/loading/Control.Loading.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.css +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.css.map +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js.map +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/markercluster/MarkerCluster.Default.css +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/markercluster/MarkerCluster.css +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/markercluster/WhereAreTheJavascriptFiles.txt +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js.map +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/markercluster/leaflet.markercluster.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/markercluster/leaflet.markercluster.js.map +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/measurable/Leaflet.Measurable.css +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/measurable/Leaflet.Measurable.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/minimap/Control.MiniMap.min.css +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/minimap/Control.MiniMap.min.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/minimap/images/toggle.png +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/minimap/images/toggle.svg +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/osmtogeojson/osmtogeojson.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/photon/leaflet.photon.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/simple-statistics/simple-statistics.min.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/simple-statistics/simple-statistics.min.js.map +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/togeojson/togeojson.umd.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/togeojson/togeojson.umd.js.map +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/togpx/togpx.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/tokml/tokml.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/toolbar/leaflet.toolbar-src.css +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/toolbar/leaflet.toolbar-src.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/toolbar/leaflet.toolbar.css +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/static/umap/vendors/toolbar/leaflet.toolbar.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/templates/404.html +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/templates/500.html +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/templates/auth/user_detail.html +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/templates/auth/user_form.html +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/templates/auth/user_stars.html +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/templates/base.html +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/templates/registration/login.html +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/templates/umap/about.html +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/templates/umap/about_summary.html +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/templates/umap/branding.html +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/templates/umap/components/alerts/alert.html +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/templates/umap/content.html +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/templates/umap/content_footer.html +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/templates/umap/css.html +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/templates/umap/footer.html +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/templates/umap/header.html +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/templates/umap/home.html +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/templates/umap/js.html +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/templates/umap/locale.js +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/templates/umap/login_popup_end.html +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/templates/umap/map_detail.html +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/templates/umap/map_fragment.html +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/templates/umap/map_init.html +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/templates/umap/map_list.html +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/templates/umap/map_table.html +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/templates/umap/messages.html +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/templates/umap/navigation.html +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/templates/umap/password_change.html +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/templates/umap/password_change_done.html +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/templates/umap/search.html +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/templates/umap/search_bar.html +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/templates/umap/success.html +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/templates/umap/user_dashboard.html +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/templatetags/__init__.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/templatetags/umap_tags.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/__init__.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/base.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/conftest.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/fixtures/choropleth_region_chomage.geojson +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/fixtures/circle.svg +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/fixtures/display_on_load.umap +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/fixtures/star.svg +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/fixtures/test_upload_data.csv +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/fixtures/test_upload_data.gpx +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/fixtures/test_upload_data.json +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/fixtures/test_upload_data.kml +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/fixtures/test_upload_data.umap +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/fixtures/test_upload_data_osm.json +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/fixtures/test_upload_empty_coordinates.json +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/fixtures/test_upload_missing_name.json +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/fixtures/test_upload_non_linear_ring.json +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/integration/__init__.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/integration/conftest.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/integration/test_anonymous_owned_map.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/integration/test_basics.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/integration/test_caption.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/integration/test_choropleth.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/integration/test_conditional_rules.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/integration/test_dashboard.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/integration/test_datalayer.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/integration/test_draw_polygon.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/integration/test_draw_polyline.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/integration/test_edit_datalayer.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/integration/test_edit_map.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/integration/test_edit_marker.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/integration/test_export_map.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/integration/test_facets_browser.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/integration/test_features_id_generation.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/integration/test_import.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/integration/test_map_list.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/integration/test_optimistic_merge.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/integration/test_owned_map.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/integration/test_picto.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/integration/test_querystring.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/integration/test_share.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/integration/test_slideshow.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/integration/test_star.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/integration/test_statics.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/integration/test_tableeditor.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/integration/test_tilelayer.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/integration/test_view_polygon.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/integration/test_view_polyline.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/integration/test_websocket_sync.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/settings.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/test_datalayer.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/test_datalayer_views.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/test_licence.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/test_map.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/test_map_views.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/test_merge_features.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/test_tilelayer.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/tests/test_utils.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/urls.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/utils.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/websocket_server.py +0 -0
- {umap_project-2.4.0b2 → umap_project-2.4.2}/umap/wsgi.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
2
|
Name: umap-project
|
|
3
|
-
Version: 2.4.
|
|
3
|
+
Version: 2.4.2
|
|
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>
|
|
@@ -37,7 +37,7 @@ Requires-Dist: mkdocs-material==9.5.27; extra == 'dev'
|
|
|
37
37
|
Requires-Dist: mkdocs-static-i18n==1.2.3; extra == 'dev'
|
|
38
38
|
Requires-Dist: mkdocs==1.6.0; extra == 'dev'
|
|
39
39
|
Requires-Dist: pymdown-extensions==10.8.1; extra == 'dev'
|
|
40
|
-
Requires-Dist: ruff==0.4.
|
|
40
|
+
Requires-Dist: ruff==0.4.10; extra == 'dev'
|
|
41
41
|
Requires-Dist: vermin==1.6.0; extra == 'dev'
|
|
42
42
|
Provides-Extra: docker
|
|
43
43
|
Requires-Dist: uwsgi==2.0.26; extra == 'docker'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
VERSION = "2.4.2"
|
|
@@ -8,14 +8,14 @@
|
|
|
8
8
|
# Emmanuel Verigos <emverigos@geodev.gr>, 2017
|
|
9
9
|
# Jim Kats <jim-kats@hotmail.com>, 2022-2023
|
|
10
10
|
# prendi <prendi@openmailbox.org>, 2017
|
|
11
|
-
# Yannis Kaskamanidis <kiolalis@gmail.com>, 2021,2023
|
|
11
|
+
# Yannis Kaskamanidis <kiolalis@gmail.com>, 2021,2023-2024
|
|
12
12
|
msgid ""
|
|
13
13
|
msgstr ""
|
|
14
14
|
"Project-Id-Version: uMap\n"
|
|
15
15
|
"Report-Msgid-Bugs-To: \n"
|
|
16
|
-
"POT-Creation-Date: 2024-
|
|
16
|
+
"POT-Creation-Date: 2024-06-26 20:59+0000\n"
|
|
17
17
|
"PO-Revision-Date: 2013-11-22 14:00+0000\n"
|
|
18
|
-
"Last-Translator: Yannis Kaskamanidis <kiolalis@gmail.com>, 2021,2023\n"
|
|
18
|
+
"Last-Translator: Yannis Kaskamanidis <kiolalis@gmail.com>, 2021,2023-2024\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"
|
|
@@ -29,117 +29,117 @@ msgstr "Επεξεργάσιμο μόνο με μυστικό σύνδεσμο"
|
|
|
29
29
|
|
|
30
30
|
#: forms.py:45 forms.py:71
|
|
31
31
|
msgid "Everyone can edit"
|
|
32
|
-
msgstr "Όλοι"
|
|
32
|
+
msgstr "Όλοι μπορούν να επεξεργαστούν"
|
|
33
33
|
|
|
34
|
-
#: forms.py:69 models.py:
|
|
34
|
+
#: forms.py:69 models.py:389
|
|
35
35
|
msgid "Inherit"
|
|
36
|
-
msgstr "
|
|
36
|
+
msgstr "Κληρονόμοι"
|
|
37
37
|
|
|
38
38
|
#: middleware.py:13
|
|
39
39
|
msgid "Site is readonly for maintenance"
|
|
40
40
|
msgstr "Λόγω συντήρησης, ο ιστότοπος είναι μόνο για ανάγνωση"
|
|
41
41
|
|
|
42
|
-
#: models.py:
|
|
42
|
+
#: models.py:53
|
|
43
43
|
msgid "name"
|
|
44
44
|
msgstr "όνομα"
|
|
45
45
|
|
|
46
|
-
#: models.py:
|
|
46
|
+
#: models.py:84
|
|
47
47
|
msgid "details"
|
|
48
48
|
msgstr "λεπτομέρειες"
|
|
49
49
|
|
|
50
|
-
#: models.py:
|
|
50
|
+
#: models.py:85
|
|
51
51
|
msgid "Link to a page where the licence is detailed."
|
|
52
|
-
msgstr "Σύνδεσμος σελίδας
|
|
52
|
+
msgstr "Σύνδεσμος σελίδας αναλυτικής Άδειας Χρήσης."
|
|
53
53
|
|
|
54
|
-
#: models.py:
|
|
54
|
+
#: models.py:95
|
|
55
55
|
msgid "URL template using OSM tile format"
|
|
56
56
|
msgstr "Πρότυπο URL που χρησιμοποιεί μορφοποίηση πλακιδίων OSM"
|
|
57
57
|
|
|
58
|
-
#: models.py:
|
|
58
|
+
#: models.py:101
|
|
59
59
|
msgid "Order of the tilelayers in the edit box"
|
|
60
60
|
msgstr "Σειρά των υπόβαθρων στο πλαίσιο επεξεργασίας"
|
|
61
61
|
|
|
62
|
-
#: models.py:
|
|
62
|
+
#: models.py:147 models.py:390
|
|
63
63
|
msgid "Everyone"
|
|
64
64
|
msgstr "Οποιοσδήποτε"
|
|
65
65
|
|
|
66
|
-
#: models.py:
|
|
66
|
+
#: models.py:148 models.py:154 models.py:391
|
|
67
67
|
msgid "Editors only"
|
|
68
68
|
msgstr "Μόνο οι συντάκτες"
|
|
69
69
|
|
|
70
|
-
#: models.py:
|
|
70
|
+
#: models.py:149 models.py:392
|
|
71
71
|
msgid "Owner only"
|
|
72
72
|
msgstr "Μόνο ο κάτοχος"
|
|
73
73
|
|
|
74
|
-
#: models.py:
|
|
74
|
+
#: models.py:152
|
|
75
75
|
msgid "Everyone (public)"
|
|
76
76
|
msgstr "Όλοι (δημόσιος)"
|
|
77
77
|
|
|
78
|
-
#: models.py:
|
|
78
|
+
#: models.py:153
|
|
79
79
|
msgid "Anyone with link"
|
|
80
80
|
msgstr "Οποιοδήποτε με τον σύνδεσμο"
|
|
81
81
|
|
|
82
|
-
#: models.py:
|
|
82
|
+
#: models.py:155
|
|
83
83
|
msgid "Blocked"
|
|
84
84
|
msgstr "Αποκλεισμένος"
|
|
85
85
|
|
|
86
|
-
#: models.py:
|
|
87
|
-
msgid "description"
|
|
88
|
-
msgstr "περιγραφή"
|
|
89
|
-
|
|
90
|
-
#: models.py:156
|
|
86
|
+
#: models.py:158
|
|
91
87
|
msgid "center"
|
|
92
88
|
msgstr "κέντρο"
|
|
93
89
|
|
|
94
|
-
#: models.py:
|
|
90
|
+
#: models.py:159
|
|
95
91
|
msgid "zoom"
|
|
96
92
|
msgstr "εστίαση"
|
|
97
93
|
|
|
98
|
-
#: models.py:
|
|
94
|
+
#: models.py:161
|
|
99
95
|
msgid "locate"
|
|
100
96
|
msgstr "εντοπισμός θέσης"
|
|
101
97
|
|
|
102
|
-
#: models.py:
|
|
98
|
+
#: models.py:161
|
|
103
99
|
msgid "Locate user on load?"
|
|
104
100
|
msgstr "Εντοπισμός θέσης χρήστη κατά την φόρτωση;"
|
|
105
101
|
|
|
106
|
-
#: models.py:
|
|
102
|
+
#: models.py:165
|
|
107
103
|
msgid "Choose the map licence."
|
|
108
104
|
msgstr "Επιλογή άδειας χρήσης του χάρτη."
|
|
109
105
|
|
|
110
|
-
#: models.py:
|
|
106
|
+
#: models.py:166
|
|
111
107
|
msgid "licence"
|
|
112
108
|
msgstr "άδεια"
|
|
113
109
|
|
|
114
|
-
#: models.py:
|
|
110
|
+
#: models.py:177
|
|
115
111
|
msgid "owner"
|
|
116
112
|
msgstr "ιδιοκτήτης"
|
|
117
113
|
|
|
118
|
-
#: models.py:
|
|
114
|
+
#: models.py:181
|
|
119
115
|
msgid "editors"
|
|
120
116
|
msgstr "συντάκτες"
|
|
121
117
|
|
|
122
|
-
#: models.py:
|
|
118
|
+
#: models.py:186 models.py:413
|
|
123
119
|
msgid "edit status"
|
|
124
120
|
msgstr "κατάσταση επεξεργασίας"
|
|
125
121
|
|
|
126
|
-
#: models.py:
|
|
122
|
+
#: models.py:191
|
|
127
123
|
msgid "share status"
|
|
128
124
|
msgstr "κατάσταση διαμοιρασμού"
|
|
129
125
|
|
|
130
|
-
#: models.py:
|
|
126
|
+
#: models.py:194 models.py:408
|
|
131
127
|
msgid "settings"
|
|
132
128
|
msgstr "ρυθμίσεις"
|
|
133
129
|
|
|
134
|
-
#: models.py:
|
|
130
|
+
#: models.py:330
|
|
135
131
|
msgid "Clone of"
|
|
136
132
|
msgstr "Κλώνος του"
|
|
137
133
|
|
|
138
|
-
#: models.py:
|
|
134
|
+
#: models.py:399
|
|
135
|
+
msgid "description"
|
|
136
|
+
msgstr "περιγραφή"
|
|
137
|
+
|
|
138
|
+
#: models.py:403
|
|
139
139
|
msgid "display on load"
|
|
140
140
|
msgstr "εμφάνιση κατά τη φόρτωση"
|
|
141
141
|
|
|
142
|
-
#: models.py:
|
|
142
|
+
#: models.py:404
|
|
143
143
|
msgid "Display this layer on load."
|
|
144
144
|
msgstr "Εμφάνιση αυτού του επιπέδου κατά την φόρτωση."
|
|
145
145
|
|
|
@@ -159,7 +159,7 @@ msgstr "Ο %(current_user)s χρήστης δεν έχει χάρτες."
|
|
|
159
159
|
|
|
160
160
|
#: templates/auth/user_form.html:6
|
|
161
161
|
msgid "My Maps"
|
|
162
|
-
msgstr ""
|
|
162
|
+
msgstr "Οι χάρτες μου"
|
|
163
163
|
|
|
164
164
|
#: templates/auth/user_form.html:7
|
|
165
165
|
msgid "My Profile"
|
|
@@ -268,13 +268,59 @@ msgstr "Δημιουργία χάρτη"
|
|
|
268
268
|
msgid "Play with the demo"
|
|
269
269
|
msgstr "Δοκιμή με την έκδοση επίδειξης"
|
|
270
270
|
|
|
271
|
-
#: templates/umap/
|
|
271
|
+
#: templates/umap/components/alerts/alert.html:14
|
|
272
|
+
#: templates/umap/components/alerts/alert.html:49
|
|
273
|
+
#: templates/umap/components/alerts/alert.html:71
|
|
274
|
+
msgid "Close"
|
|
275
|
+
msgstr "Κλείσιμο"
|
|
276
|
+
|
|
277
|
+
#: templates/umap/components/alerts/alert.html:27
|
|
278
|
+
#, python-format
|
|
279
|
+
msgid ""
|
|
280
|
+
"Pro-tip: to easily find back your maps, <a href=\"%(login_url)s\" "
|
|
281
|
+
"target=\"_blank\">create an account</a> or <a href=\"%(login_url)s\" "
|
|
282
|
+
"target=\"_blank\">log in</a>."
|
|
283
|
+
msgstr "Επισήμανση: για να βρίσκετε εύκολα τους χάρτες σας, <a href=\"%(login_url)s\" target=\"_blank\">δημιουργήστε λογαριασμό</a> ή <a href=\"%(login_url)s\" target=\"_blank\">συνδεθείτε</a>."
|
|
284
|
+
|
|
285
|
+
#: templates/umap/components/alerts/alert.html:30
|
|
286
|
+
msgid "Here is your secret link to edit the map, please keep it safe:"
|
|
287
|
+
msgstr "Αυτός είναι ο μυστικός σας σύνδεσμος για να επεξεργαστείτε τον χάρτη, διατηρήστε τον ασφαλή:"
|
|
288
|
+
|
|
289
|
+
#: templates/umap/components/alerts/alert.html:33
|
|
290
|
+
msgid "Copy link"
|
|
291
|
+
msgstr "Αντιγραφή συνδέσμου"
|
|
292
|
+
|
|
293
|
+
#: templates/umap/components/alerts/alert.html:39
|
|
294
|
+
msgid "Enter your email address to receive the secret link:"
|
|
295
|
+
msgstr "Καταχωρίστε το email σας για να λάβετε τον μυστικό σύνδεσμο:"
|
|
296
|
+
|
|
297
|
+
#: templates/umap/components/alerts/alert.html:41
|
|
298
|
+
msgid "Email"
|
|
299
|
+
msgstr "Email"
|
|
300
|
+
|
|
301
|
+
#: templates/umap/components/alerts/alert.html:42
|
|
302
|
+
msgid "Send me the link"
|
|
303
|
+
msgstr "Στείλε μου τον σύνδεσμο"
|
|
304
|
+
|
|
305
|
+
#: templates/umap/components/alerts/alert.html:63
|
|
306
|
+
msgid "See their edits in another tab"
|
|
307
|
+
msgstr "Δείτε τις επεξεργασίες τους σε άλλη καρτέλα"
|
|
308
|
+
|
|
309
|
+
#: templates/umap/components/alerts/alert.html:64
|
|
310
|
+
msgid "Keep your changes and loose theirs"
|
|
311
|
+
msgstr "Διατηρήστε τις αλλαγές σας και αγνοήστε τις δικές τους"
|
|
312
|
+
|
|
313
|
+
#: templates/umap/components/alerts/alert.html:65
|
|
314
|
+
msgid "Keep their changes and loose yours"
|
|
315
|
+
msgstr "Κρατήστε τις αλλαγές τους και αγνοήστε τις δικές σας"
|
|
316
|
+
|
|
317
|
+
#: templates/umap/content.html:24
|
|
272
318
|
msgid ""
|
|
273
319
|
"This instance of uMap is currently in read only mode, no creation/edit is "
|
|
274
320
|
"allowed."
|
|
275
321
|
msgstr "Αυτό το στιγμιότυπο του uMap βρίσκεται για την ώρα σε λειτουργία μόνο για ανάγνωση, δεν επιτρέπεται καμία δημιουργία/επεξεργασία."
|
|
276
322
|
|
|
277
|
-
#: templates/umap/content.html:
|
|
323
|
+
#: templates/umap/content.html:32
|
|
278
324
|
#, python-format
|
|
279
325
|
msgid ""
|
|
280
326
|
"This is a demo instance, used for tests and pre-rolling releases. If you "
|
|
@@ -283,11 +329,11 @@ msgid ""
|
|
|
283
329
|
"instance, it's <a href=\"%(repo_url)s\">open source</a>!"
|
|
284
330
|
msgstr "Αυτή είναι μια έκδοση επίδειξης, που χρησιμοποιήθηκε για δοκιμές και προκαταρκτικές εκδόσεις. Αν χρειάζεστε μια σταθερή έκδοση, παρακαλώ χρησιμοποιήστε την <a href=\"%(stable_url)s\">%(stable_url)s</a>. Μπορείτε, επίσης, να φιλοξενήσετε τη δική σας έκδοση, είναι <a href=\"%(repo_url)s\">ανοικτού κώδικα</a>!"
|
|
285
331
|
|
|
286
|
-
#: templates/umap/home.html:
|
|
332
|
+
#: templates/umap/home.html:11
|
|
287
333
|
msgid "Map of the uMaps"
|
|
288
334
|
msgstr "Χάρτης των uMaps"
|
|
289
335
|
|
|
290
|
-
#: templates/umap/home.html:
|
|
336
|
+
#: templates/umap/home.html:17
|
|
291
337
|
msgid "Get inspired, browse maps"
|
|
292
338
|
msgstr "Περιηγήσου και αναζήτησε την έμπνευση στους χάρτες!"
|
|
293
339
|
|
|
@@ -295,7 +341,7 @@ msgstr "Περιηγήσου και αναζήτησε την έμπνευση
|
|
|
295
341
|
msgid "You are logged in. Continuing..."
|
|
296
342
|
msgstr "Είστε συνδεδεμένοι. Συνέχεια..."
|
|
297
343
|
|
|
298
|
-
#: templates/umap/map_list.html:9 views.py:
|
|
344
|
+
#: templates/umap/map_list.html:9 views.py:348
|
|
299
345
|
msgid "by"
|
|
300
346
|
msgstr "από"
|
|
301
347
|
|
|
@@ -309,15 +355,15 @@ msgstr "Όνομα"
|
|
|
309
355
|
|
|
310
356
|
#: templates/umap/map_table.html:7
|
|
311
357
|
msgid "Preview"
|
|
312
|
-
msgstr ""
|
|
358
|
+
msgstr "Προεπισκόπηση"
|
|
313
359
|
|
|
314
360
|
#: templates/umap/map_table.html:8
|
|
315
361
|
msgid "Who can see"
|
|
316
|
-
msgstr ""
|
|
362
|
+
msgstr "Ποιος μπορεί να προβάλλει"
|
|
317
363
|
|
|
318
364
|
#: templates/umap/map_table.html:9
|
|
319
365
|
msgid "Who can edit"
|
|
320
|
-
msgstr ""
|
|
366
|
+
msgstr "Ποιος μπορεί να επεξεργαστεί"
|
|
321
367
|
|
|
322
368
|
#: templates/umap/map_table.html:10
|
|
323
369
|
msgid "Last save"
|
|
@@ -331,60 +377,60 @@ msgstr "Κάτοχος"
|
|
|
331
377
|
msgid "Actions"
|
|
332
378
|
msgstr "Ενέργειες"
|
|
333
379
|
|
|
334
|
-
#: templates/umap/map_table.html:
|
|
380
|
+
#: templates/umap/map_table.html:26 templates/umap/map_table.html:28
|
|
335
381
|
msgid "Open preview"
|
|
336
|
-
msgstr ""
|
|
382
|
+
msgstr "Άνοιγμα προεπισκόπησης"
|
|
337
383
|
|
|
338
|
-
#: templates/umap/map_table.html:
|
|
384
|
+
#: templates/umap/map_table.html:48 templates/umap/map_table.html:50
|
|
339
385
|
msgid "Share"
|
|
340
386
|
msgstr "Διαμοιρασμός"
|
|
341
387
|
|
|
342
|
-
#: templates/umap/map_table.html:
|
|
388
|
+
#: templates/umap/map_table.html:54 templates/umap/map_table.html:56
|
|
343
389
|
msgid "Edit"
|
|
344
390
|
msgstr "Επεξεργασία"
|
|
345
391
|
|
|
346
|
-
#: templates/umap/map_table.html:
|
|
392
|
+
#: templates/umap/map_table.html:60 templates/umap/map_table.html:62
|
|
347
393
|
msgid "Download"
|
|
348
394
|
msgstr "Λήψη"
|
|
349
395
|
|
|
350
|
-
#: templates/umap/map_table.html:
|
|
396
|
+
#: templates/umap/map_table.html:66 templates/umap/map_table.html:68
|
|
351
397
|
msgid "Clone"
|
|
352
|
-
msgstr ""
|
|
398
|
+
msgstr "Κλωνοποίηση"
|
|
353
399
|
|
|
354
|
-
#: templates/umap/map_table.html:
|
|
400
|
+
#: templates/umap/map_table.html:77 templates/umap/map_table.html:79
|
|
355
401
|
msgid "Delete"
|
|
356
|
-
msgstr ""
|
|
402
|
+
msgstr "Διαγραφή"
|
|
357
403
|
|
|
358
|
-
#: templates/umap/map_table.html:
|
|
404
|
+
#: templates/umap/map_table.html:93
|
|
359
405
|
msgid "first"
|
|
360
|
-
msgstr ""
|
|
406
|
+
msgstr "πρώτο"
|
|
361
407
|
|
|
362
|
-
#: templates/umap/map_table.html:
|
|
408
|
+
#: templates/umap/map_table.html:94
|
|
363
409
|
msgid "previous"
|
|
364
|
-
msgstr ""
|
|
410
|
+
msgstr "προηγούμενο"
|
|
365
411
|
|
|
366
|
-
#: templates/umap/map_table.html:
|
|
412
|
+
#: templates/umap/map_table.html:102
|
|
367
413
|
#, python-format
|
|
368
414
|
msgid "Page %(maps_number)s of %(num_pages)s"
|
|
369
|
-
msgstr ""
|
|
415
|
+
msgstr "Σελίδα %(maps_number)s από %(num_pages)s"
|
|
370
416
|
|
|
371
|
-
#: templates/umap/map_table.html:
|
|
417
|
+
#: templates/umap/map_table.html:107
|
|
372
418
|
msgid "next"
|
|
373
|
-
msgstr ""
|
|
419
|
+
msgstr "επόμενο"
|
|
374
420
|
|
|
375
|
-
#: templates/umap/map_table.html:
|
|
421
|
+
#: templates/umap/map_table.html:108
|
|
376
422
|
msgid "last"
|
|
377
|
-
msgstr ""
|
|
423
|
+
msgstr "τελευταίο"
|
|
378
424
|
|
|
379
|
-
#: templates/umap/map_table.html:
|
|
425
|
+
#: templates/umap/map_table.html:116
|
|
380
426
|
#, python-format
|
|
381
427
|
msgid "Lines per page: %(per_page)s"
|
|
382
|
-
msgstr ""
|
|
428
|
+
msgstr "Γραμμές ανά σελίδα: %(per_page)s"
|
|
383
429
|
|
|
384
|
-
#: templates/umap/map_table.html:
|
|
430
|
+
#: templates/umap/map_table.html:121
|
|
385
431
|
#, python-format
|
|
386
432
|
msgid "%(count)s maps"
|
|
387
|
-
msgstr ""
|
|
433
|
+
msgstr "%(count)s χάρτες"
|
|
388
434
|
|
|
389
435
|
#: templates/umap/navigation.html:10 templates/umap/user_dashboard.html:4
|
|
390
436
|
msgid "My Dashboard"
|
|
@@ -452,18 +498,18 @@ msgstr "Η αλλαγή του κωδικού πρόσβασης ήταν επι
|
|
|
452
498
|
msgid "Your password was changed."
|
|
453
499
|
msgstr "Ο κωδικός πρόσβασής σας άλλαξε."
|
|
454
500
|
|
|
455
|
-
#: templates/umap/search.html:
|
|
501
|
+
#: templates/umap/search.html:13
|
|
456
502
|
#, python-format
|
|
457
503
|
msgid "%(count)s map found:"
|
|
458
504
|
msgid_plural "%(count)s maps found:"
|
|
459
505
|
msgstr[0] "%(count)s χάρτης βρέθηκε:"
|
|
460
506
|
msgstr[1] "%(count)s χάρτες βρέθηκαν:"
|
|
461
507
|
|
|
462
|
-
#: templates/umap/search.html:
|
|
508
|
+
#: templates/umap/search.html:21
|
|
463
509
|
msgid "No map found."
|
|
464
510
|
msgstr "Δεν βρέθηκε κανένας χάρτης."
|
|
465
511
|
|
|
466
|
-
#: templates/umap/search.html:
|
|
512
|
+
#: templates/umap/search.html:24
|
|
467
513
|
msgid "Latest created maps"
|
|
468
514
|
msgstr "Χάρτες που δημιουργήθηκαν τελευταίοι"
|
|
469
515
|
|
|
@@ -475,78 +521,87 @@ msgstr "Αναζήτηση χαρτών"
|
|
|
475
521
|
msgid "Search"
|
|
476
522
|
msgstr "Αναζήτηση"
|
|
477
523
|
|
|
478
|
-
#: templates/umap/user_dashboard.html:7 templates/umap/user_dashboard.html:
|
|
524
|
+
#: templates/umap/user_dashboard.html:7 templates/umap/user_dashboard.html:27
|
|
479
525
|
msgid "Search my maps"
|
|
480
526
|
msgstr "Αναζήτηση στους χάρτες μου"
|
|
481
527
|
|
|
482
|
-
#: templates/umap/user_dashboard.html:
|
|
528
|
+
#: templates/umap/user_dashboard.html:10
|
|
483
529
|
#, python-format
|
|
484
530
|
msgid "My Maps (%(count)s)"
|
|
485
|
-
msgstr ""
|
|
531
|
+
msgstr "Οι χάρτες μου (%(count)s)"
|
|
486
532
|
|
|
487
|
-
#: templates/umap/user_dashboard.html:
|
|
533
|
+
#: templates/umap/user_dashboard.html:12
|
|
488
534
|
msgid "My profile"
|
|
489
535
|
msgstr "Το προφίλ μου"
|
|
490
536
|
|
|
491
|
-
#: templates/umap/user_dashboard.html:
|
|
537
|
+
#: templates/umap/user_dashboard.html:20 templates/umap/user_dashboard.html:24
|
|
492
538
|
msgid "Map’s title"
|
|
493
|
-
msgstr ""
|
|
539
|
+
msgstr "Τίτλος χάρτη"
|
|
494
540
|
|
|
495
541
|
#: templates/umap/user_dashboard.html:32
|
|
496
542
|
#, python-format
|
|
497
543
|
msgid "Download %(count)s maps"
|
|
498
|
-
msgstr ""
|
|
544
|
+
msgstr "Λήψη%(count)s χαρτών"
|
|
499
545
|
|
|
500
546
|
#: templates/umap/user_dashboard.html:42
|
|
501
547
|
msgid "You have no map yet."
|
|
502
548
|
msgstr "Δεν έχετε ακόμη χάρτη."
|
|
503
549
|
|
|
504
|
-
#: views.py:
|
|
550
|
+
#: views.py:353
|
|
505
551
|
msgid "View the map"
|
|
506
552
|
msgstr "Προβολή του χάρτη"
|
|
507
553
|
|
|
508
|
-
#: views.py:
|
|
554
|
+
#: views.py:719
|
|
509
555
|
msgid "See full screen"
|
|
510
|
-
msgstr ""
|
|
556
|
+
msgstr "Προβολή πλήρους οθόνης"
|
|
511
557
|
|
|
512
|
-
#: views.py:
|
|
558
|
+
#: views.py:847
|
|
513
559
|
msgid "Map editors updated with success!"
|
|
514
560
|
msgstr "Η ενημέρωση των συντακτών χάρτη ήταν επιτυχής!"
|
|
515
561
|
|
|
516
|
-
#: views.py:
|
|
562
|
+
#: views.py:883
|
|
517
563
|
#, python-format
|
|
518
564
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
519
565
|
msgstr "Ο uMap σύνδεσμος επεξεργασίας του χάρτη σας: %(map_name)s"
|
|
520
566
|
|
|
521
|
-
#: views.py:
|
|
567
|
+
#: views.py:886
|
|
522
568
|
#, python-format
|
|
523
569
|
msgid "Here is your secret edit link: %(link)s"
|
|
524
570
|
msgstr "Εδώ είναι ο μυστικός σύνδεσμος επεξεργασίας: %(link)s"
|
|
525
571
|
|
|
526
|
-
#: views.py:
|
|
572
|
+
#: views.py:893
|
|
573
|
+
#, python-format
|
|
574
|
+
msgid "Can't send email to %(email)s"
|
|
575
|
+
msgstr "Αδυναμία αποστολής email στο %(email)s"
|
|
576
|
+
|
|
577
|
+
#: views.py:896
|
|
527
578
|
#, python-format
|
|
528
579
|
msgid "Email sent to %(email)s"
|
|
529
580
|
msgstr "Μήνυμα email στάλθηκε στο %(email)s"
|
|
530
581
|
|
|
531
|
-
#: views.py:
|
|
582
|
+
#: views.py:907
|
|
532
583
|
msgid "Only its owner can delete the map."
|
|
533
584
|
msgstr "Μονό ο ιδιοκτήτης μπορεί να διαγράψει αυτό τον χάρτη."
|
|
534
585
|
|
|
535
|
-
#: views.py:
|
|
586
|
+
#: views.py:910
|
|
587
|
+
msgid "Map successfully deleted."
|
|
588
|
+
msgstr "Ο χάρτης διαγράφηκε με επιτυχία."
|
|
589
|
+
|
|
590
|
+
#: views.py:936
|
|
536
591
|
#, python-format
|
|
537
592
|
msgid ""
|
|
538
593
|
"Your map has been cloned! If you want to edit this map from another "
|
|
539
594
|
"computer, please use this link: %(anonymous_url)s"
|
|
540
595
|
msgstr "Ο χάρτης κλωνοποιήθηκε! Αν θέλετε να τον επεξεργαστείτε από κάποιον άλλο υπολογιστή, παρακαλώ χρησιμοποιήστε αυτόν τον σύνδεσμο: %(anonymous_url)s"
|
|
541
596
|
|
|
542
|
-
#: views.py:
|
|
597
|
+
#: views.py:941
|
|
543
598
|
msgid "Congratulations, your map has been cloned!"
|
|
544
599
|
msgstr "Συγχαρητήρια ο χάρτης σας κλωνοποιήθηκε!"
|
|
545
600
|
|
|
546
|
-
#: views.py:
|
|
601
|
+
#: views.py:1176
|
|
547
602
|
msgid "Layer successfully deleted."
|
|
548
603
|
msgstr "Το επίπεδο διαγράφηκε με επιτυχία."
|
|
549
604
|
|
|
550
|
-
#: views.py:
|
|
605
|
+
#: views.py:1198
|
|
551
606
|
msgid "Permissions updated with success!"
|
|
552
607
|
msgstr "Τα δικαιώματα ενημερώθηκαν με επιτυχία!"
|
|
@@ -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: 2024-06-
|
|
11
|
+
"POT-Creation-Date: 2024-06-26 20:59+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"
|
|
@@ -545,11 +545,11 @@ msgstr ""
|
|
|
545
545
|
msgid "View the map"
|
|
546
546
|
msgstr ""
|
|
547
547
|
|
|
548
|
-
#: views.py:
|
|
548
|
+
#: views.py:719
|
|
549
549
|
msgid "See full screen"
|
|
550
550
|
msgstr ""
|
|
551
551
|
|
|
552
|
-
#: views.py:
|
|
552
|
+
#: views.py:847
|
|
553
553
|
msgid "Map editors updated with success!"
|
|
554
554
|
msgstr ""
|
|
555
555
|
|