umap-project 1.14.0a1__py3-none-any.whl → 1.14.0a2__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/static/.gitignore +0 -0
- umap/static/umap/base.css +994 -0
- umap/static/umap/bitbucket.png +0 -0
- umap/static/umap/content.css +395 -0
- umap/static/umap/favicons/apple-touch-icon.png +0 -0
- umap/static/umap/favicons/favicon.ico +0 -0
- umap/static/umap/favicons/icon-192.png +0 -0
- umap/static/umap/favicons/icon-512.png +0 -0
- umap/static/umap/favicons/icon.svg +5 -0
- umap/static/umap/font/FiraSans-Light.woff +0 -0
- umap/static/umap/font/FiraSans-Light.woff2 +0 -0
- umap/static/umap/font/FiraSans-LightItalic.woff +0 -0
- umap/static/umap/font/FiraSans-LightItalic.woff2 +0 -0
- umap/static/umap/font/FiraSans-SemiBold.woff +0 -0
- umap/static/umap/font/FiraSans-SemiBold.woff2 +0 -0
- umap/static/umap/font.css +33 -0
- umap/static/umap/github.png +0 -0
- umap/static/umap/img/16-white.svg +190 -0
- umap/static/umap/img/16.svg +182 -0
- umap/static/umap/img/24-white.svg +62 -0
- umap/static/umap/img/24.svg +90 -0
- umap/static/umap/img/edit.svg +7 -0
- umap/static/umap/img/icon-bg.png +0 -0
- umap/static/umap/img/logo.svg +4 -0
- umap/static/umap/img/logo_filigree.png +0 -0
- umap/static/umap/img/logo_small.svg +14 -0
- umap/static/umap/img/marker.png +0 -0
- umap/static/umap/img/opensource.svg +7 -0
- umap/static/umap/img/osm.svg +7 -0
- umap/static/umap/img/search.gif +0 -0
- umap/static/umap/img/source/16-white.svg +980 -0
- umap/static/umap/img/source/16.svg +201 -0
- umap/static/umap/img/source/24-white.svg +83 -0
- umap/static/umap/img/source/24.svg +110 -0
- umap/static/umap/js/components/fragment.js +13 -0
- umap/static/umap/js/modules/global.js +8 -0
- umap/static/umap/js/modules/urls.js +29 -0
- umap/static/umap/js/umap.autocomplete.js +336 -0
- umap/static/umap/js/umap.browser.js +148 -0
- umap/static/umap/js/umap.controls.js +1542 -0
- umap/static/umap/js/umap.core.js +851 -0
- umap/static/umap/js/umap.datalayer.permissions.js +72 -0
- umap/static/umap/js/umap.features.js +1216 -0
- umap/static/umap/js/umap.forms.js +1267 -0
- umap/static/umap/js/umap.icon.js +234 -0
- umap/static/umap/js/umap.importer.js +166 -0
- umap/static/umap/js/umap.js +2010 -0
- umap/static/umap/js/umap.layer.js +1636 -0
- umap/static/umap/js/umap.permissions.js +212 -0
- umap/static/umap/js/umap.popup.js +340 -0
- umap/static/umap/js/umap.share.js +254 -0
- umap/static/umap/js/umap.slideshow.js +165 -0
- umap/static/umap/js/umap.tableeditor.js +120 -0
- umap/static/umap/js/umap.ui.js +240 -0
- umap/static/umap/js/umap.xhr.js +304 -0
- umap/static/umap/locale/am_ET.js +447 -0
- umap/static/umap/locale/am_ET.json +445 -0
- umap/static/umap/locale/ar.js +447 -0
- umap/static/umap/locale/ar.json +445 -0
- umap/static/umap/locale/ast.js +447 -0
- umap/static/umap/locale/ast.json +445 -0
- umap/static/umap/locale/bg.js +447 -0
- umap/static/umap/locale/bg.json +445 -0
- umap/static/umap/locale/br.js +447 -0
- umap/static/umap/locale/br.json +445 -0
- umap/static/umap/locale/ca.js +447 -0
- umap/static/umap/locale/ca.json +445 -0
- umap/static/umap/locale/cs_CZ.js +447 -0
- umap/static/umap/locale/cs_CZ.json +445 -0
- umap/static/umap/locale/da.js +447 -0
- umap/static/umap/locale/da.json +445 -0
- umap/static/umap/locale/de.js +447 -0
- umap/static/umap/locale/de.json +445 -0
- umap/static/umap/locale/el.js +447 -0
- umap/static/umap/locale/el.json +445 -0
- umap/static/umap/locale/en.js +447 -0
- umap/static/umap/locale/en.json +445 -0
- umap/static/umap/locale/en_US.json +445 -0
- umap/static/umap/locale/es.js +447 -0
- umap/static/umap/locale/es.json +445 -0
- umap/static/umap/locale/et.js +447 -0
- umap/static/umap/locale/et.json +445 -0
- umap/static/umap/locale/eu.js +413 -0
- umap/static/umap/locale/eu.json +411 -0
- umap/static/umap/locale/fa_IR.js +447 -0
- umap/static/umap/locale/fa_IR.json +445 -0
- umap/static/umap/locale/fi.js +447 -0
- umap/static/umap/locale/fi.json +445 -0
- umap/static/umap/locale/fr.js +447 -0
- umap/static/umap/locale/fr.json +445 -0
- umap/static/umap/locale/gl.js +447 -0
- umap/static/umap/locale/gl.json +445 -0
- umap/static/umap/locale/he.js +447 -0
- umap/static/umap/locale/he.json +445 -0
- umap/static/umap/locale/hr.js +447 -0
- umap/static/umap/locale/hr.json +445 -0
- umap/static/umap/locale/hu.js +447 -0
- umap/static/umap/locale/hu.json +445 -0
- umap/static/umap/locale/id.js +447 -0
- umap/static/umap/locale/id.json +445 -0
- umap/static/umap/locale/is.js +447 -0
- umap/static/umap/locale/is.json +445 -0
- umap/static/umap/locale/it.js +447 -0
- umap/static/umap/locale/it.json +445 -0
- umap/static/umap/locale/ja.js +447 -0
- umap/static/umap/locale/ja.json +445 -0
- umap/static/umap/locale/ko.js +447 -0
- umap/static/umap/locale/ko.json +445 -0
- umap/static/umap/locale/lt.js +447 -0
- umap/static/umap/locale/lt.json +445 -0
- umap/static/umap/locale/ms.js +447 -0
- umap/static/umap/locale/ms.json +445 -0
- umap/static/umap/locale/nl.js +447 -0
- umap/static/umap/locale/nl.json +445 -0
- umap/static/umap/locale/no.js +447 -0
- umap/static/umap/locale/no.json +445 -0
- umap/static/umap/locale/pl.js +447 -0
- umap/static/umap/locale/pl.json +445 -0
- umap/static/umap/locale/pl_PL.json +445 -0
- umap/static/umap/locale/pt.js +447 -0
- umap/static/umap/locale/pt.json +445 -0
- umap/static/umap/locale/pt_BR.js +447 -0
- umap/static/umap/locale/pt_BR.json +445 -0
- umap/static/umap/locale/pt_PT.js +447 -0
- umap/static/umap/locale/pt_PT.json +445 -0
- umap/static/umap/locale/ro.js +447 -0
- umap/static/umap/locale/ro.json +445 -0
- umap/static/umap/locale/ru.js +447 -0
- umap/static/umap/locale/ru.json +445 -0
- umap/static/umap/locale/si.js +439 -0
- umap/static/umap/locale/si.json +437 -0
- umap/static/umap/locale/sk_SK.js +447 -0
- umap/static/umap/locale/sk_SK.json +445 -0
- umap/static/umap/locale/sl.js +447 -0
- umap/static/umap/locale/sl.json +445 -0
- umap/static/umap/locale/sr.js +447 -0
- umap/static/umap/locale/sr.json +445 -0
- umap/static/umap/locale/sv.js +447 -0
- umap/static/umap/locale/sv.json +445 -0
- umap/static/umap/locale/th_TH.js +447 -0
- umap/static/umap/locale/th_TH.json +445 -0
- umap/static/umap/locale/tr.js +447 -0
- umap/static/umap/locale/tr.json +445 -0
- umap/static/umap/locale/uk_UA.js +447 -0
- umap/static/umap/locale/uk_UA.json +445 -0
- umap/static/umap/locale/vi.js +447 -0
- umap/static/umap/locale/vi.json +445 -0
- umap/static/umap/locale/vi_VN.json +445 -0
- umap/static/umap/locale/zh.js +447 -0
- umap/static/umap/locale/zh.json +445 -0
- umap/static/umap/locale/zh_CN.json +445 -0
- umap/static/umap/locale/zh_TW.Big5.json +445 -0
- umap/static/umap/locale/zh_TW.js +447 -0
- umap/static/umap/locale/zh_TW.json +445 -0
- umap/static/umap/map.css +1843 -0
- umap/static/umap/nav.css +81 -0
- umap/static/umap/openstreetmap.png +0 -0
- umap/static/umap/test/.eslintrc +22 -0
- umap/static/umap/test/Choropleth.js +243 -0
- umap/static/umap/test/Controls.js +100 -0
- umap/static/umap/test/DataLayer.js +495 -0
- umap/static/umap/test/Feature.js +382 -0
- umap/static/umap/test/Map.Export.js +106 -0
- umap/static/umap/test/Map.Init.js +46 -0
- umap/static/umap/test/Map.js +342 -0
- umap/static/umap/test/Marker.js +122 -0
- umap/static/umap/test/Permissions.js +74 -0
- umap/static/umap/test/Polygon.js +367 -0
- umap/static/umap/test/Polyline.js +402 -0
- umap/static/umap/test/TableEditor.js +100 -0
- umap/static/umap/test/URLs.js +54 -0
- umap/static/umap/test/Util.js +549 -0
- umap/static/umap/test/_pre.js +460 -0
- umap/static/umap/test/index.html +135 -0
- umap/static/umap/theme.css +1 -0
- umap/static/umap/twitter.png +0 -0
- {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/METADATA +1 -1
- {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/RECORD +182 -6
- {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/WHEEL +0 -0
- {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/entry_points.txt +0 -0
- {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/licenses/LICENSE +0 -0
|
@@ -0,0 +1,447 @@
|
|
|
1
|
+
const locale = {
|
|
2
|
+
"Allow scroll wheel zoom?": "Zoomen mit dem Mausrad erlauben?",
|
|
3
|
+
"Automatic": "Automatisch",
|
|
4
|
+
"Ball": "Stecknadel",
|
|
5
|
+
"Cancel": "Abbrechen",
|
|
6
|
+
"Caption": "Überschrift",
|
|
7
|
+
"Choose the data format": "Wähle das Datenformat",
|
|
8
|
+
"Choose the layer of the feature": "Wähle die Ebene für das Element",
|
|
9
|
+
"Circle": "Kreis",
|
|
10
|
+
"Clustered": "Gruppiert",
|
|
11
|
+
"Data browser": "Datenbrowser",
|
|
12
|
+
"Default": "Standard",
|
|
13
|
+
"Default zoom level": "Standard-Zoomstufe",
|
|
14
|
+
"Default: name": "Standard: Name",
|
|
15
|
+
"Display label": "Beschriftung anzeigen",
|
|
16
|
+
"Display the control to open OpenStreetMap editor": "Den Button zum OpenStreetMap-Editor anzeigen",
|
|
17
|
+
"Display the data layers control": "Datenebenensteuerung anzeigen",
|
|
18
|
+
"Display the embed control": "Eingebettete Steuerung anzeigen",
|
|
19
|
+
"Display the fullscreen control": "Vollbildsteuerung anzeigen",
|
|
20
|
+
"Display the locate control": "Den Ortungsbutton anzeigen.",
|
|
21
|
+
"Display the measure control": "Messsteuerung anzeigen",
|
|
22
|
+
"Display the search control": "Suchsteuerung anzeigen",
|
|
23
|
+
"Display the tile layers control": "Kachelebenensteuerung anzeigen",
|
|
24
|
+
"Display the zoom control": "Zoomsteuerung anzeigen",
|
|
25
|
+
"Do you want to display a caption bar?": "Möchtest du eine Überschrift (Fußzeile) anzeigen?",
|
|
26
|
+
"Do you want to display a minimap?": "Möchtest du eine Übersichtskarte anzeigen?",
|
|
27
|
+
"Do you want to display a panel on load?": "Möchtest du beim Seitenaufruf eine Seitenleiste anzeigen?",
|
|
28
|
+
"Do you want to display popup footer?": "Möchtest du eine Fußzeile im Popup anzeigen?",
|
|
29
|
+
"Do you want to display the scale control?": "Möchtest du die Maßstabsleiste anzeigen?",
|
|
30
|
+
"Do you want to display the «more» control?": "Möchtest du die „Mehr“-Schaltfläche anzeigen?",
|
|
31
|
+
"Drop": "Tropfen",
|
|
32
|
+
"GeoRSS (only link)": "GeoRSS (nur Link)",
|
|
33
|
+
"GeoRSS (title + image)": "GeoRSS (Titel + Bild)",
|
|
34
|
+
"Heatmap": "Heatmap",
|
|
35
|
+
"Icon shape": "Bildzeichenform",
|
|
36
|
+
"Icon symbol": "Bildzeichensymbol",
|
|
37
|
+
"Inherit": "erben",
|
|
38
|
+
"Label direction": "Beschriftungsrichtung",
|
|
39
|
+
"Label key": "Anzeigeschlüssel",
|
|
40
|
+
"Labels are clickable": "Beschriftungen sind klickbar",
|
|
41
|
+
"None": "Keine",
|
|
42
|
+
"On the bottom": "An der Unterseite",
|
|
43
|
+
"On the left": "An der linken Seite",
|
|
44
|
+
"On the right": "An der rechten Seite",
|
|
45
|
+
"On the top": "An der Oberseite",
|
|
46
|
+
"Popup content template": "Popup Vorlage",
|
|
47
|
+
"Side panel": "Seitenleiste",
|
|
48
|
+
"Simplify": "Vereinfachen",
|
|
49
|
+
"Table": "Tabelle",
|
|
50
|
+
"always": "immer",
|
|
51
|
+
"clear": "leeren",
|
|
52
|
+
"collapsed": "eingeklappt",
|
|
53
|
+
"color": "Farbe",
|
|
54
|
+
"dash array": "Linienart",
|
|
55
|
+
"define": "festlegen",
|
|
56
|
+
"description": "Beschreibung",
|
|
57
|
+
"expanded": "ausgeklappt",
|
|
58
|
+
"fill": "Füllung",
|
|
59
|
+
"fill color": "Farbe der Füllung",
|
|
60
|
+
"fill opacity": "Deckkraft der Füllung",
|
|
61
|
+
"hidden": "ausgeblendet",
|
|
62
|
+
"iframe": "iframe",
|
|
63
|
+
"inherit": "erben",
|
|
64
|
+
"name": "Name",
|
|
65
|
+
"never": "nie",
|
|
66
|
+
"new window": "neues Fenster",
|
|
67
|
+
"no": "Nein",
|
|
68
|
+
"on hover": "beim Draufzeigen",
|
|
69
|
+
"opacity": "Deckkraft",
|
|
70
|
+
"parent window": "übergeordnetes Fenster",
|
|
71
|
+
"stroke": "Umrisslinie",
|
|
72
|
+
"weight": "Stärke",
|
|
73
|
+
"yes": "Ja",
|
|
74
|
+
"{delay} seconds": "{delay} Sekunden",
|
|
75
|
+
"# one hash for main heading": "# Eine Raute für große Überschrift",
|
|
76
|
+
"## two hashes for second heading": "## Zwei Rauten für mittlere Überschrift",
|
|
77
|
+
"### three hashes for third heading": "### Drei Rauten für kleine Überschrift",
|
|
78
|
+
"**double star for bold**": "**Zwei Sterne für Fett**",
|
|
79
|
+
"A comma separated list of numbers that defines the stroke dash pattern. Ex.: \"5, 10, 15\".": "Eine kommagetrente Zahlenfolge, die die Linienart (Strichmuster) der Kontur definiert, z. B.: \"5, 10, 15\".",
|
|
80
|
+
"About": "Über",
|
|
81
|
+
"Action not allowed :(": "Aktion nicht erlaubt :(",
|
|
82
|
+
"Activate slideshow mode": "Diashowmodus aktivieren",
|
|
83
|
+
"Add a layer": "Ebene hinzufügen",
|
|
84
|
+
"Add a line to the current multi": "Linie zur vorhandene Gruppe hinzufügen",
|
|
85
|
+
"Add a new property": "Ein Merkmal hinzufügen",
|
|
86
|
+
"Add a polygon to the current multi": "Fläche zur vorhandene Gruppe hinzufügen",
|
|
87
|
+
"Advanced actions": "Erweiterte Aktionen",
|
|
88
|
+
"Advanced properties": "Erweiterte Eigenschaften",
|
|
89
|
+
"All properties are imported.": "Alle Merkmale wurden importiert.",
|
|
90
|
+
"Allow interactions": "Interaktionen erlauben",
|
|
91
|
+
"An error occured": "Es ist ein Fehler aufgetreten.",
|
|
92
|
+
"Are you sure you want to cancel your changes?": "Willst du deine Änderungen wirklich abbrechen?",
|
|
93
|
+
"Are you sure you want to clone this map and all its datalayers?": "Möchtest du die Karte und ihre Datenebenen wirklich duplizieren?",
|
|
94
|
+
"Are you sure you want to delete the feature?": "Möchtest du dieses Element wirklich löschen?",
|
|
95
|
+
"Are you sure you want to delete this layer?": "Bist du sicher, dass du diese Ebene löschen willst?",
|
|
96
|
+
"Are you sure you want to delete this map?": "Willst du diese Karte wirklich löschen?",
|
|
97
|
+
"Are you sure you want to delete this property on all the features?": "Bist du sicher, dass du dieses Merkmal bei allen Elementen löschen willst?",
|
|
98
|
+
"Are you sure you want to restore this version?": "Bist du sicher, dass du diese Version wiederherstellen willst?",
|
|
99
|
+
"Attach the map to my account": "Die Karte meinem Benutzerkonto zuordnen",
|
|
100
|
+
"Auto": "Automatisch",
|
|
101
|
+
"Autostart when map is loaded": "Automatischer Start, wenn Karte geladen ist",
|
|
102
|
+
"Bring feature to center": "Auf Element zentrieren",
|
|
103
|
+
"Browse data": "Daten anzeigen",
|
|
104
|
+
"Cancel edits": "Bearbeitungen abbrechen",
|
|
105
|
+
"Center map on your location": "Die Karte auf deinen Standort ausrichten",
|
|
106
|
+
"Change map background": "Hintergrundkarte ändern",
|
|
107
|
+
"Change tilelayers": "Kachelebenen ändern",
|
|
108
|
+
"Choose a preset": "Wähle eine Vorlage",
|
|
109
|
+
"Choose the format of the data to import": "Wähle das Datenformat für den Import",
|
|
110
|
+
"Choose the layer to import in": "Wähle die Ebene, in die importiert werden soll",
|
|
111
|
+
"Click last point to finish shape": "Klicke den letzten Punkt an, um die Form abzuschließen",
|
|
112
|
+
"Click to add a marker": "Klicke, um einen Marker hinzuzufügen",
|
|
113
|
+
"Click to continue drawing": "Klicke, um weiter zu zeichnen",
|
|
114
|
+
"Click to edit": "Zum Bearbeiten klicken",
|
|
115
|
+
"Click to start drawing a line": "Klicke, um eine Linie zu zeichnen",
|
|
116
|
+
"Click to start drawing a polygon": "Klicke, um eine Fläche zu zeichnen",
|
|
117
|
+
"Clone": "Duplizieren",
|
|
118
|
+
"Clone of {name}": "Duplikat von {name}",
|
|
119
|
+
"Clone this feature": "Dieses Element duplizieren",
|
|
120
|
+
"Clone this map": "Dupliziere diese Karte",
|
|
121
|
+
"Close": "Schließen",
|
|
122
|
+
"Clustering radius": "Gruppierungsradius",
|
|
123
|
+
"Comma separated list of properties to use when filtering features": "Kommagetrennte Liste der Merkmale, welche beim Filtern von Elementen verwendet werden sollen",
|
|
124
|
+
"Comma, tab or semi-colon separated values. SRS WGS84 is implied. Only Point geometries are imported. The import will look at the column headers for any mention of «lat» and «lon» at the begining of the header, case insensitive. All other column are imported as properties.": "Komma-, Tabulator-, oder Semikolongetrennte Werte. SRS WGS84 ist impliziert. Nur Punktgeometrien werden importiert. Beim Import wird nach Spaltenüberschriften mit jeder Nennung von „lat“ und „lon“ am Anfang der Überschrift gesucht (ohne Beachtung von Groß-/Kleinschreibung). Alle anderen Spalten werden als Merkmale importiert.",
|
|
125
|
+
"Continue line": "Linie fortführen",
|
|
126
|
+
"Continue line (Ctrl+Click)": "Linie weiterzeichnen (Strg+Klick)",
|
|
127
|
+
"Coordinates": "Koordinaten",
|
|
128
|
+
"Credits": "Credits",
|
|
129
|
+
"Current view instead of default map view?": "Aktuelle Kartenansicht anstatt der Standard-Kartenansicht verwenden?",
|
|
130
|
+
"Custom background": "Benutzerdefinierter Hintergrund",
|
|
131
|
+
"Data is browsable": "Daten sind durchsuchbar",
|
|
132
|
+
"Default interaction options": "Standard-Interaktionsoptionen",
|
|
133
|
+
"Default properties": "Standardeigenschaften",
|
|
134
|
+
"Default shape properties": "Standard-Formeigenschaften",
|
|
135
|
+
"Define link to open in a new window on polygon click.": "Definiere einen externen Link, der sich beim Klick auf die Fläche in einem neuen Fenster öffnet.",
|
|
136
|
+
"Delay between two transitions when in play mode": "Verzögerung zwischen zwei Übergängen im Abspielmodus",
|
|
137
|
+
"Delete": "Löschen",
|
|
138
|
+
"Delete all layers": "Alle Ebenen löschen",
|
|
139
|
+
"Delete layer": "Ebene löschen",
|
|
140
|
+
"Delete this feature": "Dieses Element löschen",
|
|
141
|
+
"Delete this property on all the features": "Dieses Merkmal bei allen Elementen löschen",
|
|
142
|
+
"Delete this shape": "Diese Form löschen",
|
|
143
|
+
"Delete this vertex (Alt+Click)": "Diesen Eckpunkt löschen (Alt+Klick)",
|
|
144
|
+
"Directions from here": "Route von hier",
|
|
145
|
+
"Display measure": "Display measure",
|
|
146
|
+
"Display on load": "Beim Seitenaufruf anzeigen.",
|
|
147
|
+
"Download": "Herunterladen",
|
|
148
|
+
"Drag to reorder": "Ziehen zum Neuanordnen",
|
|
149
|
+
"Draw a marker": "Einen Marker zeichnen",
|
|
150
|
+
"Draw a polygon": "Eine Fläche zeichnen",
|
|
151
|
+
"Draw a polyline": "Eine Linie zeichnen",
|
|
152
|
+
"Dynamic": "Dynamisch",
|
|
153
|
+
"Dynamic properties": "Dynamische Merkmale",
|
|
154
|
+
"Edit": "Bearbeiten",
|
|
155
|
+
"Edit feature's layer": "Elementebene bearbeiten",
|
|
156
|
+
"Edit map properties": "Karteneigenschaften bearbeiten",
|
|
157
|
+
"Edit properties in a table": "Merkmale in einer Tabelle bearbeiten",
|
|
158
|
+
"Edit this feature": "Dieses Element bearbeiten",
|
|
159
|
+
"Embed the map": "Karte einbinden",
|
|
160
|
+
"Empty": "Leeren",
|
|
161
|
+
"Error in the tilelayer URL": "Fehler in der Kachelebenen-URL",
|
|
162
|
+
"Error while fetching {url}": "Fehler beim Abrufen von {url}",
|
|
163
|
+
"Exit Fullscreen": "Vollbild beenden",
|
|
164
|
+
"Extract shape to separate feature": "Form als separates Element extrahieren",
|
|
165
|
+
"Fetch data each time map view changes.": "Daten jedes Mal abrufen, wenn sich die Kartenansicht ändert.",
|
|
166
|
+
"Filter keys": "Schlüssel filtern",
|
|
167
|
+
"Format": "Format",
|
|
168
|
+
"From zoom": "Von Zoomstufe",
|
|
169
|
+
"Go to «{feature}»": "Zu „{feature}“ wechseln",
|
|
170
|
+
"Heatmap intensity property": "Heatmap-Intensität",
|
|
171
|
+
"Heatmap radius": "Radius der Heatmap",
|
|
172
|
+
"Help": "Hilfe",
|
|
173
|
+
"Hide controls": "Schaltflächen ausblenden",
|
|
174
|
+
"Home": "Startseite",
|
|
175
|
+
"How much to simplify the polyline on each zoom level (more = better performance and smoother look, less = more accurate)": "Wie stark Linien mit jeder Zoomstufe vereinfacht werden (mehr = bessere Performance und glatteres Aussehen, weniger = präziser)",
|
|
176
|
+
"Iframe with custom height (in px): {{{http://iframe.url.com|height}}}": "Iframe mit benutzerdefinierter Höhe (in Pixel): {{{http://iframe.url.com|Höhe}}}",
|
|
177
|
+
"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}}}",
|
|
178
|
+
"Iframe: {{{http://iframe.url.com}}}": "Iframe: {{{http://iframe.url.com}}}",
|
|
179
|
+
"Image with custom width (in px): {{http://image.url.com|width}}": "Bild mit benutzerdefinierter Breite (in Pixel): {{http://bild.url.com|Breite}}",
|
|
180
|
+
"Image: {{http://image.url.com}}": "Bild: {{http://bild.url.com}}",
|
|
181
|
+
"Import": "Importieren",
|
|
182
|
+
"Import data": "Daten importieren",
|
|
183
|
+
"Import in a new layer": "In eine neue Ebene importieren",
|
|
184
|
+
"Imports all umap data, including layers and settings.": "Importiert alle uMap-Daten inklusive Ebenen und Einstellungen",
|
|
185
|
+
"Include full screen link?": "Link für Vollbildanzeige einbeziehen?",
|
|
186
|
+
"Interaction options": "Interaktionsoptionen",
|
|
187
|
+
"Invalid umap data": "Ungütige uMap-Daten",
|
|
188
|
+
"Invalid umap data in {filename}": "Ungültige uMap-Daten in {filename}",
|
|
189
|
+
"Keep current visible layers": "Aktuell eingeblendete Ebenen übernehmen?",
|
|
190
|
+
"Latitude": "Geogr. Breite",
|
|
191
|
+
"Layer": "Ebene",
|
|
192
|
+
"Layer properties": "Ebeneneigenschaften",
|
|
193
|
+
"Licence": "Lizenz",
|
|
194
|
+
"Limit bounds": "Kartenverschiebung begrenzen",
|
|
195
|
+
"Link to…": "Verlinke zu...",
|
|
196
|
+
"Link with text: [[http://example.com|text of the link]]": "Link mit Text: [[http://beispiel.com|Text für den Link]]",
|
|
197
|
+
"Long credits": "Lange Credits",
|
|
198
|
+
"Longitude": "Geogr. Länge",
|
|
199
|
+
"Make main shape": "Hauptform erstellen",
|
|
200
|
+
"Manage layers": "Ebenen verwalten",
|
|
201
|
+
"Map background credits": "Credits der Hintergrundkarte",
|
|
202
|
+
"Map has been attached to your account": "Die Karte wurde deinem Benutzerkonto zugeordnet.",
|
|
203
|
+
"Map has been saved!": "Karte gespeichert!",
|
|
204
|
+
"Map user content has been published under licence": "Der Benutzerinhalt wurde veröffentlicht unter der Lizenz",
|
|
205
|
+
"Map's editors": "Kartenbearbeiter",
|
|
206
|
+
"Map's owner": "Karteneigentümer",
|
|
207
|
+
"Merge lines": "Linien zusammenführen",
|
|
208
|
+
"More controls": "Mehr Schaltflächen",
|
|
209
|
+
"Must be a valid CSS value (eg.: DarkBlue or #123456)": "Muss ein gültiger CSS-Wert sein (z.B.: DarkBlue oder #123456)",
|
|
210
|
+
"No licence has been set": "Keine Lizenz ausgewählt",
|
|
211
|
+
"No results": "Keine Ergebnisse",
|
|
212
|
+
"Open link in…": "Link öffnen in…",
|
|
213
|
+
"Open this map extent in a map editor to provide more accurate data to OpenStreetMap": "Diesen Kartenauschnitt in einem Karten-Editor öffnen, um genauere Daten für OpenStreetMap bereitzustellen.",
|
|
214
|
+
"Optional intensity property for heatmap": "Optionale Intensitätseigenschaft für die Heatmap",
|
|
215
|
+
"Optional. Same as color if not set.": "Optional. Gleich wie Farbe, falls nicht ausgefüllt.",
|
|
216
|
+
"Override clustering radius (default 80)": "Gruppierungsradius überschreiben (Standard: 80)",
|
|
217
|
+
"Override heatmap radius (default 25)": "Heatmap-Radius überschreiben (Standard: 25)",
|
|
218
|
+
"Please be sure the licence is compliant with your use.": "Stelle bitte sicher, dass die Lizenz mit deiner Verwendung kompatibel ist.",
|
|
219
|
+
"Please choose a format": "Bitte wähle ein Format",
|
|
220
|
+
"Please enter the name of the property": "Bitte gib den Namen des Merkmals ein",
|
|
221
|
+
"Please enter the new name of this property": "Bitte gib den neuen Namen des Merkmals ein",
|
|
222
|
+
"Problem in the response": "Fehlerhafte Serverantwort",
|
|
223
|
+
"Problem in the response format": "Ungültiges Format der Serverantwort",
|
|
224
|
+
"Properties imported:": "Importierte Merkmale:",
|
|
225
|
+
"Provide an URL here": "Hier eine URL angeben",
|
|
226
|
+
"Proxy request": "Proxyanforderung",
|
|
227
|
+
"Remote data": "Ausgelagerte Daten",
|
|
228
|
+
"Remove shape from the multi": "Form aus der Gruppe löschen",
|
|
229
|
+
"Rename this property on all the features": "Dieses Merkmal bei allen Elementen umbenennen",
|
|
230
|
+
"Replace layer content": "Ebeneninhalt ersetzen",
|
|
231
|
+
"Restore this version": "Diese Version wiederherstellen",
|
|
232
|
+
"Save": "Speichern",
|
|
233
|
+
"Save anyway": "Trotzdem speichern",
|
|
234
|
+
"Save current edits": "Aktuelle Änderungen speichern",
|
|
235
|
+
"Save this center and zoom": "Aktuelle Position und Zoomstufe speichern",
|
|
236
|
+
"Save this location as new feature": "Diesen Ort als neues Element speichern",
|
|
237
|
+
"Search location": "Ort suchen",
|
|
238
|
+
"See all": "Alle anzeigen",
|
|
239
|
+
"See data layers": "Datenebenen ansehen",
|
|
240
|
+
"See full screen": "Vollbildanzeige",
|
|
241
|
+
"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.",
|
|
242
|
+
"Shape properties": "Formeigenschaften",
|
|
243
|
+
"Short credits": "Kurze Credits",
|
|
244
|
+
"Show/hide layer": "Ebene einblenden/ausblenden",
|
|
245
|
+
"Simple link: [[http://example.com]]": "Einfacher Link: [[http://beispiel.com]]",
|
|
246
|
+
"Slideshow": "Diashow",
|
|
247
|
+
"Sort key": "Sortierschlüssel",
|
|
248
|
+
"Split line": "Linie teilen",
|
|
249
|
+
"Start a hole here": "Hier ein Loch beginnen",
|
|
250
|
+
"Start slideshow": "Diashow starten",
|
|
251
|
+
"Stop editing": "Bearbeitung beenden",
|
|
252
|
+
"Stop slideshow": "Diashow beenden",
|
|
253
|
+
"Supported scheme": "Unterstütztes Schema",
|
|
254
|
+
"Supported variables that will be dynamically replaced": "Unterstützte Variablen, die dynamisch ersetzt werden",
|
|
255
|
+
"TMS format": "TMS-Format",
|
|
256
|
+
"Text color for the cluster label": "Textfarbe für die Gruppierungsbezeichnung",
|
|
257
|
+
"Text formatting": "Textformatierung",
|
|
258
|
+
"To use if remote server doesn't allow cross domain (slower)": "Anzuwenden, wenn der Zielserver kein Cross Origin Resource Sharing (CORS) erlaubt (langsamer).",
|
|
259
|
+
"To zoom": "Bis Zoomstufe",
|
|
260
|
+
"Transfer shape to edited feature": "Form in bearbeitetes Element überführen",
|
|
261
|
+
"Transform to lines": "In Linien umwandeln",
|
|
262
|
+
"Transform to polygon": "In Fläche umwandeln",
|
|
263
|
+
"Type of layer": "Ebenentyp",
|
|
264
|
+
"Unable to detect format of file {filename}": "Format der Datei {filename} kann nicht erkannt werden",
|
|
265
|
+
"Untitled layer": "Unbenannte Ebene",
|
|
266
|
+
"Untitled map": "Unbenannte Karte",
|
|
267
|
+
"Update permissions": "Berechtigungen aktualisieren",
|
|
268
|
+
"Update permissions and editors": "Berechtigungen und Bearbeiter ändern",
|
|
269
|
+
"Url": "URL",
|
|
270
|
+
"Use current bounds": "Nutze aktuelle Kartenansicht",
|
|
271
|
+
"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.",
|
|
272
|
+
"User content credits": "Credits der Benutzerinhalte",
|
|
273
|
+
"User interface options": "Einstellungen Benutzeroberfläche",
|
|
274
|
+
"Versions": "Versionen",
|
|
275
|
+
"View Fullscreen": "Vollbild ansehen",
|
|
276
|
+
"Where do we go from here?": "Wie geht es weiter?",
|
|
277
|
+
"Whether to display or not polygons paths.": "Umrisslinie von Flächen anzeigen oder nicht anzeigen.",
|
|
278
|
+
"Whether to fill polygons with color.": "Ob Flächen mit Farbe gefüllt werden.",
|
|
279
|
+
"Who can edit": "Wer darf bearbeiten",
|
|
280
|
+
"Who can view": "Wer darf betrachten",
|
|
281
|
+
"Will be displayed in the bottom right corner of the map": "Wird in rechten unteren Ecke der Karte angezeigt",
|
|
282
|
+
"Will be visible in the caption of the map": "Wird in der Überschrift der Karte angezeigt",
|
|
283
|
+
"Woops! Someone else seems to have edited the data. You can save anyway, but this will erase the changes made by others.": "Hoppla! Jemand anders hat die Daten bearbeitet. Du kannst trotzdem speichern, von anderen vorgenommene Änderungen werden dabei aber gelöscht.",
|
|
284
|
+
"Zoom in": "Hineinzoomen",
|
|
285
|
+
"Zoom level for automatic zooms": "Zommstufe für automatischen Zoom",
|
|
286
|
+
"Zoom out": "Herauszoomen",
|
|
287
|
+
"Zoom to layer extent": "Auf Ebenenausdehnung zoomen",
|
|
288
|
+
"Zoom to the next": "Zum nächsten zoomen",
|
|
289
|
+
"Zoom to the previous": "Zum vorherigen zoomen",
|
|
290
|
+
"Zoom to this feature": "Auf dieses Element zoomen",
|
|
291
|
+
"Zoom to this place": "Auf diesen Ort zoomen",
|
|
292
|
+
"attribution": "Copyright-Hinweis",
|
|
293
|
+
"by": "von",
|
|
294
|
+
"display name": "Namen anzeigen",
|
|
295
|
+
"height": "Höhe",
|
|
296
|
+
"licence": "Lizenz",
|
|
297
|
+
"max East": "Östliche Begrenzung",
|
|
298
|
+
"max North": "Nördliche Begrenzung",
|
|
299
|
+
"max South": "Südliche Begrenzung",
|
|
300
|
+
"max West": "Westliche Begrenzung",
|
|
301
|
+
"max zoom": "höchste Zoomstufe",
|
|
302
|
+
"min zoom": "kleinste Zoomstufe",
|
|
303
|
+
"next": "weiter",
|
|
304
|
+
"previous": "zurück",
|
|
305
|
+
"width": "Breite",
|
|
306
|
+
"{count} errors during import: {message}": "{count} Fehler während des Imports: {message}",
|
|
307
|
+
"Measure distances": "Abstände messen",
|
|
308
|
+
"NM": "NM",
|
|
309
|
+
"kilometers": "Kilometer",
|
|
310
|
+
"km": "km",
|
|
311
|
+
"mi": "mi",
|
|
312
|
+
"miles": "Meilen",
|
|
313
|
+
"nautical miles": "Nautische Meilen",
|
|
314
|
+
"1 day": "1 Tag",
|
|
315
|
+
"1 hour": "1 Stunde",
|
|
316
|
+
"5 min": "5 min",
|
|
317
|
+
"Cache proxied request": "Proxycache-Anfrage",
|
|
318
|
+
"No cache": "Kein Cache",
|
|
319
|
+
"Popup": "Popup",
|
|
320
|
+
"Popup (large)": "Popup (groß)",
|
|
321
|
+
"Popup content style": "Popupinhaltstil",
|
|
322
|
+
"Popup shape": "Popupform",
|
|
323
|
+
"Skipping unknown geometry.type: {type}": "Überspringe unbekannten Geometrietyp: {type}",
|
|
324
|
+
"Optional.": "Optional.",
|
|
325
|
+
"Paste your data here": "Füge deine Daten hier ein",
|
|
326
|
+
"Please save the map first": "Bitte zuerst die Karte speichern",
|
|
327
|
+
"Feature identifier key": "Feature identifier key",
|
|
328
|
+
"Open current feature on load": "Open current feature on load",
|
|
329
|
+
"Permalink": "Permalink",
|
|
330
|
+
"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",
|
|
331
|
+
"Do you want to display caption menus?": "Möchtest du Beschriftungsmenüs anzeigen?",
|
|
332
|
+
"Example: key1,key2,key3": "Beispiel: key1,key2,key3",
|
|
333
|
+
"Invalid latitude or longitude": "Ungültiger Längen- oder Breitengrad",
|
|
334
|
+
"Invalide property name: {name}": "Ungültiger Eigenschaftsname: {name}",
|
|
335
|
+
"Permanent credits": "Dauerhafte Danksagung",
|
|
336
|
+
"Permanent credits background": "Dauerhafte Danksagung im Hintergrund",
|
|
337
|
+
"Select data": "Wähle Daten aus",
|
|
338
|
+
"Will be permanently visible in the bottom left corner of the map": "Wird in der unteren linken Ecke der Karte permanent sichtbar sein",
|
|
339
|
+
"{area} acres": "{area} acres",
|
|
340
|
+
"{area} ha": "{area} ha",
|
|
341
|
+
"{area} m²": "{area} m²",
|
|
342
|
+
"{area} mi²": "{area} mi²",
|
|
343
|
+
"{area} yd²": "{area} yd²",
|
|
344
|
+
"{distance} NM": "{distance} NM",
|
|
345
|
+
"{distance} km": "{distance} km",
|
|
346
|
+
"{distance} m": "{distance} m",
|
|
347
|
+
"{distance} miles": "{distance} miles",
|
|
348
|
+
"{distance} yd": "{distance} yd",
|
|
349
|
+
" (area: {measure})": "(area: {measure})",
|
|
350
|
+
" (length: {measure})": "(length: {measure})",
|
|
351
|
+
"Animated transitions": "Animated transitions",
|
|
352
|
+
"Background overlay url": "Background overlay url",
|
|
353
|
+
"Custom overlay": "Custom overlay",
|
|
354
|
+
"Display the star map button": "Display the star map button",
|
|
355
|
+
"Error in the overlay URL": "Error in the overlay URL",
|
|
356
|
+
"Map has been starred": "Die Karte wurde deiner Sternseite hinzugefügt",
|
|
357
|
+
"Map has been unstarred": "Die Karte wurde von deiner Sternseite entfernt",
|
|
358
|
+
"Opacity": "Deckkraft",
|
|
359
|
+
"Star this map": "Diese Karte mit einem Sternchen versehen",
|
|
360
|
+
"Symbol can be either a unicode character or an URL. You can use feature properties as variables: ex.: with \"http://myserver.org/images/{name}.png\", the {name} variable will be replaced by the \"name\" value of each marker.": "Symbol kann entweder ein Unicode-Zeichen oder eine URL sein. Du kannst Merkmale eines Elements als Variablen verwenden: z. B. wird in \"http://myserver.org/images/{name}.png\" die Variable {name} durch den \"name\"-Wert des jeweiligen Markers ersetzt.",
|
|
361
|
+
"Direct link": "Direktlink",
|
|
362
|
+
"The zoom and center have been modified.": "Mittelpunkt und Zoomstufe sind angepasst.",
|
|
363
|
+
"Congratulations, your map has been created!": "Glückwunsch, deine Karte wurde erstellt!",
|
|
364
|
+
"Copy link": "Link kopieren",
|
|
365
|
+
"Email": "Email",
|
|
366
|
+
"Secret edit link copied to clipboard!": "Geheimer Link zum Bearbeiten der Karte in die Zwischenablage kopiert!",
|
|
367
|
+
"Send me the link": "Link verschicken",
|
|
368
|
+
"Your map has been created! As you are not logged in, here is your secret link to edit the map, please keep it safe:": "Deine Karte wurde erstellt! Da du nicht eingeloggt bist, nutze bitte zukünftig folgenden geheimen Link zum Bearbeiten deiner Karte; bitte verwahre ihn sicher:",
|
|
369
|
+
"Comma separated list of properties to use for sorting features. To reverse the sort, put a minus sign (-) before. Eg. mykey,-otherkey.": "Komma-getrennte Liste von Eigenschaften, die für die Sortierung verwendet werden sollen. Um die Sortierung umzukehren, setzen ein Minuszeichen (-) davor, z. B. mykey,-otherkey.",
|
|
370
|
+
"Toggle edit mode (⇧+Click)": "Bearbeitungsmodus umschalten (⇧+Mausklick)",
|
|
371
|
+
"icon opacity": "Symbol-Deckkraft",
|
|
372
|
+
"*single star for italic*": "*einfache Sternchen für kursiv*",
|
|
373
|
+
"--- for a horizontal rule": "--- für eine horizontale Linie",
|
|
374
|
+
"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}\")": "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}\")",
|
|
375
|
+
"Comma separated list of properties to use for facet search (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key)": "Comma separated list of properties to use for facet search (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key)",
|
|
376
|
+
"Default view": "Standardansicht",
|
|
377
|
+
"Facet keys": "Facet keys",
|
|
378
|
+
"Facet search": "Facet search",
|
|
379
|
+
"Feature properties": "Feature properties",
|
|
380
|
+
"Issue reaching that URL (network problem or CORS protection): {url}": "Issue reaching that URL (network problem or CORS protection): {url}",
|
|
381
|
+
"Latest feature": "Latest feature",
|
|
382
|
+
"No results for these facets": "No results for these facets",
|
|
383
|
+
"Saved center and zoom": "Saved center and zoom",
|
|
384
|
+
"User location": "User location",
|
|
385
|
+
"Visibility: {status}": "Sichtbarkeit: {status}",
|
|
386
|
+
"Fit all data": "Fit all data",
|
|
387
|
+
"Verify remote URL": "Verify remote URL",
|
|
388
|
+
"Add": "Hinzufügen",
|
|
389
|
+
"Change": "Change",
|
|
390
|
+
"Powered by uMap": "Karte zusammengestellt mit uMap",
|
|
391
|
+
"Search": "Suche",
|
|
392
|
+
"Datalayers": "Datenebenen",
|
|
393
|
+
"Secret edit link:": "Secret edit link:",
|
|
394
|
+
"Who can edit \"{layer}\"": "Who can edit \"{layer}\"",
|
|
395
|
+
"Current map view": "Aktueller Kartenausschnitt",
|
|
396
|
+
"Filter": "Filter",
|
|
397
|
+
"Choropleth": "Choropleth",
|
|
398
|
+
"Choropleth breakpoints": "Choropleth breakpoints",
|
|
399
|
+
"Choropleth classes": "Choropleth classes",
|
|
400
|
+
"Choropleth color palette": "Choropleth color palette",
|
|
401
|
+
"Choropleth mode": "Choropleth mode",
|
|
402
|
+
"Choropleth property value": "Choropleth property value",
|
|
403
|
+
"Comma separated list of numbers, including min and max values.": "Comma separated list of numbers, including min and max values.",
|
|
404
|
+
"Equidistant": "Equidistant",
|
|
405
|
+
"Jenks-Fisher": "Jenks-Fisher",
|
|
406
|
+
"K-means": "K-means",
|
|
407
|
+
"Manual": "Manual",
|
|
408
|
+
"Number of desired classes (default 5)": "Number of desired classes (default 5)",
|
|
409
|
+
"Quantiles": "Quantiles",
|
|
410
|
+
"Show this layer in the caption": "Show this layer in the caption",
|
|
411
|
+
"Back to preview": "Zurück zur Vorschau",
|
|
412
|
+
"Drawing": "Drawing",
|
|
413
|
+
"Edit the title of the map": "Die Überschrift der Karte bearbeiten",
|
|
414
|
+
"Go to the homepage": "Go to the homepage",
|
|
415
|
+
"Switch to edit mode": "In Bearbeitungsmodus wechseln",
|
|
416
|
+
"Update who can see and edit the map": "Ändere, wer deine Karte sehen und bearbeiten kann.",
|
|
417
|
+
"View": "Ansicht",
|
|
418
|
+
"Add image URL": "Add image URL",
|
|
419
|
+
"Emoji & Character": "Emoji & Character",
|
|
420
|
+
"Generic": "Generic",
|
|
421
|
+
"Symbol": "Symbol",
|
|
422
|
+
"Type char or paste emoji": "Gib ein Zeichen ein oder füge ein Emoji aus der Zwischenablage ein.",
|
|
423
|
+
"URL": "URL",
|
|
424
|
+
"If false, the polygon or line will act as a part of the underlying map.": "If false, the polygon or line will act as a part of the underlying map.",
|
|
425
|
+
"Save map": "Karte speichern",
|
|
426
|
+
"Toggle edit mode": "Bearbeitungsmodus umschalten",
|
|
427
|
+
"All data and settings of the map": "Alle Daten und Karteneinstellungen",
|
|
428
|
+
"Embed and link options": "Optionen zum Einbetten und für eine angepasste Kartenansicht",
|
|
429
|
+
"Go to \"{coords}\"": "Go to \"{coords}\"",
|
|
430
|
+
"Link to view the map": "Link zur Kartenansicht",
|
|
431
|
+
"No.": "No.",
|
|
432
|
+
"Only visible layers' data": "Nur Daten aus eingeblendeten Ebenen",
|
|
433
|
+
"Open share & download panel": "Teilen & Herunterladen anzeigen",
|
|
434
|
+
"OpenStreetMap": "OpenStreetMap",
|
|
435
|
+
"See on OpenStreetMap": "See on OpenStreetMap",
|
|
436
|
+
"Share and download": "Teilen und Herunterladen",
|
|
437
|
+
"Share this link to open a customized map view": "Teile diesen Link, um eine angepasste Kartenansicht zu öffnen",
|
|
438
|
+
"Short link": "Kurzlink",
|
|
439
|
+
"Street": "Street",
|
|
440
|
+
"Type a place name or coordinates": "Type a place name or coordinates",
|
|
441
|
+
"copy": "kopieren",
|
|
442
|
+
"full backup": "Komplettes Backup",
|
|
443
|
+
"settings": "Einstellungen",
|
|
444
|
+
"{count} features in this layer": "{count} Elemente in dieser Ebene"
|
|
445
|
+
}
|
|
446
|
+
L.registerLocale("de", locale)
|
|
447
|
+
L.setLocale("de")
|