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

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

Potentially problematic release.


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

Files changed (193) 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 +346 -234
  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 +3 -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 +3 -3
  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 +994 -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/permissions.js +280 -0
  68. umap/static/umap/js/{umap.icon.js → modules/rendering/icon.js} +77 -56
  69. umap/static/umap/js/modules/rendering/layers/base.js +105 -0
  70. umap/static/umap/js/modules/rendering/layers/classified.js +484 -0
  71. umap/static/umap/js/modules/rendering/layers/cluster.js +103 -0
  72. umap/static/umap/js/modules/rendering/layers/heat.js +182 -0
  73. umap/static/umap/js/modules/rendering/popup.js +99 -0
  74. umap/static/umap/js/modules/rendering/template.js +217 -0
  75. umap/static/umap/js/modules/rendering/ui.js +573 -0
  76. umap/static/umap/js/modules/schema.js +24 -0
  77. umap/static/umap/js/modules/share.js +66 -45
  78. umap/static/umap/js/modules/sync/updaters.js +9 -10
  79. umap/static/umap/js/modules/tableeditor.js +7 -7
  80. umap/static/umap/js/modules/ui/dialog.js +8 -4
  81. umap/static/umap/js/modules/utils.js +22 -13
  82. umap/static/umap/js/umap.controls.js +79 -146
  83. umap/static/umap/js/umap.core.js +9 -9
  84. umap/static/umap/js/umap.forms.js +32 -12
  85. umap/static/umap/js/umap.js +65 -63
  86. umap/static/umap/locale/br.js +35 -35
  87. umap/static/umap/locale/br.json +35 -35
  88. umap/static/umap/locale/ca.js +50 -50
  89. umap/static/umap/locale/ca.json +50 -50
  90. umap/static/umap/locale/de.js +136 -136
  91. umap/static/umap/locale/de.json +136 -136
  92. umap/static/umap/locale/el.js +47 -47
  93. umap/static/umap/locale/el.json +47 -47
  94. umap/static/umap/locale/en.js +7 -1
  95. umap/static/umap/locale/en.json +7 -1
  96. umap/static/umap/locale/fa_IR.js +44 -44
  97. umap/static/umap/locale/fa_IR.json +44 -44
  98. umap/static/umap/locale/fr.js +8 -2
  99. umap/static/umap/locale/fr.json +8 -2
  100. umap/static/umap/locale/pt.js +17 -17
  101. umap/static/umap/locale/pt.json +17 -17
  102. umap/static/umap/locale/pt_PT.js +207 -207
  103. umap/static/umap/locale/pt_PT.json +207 -207
  104. umap/static/umap/locale/th_TH.js +25 -25
  105. umap/static/umap/locale/th_TH.json +25 -25
  106. umap/static/umap/map.css +107 -104
  107. umap/static/umap/nav.css +19 -10
  108. umap/static/umap/unittests/utils.js +230 -107
  109. umap/static/umap/vendors/csv2geojson/csv2geojson.js +62 -40
  110. umap/static/umap/vendors/markercluster/MarkerCluster.Default.css +1 -1
  111. umap/storage.py +1 -0
  112. umap/templates/404.html +5 -1
  113. umap/templates/500.html +3 -1
  114. umap/templates/auth/user_detail.html +8 -2
  115. umap/templates/auth/user_form.html +19 -10
  116. umap/templates/auth/user_stars.html +8 -2
  117. umap/templates/base.html +1 -0
  118. umap/templates/registration/login.html +18 -3
  119. umap/templates/umap/about.html +1 -0
  120. umap/templates/umap/about_summary.html +22 -7
  121. umap/templates/umap/components/alerts/alert.html +42 -21
  122. umap/templates/umap/content.html +2 -0
  123. umap/templates/umap/content_footer.html +6 -2
  124. umap/templates/umap/css.html +1 -0
  125. umap/templates/umap/dashboard_menu.html +15 -0
  126. umap/templates/umap/home.html +14 -4
  127. umap/templates/umap/js.html +4 -9
  128. umap/templates/umap/login_popup_end.html +10 -4
  129. umap/templates/umap/map_detail.html +8 -2
  130. umap/templates/umap/map_fragment.html +3 -1
  131. umap/templates/umap/map_init.html +2 -1
  132. umap/templates/umap/map_list.html +4 -3
  133. umap/templates/umap/map_table.html +36 -12
  134. umap/templates/umap/messages.html +0 -1
  135. umap/templates/umap/navigation.html +2 -1
  136. umap/templates/umap/password_change.html +5 -1
  137. umap/templates/umap/password_change_done.html +8 -2
  138. umap/templates/umap/search.html +8 -2
  139. umap/templates/umap/search_bar.html +1 -0
  140. umap/templates/umap/team_confirm_delete.html +19 -0
  141. umap/templates/umap/team_detail.html +27 -0
  142. umap/templates/umap/team_form.html +60 -0
  143. umap/templates/umap/user_dashboard.html +7 -9
  144. umap/templates/umap/user_teams.html +51 -0
  145. umap/tests/base.py +8 -1
  146. umap/tests/conftest.py +6 -0
  147. umap/tests/fixtures/test_circles_layer.geojson +219 -0
  148. umap/tests/fixtures/test_upload_georss.xml +20 -0
  149. umap/tests/integration/conftest.py +18 -4
  150. umap/tests/integration/helpers.py +12 -0
  151. umap/tests/integration/test_anonymous_owned_map.py +23 -0
  152. umap/tests/integration/test_basics.py +29 -0
  153. umap/tests/integration/test_caption.py +20 -0
  154. umap/tests/integration/test_circles_layer.py +69 -0
  155. umap/tests/integration/test_draw_polygon.py +110 -13
  156. umap/tests/integration/test_draw_polyline.py +8 -18
  157. umap/tests/integration/test_edit_datalayer.py +1 -1
  158. umap/tests/integration/test_import.py +64 -5
  159. umap/tests/integration/test_owned_map.py +21 -13
  160. umap/tests/integration/test_team.py +47 -0
  161. umap/tests/integration/test_tilelayer.py +19 -2
  162. umap/tests/integration/test_view_marker.py +28 -1
  163. umap/tests/integration/test_websocket_sync.py +5 -5
  164. umap/tests/test_datalayer.py +32 -7
  165. umap/tests/test_datalayer_views.py +1 -1
  166. umap/tests/test_map.py +30 -4
  167. umap/tests/test_map_views.py +2 -2
  168. umap/tests/test_statics.py +40 -0
  169. umap/tests/test_team_views.py +131 -0
  170. umap/tests/test_views.py +15 -1
  171. umap/urls.py +23 -13
  172. umap/views.py +116 -10
  173. {umap_project-2.5.1.dist-info → umap_project-2.6.0b0.dist-info}/METADATA +9 -9
  174. {umap_project-2.5.1.dist-info → umap_project-2.6.0b0.dist-info}/RECORD +177 -170
  175. umap/static/umap/js/umap.datalayer.permissions.js +0 -70
  176. umap/static/umap/js/umap.features.js +0 -1290
  177. umap/static/umap/js/umap.layer.js +0 -1837
  178. umap/static/umap/js/umap.permissions.js +0 -208
  179. umap/static/umap/js/umap.popup.js +0 -341
  180. umap/static/umap/test/TableEditor.js +0 -104
  181. umap/static/umap/vendors/leaflet/leaflet-src.js +0 -14512
  182. umap/static/umap/vendors/leaflet/leaflet-src.js.map +0 -1
  183. umap/static/umap/vendors/leaflet/leaflet.js +0 -6
  184. umap/static/umap/vendors/leaflet/leaflet.js.map +0 -1
  185. umap/static/umap/vendors/markercluster/WhereAreTheJavascriptFiles.txt +0 -5
  186. umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js +0 -2718
  187. umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js.map +0 -1
  188. umap/static/umap/vendors/toolbar/leaflet.toolbar-src.css +0 -117
  189. umap/static/umap/vendors/toolbar/leaflet.toolbar-src.js +0 -365
  190. umap/tests/integration/test_statics.py +0 -47
  191. {umap_project-2.5.1.dist-info → umap_project-2.6.0b0.dist-info}/WHEEL +0 -0
  192. {umap_project-2.5.1.dist-info → umap_project-2.6.0b0.dist-info}/entry_points.txt +0 -0
  193. {umap_project-2.5.1.dist-info → umap_project-2.6.0b0.dist-info}/licenses/LICENSE +0 -0
@@ -22,7 +22,7 @@ const locale = {
22
22
  "Add": "Προσθήκη",
23
23
  "Advanced actions": "Εξειδικευμένες ενέργειες",
24
24
  "Advanced properties": "Εξειδικευμένες ιδιότητες",
25
- "All data and settings of the map": "All data and settings of the map",
25
+ "All data and settings of the map": "Όλα τα δεδομένα και ρυθμίσεις του χάρτη",
26
26
  "All properties are imported.": "Όλες οι ιδιότητες έχουν εισαχθεί",
27
27
  "Allow interactions": "Επιτρέπονται αλληλεπιδράσεις",
28
28
  "Allow scroll wheel zoom?": "Επιτρέπεται κύλιση εστίασης",
@@ -30,10 +30,10 @@ const locale = {
30
30
  "Animated transitions": "Κινούμενες μεταβάσεις",
31
31
  "Are you sure you want to cancel your changes?": "Θέλετε σίγουρα να ακυρώσετε τις αλλαγές σας;",
32
32
  "Are you sure you want to clone this map and all its datalayers?": "Θέλετε σίγουρα να κλωνοποιηθεί αυτός ο χάρτης και όλα τα επίπεδα δεδομένων του;",
33
- "Are you sure you want to delete the feature?": "Θέλετε σίγουρα να διαγράφει αυτό το στοιχείο;",
34
- "Are you sure you want to delete this layer?": "Θέλετε σίγουρα να διαγράφει αυτό το επιπέδο;",
35
- "Are you sure you want to delete this map?": "Θέλετε σίγουρα να διαγράφει αυτός ο χάρτης;",
36
- "Are you sure you want to delete this property on all the features?": "Θέλετε σίγουρα να διαγράφει αυτή η ιδιότητα από όλα τα στοιχεία;",
33
+ "Are you sure you want to delete the feature?": "Θέλετε σίγουρα να διαγραφεί αυτό το στοιχείο;",
34
+ "Are you sure you want to delete this layer?": "Θέλετε σίγουρα να διαγραφεί αυτό το στρώμα;",
35
+ "Are you sure you want to delete this map?": "Θέλετε σίγουρα να διαγραφεί αυτός ο χάρτης;",
36
+ "Are you sure you want to delete this property on all the features?": "Θέλετε σίγουρα να διαγραφεί αυτή η ιδιότητα από όλα τα στοιχεία;",
37
37
  "Are you sure you want to restore this version?": "Θέλετε σίγουρα να γίνει επαναφορά αυτής της έκδοσης;",
38
38
  "Attach the map to my account": "Σύνδεση του χάρτη με τον λογαριασμό μου",
39
39
  "attribution": "Αναφορά",
@@ -43,7 +43,7 @@ const locale = {
43
43
  "Back to preview": "Επιστροφή στην προεπισκόπηση",
44
44
  "Background overlay url": "Διεύθυνση URL επικάλυψης φόντου",
45
45
  "Ball": "Καρφίτσα",
46
- "Bring feature to center": "Bring feature to center",
46
+ "Bring feature to center": "Κεντράρισμα του χαρακτηριστικού",
47
47
  "Browse data": "Περιήγηση δεδομένων",
48
48
  "by": "από",
49
49
  "Cache proxied request": "Αίτημα μεσολάβησης προσωρινής μνήμης",
@@ -83,9 +83,9 @@ const locale = {
83
83
  "Congratulations, your map has been created!": "Συγχαρητήρια, ο χάρτης σας δημιουργήθηκε!",
84
84
  "Continue line": "Συνέχεια γραμμής",
85
85
  "Coordinates": "Συντεταγμένες",
86
- "copy": "copy",
86
+ "copy": "αντιγραφή",
87
87
  "Credits": "Εύσημα",
88
- "Current map view": "Current map view",
88
+ "Current map view": "Τρέχουσα προβολή χάρτη",
89
89
  "Current view instead of default map view?": "Τρέχουσα προβολή χάρτη αντί της προεπιλεγμένης",
90
90
  "Custom background": "Προσαρμοσμένο υπόβαθρο",
91
91
  "Custom overlay": "Προσαρμοσμένη επικάλυψη",
@@ -168,7 +168,7 @@ const locale = {
168
168
  "Generic": "Γενικός",
169
169
  "GeoRSS (only link)": "GeoRSS (μόνο σύνδεσμος)",
170
170
  "GeoRSS (title + image)": "GeoRSS (τίτλος + εικόνα)",
171
- "Go to \"{coords}\"": "Go to \"{coords}\"",
171
+ "Go to \"{coords}\"": "Πήγαινε στις \"{coords}\"",
172
172
  "Go to the homepage": "Μετάβαση στην αρχική σελίδα",
173
173
  "Go to «{feature}»": "Μετάβαση στο «{feature}»",
174
174
  "Heatmap intensity property": "Ένταση του χάρτη εγγύτητας",
@@ -215,7 +215,7 @@ const locale = {
215
215
  "Licence": "Άδεια",
216
216
  "licence": "Άδεια",
217
217
  "Limit bounds": "Περιορισμός ορίων",
218
- "Link to view the map": "Link to view the map",
218
+ "Link to view the map": "Σύνδεσμος για προβολή του χάρτη",
219
219
  "Link to…": "Σύνδεση με...",
220
220
  "Link with text: [[http://example.com|text of the link]]": "Σύνδεση με κείμενο: [[http://example.com|text του συνδέσμου]]",
221
221
  "Long credits": "Αναλυτικές πιστώσεις",
@@ -253,14 +253,14 @@ const locale = {
253
253
  "No licence has been set": "Δεν έχει οριστεί άδεια χρήσης",
254
254
  "No results": "Δεν υπάρχουν αποτελέσματα",
255
255
  "no": "όχι",
256
- "No.": "No.",
256
+ "No.": "Όχι.",
257
257
  "None": "Κανένα",
258
258
  "Number of desired classes (default 5)": "Αριθμός επιθυμητών κατηγοριών (προεπιλογή 5)",
259
259
  "On the bottom": "Στο κάτω μέρος",
260
260
  "On the left": "Στο αριστερό μέρος",
261
261
  "On the right": "Στο δεξί μέρος",
262
262
  "On the top": "Στο πάνω μέρος",
263
- "Only visible layers' data": "Only visible layers' data",
263
+ "Only visible layers' data": "Μόνο δεδομένα ορατών στρώσεων",
264
264
  "opacity": "Αδιαφάνεια",
265
265
  "Opacity": "Αδιαφάνεια",
266
266
  "Open current feature on load": "Άνοιγμα τρέχοντος στοιχείου κατά τη φόρτωση",
@@ -290,18 +290,18 @@ const locale = {
290
290
  "Popup": "Αναδυόμενο",
291
291
  "Powered by uMap": "Με την υποστήριξη του uMap",
292
292
  "previous": "Προηγούμενο",
293
- "Problem in the response": "Problem in the response",
293
+ "Problem in the response": "Πρόβλημα στην απόκριση",
294
294
  "Properties imported:": "Ιδιότητες που έχουν εισαχθεί:",
295
295
  "Provide an URL here": "Δώστε έναν σύνδεσμο εδώ",
296
296
  "Proxy request": "Αίτημα απομακρυσμένου διαμεσολαβητή",
297
297
  "Quantiles": "Ποσοστημόρια",
298
- "Recent": "Recent",
298
+ "Recent": "Πρόσφατα",
299
299
  "Remote data": "Απομακρυσμένα δεδομένα",
300
300
  "Remove shape from the multi": "Αφαίρεση σχήματος από πολυδεδομένο",
301
301
  "Replace layer content": "Αντικατάσταση περιεχομένου του επιπέδου",
302
302
  "Restore this version": "Επαναφορά αυτής της έκδοσης",
303
303
  "Save current edits": "Αποθήκευση τρέχουσας επεξεργασίας",
304
- "Save map": "Save map",
304
+ "Save map": "Αποθήκευση χάρτη",
305
305
  "Save this center and zoom": "Αποθήκευση αυτής της προβολής με το συγκεκριμένο κεντράρισμα και το επίπεδο εστίασης.",
306
306
  "Save this location as new feature": "Αποθήκευση αυτής της τοποθεσίας ως νέο στοιχείο",
307
307
  "Save": "Αποθήκευση",
@@ -310,14 +310,14 @@ const locale = {
310
310
  "Search": "Αναζήτηση",
311
311
  "Secret edit link:": "Μυστικός σύνδεσμος επεξεργασίας:",
312
312
  "See full screen": "Εμφάνιση πλήρους οθόνης",
313
- "See on OpenStreetMap": "See on OpenStreetMap",
313
+ "See on OpenStreetMap": "Δείτε στο OpenStreetMap",
314
314
  "Set it to false to hide this layer from the slideshow, the data browser, the popup navigation…": "Απενεργοποίηση εάν επιθυμείτε την απόκρυψη του επιπέδου κατά την προβολή των διαφανειών, την περιήγηση δεδομένων, την αναδυόμενη πλοήγηση...",
315
- "settings": "settings",
315
+ "settings": "ρυθμίσεις",
316
316
  "Shape properties": "Ιδιότητες σχήματος",
317
- "Share and download": "Share and download",
317
+ "Share and download": "Κοινοποίηση και λήψη",
318
318
  "Share this link to open a customized map view": "Share this link to open a customized map view",
319
319
  "Short credits": "Εύσημα εν συντομία",
320
- "Short link": "Short link",
320
+ "Short link": "Σύντομος σύνδεσμος",
321
321
  "Show this layer in the caption": "Εμφάνιση αυτού του επιπέδου στη λεζάντα",
322
322
  "Show/hide layer": "Εμφάνιση/απόκρυψη επιπέδου",
323
323
  "Side panel": "Πλευρική εργαλειοθήκη",
@@ -332,7 +332,7 @@ const locale = {
332
332
  "Start slideshow": "Έναρξη παρουσίασης",
333
333
  "Stop editing": "Τερματισμός επεξεργασίας",
334
334
  "Stop slideshow": "Τερματισμός παρουσίασης",
335
- "Street": "Street",
335
+ "Street": "Οδός",
336
336
  "stroke": "Πινέλο",
337
337
  "Supported scheme": "Υποστηριζόμενο σχέδιο",
338
338
  "Supported variables that will be dynamically replaced": "Υποστηριζόμενες μεταβλητές που θα αντικατασταθούν δυναμικά",
@@ -406,35 +406,35 @@ const locale = {
406
406
  "{distance} yd": "{distance} γιάρδες",
407
407
  "Edit map name and caption": "Edit map name and caption",
408
408
  "Map advanced properties": "Map advanced properties",
409
- "Edit map details": "Edit map details",
410
- "Back to browser": "Back to browser",
409
+ "Edit map details": "Επεξεργασία λεπτομερειών χάρτη",
410
+ "Back to browser": "Πίσω στον περιηγητή",
411
411
  "Toggle size": "Toggle size",
412
412
  "Display the caption control": "Display the caption control",
413
413
  "<empty value>": "<empty value>",
414
414
  "Min": "Min",
415
415
  "Max": "Max",
416
- "From": "From",
417
- "Until": "Until",
416
+ "From": "Από",
417
+ "Until": "Μέχρι",
418
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",
419
+ "Edit in OpenStreetMap": "Επεξεργασία στο OpenStreetMap",
420
420
  "Cannot determine latitude and longitude columns.": "Cannot determine latitude and longitude columns.",
421
- "Back to layers": "Back to layers",
422
- "Filters": "Filters",
421
+ "Back to layers": "Πίσω στις στρώσεις",
422
+ "Filters": "Φίλτρα",
423
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
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",
425
+ "Search keys": "Αναζήτηση κλειδιών",
426
426
  "Filters keys": "Filters keys",
427
427
  "Filter data": "Filter data",
428
428
  "Search map features…": "Search map features…",
429
429
  "Reset all": "Reset all",
430
430
  "Open browser": "Open browser",
431
431
  "Open caption": "Open caption",
432
- "Your map has been created with an anonymous account!": "Your map has been created with an anonymous account!",
432
+ "Your map has been created with an anonymous account!": "Ο χάρτης σας δημιουργήθηκε με ανώνυμο λογαριασμό!",
433
433
  "Real-time collaboration": "Real-time collaboration",
434
434
  "Cannot parse data": "Cannot parse data",
435
435
  "Start typing...": "Start typing...",
436
- "No result": "No result",
437
- "Data browser": "Data browser",
436
+ "No result": "Κανένα αποτέλεσμα",
437
+ "Data browser": "Περιηγητής δεδομένων",
438
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
439
  "Overpass supported expressions": "Overpass supported expressions",
440
440
  "key (eg. building)": "key (eg. building)",
@@ -453,27 +453,27 @@ const locale = {
453
453
  "Choose import mode": "Choose import mode",
454
454
  "Copy into the layer": "Copy into the layer",
455
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",
456
+ "Condition": "Συνθήκη",
457
+ "key=value or key!=value": "key=value ή key!=value",
458
+ "Are you sure you want to delete this rule?": "Θέλετε σίγουρα να διαγραφεί αυτός ο κανόνας;",
459
+ "empty rule": "κενός κανόνας",
460
+ "Conditional style rules": "Κανόνες μορφοποίησης υπό όρους",
461
+ "Add rule": "Προσθήκη κανόνα",
462
462
  "Browser: data": "Browser: data",
463
463
  "Browser: layers": "Browser: layers",
464
464
  "Browser: filters": "Browser: filters",
465
465
  "Enable real-time collaboration": "Enable real-time collaboration",
466
- "✅ Copied!": "✅ Copied!",
466
+ "✅ Copied!": "✅ Αντιγράφηκε!",
467
467
  "Choose a dataset": "Choose a dataset",
468
468
  "Choose this dataset": "Choose this dataset",
469
469
  "GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: thematic data from OpenStreetMap",
470
470
  "Choose a theme": "Choose a theme",
471
471
  "Symplify all geometries to points": "Symplify all geometries to points",
472
472
  "Choose this data": "Choose this data",
473
- "Search admin boundary": "Search admin boundary",
473
+ "Search admin boundary": "Αναζήτηση διοικητικού ορίου",
474
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",
475
+ "Expression": "Έκφραση",
476
+ "Geometry mode": "Λειτουργία γεωμετρίας",
477
477
  "Only geometry centers": "Only geometry centers",
478
478
  "Search area": "Search area",
479
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",
@@ -484,10 +484,10 @@ const locale = {
484
484
  "Categorized": "Categorized",
485
485
  "Alphabetical": "Alphabetical",
486
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",
487
+ "Color palette": "Παλέτα χρωμάτων",
488
+ "Categories": "Κατηγορίες",
489
+ "Comma separated list of categories.": "Λίστα κατηγοριών χωρισμένες με κόμμα.",
490
+ "Categories mode": "Λειτουργία κατηγοριών",
491
491
  "Remove filter for this column": "Remove filter for this column",
492
492
  "Add filter for this column": "Add filter for this column",
493
493
  "Rename this column": "Rename this column",
@@ -496,9 +496,9 @@ const locale = {
496
496
  "This name already exists: “{name}”": "This name already exists: “{name}”",
497
497
  "Delete selected rows": "Delete selected rows",
498
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",
499
+ "Expression is empty": "Η έκφραση είναι κενή",
500
500
  "OK": "OK",
501
- "Cancel": "Cancel"
501
+ "Cancel": "Άκυρο"
502
502
  }
503
503
  L.registerLocale("el", locale)
504
504
  L.setLocale("el")
@@ -22,7 +22,7 @@
22
22
  "Add": "Προσθήκη",
23
23
  "Advanced actions": "Εξειδικευμένες ενέργειες",
24
24
  "Advanced properties": "Εξειδικευμένες ιδιότητες",
25
- "All data and settings of the map": "All data and settings of the map",
25
+ "All data and settings of the map": "Όλα τα δεδομένα και ρυθμίσεις του χάρτη",
26
26
  "All properties are imported.": "Όλες οι ιδιότητες έχουν εισαχθεί",
27
27
  "Allow interactions": "Επιτρέπονται αλληλεπιδράσεις",
28
28
  "Allow scroll wheel zoom?": "Επιτρέπεται κύλιση εστίασης",
@@ -30,10 +30,10 @@
30
30
  "Animated transitions": "Κινούμενες μεταβάσεις",
31
31
  "Are you sure you want to cancel your changes?": "Θέλετε σίγουρα να ακυρώσετε τις αλλαγές σας;",
32
32
  "Are you sure you want to clone this map and all its datalayers?": "Θέλετε σίγουρα να κλωνοποιηθεί αυτός ο χάρτης και όλα τα επίπεδα δεδομένων του;",
33
- "Are you sure you want to delete the feature?": "Θέλετε σίγουρα να διαγράφει αυτό το στοιχείο;",
34
- "Are you sure you want to delete this layer?": "Θέλετε σίγουρα να διαγράφει αυτό το επιπέδο;",
35
- "Are you sure you want to delete this map?": "Θέλετε σίγουρα να διαγράφει αυτός ο χάρτης;",
36
- "Are you sure you want to delete this property on all the features?": "Θέλετε σίγουρα να διαγράφει αυτή η ιδιότητα από όλα τα στοιχεία;",
33
+ "Are you sure you want to delete the feature?": "Θέλετε σίγουρα να διαγραφεί αυτό το στοιχείο;",
34
+ "Are you sure you want to delete this layer?": "Θέλετε σίγουρα να διαγραφεί αυτό το στρώμα;",
35
+ "Are you sure you want to delete this map?": "Θέλετε σίγουρα να διαγραφεί αυτός ο χάρτης;",
36
+ "Are you sure you want to delete this property on all the features?": "Θέλετε σίγουρα να διαγραφεί αυτή η ιδιότητα από όλα τα στοιχεία;",
37
37
  "Are you sure you want to restore this version?": "Θέλετε σίγουρα να γίνει επαναφορά αυτής της έκδοσης;",
38
38
  "Attach the map to my account": "Σύνδεση του χάρτη με τον λογαριασμό μου",
39
39
  "attribution": "Αναφορά",
@@ -43,7 +43,7 @@
43
43
  "Back to preview": "Επιστροφή στην προεπισκόπηση",
44
44
  "Background overlay url": "Διεύθυνση URL επικάλυψης φόντου",
45
45
  "Ball": "Καρφίτσα",
46
- "Bring feature to center": "Bring feature to center",
46
+ "Bring feature to center": "Κεντράρισμα του χαρακτηριστικού",
47
47
  "Browse data": "Περιήγηση δεδομένων",
48
48
  "by": "από",
49
49
  "Cache proxied request": "Αίτημα μεσολάβησης προσωρινής μνήμης",
@@ -83,9 +83,9 @@
83
83
  "Congratulations, your map has been created!": "Συγχαρητήρια, ο χάρτης σας δημιουργήθηκε!",
84
84
  "Continue line": "Συνέχεια γραμμής",
85
85
  "Coordinates": "Συντεταγμένες",
86
- "copy": "copy",
86
+ "copy": "αντιγραφή",
87
87
  "Credits": "Εύσημα",
88
- "Current map view": "Current map view",
88
+ "Current map view": "Τρέχουσα προβολή χάρτη",
89
89
  "Current view instead of default map view?": "Τρέχουσα προβολή χάρτη αντί της προεπιλεγμένης",
90
90
  "Custom background": "Προσαρμοσμένο υπόβαθρο",
91
91
  "Custom overlay": "Προσαρμοσμένη επικάλυψη",
@@ -168,7 +168,7 @@
168
168
  "Generic": "Γενικός",
169
169
  "GeoRSS (only link)": "GeoRSS (μόνο σύνδεσμος)",
170
170
  "GeoRSS (title + image)": "GeoRSS (τίτλος + εικόνα)",
171
- "Go to \"{coords}\"": "Go to \"{coords}\"",
171
+ "Go to \"{coords}\"": "Πήγαινε στις \"{coords}\"",
172
172
  "Go to the homepage": "Μετάβαση στην αρχική σελίδα",
173
173
  "Go to «{feature}»": "Μετάβαση στο «{feature}»",
174
174
  "Heatmap intensity property": "Ένταση του χάρτη εγγύτητας",
@@ -215,7 +215,7 @@
215
215
  "Licence": "Άδεια",
216
216
  "licence": "Άδεια",
217
217
  "Limit bounds": "Περιορισμός ορίων",
218
- "Link to view the map": "Link to view the map",
218
+ "Link to view the map": "Σύνδεσμος για προβολή του χάρτη",
219
219
  "Link to…": "Σύνδεση με...",
220
220
  "Link with text: [[http://example.com|text of the link]]": "Σύνδεση με κείμενο: [[http://example.com|text του συνδέσμου]]",
221
221
  "Long credits": "Αναλυτικές πιστώσεις",
@@ -253,14 +253,14 @@
253
253
  "No licence has been set": "Δεν έχει οριστεί άδεια χρήσης",
254
254
  "No results": "Δεν υπάρχουν αποτελέσματα",
255
255
  "no": "όχι",
256
- "No.": "No.",
256
+ "No.": "Όχι.",
257
257
  "None": "Κανένα",
258
258
  "Number of desired classes (default 5)": "Αριθμός επιθυμητών κατηγοριών (προεπιλογή 5)",
259
259
  "On the bottom": "Στο κάτω μέρος",
260
260
  "On the left": "Στο αριστερό μέρος",
261
261
  "On the right": "Στο δεξί μέρος",
262
262
  "On the top": "Στο πάνω μέρος",
263
- "Only visible layers' data": "Only visible layers' data",
263
+ "Only visible layers' data": "Μόνο δεδομένα ορατών στρώσεων",
264
264
  "opacity": "Αδιαφάνεια",
265
265
  "Opacity": "Αδιαφάνεια",
266
266
  "Open current feature on load": "Άνοιγμα τρέχοντος στοιχείου κατά τη φόρτωση",
@@ -290,18 +290,18 @@
290
290
  "Popup": "Αναδυόμενο",
291
291
  "Powered by uMap": "Με την υποστήριξη του uMap",
292
292
  "previous": "Προηγούμενο",
293
- "Problem in the response": "Problem in the response",
293
+ "Problem in the response": "Πρόβλημα στην απόκριση",
294
294
  "Properties imported:": "Ιδιότητες που έχουν εισαχθεί:",
295
295
  "Provide an URL here": "Δώστε έναν σύνδεσμο εδώ",
296
296
  "Proxy request": "Αίτημα απομακρυσμένου διαμεσολαβητή",
297
297
  "Quantiles": "Ποσοστημόρια",
298
- "Recent": "Recent",
298
+ "Recent": "Πρόσφατα",
299
299
  "Remote data": "Απομακρυσμένα δεδομένα",
300
300
  "Remove shape from the multi": "Αφαίρεση σχήματος από πολυδεδομένο",
301
301
  "Replace layer content": "Αντικατάσταση περιεχομένου του επιπέδου",
302
302
  "Restore this version": "Επαναφορά αυτής της έκδοσης",
303
303
  "Save current edits": "Αποθήκευση τρέχουσας επεξεργασίας",
304
- "Save map": "Save map",
304
+ "Save map": "Αποθήκευση χάρτη",
305
305
  "Save this center and zoom": "Αποθήκευση αυτής της προβολής με το συγκεκριμένο κεντράρισμα και το επίπεδο εστίασης.",
306
306
  "Save this location as new feature": "Αποθήκευση αυτής της τοποθεσίας ως νέο στοιχείο",
307
307
  "Save": "Αποθήκευση",
@@ -310,14 +310,14 @@
310
310
  "Search": "Αναζήτηση",
311
311
  "Secret edit link:": "Μυστικός σύνδεσμος επεξεργασίας:",
312
312
  "See full screen": "Εμφάνιση πλήρους οθόνης",
313
- "See on OpenStreetMap": "See on OpenStreetMap",
313
+ "See on OpenStreetMap": "Δείτε στο OpenStreetMap",
314
314
  "Set it to false to hide this layer from the slideshow, the data browser, the popup navigation…": "Απενεργοποίηση εάν επιθυμείτε την απόκρυψη του επιπέδου κατά την προβολή των διαφανειών, την περιήγηση δεδομένων, την αναδυόμενη πλοήγηση...",
315
- "settings": "settings",
315
+ "settings": "ρυθμίσεις",
316
316
  "Shape properties": "Ιδιότητες σχήματος",
317
- "Share and download": "Share and download",
317
+ "Share and download": "Κοινοποίηση και λήψη",
318
318
  "Share this link to open a customized map view": "Share this link to open a customized map view",
319
319
  "Short credits": "Εύσημα εν συντομία",
320
- "Short link": "Short link",
320
+ "Short link": "Σύντομος σύνδεσμος",
321
321
  "Show this layer in the caption": "Εμφάνιση αυτού του επιπέδου στη λεζάντα",
322
322
  "Show/hide layer": "Εμφάνιση/απόκρυψη επιπέδου",
323
323
  "Side panel": "Πλευρική εργαλειοθήκη",
@@ -332,7 +332,7 @@
332
332
  "Start slideshow": "Έναρξη παρουσίασης",
333
333
  "Stop editing": "Τερματισμός επεξεργασίας",
334
334
  "Stop slideshow": "Τερματισμός παρουσίασης",
335
- "Street": "Street",
335
+ "Street": "Οδός",
336
336
  "stroke": "Πινέλο",
337
337
  "Supported scheme": "Υποστηριζόμενο σχέδιο",
338
338
  "Supported variables that will be dynamically replaced": "Υποστηριζόμενες μεταβλητές που θα αντικατασταθούν δυναμικά",
@@ -406,35 +406,35 @@
406
406
  "{distance}&#8239;yd": "{distance}&#8239;γιάρδες",
407
407
  "Edit map name and caption": "Edit map name and caption",
408
408
  "Map advanced properties": "Map advanced properties",
409
- "Edit map details": "Edit map details",
410
- "Back to browser": "Back to browser",
409
+ "Edit map details": "Επεξεργασία λεπτομερειών χάρτη",
410
+ "Back to browser": "Πίσω στον περιηγητή",
411
411
  "Toggle size": "Toggle size",
412
412
  "Display the caption control": "Display the caption control",
413
413
  "<empty value>": "<empty value>",
414
414
  "Min": "Min",
415
415
  "Max": "Max",
416
- "From": "From",
417
- "Until": "Until",
416
+ "From": "Από",
417
+ "Until": "Μέχρι",
418
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",
419
+ "Edit in OpenStreetMap": "Επεξεργασία στο OpenStreetMap",
420
420
  "Cannot determine latitude and longitude columns.": "Cannot determine latitude and longitude columns.",
421
- "Back to layers": "Back to layers",
422
- "Filters": "Filters",
421
+ "Back to layers": "Πίσω στις στρώσεις",
422
+ "Filters": "Φίλτρα",
423
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
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",
425
+ "Search keys": "Αναζήτηση κλειδιών",
426
426
  "Filters keys": "Filters keys",
427
427
  "Filter data": "Filter data",
428
428
  "Search map features…": "Search map features…",
429
429
  "Reset all": "Reset all",
430
430
  "Open browser": "Open browser",
431
431
  "Open caption": "Open caption",
432
- "Your map has been created with an anonymous account!": "Your map has been created with an anonymous account!",
432
+ "Your map has been created with an anonymous account!": "Ο χάρτης σας δημιουργήθηκε με ανώνυμο λογαριασμό!",
433
433
  "Real-time collaboration": "Real-time collaboration",
434
434
  "Cannot parse data": "Cannot parse data",
435
435
  "Start typing...": "Start typing...",
436
- "No result": "No result",
437
- "Data browser": "Data browser",
436
+ "No result": "Κανένα αποτέλεσμα",
437
+ "Data browser": "Περιηγητής δεδομένων",
438
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
439
  "Overpass supported expressions": "Overpass supported expressions",
440
440
  "key (eg. building)": "key (eg. building)",
@@ -453,27 +453,27 @@
453
453
  "Choose import mode": "Choose import mode",
454
454
  "Copy into the layer": "Copy into the layer",
455
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",
456
+ "Condition": "Συνθήκη",
457
+ "key=value or key!=value": "key=value ή key!=value",
458
+ "Are you sure you want to delete this rule?": "Θέλετε σίγουρα να διαγραφεί αυτός ο κανόνας;",
459
+ "empty rule": "κενός κανόνας",
460
+ "Conditional style rules": "Κανόνες μορφοποίησης υπό όρους",
461
+ "Add rule": "Προσθήκη κανόνα",
462
462
  "Browser: data": "Browser: data",
463
463
  "Browser: layers": "Browser: layers",
464
464
  "Browser: filters": "Browser: filters",
465
465
  "Enable real-time collaboration": "Enable real-time collaboration",
466
- "✅ Copied!": "✅ Copied!",
466
+ "✅ Copied!": "✅ Αντιγράφηκε!",
467
467
  "Choose a dataset": "Choose a dataset",
468
468
  "Choose this dataset": "Choose this dataset",
469
469
  "GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: thematic data from OpenStreetMap",
470
470
  "Choose a theme": "Choose a theme",
471
471
  "Symplify all geometries to points": "Symplify all geometries to points",
472
472
  "Choose this data": "Choose this data",
473
- "Search admin boundary": "Search admin boundary",
473
+ "Search admin boundary": "Αναζήτηση διοικητικού ορίου",
474
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",
475
+ "Expression": "Έκφραση",
476
+ "Geometry mode": "Λειτουργία γεωμετρίας",
477
477
  "Only geometry centers": "Only geometry centers",
478
478
  "Search area": "Search area",
479
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",
@@ -484,10 +484,10 @@
484
484
  "Categorized": "Categorized",
485
485
  "Alphabetical": "Alphabetical",
486
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",
487
+ "Color palette": "Παλέτα χρωμάτων",
488
+ "Categories": "Κατηγορίες",
489
+ "Comma separated list of categories.": "Λίστα κατηγοριών χωρισμένες με κόμμα.",
490
+ "Categories mode": "Λειτουργία κατηγοριών",
491
491
  "Remove filter for this column": "Remove filter for this column",
492
492
  "Add filter for this column": "Add filter for this column",
493
493
  "Rename this column": "Rename this column",
@@ -496,7 +496,7 @@
496
496
  "This name already exists: “{name}”": "This name already exists: “{name}”",
497
497
  "Delete selected rows": "Delete selected rows",
498
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",
499
+ "Expression is empty": "Η έκφραση είναι κενή",
500
500
  "OK": "OK",
501
- "Cancel": "Cancel"
501
+ "Cancel": "Άκυρο"
502
502
  }
@@ -498,7 +498,13 @@ const locale = {
498
498
  "Found {count} rows. Are you sure you want to delete all?": "Found {count} rows. Are you sure you want to delete all?",
499
499
  "Expression is empty": "Expression is empty",
500
500
  "OK": "OK",
501
- "Cancel": "Cancel"
501
+ "Cancel": "Cancel",
502
+ "Attach map to a team": "Attach map to a team",
503
+ "Display the polygon inverted": "Display the polygon inverted",
504
+ "Proportional circles": "Proportional circles",
505
+ "Property name to compute circles": "Property name to compute circles",
506
+ "Min circle radius": "Min circle radius",
507
+ "Max circle radius": "Max circle radius"
502
508
  }
503
509
  L.registerLocale("en", locale)
504
510
  L.setLocale("en")
@@ -498,5 +498,11 @@
498
498
  "Found {count} rows. Are you sure you want to delete all?": "Found {count} rows. Are you sure you want to delete all?",
499
499
  "Expression is empty": "Expression is empty",
500
500
  "OK": "OK",
501
- "Cancel": "Cancel"
501
+ "Cancel": "Cancel",
502
+ "Attach map to a team": "Attach map to a team",
503
+ "Display the polygon inverted": "Display the polygon inverted",
504
+ "Proportional circles": "Proportional circles",
505
+ "Property name to compute circles": "Property name to compute circles",
506
+ "Min circle radius": "Min circle radius",
507
+ "Max circle radius": "Max circle radius"
502
508
  }