umap-project 3.3.2__py3-none-any.whl → 3.4.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.
Files changed (242) hide show
  1. umap/__init__.py +1 -1
  2. umap/context_processors.py +4 -1
  3. umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
  4. umap/locale/cs_CZ/LC_MESSAGES/django.po +43 -33
  5. umap/locale/da/LC_MESSAGES/django.mo +0 -0
  6. umap/locale/da/LC_MESSAGES/django.po +43 -33
  7. umap/locale/de/LC_MESSAGES/django.mo +0 -0
  8. umap/locale/de/LC_MESSAGES/django.po +64 -53
  9. umap/locale/el/LC_MESSAGES/django.mo +0 -0
  10. umap/locale/el/LC_MESSAGES/django.po +35 -29
  11. umap/locale/en/LC_MESSAGES/django.po +47 -41
  12. umap/locale/es/LC_MESSAGES/django.mo +0 -0
  13. umap/locale/es/LC_MESSAGES/django.po +43 -33
  14. umap/locale/et/LC_MESSAGES/django.mo +0 -0
  15. umap/locale/et/LC_MESSAGES/django.po +58 -54
  16. umap/locale/eu/LC_MESSAGES/django.mo +0 -0
  17. umap/locale/eu/LC_MESSAGES/django.po +43 -33
  18. umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
  19. umap/locale/fa_IR/LC_MESSAGES/django.po +43 -33
  20. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  21. umap/locale/fr/LC_MESSAGES/django.po +36 -30
  22. umap/locale/gl/LC_MESSAGES/django.mo +0 -0
  23. umap/locale/gl/LC_MESSAGES/django.po +43 -33
  24. umap/locale/hu/LC_MESSAGES/django.mo +0 -0
  25. umap/locale/hu/LC_MESSAGES/django.po +35 -29
  26. umap/locale/is/LC_MESSAGES/django.mo +0 -0
  27. umap/locale/is/LC_MESSAGES/django.po +43 -33
  28. umap/locale/it/LC_MESSAGES/django.mo +0 -0
  29. umap/locale/it/LC_MESSAGES/django.po +43 -33
  30. umap/locale/nl/LC_MESSAGES/django.mo +0 -0
  31. umap/locale/nl/LC_MESSAGES/django.po +35 -29
  32. umap/locale/pl/LC_MESSAGES/django.mo +0 -0
  33. umap/locale/pl/LC_MESSAGES/django.po +114 -103
  34. umap/locale/pt/LC_MESSAGES/django.mo +0 -0
  35. umap/locale/pt/LC_MESSAGES/django.po +43 -33
  36. umap/locale/th_TH/LC_MESSAGES/django.mo +0 -0
  37. umap/locale/th_TH/LC_MESSAGES/django.po +310 -109
  38. umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
  39. umap/locale/zh_TW/LC_MESSAGES/django.po +80 -70
  40. umap/management/commands/switch_user.py +2 -2
  41. umap/migrations/0018_datalayer_uuid.py +1 -1
  42. umap/models.py +7 -3
  43. umap/settings/local.py.sample +1 -1
  44. umap/static/umap/base.css +89 -32
  45. umap/static/umap/content.css +129 -33
  46. umap/static/umap/css/bar.css +82 -20
  47. umap/static/umap/css/browser.css +163 -0
  48. umap/static/umap/css/contextmenu.css +15 -0
  49. umap/static/umap/css/dialog.css +36 -16
  50. umap/static/umap/css/form.css +123 -33
  51. umap/static/umap/css/icon.css +46 -3
  52. umap/static/umap/css/panel.css +7 -3
  53. umap/static/umap/css/popup.css +34 -8
  54. umap/static/umap/css/tooltip.css +8 -4
  55. umap/static/umap/img/16-white.svg +26 -8
  56. umap/static/umap/img/16.svg +1 -1
  57. umap/static/umap/img/source/16-white.svg +36 -18
  58. umap/static/umap/img/source/16.svg +1 -1
  59. umap/static/umap/js/components/alerts/alert.css +69 -31
  60. umap/static/umap/js/components/alerts/alert.js +20 -2
  61. umap/static/umap/js/components/base.js +1 -1
  62. umap/static/umap/js/modules/browser.js +69 -61
  63. umap/static/umap/js/modules/caption.js +10 -7
  64. umap/static/umap/js/modules/data/features.js +89 -63
  65. umap/static/umap/js/modules/data/fields.js +446 -0
  66. umap/static/umap/js/modules/data/layer.js +116 -196
  67. umap/static/umap/js/modules/domutils.js +109 -0
  68. umap/static/umap/js/modules/filters.js +780 -0
  69. umap/static/umap/js/modules/form/builder.js +8 -5
  70. umap/static/umap/js/modules/form/fields.js +111 -221
  71. umap/static/umap/js/modules/formatter.js +24 -1
  72. umap/static/umap/js/modules/help.js +4 -3
  73. umap/static/umap/js/modules/i18n.js +1 -1
  74. umap/static/umap/js/modules/importer.js +1 -1
  75. umap/static/umap/js/modules/importers/opendata.js +15 -0
  76. umap/static/umap/js/modules/importers/openrouteservice.js +6 -1
  77. umap/static/umap/js/modules/managers.js +2 -1
  78. umap/static/umap/js/modules/permissions.js +39 -31
  79. umap/static/umap/js/modules/rendering/controls.js +11 -9
  80. umap/static/umap/js/modules/rendering/icon.js +3 -8
  81. umap/static/umap/js/modules/rendering/layers/base.js +3 -3
  82. umap/static/umap/js/modules/rendering/layers/classified.js +18 -11
  83. umap/static/umap/js/modules/rendering/layers/cluster.js +23 -11
  84. umap/static/umap/js/modules/rendering/layers/heat.js +27 -21
  85. umap/static/umap/js/modules/rendering/map.js +1 -0
  86. umap/static/umap/js/modules/rendering/template.js +50 -23
  87. umap/static/umap/js/modules/rendering/ui.js +33 -25
  88. umap/static/umap/js/modules/rules.js +38 -44
  89. umap/static/umap/js/modules/schema.js +3 -6
  90. umap/static/umap/js/modules/share.js +5 -4
  91. umap/static/umap/js/modules/tableeditor.js +50 -38
  92. umap/static/umap/js/modules/templates.js +2 -3
  93. umap/static/umap/js/modules/ui/bar.js +55 -23
  94. umap/static/umap/js/modules/ui/dialog.js +38 -27
  95. umap/static/umap/js/modules/ui/panel.js +23 -8
  96. umap/static/umap/js/modules/ui/tooltip.js +6 -5
  97. umap/static/umap/js/modules/umap.js +158 -51
  98. umap/static/umap/js/modules/utils.js +24 -2
  99. umap/static/umap/js/umap.core.js +1 -110
  100. umap/static/umap/locale/am_ET.js +52 -17
  101. umap/static/umap/locale/am_ET.json +52 -17
  102. umap/static/umap/locale/ar.js +52 -17
  103. umap/static/umap/locale/ar.json +52 -17
  104. umap/static/umap/locale/ast.js +52 -17
  105. umap/static/umap/locale/ast.json +52 -17
  106. umap/static/umap/locale/bg.js +52 -17
  107. umap/static/umap/locale/bg.json +52 -17
  108. umap/static/umap/locale/br.js +48 -22
  109. umap/static/umap/locale/br.json +48 -22
  110. umap/static/umap/locale/ca.js +52 -17
  111. umap/static/umap/locale/ca.json +52 -17
  112. umap/static/umap/locale/cs_CZ.js +52 -17
  113. umap/static/umap/locale/cs_CZ.json +52 -17
  114. umap/static/umap/locale/da.js +54 -17
  115. umap/static/umap/locale/da.json +54 -17
  116. umap/static/umap/locale/de.js +102 -67
  117. umap/static/umap/locale/de.json +102 -67
  118. umap/static/umap/locale/el.js +52 -17
  119. umap/static/umap/locale/el.json +52 -17
  120. umap/static/umap/locale/en.js +54 -16
  121. umap/static/umap/locale/en.json +54 -16
  122. umap/static/umap/locale/en_US.json +52 -17
  123. umap/static/umap/locale/es.js +54 -17
  124. umap/static/umap/locale/es.json +54 -17
  125. umap/static/umap/locale/et.js +91 -56
  126. umap/static/umap/locale/et.json +91 -56
  127. umap/static/umap/locale/eu.js +84 -49
  128. umap/static/umap/locale/eu.json +84 -49
  129. umap/static/umap/locale/fa_IR.js +52 -17
  130. umap/static/umap/locale/fa_IR.json +52 -17
  131. umap/static/umap/locale/fi.js +52 -17
  132. umap/static/umap/locale/fi.json +52 -17
  133. umap/static/umap/locale/fr.js +54 -17
  134. umap/static/umap/locale/fr.json +54 -17
  135. umap/static/umap/locale/gl.js +52 -17
  136. umap/static/umap/locale/gl.json +52 -17
  137. umap/static/umap/locale/he.js +52 -17
  138. umap/static/umap/locale/he.json +52 -17
  139. umap/static/umap/locale/hr.js +52 -17
  140. umap/static/umap/locale/hr.json +52 -17
  141. umap/static/umap/locale/hu.js +59 -24
  142. umap/static/umap/locale/hu.json +59 -24
  143. umap/static/umap/locale/id.js +52 -17
  144. umap/static/umap/locale/id.json +52 -17
  145. umap/static/umap/locale/is.js +52 -17
  146. umap/static/umap/locale/is.json +52 -17
  147. umap/static/umap/locale/it.js +52 -17
  148. umap/static/umap/locale/it.json +52 -17
  149. umap/static/umap/locale/ja.js +52 -17
  150. umap/static/umap/locale/ja.json +52 -17
  151. umap/static/umap/locale/ko.js +52 -17
  152. umap/static/umap/locale/ko.json +52 -17
  153. umap/static/umap/locale/lt.js +52 -17
  154. umap/static/umap/locale/lt.json +52 -17
  155. umap/static/umap/locale/ms.js +52 -17
  156. umap/static/umap/locale/ms.json +52 -17
  157. umap/static/umap/locale/nl.js +52 -17
  158. umap/static/umap/locale/nl.json +52 -17
  159. umap/static/umap/locale/no.js +52 -17
  160. umap/static/umap/locale/no.json +52 -17
  161. umap/static/umap/locale/pl.js +53 -17
  162. umap/static/umap/locale/pl.json +53 -17
  163. umap/static/umap/locale/pl_PL.json +52 -17
  164. umap/static/umap/locale/pt.js +52 -17
  165. umap/static/umap/locale/pt.json +52 -17
  166. umap/static/umap/locale/pt_BR.js +52 -17
  167. umap/static/umap/locale/pt_BR.json +52 -17
  168. umap/static/umap/locale/pt_PT.js +52 -17
  169. umap/static/umap/locale/pt_PT.json +52 -17
  170. umap/static/umap/locale/ro.js +52 -17
  171. umap/static/umap/locale/ro.json +52 -17
  172. umap/static/umap/locale/ru.js +52 -17
  173. umap/static/umap/locale/ru.json +52 -17
  174. umap/static/umap/locale/si.js +1 -1
  175. umap/static/umap/locale/si.json +1 -1
  176. umap/static/umap/locale/sk_SK.js +52 -17
  177. umap/static/umap/locale/sk_SK.json +52 -17
  178. umap/static/umap/locale/sl.js +52 -17
  179. umap/static/umap/locale/sl.json +52 -17
  180. umap/static/umap/locale/sr.js +52 -17
  181. umap/static/umap/locale/sr.json +52 -17
  182. umap/static/umap/locale/sv.js +52 -17
  183. umap/static/umap/locale/sv.json +52 -17
  184. umap/static/umap/locale/th_TH.js +52 -17
  185. umap/static/umap/locale/th_TH.json +52 -17
  186. umap/static/umap/locale/tr.js +52 -17
  187. umap/static/umap/locale/tr.json +52 -17
  188. umap/static/umap/locale/uk_UA.js +52 -17
  189. umap/static/umap/locale/uk_UA.json +52 -17
  190. umap/static/umap/locale/vi.js +52 -17
  191. umap/static/umap/locale/vi.json +52 -17
  192. umap/static/umap/locale/vi_VN.json +52 -17
  193. umap/static/umap/locale/zh.js +52 -17
  194. umap/static/umap/locale/zh.json +52 -17
  195. umap/static/umap/locale/zh_CN.json +52 -17
  196. umap/static/umap/locale/zh_TW.Big5.json +52 -17
  197. umap/static/umap/locale/zh_TW.js +53 -17
  198. umap/static/umap/locale/zh_TW.json +53 -17
  199. umap/static/umap/map.css +63 -226
  200. umap/static/umap/unittests/utils.js +18 -0
  201. umap/static/umap/vars.css +23 -5
  202. umap/templates/umap/components/alerts/alert.html +32 -29
  203. umap/templates/umap/css.html +2 -1
  204. umap/templates/umap/login_popup_end.html +18 -9
  205. umap/templates/umap/user_map_table.html +7 -2
  206. umap/tests/integration/conftest.py +10 -6
  207. umap/tests/integration/test_anonymous_owned_map.py +90 -37
  208. umap/tests/integration/test_basics.py +25 -1
  209. umap/tests/integration/test_browser.py +37 -0
  210. umap/tests/integration/test_cluster.py +110 -0
  211. umap/tests/integration/test_conditional_rules.py +107 -52
  212. umap/tests/integration/test_datalayer.py +9 -16
  213. umap/tests/integration/test_draw_polygon.py +6 -0
  214. umap/tests/integration/test_draw_polyline.py +11 -0
  215. umap/tests/integration/test_edit_marker.py +12 -1
  216. umap/tests/integration/test_export_map.py +19 -0
  217. umap/tests/integration/test_fields.py +541 -0
  218. umap/tests/integration/test_filters.py +616 -0
  219. umap/tests/integration/test_iframe.py +1 -1
  220. umap/tests/integration/test_import.py +38 -42
  221. umap/tests/integration/test_map_preview.py +1 -1
  222. umap/tests/integration/test_picto.py +1 -1
  223. umap/tests/integration/test_popup.py +31 -0
  224. umap/tests/integration/test_remote_data.py +60 -4
  225. umap/tests/integration/test_save.py +1 -1
  226. umap/tests/integration/test_share.py +4 -4
  227. umap/tests/integration/test_tableeditor.py +31 -7
  228. umap/tests/integration/test_websocket_sync.py +71 -20
  229. umap/tests/test_dashboard.py +11 -1
  230. umap/tests/test_statics.py +2 -2
  231. umap/tests/test_utils.py +19 -2
  232. umap/tests/test_views.py +1 -1
  233. umap/urls.py +1 -0
  234. umap/utils.py +8 -1
  235. umap/views.py +5 -0
  236. {umap_project-3.3.2.dist-info → umap_project-3.4.0.dist-info}/METADATA +15 -15
  237. {umap_project-3.3.2.dist-info → umap_project-3.4.0.dist-info}/RECORD +240 -236
  238. umap/static/umap/js/modules/facets.js +0 -164
  239. umap/tests/integration/test_facets_browser.py +0 -279
  240. {umap_project-3.3.2.dist-info → umap_project-3.4.0.dist-info}/WHEEL +0 -0
  241. {umap_project-3.3.2.dist-info → umap_project-3.4.0.dist-info}/entry_points.txt +0 -0
  242. {umap_project-3.3.2.dist-info → umap_project-3.4.0.dist-info}/licenses/LICENSE +0 -0
@@ -70,7 +70,7 @@
70
70
  "color": "Farbe",
71
71
  "Comma separated list of numbers, including min and max values.": "Kommaseparierte Liste an Zahlen, enthält min und max Werte.",
72
72
  "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.",
73
- "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.",
73
+ "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 beginning of the header, case insensitive. All other column are imported as properties.": "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 beginning of the header, case insensitive. All other column are imported as properties.",
74
74
  "Congratulations, your map has been created!": "Glückwunsch, deine Karte wurde erstellt!",
75
75
  "Continue line": "Linie fortführen",
76
76
  "Coordinates": "Koordinaten",
@@ -159,7 +159,6 @@
159
159
  "Go to \"{coords}\"": "Gehe zu „{coords}“",
160
160
  "Go to the homepage": "Zur Startseite gehen",
161
161
  "Go to «{feature}»": "Zu „{feature}“ wechseln",
162
- "Heatmap intensity property": "Heatmap-Intensität",
163
162
  "Heatmap radius": "Radius der Heatmap",
164
163
  "Heatmap": "Heatmap",
165
164
  "height": "Höhe",
@@ -255,7 +254,6 @@
255
254
  "Open share & download panel": "Teilen & Herunterladen anzeigen",
256
255
  "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.",
257
256
  "OpenStreetMap": "OpenStreetMap",
258
- "Optional intensity property for heatmap": "Optionale Intensitätseigenschaft für die Heatmap",
259
257
  "Optional. Same as color if not set.": "Optional. Gleich wie Farbe, falls nicht ausgefüllt.",
260
258
  "Optional.": "Optional.",
261
259
  "Override clustering radius (default 80)": "Gruppierungsradius überschreiben (Standard: 80)",
@@ -267,7 +265,6 @@
267
265
  "Permanent credits": "Dauerhafte Danksagung",
268
266
  "Please be sure the licence is compliant with your use.": "Stelle bitte sicher, dass die Lizenz mit deiner Verwendung kompatibel ist.",
269
267
  "Please choose a format": "Bitte wähle ein Format",
270
- "Please enter the name of the property": "Bitte gib den Namen des Merkmals ein",
271
268
  "Please save the map first": "Bitte zuerst die Karte speichern",
272
269
  "Popup (large)": "Popup (groß)",
273
270
  "Popup content style": "Popupinhaltstil",
@@ -397,20 +394,16 @@
397
394
  "Max": "Max",
398
395
  "From": "Von",
399
396
  "Until": "Bis",
400
- "Example: key1,key2|Label 2,key3|Label 3|checkbox": "Beispiel: key1,key2|Beschriftung 2,key3|Beschriftung 3|checkbox",
401
397
  "Edit in OpenStreetMap": "Bearbeiten in OpenStreetMap",
402
398
  "Back to layers": "Zurück zu den Kartenebenen",
403
399
  "Filters": "Filter",
404
400
  "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",
405
- "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.",
406
401
  "Search keys": "Suchbegriffe",
407
- "Filters keys": "Filterbegriffe",
408
402
  "Filter data": "Daten filtern",
409
403
  "Search map features…": "Suche auf der Karte...",
410
404
  "Reset all": "Alles zurücksetzen",
411
405
  "Open browser": "Browser öffnen",
412
406
  "Open caption": "Info-Fenster öffnen",
413
- "Your map has been created with an anonymous account!": "Ihre Karte wurde mit einem anonymen Konto erstellt!",
414
407
  "Real-time collaboration": "Echtzeit-Zusammenarbeit",
415
408
  "Cannot parse data": "Daten können nicht geparst werden",
416
409
  "Start typing...": "Beginne mit der Eingabe...",
@@ -466,10 +459,6 @@
466
459
  "Categories": "Kategorien",
467
460
  "Comma separated list of categories.": "Kommagetrennte Liste von Kategorien.",
468
461
  "Categories mode": "Kategoriemodus",
469
- "Remove filter for this column": "Entferne Filter für diese Spalte",
470
- "Add filter for this column": "Füge Filter für diese Spalte hinzu",
471
- "Rename this column": "Spalte umbenennen",
472
- "Delete this column": "Spalte löschen",
473
462
  "Name “{name}” should not contain a dot.": "Der Name \"{name}\" darf keinen Punkt enthalten.",
474
463
  "This name already exists: “{name}”": "Dieser Name existiert bereits: \"{name}\"",
475
464
  "Delete selected rows": "Ausgewählte Zeilen löschen",
@@ -518,8 +507,8 @@
518
507
  "Edit map default view": "Standardansicht der Karte bearbeiten",
519
508
  "Use current center and zoom": "Aktuelle Position und Zoomstufe speichern",
520
509
  "Layer permalink": "Permalink für Ebene",
521
- "Back to home": "Back to home",
522
- "Home logo": "Home logo",
510
+ "Back to home": "Zurück zur Startseite",
511
+ "Home logo": "Logo der Startseite",
523
512
  "Add this geometry to my map": "Add this geometry to my map",
524
513
  "Add this place to my map": "Add this place to my map",
525
514
  "Cancel last edit": "Letzte Bearbeitung abbrechen",
@@ -538,7 +527,7 @@
538
527
  "Cannot save layer, please try again in a few minutes.": "Ebene konnte nicht gespeichert werden. Bitte versuche es in ein paar Minuten erneut.",
539
528
  "Activate collaborative live editing on this map. Other users must reload the map after changing this setting.": "Activate collaborative live editing on this map. Other users must reload the map after changing this setting.",
540
529
  "More help resources": "More help resources",
541
- "This map is a template": "This map is a template",
530
+ "This map is a template": "Die Karte ist eine Vorlage",
542
531
  "Add text along path": "Add text along path",
543
532
  "Text color": "Textfarbe",
544
533
  "Text offset": "Text offset",
@@ -555,65 +544,111 @@
555
544
  "From community": "Von der Community",
556
545
  "You must select a template.": "Du musst eine Vorlage auswählen.",
557
546
  "Line decoration": "Line decoration",
558
- "Reuse this template": "Reuse this template",
547
+ "Reuse this template": "Vorlage wiederverwenden",
559
548
  "Create a new map using this template": "Erstelle eine neue Karte aus dieser Vorlage.",
560
549
  "Save template": "Vorlage speichern",
561
550
  "Load template": "Vorlage laden",
562
- "Loading a template will apply predefined styles and settings to your map": "Loading a template will apply predefined styles and settings to your map",
563
- "Load template with data": "Load template with data",
564
- "You have no registered template yet. You can add one by creating a new map and flagging it as \"template\".": "You have no registered template yet. You can add one by creating a new map and flagging it as \"template\".",
565
- "There is no recommended template yet. Recommended templates are the ones starred by uMap administrators.": "There is no recommended template yet. Recommended templates are the ones starred by uMap administrators.",
566
- "There is no public template yet.": "There is no public template yet.",
567
- "Explore": "Explore",
551
+ "Loading a template will apply predefined styles and settings to your map": "Eine Vorlage zu laden wird die vordefinierten Stiele und Einstellungen auf die Karte anwenden.",
552
+ "Load template with data": "Vorlagen mit Daten laden",
553
+ "You have no registered template yet. You can add one by creating a new map and flagging it as \"template\".": "Du hast noch keine Vorlage eingetragen. Füge eine hinzu, indem du eine neue Karte erstellst und als \"Vorlage\" markierst.",
554
+ "There is no recommended template yet. Recommended templates are the ones starred by uMap administrators.": "Es gibt noch keine empfohlene Vorlage. Empfohlene Vorlagen werden von uMap Adminstratoren markiert.",
555
+ "There is no public template yet.": "Es gibt noch keine öffentliche Vorlage",
556
+ "Explore": "Erkunden",
568
557
  "Import data from public open data portals": "Import data from public open data portals",
569
558
  "Choose a portal": "Choose a portal",
570
- "Limit results to current map view": "Limit results to current map view",
571
- "Please choose an instance first.": "Please choose an instance first.",
559
+ "Limit results to current map view": "Treffer auf aktuelle Ansicht einschränken",
560
+ "Please choose an instance first.": "Bitte zuerst eine Instanz wählen",
572
561
  "No geo column found: must be either `lat(itude)` and `lon(gitude)` or `geom(etry)`.": "No geo column found: must be either `lat(itude)` and `lon(gitude)` or `geom(etry)`.",
573
- "Add a new field": "Add a new field",
574
- "Are you sure you want to delete this field on all the features?": "Are you sure you want to delete this field on all the features?",
575
- "Please enter the new name of this field": "Please enter the new name of this field",
576
- "Cannot process MultiPoint": "Cannot process MultiPoint",
577
- "Manage Fields": "Manage Fields",
578
- "Rename this field": "Rename this field",
579
- "Delete this field": "Delete this field",
580
- "Double click to edit the name": "Double click to edit the name",
581
- "Print map": "Print map",
582
- "Choose a format": "Choose a format",
583
- "Scale map": "Scale map",
584
- "portrait": "portrait",
585
- "landscape": "landscape",
586
- "Print": "Print",
587
- "Preparing the print…": "Preparing the print…",
588
- "Large Circle": "Large Circle",
589
- "Icon size": "Icon size",
590
- "Will only affect raw and large circle icons.": "Will only affect raw and large circle icons.",
591
- "Route": "Route",
592
- "Display the print control": "Display the print control",
562
+ "Add a new field": "Neues Feld hinzufügen",
563
+ "Cannot process MultiPoint": "Multipoint kann nicht verarbeitet werden",
564
+ "Manage Fields": "Felder bearbeiten",
565
+ "Delete this field": "Feld löschen",
566
+ "Double click to edit the name": "Doppel-Klick um den Namen zu ändern",
567
+ "Print map": "Karte drucken",
568
+ "Choose a format": "Format wählen",
569
+ "Scale map": "Karte skalieren",
570
+ "portrait": "Langformat",
571
+ "landscape": "Querformat",
572
+ "Print": "Drucken",
573
+ "Preparing the print…": "Druck vorbereiten...",
574
+ "Large Circle": "Großer Kreis",
575
+ "Icon size": "Icon Größe",
576
+ "Will only affect raw and large circle icons.": "Das wird nur ursprüngliche- und große Kreisicons beinflussen.",
577
+ "Route": "Strecke",
578
+ "Display the print control": "Druckeinstellungen anzeigen",
593
579
  "Compute isochrone from here": "Compute isochrone from here",
594
- "Route settings": "Route settings",
580
+ "Route settings": "Strecken Einstellungen",
595
581
  "Transform to regular line": "Transform to regular line",
596
- "Transform to route": "Transform to route",
597
- "Restore route": "Restore route",
598
- "Compute elevation": "Compute elevation",
599
- "Profile": "Profile",
582
+ "Transform to route": "In Strecke umwandeln",
583
+ "Restore route": "Strecke wiederherstellen",
584
+ "Profile": "Profil",
600
585
  "Compute elevations": "Compute elevations",
601
- "Route preference": "Route preference",
602
- "Compute route": "Compute route",
603
- "Walking": "Walking",
604
- "Hiking": "Hiking",
605
- "By car": "By car",
606
- "Cycling": "Cycling",
607
- "Wheelchair": "Wheelchair",
608
- "Recommended": "Recommended",
609
- "Fastest": "Fastest",
610
- "Shortest": "Shortest",
611
- "Max time (in minutes)": "Max time (in minutes)",
612
- "Number of lines": "Number of lines",
613
- "Distance:": "Distance:",
614
- "Gain:": "Gain:",
615
- "Loss:": "Loss:",
616
- "Altitude:": "Altitude:",
617
- "Right-click to edit": "Right-click to edit",
618
- "Draw along routes": "Draw along routes"
586
+ "Route preference": "Streckenvoreinstellung",
587
+ "Compute route": "Strecke berechnen",
588
+ "Walking": "Gehen",
589
+ "Hiking": "Wandern",
590
+ "By car": "mit Auto",
591
+ "Cycling": "Fahrradfahren",
592
+ "Wheelchair": "Rollstuhl",
593
+ "Recommended": "Empfohlen",
594
+ "Fastest": "Am Schnellsten",
595
+ "Shortest": "Am Kürzesten",
596
+ "Max time (in minutes)": "Maximale Zeit (in Minuten)",
597
+ "Number of lines": "Zeilennummern",
598
+ "Distance:": "Entfernung:",
599
+ "Gain:": "Anstieg:",
600
+ "Loss:": "Abstieg:",
601
+ "Altitude:": "Höhe:",
602
+ "Right-click to edit": "Rechts-Klick zum editieren",
603
+ "Draw along routes": "Draw along routes",
604
+ "Skipping invalid geometry": "Skipping invalid geometry",
605
+ "Add filter": "Add filter",
606
+ "Min/Max": "Min/Max",
607
+ "Multiple choices": "Multiple choices",
608
+ "Exclusive choice": "Exclusive choice",
609
+ "Yes/No": "Yes/No",
610
+ "Add a field prior to create a filter.": "Add a field prior to create a filter.",
611
+ "Edit this filter": "Edit this filter",
612
+ "Remove this filter": "Remove this filter",
613
+ "Apply filter to": "Apply filter to",
614
+ "Filter on": "Filter on",
615
+ "Human readable name of the filter": "Human readable name of the filter",
616
+ "Widget for the filter": "Widget for the filter",
617
+ "Edit filter": "Edit filter",
618
+ "Edit this field": "Edit this field",
619
+ "all layers": "all layers",
620
+ "single layer": "single layer",
621
+ "unset": "unset",
622
+ "Filters will be displayed in the data browser to ease data selection.": "Filters will be displayed in the data browser to ease data selection.",
623
+ "[key=\"value\"][key2=\"value2\"] (eg. [boundary=\"educational\"][name=\"Académie de Lyon\"])": "[key=\"value\"][key2=\"value2\"] (eg. [boundary=\"educational\"][name=\"Académie de Lyon\"])",
624
+ "Field Name": "Field Name",
625
+ "Field Type": "Field Type",
626
+ "Manage field": "Manage field",
627
+ "Add filter for this field": "Add filter for this field",
628
+ "Name cannot be empty.": "Name cannot be empty.",
629
+ "Are you sure you want to delete this field on all the data?": "Are you sure you want to delete this field on all the data?",
630
+ "Anonymous map": "Anonymous map",
631
+ "Edit filter for this field": "Edit filter for this field",
632
+ "Hey, you created a map without an account!": "Hey, you created a map without an account!",
633
+ "This map is anonymous, do you want to attach it to your account?": "This map is anonymous, do you want to attach it to your account?",
634
+ "The map has been upgraded to latest version, please save it.": "The map has been upgraded to latest version, please save it.",
635
+ "Elevation has been added!": "Elevation has been added!",
636
+ "Mapillary": "Mapillary",
637
+ "Wikidata": "Wikidata",
638
+ "Wikipedia contributors": "Wikipedia contributors",
639
+ "See on Wikipedia": "See on Wikipedia",
640
+ "Anonymous map: update who can see and edit it": "Anonymous map: update who can see and edit it",
641
+ "Login": "Login",
642
+ "Manage filters": "Manage filters",
643
+ "Map (all layers)": "Map (all layers)",
644
+ "Add a filter for this field": "Add a filter for this field",
645
+ "Short text": "Short text",
646
+ "Text": "Text",
647
+ "Number": "Number",
648
+ "Date": "Date",
649
+ "Date and time": "Date and time",
650
+ "List of values": "List of values",
651
+ "Yes / No": "Yes / No",
652
+ "Select field to compute intensity": "Select field to compute intensity",
653
+ "Optional intensity field to compute heatmap": "Optional intensity field to compute heatmap"
619
654
  }
@@ -70,7 +70,7 @@ const locale = {
70
70
  "color": "Χρώμα",
71
71
  "Comma separated list of numbers, including min and max values.": "Λίστα αριθμών διαχωρισμένη με κόμμα, συμπεριλαμβανομένων των ελάχιστων και μέγιστων τιμών.",
72
72
  "Comma separated list of properties to use for sorting features. To reverse the sort, put a minus sign (-) before. Eg. mykey,-otherkey.": "Comma separated list of properties to use for sorting features. To reverse the sort, put a minus sign (-) before. Eg. mykey,-otherkey.",
73
- "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.": "Τιμές διαχωρισμένες με κόμμα, tab ή άνω τελεία. Εννοείται και η μορφή SRS WGS84. Εισάγονται μόνο γεωμετρίες σημείων. Η διαδικασία εισαγωγής ελέγχει τις επικεφαλίδες των στηλών για τις ενδείξεις «lat» και «lon» στην αρχή της επικεφαλίδας και κάνει διάκριση πεζών - κεφαλαίων γραμμάτων. Όλες οι άλλες στήλες εισάγονται ως ιδιότητες.",
73
+ "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 beginning of the header, case insensitive. All other column are imported as properties.": "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 beginning of the header, case insensitive. All other column are imported as properties.",
74
74
  "Congratulations, your map has been created!": "Συγχαρητήρια, ο χάρτης σας δημιουργήθηκε!",
75
75
  "Continue line": "Συνέχεια γραμμής",
76
76
  "Coordinates": "Συντεταγμένες",
@@ -159,7 +159,6 @@ const locale = {
159
159
  "Go to \"{coords}\"": "Πήγαινε στις \"{coords}\"",
160
160
  "Go to the homepage": "Μετάβαση στην αρχική σελίδα",
161
161
  "Go to «{feature}»": "Μετάβαση στο «{feature}»",
162
- "Heatmap intensity property": "Ένταση του χάρτη εγγύτητας",
163
162
  "Heatmap radius": "Ακτίνα του χάρτη εγγύτητας",
164
163
  "Heatmap": "Χάρτης θερμότητας",
165
164
  "height": "Ύψος",
@@ -255,7 +254,6 @@ const locale = {
255
254
  "Open share & download panel": "Άνοιγμα πλαισίου διαμοιρασμού και λήψης",
256
255
  "Open this map extent in a map editor to provide more accurate data to OpenStreetMap": "Ανοίξτε τον χάρτη σε έναν επεξεργαστή χαρτών για να παρέχετε πιο ακριβή δεδομένα στο OpenStreetMap",
257
256
  "OpenStreetMap": "OpenStreetMap",
258
- "Optional intensity property for heatmap": "Προαιρετική ιδιότητα έντασης για τον χάρτη εγγύτητας",
259
257
  "Optional. Same as color if not set.": "Προαιρετικό. Ίδιο με το χρώμα αν δεν οριστεί.",
260
258
  "Optional.": "Προαιρετικό",
261
259
  "Override clustering radius (default 80)": "Παράκαμψη ακτίνας συμπλέγματος (προεπιλογή 80)",
@@ -267,7 +265,6 @@ const locale = {
267
265
  "Permanent credits": "Μόνιμα εύσημα",
268
266
  "Please be sure the licence is compliant with your use.": "Παρακαλώ βεβαιωθείτε ότι η άδεια είναι σύμφωνη με την χρήση σας",
269
267
  "Please choose a format": "Παρακαλώ επιλέξτε μια μορφοποίηση",
270
- "Please enter the name of the property": "Παρακαλώ εισαγάγετε το όνομα της ιδιότητας",
271
268
  "Please save the map first": "Παρακαλώ αποθηκεύστε τον χάρτη πρώτα",
272
269
  "Popup (large)": "Αναδυόμενο (μεγάλο)",
273
270
  "Popup content style": "Στυλ περιεχομένου αναδυόμενου",
@@ -397,20 +394,16 @@ const locale = {
397
394
  "Max": "Μέγιστο",
398
395
  "From": "Από",
399
396
  "Until": "Μέχρι",
400
- "Example: key1,key2|Label 2,key3|Label 3|checkbox": "Παράδειγμα: key1,key2|Label 2,key3|Label 3|checkbox",
401
397
  "Edit in OpenStreetMap": "Επεξεργασία στο OpenStreetMap",
402
398
  "Back to layers": "Πίσω στις στρώσεις",
403
399
  "Filters": "Φίλτρα",
404
400
  "Comma separated list of properties to use when filtering features by text input": "Λίστα ιδιοτήτων διαχωρισμένων με κόμμα, που θα χρησιμοποιηθούν κατά το φιλτράρισμα χαρακτηριστικών με εισαγωγή κειμένου.",
405
- "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.": "Λίστα ιδιοτήτων διαχωρισμένων με κόμμα, που θα χρησιμοποιηθούν για τα φίλτρα (π.χ.: mykey,otherkey). Για να ελέγξετε την ετικέτα, προσθέστε την μετά από ένα | (π.χ.: mykey|My Key,otherkey|Other Key). Για να ελέγξετε τον τύπο του πεδίου εισόδου, προσθέστε το μετά από ένα άλλο | (π.χ.: mykey|My Key|checkbox,otherkey|Other Key|datetime). Οι επιτρεπόμενες τιμές για τον τύπο πεδίου εισόδου είναι checkbox (προεπιλογή), radio, number, date και datetime.",
406
401
  "Search keys": "Αναζήτηση κλειδιών",
407
- "Filters keys": "Πλήκτρα φίλτρων",
408
402
  "Filter data": "Δεδομένα φίλτρου",
409
403
  "Search map features…": "Χαρακτηριστικά αναζήτησης του χάρτη...",
410
404
  "Reset all": "Επαναφορά όλων",
411
405
  "Open browser": "Άνοιγμα προγράμματος περιήγησης",
412
406
  "Open caption": "Άνοιγμα λεζάντας",
413
- "Your map has been created with an anonymous account!": "Ο χάρτης σας δημιουργήθηκε με ανώνυμο λογαριασμό!",
414
407
  "Real-time collaboration": "Συνεργασία σε πραγματικό χρόνο",
415
408
  "Cannot parse data": "Δεν είναι δυνατή η ανάλυση δεδομένων",
416
409
  "Start typing...": "Έναρξη πληκτρολόγησης...",
@@ -466,10 +459,6 @@ const locale = {
466
459
  "Categories": "Κατηγορίες",
467
460
  "Comma separated list of categories.": "Λίστα κατηγοριών χωρισμένες με κόμμα.",
468
461
  "Categories mode": "Λειτουργία κατηγοριών",
469
- "Remove filter for this column": "Αφαίρεση φίλτρου από αυτή τη στήλη",
470
- "Add filter for this column": "Προσθήκη φίλτρου από αυτή τη στήλη",
471
- "Rename this column": "Μετονομασία αυτής της στήλης",
472
- "Delete this column": "Διαγραφή αυτής της στήλης",
473
462
  "Name “{name}” should not contain a dot.": "Το όνομα \"{name}\" δεν πρέπει να περιέχει τελεία.",
474
463
  "This name already exists: “{name}”": "Αυτό το όνομα υπάρχει ήδη: \"{name}\"",
475
464
  "Delete selected rows": "Διαγραφή επιλεγμένων γραμμών",
@@ -571,11 +560,8 @@ const locale = {
571
560
  "Please choose an instance first.": "Παρακαλώ επιλέξτε πρώτα μια περίπτωση.",
572
561
  "No geo column found: must be either `lat(itude)` and `lon(gitude)` or `geom(etry)`.": "Δεν βρέθηκε στήλη γεωγραφικών συντεταγμένων: πρέπει να είναι είτε `lat(itude)` και `lon(gitude)` είτε `geom(etry)`.",
573
562
  "Add a new field": "Προσθήκη νέου πεδίου",
574
- "Are you sure you want to delete this field on all the features?": "Είστε σίγουροι ότι θέλετε να διαγράψετε αυτό το πεδίο από όλα τα χαρακτηριστικά;",
575
- "Please enter the new name of this field": "Παρακαλώ εισάγετε το νέο όνομα αυτού του πεδίου.",
576
563
  "Cannot process MultiPoint": "Δεν είναι δυνατή η επεξεργασία MultiPoint.",
577
564
  "Manage Fields": "Διαχείριση πεδίων",
578
- "Rename this field": "Μετονομασία πεδίου",
579
565
  "Delete this field": "Διαγραφή πεδίου",
580
566
  "Double click to edit the name": "Διπλό κλικ για επεξεργασία του ονόματος",
581
567
  "Print map": "Εκτύπωση χάρτη",
@@ -595,7 +581,6 @@ const locale = {
595
581
  "Transform to regular line": "Μετατροπή σε κανονική γραμμή",
596
582
  "Transform to route": "Μετατροπή σε διαδρομή",
597
583
  "Restore route": "Επαναφορά διαδρομής",
598
- "Compute elevation": "Υπολογισμός υψομέτρου",
599
584
  "Profile": "Προφίλ",
600
585
  "Compute elevations": "Υπολογισμός υψομέτρων",
601
586
  "Route preference": "Προτίμηση διαδρομής",
@@ -615,7 +600,57 @@ const locale = {
615
600
  "Loss:": "Απώλεια:",
616
601
  "Altitude:": "Υψόμετρο:",
617
602
  "Right-click to edit": "Δεξί κλικ για επεξεργασία",
618
- "Draw along routes": "Σχεδιάστε κατά μήκος διαδρομών"
603
+ "Draw along routes": "Σχεδιάστε κατά μήκος διαδρομών",
604
+ "Skipping invalid geometry": "Skipping invalid geometry",
605
+ "Add filter": "Add filter",
606
+ "Min/Max": "Min/Max",
607
+ "Multiple choices": "Multiple choices",
608
+ "Exclusive choice": "Exclusive choice",
609
+ "Yes/No": "Yes/No",
610
+ "Add a field prior to create a filter.": "Add a field prior to create a filter.",
611
+ "Edit this filter": "Edit this filter",
612
+ "Remove this filter": "Remove this filter",
613
+ "Apply filter to": "Apply filter to",
614
+ "Filter on": "Filter on",
615
+ "Human readable name of the filter": "Human readable name of the filter",
616
+ "Widget for the filter": "Widget for the filter",
617
+ "Edit filter": "Edit filter",
618
+ "Edit this field": "Edit this field",
619
+ "all layers": "all layers",
620
+ "single layer": "single layer",
621
+ "unset": "unset",
622
+ "Filters will be displayed in the data browser to ease data selection.": "Filters will be displayed in the data browser to ease data selection.",
623
+ "[key=\"value\"][key2=\"value2\"] (eg. [boundary=\"educational\"][name=\"Académie de Lyon\"])": "[key=\"value\"][key2=\"value2\"] (eg. [boundary=\"educational\"][name=\"Académie de Lyon\"])",
624
+ "Field Name": "Field Name",
625
+ "Field Type": "Field Type",
626
+ "Manage field": "Manage field",
627
+ "Add filter for this field": "Add filter for this field",
628
+ "Name cannot be empty.": "Name cannot be empty.",
629
+ "Are you sure you want to delete this field on all the data?": "Are you sure you want to delete this field on all the data?",
630
+ "Anonymous map": "Anonymous map",
631
+ "Edit filter for this field": "Edit filter for this field",
632
+ "Hey, you created a map without an account!": "Hey, you created a map without an account!",
633
+ "This map is anonymous, do you want to attach it to your account?": "This map is anonymous, do you want to attach it to your account?",
634
+ "The map has been upgraded to latest version, please save it.": "The map has been upgraded to latest version, please save it.",
635
+ "Elevation has been added!": "Elevation has been added!",
636
+ "Mapillary": "Mapillary",
637
+ "Wikidata": "Wikidata",
638
+ "Wikipedia contributors": "Wikipedia contributors",
639
+ "See on Wikipedia": "See on Wikipedia",
640
+ "Anonymous map: update who can see and edit it": "Anonymous map: update who can see and edit it",
641
+ "Login": "Login",
642
+ "Manage filters": "Manage filters",
643
+ "Map (all layers)": "Map (all layers)",
644
+ "Add a filter for this field": "Add a filter for this field",
645
+ "Short text": "Short text",
646
+ "Text": "Text",
647
+ "Number": "Number",
648
+ "Date": "Date",
649
+ "Date and time": "Date and time",
650
+ "List of values": "List of values",
651
+ "Yes / No": "Yes / No",
652
+ "Select field to compute intensity": "Select field to compute intensity",
653
+ "Optional intensity field to compute heatmap": "Optional intensity field to compute heatmap"
619
654
  }
620
655
  L.registerLocale("el", locale)
621
656
  L.setLocale("el")
@@ -70,7 +70,7 @@
70
70
  "color": "Χρώμα",
71
71
  "Comma separated list of numbers, including min and max values.": "Λίστα αριθμών διαχωρισμένη με κόμμα, συμπεριλαμβανομένων των ελάχιστων και μέγιστων τιμών.",
72
72
  "Comma separated list of properties to use for sorting features. To reverse the sort, put a minus sign (-) before. Eg. mykey,-otherkey.": "Comma separated list of properties to use for sorting features. To reverse the sort, put a minus sign (-) before. Eg. mykey,-otherkey.",
73
- "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.": "Τιμές διαχωρισμένες με κόμμα, tab ή άνω τελεία. Εννοείται και η μορφή SRS WGS84. Εισάγονται μόνο γεωμετρίες σημείων. Η διαδικασία εισαγωγής ελέγχει τις επικεφαλίδες των στηλών για τις ενδείξεις «lat» και «lon» στην αρχή της επικεφαλίδας και κάνει διάκριση πεζών - κεφαλαίων γραμμάτων. Όλες οι άλλες στήλες εισάγονται ως ιδιότητες.",
73
+ "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 beginning of the header, case insensitive. All other column are imported as properties.": "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 beginning of the header, case insensitive. All other column are imported as properties.",
74
74
  "Congratulations, your map has been created!": "Συγχαρητήρια, ο χάρτης σας δημιουργήθηκε!",
75
75
  "Continue line": "Συνέχεια γραμμής",
76
76
  "Coordinates": "Συντεταγμένες",
@@ -159,7 +159,6 @@
159
159
  "Go to \"{coords}\"": "Πήγαινε στις \"{coords}\"",
160
160
  "Go to the homepage": "Μετάβαση στην αρχική σελίδα",
161
161
  "Go to «{feature}»": "Μετάβαση στο «{feature}»",
162
- "Heatmap intensity property": "Ένταση του χάρτη εγγύτητας",
163
162
  "Heatmap radius": "Ακτίνα του χάρτη εγγύτητας",
164
163
  "Heatmap": "Χάρτης θερμότητας",
165
164
  "height": "Ύψος",
@@ -255,7 +254,6 @@
255
254
  "Open share & download panel": "Άνοιγμα πλαισίου διαμοιρασμού και λήψης",
256
255
  "Open this map extent in a map editor to provide more accurate data to OpenStreetMap": "Ανοίξτε τον χάρτη σε έναν επεξεργαστή χαρτών για να παρέχετε πιο ακριβή δεδομένα στο OpenStreetMap",
257
256
  "OpenStreetMap": "OpenStreetMap",
258
- "Optional intensity property for heatmap": "Προαιρετική ιδιότητα έντασης για τον χάρτη εγγύτητας",
259
257
  "Optional. Same as color if not set.": "Προαιρετικό. Ίδιο με το χρώμα αν δεν οριστεί.",
260
258
  "Optional.": "Προαιρετικό",
261
259
  "Override clustering radius (default 80)": "Παράκαμψη ακτίνας συμπλέγματος (προεπιλογή 80)",
@@ -267,7 +265,6 @@
267
265
  "Permanent credits": "Μόνιμα εύσημα",
268
266
  "Please be sure the licence is compliant with your use.": "Παρακαλώ βεβαιωθείτε ότι η άδεια είναι σύμφωνη με την χρήση σας",
269
267
  "Please choose a format": "Παρακαλώ επιλέξτε μια μορφοποίηση",
270
- "Please enter the name of the property": "Παρακαλώ εισαγάγετε το όνομα της ιδιότητας",
271
268
  "Please save the map first": "Παρακαλώ αποθηκεύστε τον χάρτη πρώτα",
272
269
  "Popup (large)": "Αναδυόμενο (μεγάλο)",
273
270
  "Popup content style": "Στυλ περιεχομένου αναδυόμενου",
@@ -397,20 +394,16 @@
397
394
  "Max": "Μέγιστο",
398
395
  "From": "Από",
399
396
  "Until": "Μέχρι",
400
- "Example: key1,key2|Label 2,key3|Label 3|checkbox": "Παράδειγμα: key1,key2|Label 2,key3|Label 3|checkbox",
401
397
  "Edit in OpenStreetMap": "Επεξεργασία στο OpenStreetMap",
402
398
  "Back to layers": "Πίσω στις στρώσεις",
403
399
  "Filters": "Φίλτρα",
404
400
  "Comma separated list of properties to use when filtering features by text input": "Λίστα ιδιοτήτων διαχωρισμένων με κόμμα, που θα χρησιμοποιηθούν κατά το φιλτράρισμα χαρακτηριστικών με εισαγωγή κειμένου.",
405
- "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.": "Λίστα ιδιοτήτων διαχωρισμένων με κόμμα, που θα χρησιμοποιηθούν για τα φίλτρα (π.χ.: mykey,otherkey). Για να ελέγξετε την ετικέτα, προσθέστε την μετά από ένα | (π.χ.: mykey|My Key,otherkey|Other Key). Για να ελέγξετε τον τύπο του πεδίου εισόδου, προσθέστε το μετά από ένα άλλο | (π.χ.: mykey|My Key|checkbox,otherkey|Other Key|datetime). Οι επιτρεπόμενες τιμές για τον τύπο πεδίου εισόδου είναι checkbox (προεπιλογή), radio, number, date και datetime.",
406
401
  "Search keys": "Αναζήτηση κλειδιών",
407
- "Filters keys": "Πλήκτρα φίλτρων",
408
402
  "Filter data": "Δεδομένα φίλτρου",
409
403
  "Search map features…": "Χαρακτηριστικά αναζήτησης του χάρτη...",
410
404
  "Reset all": "Επαναφορά όλων",
411
405
  "Open browser": "Άνοιγμα προγράμματος περιήγησης",
412
406
  "Open caption": "Άνοιγμα λεζάντας",
413
- "Your map has been created with an anonymous account!": "Ο χάρτης σας δημιουργήθηκε με ανώνυμο λογαριασμό!",
414
407
  "Real-time collaboration": "Συνεργασία σε πραγματικό χρόνο",
415
408
  "Cannot parse data": "Δεν είναι δυνατή η ανάλυση δεδομένων",
416
409
  "Start typing...": "Έναρξη πληκτρολόγησης...",
@@ -466,10 +459,6 @@
466
459
  "Categories": "Κατηγορίες",
467
460
  "Comma separated list of categories.": "Λίστα κατηγοριών χωρισμένες με κόμμα.",
468
461
  "Categories mode": "Λειτουργία κατηγοριών",
469
- "Remove filter for this column": "Αφαίρεση φίλτρου από αυτή τη στήλη",
470
- "Add filter for this column": "Προσθήκη φίλτρου από αυτή τη στήλη",
471
- "Rename this column": "Μετονομασία αυτής της στήλης",
472
- "Delete this column": "Διαγραφή αυτής της στήλης",
473
462
  "Name “{name}” should not contain a dot.": "Το όνομα \"{name}\" δεν πρέπει να περιέχει τελεία.",
474
463
  "This name already exists: “{name}”": "Αυτό το όνομα υπάρχει ήδη: \"{name}\"",
475
464
  "Delete selected rows": "Διαγραφή επιλεγμένων γραμμών",
@@ -571,11 +560,8 @@
571
560
  "Please choose an instance first.": "Παρακαλώ επιλέξτε πρώτα μια περίπτωση.",
572
561
  "No geo column found: must be either `lat(itude)` and `lon(gitude)` or `geom(etry)`.": "Δεν βρέθηκε στήλη γεωγραφικών συντεταγμένων: πρέπει να είναι είτε `lat(itude)` και `lon(gitude)` είτε `geom(etry)`.",
573
562
  "Add a new field": "Προσθήκη νέου πεδίου",
574
- "Are you sure you want to delete this field on all the features?": "Είστε σίγουροι ότι θέλετε να διαγράψετε αυτό το πεδίο από όλα τα χαρακτηριστικά;",
575
- "Please enter the new name of this field": "Παρακαλώ εισάγετε το νέο όνομα αυτού του πεδίου.",
576
563
  "Cannot process MultiPoint": "Δεν είναι δυνατή η επεξεργασία MultiPoint.",
577
564
  "Manage Fields": "Διαχείριση πεδίων",
578
- "Rename this field": "Μετονομασία πεδίου",
579
565
  "Delete this field": "Διαγραφή πεδίου",
580
566
  "Double click to edit the name": "Διπλό κλικ για επεξεργασία του ονόματος",
581
567
  "Print map": "Εκτύπωση χάρτη",
@@ -595,7 +581,6 @@
595
581
  "Transform to regular line": "Μετατροπή σε κανονική γραμμή",
596
582
  "Transform to route": "Μετατροπή σε διαδρομή",
597
583
  "Restore route": "Επαναφορά διαδρομής",
598
- "Compute elevation": "Υπολογισμός υψομέτρου",
599
584
  "Profile": "Προφίλ",
600
585
  "Compute elevations": "Υπολογισμός υψομέτρων",
601
586
  "Route preference": "Προτίμηση διαδρομής",
@@ -615,5 +600,55 @@
615
600
  "Loss:": "Απώλεια:",
616
601
  "Altitude:": "Υψόμετρο:",
617
602
  "Right-click to edit": "Δεξί κλικ για επεξεργασία",
618
- "Draw along routes": "Σχεδιάστε κατά μήκος διαδρομών"
603
+ "Draw along routes": "Σχεδιάστε κατά μήκος διαδρομών",
604
+ "Skipping invalid geometry": "Skipping invalid geometry",
605
+ "Add filter": "Add filter",
606
+ "Min/Max": "Min/Max",
607
+ "Multiple choices": "Multiple choices",
608
+ "Exclusive choice": "Exclusive choice",
609
+ "Yes/No": "Yes/No",
610
+ "Add a field prior to create a filter.": "Add a field prior to create a filter.",
611
+ "Edit this filter": "Edit this filter",
612
+ "Remove this filter": "Remove this filter",
613
+ "Apply filter to": "Apply filter to",
614
+ "Filter on": "Filter on",
615
+ "Human readable name of the filter": "Human readable name of the filter",
616
+ "Widget for the filter": "Widget for the filter",
617
+ "Edit filter": "Edit filter",
618
+ "Edit this field": "Edit this field",
619
+ "all layers": "all layers",
620
+ "single layer": "single layer",
621
+ "unset": "unset",
622
+ "Filters will be displayed in the data browser to ease data selection.": "Filters will be displayed in the data browser to ease data selection.",
623
+ "[key=\"value\"][key2=\"value2\"] (eg. [boundary=\"educational\"][name=\"Académie de Lyon\"])": "[key=\"value\"][key2=\"value2\"] (eg. [boundary=\"educational\"][name=\"Académie de Lyon\"])",
624
+ "Field Name": "Field Name",
625
+ "Field Type": "Field Type",
626
+ "Manage field": "Manage field",
627
+ "Add filter for this field": "Add filter for this field",
628
+ "Name cannot be empty.": "Name cannot be empty.",
629
+ "Are you sure you want to delete this field on all the data?": "Are you sure you want to delete this field on all the data?",
630
+ "Anonymous map": "Anonymous map",
631
+ "Edit filter for this field": "Edit filter for this field",
632
+ "Hey, you created a map without an account!": "Hey, you created a map without an account!",
633
+ "This map is anonymous, do you want to attach it to your account?": "This map is anonymous, do you want to attach it to your account?",
634
+ "The map has been upgraded to latest version, please save it.": "The map has been upgraded to latest version, please save it.",
635
+ "Elevation has been added!": "Elevation has been added!",
636
+ "Mapillary": "Mapillary",
637
+ "Wikidata": "Wikidata",
638
+ "Wikipedia contributors": "Wikipedia contributors",
639
+ "See on Wikipedia": "See on Wikipedia",
640
+ "Anonymous map: update who can see and edit it": "Anonymous map: update who can see and edit it",
641
+ "Login": "Login",
642
+ "Manage filters": "Manage filters",
643
+ "Map (all layers)": "Map (all layers)",
644
+ "Add a filter for this field": "Add a filter for this field",
645
+ "Short text": "Short text",
646
+ "Text": "Text",
647
+ "Number": "Number",
648
+ "Date": "Date",
649
+ "Date and time": "Date and time",
650
+ "List of values": "List of values",
651
+ "Yes / No": "Yes / No",
652
+ "Select field to compute intensity": "Select field to compute intensity",
653
+ "Optional intensity field to compute heatmap": "Optional intensity field to compute heatmap"
619
654
  }