umap-project 2.5.1__py3-none-any.whl → 2.6.0b0__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 +346 -234
- 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 +3 -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 +3 -3
- 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 +994 -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/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 +573 -0
- umap/static/umap/js/modules/schema.js +24 -0
- 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 +79 -146
- umap/static/umap/js/umap.core.js +9 -9
- umap/static/umap/js/umap.forms.js +32 -12
- umap/static/umap/js/umap.js +65 -63
- umap/static/umap/locale/br.js +35 -35
- umap/static/umap/locale/br.json +35 -35
- umap/static/umap/locale/ca.js +50 -50
- umap/static/umap/locale/ca.json +50 -50
- umap/static/umap/locale/de.js +136 -136
- umap/static/umap/locale/de.json +136 -136
- umap/static/umap/locale/el.js +47 -47
- umap/static/umap/locale/el.json +47 -47
- umap/static/umap/locale/en.js +7 -1
- umap/static/umap/locale/en.json +7 -1
- umap/static/umap/locale/fa_IR.js +44 -44
- umap/static/umap/locale/fa_IR.json +44 -44
- umap/static/umap/locale/fr.js +8 -2
- umap/static/umap/locale/fr.json +8 -2
- umap/static/umap/locale/pt.js +17 -17
- umap/static/umap/locale/pt.json +17 -17
- umap/static/umap/locale/pt_PT.js +207 -207
- umap/static/umap/locale/pt_PT.json +207 -207
- umap/static/umap/locale/th_TH.js +25 -25
- umap/static/umap/locale/th_TH.json +25 -25
- umap/static/umap/map.css +107 -104
- umap/static/umap/nav.css +19 -10
- umap/static/umap/unittests/utils.js +230 -107
- umap/static/umap/vendors/csv2geojson/csv2geojson.js +62 -40
- umap/static/umap/vendors/markercluster/MarkerCluster.Default.css +1 -1
- umap/storage.py +1 -0
- 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 +6 -2
- 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 +4 -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_caption.py +20 -0
- umap/tests/integration/test_circles_layer.py +69 -0
- umap/tests/integration/test_draw_polygon.py +110 -13
- umap/tests/integration/test_draw_polyline.py +8 -18
- umap/tests/integration/test_edit_datalayer.py +1 -1
- umap/tests/integration/test_import.py +64 -5
- umap/tests/integration/test_owned_map.py +21 -13
- 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.1.dist-info → umap_project-2.6.0b0.dist-info}/METADATA +9 -9
- {umap_project-2.5.1.dist-info → umap_project-2.6.0b0.dist-info}/RECORD +177 -170
- 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.1.dist-info → umap_project-2.6.0b0.dist-info}/WHEEL +0 -0
- {umap_project-2.5.1.dist-info → umap_project-2.6.0b0.dist-info}/entry_points.txt +0 -0
- {umap_project-2.5.1.dist-info → umap_project-2.6.0b0.dist-info}/licenses/LICENSE +0 -0
umap/static/umap/locale/de.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
" (area: {measure})": "(
|
|
3
|
-
" (length: {measure})": "(
|
|
2
|
+
" (area: {measure})": "(Fläche: {measure})",
|
|
3
|
+
" (length: {measure})": "(Länge: {measure})",
|
|
4
4
|
"# one hash for main heading": "# Eine Raute für große Überschrift",
|
|
5
5
|
"## two hashes for second heading": "## Zwei Rauten für mittlere Überschrift",
|
|
6
6
|
"### three hashes for third heading": "### Drei Rauten für kleine Überschrift",
|
|
@@ -41,9 +41,9 @@
|
|
|
41
41
|
"Automatic": "Automatisch",
|
|
42
42
|
"Autostart when map is loaded": "Automatischer Start, wenn Karte geladen ist",
|
|
43
43
|
"Back to preview": "Zurück zur Vorschau",
|
|
44
|
-
"Background overlay url": "
|
|
44
|
+
"Background overlay url": "URL der Hintergrundkarte",
|
|
45
45
|
"Ball": "Stecknadel",
|
|
46
|
-
"Bring feature to center": "
|
|
46
|
+
"Bring feature to center": "Zentriere auf das Element",
|
|
47
47
|
"Browse data": "Daten anzeigen",
|
|
48
48
|
"by": "von",
|
|
49
49
|
"Cache proxied request": "Proxycache-Anfrage",
|
|
@@ -52,14 +52,14 @@
|
|
|
52
52
|
"Center map on your location": "Die Karte auf deinen Standort ausrichten",
|
|
53
53
|
"Change map background": "Hintergrundkarte ändern",
|
|
54
54
|
"Change tilelayers": "Kachelebenen ändern",
|
|
55
|
-
"Change": "
|
|
55
|
+
"Change": "Ändern",
|
|
56
56
|
"Choose the data format": "Wähle das Datenformat",
|
|
57
|
-
"Choropleth breakpoints": "
|
|
58
|
-
"Choropleth classes": "
|
|
59
|
-
"Choropleth color palette": "
|
|
60
|
-
"Choropleth mode": "
|
|
61
|
-
"Choropleth property value": "
|
|
62
|
-
"Choropleth": "
|
|
57
|
+
"Choropleth breakpoints": "Choroplethen Intervallgrenzen",
|
|
58
|
+
"Choropleth classes": "Choroplethen-Klassen",
|
|
59
|
+
"Choropleth color palette": "Choroplethen-Farbpalette",
|
|
60
|
+
"Choropleth mode": "Choroplethen-Modus",
|
|
61
|
+
"Choropleth property value": "Choroplethen-Eigenschaftswert",
|
|
62
|
+
"Choropleth": "Choroplethen",
|
|
63
63
|
"Circle": "Kreis",
|
|
64
64
|
"clear": "leeren",
|
|
65
65
|
"Click last point to finish shape": "Klicke den letzten Punkt an, um die Form abzuschließen",
|
|
@@ -85,10 +85,10 @@
|
|
|
85
85
|
"Coordinates": "Koordinaten",
|
|
86
86
|
"copy": "kopieren",
|
|
87
87
|
"Credits": "Credits",
|
|
88
|
-
"Current map view": "
|
|
88
|
+
"Current map view": "Aktuelle Kartenansicht",
|
|
89
89
|
"Current view instead of default map view?": "Aktuelle Kartenansicht anstatt der Standard-Kartenansicht verwenden?",
|
|
90
90
|
"Custom background": "Benutzerdefinierter Hintergrund",
|
|
91
|
-
"Custom overlay": "
|
|
91
|
+
"Custom overlay": "Benutzerdefinierter Overlay",
|
|
92
92
|
"dash array": "Linienart",
|
|
93
93
|
"Data is browsable": "Daten sind durchsuchbar",
|
|
94
94
|
"Datalayers": "Datenebenen",
|
|
@@ -121,7 +121,7 @@
|
|
|
121
121
|
"Display the locate control": "Den Ortungsbutton anzeigen.",
|
|
122
122
|
"Display the measure control": "Messsteuerung anzeigen",
|
|
123
123
|
"Display the search control": "Suchsteuerung anzeigen",
|
|
124
|
-
"Display the star map button": "
|
|
124
|
+
"Display the star map button": "Schalter für Bewertungsfunktion anzeigen",
|
|
125
125
|
"Display the tile layers control": "Kachelebenensteuerung anzeigen",
|
|
126
126
|
"Display the zoom control": "Zoomsteuerung anzeigen",
|
|
127
127
|
"Do you want to display a caption bar?": "Möchtest du eine Überschrift (Fußzeile) anzeigen?",
|
|
@@ -136,7 +136,7 @@
|
|
|
136
136
|
"Draw a marker": "Einen Marker zeichnen",
|
|
137
137
|
"Draw a polygon": "Eine Fläche zeichnen",
|
|
138
138
|
"Draw a polyline": "Eine Linie zeichnen",
|
|
139
|
-
"Drawing": "
|
|
139
|
+
"Drawing": "Zeichnen",
|
|
140
140
|
"Drop": "Tropfen",
|
|
141
141
|
"Dynamic properties": "Dynamische Merkmale",
|
|
142
142
|
"Dynamic": "Dynamisch",
|
|
@@ -147,29 +147,29 @@
|
|
|
147
147
|
"Edit": "Bearbeiten",
|
|
148
148
|
"Embed and link options": "Optionen zum Einbetten und für eine angepasste Kartenansicht",
|
|
149
149
|
"Embed the map": "Karte einbinden",
|
|
150
|
-
"Emoji & Character": "Emoji &
|
|
150
|
+
"Emoji & Character": "Emoji & Schriftzeichen",
|
|
151
151
|
"Empty": "Leeren",
|
|
152
|
-
"Equidistant": "
|
|
153
|
-
"Error in the overlay URL": "
|
|
152
|
+
"Equidistant": "Äquidistant",
|
|
153
|
+
"Error in the overlay URL": "Fehler in der Overlay-URL",
|
|
154
154
|
"Error in the tilelayer URL": "Fehler in der Kachelebenen-URL",
|
|
155
155
|
"Exit Fullscreen": "Vollbild beenden",
|
|
156
156
|
"expanded": "ausgeklappt",
|
|
157
157
|
"Extract shape to separate feature": "Form als separates Element extrahieren",
|
|
158
|
-
"Feature identifier key": "
|
|
159
|
-
"Feature properties": "
|
|
158
|
+
"Feature identifier key": "Schlüssel zur Identifizierung des Elements",
|
|
159
|
+
"Feature properties": "Eigenschaften des Elements",
|
|
160
160
|
"Fetch data each time map view changes.": "Daten jedes Mal abrufen, wenn sich die Kartenansicht ändert.",
|
|
161
161
|
"fill color": "Farbe der Füllung",
|
|
162
162
|
"fill opacity": "Deckkraft der Füllung",
|
|
163
163
|
"fill": "Füllung",
|
|
164
|
-
"Fit all data": "
|
|
164
|
+
"Fit all data": "Alle Daten einpassen",
|
|
165
165
|
"Format": "Format",
|
|
166
166
|
"From zoom": "Von Zoomstufe",
|
|
167
167
|
"full backup": "Komplettes Backup",
|
|
168
|
-
"Generic": "
|
|
168
|
+
"Generic": "Generisch",
|
|
169
169
|
"GeoRSS (only link)": "GeoRSS (nur Link)",
|
|
170
170
|
"GeoRSS (title + image)": "GeoRSS (Titel + Bild)",
|
|
171
|
-
"Go to \"{coords}\"": "
|
|
172
|
-
"Go to the homepage": "
|
|
171
|
+
"Go to \"{coords}\"": "Gehe zu „{coords}“",
|
|
172
|
+
"Go to the homepage": "Zur Startseite gehen",
|
|
173
173
|
"Go to «{feature}»": "Zu „{feature}“ wechseln",
|
|
174
174
|
"Heatmap intensity property": "Heatmap-Intensität",
|
|
175
175
|
"Heatmap radius": "Radius der Heatmap",
|
|
@@ -183,7 +183,7 @@
|
|
|
183
183
|
"icon opacity": "Symbol-Deckkraft",
|
|
184
184
|
"Icon shape": "Bildzeichenform",
|
|
185
185
|
"Icon symbol": "Bildzeichensymbol",
|
|
186
|
-
"If false, the polygon or line will act as a part of the underlying map.": "
|
|
186
|
+
"If false, the polygon or line will act as a part of the underlying map.": "Wenn auf Nein gesetzt, dann verhält sich die Fläche als Teil der Hintergrundkarte.",
|
|
187
187
|
"Iframe with custom height (in px): {{{http://iframe.url.com|height}}}": "Iframe mit benutzerdefinierter Höhe (in Pixel): {{{http://iframe.url.com|Höhe}}}",
|
|
188
188
|
"Iframe with custom height and width (in px): {{{http://iframe.url.com|height*width}}}": "Iframe mit benutzerdefinierter Höhe und Breite (in Pixel): {{{http://iframe.url.com|Höhe*Breite}}}",
|
|
189
189
|
"iframe": "iframe",
|
|
@@ -208,7 +208,7 @@
|
|
|
208
208
|
"Label direction": "Beschriftungsrichtung",
|
|
209
209
|
"Label key": "Anzeigeschlüssel",
|
|
210
210
|
"Labels are clickable": "Beschriftungen sind klickbar",
|
|
211
|
-
"Latest feature": "
|
|
211
|
+
"Latest feature": "Neuestes Element",
|
|
212
212
|
"Latitude": "Geogr. Breite",
|
|
213
213
|
"Layer properties": "Ebeneneigenschaften",
|
|
214
214
|
"Layer": "Ebene",
|
|
@@ -222,7 +222,7 @@
|
|
|
222
222
|
"Longitude": "Geogr. Länge",
|
|
223
223
|
"Make main shape": "Hauptform erstellen",
|
|
224
224
|
"Manage layers": "Ebenen verwalten",
|
|
225
|
-
"Manual": "
|
|
225
|
+
"Manual": "Anleitung",
|
|
226
226
|
"Map background credits": "Credits der Hintergrundkarte",
|
|
227
227
|
"Map has been attached to your account": "Die Karte wurde deinem Benutzerkonto zugeordnet.",
|
|
228
228
|
"Map has been saved!": "Karte gespeichert!",
|
|
@@ -236,7 +236,7 @@
|
|
|
236
236
|
"max South": "Südliche Begrenzung",
|
|
237
237
|
"max West": "Westliche Begrenzung",
|
|
238
238
|
"max zoom": "höchste Zoomstufe",
|
|
239
|
-
"Measure distances": "
|
|
239
|
+
"Measure distances": "Entfernungen messen",
|
|
240
240
|
"Merge lines": "Linien zusammenführen",
|
|
241
241
|
"mi": "mi",
|
|
242
242
|
"miles": "Meilen",
|
|
@@ -253,9 +253,9 @@
|
|
|
253
253
|
"No licence has been set": "Keine Lizenz ausgewählt",
|
|
254
254
|
"No results": "Keine Ergebnisse",
|
|
255
255
|
"no": "Nein",
|
|
256
|
-
"No.": "
|
|
256
|
+
"No.": "Nr.",
|
|
257
257
|
"None": "Keine",
|
|
258
|
-
"Number of desired classes (default 5)": "
|
|
258
|
+
"Number of desired classes (default 5)": "Anzahl der gewünschten Klassen (Standardwert 5)",
|
|
259
259
|
"On the bottom": "An der Unterseite",
|
|
260
260
|
"On the left": "An der linken Seite",
|
|
261
261
|
"On the right": "An der rechten Seite",
|
|
@@ -290,12 +290,12 @@
|
|
|
290
290
|
"Popup": "Popup",
|
|
291
291
|
"Powered by uMap": "Karte zusammengestellt mit uMap",
|
|
292
292
|
"previous": "zurück",
|
|
293
|
-
"Problem in the response": "
|
|
293
|
+
"Problem in the response": "Fehler in der Antwort",
|
|
294
294
|
"Properties imported:": "Importierte Merkmale:",
|
|
295
295
|
"Provide an URL here": "Hier eine URL angeben",
|
|
296
296
|
"Proxy request": "Proxyanforderung",
|
|
297
|
-
"Quantiles": "
|
|
298
|
-
"Recent": "
|
|
297
|
+
"Quantiles": "Quantile",
|
|
298
|
+
"Recent": "Neueste",
|
|
299
299
|
"Remote data": "Ausgelagerte Daten",
|
|
300
300
|
"Remove shape from the multi": "Form aus der Gruppe löschen",
|
|
301
301
|
"Replace layer content": "Ebeneninhalt ersetzen",
|
|
@@ -305,12 +305,12 @@
|
|
|
305
305
|
"Save this center and zoom": "Aktuelle Position und Zoomstufe speichern",
|
|
306
306
|
"Save this location as new feature": "Diesen Ort als neues Element speichern",
|
|
307
307
|
"Save": "Speichern",
|
|
308
|
-
"Saved center and zoom": "
|
|
308
|
+
"Saved center and zoom": "Mittelpunkt und Zoom gespeichert",
|
|
309
309
|
"Search location": "Ort suchen",
|
|
310
310
|
"Search": "Suche",
|
|
311
|
-
"Secret edit link:": "
|
|
311
|
+
"Secret edit link:": "Geheimer Bearbeitungslink:",
|
|
312
312
|
"See full screen": "Vollbildanzeige",
|
|
313
|
-
"See on OpenStreetMap": "
|
|
313
|
+
"See on OpenStreetMap": "Auf OpenStreetMap ansehen",
|
|
314
314
|
"Set it to false to hide this layer from the slideshow, the data browser, the popup navigation…": "Setze es auf Nein, um diese Ebene in der Diashow, im Datenbrowser, in der Popup-Navigation,... auszublenden.",
|
|
315
315
|
"settings": "Einstellungen",
|
|
316
316
|
"Shape properties": "Formeigenschaften",
|
|
@@ -318,7 +318,7 @@
|
|
|
318
318
|
"Share this link to open a customized map view": "Teile diesen Link, um eine angepasste Kartenansicht zu öffnen",
|
|
319
319
|
"Short credits": "Kurze Credits",
|
|
320
320
|
"Short link": "Kurzlink",
|
|
321
|
-
"Show this layer in the caption": "
|
|
321
|
+
"Show this layer in the caption": "Legende im Info-Fenster anzeigen.",
|
|
322
322
|
"Show/hide layer": "Ebene einblenden/ausblenden",
|
|
323
323
|
"Side panel": "Seitenleiste",
|
|
324
324
|
"Simple link: [[http://example.com]]": "Einfacher Link: [[http://beispiel.com]]",
|
|
@@ -332,7 +332,7 @@
|
|
|
332
332
|
"Start slideshow": "Diashow starten",
|
|
333
333
|
"Stop editing": "Bearbeitung beenden",
|
|
334
334
|
"Stop slideshow": "Diashow beenden",
|
|
335
|
-
"Street": "
|
|
335
|
+
"Street": "Straße",
|
|
336
336
|
"stroke": "Umrisslinie",
|
|
337
337
|
"Supported scheme": "Unterstütztes Schema",
|
|
338
338
|
"Supported variables that will be dynamically replaced": "Unterstützte Variablen, die dynamisch ersetzt werden",
|
|
@@ -340,7 +340,7 @@
|
|
|
340
340
|
"Table": "Tabelle",
|
|
341
341
|
"Text color for the cluster label": "Textfarbe für die Gruppierungsbezeichnung",
|
|
342
342
|
"Text formatting": "Textformatierung",
|
|
343
|
-
"The name of the property to use as feature label (eg.: \"nom\"). You can also use properties inside brackets to use more than one or mix with static content (eg.: \"{name} in {place}\")": "
|
|
343
|
+
"The name of the property to use as feature label (eg.: \"nom\"). You can also use properties inside brackets to use more than one or mix with static content (eg.: \"{name} in {place}\")": "Der Name des Attributes der zur Beschriftung benutzt werden soll z.B. (\"name\"). Es können auch Eigenschaften in Klammern benutzt werden, um mehr als eine zu verwenden oder mit statischem Inhalt zu mischen (z. B.: „{name} in {place}“)",
|
|
344
344
|
"The name of the property to use as feature unique identifier.": "Name des Merkmals, das als eindeutiger Identifikationsschlüssel für jedes Element verwendet wird",
|
|
345
345
|
"The zoom and center have been modified.": "Mittelpunkt und Zoomstufe sind angepasst.",
|
|
346
346
|
"TMS format": "TMS-Format",
|
|
@@ -351,7 +351,7 @@
|
|
|
351
351
|
"Transfer shape to edited feature": "Form in bearbeitetes Element überführen",
|
|
352
352
|
"Transform to lines": "In Linien umwandeln",
|
|
353
353
|
"Transform to polygon": "In Fläche umwandeln",
|
|
354
|
-
"Type a place name or coordinates": "
|
|
354
|
+
"Type a place name or coordinates": "Gib einen Ortsnamen oder Koordinaten ein",
|
|
355
355
|
"Type char or paste emoji": "Gib ein Zeichen ein oder füge ein Emoji aus der Zwischenablage ein.",
|
|
356
356
|
"Type of layer": "Ebenentyp",
|
|
357
357
|
"Unable to detect format of file {filename}": "Format der Datei {filename} kann nicht erkannt werden",
|
|
@@ -366,8 +366,8 @@
|
|
|
366
366
|
"Use placeholders with feature properties between brackets, eg. {name}, they will be dynamically replaced by the corresponding values.": "Nutze Platzhalter mit Elementmerkmalen innerhalb der Klammern, z.B. {name}, sie werden dynamisch durch die entsprechenden Werte ersetzt.",
|
|
367
367
|
"User content credits": "Credits der Benutzerinhalte",
|
|
368
368
|
"User interface options": "Einstellungen Benutzeroberfläche",
|
|
369
|
-
"User location": "
|
|
370
|
-
"Verify remote URL": "
|
|
369
|
+
"User location": "Benutzerstandort",
|
|
370
|
+
"Verify remote URL": "Remote-URL überprüfen",
|
|
371
371
|
"Versions": "Versionen",
|
|
372
372
|
"View Fullscreen": "Vollbild ansehen",
|
|
373
373
|
"View": "Ansicht",
|
|
@@ -376,7 +376,7 @@
|
|
|
376
376
|
"Where do we go from here?": "Wie geht es weiter?",
|
|
377
377
|
"Whether to display or not polygons paths.": "Umrisslinie von Flächen anzeigen oder nicht anzeigen.",
|
|
378
378
|
"Whether to fill polygons with color.": "Ob Flächen mit Farbe gefüllt werden.",
|
|
379
|
-
"Who can edit \"{layer}\"": "
|
|
379
|
+
"Who can edit \"{layer}\"": "Wer darf \"{layer}\" bearbeiten",
|
|
380
380
|
"Who can edit": "Wer darf bearbeiten",
|
|
381
381
|
"Who can view": "Wer darf betrachten",
|
|
382
382
|
"width": "Breite",
|
|
@@ -392,7 +392,7 @@
|
|
|
392
392
|
"Zoom to the previous": "Zum vorherigen zoomen",
|
|
393
393
|
"Zoom to this feature": "Auf dieses Element zoomen",
|
|
394
394
|
"Zoom to this place": "Auf diesen Ort zoomen",
|
|
395
|
-
"{area} acres": "{area}
|
|
395
|
+
"{area} acres": "{area} Hektar",
|
|
396
396
|
"{area} ha": "{area} ha",
|
|
397
397
|
"{area} m²": "{area} m²",
|
|
398
398
|
"{area} mi²": "{area} mi²",
|
|
@@ -401,102 +401,102 @@
|
|
|
401
401
|
"{delay} seconds": "{delay} Sekunden",
|
|
402
402
|
"{distance} km": "{distance} km",
|
|
403
403
|
"{distance} m": "{distance} m",
|
|
404
|
-
"{distance} miles": "{distance}
|
|
404
|
+
"{distance} miles": "{distance} Meilen",
|
|
405
405
|
"{distance} NM": "{distance} NM",
|
|
406
406
|
"{distance} yd": "{distance} yd",
|
|
407
|
-
"Edit map name and caption": "
|
|
408
|
-
"Map advanced properties": "
|
|
409
|
-
"Edit map details": "
|
|
410
|
-
"Back to browser": "
|
|
411
|
-
"Toggle size": "
|
|
412
|
-
"Display the caption control": "
|
|
407
|
+
"Edit map name and caption": "Name und Titel der Karte bearbeiten",
|
|
408
|
+
"Map advanced properties": "Erweiterte Eigenschaften der Karte",
|
|
409
|
+
"Edit map details": "Kartendetails bearbeiten",
|
|
410
|
+
"Back to browser": "Zurück zum Browser",
|
|
411
|
+
"Toggle size": "Größe umschalten",
|
|
412
|
+
"Display the caption control": "Anzeige der Beschriftungssteuerung",
|
|
413
413
|
"<empty value>": "<empty value>",
|
|
414
414
|
"Min": "Min",
|
|
415
415
|
"Max": "Max",
|
|
416
|
-
"From": "
|
|
417
|
-
"Until": "
|
|
418
|
-
"Example: key1,key2|Label 2,key3|Label 3|checkbox": "
|
|
419
|
-
"Edit in OpenStreetMap": "
|
|
420
|
-
"Cannot determine latitude and longitude columns.": "
|
|
421
|
-
"Back to layers": "
|
|
422
|
-
"Filters": "
|
|
423
|
-
"Comma separated list of properties to use when filtering features by text input": "
|
|
424
|
-
"Comma separated list of properties to use for filters (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key). To control input field type, add it after another | (eg.: mykey|My Key|checkbox,otherkey|Other Key|datetime). Allowed values for the input field type are checkbox (default), radio, number, date and datetime.": "
|
|
425
|
-
"Search keys": "
|
|
426
|
-
"Filters keys": "
|
|
427
|
-
"Filter data": "
|
|
428
|
-
"Search map features…": "
|
|
429
|
-
"Reset all": "
|
|
430
|
-
"Open browser": "
|
|
431
|
-
"Open caption": "
|
|
432
|
-
"Your map has been created with an anonymous account!": "
|
|
433
|
-
"Real-time collaboration": "
|
|
434
|
-
"Cannot parse data": "
|
|
435
|
-
"Start typing...": "
|
|
436
|
-
"No result": "
|
|
437
|
-
"Data browser": "
|
|
438
|
-
"When providing an URL, uMap can copy the remote data in a layer, or add this URL as remote source of the layer. In that case, data will always be fetched from that URL, and thus be up to date, but it will not be possible to edit it inside uMap.": "
|
|
439
|
-
"Overpass supported expressions": "Overpass
|
|
440
|
-
"key (eg. building)": "key (
|
|
441
|
-
"!key (eg. !name)": "!key (
|
|
442
|
-
"key=value (eg. building=yes)": "key=value (
|
|
443
|
-
"key!=value (eg. building!=yes)": "key!=value (
|
|
444
|
-
"key~value (eg. name~Grisy)": "key~value (
|
|
445
|
-
"key=\"value|value2\" (eg. name=\"Paris|Berlin\")": "key=\"value|value2\" (
|
|
446
|
-
"More info about Overpass syntax": "
|
|
447
|
-
"For more complex needs, see": "
|
|
448
|
-
"Choose data": "
|
|
449
|
-
"Import helpers:": "Import
|
|
450
|
-
"Choose the format": "
|
|
451
|
-
"Choose the layer": "
|
|
452
|
-
"Layer name": "
|
|
453
|
-
"Choose import mode": "
|
|
454
|
-
"Copy into the layer": "
|
|
455
|
-
"Link to the layer as remote data": "Link
|
|
456
|
-
"Condition": "
|
|
457
|
-
"key=value or key!=value": "key=value
|
|
458
|
-
"Are you sure you want to delete this rule?": "
|
|
459
|
-
"empty rule": "
|
|
460
|
-
"Conditional style rules": "
|
|
461
|
-
"Add rule": "
|
|
462
|
-
"Browser: data": "Browser:
|
|
463
|
-
"Browser: layers": "Browser:
|
|
464
|
-
"Browser: filters": "Browser:
|
|
465
|
-
"Enable real-time collaboration": "
|
|
466
|
-
"✅ Copied!": "✅
|
|
467
|
-
"Choose a dataset": "
|
|
468
|
-
"Choose this dataset": "
|
|
469
|
-
"GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine:
|
|
470
|
-
"Choose a theme": "
|
|
471
|
-
"Symplify all geometries to points": "
|
|
472
|
-
"Choose this data": "
|
|
473
|
-
"Search admin boundary": "
|
|
474
|
-
"Please choose a theme and a boundary first.": "
|
|
475
|
-
"Expression": "
|
|
476
|
-
"Geometry mode": "
|
|
477
|
-
"Only geometry centers": "
|
|
478
|
-
"Search area": "
|
|
479
|
-
"Type area name, or let empty to load data in current map view": "
|
|
480
|
-
"Data successfully imported!": "
|
|
481
|
-
"My Dashboard ({username})": "
|
|
482
|
-
"Clear data": "
|
|
483
|
-
"Remove layers": "
|
|
484
|
-
"Categorized": "
|
|
485
|
-
"Alphabetical": "
|
|
486
|
-
"Category property": "
|
|
487
|
-
"Color palette": "
|
|
488
|
-
"Categories": "
|
|
489
|
-
"Comma separated list of categories.": "
|
|
490
|
-
"Categories mode": "
|
|
491
|
-
"Remove filter for this column": "
|
|
492
|
-
"Add filter for this column": "
|
|
493
|
-
"Rename this column": "
|
|
494
|
-
"Delete this column": "
|
|
495
|
-
"Name “{name}” should not contain a dot.": "Name
|
|
496
|
-
"This name already exists: “{name}”": "
|
|
497
|
-
"Delete selected rows": "
|
|
498
|
-
"Found {count} rows. Are you sure you want to delete all?": "
|
|
499
|
-
"Expression is empty": "
|
|
416
|
+
"From": "Von",
|
|
417
|
+
"Until": "Bis",
|
|
418
|
+
"Example: key1,key2|Label 2,key3|Label 3|checkbox": "Beispiel: key1,key2|Beschriftung 2,key3|Beschriftung 3|checkbox",
|
|
419
|
+
"Edit in OpenStreetMap": "Bearbeiten in OpenStreetMap",
|
|
420
|
+
"Cannot determine latitude and longitude columns.": "Die Spalten für Breiten- und Längengrad können nicht bestimmt werden.",
|
|
421
|
+
"Back to layers": "Zurück zu den Kartenebenen",
|
|
422
|
+
"Filters": "Filter",
|
|
423
|
+
"Comma separated list of properties to use when filtering features by text input": "Kommagetrennte Liste der Merkmale, welche beim Filtern von Elementen verwendet werden sollen",
|
|
424
|
+
"Comma separated list of properties to use for filters (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key). To control input field type, add it after another | (eg.: mykey|My Key|checkbox,otherkey|Other Key|datetime). Allowed values for the input field type are checkbox (default), radio, number, date and datetime.": "Durch Kommata getrennte Liste von Eigenschaften, die für Filter verwendet werden sollen (z. B.: mykey,otherkey). Um die Beschriftung zu steuern, füge einen | hinzu (z. B.: mykey|My Key,otherkey|Other Key). Um den Typ des Eingabefeldes zu steuern, füge ihn nach einem weiteren | hinzu (z. B.: mykey|My Key|checkbox,otherkey|Other Key|datetime). Erlaubte Werte für den Eingabefeldtyp sind checkbox (Standard), radio, Zahl, date und datetime.",
|
|
425
|
+
"Search keys": "Suchbegriffe",
|
|
426
|
+
"Filters keys": "Filterbegriffe",
|
|
427
|
+
"Filter data": "Daten filtern",
|
|
428
|
+
"Search map features…": "Suche auf der Karte...",
|
|
429
|
+
"Reset all": "Alles zurücksetzen",
|
|
430
|
+
"Open browser": "Browser öffnen",
|
|
431
|
+
"Open caption": "Info-Fenster öffnen",
|
|
432
|
+
"Your map has been created with an anonymous account!": "Ihre Karte wurde mit einem anonymen Konto erstellt!",
|
|
433
|
+
"Real-time collaboration": "Echtzeit-Zusammenarbeit",
|
|
434
|
+
"Cannot parse data": "Daten können nicht geparst werden",
|
|
435
|
+
"Start typing...": "Beginne mit der Eingabe...",
|
|
436
|
+
"No result": "Keine Ergebnisse",
|
|
437
|
+
"Data browser": "Datenbrowser",
|
|
438
|
+
"When providing an URL, uMap can copy the remote data in a layer, or add this URL as remote source of the layer. In that case, data will always be fetched from that URL, and thus be up to date, but it will not be possible to edit it inside uMap.": "Wenn Sie eine URL angeben, kann uMap die entfernten Daten in einen Layer kopieren oder diese URL als entfernte Quelle des Layers hinzufügen. In diesem Fall werden die Daten immer von dieser URL geholt und sind somit auf dem neuesten Stand, aber es ist nicht möglich, sie in uMap zu bearbeiten.",
|
|
439
|
+
"Overpass supported expressions": "Von Overpass unterstützte Abfrage",
|
|
440
|
+
"key (eg. building)": "key (z.b. building)",
|
|
441
|
+
"!key (eg. !name)": "!key (z.B. !name)",
|
|
442
|
+
"key=value (eg. building=yes)": "key=value (z.B. building=yes)",
|
|
443
|
+
"key!=value (eg. building!=yes)": "key!=value (z.B. building!=yes)",
|
|
444
|
+
"key~value (eg. name~Grisy)": "key~value (z.B. name~Grisy)",
|
|
445
|
+
"key=\"value|value2\" (eg. name=\"Paris|Berlin\")": "key=\"value|value2\" (z.B.. name=\"Paris|Berlin\")",
|
|
446
|
+
"More info about Overpass syntax": "Weitere Informationen zur Overpass-Syntax",
|
|
447
|
+
"For more complex needs, see": "Für komplexere Abfragen, siehe",
|
|
448
|
+
"Choose data": "Daten auswählen",
|
|
449
|
+
"Import helpers:": "Import-Assistenten:",
|
|
450
|
+
"Choose the format": "Wähle das Datenformat",
|
|
451
|
+
"Choose the layer": "Ebenenauswahl",
|
|
452
|
+
"Layer name": "Ebenenname",
|
|
453
|
+
"Choose import mode": "Wähle Importmodus",
|
|
454
|
+
"Copy into the layer": "In die Ebene kopieren",
|
|
455
|
+
"Link to the layer as remote data": "Link zur Ebene als Remote-Data",
|
|
456
|
+
"Condition": "Bedingung",
|
|
457
|
+
"key=value or key!=value": "key=value oder key!=value",
|
|
458
|
+
"Are you sure you want to delete this rule?": "Bist du sicher, dass du diese Regel löschen willst?",
|
|
459
|
+
"empty rule": "leere Regel",
|
|
460
|
+
"Conditional style rules": "Bedingte Stileregeln",
|
|
461
|
+
"Add rule": "Regel hinzufügen",
|
|
462
|
+
"Browser: data": "Browser: Daten",
|
|
463
|
+
"Browser: layers": "Browser: Ebenen",
|
|
464
|
+
"Browser: filters": "Browser: Filter",
|
|
465
|
+
"Enable real-time collaboration": "Aktiviere Echtzeit-Zusammenarbeit",
|
|
466
|
+
"✅ Copied!": "✅ Kopiert!",
|
|
467
|
+
"Choose a dataset": "Datensatz auswählen",
|
|
468
|
+
"Choose this dataset": "Diesen Datensatz auswählen",
|
|
469
|
+
"GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: thematische Daten von OpenStreetMap",
|
|
470
|
+
"Choose a theme": "Thema auswählen",
|
|
471
|
+
"Symplify all geometries to points": "Alle Geometrien zu Punkten vereinfachen",
|
|
472
|
+
"Choose this data": "Diese Daten auswählen",
|
|
473
|
+
"Search admin boundary": "Administrative Grenze suchen",
|
|
474
|
+
"Please choose a theme and a boundary first.": "Bitte wähle zuerst ein Thema und eine administrative Grenze.",
|
|
475
|
+
"Expression": "Ausdruck",
|
|
476
|
+
"Geometry mode": "Geometriemodus",
|
|
477
|
+
"Only geometry centers": "Nur Geometriezentren",
|
|
478
|
+
"Search area": "Suchgebiet",
|
|
479
|
+
"Type area name, or let empty to load data in current map view": "Gib den Namen des Gebiets ein, oder lass dieses Feld leer um die Daten in dem aktuellen Kartenausschnitt zu laden",
|
|
480
|
+
"Data successfully imported!": "Daten erfolgreich importiert!",
|
|
481
|
+
"My Dashboard ({username})": "Mein Dashboard ({username})",
|
|
482
|
+
"Clear data": "Daten Löschen",
|
|
483
|
+
"Remove layers": "Ebene entfernen",
|
|
484
|
+
"Categorized": "Kategorisiert",
|
|
485
|
+
"Alphabetical": "Alphabetisch",
|
|
486
|
+
"Category property": "Kategoriekriterium",
|
|
487
|
+
"Color palette": "Farbpalette",
|
|
488
|
+
"Categories": "Kategorien",
|
|
489
|
+
"Comma separated list of categories.": "Kommagetrennte Liste von Kategorien.",
|
|
490
|
+
"Categories mode": "Kategoriemodus",
|
|
491
|
+
"Remove filter for this column": "Entferne Filter für diese Spalte",
|
|
492
|
+
"Add filter for this column": "Füge Filter für diese Spalte hinzu",
|
|
493
|
+
"Rename this column": "Spalte umbenennen",
|
|
494
|
+
"Delete this column": "Spalte löschen",
|
|
495
|
+
"Name “{name}” should not contain a dot.": "Der Name \"{name}\" darf keinen Punkt enthalten.",
|
|
496
|
+
"This name already exists: “{name}”": "Dieser Name existiert bereits: \"{name}\"",
|
|
497
|
+
"Delete selected rows": "Ausgewählte Zeilen löschen",
|
|
498
|
+
"Found {count} rows. Are you sure you want to delete all?": "{count} Zeilen gefunden. Bist du sicher, dass du diese löschen willst?",
|
|
499
|
+
"Expression is empty": "Ausdruck ist leer",
|
|
500
500
|
"OK": "OK",
|
|
501
|
-
"Cancel": "
|
|
501
|
+
"Cancel": "Abbrechen"
|
|
502
502
|
}
|