umap-project 2.5.1__py3-none-any.whl → 2.6.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of umap-project might be problematic. Click here for more details.

Files changed (276) hide show
  1. umap/__init__.py +1 -1
  2. umap/admin.py +6 -1
  3. umap/context_processors.py +2 -1
  4. umap/decorators.py +13 -2
  5. umap/forms.py +26 -2
  6. umap/locale/br/LC_MESSAGES/django.mo +0 -0
  7. umap/locale/br/LC_MESSAGES/django.po +252 -146
  8. umap/locale/ca/LC_MESSAGES/django.mo +0 -0
  9. umap/locale/ca/LC_MESSAGES/django.po +274 -162
  10. umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
  11. umap/locale/cs_CZ/LC_MESSAGES/django.po +261 -150
  12. umap/locale/de/LC_MESSAGES/django.mo +0 -0
  13. umap/locale/de/LC_MESSAGES/django.po +299 -187
  14. umap/locale/el/LC_MESSAGES/django.mo +0 -0
  15. umap/locale/el/LC_MESSAGES/django.po +215 -159
  16. umap/locale/en/LC_MESSAGES/django.po +211 -155
  17. umap/locale/es/LC_MESSAGES/django.mo +0 -0
  18. umap/locale/es/LC_MESSAGES/django.po +255 -144
  19. umap/locale/eu/LC_MESSAGES/django.mo +0 -0
  20. umap/locale/eu/LC_MESSAGES/django.po +254 -198
  21. umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
  22. umap/locale/fa_IR/LC_MESSAGES/django.po +347 -235
  23. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  24. umap/locale/fr/LC_MESSAGES/django.po +216 -160
  25. umap/locale/hu/LC_MESSAGES/django.mo +0 -0
  26. umap/locale/hu/LC_MESSAGES/django.po +215 -159
  27. umap/locale/it/LC_MESSAGES/django.mo +0 -0
  28. umap/locale/it/LC_MESSAGES/django.po +252 -146
  29. umap/locale/ms/LC_MESSAGES/django.mo +0 -0
  30. umap/locale/ms/LC_MESSAGES/django.po +252 -146
  31. umap/locale/pl/LC_MESSAGES/django.mo +0 -0
  32. umap/locale/pl/LC_MESSAGES/django.po +254 -148
  33. umap/locale/pt/LC_MESSAGES/django.mo +0 -0
  34. umap/locale/pt/LC_MESSAGES/django.po +215 -159
  35. umap/locale/sv/LC_MESSAGES/django.mo +0 -0
  36. umap/locale/sv/LC_MESSAGES/django.po +254 -143
  37. umap/locale/th_TH/LC_MESSAGES/django.mo +0 -0
  38. umap/locale/th_TH/LC_MESSAGES/django.po +125 -70
  39. umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
  40. umap/locale/zh_TW/LC_MESSAGES/django.po +256 -145
  41. umap/migrations/0022_add_team.py +94 -0
  42. umap/models.py +45 -10
  43. umap/settings/__init__.py +2 -0
  44. umap/settings/base.py +9 -2
  45. umap/static/umap/base.css +32 -41
  46. umap/static/umap/content.css +19 -25
  47. umap/static/umap/css/icon.css +63 -37
  48. umap/static/umap/css/importers.css +1 -1
  49. umap/static/umap/css/slideshow.css +7 -5
  50. umap/static/umap/css/tableeditor.css +4 -3
  51. umap/static/umap/img/16-white.svg +1 -4
  52. umap/static/umap/img/16.svg +2 -6
  53. umap/static/umap/img/24-white.svg +4 -4
  54. umap/static/umap/img/24.svg +6 -6
  55. umap/static/umap/img/source/16-white.svg +2 -5
  56. umap/static/umap/img/source/16.svg +3 -7
  57. umap/static/umap/img/source/24-white.svg +7 -14
  58. umap/static/umap/img/source/24.svg +10 -17
  59. umap/static/umap/js/components/alerts/alert.css +20 -8
  60. umap/static/umap/js/modules/autocomplete.js +8 -12
  61. umap/static/umap/js/modules/browser.js +4 -3
  62. umap/static/umap/js/modules/caption.js +9 -11
  63. umap/static/umap/js/modules/data/features.js +993 -0
  64. umap/static/umap/js/modules/data/layer.js +1210 -0
  65. umap/static/umap/js/modules/formatter.js +12 -3
  66. umap/static/umap/js/modules/global.js +21 -5
  67. umap/static/umap/js/modules/importers/overpass.js +22 -8
  68. umap/static/umap/js/modules/permissions.js +280 -0
  69. umap/static/umap/js/{umap.icon.js → modules/rendering/icon.js} +77 -56
  70. umap/static/umap/js/modules/rendering/layers/base.js +105 -0
  71. umap/static/umap/js/modules/rendering/layers/classified.js +484 -0
  72. umap/static/umap/js/modules/rendering/layers/cluster.js +103 -0
  73. umap/static/umap/js/modules/rendering/layers/heat.js +182 -0
  74. umap/static/umap/js/modules/rendering/popup.js +99 -0
  75. umap/static/umap/js/modules/rendering/template.js +217 -0
  76. umap/static/umap/js/modules/rendering/ui.js +610 -0
  77. umap/static/umap/js/modules/rules.js +16 -3
  78. umap/static/umap/js/modules/schema.js +25 -1
  79. umap/static/umap/js/modules/share.js +66 -45
  80. umap/static/umap/js/modules/sync/updaters.js +9 -10
  81. umap/static/umap/js/modules/tableeditor.js +7 -7
  82. umap/static/umap/js/modules/ui/dialog.js +8 -4
  83. umap/static/umap/js/modules/utils.js +22 -13
  84. umap/static/umap/js/umap.controls.js +80 -146
  85. umap/static/umap/js/umap.core.js +9 -9
  86. umap/static/umap/js/umap.forms.js +41 -17
  87. umap/static/umap/js/umap.js +72 -65
  88. umap/static/umap/locale/am_ET.js +8 -2
  89. umap/static/umap/locale/am_ET.json +8 -2
  90. umap/static/umap/locale/ar.js +8 -2
  91. umap/static/umap/locale/ar.json +8 -2
  92. umap/static/umap/locale/ast.js +8 -2
  93. umap/static/umap/locale/ast.json +8 -2
  94. umap/static/umap/locale/bg.js +8 -2
  95. umap/static/umap/locale/bg.json +8 -2
  96. umap/static/umap/locale/br.js +42 -36
  97. umap/static/umap/locale/br.json +42 -36
  98. umap/static/umap/locale/ca.js +67 -61
  99. umap/static/umap/locale/ca.json +67 -61
  100. umap/static/umap/locale/cs_CZ.js +8 -2
  101. umap/static/umap/locale/cs_CZ.json +8 -2
  102. umap/static/umap/locale/da.js +8 -2
  103. umap/static/umap/locale/da.json +8 -2
  104. umap/static/umap/locale/de.js +143 -137
  105. umap/static/umap/locale/de.json +143 -137
  106. umap/static/umap/locale/el.js +54 -48
  107. umap/static/umap/locale/el.json +54 -48
  108. umap/static/umap/locale/en.js +10 -2
  109. umap/static/umap/locale/en.json +10 -2
  110. umap/static/umap/locale/en_US.json +8 -2
  111. umap/static/umap/locale/es.js +8 -2
  112. umap/static/umap/locale/es.json +8 -2
  113. umap/static/umap/locale/et.js +8 -2
  114. umap/static/umap/locale/et.json +8 -2
  115. umap/static/umap/locale/eu.js +346 -338
  116. umap/static/umap/locale/eu.json +346 -338
  117. umap/static/umap/locale/fa_IR.js +415 -407
  118. umap/static/umap/locale/fa_IR.json +415 -407
  119. umap/static/umap/locale/fi.js +8 -2
  120. umap/static/umap/locale/fi.json +8 -2
  121. umap/static/umap/locale/fr.js +11 -3
  122. umap/static/umap/locale/fr.json +11 -3
  123. umap/static/umap/locale/gl.js +8 -2
  124. umap/static/umap/locale/gl.json +8 -2
  125. umap/static/umap/locale/he.js +8 -2
  126. umap/static/umap/locale/he.json +8 -2
  127. umap/static/umap/locale/hr.js +8 -2
  128. umap/static/umap/locale/hr.json +8 -2
  129. umap/static/umap/locale/hu.js +31 -23
  130. umap/static/umap/locale/hu.json +31 -23
  131. umap/static/umap/locale/id.js +8 -2
  132. umap/static/umap/locale/id.json +8 -2
  133. umap/static/umap/locale/is.js +8 -2
  134. umap/static/umap/locale/is.json +8 -2
  135. umap/static/umap/locale/it.js +8 -2
  136. umap/static/umap/locale/it.json +8 -2
  137. umap/static/umap/locale/ja.js +8 -2
  138. umap/static/umap/locale/ja.json +8 -2
  139. umap/static/umap/locale/ko.js +8 -2
  140. umap/static/umap/locale/ko.json +8 -2
  141. umap/static/umap/locale/lt.js +8 -2
  142. umap/static/umap/locale/lt.json +8 -2
  143. umap/static/umap/locale/ms.js +8 -2
  144. umap/static/umap/locale/ms.json +8 -2
  145. umap/static/umap/locale/nl.js +8 -2
  146. umap/static/umap/locale/nl.json +8 -2
  147. umap/static/umap/locale/no.js +8 -2
  148. umap/static/umap/locale/no.json +8 -2
  149. umap/static/umap/locale/pl.js +54 -48
  150. umap/static/umap/locale/pl.json +54 -48
  151. umap/static/umap/locale/pl_PL.json +8 -2
  152. umap/static/umap/locale/pt.js +24 -18
  153. umap/static/umap/locale/pt.json +24 -18
  154. umap/static/umap/locale/pt_BR.js +8 -2
  155. umap/static/umap/locale/pt_BR.json +8 -2
  156. umap/static/umap/locale/pt_PT.js +214 -208
  157. umap/static/umap/locale/pt_PT.json +214 -208
  158. umap/static/umap/locale/ro.js +8 -2
  159. umap/static/umap/locale/ro.json +8 -2
  160. umap/static/umap/locale/ru.js +8 -2
  161. umap/static/umap/locale/ru.json +8 -2
  162. umap/static/umap/locale/sk_SK.js +8 -2
  163. umap/static/umap/locale/sk_SK.json +8 -2
  164. umap/static/umap/locale/sl.js +8 -2
  165. umap/static/umap/locale/sl.json +8 -2
  166. umap/static/umap/locale/sr.js +8 -2
  167. umap/static/umap/locale/sr.json +8 -2
  168. umap/static/umap/locale/sv.js +8 -2
  169. umap/static/umap/locale/sv.json +8 -2
  170. umap/static/umap/locale/th_TH.js +33 -27
  171. umap/static/umap/locale/th_TH.json +33 -27
  172. umap/static/umap/locale/tr.js +8 -2
  173. umap/static/umap/locale/tr.json +8 -2
  174. umap/static/umap/locale/uk_UA.js +8 -2
  175. umap/static/umap/locale/uk_UA.json +8 -2
  176. umap/static/umap/locale/vi.js +8 -2
  177. umap/static/umap/locale/vi.json +8 -2
  178. umap/static/umap/locale/vi_VN.json +8 -2
  179. umap/static/umap/locale/zh.js +8 -2
  180. umap/static/umap/locale/zh.json +8 -2
  181. umap/static/umap/locale/zh_CN.json +8 -2
  182. umap/static/umap/locale/zh_TW.Big5.json +8 -2
  183. umap/static/umap/locale/zh_TW.js +102 -96
  184. umap/static/umap/locale/zh_TW.json +102 -96
  185. umap/static/umap/map.css +111 -108
  186. umap/static/umap/nav.css +19 -10
  187. umap/static/umap/unittests/utils.js +230 -107
  188. umap/static/umap/vars.css +1 -0
  189. umap/static/umap/vendors/csv2geojson/csv2geojson.js +62 -40
  190. umap/static/umap/vendors/editable/Leaflet.Editable.js +2079 -1937
  191. umap/storage.py +1 -0
  192. umap/templates/404.html +5 -1
  193. umap/templates/500.html +3 -1
  194. umap/templates/auth/user_detail.html +8 -2
  195. umap/templates/auth/user_form.html +19 -10
  196. umap/templates/auth/user_stars.html +8 -2
  197. umap/templates/base.html +1 -0
  198. umap/templates/registration/login.html +18 -3
  199. umap/templates/umap/about.html +1 -0
  200. umap/templates/umap/about_summary.html +22 -7
  201. umap/templates/umap/components/alerts/alert.html +42 -21
  202. umap/templates/umap/content.html +2 -0
  203. umap/templates/umap/content_footer.html +7 -3
  204. umap/templates/umap/css.html +1 -0
  205. umap/templates/umap/dashboard_menu.html +15 -0
  206. umap/templates/umap/home.html +14 -4
  207. umap/templates/umap/js.html +4 -9
  208. umap/templates/umap/login_popup_end.html +10 -4
  209. umap/templates/umap/map_detail.html +8 -2
  210. umap/templates/umap/map_fragment.html +3 -1
  211. umap/templates/umap/map_init.html +2 -1
  212. umap/templates/umap/map_list.html +6 -3
  213. umap/templates/umap/map_table.html +36 -12
  214. umap/templates/umap/messages.html +0 -1
  215. umap/templates/umap/navigation.html +2 -1
  216. umap/templates/umap/password_change.html +5 -1
  217. umap/templates/umap/password_change_done.html +8 -2
  218. umap/templates/umap/search.html +8 -2
  219. umap/templates/umap/search_bar.html +1 -0
  220. umap/templates/umap/team_confirm_delete.html +19 -0
  221. umap/templates/umap/team_detail.html +27 -0
  222. umap/templates/umap/team_form.html +60 -0
  223. umap/templates/umap/user_dashboard.html +7 -9
  224. umap/templates/umap/user_teams.html +51 -0
  225. umap/tests/base.py +8 -1
  226. umap/tests/conftest.py +6 -0
  227. umap/tests/fixtures/test_circles_layer.geojson +219 -0
  228. umap/tests/fixtures/test_upload_georss.xml +20 -0
  229. umap/tests/integration/conftest.py +18 -4
  230. umap/tests/integration/helpers.py +12 -0
  231. umap/tests/integration/test_anonymous_owned_map.py +23 -0
  232. umap/tests/integration/test_basics.py +29 -0
  233. umap/tests/integration/test_browser.py +20 -0
  234. umap/tests/integration/test_caption.py +20 -0
  235. umap/tests/integration/test_circles_layer.py +69 -0
  236. umap/tests/integration/test_conditional_rules.py +102 -17
  237. umap/tests/integration/test_draw_polygon.py +138 -13
  238. umap/tests/integration/test_draw_polyline.py +8 -18
  239. umap/tests/integration/test_edit_datalayer.py +3 -3
  240. umap/tests/integration/test_import.py +124 -5
  241. umap/tests/integration/test_owned_map.py +21 -13
  242. umap/tests/integration/test_querystring.py +7 -0
  243. umap/tests/integration/test_team.py +47 -0
  244. umap/tests/integration/test_tilelayer.py +19 -2
  245. umap/tests/integration/test_view_marker.py +28 -1
  246. umap/tests/integration/test_websocket_sync.py +5 -5
  247. umap/tests/test_datalayer.py +32 -7
  248. umap/tests/test_datalayer_views.py +1 -1
  249. umap/tests/test_map.py +30 -4
  250. umap/tests/test_map_views.py +2 -2
  251. umap/tests/test_statics.py +40 -0
  252. umap/tests/test_team_views.py +131 -0
  253. umap/tests/test_views.py +15 -1
  254. umap/urls.py +23 -13
  255. umap/views.py +116 -10
  256. {umap_project-2.5.1.dist-info → umap_project-2.6.0.dist-info}/METADATA +14 -14
  257. {umap_project-2.5.1.dist-info → umap_project-2.6.0.dist-info}/RECORD +260 -253
  258. umap/static/umap/js/umap.datalayer.permissions.js +0 -70
  259. umap/static/umap/js/umap.features.js +0 -1290
  260. umap/static/umap/js/umap.layer.js +0 -1837
  261. umap/static/umap/js/umap.permissions.js +0 -208
  262. umap/static/umap/js/umap.popup.js +0 -341
  263. umap/static/umap/test/TableEditor.js +0 -104
  264. umap/static/umap/vendors/leaflet/leaflet-src.js +0 -14512
  265. umap/static/umap/vendors/leaflet/leaflet-src.js.map +0 -1
  266. umap/static/umap/vendors/leaflet/leaflet.js +0 -6
  267. umap/static/umap/vendors/leaflet/leaflet.js.map +0 -1
  268. umap/static/umap/vendors/markercluster/WhereAreTheJavascriptFiles.txt +0 -5
  269. umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js +0 -2718
  270. umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js.map +0 -1
  271. umap/static/umap/vendors/toolbar/leaflet.toolbar-src.css +0 -117
  272. umap/static/umap/vendors/toolbar/leaflet.toolbar-src.js +0 -365
  273. umap/tests/integration/test_statics.py +0 -47
  274. {umap_project-2.5.1.dist-info → umap_project-2.6.0.dist-info}/WHEEL +0 -0
  275. {umap_project-2.5.1.dist-info → umap_project-2.6.0.dist-info}/entry_points.txt +0 -0
  276. {umap_project-2.5.1.dist-info → umap_project-2.6.0.dist-info}/licenses/LICENSE +0 -0
@@ -1,6 +1,6 @@
1
1
  {
2
- " (area: {measure})": "(area: {measure})",
3
- " (length: {measure})": "(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": "Background overlay url",
44
+ "Background overlay url": "URL der Hintergrundkarte",
45
45
  "Ball": "Stecknadel",
46
- "Bring feature to center": "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": "Change",
55
+ "Change": "Ändern",
56
56
  "Choose the data format": "Wähle das Datenformat",
57
- "Choropleth breakpoints": "Choropleth breakpoints",
58
- "Choropleth classes": "Choropleth classes",
59
- "Choropleth color palette": "Choropleth color palette",
60
- "Choropleth mode": "Choropleth mode",
61
- "Choropleth property value": "Choropleth property value",
62
- "Choropleth": "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": "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": "Custom overlay",
91
+ "Custom overlay": "Benutzerdefinierter Overlay",
92
92
  "dash array": "Linienart",
93
93
  "Data is browsable": "Daten sind durchsuchbar",
94
94
  "Datalayers": "Datenebenen",
@@ -115,13 +115,12 @@
115
115
  "display name": "Namen anzeigen",
116
116
  "Display on load": "Beim Seitenaufruf anzeigen.",
117
117
  "Display the control to open OpenStreetMap editor": "Den Button zum OpenStreetMap-Editor anzeigen",
118
- "Display the data layers control": "Datenebenensteuerung anzeigen",
119
118
  "Display the embed control": "Eingebettete Steuerung anzeigen",
120
119
  "Display the fullscreen control": "Vollbildsteuerung anzeigen",
121
120
  "Display the locate control": "Den Ortungsbutton anzeigen.",
122
121
  "Display the measure control": "Messsteuerung anzeigen",
123
122
  "Display the search control": "Suchsteuerung anzeigen",
124
- "Display the star map button": "Display the star map button",
123
+ "Display the star map button": "Schalter für Bewertungsfunktion anzeigen",
125
124
  "Display the tile layers control": "Kachelebenensteuerung anzeigen",
126
125
  "Display the zoom control": "Zoomsteuerung anzeigen",
127
126
  "Do you want to display a caption bar?": "Möchtest du eine Überschrift (Fußzeile) anzeigen?",
@@ -136,7 +135,7 @@
136
135
  "Draw a marker": "Einen Marker zeichnen",
137
136
  "Draw a polygon": "Eine Fläche zeichnen",
138
137
  "Draw a polyline": "Eine Linie zeichnen",
139
- "Drawing": "Drawing",
138
+ "Drawing": "Zeichnen",
140
139
  "Drop": "Tropfen",
141
140
  "Dynamic properties": "Dynamische Merkmale",
142
141
  "Dynamic": "Dynamisch",
@@ -147,29 +146,29 @@
147
146
  "Edit": "Bearbeiten",
148
147
  "Embed and link options": "Optionen zum Einbetten und für eine angepasste Kartenansicht",
149
148
  "Embed the map": "Karte einbinden",
150
- "Emoji & Character": "Emoji & Character",
149
+ "Emoji & Character": "Emoji & Schriftzeichen",
151
150
  "Empty": "Leeren",
152
- "Equidistant": "Equidistant",
153
- "Error in the overlay URL": "Error in the overlay URL",
151
+ "Equidistant": "Äquidistant",
152
+ "Error in the overlay URL": "Fehler in der Overlay-URL",
154
153
  "Error in the tilelayer URL": "Fehler in der Kachelebenen-URL",
155
154
  "Exit Fullscreen": "Vollbild beenden",
156
155
  "expanded": "ausgeklappt",
157
156
  "Extract shape to separate feature": "Form als separates Element extrahieren",
158
- "Feature identifier key": "Feature identifier key",
159
- "Feature properties": "Feature properties",
157
+ "Feature identifier key": "Schlüssel zur Identifizierung des Elements",
158
+ "Feature properties": "Eigenschaften des Elements",
160
159
  "Fetch data each time map view changes.": "Daten jedes Mal abrufen, wenn sich die Kartenansicht ändert.",
161
160
  "fill color": "Farbe der Füllung",
162
161
  "fill opacity": "Deckkraft der Füllung",
163
162
  "fill": "Füllung",
164
- "Fit all data": "Fit all data",
163
+ "Fit all data": "Alle Daten einpassen",
165
164
  "Format": "Format",
166
165
  "From zoom": "Von Zoomstufe",
167
166
  "full backup": "Komplettes Backup",
168
- "Generic": "Generic",
167
+ "Generic": "Generisch",
169
168
  "GeoRSS (only link)": "GeoRSS (nur Link)",
170
169
  "GeoRSS (title + image)": "GeoRSS (Titel + Bild)",
171
- "Go to \"{coords}\"": "Go to \"{coords}\"",
172
- "Go to the homepage": "Go to the homepage",
170
+ "Go to \"{coords}\"": "Gehe zu {coords}",
171
+ "Go to the homepage": "Zur Startseite gehen",
173
172
  "Go to «{feature}»": "Zu „{feature}“ wechseln",
174
173
  "Heatmap intensity property": "Heatmap-Intensität",
175
174
  "Heatmap radius": "Radius der Heatmap",
@@ -183,7 +182,7 @@
183
182
  "icon opacity": "Symbol-Deckkraft",
184
183
  "Icon shape": "Bildzeichenform",
185
184
  "Icon symbol": "Bildzeichensymbol",
186
- "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.",
185
+ "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
186
  "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
187
  "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
188
  "iframe": "iframe",
@@ -208,7 +207,7 @@
208
207
  "Label direction": "Beschriftungsrichtung",
209
208
  "Label key": "Anzeigeschlüssel",
210
209
  "Labels are clickable": "Beschriftungen sind klickbar",
211
- "Latest feature": "Latest feature",
210
+ "Latest feature": "Neuestes Element",
212
211
  "Latitude": "Geogr. Breite",
213
212
  "Layer properties": "Ebeneneigenschaften",
214
213
  "Layer": "Ebene",
@@ -222,7 +221,7 @@
222
221
  "Longitude": "Geogr. Länge",
223
222
  "Make main shape": "Hauptform erstellen",
224
223
  "Manage layers": "Ebenen verwalten",
225
- "Manual": "Manual",
224
+ "Manual": "Anleitung",
226
225
  "Map background credits": "Credits der Hintergrundkarte",
227
226
  "Map has been attached to your account": "Die Karte wurde deinem Benutzerkonto zugeordnet.",
228
227
  "Map has been saved!": "Karte gespeichert!",
@@ -236,7 +235,7 @@
236
235
  "max South": "Südliche Begrenzung",
237
236
  "max West": "Westliche Begrenzung",
238
237
  "max zoom": "höchste Zoomstufe",
239
- "Measure distances": "Abstände messen",
238
+ "Measure distances": "Entfernungen messen",
240
239
  "Merge lines": "Linien zusammenführen",
241
240
  "mi": "mi",
242
241
  "miles": "Meilen",
@@ -253,9 +252,9 @@
253
252
  "No licence has been set": "Keine Lizenz ausgewählt",
254
253
  "No results": "Keine Ergebnisse",
255
254
  "no": "Nein",
256
- "No.": "No.",
255
+ "No.": "Nr.",
257
256
  "None": "Keine",
258
- "Number of desired classes (default 5)": "Number of desired classes (default 5)",
257
+ "Number of desired classes (default 5)": "Anzahl der gewünschten Klassen (Standardwert 5)",
259
258
  "On the bottom": "An der Unterseite",
260
259
  "On the left": "An der linken Seite",
261
260
  "On the right": "An der rechten Seite",
@@ -290,12 +289,12 @@
290
289
  "Popup": "Popup",
291
290
  "Powered by uMap": "Karte zusammengestellt mit uMap",
292
291
  "previous": "zurück",
293
- "Problem in the response": "Problem in the response",
292
+ "Problem in the response": "Fehler in der Antwort",
294
293
  "Properties imported:": "Importierte Merkmale:",
295
294
  "Provide an URL here": "Hier eine URL angeben",
296
295
  "Proxy request": "Proxyanforderung",
297
- "Quantiles": "Quantiles",
298
- "Recent": "Recent",
296
+ "Quantiles": "Quantile",
297
+ "Recent": "Neueste",
299
298
  "Remote data": "Ausgelagerte Daten",
300
299
  "Remove shape from the multi": "Form aus der Gruppe löschen",
301
300
  "Replace layer content": "Ebeneninhalt ersetzen",
@@ -305,12 +304,12 @@
305
304
  "Save this center and zoom": "Aktuelle Position und Zoomstufe speichern",
306
305
  "Save this location as new feature": "Diesen Ort als neues Element speichern",
307
306
  "Save": "Speichern",
308
- "Saved center and zoom": "Saved center and zoom",
307
+ "Saved center and zoom": "Mittelpunkt und Zoom gespeichert",
309
308
  "Search location": "Ort suchen",
310
309
  "Search": "Suche",
311
- "Secret edit link:": "Secret edit link:",
310
+ "Secret edit link:": "Geheimer Bearbeitungslink:",
312
311
  "See full screen": "Vollbildanzeige",
313
- "See on OpenStreetMap": "See on OpenStreetMap",
312
+ "See on OpenStreetMap": "Auf OpenStreetMap ansehen",
314
313
  "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
314
  "settings": "Einstellungen",
316
315
  "Shape properties": "Formeigenschaften",
@@ -318,7 +317,7 @@
318
317
  "Share this link to open a customized map view": "Teile diesen Link, um eine angepasste Kartenansicht zu öffnen",
319
318
  "Short credits": "Kurze Credits",
320
319
  "Short link": "Kurzlink",
321
- "Show this layer in the caption": "Show this layer in the caption",
320
+ "Show this layer in the caption": "Legende im Info-Fenster anzeigen.",
322
321
  "Show/hide layer": "Ebene einblenden/ausblenden",
323
322
  "Side panel": "Seitenleiste",
324
323
  "Simple link: [[http://example.com]]": "Einfacher Link: [[http://beispiel.com]]",
@@ -332,7 +331,7 @@
332
331
  "Start slideshow": "Diashow starten",
333
332
  "Stop editing": "Bearbeitung beenden",
334
333
  "Stop slideshow": "Diashow beenden",
335
- "Street": "Street",
334
+ "Street": "Straße",
336
335
  "stroke": "Umrisslinie",
337
336
  "Supported scheme": "Unterstütztes Schema",
338
337
  "Supported variables that will be dynamically replaced": "Unterstützte Variablen, die dynamisch ersetzt werden",
@@ -340,7 +339,7 @@
340
339
  "Table": "Tabelle",
341
340
  "Text color for the cluster label": "Textfarbe für die Gruppierungsbezeichnung",
342
341
  "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}\")": "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}\")",
342
+ "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
343
  "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
344
  "The zoom and center have been modified.": "Mittelpunkt und Zoomstufe sind angepasst.",
346
345
  "TMS format": "TMS-Format",
@@ -351,7 +350,7 @@
351
350
  "Transfer shape to edited feature": "Form in bearbeitetes Element überführen",
352
351
  "Transform to lines": "In Linien umwandeln",
353
352
  "Transform to polygon": "In Fläche umwandeln",
354
- "Type a place name or coordinates": "Type a place name or coordinates",
353
+ "Type a place name or coordinates": "Gib einen Ortsnamen oder Koordinaten ein",
355
354
  "Type char or paste emoji": "Gib ein Zeichen ein oder füge ein Emoji aus der Zwischenablage ein.",
356
355
  "Type of layer": "Ebenentyp",
357
356
  "Unable to detect format of file {filename}": "Format der Datei {filename} kann nicht erkannt werden",
@@ -366,8 +365,8 @@
366
365
  "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
366
  "User content credits": "Credits der Benutzerinhalte",
368
367
  "User interface options": "Einstellungen Benutzeroberfläche",
369
- "User location": "User location",
370
- "Verify remote URL": "Verify remote URL",
368
+ "User location": "Benutzerstandort",
369
+ "Verify remote URL": "Remote-URL überprüfen",
371
370
  "Versions": "Versionen",
372
371
  "View Fullscreen": "Vollbild ansehen",
373
372
  "View": "Ansicht",
@@ -376,7 +375,7 @@
376
375
  "Where do we go from here?": "Wie geht es weiter?",
377
376
  "Whether to display or not polygons paths.": "Umrisslinie von Flächen anzeigen oder nicht anzeigen.",
378
377
  "Whether to fill polygons with color.": "Ob Flächen mit Farbe gefüllt werden.",
379
- "Who can edit \"{layer}\"": "Who can edit \"{layer}\"",
378
+ "Who can edit \"{layer}\"": "Wer darf \"{layer}\" bearbeiten",
380
379
  "Who can edit": "Wer darf bearbeiten",
381
380
  "Who can view": "Wer darf betrachten",
382
381
  "width": "Breite",
@@ -392,7 +391,7 @@
392
391
  "Zoom to the previous": "Zum vorherigen zoomen",
393
392
  "Zoom to this feature": "Auf dieses Element zoomen",
394
393
  "Zoom to this place": "Auf diesen Ort zoomen",
395
- "{area} acres": "{area} acres",
394
+ "{area} acres": "{area} Hektar",
396
395
  "{area} ha": "{area} ha",
397
396
  "{area} m²": "{area} m²",
398
397
  "{area} mi²": "{area} mi²",
@@ -401,102 +400,109 @@
401
400
  "{delay} seconds": "{delay} Sekunden",
402
401
  "{distance} km": "{distance} km",
403
402
  "{distance} m": "{distance} m",
404
- "{distance} miles": "{distance} miles",
403
+ "{distance} miles": "{distance} Meilen",
405
404
  "{distance} NM": "{distance} NM",
406
405
  "{distance} yd": "{distance} yd",
407
- "Edit map name and caption": "Edit map name and caption",
408
- "Map advanced properties": "Map advanced properties",
409
- "Edit map details": "Edit map details",
410
- "Back to browser": "Back to browser",
411
- "Toggle size": "Toggle size",
412
- "Display the caption control": "Display the caption control",
406
+ "Edit map name and caption": "Name und Titel der Karte bearbeiten",
407
+ "Map advanced properties": "Erweiterte Eigenschaften der Karte",
408
+ "Edit map details": "Kartendetails bearbeiten",
409
+ "Back to browser": "Zurück zum Browser",
410
+ "Toggle size": "Größe umschalten",
411
+ "Display the caption control": "Anzeige der Beschriftungssteuerung",
413
412
  "<empty value>": "<empty value>",
414
413
  "Min": "Min",
415
414
  "Max": "Max",
416
- "From": "From",
417
- "Until": "Until",
418
- "Example: key1,key2|Label 2,key3|Label 3|checkbox": "Example: key1,key2|Label 2,key3|Label 3|checkbox",
419
- "Edit in OpenStreetMap": "Edit in OpenStreetMap",
420
- "Cannot determine latitude and longitude columns.": "Cannot determine latitude and longitude columns.",
421
- "Back to layers": "Back to layers",
422
- "Filters": "Filters",
423
- "Comma separated list of properties to use when filtering features by text input": "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.": "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": "Search keys",
426
- "Filters keys": "Filters keys",
427
- "Filter data": "Filter data",
428
- "Search map features…": "Search map features…",
429
- "Reset all": "Reset all",
430
- "Open browser": "Open browser",
431
- "Open caption": "Open caption",
432
- "Your map has been created with an anonymous account!": "Your map has been created with an anonymous account!",
433
- "Real-time collaboration": "Real-time collaboration",
434
- "Cannot parse data": "Cannot parse data",
435
- "Start typing...": "Start typing...",
436
- "No result": "No result",
437
- "Data browser": "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.": "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 supported expressions",
440
- "key (eg. building)": "key (eg. building)",
441
- "!key (eg. !name)": "!key (eg. !name)",
442
- "key=value (eg. building=yes)": "key=value (eg. building=yes)",
443
- "key!=value (eg. building!=yes)": "key!=value (eg. building!=yes)",
444
- "key~value (eg. name~Grisy)": "key~value (eg. name~Grisy)",
445
- "key=\"value|value2\" (eg. name=\"Paris|Berlin\")": "key=\"value|value2\" (eg. name=\"Paris|Berlin\")",
446
- "More info about Overpass syntax": "More info about Overpass syntax",
447
- "For more complex needs, see": "For more complex needs, see",
448
- "Choose data": "Choose data",
449
- "Import helpers:": "Import helpers:",
450
- "Choose the format": "Choose the format",
451
- "Choose the layer": "Choose the layer",
452
- "Layer name": "Layer name",
453
- "Choose import mode": "Choose import mode",
454
- "Copy into the layer": "Copy into the layer",
455
- "Link to the layer as remote data": "Link to the layer as remote data",
456
- "Condition": "Condition",
457
- "key=value or key!=value": "key=value or key!=value",
458
- "Are you sure you want to delete this rule?": "Are you sure you want to delete this rule?",
459
- "empty rule": "empty rule",
460
- "Conditional style rules": "Conditional style rules",
461
- "Add rule": "Add rule",
462
- "Browser: data": "Browser: data",
463
- "Browser: layers": "Browser: layers",
464
- "Browser: filters": "Browser: filters",
465
- "Enable real-time collaboration": "Enable real-time collaboration",
466
- "✅ Copied!": "✅ Copied!",
467
- "Choose a dataset": "Choose a dataset",
468
- "Choose this dataset": "Choose this dataset",
469
- "GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: thematic data from OpenStreetMap",
470
- "Choose a theme": "Choose a theme",
471
- "Symplify all geometries to points": "Symplify all geometries to points",
472
- "Choose this data": "Choose this data",
473
- "Search admin boundary": "Search admin boundary",
474
- "Please choose a theme and a boundary first.": "Please choose a theme and a boundary first.",
475
- "Expression": "Expression",
476
- "Geometry mode": "Geometry mode",
477
- "Only geometry centers": "Only geometry centers",
478
- "Search area": "Search area",
479
- "Type area name, or let empty to load data in current map view": "Type area name, or let empty to load data in current map view",
480
- "Data successfully imported!": "Data successfully imported!",
481
- "My Dashboard ({username})": "My Dashboard ({username})",
482
- "Clear data": "Clear data",
483
- "Remove layers": "Remove layers",
484
- "Categorized": "Categorized",
485
- "Alphabetical": "Alphabetical",
486
- "Category property": "Category property",
487
- "Color palette": "Color palette",
488
- "Categories": "Categories",
489
- "Comma separated list of categories.": "Comma separated list of categories.",
490
- "Categories mode": "Categories mode",
491
- "Remove filter for this column": "Remove filter for this column",
492
- "Add filter for this column": "Add filter for this column",
493
- "Rename this column": "Rename this column",
494
- "Delete this column": "Delete this column",
495
- "Name “{name}” should not contain a dot.": "Name {name} should not contain a dot.",
496
- "This name already exists: “{name}”": "This name already exists: {name}",
497
- "Delete selected rows": "Delete selected rows",
498
- "Found {count} rows. Are you sure you want to delete all?": "Found {count} rows. Are you sure you want to delete all?",
499
- "Expression is empty": "Expression is empty",
415
+ "From": "Von",
416
+ "Until": "Bis",
417
+ "Example: key1,key2|Label 2,key3|Label 3|checkbox": "Beispiel: key1,key2|Beschriftung 2,key3|Beschriftung 3|checkbox",
418
+ "Edit in OpenStreetMap": "Bearbeiten in OpenStreetMap",
419
+ "Cannot determine latitude and longitude columns.": "Die Spalten für Breiten- und Längengrad können nicht bestimmt werden.",
420
+ "Back to layers": "Zurück zu den Kartenebenen",
421
+ "Filters": "Filter",
422
+ "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",
423
+ "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.",
424
+ "Search keys": "Suchbegriffe",
425
+ "Filters keys": "Filterbegriffe",
426
+ "Filter data": "Daten filtern",
427
+ "Search map features…": "Suche auf der Karte...",
428
+ "Reset all": "Alles zurücksetzen",
429
+ "Open browser": "Browser öffnen",
430
+ "Open caption": "Info-Fenster öffnen",
431
+ "Your map has been created with an anonymous account!": "Ihre Karte wurde mit einem anonymen Konto erstellt!",
432
+ "Real-time collaboration": "Echtzeit-Zusammenarbeit",
433
+ "Cannot parse data": "Daten können nicht geparst werden",
434
+ "Start typing...": "Beginne mit der Eingabe...",
435
+ "No result": "Keine Ergebnisse",
436
+ "Data browser": "Datenbrowser",
437
+ "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.",
438
+ "Overpass supported expressions": "Von Overpass unterstützte Abfrage",
439
+ "key (eg. building)": "key (z.b. building)",
440
+ "!key (eg. !name)": "!key (z.B. !name)",
441
+ "key=value (eg. building=yes)": "key=value (z.B. building=yes)",
442
+ "key!=value (eg. building!=yes)": "key!=value (z.B. building!=yes)",
443
+ "key~value (eg. name~Grisy)": "key~value (z.B. name~Grisy)",
444
+ "key=\"value|value2\" (eg. name=\"Paris|Berlin\")": "key=\"value|value2\" (z.B.. name=\"Paris|Berlin\")",
445
+ "More info about Overpass syntax": "Weitere Informationen zur Overpass-Syntax",
446
+ "For more complex needs, see": "Für komplexere Abfragen, siehe",
447
+ "Choose data": "Daten auswählen",
448
+ "Import helpers:": "Import-Assistenten:",
449
+ "Choose the format": "Wähle das Datenformat",
450
+ "Choose the layer": "Ebenenauswahl",
451
+ "Layer name": "Ebenenname",
452
+ "Choose import mode": "Wähle Importmodus",
453
+ "Copy into the layer": "In die Ebene kopieren",
454
+ "Link to the layer as remote data": "Link zur Ebene als Remote-Data",
455
+ "Condition": "Bedingung",
456
+ "key=value or key!=value": "key=value oder key!=value",
457
+ "Are you sure you want to delete this rule?": "Bist du sicher, dass du diese Regel löschen willst?",
458
+ "empty rule": "leere Regel",
459
+ "Conditional style rules": "Bedingte Stileregeln",
460
+ "Add rule": "Regel hinzufügen",
461
+ "Browser: data": "Browser: Daten",
462
+ "Browser: layers": "Browser: Ebenen",
463
+ "Browser: filters": "Browser: Filter",
464
+ "Enable real-time collaboration": "Aktiviere Echtzeit-Zusammenarbeit",
465
+ "✅ Copied!": "✅ Kopiert!",
466
+ "Choose a dataset": "Datensatz auswählen",
467
+ "Choose this dataset": "Diesen Datensatz auswählen",
468
+ "GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: thematische Daten von OpenStreetMap",
469
+ "Choose a theme": "Thema auswählen",
470
+ "Symplify all geometries to points": "Alle Geometrien zu Punkten vereinfachen",
471
+ "Choose this data": "Diese Daten auswählen",
472
+ "Search admin boundary": "Administrative Grenze suchen",
473
+ "Please choose a theme and a boundary first.": "Bitte wähle zuerst ein Thema und eine administrative Grenze.",
474
+ "Expression": "Ausdruck",
475
+ "Geometry mode": "Geometriemodus",
476
+ "Only geometry centers": "Nur Geometriezentren",
477
+ "Search area": "Suchgebiet",
478
+ "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",
479
+ "Data successfully imported!": "Daten erfolgreich importiert!",
480
+ "My Dashboard ({username})": "Mein Dashboard ({username})",
481
+ "Clear data": "Daten Löschen",
482
+ "Remove layers": "Ebene entfernen",
483
+ "Categorized": "Kategorisiert",
484
+ "Alphabetical": "Alphabetisch",
485
+ "Category property": "Kategoriekriterium",
486
+ "Color palette": "Farbpalette",
487
+ "Categories": "Kategorien",
488
+ "Comma separated list of categories.": "Kommagetrennte Liste von Kategorien.",
489
+ "Categories mode": "Kategoriemodus",
490
+ "Remove filter for this column": "Entferne Filter für diese Spalte",
491
+ "Add filter for this column": "Füge Filter für diese Spalte hinzu",
492
+ "Rename this column": "Spalte umbenennen",
493
+ "Delete this column": "Spalte löschen",
494
+ "Name “{name}” should not contain a dot.": "Der Name \"{name}\" darf keinen Punkt enthalten.",
495
+ "This name already exists: “{name}”": "Dieser Name existiert bereits: \"{name}\"",
496
+ "Delete selected rows": "Ausgewählte Zeilen löschen",
497
+ "Found {count} rows. Are you sure you want to delete all?": "{count} Zeilen gefunden. Bist du sicher, dass du diese löschen willst?",
498
+ "Expression is empty": "Ausdruck ist leer",
500
499
  "OK": "OK",
501
- "Cancel": "Cancel"
500
+ "Cancel": "Abbrechen",
501
+ "Attach map to a team": "Attach map to a team",
502
+ "Display the polygon inverted": "Display the polygon inverted",
503
+ "Proportional circles": "Proportional circles",
504
+ "Property name to compute circles": "Property name to compute circles",
505
+ "Min circle radius": "Min circle radius",
506
+ "Max circle radius": "Max circle radius",
507
+ "Display the open browser control": "Display the open browser control"
502
508
  }