umap-project 2.1.3__py3-none-any.whl → 2.2.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.

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