umap-project 2.5.0__py3-none-any.whl → 2.6.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 +6 -1
- umap/context_processors.py +2 -1
- umap/decorators.py +13 -2
- umap/forms.py +26 -2
- umap/locale/br/LC_MESSAGES/django.mo +0 -0
- umap/locale/br/LC_MESSAGES/django.po +252 -146
- umap/locale/ca/LC_MESSAGES/django.mo +0 -0
- umap/locale/ca/LC_MESSAGES/django.po +274 -162
- umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- umap/locale/cs_CZ/LC_MESSAGES/django.po +261 -150
- umap/locale/de/LC_MESSAGES/django.mo +0 -0
- umap/locale/de/LC_MESSAGES/django.po +299 -187
- umap/locale/el/LC_MESSAGES/django.mo +0 -0
- umap/locale/el/LC_MESSAGES/django.po +215 -159
- umap/locale/en/LC_MESSAGES/django.po +211 -155
- umap/locale/es/LC_MESSAGES/django.mo +0 -0
- umap/locale/es/LC_MESSAGES/django.po +255 -144
- umap/locale/eu/LC_MESSAGES/django.mo +0 -0
- umap/locale/eu/LC_MESSAGES/django.po +254 -198
- umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
- umap/locale/fa_IR/LC_MESSAGES/django.po +347 -235
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +216 -160
- umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- umap/locale/hu/LC_MESSAGES/django.po +215 -159
- umap/locale/it/LC_MESSAGES/django.mo +0 -0
- umap/locale/it/LC_MESSAGES/django.po +252 -146
- umap/locale/ms/LC_MESSAGES/django.mo +0 -0
- umap/locale/ms/LC_MESSAGES/django.po +252 -146
- umap/locale/pl/LC_MESSAGES/django.mo +0 -0
- umap/locale/pl/LC_MESSAGES/django.po +254 -148
- umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- umap/locale/pt/LC_MESSAGES/django.po +215 -159
- umap/locale/sv/LC_MESSAGES/django.mo +0 -0
- umap/locale/sv/LC_MESSAGES/django.po +254 -143
- umap/locale/th_TH/LC_MESSAGES/django.mo +0 -0
- umap/locale/th_TH/LC_MESSAGES/django.po +125 -70
- umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
- umap/locale/zh_TW/LC_MESSAGES/django.po +256 -145
- umap/migrations/0022_add_team.py +94 -0
- umap/models.py +45 -10
- umap/settings/__init__.py +2 -0
- umap/settings/base.py +9 -2
- umap/static/umap/base.css +32 -41
- umap/static/umap/content.css +19 -25
- umap/static/umap/css/icon.css +63 -37
- umap/static/umap/css/importers.css +1 -1
- umap/static/umap/css/slideshow.css +7 -5
- umap/static/umap/css/tableeditor.css +4 -3
- umap/static/umap/img/16-white.svg +1 -4
- umap/static/umap/img/16.svg +2 -6
- umap/static/umap/img/24-white.svg +4 -4
- umap/static/umap/img/24.svg +6 -6
- umap/static/umap/img/source/16-white.svg +2 -5
- umap/static/umap/img/source/16.svg +3 -7
- umap/static/umap/img/source/24-white.svg +7 -14
- umap/static/umap/img/source/24.svg +10 -17
- umap/static/umap/js/components/alerts/alert.css +20 -8
- umap/static/umap/js/modules/autocomplete.js +8 -12
- umap/static/umap/js/modules/browser.js +4 -3
- umap/static/umap/js/modules/caption.js +9 -11
- umap/static/umap/js/modules/data/features.js +993 -0
- umap/static/umap/js/modules/data/layer.js +1210 -0
- umap/static/umap/js/modules/formatter.js +12 -3
- umap/static/umap/js/modules/global.js +21 -5
- umap/static/umap/js/modules/importers/overpass.js +22 -8
- umap/static/umap/js/modules/permissions.js +280 -0
- umap/static/umap/js/{umap.icon.js → modules/rendering/icon.js} +77 -56
- umap/static/umap/js/modules/rendering/layers/base.js +105 -0
- umap/static/umap/js/modules/rendering/layers/classified.js +484 -0
- umap/static/umap/js/modules/rendering/layers/cluster.js +103 -0
- umap/static/umap/js/modules/rendering/layers/heat.js +182 -0
- umap/static/umap/js/modules/rendering/popup.js +99 -0
- umap/static/umap/js/modules/rendering/template.js +217 -0
- umap/static/umap/js/modules/rendering/ui.js +610 -0
- umap/static/umap/js/modules/rules.js +16 -3
- umap/static/umap/js/modules/schema.js +25 -1
- umap/static/umap/js/modules/share.js +66 -45
- umap/static/umap/js/modules/sync/updaters.js +9 -10
- umap/static/umap/js/modules/tableeditor.js +7 -7
- umap/static/umap/js/modules/ui/dialog.js +8 -4
- umap/static/umap/js/modules/utils.js +22 -13
- umap/static/umap/js/umap.controls.js +80 -146
- umap/static/umap/js/umap.core.js +9 -9
- umap/static/umap/js/umap.forms.js +41 -17
- umap/static/umap/js/umap.js +72 -65
- umap/static/umap/locale/am_ET.js +8 -2
- umap/static/umap/locale/am_ET.json +8 -2
- umap/static/umap/locale/ar.js +8 -2
- umap/static/umap/locale/ar.json +8 -2
- umap/static/umap/locale/ast.js +8 -2
- umap/static/umap/locale/ast.json +8 -2
- umap/static/umap/locale/bg.js +8 -2
- umap/static/umap/locale/bg.json +8 -2
- umap/static/umap/locale/br.js +42 -36
- umap/static/umap/locale/br.json +42 -36
- umap/static/umap/locale/ca.js +67 -61
- umap/static/umap/locale/ca.json +67 -61
- umap/static/umap/locale/cs_CZ.js +8 -2
- umap/static/umap/locale/cs_CZ.json +8 -2
- umap/static/umap/locale/da.js +8 -2
- umap/static/umap/locale/da.json +8 -2
- umap/static/umap/locale/de.js +143 -137
- umap/static/umap/locale/de.json +143 -137
- umap/static/umap/locale/el.js +54 -48
- umap/static/umap/locale/el.json +54 -48
- umap/static/umap/locale/en.js +10 -2
- umap/static/umap/locale/en.json +10 -2
- umap/static/umap/locale/en_US.json +8 -2
- umap/static/umap/locale/es.js +8 -2
- umap/static/umap/locale/es.json +8 -2
- umap/static/umap/locale/et.js +8 -2
- umap/static/umap/locale/et.json +8 -2
- umap/static/umap/locale/eu.js +346 -338
- umap/static/umap/locale/eu.json +346 -338
- umap/static/umap/locale/fa_IR.js +415 -407
- umap/static/umap/locale/fa_IR.json +415 -407
- umap/static/umap/locale/fi.js +8 -2
- umap/static/umap/locale/fi.json +8 -2
- umap/static/umap/locale/fr.js +11 -3
- umap/static/umap/locale/fr.json +11 -3
- umap/static/umap/locale/gl.js +8 -2
- umap/static/umap/locale/gl.json +8 -2
- umap/static/umap/locale/he.js +8 -2
- umap/static/umap/locale/he.json +8 -2
- umap/static/umap/locale/hr.js +8 -2
- umap/static/umap/locale/hr.json +8 -2
- umap/static/umap/locale/hu.js +31 -23
- umap/static/umap/locale/hu.json +31 -23
- umap/static/umap/locale/id.js +8 -2
- umap/static/umap/locale/id.json +8 -2
- umap/static/umap/locale/is.js +8 -2
- umap/static/umap/locale/is.json +8 -2
- umap/static/umap/locale/it.js +8 -2
- umap/static/umap/locale/it.json +8 -2
- umap/static/umap/locale/ja.js +8 -2
- umap/static/umap/locale/ja.json +8 -2
- umap/static/umap/locale/ko.js +8 -2
- umap/static/umap/locale/ko.json +8 -2
- umap/static/umap/locale/lt.js +8 -2
- umap/static/umap/locale/lt.json +8 -2
- umap/static/umap/locale/ms.js +8 -2
- umap/static/umap/locale/ms.json +8 -2
- umap/static/umap/locale/nl.js +8 -2
- umap/static/umap/locale/nl.json +8 -2
- umap/static/umap/locale/no.js +8 -2
- umap/static/umap/locale/no.json +8 -2
- umap/static/umap/locale/pl.js +54 -48
- umap/static/umap/locale/pl.json +54 -48
- umap/static/umap/locale/pl_PL.json +8 -2
- umap/static/umap/locale/pt.js +24 -18
- umap/static/umap/locale/pt.json +24 -18
- umap/static/umap/locale/pt_BR.js +8 -2
- umap/static/umap/locale/pt_BR.json +8 -2
- umap/static/umap/locale/pt_PT.js +214 -208
- umap/static/umap/locale/pt_PT.json +214 -208
- umap/static/umap/locale/ro.js +8 -2
- umap/static/umap/locale/ro.json +8 -2
- umap/static/umap/locale/ru.js +8 -2
- umap/static/umap/locale/ru.json +8 -2
- umap/static/umap/locale/sk_SK.js +8 -2
- umap/static/umap/locale/sk_SK.json +8 -2
- umap/static/umap/locale/sl.js +8 -2
- umap/static/umap/locale/sl.json +8 -2
- umap/static/umap/locale/sr.js +8 -2
- umap/static/umap/locale/sr.json +8 -2
- umap/static/umap/locale/sv.js +8 -2
- umap/static/umap/locale/sv.json +8 -2
- umap/static/umap/locale/th_TH.js +33 -27
- umap/static/umap/locale/th_TH.json +33 -27
- umap/static/umap/locale/tr.js +8 -2
- umap/static/umap/locale/tr.json +8 -2
- umap/static/umap/locale/uk_UA.js +8 -2
- umap/static/umap/locale/uk_UA.json +8 -2
- umap/static/umap/locale/vi.js +8 -2
- umap/static/umap/locale/vi.json +8 -2
- umap/static/umap/locale/vi_VN.json +8 -2
- umap/static/umap/locale/zh.js +8 -2
- umap/static/umap/locale/zh.json +8 -2
- umap/static/umap/locale/zh_CN.json +8 -2
- umap/static/umap/locale/zh_TW.Big5.json +8 -2
- umap/static/umap/locale/zh_TW.js +102 -96
- umap/static/umap/locale/zh_TW.json +102 -96
- umap/static/umap/map.css +111 -108
- umap/static/umap/nav.css +19 -10
- umap/static/umap/unittests/utils.js +230 -107
- umap/static/umap/vars.css +1 -0
- umap/static/umap/vendors/csv2geojson/csv2geojson.js +62 -40
- umap/static/umap/vendors/editable/Leaflet.Editable.js +2079 -1937
- umap/storage.py +4 -3
- umap/templates/404.html +5 -1
- umap/templates/500.html +3 -1
- umap/templates/auth/user_detail.html +8 -2
- umap/templates/auth/user_form.html +19 -10
- umap/templates/auth/user_stars.html +8 -2
- umap/templates/base.html +1 -0
- umap/templates/registration/login.html +18 -3
- umap/templates/umap/about.html +1 -0
- umap/templates/umap/about_summary.html +22 -7
- umap/templates/umap/components/alerts/alert.html +42 -21
- umap/templates/umap/content.html +2 -0
- umap/templates/umap/content_footer.html +7 -3
- umap/templates/umap/css.html +1 -0
- umap/templates/umap/dashboard_menu.html +15 -0
- umap/templates/umap/home.html +14 -4
- umap/templates/umap/js.html +4 -9
- umap/templates/umap/login_popup_end.html +10 -4
- umap/templates/umap/map_detail.html +8 -2
- umap/templates/umap/map_fragment.html +3 -1
- umap/templates/umap/map_init.html +2 -1
- umap/templates/umap/map_list.html +6 -3
- umap/templates/umap/map_table.html +36 -12
- umap/templates/umap/messages.html +0 -1
- umap/templates/umap/navigation.html +2 -1
- umap/templates/umap/password_change.html +5 -1
- umap/templates/umap/password_change_done.html +8 -2
- umap/templates/umap/search.html +8 -2
- umap/templates/umap/search_bar.html +1 -0
- umap/templates/umap/team_confirm_delete.html +19 -0
- umap/templates/umap/team_detail.html +27 -0
- umap/templates/umap/team_form.html +60 -0
- umap/templates/umap/user_dashboard.html +7 -9
- umap/templates/umap/user_teams.html +51 -0
- umap/tests/base.py +8 -1
- umap/tests/conftest.py +6 -0
- umap/tests/fixtures/test_circles_layer.geojson +219 -0
- umap/tests/fixtures/test_upload_georss.xml +20 -0
- umap/tests/integration/conftest.py +18 -4
- umap/tests/integration/helpers.py +12 -0
- umap/tests/integration/test_anonymous_owned_map.py +23 -0
- umap/tests/integration/test_basics.py +29 -0
- umap/tests/integration/test_browser.py +20 -0
- umap/tests/integration/test_caption.py +20 -0
- umap/tests/integration/test_circles_layer.py +69 -0
- umap/tests/integration/test_conditional_rules.py +102 -17
- umap/tests/integration/test_draw_polygon.py +138 -13
- umap/tests/integration/test_draw_polyline.py +8 -18
- umap/tests/integration/test_edit_datalayer.py +3 -3
- umap/tests/integration/test_import.py +124 -5
- umap/tests/integration/test_owned_map.py +21 -13
- umap/tests/integration/test_querystring.py +7 -0
- umap/tests/integration/test_team.py +47 -0
- umap/tests/integration/test_tilelayer.py +19 -2
- umap/tests/integration/test_view_marker.py +28 -1
- umap/tests/integration/test_websocket_sync.py +5 -5
- umap/tests/test_datalayer.py +32 -7
- umap/tests/test_datalayer_views.py +1 -1
- umap/tests/test_map.py +30 -4
- umap/tests/test_map_views.py +2 -2
- umap/tests/test_statics.py +40 -0
- umap/tests/test_team_views.py +131 -0
- umap/tests/test_views.py +15 -1
- umap/urls.py +23 -13
- umap/views.py +116 -10
- {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/METADATA +14 -14
- {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/RECORD +260 -253
- umap/static/umap/js/umap.datalayer.permissions.js +0 -70
- umap/static/umap/js/umap.features.js +0 -1290
- umap/static/umap/js/umap.layer.js +0 -1837
- umap/static/umap/js/umap.permissions.js +0 -208
- umap/static/umap/js/umap.popup.js +0 -341
- umap/static/umap/test/TableEditor.js +0 -104
- umap/static/umap/vendors/leaflet/leaflet-src.js +0 -14512
- umap/static/umap/vendors/leaflet/leaflet-src.js.map +0 -1
- umap/static/umap/vendors/leaflet/leaflet.js +0 -6
- umap/static/umap/vendors/leaflet/leaflet.js.map +0 -1
- umap/static/umap/vendors/markercluster/WhereAreTheJavascriptFiles.txt +0 -5
- umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js +0 -2718
- umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js.map +0 -1
- umap/static/umap/vendors/toolbar/leaflet.toolbar-src.css +0 -117
- umap/static/umap/vendors/toolbar/leaflet.toolbar-src.js +0 -365
- umap/tests/integration/test_statics.py +0 -47
- {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/WHEEL +0 -0
- {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/entry_points.txt +0 -0
- {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
# Ettore Atalan <atalanttore@googlemail.com>, 2016
|
|
10
10
|
# hno2 <hno2@gmx.net>, 2013-2014
|
|
11
11
|
# Jannis Leidel <jannis@leidel.info>, 2016
|
|
12
|
+
# gislars, 2024
|
|
12
13
|
# pgeo, 2023
|
|
13
14
|
# Klumbumbus, 2013-2014,2018-2019
|
|
14
15
|
# YOHAN BONIFACE <yb@enix.org>, 2012
|
|
@@ -16,9 +17,9 @@ msgid ""
|
|
|
16
17
|
msgstr ""
|
|
17
18
|
"Project-Id-Version: uMap\n"
|
|
18
19
|
"Report-Msgid-Bugs-To: \n"
|
|
19
|
-
"POT-Creation-Date: 2024-
|
|
20
|
+
"POT-Creation-Date: 2024-08-30 18:23+0000\n"
|
|
20
21
|
"PO-Revision-Date: 2013-11-22 14:00+0000\n"
|
|
21
|
-
"Last-Translator:
|
|
22
|
+
"Last-Translator: gislars, 2024\n"
|
|
22
23
|
"Language-Team: German (http://app.transifex.com/openstreetmap/umap/language/de/)\n"
|
|
23
24
|
"MIME-Version: 1.0\n"
|
|
24
25
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
@@ -34,250 +35,292 @@ msgstr "Nur mit geheimem Bearbeitungslink zu bearbeiten"
|
|
|
34
35
|
msgid "Everyone can edit"
|
|
35
36
|
msgstr "Jeder kann bearbeiten"
|
|
36
37
|
|
|
37
|
-
#: forms.py:69 models.py:
|
|
38
|
+
#: forms.py:69 models.py:423
|
|
38
39
|
msgid "Inherit"
|
|
39
|
-
msgstr ""
|
|
40
|
+
msgstr "erben"
|
|
40
41
|
|
|
41
42
|
#: middleware.py:13
|
|
42
43
|
msgid "Site is readonly for maintenance"
|
|
43
44
|
msgstr "Die Seite ist wegen Wartungsarbeiten im Nur-Lesen-Modus."
|
|
44
45
|
|
|
45
|
-
#: models.py:
|
|
46
|
+
#: models.py:54 models.py:73
|
|
46
47
|
msgid "name"
|
|
47
48
|
msgstr "Name"
|
|
48
49
|
|
|
49
|
-
#: models.py:
|
|
50
|
+
#: models.py:56 models.py:433
|
|
51
|
+
msgid "description"
|
|
52
|
+
msgstr "Beschreibung"
|
|
53
|
+
|
|
54
|
+
#: models.py:104
|
|
50
55
|
msgid "details"
|
|
51
56
|
msgstr "Details"
|
|
52
57
|
|
|
53
|
-
#: models.py:
|
|
58
|
+
#: models.py:105
|
|
54
59
|
msgid "Link to a page where the licence is detailed."
|
|
55
60
|
msgstr "Verlinke auf eine Seite mit der Lizenz."
|
|
56
61
|
|
|
57
|
-
#: models.py:
|
|
62
|
+
#: models.py:115
|
|
58
63
|
msgid "URL template using OSM tile format"
|
|
59
64
|
msgstr "Das URL-Template nutzt das OSM Tile Format"
|
|
60
65
|
|
|
61
|
-
#: models.py:
|
|
66
|
+
#: models.py:121
|
|
62
67
|
msgid "Order of the tilelayers in the edit box"
|
|
63
68
|
msgstr "Reihenfolge der Karten-Ebenen in der Bearbeiten-Box"
|
|
64
69
|
|
|
65
|
-
#: models.py:
|
|
70
|
+
#: models.py:167 models.py:424
|
|
66
71
|
msgid "Everyone"
|
|
67
|
-
msgstr ""
|
|
72
|
+
msgstr "Jeder"
|
|
68
73
|
|
|
69
|
-
#: models.py:
|
|
70
|
-
msgid "Editors only"
|
|
74
|
+
#: models.py:168 models.py:174 models.py:425
|
|
75
|
+
msgid "Editors and team only"
|
|
71
76
|
msgstr ""
|
|
72
77
|
|
|
73
|
-
#: models.py:
|
|
78
|
+
#: models.py:169 models.py:426
|
|
74
79
|
msgid "Owner only"
|
|
75
|
-
msgstr ""
|
|
80
|
+
msgstr "Nur Ersteller"
|
|
76
81
|
|
|
77
|
-
#: models.py:
|
|
82
|
+
#: models.py:172
|
|
78
83
|
msgid "Everyone (public)"
|
|
79
|
-
msgstr ""
|
|
84
|
+
msgstr "Jeder (Öffentlich)"
|
|
80
85
|
|
|
81
|
-
#: models.py:
|
|
86
|
+
#: models.py:173
|
|
82
87
|
msgid "Anyone with link"
|
|
83
|
-
msgstr ""
|
|
88
|
+
msgstr "Jeder mit Link"
|
|
84
89
|
|
|
85
|
-
#: models.py:
|
|
90
|
+
#: models.py:175
|
|
86
91
|
msgid "Blocked"
|
|
87
|
-
msgstr ""
|
|
92
|
+
msgstr "blockiert"
|
|
88
93
|
|
|
89
|
-
#: models.py:
|
|
90
|
-
msgid "description"
|
|
91
|
-
msgstr "Beschreibung"
|
|
92
|
-
|
|
93
|
-
#: models.py:156
|
|
94
|
+
#: models.py:178
|
|
94
95
|
msgid "center"
|
|
95
96
|
msgstr "Mittelpunkt"
|
|
96
97
|
|
|
97
|
-
#: models.py:
|
|
98
|
+
#: models.py:179
|
|
98
99
|
msgid "zoom"
|
|
99
100
|
msgstr "Zoom"
|
|
100
101
|
|
|
101
|
-
#: models.py:
|
|
102
|
+
#: models.py:181
|
|
102
103
|
msgid "locate"
|
|
103
104
|
msgstr "lokalisiere"
|
|
104
105
|
|
|
105
|
-
#: models.py:
|
|
106
|
+
#: models.py:181
|
|
106
107
|
msgid "Locate user on load?"
|
|
107
108
|
msgstr "Standort des Benutzers beim Seitenaufruf bestimmen?"
|
|
108
109
|
|
|
109
|
-
#: models.py:
|
|
110
|
+
#: models.py:185
|
|
110
111
|
msgid "Choose the map licence."
|
|
111
112
|
msgstr "Kartenlizenz auswählen"
|
|
112
113
|
|
|
113
|
-
#: models.py:
|
|
114
|
+
#: models.py:186
|
|
114
115
|
msgid "licence"
|
|
115
116
|
msgstr "Lizenz"
|
|
116
117
|
|
|
117
|
-
#: models.py:
|
|
118
|
+
#: models.py:197
|
|
118
119
|
msgid "owner"
|
|
119
120
|
msgstr "Ersteller"
|
|
120
121
|
|
|
121
|
-
#: models.py:
|
|
122
|
+
#: models.py:201
|
|
122
123
|
msgid "editors"
|
|
123
124
|
msgstr "Bearbeiter"
|
|
124
125
|
|
|
125
|
-
#: models.py:
|
|
126
|
+
#: models.py:207
|
|
127
|
+
msgid "team"
|
|
128
|
+
msgstr ""
|
|
129
|
+
|
|
130
|
+
#: models.py:213 models.py:447
|
|
126
131
|
msgid "edit status"
|
|
127
132
|
msgstr "Bearbeitungsstatus"
|
|
128
133
|
|
|
129
|
-
#: models.py:
|
|
134
|
+
#: models.py:218
|
|
130
135
|
msgid "share status"
|
|
131
136
|
msgstr "Teilen-Status"
|
|
132
137
|
|
|
133
|
-
#: models.py:
|
|
138
|
+
#: models.py:221 models.py:442
|
|
134
139
|
msgid "settings"
|
|
135
140
|
msgstr "Einstellungen"
|
|
136
141
|
|
|
137
|
-
#: models.py:
|
|
142
|
+
#: models.py:364
|
|
138
143
|
msgid "Clone of"
|
|
139
144
|
msgstr "Duplikat von"
|
|
140
145
|
|
|
141
|
-
#: models.py:
|
|
146
|
+
#: models.py:437
|
|
142
147
|
msgid "display on load"
|
|
143
148
|
msgstr "Beim Seitenaufruf einblenden"
|
|
144
149
|
|
|
145
|
-
#: models.py:
|
|
150
|
+
#: models.py:438
|
|
146
151
|
msgid "Display this layer on load."
|
|
147
152
|
msgstr "Diese Ebene beim Seitenaufruf einblenden."
|
|
148
153
|
|
|
149
|
-
#: templates/404.html:
|
|
154
|
+
#: templates/404.html:8
|
|
150
155
|
msgid "Take me to the home page"
|
|
151
156
|
msgstr "Zur Startseite zurückkehren"
|
|
152
157
|
|
|
153
|
-
#: templates/auth/user_detail.html:
|
|
158
|
+
#: templates/auth/user_detail.html:8
|
|
154
159
|
#, python-format
|
|
155
160
|
msgid "Browse %(current_user)s's maps"
|
|
156
161
|
msgstr "Schaue dir %(current_user)s's Karten an"
|
|
157
162
|
|
|
158
|
-
#: templates/auth/user_detail.html:
|
|
163
|
+
#: templates/auth/user_detail.html:17
|
|
159
164
|
#, python-format
|
|
160
165
|
msgid "%(current_user)s has no maps."
|
|
161
166
|
msgstr "%(current_user)s hat keine Karten."
|
|
162
167
|
|
|
163
|
-
#: templates/auth/user_form.html:
|
|
164
|
-
msgid "My Maps"
|
|
165
|
-
msgstr ""
|
|
166
|
-
|
|
167
|
-
#: templates/auth/user_form.html:7
|
|
168
|
-
msgid "My Profile"
|
|
169
|
-
msgstr ""
|
|
170
|
-
|
|
171
|
-
#: templates/auth/user_form.html:20
|
|
168
|
+
#: templates/auth/user_form.html:21 templates/umap/team_form.html:21
|
|
172
169
|
msgid "Save"
|
|
173
|
-
msgstr ""
|
|
170
|
+
msgstr "Speichern"
|
|
174
171
|
|
|
175
|
-
#: templates/auth/user_form.html:
|
|
172
|
+
#: templates/auth/user_form.html:27
|
|
176
173
|
msgid "Your current providers"
|
|
177
|
-
msgstr ""
|
|
174
|
+
msgstr "Deine aktuellen Anbieter"
|
|
178
175
|
|
|
179
|
-
#: templates/auth/user_form.html:
|
|
176
|
+
#: templates/auth/user_form.html:39
|
|
180
177
|
msgid "Connect to another provider"
|
|
181
|
-
msgstr ""
|
|
178
|
+
msgstr "Füge einen weiteren Anbieter hinzu"
|
|
182
179
|
|
|
183
|
-
#: templates/auth/user_form.html:
|
|
180
|
+
#: templates/auth/user_form.html:42
|
|
184
181
|
msgid ""
|
|
185
182
|
"It's a good habit to connect your account to more than one provider, in case"
|
|
186
183
|
" one provider becomes unavailable, temporarily or even permanently."
|
|
187
|
-
msgstr ""
|
|
184
|
+
msgstr "Es ist eine gute Praxis, das Konto mit mehr als einem Anbieter zu verbinden, für den Fall, dass ein Anbieter vorübergehend oder sogar dauerhaft nicht mehr verfügbar ist."
|
|
188
185
|
|
|
189
|
-
#: templates/auth/user_stars.html:
|
|
186
|
+
#: templates/auth/user_stars.html:8
|
|
190
187
|
#, python-format
|
|
191
188
|
msgid "Browse %(current_user)s's starred maps"
|
|
192
|
-
msgstr ""
|
|
189
|
+
msgstr "Schaue dir %(current_user)s's favorisierten Karten an"
|
|
193
190
|
|
|
194
|
-
#: templates/auth/user_stars.html:
|
|
191
|
+
#: templates/auth/user_stars.html:17
|
|
195
192
|
#, python-format
|
|
196
193
|
msgid "%(current_user)s has no starred maps yet."
|
|
197
|
-
msgstr ""
|
|
194
|
+
msgstr "%(current_user)s hat keine favorisierten Karten."
|
|
198
195
|
|
|
199
|
-
#: templates/base.html:
|
|
196
|
+
#: templates/base.html:13
|
|
200
197
|
msgid ""
|
|
201
198
|
"uMap lets you create maps with OpenStreetMap layers in a minute and embed "
|
|
202
199
|
"them in your site."
|
|
203
|
-
msgstr ""
|
|
200
|
+
msgstr "Mit uMap kannst du Karten mit <a href=\"%(osm_url)s\" />OpenStreetMap</a>-Ebenen in einer Minute erstellen und in deine Seite einbinden."
|
|
204
201
|
|
|
205
|
-
#: templates/registration/login.html:
|
|
202
|
+
#: templates/registration/login.html:6 templates/registration/login.html:45
|
|
203
|
+
msgid "Login"
|
|
204
|
+
msgstr "Anmeldung"
|
|
205
|
+
|
|
206
|
+
#: templates/registration/login.html:24
|
|
206
207
|
msgid "Please log in with your account"
|
|
207
208
|
msgstr "Bitte melden Sie sich mit Ihrem Konto an"
|
|
208
209
|
|
|
209
|
-
#: templates/registration/login.html:
|
|
210
|
+
#: templates/registration/login.html:41
|
|
210
211
|
msgid "Username"
|
|
211
212
|
msgstr "Benutzername"
|
|
212
213
|
|
|
213
|
-
#: templates/registration/login.html:
|
|
214
|
+
#: templates/registration/login.html:44
|
|
214
215
|
msgid "Password"
|
|
215
216
|
msgstr "Passwort"
|
|
216
217
|
|
|
217
|
-
#: templates/registration/login.html:
|
|
218
|
-
msgid "Login"
|
|
219
|
-
msgstr "Anmeldung"
|
|
220
|
-
|
|
221
|
-
#: templates/registration/login.html:37
|
|
218
|
+
#: templates/registration/login.html:51
|
|
222
219
|
msgid "Please choose a provider"
|
|
223
220
|
msgstr "Bitte wähle einen Anbieter"
|
|
224
221
|
|
|
225
|
-
#: templates/umap/about_summary.html:
|
|
222
|
+
#: templates/umap/about_summary.html:12
|
|
226
223
|
#, python-format
|
|
227
224
|
msgid ""
|
|
228
225
|
"uMap lets you create maps with <a href=\"%(osm_url)s\" />OpenStreetMap</a> "
|
|
229
226
|
"layers in a minute and embed them in your site."
|
|
230
227
|
msgstr "Mit uMap kannst du Karten mit <a href=\"%(osm_url)s\" />OpenStreetMap</a>-Ebenen in einer Minute erstellen und in deine Seite einbinden."
|
|
231
228
|
|
|
232
|
-
#: templates/umap/about_summary.html:
|
|
229
|
+
#: templates/umap/about_summary.html:23
|
|
233
230
|
msgid "Choose the layers of your map"
|
|
234
231
|
msgstr "Wähle die Ebenen deiner Karte"
|
|
235
232
|
|
|
236
|
-
#: templates/umap/about_summary.html:
|
|
233
|
+
#: templates/umap/about_summary.html:26
|
|
237
234
|
msgid "Add POIs: markers, lines, polygons..."
|
|
238
235
|
msgstr "Füge POIs hinzu: Marker, Linien, Flächen,..."
|
|
239
236
|
|
|
240
|
-
#: templates/umap/about_summary.html:
|
|
237
|
+
#: templates/umap/about_summary.html:29
|
|
241
238
|
msgid "Manage POIs colours and icons"
|
|
242
239
|
msgstr "Verwalte Farben und Icons der POIs"
|
|
243
240
|
|
|
244
|
-
#: templates/umap/about_summary.html:
|
|
241
|
+
#: templates/umap/about_summary.html:32
|
|
245
242
|
msgid "Manage map options: display a minimap, locate user on load…"
|
|
246
243
|
msgstr "Verwalte Karteneinstellungen: eine Übersichtskarte anzeigen, den Nutzer beim Seitenaufruf lokalisieren,..."
|
|
247
244
|
|
|
248
|
-
#: templates/umap/about_summary.html:
|
|
245
|
+
#: templates/umap/about_summary.html:35
|
|
249
246
|
msgid "Batch import geostructured data (geojson, gpx, kml, osm...)"
|
|
250
247
|
msgstr "Stapelverarbeitung beim Importieren von geotechnischen Daten (geojson, gpx, kml, osm...)"
|
|
251
248
|
|
|
252
|
-
#: templates/umap/about_summary.html:
|
|
249
|
+
#: templates/umap/about_summary.html:38
|
|
253
250
|
msgid "Choose the license for your data"
|
|
254
251
|
msgstr "Wähle die Lizenz deiner Daten."
|
|
255
252
|
|
|
256
|
-
#: templates/umap/about_summary.html:
|
|
253
|
+
#: templates/umap/about_summary.html:41
|
|
257
254
|
msgid "Embed and share your map"
|
|
258
255
|
msgstr "Teile und binde deine Karte ein"
|
|
259
256
|
|
|
260
|
-
#: templates/umap/about_summary.html:
|
|
257
|
+
#: templates/umap/about_summary.html:52
|
|
261
258
|
#, python-format
|
|
262
259
|
msgid "And it's <a href=\"%(repo_url)s\">open source</a>!"
|
|
263
260
|
msgstr "Und es ist <a href=\"%(repo_url)s\">Open Source</a>!"
|
|
264
261
|
|
|
265
|
-
#: templates/umap/about_summary.html:
|
|
266
|
-
#: templates/umap/user_dashboard.html:
|
|
262
|
+
#: templates/umap/about_summary.html:63 templates/umap/navigation.html:39
|
|
263
|
+
#: templates/umap/user_dashboard.html:40
|
|
267
264
|
msgid "Create a map"
|
|
268
265
|
msgstr "Erstelle eine Karte"
|
|
269
266
|
|
|
270
|
-
#: templates/umap/about_summary.html:
|
|
267
|
+
#: templates/umap/about_summary.html:66
|
|
271
268
|
msgid "Play with the demo"
|
|
272
269
|
msgstr "Spiele mit der Demo"
|
|
273
270
|
|
|
274
|
-
#: templates/umap/
|
|
271
|
+
#: templates/umap/components/alerts/alert.html:15
|
|
272
|
+
#: templates/umap/components/alerts/alert.html:64
|
|
273
|
+
#: templates/umap/components/alerts/alert.html:92
|
|
274
|
+
msgid "Close"
|
|
275
|
+
msgstr "Schließen"
|
|
276
|
+
|
|
277
|
+
#: templates/umap/components/alerts/alert.html:30
|
|
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 "Um auf Deine Karten schnell zugreifen zu können: <a href=\"%(login_url)s\" target=\"_blank\">erstelle ein Konto</a> oder <a href=\"%(login_url)s\" target=\"_blank\">melde dich an</a>."
|
|
284
|
+
|
|
285
|
+
#: templates/umap/components/alerts/alert.html:35
|
|
286
|
+
msgid "Here is your secret link to edit the map, please keep it safe:"
|
|
287
|
+
msgstr "Hier ist der geheime Link zum Bearbeiten der Karte, bitte bewahre ihn sicher auf:"
|
|
288
|
+
|
|
289
|
+
#: templates/umap/components/alerts/alert.html:39
|
|
290
|
+
msgid "Copy link"
|
|
291
|
+
msgstr "Link kopieren"
|
|
292
|
+
|
|
293
|
+
#: templates/umap/components/alerts/alert.html:46
|
|
294
|
+
msgid "Enter your email address to receive the secret link:"
|
|
295
|
+
msgstr "Gib Deine E-Mail-Adresse ein, um den geheimen Link zu gesendet zu bekommen:"
|
|
296
|
+
|
|
297
|
+
#: templates/umap/components/alerts/alert.html:52
|
|
298
|
+
msgid "Email"
|
|
299
|
+
msgstr "Email"
|
|
300
|
+
|
|
301
|
+
#: templates/umap/components/alerts/alert.html:55
|
|
302
|
+
msgid "Send me the link"
|
|
303
|
+
msgstr "Link verschicken"
|
|
304
|
+
|
|
305
|
+
#: templates/umap/components/alerts/alert.html:79
|
|
306
|
+
msgid "See their edits in another tab"
|
|
307
|
+
msgstr "Die Bearbeitungen in einem anderen Browser-Tab öffnen"
|
|
308
|
+
|
|
309
|
+
#: templates/umap/components/alerts/alert.html:82
|
|
310
|
+
msgid "Keep your changes and loose theirs"
|
|
311
|
+
msgstr "Behalte Deine Änderungen und verwirf die anderen"
|
|
312
|
+
|
|
313
|
+
#: templates/umap/components/alerts/alert.html:85
|
|
314
|
+
msgid "Keep their changes and loose yours"
|
|
315
|
+
msgstr "Behalte die anderen Änderungen und verwirf Deine"
|
|
316
|
+
|
|
317
|
+
#: templates/umap/content.html:26
|
|
275
318
|
msgid ""
|
|
276
319
|
"This instance of uMap is currently in read only mode, no creation/edit is "
|
|
277
320
|
"allowed."
|
|
278
|
-
msgstr ""
|
|
321
|
+
msgstr "Diese Instanz von uMap befindet sich derzeit im Wartungsmodus, es ist keine Erstellung/Bearbeitung erlaubt."
|
|
279
322
|
|
|
280
|
-
#: templates/umap/content.html:
|
|
323
|
+
#: templates/umap/content.html:34
|
|
281
324
|
#, python-format
|
|
282
325
|
msgid ""
|
|
283
326
|
"This is a demo instance, used for tests and pre-rolling releases. If you "
|
|
@@ -286,270 +329,339 @@ msgid ""
|
|
|
286
329
|
"instance, it's <a href=\"%(repo_url)s\">open source</a>!"
|
|
287
330
|
msgstr "Dies ist eine Demo-Instanz, die für Tests und Vorveröffentlichungen verwendet wird. Wenn du eine stabile Instanz benötigst, benutze bitte <a href=\"%(stable_url)s\">%(stable_url)s</a>. Du kannst auch deine eigene Instanz hosten, uMap ist <a href=\"%(repo_url)s\">Open Source</a>!"
|
|
288
331
|
|
|
289
|
-
#: templates/umap/
|
|
332
|
+
#: templates/umap/content_footer.html:5
|
|
333
|
+
msgid "An OpenStreetMap project"
|
|
334
|
+
msgstr ""
|
|
335
|
+
|
|
336
|
+
#: templates/umap/content_footer.html:6
|
|
337
|
+
msgid "version"
|
|
338
|
+
msgstr ""
|
|
339
|
+
|
|
340
|
+
#: templates/umap/content_footer.html:7
|
|
341
|
+
msgid "Hosted by"
|
|
342
|
+
msgstr ""
|
|
343
|
+
|
|
344
|
+
#: templates/umap/content_footer.html:8
|
|
345
|
+
msgid "Contact"
|
|
346
|
+
msgstr ""
|
|
347
|
+
|
|
348
|
+
#: templates/umap/content_footer.html:9 templates/umap/navigation.html:25
|
|
349
|
+
msgid "Help"
|
|
350
|
+
msgstr "Hilfe"
|
|
351
|
+
|
|
352
|
+
#: templates/umap/dashboard_menu.html:6
|
|
353
|
+
#, python-format
|
|
354
|
+
msgid "My Maps (%(count)s)"
|
|
355
|
+
msgstr "Meine Karten (%(count)s)"
|
|
356
|
+
|
|
357
|
+
#: templates/umap/dashboard_menu.html:8
|
|
358
|
+
msgid "My Maps"
|
|
359
|
+
msgstr "Meine Karten"
|
|
360
|
+
|
|
361
|
+
#: templates/umap/dashboard_menu.html:11
|
|
362
|
+
msgid "My profile"
|
|
363
|
+
msgstr "Mein Profil"
|
|
364
|
+
|
|
365
|
+
#: templates/umap/dashboard_menu.html:13
|
|
366
|
+
msgid "My teams"
|
|
367
|
+
msgstr ""
|
|
368
|
+
|
|
369
|
+
#: templates/umap/home.html:14
|
|
290
370
|
msgid "Map of the uMaps"
|
|
291
371
|
msgstr "Karte aller „uMap“-Karten"
|
|
292
372
|
|
|
293
|
-
#: templates/umap/home.html:
|
|
373
|
+
#: templates/umap/home.html:24
|
|
294
374
|
msgid "Get inspired, browse maps"
|
|
295
375
|
msgstr "Lass dich inspirieren, schau dir diese Karten an."
|
|
296
376
|
|
|
297
|
-
#: templates/umap/login_popup_end.html:
|
|
377
|
+
#: templates/umap/login_popup_end.html:4
|
|
298
378
|
msgid "You are logged in. Continuing..."
|
|
299
379
|
msgstr "Du bist eingeloggt. Weiterleitung..."
|
|
300
380
|
|
|
301
|
-
#: templates/umap/map_list.html:
|
|
381
|
+
#: templates/umap/map_list.html:10 views.py:433
|
|
302
382
|
msgid "by"
|
|
303
383
|
msgstr "von"
|
|
304
384
|
|
|
305
|
-
#: templates/umap/map_list.html:
|
|
385
|
+
#: templates/umap/map_list.html:18
|
|
306
386
|
msgid "More"
|
|
307
387
|
msgstr "Mehr"
|
|
308
388
|
|
|
309
|
-
#: templates/umap/map_table.html:
|
|
389
|
+
#: templates/umap/map_table.html:8 templates/umap/user_teams.html:14
|
|
310
390
|
msgid "Name"
|
|
311
|
-
msgstr ""
|
|
391
|
+
msgstr "Name"
|
|
312
392
|
|
|
313
|
-
#: templates/umap/map_table.html:
|
|
393
|
+
#: templates/umap/map_table.html:11
|
|
314
394
|
msgid "Preview"
|
|
315
|
-
msgstr ""
|
|
395
|
+
msgstr "Vorschau"
|
|
316
396
|
|
|
317
|
-
#: templates/umap/map_table.html:
|
|
397
|
+
#: templates/umap/map_table.html:14
|
|
318
398
|
msgid "Who can see"
|
|
319
|
-
msgstr ""
|
|
399
|
+
msgstr "Wer darf betrachten"
|
|
320
400
|
|
|
321
|
-
#: templates/umap/map_table.html:
|
|
401
|
+
#: templates/umap/map_table.html:17
|
|
322
402
|
msgid "Who can edit"
|
|
323
|
-
msgstr ""
|
|
403
|
+
msgstr "Wer darf bearbeiten"
|
|
324
404
|
|
|
325
|
-
#: templates/umap/map_table.html:
|
|
405
|
+
#: templates/umap/map_table.html:20
|
|
326
406
|
msgid "Last save"
|
|
327
|
-
msgstr ""
|
|
407
|
+
msgstr "zuletzt gespeichert"
|
|
328
408
|
|
|
329
|
-
#: templates/umap/map_table.html:
|
|
409
|
+
#: templates/umap/map_table.html:23
|
|
330
410
|
msgid "Owner"
|
|
331
|
-
msgstr ""
|
|
411
|
+
msgstr "Ersteller"
|
|
332
412
|
|
|
333
|
-
#: templates/umap/map_table.html:
|
|
413
|
+
#: templates/umap/map_table.html:26 templates/umap/user_teams.html:20
|
|
334
414
|
msgid "Actions"
|
|
335
|
-
msgstr ""
|
|
415
|
+
msgstr "Aktionen"
|
|
336
416
|
|
|
337
|
-
#: templates/umap/map_table.html:
|
|
417
|
+
#: templates/umap/map_table.html:41 templates/umap/map_table.html:43
|
|
338
418
|
msgid "Open preview"
|
|
339
|
-
msgstr ""
|
|
419
|
+
msgstr "Vorschau öffnen"
|
|
340
420
|
|
|
341
|
-
#: templates/umap/map_table.html:
|
|
421
|
+
#: templates/umap/map_table.html:72 templates/umap/map_table.html:74
|
|
342
422
|
msgid "Share"
|
|
343
|
-
msgstr ""
|
|
423
|
+
msgstr "Teilen"
|
|
344
424
|
|
|
345
|
-
#: templates/umap/map_table.html:
|
|
425
|
+
#: templates/umap/map_table.html:78 templates/umap/map_table.html:80
|
|
426
|
+
#: templates/umap/user_teams.html:38 templates/umap/user_teams.html:40
|
|
346
427
|
msgid "Edit"
|
|
347
|
-
msgstr ""
|
|
428
|
+
msgstr "Bearbeiten"
|
|
348
429
|
|
|
349
|
-
#: templates/umap/map_table.html:
|
|
430
|
+
#: templates/umap/map_table.html:84 templates/umap/map_table.html:86
|
|
350
431
|
msgid "Download"
|
|
351
|
-
msgstr ""
|
|
432
|
+
msgstr "Herunterladen"
|
|
352
433
|
|
|
353
|
-
#: templates/umap/map_table.html:
|
|
434
|
+
#: templates/umap/map_table.html:90 templates/umap/map_table.html:92
|
|
354
435
|
msgid "Clone"
|
|
355
|
-
msgstr ""
|
|
436
|
+
msgstr "Duplizieren"
|
|
356
437
|
|
|
357
|
-
#: templates/umap/map_table.html:
|
|
438
|
+
#: templates/umap/map_table.html:101 templates/umap/map_table.html:103
|
|
358
439
|
msgid "Delete"
|
|
359
|
-
msgstr ""
|
|
440
|
+
msgstr "Löschen"
|
|
360
441
|
|
|
361
|
-
#: templates/umap/map_table.html:
|
|
442
|
+
#: templates/umap/map_table.html:117
|
|
362
443
|
msgid "first"
|
|
363
|
-
msgstr ""
|
|
444
|
+
msgstr "erste"
|
|
364
445
|
|
|
365
|
-
#: templates/umap/map_table.html:
|
|
446
|
+
#: templates/umap/map_table.html:118
|
|
366
447
|
msgid "previous"
|
|
367
|
-
msgstr ""
|
|
448
|
+
msgstr "zurück"
|
|
368
449
|
|
|
369
|
-
#: templates/umap/map_table.html:
|
|
450
|
+
#: templates/umap/map_table.html:126
|
|
370
451
|
#, python-format
|
|
371
452
|
msgid "Page %(maps_number)s of %(num_pages)s"
|
|
372
|
-
msgstr ""
|
|
453
|
+
msgstr "Seite %(maps_number)s von %(num_pages)s"
|
|
373
454
|
|
|
374
|
-
#: templates/umap/map_table.html:
|
|
455
|
+
#: templates/umap/map_table.html:131
|
|
375
456
|
msgid "next"
|
|
376
|
-
msgstr ""
|
|
457
|
+
msgstr "weiter"
|
|
377
458
|
|
|
378
|
-
#: templates/umap/map_table.html:
|
|
459
|
+
#: templates/umap/map_table.html:132
|
|
379
460
|
msgid "last"
|
|
380
|
-
msgstr ""
|
|
461
|
+
msgstr "letzte"
|
|
381
462
|
|
|
382
|
-
#: templates/umap/map_table.html:
|
|
463
|
+
#: templates/umap/map_table.html:140
|
|
383
464
|
#, python-format
|
|
384
465
|
msgid "Lines per page: %(per_page)s"
|
|
385
|
-
msgstr ""
|
|
466
|
+
msgstr "Zeilen pro Seite: %(per_page)s"
|
|
386
467
|
|
|
387
|
-
#: templates/umap/map_table.html:
|
|
468
|
+
#: templates/umap/map_table.html:145
|
|
388
469
|
#, python-format
|
|
389
470
|
msgid "%(count)s maps"
|
|
390
|
-
msgstr ""
|
|
471
|
+
msgstr "%(count)s Karten"
|
|
391
472
|
|
|
392
|
-
#: templates/umap/navigation.html:
|
|
473
|
+
#: templates/umap/navigation.html:11 templates/umap/user_dashboard.html:6
|
|
393
474
|
msgid "My Dashboard"
|
|
394
|
-
msgstr ""
|
|
475
|
+
msgstr "Mein Dashboard"
|
|
395
476
|
|
|
396
|
-
#: templates/umap/navigation.html:
|
|
477
|
+
#: templates/umap/navigation.html:14
|
|
397
478
|
msgid "Starred maps"
|
|
398
|
-
msgstr ""
|
|
479
|
+
msgstr "Favorisierte Karten"
|
|
399
480
|
|
|
400
|
-
#: templates/umap/navigation.html:
|
|
481
|
+
#: templates/umap/navigation.html:18
|
|
401
482
|
msgid "Log in"
|
|
402
483
|
msgstr "Einloggen"
|
|
403
484
|
|
|
404
|
-
#: templates/umap/navigation.html:
|
|
485
|
+
#: templates/umap/navigation.html:18
|
|
405
486
|
msgid "Sign in"
|
|
406
487
|
msgstr "Anmelden"
|
|
407
488
|
|
|
408
|
-
#: templates/umap/navigation.html:
|
|
489
|
+
#: templates/umap/navigation.html:22
|
|
409
490
|
msgid "About"
|
|
410
491
|
msgstr "Über"
|
|
411
492
|
|
|
412
|
-
#: templates/umap/navigation.html:
|
|
413
|
-
msgid "Help"
|
|
414
|
-
msgstr "Hilfe"
|
|
415
|
-
|
|
416
|
-
#: templates/umap/navigation.html:29
|
|
493
|
+
#: templates/umap/navigation.html:30
|
|
417
494
|
msgid "Change password"
|
|
418
495
|
msgstr "Passwort ändern"
|
|
419
496
|
|
|
420
|
-
#: templates/umap/navigation.html:
|
|
497
|
+
#: templates/umap/navigation.html:34
|
|
421
498
|
msgid "Log out"
|
|
422
499
|
msgstr "Ausloggen"
|
|
423
500
|
|
|
424
|
-
#: templates/umap/password_change.html:
|
|
501
|
+
#: templates/umap/password_change.html:7
|
|
425
502
|
msgid "Password change"
|
|
426
503
|
msgstr "Passwortänderung"
|
|
427
504
|
|
|
428
|
-
#: templates/umap/password_change.html:
|
|
505
|
+
#: templates/umap/password_change.html:10
|
|
429
506
|
msgid ""
|
|
430
507
|
"Please enter your old password, for security's sake, and then enter your new"
|
|
431
508
|
" password twice so we can verify you typed it in correctly."
|
|
432
509
|
msgstr "Bitte gib aus Sicherheitsgründen dein altes Passwort ein und dann zweimal dein neues, um sicherzustellen, dass du es korrekt eingegeben hast."
|
|
433
510
|
|
|
434
|
-
#: templates/umap/password_change.html:
|
|
511
|
+
#: templates/umap/password_change.html:17
|
|
435
512
|
msgid "Old password"
|
|
436
513
|
msgstr "Altes Passwort"
|
|
437
514
|
|
|
438
|
-
#: templates/umap/password_change.html:
|
|
515
|
+
#: templates/umap/password_change.html:22
|
|
439
516
|
msgid "New password"
|
|
440
517
|
msgstr "Neues Passwort"
|
|
441
518
|
|
|
442
|
-
#: templates/umap/password_change.html:
|
|
519
|
+
#: templates/umap/password_change.html:26
|
|
443
520
|
msgid "New password confirmation"
|
|
444
521
|
msgstr "Neues Passwort bestätigen"
|
|
445
522
|
|
|
446
|
-
#: templates/umap/password_change.html:
|
|
523
|
+
#: templates/umap/password_change.html:27
|
|
447
524
|
msgid "Change my password"
|
|
448
525
|
msgstr "Mein Passwort ändern"
|
|
449
526
|
|
|
450
|
-
#: templates/umap/password_change_done.html:
|
|
527
|
+
#: templates/umap/password_change_done.html:7
|
|
451
528
|
msgid "Password change successful"
|
|
452
529
|
msgstr "Passwortänderung erfolgreich"
|
|
453
530
|
|
|
454
|
-
#: templates/umap/password_change_done.html:
|
|
531
|
+
#: templates/umap/password_change_done.html:10
|
|
455
532
|
msgid "Your password was changed."
|
|
456
533
|
msgstr "Ihr Passwort wurde geändert."
|
|
457
534
|
|
|
458
|
-
#: templates/umap/search.html:
|
|
535
|
+
#: templates/umap/search.html:15
|
|
459
536
|
#, python-format
|
|
460
537
|
msgid "%(count)s map found:"
|
|
461
538
|
msgid_plural "%(count)s maps found:"
|
|
462
539
|
msgstr[0] ""
|
|
463
540
|
msgstr[1] ""
|
|
464
541
|
|
|
465
|
-
#: templates/umap/search.html:
|
|
542
|
+
#: templates/umap/search.html:24
|
|
466
543
|
msgid "No map found."
|
|
467
|
-
msgstr ""
|
|
544
|
+
msgstr "Keine Karte gefunden."
|
|
468
545
|
|
|
469
|
-
#: templates/umap/search.html:
|
|
546
|
+
#: templates/umap/search.html:29
|
|
470
547
|
msgid "Latest created maps"
|
|
471
|
-
msgstr ""
|
|
548
|
+
msgstr "Zuletzt erstellte Karten"
|
|
472
549
|
|
|
473
|
-
#: templates/umap/search_bar.html:
|
|
550
|
+
#: templates/umap/search_bar.html:4
|
|
474
551
|
msgid "Search maps"
|
|
475
552
|
msgstr "Karten suchen"
|
|
476
553
|
|
|
477
|
-
#: templates/umap/search_bar.html:
|
|
554
|
+
#: templates/umap/search_bar.html:15
|
|
478
555
|
msgid "Search"
|
|
479
556
|
msgstr "Suchen"
|
|
480
557
|
|
|
481
|
-
#: templates/umap/
|
|
482
|
-
|
|
558
|
+
#: templates/umap/team_detail.html:10
|
|
559
|
+
#, python-format
|
|
560
|
+
msgid "Browse %(current_team)s's maps"
|
|
483
561
|
msgstr ""
|
|
484
562
|
|
|
485
|
-
#: templates/umap/
|
|
563
|
+
#: templates/umap/team_detail.html:22
|
|
486
564
|
#, python-format
|
|
487
|
-
msgid "
|
|
565
|
+
msgid "%(current_team)s has no public maps."
|
|
488
566
|
msgstr ""
|
|
489
567
|
|
|
490
|
-
#: templates/umap/
|
|
491
|
-
msgid "
|
|
568
|
+
#: templates/umap/team_form.html:24
|
|
569
|
+
msgid "Delete this team"
|
|
492
570
|
msgstr ""
|
|
493
571
|
|
|
494
|
-
#: templates/umap/
|
|
495
|
-
msgid "
|
|
572
|
+
#: templates/umap/team_form.html:47
|
|
573
|
+
msgid "Add user"
|
|
496
574
|
msgstr ""
|
|
497
575
|
|
|
498
|
-
#: templates/umap/user_dashboard.html:
|
|
576
|
+
#: templates/umap/user_dashboard.html:9 templates/umap/user_dashboard.html:25
|
|
577
|
+
msgid "Search my maps"
|
|
578
|
+
msgstr "Meine Karten suchen"
|
|
579
|
+
|
|
580
|
+
#: templates/umap/user_dashboard.html:17 templates/umap/user_dashboard.html:22
|
|
581
|
+
msgid "Map’s title"
|
|
582
|
+
msgstr "Kartentitel"
|
|
583
|
+
|
|
584
|
+
#: templates/umap/user_dashboard.html:30
|
|
499
585
|
#, python-format
|
|
500
586
|
msgid "Download %(count)s maps"
|
|
501
|
-
msgstr ""
|
|
587
|
+
msgstr "Herunterladen von %(count)s Karten"
|
|
502
588
|
|
|
503
|
-
#: templates/umap/user_dashboard.html:
|
|
589
|
+
#: templates/umap/user_dashboard.html:40
|
|
504
590
|
msgid "You have no map yet."
|
|
591
|
+
msgstr "Du hast noch keine Karte."
|
|
592
|
+
|
|
593
|
+
#: templates/umap/user_teams.html:17
|
|
594
|
+
msgid "Users"
|
|
595
|
+
msgstr ""
|
|
596
|
+
|
|
597
|
+
#: templates/umap/user_teams.html:48
|
|
598
|
+
msgid "New team"
|
|
599
|
+
msgstr ""
|
|
600
|
+
|
|
601
|
+
#: views.py:235
|
|
602
|
+
msgid "Cannot delete a team with more than one member"
|
|
603
|
+
msgstr ""
|
|
604
|
+
|
|
605
|
+
#: views.py:239
|
|
606
|
+
#, python-format
|
|
607
|
+
msgid "Team “%(name)s” has been deleted"
|
|
505
608
|
msgstr ""
|
|
506
609
|
|
|
507
|
-
#: views.py:
|
|
610
|
+
#: views.py:438
|
|
508
611
|
msgid "View the map"
|
|
509
612
|
msgstr "Diese Karte anzeigen"
|
|
510
613
|
|
|
511
|
-
#: views.py:
|
|
614
|
+
#: views.py:824
|
|
512
615
|
msgid "See full screen"
|
|
513
|
-
msgstr ""
|
|
616
|
+
msgstr "Vollbildanzeige"
|
|
514
617
|
|
|
515
|
-
#: views.py:
|
|
618
|
+
#: views.py:953
|
|
516
619
|
msgid "Map editors updated with success!"
|
|
517
620
|
msgstr "Bearbeiter erfolgreich geändert"
|
|
518
621
|
|
|
519
|
-
#: views.py:
|
|
622
|
+
#: views.py:989
|
|
520
623
|
#, python-format
|
|
521
624
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
522
|
-
msgstr ""
|
|
625
|
+
msgstr "Der uMap-Bearbeitungslink für Deine Karte: %(map_name)s"
|
|
523
626
|
|
|
524
|
-
#: views.py:
|
|
627
|
+
#: views.py:992
|
|
525
628
|
#, python-format
|
|
526
629
|
msgid "Here is your secret edit link: %(link)s"
|
|
527
|
-
msgstr ""
|
|
630
|
+
msgstr "Dies ist der geheime Bearbeitungslink: %(link)s"
|
|
631
|
+
|
|
632
|
+
#: views.py:999
|
|
633
|
+
#, python-format
|
|
634
|
+
msgid "Can't send email to %(email)s"
|
|
635
|
+
msgstr "E-Mail kann nicht gesendet werden an %(email)s"
|
|
528
636
|
|
|
529
|
-
#: views.py:
|
|
637
|
+
#: views.py:1002
|
|
530
638
|
#, python-format
|
|
531
639
|
msgid "Email sent to %(email)s"
|
|
532
|
-
msgstr ""
|
|
640
|
+
msgstr "Email gesendet an %(email)s"
|
|
533
641
|
|
|
534
|
-
#: views.py:
|
|
642
|
+
#: views.py:1013
|
|
535
643
|
msgid "Only its owner can delete the map."
|
|
536
644
|
msgstr "Nur der Ersteller kann die Karte löschen."
|
|
537
645
|
|
|
538
|
-
#: views.py:
|
|
646
|
+
#: views.py:1016
|
|
647
|
+
msgid "Map successfully deleted."
|
|
648
|
+
msgstr "Karte erfolgreich gelöscht."
|
|
649
|
+
|
|
650
|
+
#: views.py:1042
|
|
539
651
|
#, python-format
|
|
540
652
|
msgid ""
|
|
541
653
|
"Your map has been cloned! If you want to edit this map from another "
|
|
542
654
|
"computer, please use this link: %(anonymous_url)s"
|
|
543
655
|
msgstr "Deine Karte wurde kopiert! Wenn du diese Karte von einem anderen Computer aus bearbeiten möchtest, benutze bitte diesen Link: %(anonymous_url)s"
|
|
544
656
|
|
|
545
|
-
#: views.py:
|
|
657
|
+
#: views.py:1047
|
|
546
658
|
msgid "Congratulations, your map has been cloned!"
|
|
547
659
|
msgstr "Glückwunsch, deine Karte wurde kopiert!"
|
|
548
660
|
|
|
549
|
-
#: views.py:
|
|
661
|
+
#: views.py:1282
|
|
550
662
|
msgid "Layer successfully deleted."
|
|
551
663
|
msgstr "Ebene erfolgreich gelöscht."
|
|
552
664
|
|
|
553
|
-
#: views.py:
|
|
665
|
+
#: views.py:1304
|
|
554
666
|
msgid "Permissions updated with success!"
|
|
555
|
-
msgstr ""
|
|
667
|
+
msgstr "Berechtigungen erfolgreich aktualisiert!"
|