umap-project 1.14.0a1__py3-none-any.whl → 1.14.0a2__py3-none-any.whl

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

Potentially problematic release.


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

Files changed (182) hide show
  1. umap/__init__.py +1 -1
  2. umap/static/.gitignore +0 -0
  3. umap/static/umap/base.css +994 -0
  4. umap/static/umap/bitbucket.png +0 -0
  5. umap/static/umap/content.css +395 -0
  6. umap/static/umap/favicons/apple-touch-icon.png +0 -0
  7. umap/static/umap/favicons/favicon.ico +0 -0
  8. umap/static/umap/favicons/icon-192.png +0 -0
  9. umap/static/umap/favicons/icon-512.png +0 -0
  10. umap/static/umap/favicons/icon.svg +5 -0
  11. umap/static/umap/font/FiraSans-Light.woff +0 -0
  12. umap/static/umap/font/FiraSans-Light.woff2 +0 -0
  13. umap/static/umap/font/FiraSans-LightItalic.woff +0 -0
  14. umap/static/umap/font/FiraSans-LightItalic.woff2 +0 -0
  15. umap/static/umap/font/FiraSans-SemiBold.woff +0 -0
  16. umap/static/umap/font/FiraSans-SemiBold.woff2 +0 -0
  17. umap/static/umap/font.css +33 -0
  18. umap/static/umap/github.png +0 -0
  19. umap/static/umap/img/16-white.svg +190 -0
  20. umap/static/umap/img/16.svg +182 -0
  21. umap/static/umap/img/24-white.svg +62 -0
  22. umap/static/umap/img/24.svg +90 -0
  23. umap/static/umap/img/edit.svg +7 -0
  24. umap/static/umap/img/icon-bg.png +0 -0
  25. umap/static/umap/img/logo.svg +4 -0
  26. umap/static/umap/img/logo_filigree.png +0 -0
  27. umap/static/umap/img/logo_small.svg +14 -0
  28. umap/static/umap/img/marker.png +0 -0
  29. umap/static/umap/img/opensource.svg +7 -0
  30. umap/static/umap/img/osm.svg +7 -0
  31. umap/static/umap/img/search.gif +0 -0
  32. umap/static/umap/img/source/16-white.svg +980 -0
  33. umap/static/umap/img/source/16.svg +201 -0
  34. umap/static/umap/img/source/24-white.svg +83 -0
  35. umap/static/umap/img/source/24.svg +110 -0
  36. umap/static/umap/js/components/fragment.js +13 -0
  37. umap/static/umap/js/modules/global.js +8 -0
  38. umap/static/umap/js/modules/urls.js +29 -0
  39. umap/static/umap/js/umap.autocomplete.js +336 -0
  40. umap/static/umap/js/umap.browser.js +148 -0
  41. umap/static/umap/js/umap.controls.js +1542 -0
  42. umap/static/umap/js/umap.core.js +851 -0
  43. umap/static/umap/js/umap.datalayer.permissions.js +72 -0
  44. umap/static/umap/js/umap.features.js +1216 -0
  45. umap/static/umap/js/umap.forms.js +1267 -0
  46. umap/static/umap/js/umap.icon.js +234 -0
  47. umap/static/umap/js/umap.importer.js +166 -0
  48. umap/static/umap/js/umap.js +2010 -0
  49. umap/static/umap/js/umap.layer.js +1636 -0
  50. umap/static/umap/js/umap.permissions.js +212 -0
  51. umap/static/umap/js/umap.popup.js +340 -0
  52. umap/static/umap/js/umap.share.js +254 -0
  53. umap/static/umap/js/umap.slideshow.js +165 -0
  54. umap/static/umap/js/umap.tableeditor.js +120 -0
  55. umap/static/umap/js/umap.ui.js +240 -0
  56. umap/static/umap/js/umap.xhr.js +304 -0
  57. umap/static/umap/locale/am_ET.js +447 -0
  58. umap/static/umap/locale/am_ET.json +445 -0
  59. umap/static/umap/locale/ar.js +447 -0
  60. umap/static/umap/locale/ar.json +445 -0
  61. umap/static/umap/locale/ast.js +447 -0
  62. umap/static/umap/locale/ast.json +445 -0
  63. umap/static/umap/locale/bg.js +447 -0
  64. umap/static/umap/locale/bg.json +445 -0
  65. umap/static/umap/locale/br.js +447 -0
  66. umap/static/umap/locale/br.json +445 -0
  67. umap/static/umap/locale/ca.js +447 -0
  68. umap/static/umap/locale/ca.json +445 -0
  69. umap/static/umap/locale/cs_CZ.js +447 -0
  70. umap/static/umap/locale/cs_CZ.json +445 -0
  71. umap/static/umap/locale/da.js +447 -0
  72. umap/static/umap/locale/da.json +445 -0
  73. umap/static/umap/locale/de.js +447 -0
  74. umap/static/umap/locale/de.json +445 -0
  75. umap/static/umap/locale/el.js +447 -0
  76. umap/static/umap/locale/el.json +445 -0
  77. umap/static/umap/locale/en.js +447 -0
  78. umap/static/umap/locale/en.json +445 -0
  79. umap/static/umap/locale/en_US.json +445 -0
  80. umap/static/umap/locale/es.js +447 -0
  81. umap/static/umap/locale/es.json +445 -0
  82. umap/static/umap/locale/et.js +447 -0
  83. umap/static/umap/locale/et.json +445 -0
  84. umap/static/umap/locale/eu.js +413 -0
  85. umap/static/umap/locale/eu.json +411 -0
  86. umap/static/umap/locale/fa_IR.js +447 -0
  87. umap/static/umap/locale/fa_IR.json +445 -0
  88. umap/static/umap/locale/fi.js +447 -0
  89. umap/static/umap/locale/fi.json +445 -0
  90. umap/static/umap/locale/fr.js +447 -0
  91. umap/static/umap/locale/fr.json +445 -0
  92. umap/static/umap/locale/gl.js +447 -0
  93. umap/static/umap/locale/gl.json +445 -0
  94. umap/static/umap/locale/he.js +447 -0
  95. umap/static/umap/locale/he.json +445 -0
  96. umap/static/umap/locale/hr.js +447 -0
  97. umap/static/umap/locale/hr.json +445 -0
  98. umap/static/umap/locale/hu.js +447 -0
  99. umap/static/umap/locale/hu.json +445 -0
  100. umap/static/umap/locale/id.js +447 -0
  101. umap/static/umap/locale/id.json +445 -0
  102. umap/static/umap/locale/is.js +447 -0
  103. umap/static/umap/locale/is.json +445 -0
  104. umap/static/umap/locale/it.js +447 -0
  105. umap/static/umap/locale/it.json +445 -0
  106. umap/static/umap/locale/ja.js +447 -0
  107. umap/static/umap/locale/ja.json +445 -0
  108. umap/static/umap/locale/ko.js +447 -0
  109. umap/static/umap/locale/ko.json +445 -0
  110. umap/static/umap/locale/lt.js +447 -0
  111. umap/static/umap/locale/lt.json +445 -0
  112. umap/static/umap/locale/ms.js +447 -0
  113. umap/static/umap/locale/ms.json +445 -0
  114. umap/static/umap/locale/nl.js +447 -0
  115. umap/static/umap/locale/nl.json +445 -0
  116. umap/static/umap/locale/no.js +447 -0
  117. umap/static/umap/locale/no.json +445 -0
  118. umap/static/umap/locale/pl.js +447 -0
  119. umap/static/umap/locale/pl.json +445 -0
  120. umap/static/umap/locale/pl_PL.json +445 -0
  121. umap/static/umap/locale/pt.js +447 -0
  122. umap/static/umap/locale/pt.json +445 -0
  123. umap/static/umap/locale/pt_BR.js +447 -0
  124. umap/static/umap/locale/pt_BR.json +445 -0
  125. umap/static/umap/locale/pt_PT.js +447 -0
  126. umap/static/umap/locale/pt_PT.json +445 -0
  127. umap/static/umap/locale/ro.js +447 -0
  128. umap/static/umap/locale/ro.json +445 -0
  129. umap/static/umap/locale/ru.js +447 -0
  130. umap/static/umap/locale/ru.json +445 -0
  131. umap/static/umap/locale/si.js +439 -0
  132. umap/static/umap/locale/si.json +437 -0
  133. umap/static/umap/locale/sk_SK.js +447 -0
  134. umap/static/umap/locale/sk_SK.json +445 -0
  135. umap/static/umap/locale/sl.js +447 -0
  136. umap/static/umap/locale/sl.json +445 -0
  137. umap/static/umap/locale/sr.js +447 -0
  138. umap/static/umap/locale/sr.json +445 -0
  139. umap/static/umap/locale/sv.js +447 -0
  140. umap/static/umap/locale/sv.json +445 -0
  141. umap/static/umap/locale/th_TH.js +447 -0
  142. umap/static/umap/locale/th_TH.json +445 -0
  143. umap/static/umap/locale/tr.js +447 -0
  144. umap/static/umap/locale/tr.json +445 -0
  145. umap/static/umap/locale/uk_UA.js +447 -0
  146. umap/static/umap/locale/uk_UA.json +445 -0
  147. umap/static/umap/locale/vi.js +447 -0
  148. umap/static/umap/locale/vi.json +445 -0
  149. umap/static/umap/locale/vi_VN.json +445 -0
  150. umap/static/umap/locale/zh.js +447 -0
  151. umap/static/umap/locale/zh.json +445 -0
  152. umap/static/umap/locale/zh_CN.json +445 -0
  153. umap/static/umap/locale/zh_TW.Big5.json +445 -0
  154. umap/static/umap/locale/zh_TW.js +447 -0
  155. umap/static/umap/locale/zh_TW.json +445 -0
  156. umap/static/umap/map.css +1843 -0
  157. umap/static/umap/nav.css +81 -0
  158. umap/static/umap/openstreetmap.png +0 -0
  159. umap/static/umap/test/.eslintrc +22 -0
  160. umap/static/umap/test/Choropleth.js +243 -0
  161. umap/static/umap/test/Controls.js +100 -0
  162. umap/static/umap/test/DataLayer.js +495 -0
  163. umap/static/umap/test/Feature.js +382 -0
  164. umap/static/umap/test/Map.Export.js +106 -0
  165. umap/static/umap/test/Map.Init.js +46 -0
  166. umap/static/umap/test/Map.js +342 -0
  167. umap/static/umap/test/Marker.js +122 -0
  168. umap/static/umap/test/Permissions.js +74 -0
  169. umap/static/umap/test/Polygon.js +367 -0
  170. umap/static/umap/test/Polyline.js +402 -0
  171. umap/static/umap/test/TableEditor.js +100 -0
  172. umap/static/umap/test/URLs.js +54 -0
  173. umap/static/umap/test/Util.js +549 -0
  174. umap/static/umap/test/_pre.js +460 -0
  175. umap/static/umap/test/index.html +135 -0
  176. umap/static/umap/theme.css +1 -0
  177. umap/static/umap/twitter.png +0 -0
  178. {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/METADATA +1 -1
  179. {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/RECORD +182 -6
  180. {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/WHEEL +0 -0
  181. {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/entry_points.txt +0 -0
  182. {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,445 @@
1
+ {
2
+ "Allow scroll wheel zoom?": "Επιτρέπεται κύλιση εστίασης",
3
+ "Automatic": "Αυτόματα",
4
+ "Ball": "Καρφίτσα",
5
+ "Cancel": "Άκυρο",
6
+ "Caption": "Λεζάντα",
7
+ "Choose the data format": "Επιλογή μορφοποίησης δεδομένων",
8
+ "Choose the layer of the feature": "Επιλέξτε το επίπεδο του στοιχείου",
9
+ "Circle": "Κύκλος",
10
+ "Clustered": "Σύμπλεγμα",
11
+ "Data browser": "Περιηγητής δεδομένων",
12
+ "Default": "Προεπιλογή",
13
+ "Default zoom level": "Προεπιλεγμένο επίπεδο μεγέθυνσης",
14
+ "Default: name": "Προεπιλογή: Όνομα",
15
+ "Display label": "Εμφάνιση ετικέτας",
16
+ "Display the control to open OpenStreetMap editor": "Εμφάνιση εικονιδίου επεξεργασίας OpenStreetMap",
17
+ "Display the data layers control": "Εμφάνιση εικονιδίου επιπέδων με δεδομένα",
18
+ "Display the embed control": "Εμφάνιση εικονιδίου διαμοιρασμού",
19
+ "Display the fullscreen control": "Εμφάνιση εικονιδίου πλήρους οθόνης",
20
+ "Display the locate control": "Εμφάνιση εικονιδίου γεωεντοπισμού",
21
+ "Display the measure control": "Εμφάνιση εικονιδίου μέτρησης",
22
+ "Display the search control": "Εμφάνιση εικονιδίου αναζήτησης",
23
+ "Display the tile layers control": "Εμφάνιση εικονιδίου αλλαγής υποβάθρων",
24
+ "Display the zoom control": "Εμφάνιση εικονιδίου εστίασης",
25
+ "Do you want to display a caption bar?": "Εμφάνιση λεζάντας",
26
+ "Do you want to display a minimap?": "Εμφάνιση χάρτη προσανατολισμού",
27
+ "Do you want to display a panel on load?": "Εμφάνιση καρτέλας κατά την φόρτωση",
28
+ "Do you want to display popup footer?": "Εμφάνιση αναδυόμενου υποσέλιδου",
29
+ "Do you want to display the scale control?": "Εμφάνιση κλίμακας",
30
+ "Do you want to display the «more» control?": "Εμφάνιση περισσότερων επιλογών",
31
+ "Drop": "Σταγόνα",
32
+ "GeoRSS (only link)": "GeoRSS (μόνο σύνδεσμος)",
33
+ "GeoRSS (title + image)": "GeoRSS (τίτλος + εικόνα)",
34
+ "Heatmap": "Χάρτης θερμότητας",
35
+ "Icon shape": "Μορφή εικονιδίου",
36
+ "Icon symbol": "Σύμβολο εικονιδίου",
37
+ "Inherit": "Κληρονομημένο",
38
+ "Label direction": "Κατεύθυνση ετικέτας",
39
+ "Label key": "Κλειδί ετικέτας",
40
+ "Labels are clickable": "Οι ετικέτες είναι ενεργές",
41
+ "None": "Κανένα",
42
+ "On the bottom": "Στο κάτω μέρος",
43
+ "On the left": "Στο αριστερό μέρος",
44
+ "On the right": "Στο δεξί μέρος",
45
+ "On the top": "Στο πάνω μέρος",
46
+ "Popup content template": "Αναδυόμενο πρότυπο περιεχομένου",
47
+ "Side panel": "Πλευρική εργαλειοθήκη",
48
+ "Simplify": "Απλοποίηση",
49
+ "Table": "Πίνακας",
50
+ "always": "πάντα",
51
+ "clear": "Εκκαθάριση",
52
+ "collapsed": "Κατέρρευσε",
53
+ "color": "Χρώμα",
54
+ "dash array": "Διάταξη παύλας",
55
+ "define": "Ορισμός",
56
+ "description": "Περιγραφή",
57
+ "expanded": "Αναπτυγμένος",
58
+ "fill": "Γέμισμα",
59
+ "fill color": "Χρώμα γεμίσματος",
60
+ "fill opacity": "Αδιαφάνεια γεμίσματος",
61
+ "hidden": "Απόκρυψη",
62
+ "iframe": "iframe",
63
+ "inherit": "Κληρονομημένο",
64
+ "name": "Όνομα",
65
+ "never": "Ποτέ",
66
+ "new window": "Νέο Παράθυρο",
67
+ "no": "όχι",
68
+ "on hover": "Με αιώρηση",
69
+ "opacity": "Αδιαφάνεια",
70
+ "parent window": "Γονικό παράθυρο",
71
+ "stroke": "Πινέλο",
72
+ "weight": "Βάρος",
73
+ "yes": "ναι",
74
+ "{delay} seconds": "{delay} δευτερόλεπτα",
75
+ "# one hash for main heading": "# για επικεφαλίδα πρώτου επιπέδου",
76
+ "## two hashes for second heading": "## για επικεφαλίδα δευτέρου επιπέδου",
77
+ "### three hashes for third heading": "### για επικεφαλίδα τρίτου επιπέδου",
78
+ "**double star for bold**": "**διπλό αστερίσκο για έντονα**",
79
+ "A comma separated list of numbers that defines the stroke dash pattern. Ex.: \"5, 10, 15\".": "Μια λίστα αριθμών διαχωρισμένων με κόμμα που καθορίζει το μοτίβο της παύλας. Π.χ.: \"5, 10, 15\".",
80
+ "About": "Σχετικά",
81
+ "Action not allowed :(": "Μη επιτρεπόμενη ενέργεια :(",
82
+ "Activate slideshow mode": "Ενεργοποίηση λειτουργίας παρουσίασης",
83
+ "Add a layer": "Προσθήκη επιπέδου",
84
+ "Add a line to the current multi": "Προσθήκη γραμμής στο παρόν πολυδεδομένο",
85
+ "Add a new property": "Προσθήκη νέας ιδιότητας",
86
+ "Add a polygon to the current multi": "Προσθήκη πολυγώνου στο παρόν πολυδεδομένο",
87
+ "Advanced actions": "Εξειδικευμένες ενέργειες",
88
+ "Advanced properties": "Εξειδικευμένες ιδιότητες",
89
+ "All properties are imported.": "Όλες οι ιδιότητες έχουν εισαχθεί",
90
+ "Allow interactions": "Επιτρέπονται αλληλεπιδράσεις",
91
+ "An error occured": "Παρουσιάστηκε σφάλμα",
92
+ "Are you sure you want to cancel your changes?": "Θέλετε σίγουρα να ακυρώσετε τις αλλαγές σας;",
93
+ "Are you sure you want to clone this map and all its datalayers?": "Θέλετε σίγουρα να κλωνοποιηθεί αυτός ο χάρτης και όλα τα επίπεδα δεδομένων του;",
94
+ "Are you sure you want to delete the feature?": "Θέλετε σίγουρα να διαγράφει αυτό το στοιχείο;",
95
+ "Are you sure you want to delete this layer?": "Θέλετε σίγουρα να διαγράφει αυτό το επιπέδο;",
96
+ "Are you sure you want to delete this map?": "Θέλετε σίγουρα να διαγράφει αυτός ο χάρτης;",
97
+ "Are you sure you want to delete this property on all the features?": "Θέλετε σίγουρα να διαγράφει αυτή η ιδιότητα από όλα τα στοιχεία;",
98
+ "Are you sure you want to restore this version?": "Θέλετε σίγουρα να γίνει επαναφορά αυτής της έκδοσης;",
99
+ "Attach the map to my account": "Σύνδεση του χάρτη με τον λογαριασμό μου",
100
+ "Auto": "Αυτόματα",
101
+ "Autostart when map is loaded": "Αυτόματη έναρξη με την φόρτωση του χάρτη",
102
+ "Bring feature to center": "Κεντράρισμα του στοιχείου",
103
+ "Browse data": "Περιήγηση δεδομένων",
104
+ "Cancel edits": "Ακύρωση επεξεργασίας",
105
+ "Center map on your location": "Κεντράρισμα του χάρτη στην τοποθεσία σας",
106
+ "Change map background": "Αλλαγή υποβάθρου του χάρτη",
107
+ "Change tilelayers": "Αλλαγή χαρτογραφικού υπόβαθρου",
108
+ "Choose a preset": "Επιλογή προκαθορισμένου",
109
+ "Choose the format of the data to import": "Επιλέξτε τη μορφοποίηση των δεδομένων που θα εισαχθούν",
110
+ "Choose the layer to import in": "Επιλέξτε το επίπεδο στο οποίο θα η εισαγωγή",
111
+ "Click last point to finish shape": "Πατήστε στο τελευταίο σημείο για να ολοκληρωθεί το σχήμα",
112
+ "Click to add a marker": "Πατήστε για την εισαγωγή σημείου",
113
+ "Click to continue drawing": "Πατήστε για συνέχεια σχεδίασης",
114
+ "Click to edit": "Πατήστε για επεξεργασία",
115
+ "Click to start drawing a line": "Πατήστε για έναρξη σχεδιασμού γραμμής",
116
+ "Click to start drawing a polygon": "Πατήστε για έναρξη σχεδιασμού πολυγώνου",
117
+ "Clone": "Κλωνοποίηση",
118
+ "Clone of {name}": "Κλωνοποίηση του {name}",
119
+ "Clone this feature": "Κλωνοποίηση αυτού του στοιχείου",
120
+ "Clone this map": "Κλωνοποίηση αυτού του χάρτη",
121
+ "Close": "Κλείσιμο",
122
+ "Clustering radius": "Ακτίνα συμπλέγματος",
123
+ "Comma separated list of properties to use when filtering features": "Λίστα ιδιοτήτων διαχωρισμένων με κόμμα για χρήση κατά το φιλτράρισμα των στοιχείων",
124
+ "Comma, tab or semi-colon separated values. SRS WGS84 is implied. Only Point geometries are imported. The import will look at the column headers for any mention of «lat» and «lon» at the begining of the header, case insensitive. All other column are imported as properties.": "Τιμές διαχωρισμένες με κόμμα, tab ή άνω τελεία. Εννοείται και η μορφή SRS WGS84. Εισάγονται μόνο γεωμετρίες σημείων. Η διαδικασία εισαγωγής ελέγχει τις επικεφαλίδες των στηλών για τις ενδείξεις «lat» και «lon» στην αρχή της επικεφαλίδας και κάνει διάκριση πεζών - κεφαλαίων γραμμάτων. Όλες οι άλλες στήλες εισάγονται ως ιδιότητες.",
125
+ "Continue line": "Συνέχεια γραμμής",
126
+ "Continue line (Ctrl+Click)": "Συνέχεια γραμμής (Ctrl+Click)",
127
+ "Coordinates": "Συντεταγμένες",
128
+ "Credits": "Εύσημα",
129
+ "Current view instead of default map view?": "Τρέχουσα προβολή χάρτη αντί της προεπιλεγμένης",
130
+ "Custom background": "Προσαρμοσμένο υπόβαθρο",
131
+ "Data is browsable": "Τα δεδομένα είναι περιηγήσιμα",
132
+ "Default interaction options": "Αλληλεπίδραση",
133
+ "Default properties": "Προεπιλεγμένες ιδιότητες",
134
+ "Default shape properties": "Ιδιότητες σχημάτων",
135
+ "Define link to open in a new window on polygon click.": "Προσδιορισμός συνδέσμου για άνοιγμα σε νέο παράθυρο με κλικ στο πολύγωνο",
136
+ "Delay between two transitions when in play mode": "Καθυστέρηση μεταξύ μεταβάσεων κατά την παρουσίαση",
137
+ "Delete": "Διαγραφή",
138
+ "Delete all layers": "Διαγραφή όλων των επιπέδων",
139
+ "Delete layer": "Διαγραφή επιπέδου",
140
+ "Delete this feature": "Διαγραφή αυτού του στοιχείου",
141
+ "Delete this property on all the features": "Διαγραφή αυτής της ιδιότητας από όλα τα στοιχεία",
142
+ "Delete this shape": "Διαγραφή σχήματος",
143
+ "Delete this vertex (Alt+Click)": "Διαγραφή αυτής της κορυφής (Alt+Click)",
144
+ "Directions from here": "Κατευθύνσεις από εδώ",
145
+ "Display measure": "Εμφάνιση μέτρησης",
146
+ "Display on load": "Εμφάνιση κατά την φόρτωση",
147
+ "Download": "Λήψη",
148
+ "Drag to reorder": "Σύρετε για αναδιάταξη",
149
+ "Draw a marker": "Σχεδιασμός σημείου",
150
+ "Draw a polygon": "Σχεδιασμός πολυγώνου",
151
+ "Draw a polyline": "Σχεδιασμός σύνθετης γραμμής",
152
+ "Dynamic": "Δυναμική",
153
+ "Dynamic properties": "Δυναμικές ιδιότητες",
154
+ "Edit": "Επεξεργασία",
155
+ "Edit feature's layer": "Επεξεργασία επιπέδου του στοιχείου",
156
+ "Edit map properties": "Επεξεργασία ιδιοτήτων χάρτη",
157
+ "Edit properties in a table": "Επεξεργασία ιδιοτήτων σε πίνακα",
158
+ "Edit this feature": "Επεξεργασία αυτού του στοιχείου",
159
+ "Embed the map": "Ένθεση του χάρτη",
160
+ "Empty": "Κενό",
161
+ "Error in the tilelayer URL": "Σφάλμα συνδέσμου υποβάθρου",
162
+ "Error while fetching {url}": "Σφάλμα κατά την ανάκτηση {url}",
163
+ "Exit Fullscreen": "Κλείσιμο πλήρους οθόνης",
164
+ "Extract shape to separate feature": "Εξαγωγή σχήματος σε ξεχωριστό στοιχείο",
165
+ "Fetch data each time map view changes.": "Ανάκτηση δεδομένων κάθε φορά που αλλάζει η προβολή του χάρτη.",
166
+ "Filter keys": "Βασικά φίλτρα",
167
+ "Format": "Μορφοποίηση",
168
+ "From zoom": "Από εστίαση",
169
+ "Go to «{feature}»": "Μετάβαση στο «{feature}»",
170
+ "Heatmap intensity property": "Ένταση του χάρτη εγγύτητας",
171
+ "Heatmap radius": "Ακτίνα του χάρτη εγγύτητας",
172
+ "Help": "Βοήθεια",
173
+ "Hide controls": "Απόκρυψη εργαλείων ελέγχου",
174
+ "Home": "Αρχική",
175
+ "How much to simplify the polyline on each zoom level (more = better performance and smoother look, less = more accurate)": "Πόσο απλοποιείται η συνθέτη γραμμή σε κάθε επίπεδο εστίασης (περισσότερο = καλύτερη απόδοση και ομαλότερη εμφάνιση, λιγότερο = περισσότερη ακρίβεια)",
176
+ "Iframe with custom height (in px): {{{http://iframe.url.com|height}}}": "Iframe με προσαρμοσμένο ύψος (σε px): {{{http://iframe.url.com|height}}}",
177
+ "Iframe with custom height and width (in px): {{{http://iframe.url.com|height*width}}}": "Iframe με προσαρμοσμένο ύψος και πλάτος (σε px): {{{http://iframe.url.com|height*width}}}",
178
+ "Iframe: {{{http://iframe.url.com}}}": "Iframe: {{{http://iframe.url.com}}}",
179
+ "Image with custom width (in px): {{http://image.url.com|width}}": "Εικόνα με προσαρμοσμένο πλάτος (σε px): {{http://image.url.com|width}}",
180
+ "Image: {{http://image.url.com}}": "Εικόνα: {{http://image.url.com}}",
181
+ "Import": "Εισαγωγή",
182
+ "Import data": "Εισαγωγή δεδομένων",
183
+ "Import in a new layer": "Εισαγωγή σε νέο επίπεδο",
184
+ "Imports all umap data, including layers and settings.": "Εισάγει όλα τα δεδομένα umap, μαζί με τα επίπεδα και τις ρυθμίσεις.",
185
+ "Include full screen link?": "Συμπερίληψη συνδέσμου πλήρους οθόνης;",
186
+ "Interaction options": "Επιλογές αλληλεπίδρασης",
187
+ "Invalid umap data": "Μη έγκυρα δεδομένα umap",
188
+ "Invalid umap data in {filename}": "Μη έγκυρα δεδομένα στο αρχείο {filename}",
189
+ "Keep current visible layers": "Διατήρηση τρεχουσών ορατών επιπέδων",
190
+ "Latitude": "Γεωγραφικό πλάτος",
191
+ "Layer": "Επίπεδο",
192
+ "Layer properties": "Ιδιότητες επιπέδου",
193
+ "Licence": "Άδεια",
194
+ "Limit bounds": "Περιορισμός ορίων",
195
+ "Link to…": "Σύνδεση με...",
196
+ "Link with text: [[http://example.com|text of the link]]": "Σύνδεση με κείμενο: [[http://example.com|text του συνδέσμου]]",
197
+ "Long credits": "Αναλυτικές πιστώσεις",
198
+ "Longitude": "Γεωγραφικό μήκος",
199
+ "Make main shape": "Ορίστε το ως κύριο σχήμα",
200
+ "Manage layers": "Διαχείριση επιπέδων",
201
+ "Map background credits": "Πιστοποιητικά υποβάθρου του χάρτη",
202
+ "Map has been attached to your account": "Ο χάρτης έχει συνδεθεί με τον λογαριασμό σας",
203
+ "Map has been saved!": "Ο χάρτης έχει αποθηκευτεί!",
204
+ "Map user content has been published under licence": "Το περιεχόμενο του χάρτη έχει δημοσιευτεί με συγκεκριμένη άδεια",
205
+ "Map's editors": "Συντάκτες",
206
+ "Map's owner": "Ιδιοκτησία",
207
+ "Merge lines": "Συγχώνευση γραμμών",
208
+ "More controls": "Περισσότερα εργαλεία ελέγχου",
209
+ "Must be a valid CSS value (eg.: DarkBlue or #123456)": "Πρέπει να είναι έγκυρη τιμή CSS (π.χ.: DarkBlue ή #123456)",
210
+ "No licence has been set": "Δεν έχει οριστεί άδεια χρήσης",
211
+ "No results": "Δεν υπάρχουν αποτελέσματα",
212
+ "Open link in…": "Άνοιγμα συνδέσμου σε…",
213
+ "Open this map extent in a map editor to provide more accurate data to OpenStreetMap": "Ανοίξτε τον χάρτη σε έναν επεξεργαστή χαρτών για να παρέχετε πιο ακριβή δεδομένα στο OpenStreetMap",
214
+ "Optional intensity property for heatmap": "Προαιρετική ιδιότητα έντασης για τον χάρτη εγγύτητας",
215
+ "Optional. Same as color if not set.": "Προαιρετικό. Ίδιο με το χρώμα αν δεν οριστεί.",
216
+ "Override clustering radius (default 80)": "Παράκαμψη ακτίνας συμπλέγματος (προεπιλογή 80)",
217
+ "Override heatmap radius (default 25)": "Παράκαμψη ακτίνας χάρτη εγγύτητας (προεπιλογή 25)",
218
+ "Please be sure the licence is compliant with your use.": "Παρακαλώ βεβαιωθείτε ότι η άδεια είναι σύμφωνη με την χρήση σας",
219
+ "Please choose a format": "Παρακαλώ επιλέξτε μια μορφοποίηση",
220
+ "Please enter the name of the property": "Παρακαλώ εισαγάγετε το όνομα της ιδιότητας",
221
+ "Please enter the new name of this property": "Παρακαλώ εισαγάγετε το νέο όνομα αυτής της ιδιότητας",
222
+ "Problem in the response": "Πρόβλημα στην απόκριση",
223
+ "Problem in the response format": "Πρόβλημα στη μορφοποίηση απόκρισης",
224
+ "Properties imported:": "Ιδιότητες που έχουν εισαχθεί:",
225
+ "Provide an URL here": "Δώστε έναν σύνδεσμο εδώ",
226
+ "Proxy request": "Αίτημα απομακρυσμένου διαμεσολαβητή",
227
+ "Remote data": "Απομακρυσμένα δεδομένα",
228
+ "Remove shape from the multi": "Αφαίρεση σχήματος από πολυδεδομένο",
229
+ "Rename this property on all the features": "Μετονομασία αυτής της ιδιότητας σε όλα τα στοιχεία",
230
+ "Replace layer content": "Αντικατάσταση περιεχομένου του επιπέδου",
231
+ "Restore this version": "Επαναφορά αυτής της έκδοσης",
232
+ "Save": "Αποθήκευση",
233
+ "Save anyway": "Αποθήκευση οπωσδήποτε",
234
+ "Save current edits": "Αποθήκευση τρέχουσας επεξεργασίας",
235
+ "Save this center and zoom": "Αποθήκευση αυτής της προβολής με το συγκεκριμένο κεντράρισμα και το επίπεδο εστίασης.",
236
+ "Save this location as new feature": "Αποθήκευση αυτής της τοποθεσίας ως νέο στοιχείο",
237
+ "Search location": "Αναζήτηση τοποθεσίας",
238
+ "See all": "Εμφάνιση όλων",
239
+ "See data layers": "Εμφάνιση επιπέδων δεδομένων",
240
+ "See full screen": "Εμφάνιση πλήρους οθόνης",
241
+ "Set it to false to hide this layer from the slideshow, the data browser, the popup navigation…": "Απενεργοποίηση εάν επιθυμείτε την απόκρυψη του επιπέδου κατά την προβολή των διαφανειών, την περιήγηση δεδομένων, την αναδυόμενη πλοήγηση...",
242
+ "Shape properties": "Ιδιότητες σχήματος",
243
+ "Short credits": "Εύσημα εν συντομία",
244
+ "Show/hide layer": "Εμφάνιση/απόκρυψη επιπέδου",
245
+ "Simple link: [[http://example.com]]": "Απλός σύνδεσμος: [[http://example.com]]",
246
+ "Slideshow": "Παρουσίαση",
247
+ "Sort key": "Κλειδί ταξινόμησης",
248
+ "Split line": "Διαίρεση γραμμής",
249
+ "Start a hole here": "Δημιουργία κενής περιοχής εδώ",
250
+ "Start slideshow": "Έναρξη παρουσίασης",
251
+ "Stop editing": "Τερματισμός επεξεργασίας",
252
+ "Stop slideshow": "Τερματισμός παρουσίασης",
253
+ "Supported scheme": "Υποστηριζόμενο σχέδιο",
254
+ "Supported variables that will be dynamically replaced": "Υποστηριζόμενες μεταβλητές που θα αντικατασταθούν δυναμικά",
255
+ "TMS format": "Μορφοποίηση TMS",
256
+ "Text color for the cluster label": "Χρώμα κειμένου για την ετικέτα συμπλέγματος",
257
+ "Text formatting": "Μορφοποίηση κειμένου",
258
+ "To use if remote server doesn't allow cross domain (slower)": "Για χρήση εάν ο απομακρυσμένος διακομιστής δεν επιτρέπει cross domain (πιο αργή)",
259
+ "To zoom": "Για εστίαση",
260
+ "Transfer shape to edited feature": "Μεταφορά σχήματος σε επεξεργασμένο στοιχείο",
261
+ "Transform to lines": "Μετασχηματισμός σε γραμμές",
262
+ "Transform to polygon": "Μετασχηματισμός σε πολύγωνο",
263
+ "Type of layer": "Τύπος επιπέδου",
264
+ "Unable to detect format of file {filename}": "Δεν είναι δυνατή η αναγνώριση της μορφοποίησης του αρχείου {filename}",
265
+ "Untitled layer": "Επίπεδο χωρίς όνομα",
266
+ "Untitled map": "Χάρτης χωρίς όνομα",
267
+ "Update permissions": "Ενημέρωση δικαιωμάτων χάρτη",
268
+ "Update permissions and editors": "Ενημέρωση δικαιωμάτων και συντακτών",
269
+ "Url": "Σύνδεσμος",
270
+ "Use current bounds": "Χρήση τρεχόντων ορίων",
271
+ "Use placeholders with feature properties between brackets, eg. {name}, they will be dynamically replaced by the corresponding values.": "Χρησιμοποιήστε σύμβολα υποκατάστασης με τις ιδιότητες του στοιχείου μεταξύ αγκυλών, π.χ. {name}, θα αντικατασταθούν δυναμικά από τις αντίστοιχες τιμές.",
272
+ "User content credits": "Εύσημα περιεχομένου χρήστη",
273
+ "User interface options": "Περιβάλλον χρήστη",
274
+ "Versions": "Εκδόσεις",
275
+ "View Fullscreen": "Προβολή πλήρους οθόνης",
276
+ "Where do we go from here?": "Πού πάμε από εδώ;",
277
+ "Whether to display or not polygons paths.": "Εάν πρόκειται να εμφανίσετε ή όχι μονοπάτια πολυγώνων.",
278
+ "Whether to fill polygons with color.": "Εάν πρόκειται να γεμίσετε πολύγωνα με χρώμα.",
279
+ "Who can edit": "Επεξεργασία",
280
+ "Who can view": "Προβολή",
281
+ "Will be displayed in the bottom right corner of the map": "Θα εμφανιστεί στην κάτω δεξιά γωνία του χάρτη",
282
+ "Will be visible in the caption of the map": "Θα είναι ορατό στη λεζάντα του χάρτη",
283
+ "Woops! Someone else seems to have edited the data. You can save anyway, but this will erase the changes made by others.": "Οπς! Κάποιος άλλος φαίνεται πως έχει επεξεργαστεί τα δεδομένα. Μπορείτε να αποθηκεύσετε ούτως ή άλλως, αλλά αυτό θα διαγράψει τις αλλαγές που έγιναν από άλλους.",
284
+ "Zoom in": "Μεγέθυνση",
285
+ "Zoom level for automatic zooms": "Επίπεδο εστίασης για αυτόματες μεγεθύνσεις/σμικρύνσεις",
286
+ "Zoom out": "Σμίκρυνση",
287
+ "Zoom to layer extent": "Εστίαση στο χώρο κάλυψης του επίπεδου",
288
+ "Zoom to the next": "Εστίαση στο επόμενο",
289
+ "Zoom to the previous": "Εστίαση στο προηγούμενο",
290
+ "Zoom to this feature": "Εστίαση σε αυτό το στοιχείο",
291
+ "Zoom to this place": "Εστίαση σε αυτή την τοποθεσία",
292
+ "attribution": "Αναφορά",
293
+ "by": "από",
294
+ "display name": "Όνομα που εμφανίζεται",
295
+ "height": "Ύψος",
296
+ "licence": "Άδεια",
297
+ "max East": "Μέγιστο ανατολικά",
298
+ "max North": "Μέγιστο βόρεια",
299
+ "max South": "Μέγιστο νότια",
300
+ "max West": "Μέγιστο δυτικά",
301
+ "max zoom": "Μέγιστη εστίαση",
302
+ "min zoom": "Ελάχιστη εστίαση",
303
+ "next": "Επόμενο",
304
+ "previous": "Προηγούμενο",
305
+ "width": "Πλάτος",
306
+ "{count} errors during import: {message}": "{count} σφάλματα κατά την εισαγωγή: {message}",
307
+ "Measure distances": "Μέτρηση αποστάσεων",
308
+ "NM": "ΝΜ",
309
+ "kilometers": "Χιλιόμετρα",
310
+ "km": "χμ.",
311
+ "mi": "μλ.",
312
+ "miles": "Μίλια",
313
+ "nautical miles": "Ναυτικά μίλια",
314
+ "1 day": "1 μέρα",
315
+ "1 hour": "1 ώρα",
316
+ "5 min": "5 λεπτά",
317
+ "Cache proxied request": "Αίτημα μεσολάβησης προσωρινής μνήμης",
318
+ "No cache": "Δεν υπάρχει προσωρινή μνήμη",
319
+ "Popup": "Αναδυόμενο",
320
+ "Popup (large)": "Αναδυόμενο (μεγάλο)",
321
+ "Popup content style": "Στυλ περιεχομένου αναδυόμενου",
322
+ "Popup shape": "Σχήμα αναδυόμενου",
323
+ "Skipping unknown geometry.type: {type}": "Παράλειψη άγνωστου geometry.type: {type}",
324
+ "Optional.": "Προαιρετικό",
325
+ "Paste your data here": "Επικόλληση των δεδομένων σας εδώ",
326
+ "Please save the map first": "Παρακαλώ αποθηκεύστε τον χάρτη πρώτα",
327
+ "Feature identifier key": "Κλειδί αναγνώρισης στοιχείου",
328
+ "Open current feature on load": "Άνοιγμα τρέχοντος στοιχείου κατά τη φόρτωση",
329
+ "Permalink": "Μόνιμος σύνδεσμος",
330
+ "The name of the property to use as feature unique identifier.": "Το όνομα της ιδιότητας που θα χρησιμοποιείται ως μοναδικό αναγνωριστικό.",
331
+ "Do you want to display caption menus?": "Θέλετε να εμφανίζονται τα μενού των λεζαντών;",
332
+ "Example: key1,key2,key3": "Παράδειγμα: key1,key2,key3",
333
+ "Invalid latitude or longitude": "Μη έγκυρο γεωγραφικό πλάτος ή μήκος",
334
+ "Invalide property name: {name}": "Μη έγκυρο όνομα ιδιότητας: {name}",
335
+ "Permanent credits": "Μόνιμα εύσημα",
336
+ "Permanent credits background": "Φόντο μόνιμων ευσήμων",
337
+ "Select data": "Επιλογή δεδομένων",
338
+ "Will be permanently visible in the bottom left corner of the map": "Θα είναι μόνιμα ορατό στην κάτω αριστερή γωνία του χάρτη.",
339
+ "{area} acres": "{area} έικρ",
340
+ "{area} ha": "{area} εκτάρια",
341
+ "{area} m²": "{area} μέτρα²",
342
+ "{area} mi²": "{area} μίλια²",
343
+ "{area} yd²": "{area} γιάρδες²",
344
+ "{distance} NM": "{distance} ναυτικά μίλια",
345
+ "{distance} km": "{distance} χιλιόμετρα",
346
+ "{distance} m": "{distance} μέτρα",
347
+ "{distance} miles": "{distance} μίλια",
348
+ "{distance} yd": "{distance} γιάρδες",
349
+ " (area: {measure})": "(περιοχή: {measure})",
350
+ " (length: {measure})": "(μήκος: {measure})",
351
+ "Animated transitions": "Κινούμενες μεταβάσεις",
352
+ "Background overlay url": "Διεύθυνση URL επικάλυψης φόντου",
353
+ "Custom overlay": "Προσαρμοσμένη επικάλυψη",
354
+ "Display the star map button": "Εμφάνιση του κουμπιού για χάρτη με αστέρι",
355
+ "Error in the overlay URL": "Σφάλμα στη διεύθυνση URL επικάλυψης",
356
+ "Map has been starred": "Ο χάρτης έχει επισημανθεί με αστέρι",
357
+ "Map has been unstarred": "Το αστέρι αφαιρέθηκε από τον χάρτη",
358
+ "Opacity": "Αδιαφάνεια",
359
+ "Star this map": "Τοποθέτηση αστεριού σε αυτόν τον χάρτη",
360
+ "Symbol can be either a unicode character or an URL. You can use feature properties as variables: ex.: with \"http://myserver.org/images/{name}.png\", the {name} variable will be replaced by the \"name\" value of each marker.": "Το σύμβολο μπορεί να είναι είτε χαρακτήρας unicode είτε URL. Μπορείτε να χρησιμοποιήσετε ιδιότητες χαρακτηριστικών ως μεταβλητές: π.χ.: με \"http://myserver.org/images/{name}.png\", η μεταβλητή {name} θα αντικατασταθεί από την τιμή \"name\" του κάθε δείκτη.",
361
+ "Direct link": "Απευθείας σύνδεσμος",
362
+ "The zoom and center have been modified.": "Η εστίαση και το κέντρο έχουν τροποποιηθεί.",
363
+ "Congratulations, your map has been created!": "Συγχαρητήρια, ο χάρτης σας δημιουργήθηκε!",
364
+ "Copy link": "Αντιγραφή συνδέσμου",
365
+ "Email": "Email",
366
+ "Secret edit link copied to clipboard!": "Ο μυστικός σύνδεσμος επεξεργασίας αντιγράφηκε στο πρόχειρο!",
367
+ "Send me the link": "Στείλε μου τον σύνδεσμο",
368
+ "Your map has been created! As you are not logged in, here is your secret link to edit the map, please keep it safe:": "Ο χάρτης σας δημιουργήθηκε! Καθώς δεν είστε συνδεδεμένοι, εδώ είναι ο μυστικός σύνδεσμός σας για να επεξεργαστείτε τον χάρτη. Κρατήστε τον ασφαλή:",
369
+ "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.",
370
+ "Toggle edit mode (⇧+Click)": "Toggle edit mode (⇧+Click)",
371
+ "icon opacity": "icon opacity",
372
+ "*single star for italic*": "*single star for italic*",
373
+ "--- for a horizontal rule": "--- για οριζόντιο χάρακα",
374
+ "The name of the property to use as feature label (eg.: \"nom\"). You can also use properties inside brackets to use more than one or mix with static content (eg.: \"{name} in {place}\")": "The name of the property to use as feature label (eg.: \"nom\"). You can also use properties inside brackets to use more than one or mix with static content (eg.: \"{name} in {place}\")",
375
+ "Comma separated list of properties to use for facet search (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key)": "Comma separated list of properties to use for facet search (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key)",
376
+ "Default view": "Default view",
377
+ "Facet keys": "Facet keys",
378
+ "Facet search": "Facet search",
379
+ "Feature properties": "Feature properties",
380
+ "Issue reaching that URL (network problem or CORS protection): {url}": "Issue reaching that URL (network problem or CORS protection): {url}",
381
+ "Latest feature": "Latest feature",
382
+ "No results for these facets": "No results for these facets",
383
+ "Saved center and zoom": "Saved center and zoom",
384
+ "User location": "User location",
385
+ "Visibility: {status}": "Visibility: {status}",
386
+ "Fit all data": "Μεγέθυνση στα δεδομένα",
387
+ "Verify remote URL": "Επαλήθευση απομακρυσμένης διεύθυνσης URL",
388
+ "Add": "Προσθήκη",
389
+ "Change": "Αλλαγή",
390
+ "Powered by uMap": "Με την υποστήριξη του uMap",
391
+ "Search": "Αναζήτηση",
392
+ "Datalayers": "Επίπεδα δεδομένων",
393
+ "Secret edit link:": "Μυστικός σύνδεσμος επεξεργασίας:",
394
+ "Who can edit \"{layer}\"": "Ποιος μπορεί να επεξεργαστεί \"{layer}\"",
395
+ "Current map view": "Τρέχουσα προβολή χάρτη",
396
+ "Filter": "Φίλτρο",
397
+ "Choropleth": "Χωροπληθής χάρτης",
398
+ "Choropleth breakpoints": "Χωροπληθή σημεία διακοπής",
399
+ "Choropleth classes": "Χωροπληθείς κατηγορίες",
400
+ "Choropleth color palette": "Χωροπληθής παλέτα χρωμάτων",
401
+ "Choropleth mode": "Χωροπληθής λειτουργία",
402
+ "Choropleth property value": "Χωροπληθής τιμή ιδιότητας",
403
+ "Comma separated list of numbers, including min and max values.": "Λίστα αριθμών διαχωρισμένη με κόμμα, συμπεριλαμβανομένων των ελάχιστων και μέγιστων τιμών.",
404
+ "Equidistant": "Equidistant",
405
+ "Jenks-Fisher": "Jenks-Fisher",
406
+ "K-means": "K-means",
407
+ "Manual": "Χειροκίνητα",
408
+ "Number of desired classes (default 5)": "Αριθμός επιθυμητών κατηγοριών (προεπιλογή 5)",
409
+ "Quantiles": "Ποσοστημόρια",
410
+ "Show this layer in the caption": "Εμφάνιση αυτού του επιπέδου στη λεζάντα",
411
+ "Back to preview": "Επιστροφή στην προεπισκόπηση",
412
+ "Drawing": "Σχεδίαση",
413
+ "Edit the title of the map": "Επεξεργασία τίτλου του χάρτη",
414
+ "Go to the homepage": "Μετάβαση στην αρχική σελίδα",
415
+ "Switch to edit mode": "Εναλλαγή σε λειτουργία επεξεργασίας",
416
+ "Update who can see and edit the map": "Ενημερώστε ποιος μπορεί να δει και ποιος να επεξεργαστεί τον χάρτη",
417
+ "View": "Προβολή",
418
+ "Add image URL": "Προσθήκη URL εικόνας",
419
+ "Emoji & Character": "Emoji & Χαρακτήρες",
420
+ "Generic": "Γενικός",
421
+ "Symbol": "Σύμβολο",
422
+ "Type char or paste emoji": "Πληκτρολογήστε χαρακτήρα ή επικολλήστε emoji",
423
+ "URL": "URL",
424
+ "If false, the polygon or line will act as a part of the underlying map.": "If false, the polygon or line will act as a part of the underlying map.",
425
+ "Save map": "Save map",
426
+ "Toggle edit mode": "Toggle edit mode",
427
+ "All data and settings of the map": "All data and settings of the map",
428
+ "Embed and link options": "Embed and link options",
429
+ "Go to \"{coords}\"": "Go to \"{coords}\"",
430
+ "Link to view the map": "Link to view the map",
431
+ "No.": "No.",
432
+ "Only visible layers' data": "Only visible layers' data",
433
+ "Open share & download panel": "Open share & download panel",
434
+ "OpenStreetMap": "OpenStreetMap",
435
+ "See on OpenStreetMap": "See on OpenStreetMap",
436
+ "Share and download": "Share and download",
437
+ "Share this link to open a customized map view": "Share this link to open a customized map view",
438
+ "Short link": "Short link",
439
+ "Street": "Street",
440
+ "Type a place name or coordinates": "Type a place name or coordinates",
441
+ "copy": "copy",
442
+ "full backup": "full backup",
443
+ "settings": "settings",
444
+ "{count} features in this layer": "{count} features in this layer"
445
+ }