umap-project 2.6.2__py3-none-any.whl → 2.7.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of umap-project might be problematic. Click here for more details.
- umap/__init__.py +1 -1
- umap/admin.py +64 -1
- umap/asgi.py +15 -0
- umap/context_processors.py +1 -0
- umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- umap/locale/cs_CZ/LC_MESSAGES/django.po +96 -92
- umap/locale/de/LC_MESSAGES/django.mo +0 -0
- umap/locale/de/LC_MESSAGES/django.po +19 -18
- umap/locale/en/LC_MESSAGES/django.po +47 -43
- umap/locale/es/LC_MESSAGES/django.mo +0 -0
- umap/locale/es/LC_MESSAGES/django.po +134 -128
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +51 -47
- umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- umap/locale/pt/LC_MESSAGES/django.po +64 -60
- umap/management/commands/clean_tilelayer.py +152 -0
- umap/management/commands/purge_purgatory.py +28 -0
- umap/models.py +27 -2
- umap/settings/base.py +3 -1
- umap/static/umap/base.css +4 -4
- umap/static/umap/css/contextmenu.css +6 -1
- umap/static/umap/css/icon.css +7 -2
- umap/static/umap/css/importers.css +4 -0
- umap/static/umap/img/16-white.svg +9 -2
- umap/static/umap/img/16.svg +1 -181
- umap/static/umap/img/24-white.svg +1 -0
- umap/static/umap/img/24.svg +1 -0
- umap/static/umap/img/importers/cadastrefr.svg +23 -0
- umap/static/umap/img/source/16-white.svg +10 -3
- umap/static/umap/img/source/16.svg +753 -197
- umap/static/umap/img/source/24-white.svg +3 -2
- umap/static/umap/img/source/24.svg +3 -2
- umap/static/umap/js/modules/autocomplete.js +7 -3
- umap/static/umap/js/modules/browser.js +55 -2
- umap/static/umap/js/modules/caption.js +16 -5
- umap/static/umap/js/modules/data/features.js +183 -8
- umap/static/umap/js/modules/data/layer.js +57 -40
- umap/static/umap/js/modules/formatter.js +3 -2
- umap/static/umap/js/modules/global.js +2 -0
- umap/static/umap/js/modules/importer.js +3 -0
- umap/static/umap/js/modules/importers/cadastrefr.js +62 -0
- umap/static/umap/js/modules/importers/communesfr.js +15 -3
- umap/static/umap/js/modules/permissions.js +123 -93
- umap/static/umap/js/modules/rendering/layers/classified.js +2 -0
- umap/static/umap/js/modules/rendering/ui.js +60 -213
- umap/static/umap/js/modules/share.js +1 -3
- umap/static/umap/js/modules/slideshow.js +1 -1
- umap/static/umap/js/modules/sync/engine.js +371 -14
- umap/static/umap/js/modules/sync/hlc.js +106 -0
- umap/static/umap/js/modules/sync/updaters.js +18 -6
- umap/static/umap/js/modules/sync/websocket.js +1 -1
- umap/static/umap/js/modules/tableeditor.js +1 -1
- umap/static/umap/js/modules/ui/base.js +2 -2
- umap/static/umap/js/modules/ui/contextmenu.js +51 -18
- umap/static/umap/js/modules/urls.js +5 -1
- umap/static/umap/js/modules/utils.js +28 -4
- umap/static/umap/js/umap.controls.js +76 -55
- umap/static/umap/js/umap.core.js +3 -3
- umap/static/umap/js/umap.forms.js +3 -1
- umap/static/umap/js/umap.js +115 -124
- umap/static/umap/locale/am_ET.js +2 -2
- umap/static/umap/locale/am_ET.json +2 -2
- umap/static/umap/locale/ar.js +2 -2
- umap/static/umap/locale/ar.json +2 -2
- umap/static/umap/locale/ast.js +2 -2
- umap/static/umap/locale/ast.json +2 -2
- umap/static/umap/locale/bg.js +2 -2
- umap/static/umap/locale/bg.json +2 -2
- umap/static/umap/locale/br.js +13 -4
- umap/static/umap/locale/br.json +13 -4
- umap/static/umap/locale/ca.js +30 -17
- umap/static/umap/locale/ca.json +30 -17
- umap/static/umap/locale/cs_CZ.js +89 -80
- umap/static/umap/locale/cs_CZ.json +89 -80
- umap/static/umap/locale/da.js +2 -2
- umap/static/umap/locale/da.json +2 -2
- umap/static/umap/locale/de.js +17 -8
- umap/static/umap/locale/de.json +17 -8
- umap/static/umap/locale/el.js +2 -2
- umap/static/umap/locale/el.json +2 -2
- umap/static/umap/locale/en.js +15 -4
- umap/static/umap/locale/en.json +15 -4
- umap/static/umap/locale/en_US.json +2 -2
- umap/static/umap/locale/es.js +338 -325
- umap/static/umap/locale/es.json +338 -325
- umap/static/umap/locale/et.js +2 -2
- umap/static/umap/locale/et.json +2 -2
- umap/static/umap/locale/eu.js +11 -4
- umap/static/umap/locale/eu.json +11 -4
- umap/static/umap/locale/fa_IR.js +11 -4
- umap/static/umap/locale/fa_IR.json +11 -4
- umap/static/umap/locale/fi.js +2 -2
- umap/static/umap/locale/fi.json +2 -2
- umap/static/umap/locale/fr.js +15 -4
- umap/static/umap/locale/fr.json +15 -4
- umap/static/umap/locale/gl.js +2 -2
- umap/static/umap/locale/gl.json +2 -2
- umap/static/umap/locale/he.js +2 -2
- umap/static/umap/locale/he.json +2 -2
- umap/static/umap/locale/hr.js +2 -2
- umap/static/umap/locale/hr.json +2 -2
- umap/static/umap/locale/hu.js +12 -5
- umap/static/umap/locale/hu.json +12 -5
- umap/static/umap/locale/id.js +2 -2
- umap/static/umap/locale/id.json +2 -2
- umap/static/umap/locale/is.js +2 -2
- umap/static/umap/locale/is.json +2 -2
- umap/static/umap/locale/it.js +2 -2
- umap/static/umap/locale/it.json +2 -2
- umap/static/umap/locale/ja.js +2 -2
- umap/static/umap/locale/ja.json +2 -2
- umap/static/umap/locale/ko.js +2 -2
- umap/static/umap/locale/ko.json +2 -2
- umap/static/umap/locale/lt.js +2 -2
- umap/static/umap/locale/lt.json +2 -2
- umap/static/umap/locale/ms.js +2 -2
- umap/static/umap/locale/ms.json +2 -2
- umap/static/umap/locale/nl.js +2 -2
- umap/static/umap/locale/nl.json +2 -2
- umap/static/umap/locale/no.js +2 -2
- umap/static/umap/locale/no.json +2 -2
- umap/static/umap/locale/pl.js +2 -2
- umap/static/umap/locale/pl.json +2 -2
- umap/static/umap/locale/pl_PL.json +2 -2
- umap/static/umap/locale/pt.js +19 -10
- umap/static/umap/locale/pt.json +19 -10
- umap/static/umap/locale/pt_BR.js +2 -2
- umap/static/umap/locale/pt_BR.json +2 -2
- umap/static/umap/locale/pt_PT.js +13 -4
- umap/static/umap/locale/pt_PT.json +13 -4
- umap/static/umap/locale/ro.js +2 -2
- umap/static/umap/locale/ro.json +2 -2
- umap/static/umap/locale/ru.js +2 -2
- umap/static/umap/locale/ru.json +2 -2
- umap/static/umap/locale/si.js +2 -2
- umap/static/umap/locale/si.json +2 -2
- umap/static/umap/locale/sk_SK.js +2 -2
- umap/static/umap/locale/sk_SK.json +2 -2
- umap/static/umap/locale/sl.js +2 -2
- umap/static/umap/locale/sl.json +2 -2
- umap/static/umap/locale/sr.js +2 -2
- umap/static/umap/locale/sr.json +2 -2
- umap/static/umap/locale/sv.js +2 -2
- umap/static/umap/locale/sv.json +2 -2
- umap/static/umap/locale/th_TH.js +2 -2
- umap/static/umap/locale/th_TH.json +2 -2
- umap/static/umap/locale/tr.js +2 -2
- umap/static/umap/locale/tr.json +2 -2
- umap/static/umap/locale/uk_UA.js +2 -2
- umap/static/umap/locale/uk_UA.json +2 -2
- umap/static/umap/locale/vi.js +2 -2
- umap/static/umap/locale/vi.json +2 -2
- umap/static/umap/locale/vi_VN.json +2 -2
- umap/static/umap/locale/zh.js +2 -2
- umap/static/umap/locale/zh.json +2 -2
- umap/static/umap/locale/zh_CN.json +2 -2
- umap/static/umap/locale/zh_TW.Big5.json +2 -2
- umap/static/umap/locale/zh_TW.js +13 -4
- umap/static/umap/locale/zh_TW.json +13 -4
- umap/static/umap/map.css +44 -29
- umap/static/umap/unittests/hlc.js +165 -0
- umap/static/umap/unittests/sync.js +321 -15
- umap/static/umap/unittests/utils.js +47 -0
- umap/static/umap/vars.css +2 -1
- umap/static/umap/vendors/colorbrewer/colorbrewer.js +309 -317
- umap/static/umap/vendors/dompurify/purify.es.js +15 -16
- umap/static/umap/vendors/dompurify/purify.es.mjs.map +1 -1
- umap/static/umap/vendors/georsstogeojson/GeoRSSToGeoJSON.js +111 -80
- umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js +2 -2
- umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js.map +1 -1
- umap/static/umap/vendors/simple-statistics/simple-statistics.min.js +1 -1
- umap/static/umap/vendors/simple-statistics/simple-statistics.min.js.map +1 -1
- umap/templates/umap/css.html +0 -2
- umap/templates/umap/dashboard_menu.html +4 -2
- umap/templates/umap/js.html +0 -5
- umap/templates/umap/map_detail.html +2 -2
- umap/tests/fixtures/test_upload_data.csv +2 -2
- umap/tests/integration/test_anonymous_owned_map.py +1 -0
- umap/tests/integration/test_basics.py +1 -1
- umap/tests/integration/test_browser.py +69 -7
- umap/tests/integration/test_caption.py +3 -3
- umap/tests/integration/test_circles_layer.py +12 -0
- umap/tests/integration/test_cluster.py +53 -0
- umap/tests/integration/test_datalayer.py +2 -1
- umap/tests/integration/test_draw_polygon.py +17 -9
- umap/tests/integration/test_draw_polyline.py +84 -7
- umap/tests/integration/test_edit_datalayer.py +5 -8
- umap/tests/integration/test_edit_map.py +2 -2
- umap/tests/integration/test_edit_marker.py +1 -1
- umap/tests/integration/test_facets_browser.py +3 -3
- umap/tests/integration/test_import.py +1 -0
- umap/tests/integration/test_map.py +1 -0
- umap/tests/integration/test_owned_map.py +1 -1
- umap/tests/integration/test_view_marker.py +63 -0
- umap/tests/integration/test_view_polygon.py +12 -12
- umap/tests/integration/test_websocket_sync.py +65 -3
- umap/tests/test_clean_tilelayer.py +83 -0
- umap/tests/test_datalayer.py +24 -0
- umap/tests/test_map_views.py +20 -0
- umap/tests/test_purge_purgatory.py +25 -0
- umap/tests/test_websocket_server.py +22 -0
- umap/urls.py +5 -1
- umap/views.py +6 -3
- umap/websocket_server.py +130 -27
- {umap_project-2.6.2.dist-info → umap_project-2.7.0.dist-info}/METADATA +18 -14
- {umap_project-2.6.2.dist-info → umap_project-2.7.0.dist-info}/RECORD +209 -200
- umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.css +0 -1
- umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.js +0 -7
- {umap_project-2.6.2.dist-info → umap_project-2.7.0.dist-info}/WHEEL +0 -0
- {umap_project-2.6.2.dist-info → umap_project-2.7.0.dist-info}/entry_points.txt +0 -0
- {umap_project-2.6.2.dist-info → umap_project-2.7.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
# Christopher <github@1011.link>, 2020
|
|
8
8
|
# Claus Ruedinger <clausruedinger@gmail.com>, 2020
|
|
9
9
|
# Ettore Atalan <atalanttore@googlemail.com>, 2016
|
|
10
|
+
# jakl, 2024
|
|
10
11
|
# hno2 <hno2@gmx.net>, 2013-2014
|
|
11
12
|
# Jannis Leidel <jannis@leidel.info>, 2016
|
|
12
13
|
# gislars, 2024
|
|
@@ -19,7 +20,7 @@ msgstr ""
|
|
|
19
20
|
"Report-Msgid-Bugs-To: \n"
|
|
20
21
|
"POT-Creation-Date: 2024-09-04 14:02+0000\n"
|
|
21
22
|
"PO-Revision-Date: 2013-11-22 14:00+0000\n"
|
|
22
|
-
"Last-Translator:
|
|
23
|
+
"Last-Translator: jakl, 2024\n"
|
|
23
24
|
"Language-Team: German (http://app.transifex.com/openstreetmap/umap/language/de/)\n"
|
|
24
25
|
"MIME-Version: 1.0\n"
|
|
25
26
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
@@ -73,7 +74,7 @@ msgstr "Jeder"
|
|
|
73
74
|
|
|
74
75
|
#: models.py:168 models.py:174 models.py:425
|
|
75
76
|
msgid "Editors and team only"
|
|
76
|
-
msgstr ""
|
|
77
|
+
msgstr "Nur Bearbeiter und Team"
|
|
77
78
|
|
|
78
79
|
#: models.py:169 models.py:426
|
|
79
80
|
msgid "Owner only"
|
|
@@ -125,7 +126,7 @@ msgstr "Bearbeiter"
|
|
|
125
126
|
|
|
126
127
|
#: models.py:207
|
|
127
128
|
msgid "team"
|
|
128
|
-
msgstr ""
|
|
129
|
+
msgstr "Team"
|
|
129
130
|
|
|
130
131
|
#: models.py:213 models.py:447
|
|
131
132
|
msgid "edit status"
|
|
@@ -331,19 +332,19 @@ msgstr "Dies ist eine Demo-Instanz, die für Tests und Vorveröffentlichungen ve
|
|
|
331
332
|
|
|
332
333
|
#: templates/umap/content_footer.html:5
|
|
333
334
|
msgid "An OpenStreetMap project"
|
|
334
|
-
msgstr ""
|
|
335
|
+
msgstr "Ein OpenStreetMap Projekt"
|
|
335
336
|
|
|
336
337
|
#: templates/umap/content_footer.html:6
|
|
337
338
|
msgid "version"
|
|
338
|
-
msgstr ""
|
|
339
|
+
msgstr "Version"
|
|
339
340
|
|
|
340
341
|
#: templates/umap/content_footer.html:7
|
|
341
342
|
msgid "Hosted by"
|
|
342
|
-
msgstr ""
|
|
343
|
+
msgstr "Gehostet von"
|
|
343
344
|
|
|
344
345
|
#: templates/umap/content_footer.html:8
|
|
345
346
|
msgid "Contact"
|
|
346
|
-
msgstr ""
|
|
347
|
+
msgstr "Kontakt"
|
|
347
348
|
|
|
348
349
|
#: templates/umap/content_footer.html:9 templates/umap/navigation.html:25
|
|
349
350
|
msgid "Help"
|
|
@@ -364,7 +365,7 @@ msgstr "Mein Profil"
|
|
|
364
365
|
|
|
365
366
|
#: templates/umap/dashboard_menu.html:13
|
|
366
367
|
msgid "My teams"
|
|
367
|
-
msgstr ""
|
|
368
|
+
msgstr "Meine Teams"
|
|
368
369
|
|
|
369
370
|
#: templates/umap/home.html:14
|
|
370
371
|
msgid "Map of the uMaps"
|
|
@@ -536,8 +537,8 @@ msgstr "Ihr Passwort wurde geändert."
|
|
|
536
537
|
#, python-format
|
|
537
538
|
msgid "%(count)s map found:"
|
|
538
539
|
msgid_plural "%(count)s maps found:"
|
|
539
|
-
msgstr[0] ""
|
|
540
|
-
msgstr[1] ""
|
|
540
|
+
msgstr[0] "%(count)s Karte gefunden:"
|
|
541
|
+
msgstr[1] "%(count)s Karten gefunden:"
|
|
541
542
|
|
|
542
543
|
#: templates/umap/search.html:24
|
|
543
544
|
msgid "No map found."
|
|
@@ -558,20 +559,20 @@ msgstr "Suchen"
|
|
|
558
559
|
#: templates/umap/team_detail.html:10
|
|
559
560
|
#, python-format
|
|
560
561
|
msgid "Browse %(current_team)s's maps"
|
|
561
|
-
msgstr ""
|
|
562
|
+
msgstr "Schaue dir %(current_team)s's Karten an"
|
|
562
563
|
|
|
563
564
|
#: templates/umap/team_detail.html:22
|
|
564
565
|
#, python-format
|
|
565
566
|
msgid "%(current_team)s has no public maps."
|
|
566
|
-
msgstr ""
|
|
567
|
+
msgstr "%(current_team)s hat keine öffentlichen Karten.."
|
|
567
568
|
|
|
568
569
|
#: templates/umap/team_form.html:24
|
|
569
570
|
msgid "Delete this team"
|
|
570
|
-
msgstr ""
|
|
571
|
+
msgstr "Dieses Team löschen"
|
|
571
572
|
|
|
572
573
|
#: templates/umap/team_form.html:47
|
|
573
574
|
msgid "Add user"
|
|
574
|
-
msgstr ""
|
|
575
|
+
msgstr "Benutzer hinzufügen"
|
|
575
576
|
|
|
576
577
|
#: templates/umap/user_dashboard.html:9 templates/umap/user_dashboard.html:25
|
|
577
578
|
msgid "Search my maps"
|
|
@@ -592,20 +593,20 @@ msgstr "Du hast noch keine Karte."
|
|
|
592
593
|
|
|
593
594
|
#: templates/umap/user_teams.html:17
|
|
594
595
|
msgid "Users"
|
|
595
|
-
msgstr ""
|
|
596
|
+
msgstr "Benutzer"
|
|
596
597
|
|
|
597
598
|
#: templates/umap/user_teams.html:48
|
|
598
599
|
msgid "New team"
|
|
599
|
-
msgstr ""
|
|
600
|
+
msgstr "Neues Team"
|
|
600
601
|
|
|
601
602
|
#: views.py:235
|
|
602
603
|
msgid "Cannot delete a team with more than one member"
|
|
603
|
-
msgstr ""
|
|
604
|
+
msgstr "Teams mit mehr als einem Mitglied können nicht gelöscht werden"
|
|
604
605
|
|
|
605
606
|
#: views.py:239
|
|
606
607
|
#, python-format
|
|
607
608
|
msgid "Team “%(name)s” has been deleted"
|
|
608
|
-
msgstr ""
|
|
609
|
+
msgstr "Team “%(name)s” wurde gelöscht"
|
|
609
610
|
|
|
610
611
|
#: views.py:438
|
|
611
612
|
msgid "View the map"
|
|
@@ -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-
|
|
11
|
+
"POT-Creation-Date: 2024-10-04 16:35+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"
|
|
@@ -17,6 +17,10 @@ msgstr ""
|
|
|
17
17
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
18
18
|
"Content-Transfer-Encoding: 8bit\n"
|
|
19
19
|
|
|
20
|
+
#: admin.py:16
|
|
21
|
+
msgid "CSV Export"
|
|
22
|
+
msgstr ""
|
|
23
|
+
|
|
20
24
|
#: forms.py:44 forms.py:70
|
|
21
25
|
msgid "Only editable with secret edit link"
|
|
22
26
|
msgstr ""
|
|
@@ -25,7 +29,7 @@ msgstr ""
|
|
|
25
29
|
msgid "Everyone can edit"
|
|
26
30
|
msgstr ""
|
|
27
31
|
|
|
28
|
-
#: forms.py:69 models.py:
|
|
32
|
+
#: forms.py:69 models.py:441
|
|
29
33
|
msgid "Inherit"
|
|
30
34
|
msgstr ""
|
|
31
35
|
|
|
@@ -33,111 +37,111 @@ msgstr ""
|
|
|
33
37
|
msgid "Site is readonly for maintenance"
|
|
34
38
|
msgstr ""
|
|
35
39
|
|
|
36
|
-
#: models.py:
|
|
40
|
+
#: models.py:55 models.py:74
|
|
37
41
|
msgid "name"
|
|
38
42
|
msgstr ""
|
|
39
43
|
|
|
40
|
-
#: models.py:
|
|
44
|
+
#: models.py:57 models.py:451
|
|
41
45
|
msgid "description"
|
|
42
46
|
msgstr ""
|
|
43
47
|
|
|
44
|
-
#: models.py:
|
|
48
|
+
#: models.py:105
|
|
45
49
|
msgid "details"
|
|
46
50
|
msgstr ""
|
|
47
51
|
|
|
48
|
-
#: models.py:
|
|
52
|
+
#: models.py:106
|
|
49
53
|
msgid "Link to a page where the licence is detailed."
|
|
50
54
|
msgstr ""
|
|
51
55
|
|
|
52
|
-
#: models.py:
|
|
56
|
+
#: models.py:116
|
|
53
57
|
msgid "URL template using OSM tile format"
|
|
54
58
|
msgstr ""
|
|
55
59
|
|
|
56
|
-
#: models.py:
|
|
60
|
+
#: models.py:122
|
|
57
61
|
msgid "Order of the tilelayers in the edit box"
|
|
58
62
|
msgstr ""
|
|
59
63
|
|
|
60
|
-
#: models.py:
|
|
64
|
+
#: models.py:168 models.py:442
|
|
61
65
|
msgid "Everyone"
|
|
62
66
|
msgstr ""
|
|
63
67
|
|
|
64
|
-
#: models.py:
|
|
68
|
+
#: models.py:169 models.py:175 models.py:443
|
|
65
69
|
msgid "Editors and team only"
|
|
66
70
|
msgstr ""
|
|
67
71
|
|
|
68
|
-
#: models.py:
|
|
72
|
+
#: models.py:170 models.py:444
|
|
69
73
|
msgid "Owner only"
|
|
70
74
|
msgstr ""
|
|
71
75
|
|
|
72
|
-
#: models.py:
|
|
76
|
+
#: models.py:173
|
|
73
77
|
msgid "Everyone (public)"
|
|
74
78
|
msgstr ""
|
|
75
79
|
|
|
76
|
-
#: models.py:
|
|
80
|
+
#: models.py:174
|
|
77
81
|
msgid "Anyone with link"
|
|
78
82
|
msgstr ""
|
|
79
83
|
|
|
80
|
-
#: models.py:
|
|
84
|
+
#: models.py:176
|
|
81
85
|
msgid "Blocked"
|
|
82
86
|
msgstr ""
|
|
83
87
|
|
|
84
|
-
#: models.py:
|
|
88
|
+
#: models.py:179
|
|
85
89
|
msgid "center"
|
|
86
90
|
msgstr ""
|
|
87
91
|
|
|
88
|
-
#: models.py:
|
|
92
|
+
#: models.py:180
|
|
89
93
|
msgid "zoom"
|
|
90
94
|
msgstr ""
|
|
91
95
|
|
|
92
|
-
#: models.py:
|
|
96
|
+
#: models.py:182
|
|
93
97
|
msgid "locate"
|
|
94
98
|
msgstr ""
|
|
95
99
|
|
|
96
|
-
#: models.py:
|
|
100
|
+
#: models.py:182
|
|
97
101
|
msgid "Locate user on load?"
|
|
98
102
|
msgstr ""
|
|
99
103
|
|
|
100
|
-
#: models.py:
|
|
104
|
+
#: models.py:186
|
|
101
105
|
msgid "Choose the map licence."
|
|
102
106
|
msgstr ""
|
|
103
107
|
|
|
104
|
-
#: models.py:
|
|
108
|
+
#: models.py:187
|
|
105
109
|
msgid "licence"
|
|
106
110
|
msgstr ""
|
|
107
111
|
|
|
108
|
-
#: models.py:
|
|
112
|
+
#: models.py:198
|
|
109
113
|
msgid "owner"
|
|
110
114
|
msgstr ""
|
|
111
115
|
|
|
112
|
-
#: models.py:
|
|
116
|
+
#: models.py:202
|
|
113
117
|
msgid "editors"
|
|
114
118
|
msgstr ""
|
|
115
119
|
|
|
116
|
-
#: models.py:
|
|
120
|
+
#: models.py:208
|
|
117
121
|
msgid "team"
|
|
118
122
|
msgstr ""
|
|
119
123
|
|
|
120
|
-
#: models.py:
|
|
124
|
+
#: models.py:214 models.py:465
|
|
121
125
|
msgid "edit status"
|
|
122
126
|
msgstr ""
|
|
123
127
|
|
|
124
|
-
#: models.py:
|
|
128
|
+
#: models.py:219
|
|
125
129
|
msgid "share status"
|
|
126
130
|
msgstr ""
|
|
127
131
|
|
|
128
|
-
#: models.py:
|
|
132
|
+
#: models.py:222 models.py:460
|
|
129
133
|
msgid "settings"
|
|
130
134
|
msgstr ""
|
|
131
135
|
|
|
132
|
-
#: models.py:
|
|
136
|
+
#: models.py:382
|
|
133
137
|
msgid "Clone of"
|
|
134
138
|
msgstr ""
|
|
135
139
|
|
|
136
|
-
#: models.py:
|
|
140
|
+
#: models.py:455
|
|
137
141
|
msgid "display on load"
|
|
138
142
|
msgstr ""
|
|
139
143
|
|
|
140
|
-
#: models.py:
|
|
144
|
+
#: models.py:456
|
|
141
145
|
msgid "Display this layer on load."
|
|
142
146
|
msgstr ""
|
|
143
147
|
|
|
@@ -348,11 +352,11 @@ msgstr ""
|
|
|
348
352
|
msgid "My Maps"
|
|
349
353
|
msgstr ""
|
|
350
354
|
|
|
351
|
-
#: templates/umap/dashboard_menu.html:
|
|
355
|
+
#: templates/umap/dashboard_menu.html:12
|
|
352
356
|
msgid "My profile"
|
|
353
357
|
msgstr ""
|
|
354
358
|
|
|
355
|
-
#: templates/umap/dashboard_menu.html:
|
|
359
|
+
#: templates/umap/dashboard_menu.html:15
|
|
356
360
|
msgid "My teams"
|
|
357
361
|
msgstr ""
|
|
358
362
|
|
|
@@ -601,57 +605,57 @@ msgstr ""
|
|
|
601
605
|
msgid "View the map"
|
|
602
606
|
msgstr ""
|
|
603
607
|
|
|
604
|
-
#: views.py:
|
|
608
|
+
#: views.py:818
|
|
605
609
|
msgid "See full screen"
|
|
606
610
|
msgstr ""
|
|
607
611
|
|
|
608
|
-
#: views.py:
|
|
612
|
+
#: views.py:950
|
|
609
613
|
msgid "Map editors updated with success!"
|
|
610
614
|
msgstr ""
|
|
611
615
|
|
|
612
|
-
#: views.py:
|
|
616
|
+
#: views.py:986
|
|
613
617
|
#, python-format
|
|
614
618
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
615
619
|
msgstr ""
|
|
616
620
|
|
|
617
|
-
#: views.py:
|
|
621
|
+
#: views.py:989
|
|
618
622
|
#, python-format
|
|
619
623
|
msgid "Here is your secret edit link: %(link)s"
|
|
620
624
|
msgstr ""
|
|
621
625
|
|
|
622
|
-
#: views.py:
|
|
626
|
+
#: views.py:996
|
|
623
627
|
#, python-format
|
|
624
628
|
msgid "Can't send email to %(email)s"
|
|
625
629
|
msgstr ""
|
|
626
630
|
|
|
627
|
-
#: views.py:
|
|
631
|
+
#: views.py:999
|
|
628
632
|
#, python-format
|
|
629
633
|
msgid "Email sent to %(email)s"
|
|
630
634
|
msgstr ""
|
|
631
635
|
|
|
632
|
-
#: views.py:
|
|
636
|
+
#: views.py:1010
|
|
633
637
|
msgid "Only its owner can delete the map."
|
|
634
638
|
msgstr ""
|
|
635
639
|
|
|
636
|
-
#: views.py:
|
|
640
|
+
#: views.py:1013
|
|
637
641
|
msgid "Map successfully deleted."
|
|
638
642
|
msgstr ""
|
|
639
643
|
|
|
640
|
-
#: views.py:
|
|
644
|
+
#: views.py:1039
|
|
641
645
|
#, python-format
|
|
642
646
|
msgid ""
|
|
643
647
|
"Your map has been cloned! If you want to edit this map from another "
|
|
644
648
|
"computer, please use this link: %(anonymous_url)s"
|
|
645
649
|
msgstr ""
|
|
646
650
|
|
|
647
|
-
#: views.py:
|
|
651
|
+
#: views.py:1044
|
|
648
652
|
msgid "Congratulations, your map has been cloned!"
|
|
649
653
|
msgstr ""
|
|
650
654
|
|
|
651
|
-
#: views.py:
|
|
655
|
+
#: views.py:1277
|
|
652
656
|
msgid "Layer successfully deleted."
|
|
653
657
|
msgstr ""
|
|
654
658
|
|
|
655
|
-
#: views.py:
|
|
659
|
+
#: views.py:1299
|
|
656
660
|
msgid "Permissions updated with success!"
|
|
657
661
|
msgstr ""
|
|
Binary file
|