umap-project 3.0.6__py3-none-any.whl → 3.1.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- umap/__init__.py +1 -1
- umap/forms.py +1 -1
- umap/locale/br/LC_MESSAGES/django.mo +0 -0
- umap/locale/br/LC_MESSAGES/django.po +219 -72
- umap/locale/ca/LC_MESSAGES/django.mo +0 -0
- umap/locale/ca/LC_MESSAGES/django.po +286 -95
- umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- umap/locale/cs_CZ/LC_MESSAGES/django.po +211 -65
- umap/locale/da/LC_MESSAGES/django.mo +0 -0
- umap/locale/da/LC_MESSAGES/django.po +394 -202
- umap/locale/de/LC_MESSAGES/django.mo +0 -0
- umap/locale/de/LC_MESSAGES/django.po +146 -75
- umap/locale/el/LC_MESSAGES/django.mo +0 -0
- umap/locale/el/LC_MESSAGES/django.po +125 -59
- umap/locale/en/LC_MESSAGES/django.po +124 -58
- umap/locale/es/LC_MESSAGES/django.mo +0 -0
- umap/locale/es/LC_MESSAGES/django.po +125 -59
- umap/locale/et/LC_MESSAGES/django.mo +0 -0
- umap/locale/et/LC_MESSAGES/django.po +210 -64
- umap/locale/eu/LC_MESSAGES/django.mo +0 -0
- umap/locale/eu/LC_MESSAGES/django.po +212 -65
- umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
- umap/locale/fa_IR/LC_MESSAGES/django.po +286 -95
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +125 -59
- umap/locale/gl/LC_MESSAGES/django.mo +0 -0
- umap/locale/gl/LC_MESSAGES/django.po +212 -66
- umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- umap/locale/hu/LC_MESSAGES/django.po +148 -78
- umap/locale/is/LC_MESSAGES/django.mo +0 -0
- umap/locale/is/LC_MESSAGES/django.po +130 -60
- umap/locale/it/LC_MESSAGES/django.mo +0 -0
- umap/locale/it/LC_MESSAGES/django.po +125 -59
- umap/locale/ms/LC_MESSAGES/django.mo +0 -0
- umap/locale/ms/LC_MESSAGES/django.po +289 -98
- umap/locale/nl/LC_MESSAGES/django.mo +0 -0
- umap/locale/nl/LC_MESSAGES/django.po +128 -61
- umap/locale/pl/LC_MESSAGES/django.mo +0 -0
- umap/locale/pl/LC_MESSAGES/django.po +287 -96
- umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- umap/locale/pt/LC_MESSAGES/django.po +211 -65
- umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
- umap/locale/zh_TW/LC_MESSAGES/django.po +212 -66
- umap/management/commands/migrate_to_S3.py +42 -20
- umap/management/commands/purge_old_versions.py +63 -0
- umap/management/commands/switch_user.py +52 -0
- umap/managers.py +29 -2
- umap/middleware.py +1 -1
- umap/migrations/0028_map_is_template.py +21 -0
- umap/models.py +14 -4
- umap/settings/base.py +22 -0
- umap/static/umap/base.css +4 -2
- umap/static/umap/content.css +1 -1
- umap/static/umap/css/dialog.css +5 -2
- umap/static/umap/css/form.css +19 -12
- umap/static/umap/css/icon.css +6 -0
- umap/static/umap/css/importers.css +4 -0
- umap/static/umap/css/panel.css +2 -0
- umap/static/umap/img/16-white.svg +5 -1
- umap/static/umap/img/16.svg +1 -1
- umap/static/umap/img/24-white.svg +3 -2
- umap/static/umap/img/24.svg +3 -4
- umap/static/umap/img/importers/opendata.svg +1 -0
- umap/static/umap/img/providers/bitbucket.png +0 -0
- umap/static/umap/img/source/16-white.svg +8 -4
- umap/static/umap/img/source/16.svg +1 -1
- umap/static/umap/img/source/24-white.svg +5 -4
- umap/static/umap/img/source/24.svg +5 -6
- umap/static/umap/js/components/modal.js +27 -0
- umap/static/umap/js/modules/caption.js +4 -4
- umap/static/umap/js/modules/data/features.js +40 -4
- umap/static/umap/js/modules/data/layer.js +208 -138
- umap/static/umap/js/modules/form/builder.js +6 -14
- umap/static/umap/js/modules/form/fields.js +2 -2
- umap/static/umap/js/modules/help.js +11 -3
- umap/static/umap/js/modules/importer.js +7 -4
- umap/static/umap/js/modules/importers/opendata.js +142 -0
- umap/static/umap/js/modules/permissions.js +3 -3
- umap/static/umap/js/modules/rendering/controls.js +34 -2
- umap/static/umap/js/modules/rendering/icon.js +2 -2
- umap/static/umap/js/modules/rendering/layers/base.js +1 -1
- umap/static/umap/js/modules/rendering/layers/classified.js +55 -49
- umap/static/umap/js/modules/rendering/layers/cluster.js +16 -9
- umap/static/umap/js/modules/rendering/layers/heat.js +13 -11
- umap/static/umap/js/modules/rendering/map.js +5 -0
- umap/static/umap/js/modules/rendering/ui.js +23 -0
- umap/static/umap/js/modules/rules.js +24 -23
- umap/static/umap/js/modules/schema.js +60 -4
- umap/static/umap/js/modules/sync/updaters.js +7 -3
- umap/static/umap/js/modules/tableeditor.js +7 -30
- umap/static/umap/js/modules/templates.js +122 -0
- umap/static/umap/js/modules/ui/bar.js +13 -3
- umap/static/umap/js/modules/ui/panel.js +1 -1
- umap/static/umap/js/modules/umap.js +28 -13
- umap/static/umap/js/umap.controls.js +11 -4
- umap/static/umap/locale/br.js +51 -18
- umap/static/umap/locale/br.json +51 -18
- umap/static/umap/locale/da.js +343 -310
- umap/static/umap/locale/da.json +343 -310
- umap/static/umap/locale/de.js +40 -7
- umap/static/umap/locale/de.json +40 -7
- umap/static/umap/locale/el.js +31 -4
- umap/static/umap/locale/el.json +31 -4
- umap/static/umap/locale/en.js +33 -1
- umap/static/umap/locale/en.json +33 -1
- umap/static/umap/locale/es.js +37 -4
- umap/static/umap/locale/es.json +37 -4
- umap/static/umap/locale/fr.js +34 -1
- umap/static/umap/locale/fr.json +34 -1
- umap/static/umap/locale/hu.js +44 -17
- umap/static/umap/locale/hu.json +44 -17
- umap/static/umap/locale/it.js +74 -41
- umap/static/umap/locale/it.json +74 -41
- umap/static/umap/locale/nl.js +42 -9
- umap/static/umap/locale/nl.json +42 -9
- umap/static/umap/map.css +3 -23
- umap/static/umap/vendors/textpath/leaflet.textpath.js +184 -0
- umap/storage/fs.py +19 -9
- umap/templates/umap/dashboard_menu.html +5 -0
- umap/templates/umap/design_system.html +9 -0
- umap/templates/umap/js.html +3 -0
- umap/templates/umap/map_list.html +2 -2
- umap/templates/umap/map_table.html +18 -18
- umap/templates/umap/user_dashboard.html +9 -58
- umap/templates/umap/user_map_table.html +36 -0
- umap/templates/umap/user_templates.html +19 -0
- umap/templatetags/umap_tags.py +5 -0
- umap/tests/integration/test_conditional_rules.py +57 -0
- umap/tests/integration/test_datalayer.py +16 -9
- umap/tests/integration/test_edit_marker.py +11 -0
- umap/tests/integration/test_tableeditor.py +42 -7
- umap/tests/integration/test_templates.py +44 -0
- umap/tests/test_dashboard.py +19 -0
- umap/tests/test_purge_old_versions.py +91 -0
- umap/tests/test_switch_user.py +31 -0
- umap/tests/test_views.py +67 -0
- umap/urls.py +7 -1
- umap/views.py +64 -18
- {umap_project-3.0.6.dist-info → umap_project-3.1.1.dist-info}/METADATA +13 -13
- {umap_project-3.0.6.dist-info → umap_project-3.1.1.dist-info}/RECORD +143 -130
- {umap_project-3.0.6.dist-info → umap_project-3.1.1.dist-info}/WHEEL +0 -0
- {umap_project-3.0.6.dist-info → umap_project-3.1.1.dist-info}/entry_points.txt +0 -0
- {umap_project-3.0.6.dist-info → umap_project-3.1.1.dist-info}/licenses/LICENSE +0 -0
|
Binary file
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
# Jannis Leidel <jannis@leidel.info>, 2016
|
|
13
13
|
# gislars, 2024
|
|
14
14
|
# Metzor Metzingen, 2025
|
|
15
|
+
# Paul Vogel, 2025
|
|
15
16
|
# pgeo, 2023
|
|
16
17
|
# Klumbumbus, 2013-2014,2018-2019
|
|
17
18
|
# YOHAN BONIFACE <yb@enix.org>, 2012
|
|
@@ -19,9 +20,9 @@ msgid ""
|
|
|
19
20
|
msgstr ""
|
|
20
21
|
"Project-Id-Version: uMap\n"
|
|
21
22
|
"Report-Msgid-Bugs-To: \n"
|
|
22
|
-
"POT-Creation-Date: 2025-
|
|
23
|
+
"POT-Creation-Date: 2025-06-10 09:19+0000\n"
|
|
23
24
|
"PO-Revision-Date: 2013-11-22 14:00+0000\n"
|
|
24
|
-
"Last-Translator:
|
|
25
|
+
"Last-Translator: Paul Vogel, 2025\n"
|
|
25
26
|
"Language-Team: German (http://app.transifex.com/openstreetmap/umap/language/de/)\n"
|
|
26
27
|
"MIME-Version: 1.0\n"
|
|
27
28
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
@@ -53,7 +54,7 @@ msgstr "Anmelden mittels “%(name)s” ist veraltet und wird bald nicht mehr m
|
|
|
53
54
|
msgid "name"
|
|
54
55
|
msgstr "Name"
|
|
55
56
|
|
|
56
|
-
#: models.py:63 models.py:
|
|
57
|
+
#: models.py:63 models.py:503
|
|
57
58
|
msgid "description"
|
|
58
59
|
msgstr "Beschreibung"
|
|
59
60
|
|
|
@@ -73,23 +74,23 @@ msgstr "Das URL-Template nutzt das OSM Tile Format"
|
|
|
73
74
|
msgid "Order of the tilelayers in the edit box"
|
|
74
75
|
msgstr "Reihenfolge der Karten-Ebenen in der Bearbeiten-Box"
|
|
75
76
|
|
|
76
|
-
#: models.py:176 models.py:
|
|
77
|
+
#: models.py:176 models.py:497
|
|
77
78
|
msgid "Only editable with secret edit link"
|
|
78
79
|
msgstr "Nur mit geheimem Bearbeitungslink zu bearbeiten"
|
|
79
80
|
|
|
80
|
-
#: models.py:177 models.py:
|
|
81
|
+
#: models.py:177 models.py:498
|
|
81
82
|
msgid "Everyone can edit"
|
|
82
83
|
msgstr "Jeder kann bearbeiten"
|
|
83
84
|
|
|
84
|
-
#: models.py:180 models.py:
|
|
85
|
+
#: models.py:180 models.py:491
|
|
85
86
|
msgid "Everyone"
|
|
86
87
|
msgstr "Jeder"
|
|
87
88
|
|
|
88
|
-
#: models.py:181 models.py:190 models.py:
|
|
89
|
+
#: models.py:181 models.py:190 models.py:492
|
|
89
90
|
msgid "Editors and team only"
|
|
90
91
|
msgstr "Nur Bearbeiter und Team"
|
|
91
92
|
|
|
92
|
-
#: models.py:182 models.py:
|
|
93
|
+
#: models.py:182 models.py:493
|
|
93
94
|
msgid "Owner only"
|
|
94
95
|
msgstr "Nur Ersteller"
|
|
95
96
|
|
|
@@ -109,7 +110,7 @@ msgstr "Jeder mit Link"
|
|
|
109
110
|
msgid "Blocked"
|
|
110
111
|
msgstr "blockiert"
|
|
111
112
|
|
|
112
|
-
#: models.py:192 models.py:
|
|
113
|
+
#: models.py:192 models.py:487
|
|
113
114
|
msgid "Deleted"
|
|
114
115
|
msgstr "Gelöscht"
|
|
115
116
|
|
|
@@ -149,101 +150,125 @@ msgstr "Bearbeiter"
|
|
|
149
150
|
msgid "team"
|
|
150
151
|
msgstr "Team"
|
|
151
152
|
|
|
152
|
-
#: models.py:230 models.py:
|
|
153
|
+
#: models.py:230 models.py:519
|
|
153
154
|
msgid "edit status"
|
|
154
155
|
msgstr "Bearbeitungsstatus"
|
|
155
156
|
|
|
156
|
-
#: models.py:235 models.py:
|
|
157
|
+
#: models.py:235 models.py:524
|
|
157
158
|
msgid "share status"
|
|
158
159
|
msgstr "Teilen-Status"
|
|
159
160
|
|
|
160
|
-
#: models.py:238 models.py:
|
|
161
|
+
#: models.py:238 models.py:514
|
|
161
162
|
msgid "settings"
|
|
162
163
|
msgstr "Einstellungen"
|
|
163
164
|
|
|
164
|
-
#: models.py:
|
|
165
|
+
#: models.py:243
|
|
166
|
+
msgid "save as template"
|
|
167
|
+
msgstr "als Vorlage speichern"
|
|
168
|
+
|
|
169
|
+
#: models.py:244
|
|
170
|
+
msgid "This map is a template map."
|
|
171
|
+
msgstr "Diese Karte ist eine Vorlage."
|
|
172
|
+
|
|
173
|
+
#: models.py:420
|
|
165
174
|
msgid "Clone of"
|
|
166
175
|
msgstr "Duplikat von"
|
|
167
176
|
|
|
168
|
-
#: models.py:
|
|
177
|
+
#: models.py:486 models.py:490 models.py:496
|
|
169
178
|
msgid "Inherit"
|
|
170
179
|
msgstr "erben"
|
|
171
180
|
|
|
172
|
-
#: models.py:
|
|
181
|
+
#: models.py:509
|
|
173
182
|
msgid "display on load"
|
|
174
183
|
msgstr "Beim Seitenaufruf einblenden"
|
|
175
184
|
|
|
176
|
-
#: models.py:
|
|
185
|
+
#: models.py:510
|
|
177
186
|
msgid "Display this layer on load."
|
|
178
187
|
msgstr "Diese Ebene beim Seitenaufruf einblenden."
|
|
179
188
|
|
|
180
|
-
#: settings/base.py:
|
|
189
|
+
#: settings/base.py:283
|
|
190
|
+
msgid "uMap user documentation"
|
|
191
|
+
msgstr "uMap Benutzerhandbuch"
|
|
192
|
+
|
|
193
|
+
#: settings/base.py:288
|
|
194
|
+
msgid "Video tutorials"
|
|
195
|
+
msgstr "Videotutorials"
|
|
196
|
+
|
|
197
|
+
#: settings/base.py:293
|
|
198
|
+
msgid "OpenStreetMap.org forum"
|
|
199
|
+
msgstr "OpenStreetMap.org Forum"
|
|
200
|
+
|
|
201
|
+
#: settings/base.py:298
|
|
202
|
+
msgid "OpenStreetMap France forum"
|
|
203
|
+
msgstr "OpenStreetMap.org Frankreich Forum"
|
|
204
|
+
|
|
205
|
+
#: settings/base.py:318
|
|
181
206
|
msgid "Art and Culture"
|
|
182
|
-
msgstr ""
|
|
207
|
+
msgstr "Kunst und Kultur"
|
|
183
208
|
|
|
184
|
-
#: settings/base.py:
|
|
209
|
+
#: settings/base.py:319
|
|
185
210
|
msgid "Cycling"
|
|
186
|
-
msgstr ""
|
|
211
|
+
msgstr "Fahrradfahren"
|
|
187
212
|
|
|
188
|
-
#: settings/base.py:
|
|
213
|
+
#: settings/base.py:320
|
|
189
214
|
msgid "Business"
|
|
190
215
|
msgstr ""
|
|
191
216
|
|
|
192
|
-
#: settings/base.py:
|
|
217
|
+
#: settings/base.py:321
|
|
193
218
|
msgid "Environment"
|
|
194
|
-
msgstr ""
|
|
219
|
+
msgstr "Umgebung"
|
|
195
220
|
|
|
196
|
-
#: settings/base.py:
|
|
221
|
+
#: settings/base.py:322
|
|
197
222
|
msgid "Education"
|
|
198
|
-
msgstr ""
|
|
223
|
+
msgstr "Bildung"
|
|
199
224
|
|
|
200
|
-
#: settings/base.py:
|
|
225
|
+
#: settings/base.py:323
|
|
201
226
|
msgid "Food and Agriculture"
|
|
202
227
|
msgstr ""
|
|
203
228
|
|
|
204
|
-
#: settings/base.py:
|
|
229
|
+
#: settings/base.py:324
|
|
205
230
|
msgid "Geopolitics"
|
|
206
231
|
msgstr ""
|
|
207
232
|
|
|
208
|
-
#: settings/base.py:
|
|
233
|
+
#: settings/base.py:325
|
|
209
234
|
msgid "Health"
|
|
210
|
-
msgstr ""
|
|
235
|
+
msgstr "Gesundheit"
|
|
211
236
|
|
|
212
|
-
#: settings/base.py:
|
|
237
|
+
#: settings/base.py:326
|
|
213
238
|
msgid "Hiking"
|
|
214
|
-
msgstr ""
|
|
239
|
+
msgstr "Wandern"
|
|
215
240
|
|
|
216
|
-
#: settings/base.py:
|
|
241
|
+
#: settings/base.py:327
|
|
217
242
|
msgid "History"
|
|
218
|
-
msgstr ""
|
|
243
|
+
msgstr "Geschichte"
|
|
219
244
|
|
|
220
|
-
#: settings/base.py:
|
|
245
|
+
#: settings/base.py:328
|
|
221
246
|
msgid "Public sector"
|
|
222
247
|
msgstr ""
|
|
223
248
|
|
|
224
|
-
#: settings/base.py:
|
|
249
|
+
#: settings/base.py:329
|
|
225
250
|
msgid "Science"
|
|
226
|
-
msgstr ""
|
|
251
|
+
msgstr "Wissenschaft"
|
|
227
252
|
|
|
228
|
-
#: settings/base.py:
|
|
253
|
+
#: settings/base.py:330
|
|
229
254
|
msgid "Shopping"
|
|
230
|
-
msgstr ""
|
|
255
|
+
msgstr "Shopping"
|
|
231
256
|
|
|
232
|
-
#: settings/base.py:
|
|
257
|
+
#: settings/base.py:331
|
|
233
258
|
msgid "Sport and Leisure"
|
|
234
|
-
msgstr ""
|
|
259
|
+
msgstr "Sport und Freizeit"
|
|
235
260
|
|
|
236
|
-
#: settings/base.py:
|
|
261
|
+
#: settings/base.py:332
|
|
237
262
|
msgid "Travel"
|
|
238
|
-
msgstr ""
|
|
263
|
+
msgstr "Reisen"
|
|
239
264
|
|
|
240
|
-
#: settings/base.py:
|
|
265
|
+
#: settings/base.py:333
|
|
241
266
|
msgid "Transports"
|
|
242
267
|
msgstr ""
|
|
243
268
|
|
|
244
|
-
#: settings/base.py:
|
|
269
|
+
#: settings/base.py:334
|
|
245
270
|
msgid "Tourism"
|
|
246
|
-
msgstr ""
|
|
271
|
+
msgstr "Tourismus"
|
|
247
272
|
|
|
248
273
|
#: templates/403.html:8
|
|
249
274
|
msgid ""
|
|
@@ -387,7 +412,7 @@ msgid "And it's <a href=\"%(repo_url)s\">open source</a>!"
|
|
|
387
412
|
msgstr "Und es ist <a href=\"%(repo_url)s\">Open Source</a>!"
|
|
388
413
|
|
|
389
414
|
#: templates/umap/about_summary.html:63 templates/umap/navigation.html:39
|
|
390
|
-
#: templates/umap/user_dashboard.html:
|
|
415
|
+
#: templates/umap/user_dashboard.html:16
|
|
391
416
|
msgid "Create a map"
|
|
392
417
|
msgstr "Erstelle eine Karte"
|
|
393
418
|
|
|
@@ -485,11 +510,20 @@ msgstr "Meine Karten (%(count)s)"
|
|
|
485
510
|
msgid "My Maps"
|
|
486
511
|
msgstr "Meine Karten"
|
|
487
512
|
|
|
488
|
-
#: templates/umap/dashboard_menu.html:
|
|
513
|
+
#: templates/umap/dashboard_menu.html:11
|
|
514
|
+
#, python-format
|
|
515
|
+
msgid "My Templates (%(count)s)"
|
|
516
|
+
msgstr ""
|
|
517
|
+
|
|
518
|
+
#: templates/umap/dashboard_menu.html:13 templates/umap/user_templates.html:6
|
|
519
|
+
msgid "My Templates"
|
|
520
|
+
msgstr ""
|
|
521
|
+
|
|
522
|
+
#: templates/umap/dashboard_menu.html:17
|
|
489
523
|
msgid "My profile"
|
|
490
524
|
msgstr "Mein Profil"
|
|
491
525
|
|
|
492
|
-
#: templates/umap/dashboard_menu.html:
|
|
526
|
+
#: templates/umap/dashboard_menu.html:20
|
|
493
527
|
msgid "My teams"
|
|
494
528
|
msgstr "Meine Teams"
|
|
495
529
|
|
|
@@ -505,13 +539,21 @@ msgstr "Lass dich inspirieren, schau dir diese Karten an."
|
|
|
505
539
|
msgid "You are logged in. Continuing..."
|
|
506
540
|
msgstr "Du bist eingeloggt. Weiterleitung..."
|
|
507
541
|
|
|
508
|
-
#: templates/umap/map_list.html:
|
|
542
|
+
#: templates/umap/map_list.html:15
|
|
543
|
+
msgid "template"
|
|
544
|
+
msgstr "Vorlage"
|
|
545
|
+
|
|
546
|
+
#: templates/umap/map_list.html:18 views.py:458
|
|
509
547
|
msgid "by"
|
|
510
548
|
msgstr "von"
|
|
511
549
|
|
|
550
|
+
#: templates/umap/map_list.html:22
|
|
551
|
+
msgid "See the template"
|
|
552
|
+
msgstr "Vorlage ansehen"
|
|
553
|
+
|
|
512
554
|
#: templates/umap/map_list.html:22
|
|
513
555
|
msgid "See the map"
|
|
514
|
-
msgstr ""
|
|
556
|
+
msgstr "Karte ansehen"
|
|
515
557
|
|
|
516
558
|
#: templates/umap/map_list.html:28
|
|
517
559
|
msgid "More"
|
|
@@ -545,7 +587,7 @@ msgstr "Ersteller"
|
|
|
545
587
|
msgid "Actions"
|
|
546
588
|
msgstr "Aktionen"
|
|
547
589
|
|
|
548
|
-
#: templates/umap/map_table.html:
|
|
590
|
+
#: templates/umap/map_table.html:40 templates/umap/map_table.html:42
|
|
549
591
|
msgid "Open preview"
|
|
550
592
|
msgstr "Vorschau öffnen"
|
|
551
593
|
|
|
@@ -672,11 +714,15 @@ msgid_plural "%(count)s maps found:"
|
|
|
672
714
|
msgstr[0] "%(count)s Karte gefunden:"
|
|
673
715
|
msgstr[1] "%(count)s Karten gefunden:"
|
|
674
716
|
|
|
675
|
-
#: templates/umap/search.html:30
|
|
717
|
+
#: templates/umap/search.html:30 templates/umap/user_dashboard.html:17
|
|
676
718
|
msgid "No map found."
|
|
677
719
|
msgstr "Keine Karte gefunden."
|
|
678
720
|
|
|
679
|
-
#: templates/umap/search.html:
|
|
721
|
+
#: templates/umap/search.html:36
|
|
722
|
+
msgid "Latest created maps in category"
|
|
723
|
+
msgstr ""
|
|
724
|
+
|
|
725
|
+
#: templates/umap/search.html:43
|
|
680
726
|
msgid "Latest created maps"
|
|
681
727
|
msgstr "Zuletzt erstellte Karten"
|
|
682
728
|
|
|
@@ -686,7 +732,7 @@ msgstr "Karten suchen"
|
|
|
686
732
|
|
|
687
733
|
#: templates/umap/search_bar.html:14
|
|
688
734
|
msgid "Any category"
|
|
689
|
-
msgstr ""
|
|
735
|
+
msgstr "Jede Kategorie"
|
|
690
736
|
|
|
691
737
|
#: templates/umap/search_bar.html:19
|
|
692
738
|
msgid "Search"
|
|
@@ -723,20 +769,20 @@ msgstr "Dieses Team löschen"
|
|
|
723
769
|
msgid "Add user"
|
|
724
770
|
msgstr "Benutzer hinzufügen"
|
|
725
771
|
|
|
726
|
-
#: templates/umap/user_dashboard.html:
|
|
772
|
+
#: templates/umap/user_dashboard.html:10
|
|
727
773
|
msgid "Search my maps"
|
|
728
774
|
msgstr "Meine Karten suchen"
|
|
729
775
|
|
|
730
|
-
#: templates/umap/user_dashboard.html:
|
|
731
|
-
msgid "Map’s
|
|
732
|
-
msgstr "
|
|
776
|
+
#: templates/umap/user_dashboard.html:11
|
|
777
|
+
msgid "Map’s name"
|
|
778
|
+
msgstr ""
|
|
733
779
|
|
|
734
|
-
#: templates/umap/user_dashboard.html:
|
|
780
|
+
#: templates/umap/user_dashboard.html:12
|
|
735
781
|
#, python-format
|
|
736
782
|
msgid "Download %(count)s maps"
|
|
737
783
|
msgstr "Herunterladen von %(count)s Karten"
|
|
738
784
|
|
|
739
|
-
#: templates/umap/user_dashboard.html:
|
|
785
|
+
#: templates/umap/user_dashboard.html:15
|
|
740
786
|
msgid "You have no map yet."
|
|
741
787
|
msgstr "Du hast noch keine Karte."
|
|
742
788
|
|
|
@@ -752,70 +798,95 @@ msgstr "Benutzer"
|
|
|
752
798
|
msgid "New team"
|
|
753
799
|
msgstr "Neues Team"
|
|
754
800
|
|
|
755
|
-
#:
|
|
801
|
+
#: templates/umap/user_templates.html:10
|
|
802
|
+
msgid "Search my templates"
|
|
803
|
+
msgstr ""
|
|
804
|
+
|
|
805
|
+
#: templates/umap/user_templates.html:11
|
|
806
|
+
msgid "Template’s name"
|
|
807
|
+
msgstr ""
|
|
808
|
+
|
|
809
|
+
#: templates/umap/user_templates.html:12
|
|
810
|
+
#, python-format
|
|
811
|
+
msgid "Download %(count)s templates"
|
|
812
|
+
msgstr ""
|
|
813
|
+
|
|
814
|
+
#: templates/umap/user_templates.html:15
|
|
815
|
+
msgid "You have no template yet."
|
|
816
|
+
msgstr ""
|
|
817
|
+
|
|
818
|
+
#: templates/umap/user_templates.html:16
|
|
819
|
+
msgid "Create a template"
|
|
820
|
+
msgstr ""
|
|
821
|
+
|
|
822
|
+
#: templates/umap/user_templates.html:17
|
|
823
|
+
msgid "No template found."
|
|
824
|
+
msgstr ""
|
|
825
|
+
|
|
826
|
+
#: views.py:233
|
|
756
827
|
msgid "Cannot delete a team with more than one member"
|
|
757
828
|
msgstr "Teams mit mehr als einem Mitglied können nicht gelöscht werden"
|
|
758
829
|
|
|
759
|
-
#: views.py:
|
|
830
|
+
#: views.py:237
|
|
760
831
|
#, python-format
|
|
761
832
|
msgid "Team “%(name)s” has been deleted"
|
|
762
833
|
msgstr "Team “%(name)s” wurde gelöscht"
|
|
763
834
|
|
|
764
|
-
#: views.py:
|
|
835
|
+
#: views.py:463
|
|
765
836
|
msgid "View the map"
|
|
766
837
|
msgstr "Diese Karte anzeigen"
|
|
767
838
|
|
|
768
|
-
#: views.py:
|
|
839
|
+
#: views.py:864
|
|
769
840
|
msgid "See full screen"
|
|
770
841
|
msgstr "Vollbildanzeige"
|
|
771
842
|
|
|
772
|
-
#: views.py:
|
|
843
|
+
#: views.py:1007
|
|
773
844
|
msgid "Map editors updated with success!"
|
|
774
845
|
msgstr "Bearbeiter erfolgreich geändert"
|
|
775
846
|
|
|
776
|
-
#: views.py:
|
|
847
|
+
#: views.py:1043
|
|
777
848
|
#, python-format
|
|
778
849
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
779
850
|
msgstr "Der uMap-Bearbeitungslink für Deine Karte: %(map_name)s"
|
|
780
851
|
|
|
781
|
-
#: views.py:
|
|
852
|
+
#: views.py:1046
|
|
782
853
|
#, python-format
|
|
783
854
|
msgid "Here is your secret edit link: %(link)s"
|
|
784
855
|
msgstr "Dies ist der geheime Bearbeitungslink: %(link)s"
|
|
785
856
|
|
|
786
|
-
#: views.py:
|
|
857
|
+
#: views.py:1053
|
|
787
858
|
#, python-format
|
|
788
859
|
msgid "Can't send email to %(email)s"
|
|
789
860
|
msgstr "E-Mail kann nicht gesendet werden an %(email)s"
|
|
790
861
|
|
|
791
|
-
#: views.py:
|
|
862
|
+
#: views.py:1056
|
|
792
863
|
#, python-format
|
|
793
864
|
msgid "Email sent to %(email)s"
|
|
794
865
|
msgstr "Email gesendet an %(email)s"
|
|
795
866
|
|
|
796
|
-
#: views.py:
|
|
867
|
+
#: views.py:1067
|
|
797
868
|
msgid "Only its owner can delete the map."
|
|
798
869
|
msgstr "Nur der Ersteller kann die Karte löschen."
|
|
799
870
|
|
|
800
|
-
#: views.py:
|
|
871
|
+
#: views.py:1073
|
|
801
872
|
msgid "Map successfully deleted."
|
|
802
873
|
msgstr "Karte erfolgreich gelöscht."
|
|
803
874
|
|
|
804
|
-
#: views.py:
|
|
875
|
+
#: views.py:1099
|
|
805
876
|
#, python-format
|
|
806
877
|
msgid ""
|
|
807
878
|
"Your map has been cloned! If you want to edit this map from another "
|
|
808
879
|
"computer, please use this link: %(anonymous_url)s"
|
|
809
880
|
msgstr "Deine Karte wurde kopiert! Wenn du diese Karte von einem anderen Computer aus bearbeiten möchtest, benutze bitte diesen Link: %(anonymous_url)s"
|
|
810
881
|
|
|
811
|
-
#: views.py:
|
|
882
|
+
#: views.py:1104
|
|
812
883
|
msgid "Congratulations, your map has been cloned!"
|
|
813
884
|
msgstr "Glückwunsch, deine Karte wurde kopiert!"
|
|
814
885
|
|
|
815
|
-
#: views.py:
|
|
886
|
+
#: views.py:1358
|
|
816
887
|
msgid "Layer successfully deleted."
|
|
817
888
|
msgstr "Ebene erfolgreich gelöscht."
|
|
818
889
|
|
|
819
|
-
#: views.py:
|
|
890
|
+
#: views.py:1380
|
|
820
891
|
msgid "Permissions updated with success!"
|
|
821
892
|
msgstr "Berechtigungen erfolgreich aktualisiert!"
|
|
Binary file
|