umap-project 2.5.1__py3-none-any.whl → 2.6.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of umap-project might be problematic. Click here for more details.
- umap/__init__.py +1 -1
- umap/admin.py +6 -1
- umap/context_processors.py +2 -1
- umap/decorators.py +13 -2
- umap/forms.py +26 -2
- umap/locale/br/LC_MESSAGES/django.mo +0 -0
- umap/locale/br/LC_MESSAGES/django.po +252 -146
- umap/locale/ca/LC_MESSAGES/django.mo +0 -0
- umap/locale/ca/LC_MESSAGES/django.po +274 -162
- umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- umap/locale/cs_CZ/LC_MESSAGES/django.po +261 -150
- umap/locale/de/LC_MESSAGES/django.mo +0 -0
- umap/locale/de/LC_MESSAGES/django.po +299 -187
- umap/locale/el/LC_MESSAGES/django.mo +0 -0
- umap/locale/el/LC_MESSAGES/django.po +215 -159
- umap/locale/en/LC_MESSAGES/django.po +211 -155
- umap/locale/es/LC_MESSAGES/django.mo +0 -0
- umap/locale/es/LC_MESSAGES/django.po +255 -144
- umap/locale/eu/LC_MESSAGES/django.mo +0 -0
- umap/locale/eu/LC_MESSAGES/django.po +254 -198
- umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
- umap/locale/fa_IR/LC_MESSAGES/django.po +347 -235
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +216 -160
- umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- umap/locale/hu/LC_MESSAGES/django.po +215 -159
- umap/locale/it/LC_MESSAGES/django.mo +0 -0
- umap/locale/it/LC_MESSAGES/django.po +252 -146
- umap/locale/ms/LC_MESSAGES/django.mo +0 -0
- umap/locale/ms/LC_MESSAGES/django.po +252 -146
- umap/locale/pl/LC_MESSAGES/django.mo +0 -0
- umap/locale/pl/LC_MESSAGES/django.po +254 -148
- umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- umap/locale/pt/LC_MESSAGES/django.po +215 -159
- umap/locale/sv/LC_MESSAGES/django.mo +0 -0
- umap/locale/sv/LC_MESSAGES/django.po +254 -143
- umap/locale/th_TH/LC_MESSAGES/django.mo +0 -0
- umap/locale/th_TH/LC_MESSAGES/django.po +125 -70
- umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
- umap/locale/zh_TW/LC_MESSAGES/django.po +256 -145
- umap/migrations/0022_add_team.py +94 -0
- umap/models.py +45 -10
- umap/settings/__init__.py +2 -0
- umap/settings/base.py +9 -2
- umap/static/umap/base.css +32 -41
- umap/static/umap/content.css +19 -25
- umap/static/umap/css/icon.css +63 -37
- umap/static/umap/css/importers.css +1 -1
- umap/static/umap/css/slideshow.css +7 -5
- umap/static/umap/css/tableeditor.css +4 -3
- umap/static/umap/img/16-white.svg +1 -4
- umap/static/umap/img/16.svg +2 -6
- umap/static/umap/img/24-white.svg +4 -4
- umap/static/umap/img/24.svg +6 -6
- umap/static/umap/img/source/16-white.svg +2 -5
- umap/static/umap/img/source/16.svg +3 -7
- umap/static/umap/img/source/24-white.svg +7 -14
- umap/static/umap/img/source/24.svg +10 -17
- umap/static/umap/js/components/alerts/alert.css +20 -8
- umap/static/umap/js/modules/autocomplete.js +8 -12
- umap/static/umap/js/modules/browser.js +4 -3
- umap/static/umap/js/modules/caption.js +9 -11
- umap/static/umap/js/modules/data/features.js +993 -0
- umap/static/umap/js/modules/data/layer.js +1210 -0
- umap/static/umap/js/modules/formatter.js +12 -3
- umap/static/umap/js/modules/global.js +21 -5
- umap/static/umap/js/modules/importers/overpass.js +22 -8
- umap/static/umap/js/modules/permissions.js +280 -0
- umap/static/umap/js/{umap.icon.js → modules/rendering/icon.js} +77 -56
- umap/static/umap/js/modules/rendering/layers/base.js +105 -0
- umap/static/umap/js/modules/rendering/layers/classified.js +484 -0
- umap/static/umap/js/modules/rendering/layers/cluster.js +103 -0
- umap/static/umap/js/modules/rendering/layers/heat.js +182 -0
- umap/static/umap/js/modules/rendering/popup.js +99 -0
- umap/static/umap/js/modules/rendering/template.js +217 -0
- umap/static/umap/js/modules/rendering/ui.js +610 -0
- umap/static/umap/js/modules/rules.js +16 -3
- umap/static/umap/js/modules/schema.js +25 -1
- umap/static/umap/js/modules/share.js +66 -45
- umap/static/umap/js/modules/sync/updaters.js +9 -10
- umap/static/umap/js/modules/tableeditor.js +7 -7
- umap/static/umap/js/modules/ui/dialog.js +8 -4
- umap/static/umap/js/modules/utils.js +22 -13
- umap/static/umap/js/umap.controls.js +80 -146
- umap/static/umap/js/umap.core.js +9 -9
- umap/static/umap/js/umap.forms.js +41 -17
- umap/static/umap/js/umap.js +72 -65
- umap/static/umap/locale/am_ET.js +8 -2
- umap/static/umap/locale/am_ET.json +8 -2
- umap/static/umap/locale/ar.js +8 -2
- umap/static/umap/locale/ar.json +8 -2
- umap/static/umap/locale/ast.js +8 -2
- umap/static/umap/locale/ast.json +8 -2
- umap/static/umap/locale/bg.js +8 -2
- umap/static/umap/locale/bg.json +8 -2
- umap/static/umap/locale/br.js +42 -36
- umap/static/umap/locale/br.json +42 -36
- umap/static/umap/locale/ca.js +67 -61
- umap/static/umap/locale/ca.json +67 -61
- umap/static/umap/locale/cs_CZ.js +8 -2
- umap/static/umap/locale/cs_CZ.json +8 -2
- umap/static/umap/locale/da.js +8 -2
- umap/static/umap/locale/da.json +8 -2
- umap/static/umap/locale/de.js +143 -137
- umap/static/umap/locale/de.json +143 -137
- umap/static/umap/locale/el.js +54 -48
- umap/static/umap/locale/el.json +54 -48
- umap/static/umap/locale/en.js +10 -2
- umap/static/umap/locale/en.json +10 -2
- umap/static/umap/locale/en_US.json +8 -2
- umap/static/umap/locale/es.js +8 -2
- umap/static/umap/locale/es.json +8 -2
- umap/static/umap/locale/et.js +8 -2
- umap/static/umap/locale/et.json +8 -2
- umap/static/umap/locale/eu.js +346 -338
- umap/static/umap/locale/eu.json +346 -338
- umap/static/umap/locale/fa_IR.js +415 -407
- umap/static/umap/locale/fa_IR.json +415 -407
- umap/static/umap/locale/fi.js +8 -2
- umap/static/umap/locale/fi.json +8 -2
- umap/static/umap/locale/fr.js +11 -3
- umap/static/umap/locale/fr.json +11 -3
- umap/static/umap/locale/gl.js +8 -2
- umap/static/umap/locale/gl.json +8 -2
- umap/static/umap/locale/he.js +8 -2
- umap/static/umap/locale/he.json +8 -2
- umap/static/umap/locale/hr.js +8 -2
- umap/static/umap/locale/hr.json +8 -2
- umap/static/umap/locale/hu.js +31 -23
- umap/static/umap/locale/hu.json +31 -23
- umap/static/umap/locale/id.js +8 -2
- umap/static/umap/locale/id.json +8 -2
- umap/static/umap/locale/is.js +8 -2
- umap/static/umap/locale/is.json +8 -2
- umap/static/umap/locale/it.js +8 -2
- umap/static/umap/locale/it.json +8 -2
- umap/static/umap/locale/ja.js +8 -2
- umap/static/umap/locale/ja.json +8 -2
- umap/static/umap/locale/ko.js +8 -2
- umap/static/umap/locale/ko.json +8 -2
- umap/static/umap/locale/lt.js +8 -2
- umap/static/umap/locale/lt.json +8 -2
- umap/static/umap/locale/ms.js +8 -2
- umap/static/umap/locale/ms.json +8 -2
- umap/static/umap/locale/nl.js +8 -2
- umap/static/umap/locale/nl.json +8 -2
- umap/static/umap/locale/no.js +8 -2
- umap/static/umap/locale/no.json +8 -2
- umap/static/umap/locale/pl.js +54 -48
- umap/static/umap/locale/pl.json +54 -48
- umap/static/umap/locale/pl_PL.json +8 -2
- umap/static/umap/locale/pt.js +24 -18
- umap/static/umap/locale/pt.json +24 -18
- umap/static/umap/locale/pt_BR.js +8 -2
- umap/static/umap/locale/pt_BR.json +8 -2
- umap/static/umap/locale/pt_PT.js +214 -208
- umap/static/umap/locale/pt_PT.json +214 -208
- umap/static/umap/locale/ro.js +8 -2
- umap/static/umap/locale/ro.json +8 -2
- umap/static/umap/locale/ru.js +8 -2
- umap/static/umap/locale/ru.json +8 -2
- umap/static/umap/locale/sk_SK.js +8 -2
- umap/static/umap/locale/sk_SK.json +8 -2
- umap/static/umap/locale/sl.js +8 -2
- umap/static/umap/locale/sl.json +8 -2
- umap/static/umap/locale/sr.js +8 -2
- umap/static/umap/locale/sr.json +8 -2
- umap/static/umap/locale/sv.js +8 -2
- umap/static/umap/locale/sv.json +8 -2
- umap/static/umap/locale/th_TH.js +33 -27
- umap/static/umap/locale/th_TH.json +33 -27
- umap/static/umap/locale/tr.js +8 -2
- umap/static/umap/locale/tr.json +8 -2
- umap/static/umap/locale/uk_UA.js +8 -2
- umap/static/umap/locale/uk_UA.json +8 -2
- umap/static/umap/locale/vi.js +8 -2
- umap/static/umap/locale/vi.json +8 -2
- umap/static/umap/locale/vi_VN.json +8 -2
- umap/static/umap/locale/zh.js +8 -2
- umap/static/umap/locale/zh.json +8 -2
- umap/static/umap/locale/zh_CN.json +8 -2
- umap/static/umap/locale/zh_TW.Big5.json +8 -2
- umap/static/umap/locale/zh_TW.js +102 -96
- umap/static/umap/locale/zh_TW.json +102 -96
- umap/static/umap/map.css +111 -108
- umap/static/umap/nav.css +19 -10
- umap/static/umap/unittests/utils.js +230 -107
- umap/static/umap/vars.css +1 -0
- umap/static/umap/vendors/csv2geojson/csv2geojson.js +62 -40
- umap/static/umap/vendors/editable/Leaflet.Editable.js +2079 -1937
- umap/storage.py +1 -0
- umap/templates/404.html +5 -1
- umap/templates/500.html +3 -1
- umap/templates/auth/user_detail.html +8 -2
- umap/templates/auth/user_form.html +19 -10
- umap/templates/auth/user_stars.html +8 -2
- umap/templates/base.html +1 -0
- umap/templates/registration/login.html +18 -3
- umap/templates/umap/about.html +1 -0
- umap/templates/umap/about_summary.html +22 -7
- umap/templates/umap/components/alerts/alert.html +42 -21
- umap/templates/umap/content.html +2 -0
- umap/templates/umap/content_footer.html +7 -3
- umap/templates/umap/css.html +1 -0
- umap/templates/umap/dashboard_menu.html +15 -0
- umap/templates/umap/home.html +14 -4
- umap/templates/umap/js.html +4 -9
- umap/templates/umap/login_popup_end.html +10 -4
- umap/templates/umap/map_detail.html +8 -2
- umap/templates/umap/map_fragment.html +3 -1
- umap/templates/umap/map_init.html +2 -1
- umap/templates/umap/map_list.html +6 -3
- umap/templates/umap/map_table.html +36 -12
- umap/templates/umap/messages.html +0 -1
- umap/templates/umap/navigation.html +2 -1
- umap/templates/umap/password_change.html +5 -1
- umap/templates/umap/password_change_done.html +8 -2
- umap/templates/umap/search.html +8 -2
- umap/templates/umap/search_bar.html +1 -0
- umap/templates/umap/team_confirm_delete.html +19 -0
- umap/templates/umap/team_detail.html +27 -0
- umap/templates/umap/team_form.html +60 -0
- umap/templates/umap/user_dashboard.html +7 -9
- umap/templates/umap/user_teams.html +51 -0
- umap/tests/base.py +8 -1
- umap/tests/conftest.py +6 -0
- umap/tests/fixtures/test_circles_layer.geojson +219 -0
- umap/tests/fixtures/test_upload_georss.xml +20 -0
- umap/tests/integration/conftest.py +18 -4
- umap/tests/integration/helpers.py +12 -0
- umap/tests/integration/test_anonymous_owned_map.py +23 -0
- umap/tests/integration/test_basics.py +29 -0
- umap/tests/integration/test_browser.py +20 -0
- umap/tests/integration/test_caption.py +20 -0
- umap/tests/integration/test_circles_layer.py +69 -0
- umap/tests/integration/test_conditional_rules.py +102 -17
- umap/tests/integration/test_draw_polygon.py +138 -13
- umap/tests/integration/test_draw_polyline.py +8 -18
- umap/tests/integration/test_edit_datalayer.py +3 -3
- umap/tests/integration/test_import.py +124 -5
- umap/tests/integration/test_owned_map.py +21 -13
- umap/tests/integration/test_querystring.py +7 -0
- umap/tests/integration/test_team.py +47 -0
- umap/tests/integration/test_tilelayer.py +19 -2
- umap/tests/integration/test_view_marker.py +28 -1
- umap/tests/integration/test_websocket_sync.py +5 -5
- umap/tests/test_datalayer.py +32 -7
- umap/tests/test_datalayer_views.py +1 -1
- umap/tests/test_map.py +30 -4
- umap/tests/test_map_views.py +2 -2
- umap/tests/test_statics.py +40 -0
- umap/tests/test_team_views.py +131 -0
- umap/tests/test_views.py +15 -1
- umap/urls.py +23 -13
- umap/views.py +116 -10
- {umap_project-2.5.1.dist-info → umap_project-2.6.0.dist-info}/METADATA +14 -14
- {umap_project-2.5.1.dist-info → umap_project-2.6.0.dist-info}/RECORD +260 -253
- umap/static/umap/js/umap.datalayer.permissions.js +0 -70
- umap/static/umap/js/umap.features.js +0 -1290
- umap/static/umap/js/umap.layer.js +0 -1837
- umap/static/umap/js/umap.permissions.js +0 -208
- umap/static/umap/js/umap.popup.js +0 -341
- umap/static/umap/test/TableEditor.js +0 -104
- umap/static/umap/vendors/leaflet/leaflet-src.js +0 -14512
- umap/static/umap/vendors/leaflet/leaflet-src.js.map +0 -1
- umap/static/umap/vendors/leaflet/leaflet.js +0 -6
- umap/static/umap/vendors/leaflet/leaflet.js.map +0 -1
- umap/static/umap/vendors/markercluster/WhereAreTheJavascriptFiles.txt +0 -5
- umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js +0 -2718
- umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js.map +0 -1
- umap/static/umap/vendors/toolbar/leaflet.toolbar-src.css +0 -117
- umap/static/umap/vendors/toolbar/leaflet.toolbar-src.js +0 -365
- umap/tests/integration/test_statics.py +0 -47
- {umap_project-2.5.1.dist-info → umap_project-2.6.0.dist-info}/WHEEL +0 -0
- {umap_project-2.5.1.dist-info → umap_project-2.6.0.dist-info}/entry_points.txt +0 -0
- {umap_project-2.5.1.dist-info → umap_project-2.6.0.dist-info}/licenses/LICENSE +0 -0
umap/static/umap/locale/el.js
CHANGED
|
@@ -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": "
|
|
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": "
|
|
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": "
|
|
86
|
+
"copy": "αντιγραφή",
|
|
87
87
|
"Credits": "Εύσημα",
|
|
88
|
-
"Current map view": "
|
|
88
|
+
"Current map view": "Τρέχουσα προβολή χάρτη",
|
|
89
89
|
"Current view instead of default map view?": "Τρέχουσα προβολή χάρτη αντί της προεπιλεγμένης",
|
|
90
90
|
"Custom background": "Προσαρμοσμένο υπόβαθρο",
|
|
91
91
|
"Custom overlay": "Προσαρμοσμένη επικάλυψη",
|
|
@@ -115,7 +115,6 @@ const locale = {
|
|
|
115
115
|
"display name": "Όνομα που εμφανίζεται",
|
|
116
116
|
"Display on load": "Εμφάνιση κατά την φόρτωση",
|
|
117
117
|
"Display the control to open OpenStreetMap editor": "Εμφάνιση εικονιδίου επεξεργασίας OpenStreetMap",
|
|
118
|
-
"Display the data layers control": "Εμφάνιση εικονιδίου επιπέδων με δεδομένα",
|
|
119
118
|
"Display the embed control": "Εμφάνιση εικονιδίου διαμοιρασμού",
|
|
120
119
|
"Display the fullscreen control": "Εμφάνιση εικονιδίου πλήρους οθόνης",
|
|
121
120
|
"Display the locate control": "Εμφάνιση εικονιδίου γεωεντοπισμού",
|
|
@@ -168,7 +167,7 @@ const locale = {
|
|
|
168
167
|
"Generic": "Γενικός",
|
|
169
168
|
"GeoRSS (only link)": "GeoRSS (μόνο σύνδεσμος)",
|
|
170
169
|
"GeoRSS (title + image)": "GeoRSS (τίτλος + εικόνα)",
|
|
171
|
-
"Go to \"{coords}\"": "
|
|
170
|
+
"Go to \"{coords}\"": "Πήγαινε στις \"{coords}\"",
|
|
172
171
|
"Go to the homepage": "Μετάβαση στην αρχική σελίδα",
|
|
173
172
|
"Go to «{feature}»": "Μετάβαση στο «{feature}»",
|
|
174
173
|
"Heatmap intensity property": "Ένταση του χάρτη εγγύτητας",
|
|
@@ -215,7 +214,7 @@ const locale = {
|
|
|
215
214
|
"Licence": "Άδεια",
|
|
216
215
|
"licence": "Άδεια",
|
|
217
216
|
"Limit bounds": "Περιορισμός ορίων",
|
|
218
|
-
"Link to view the map": "
|
|
217
|
+
"Link to view the map": "Σύνδεσμος για προβολή του χάρτη",
|
|
219
218
|
"Link to…": "Σύνδεση με...",
|
|
220
219
|
"Link with text: [[http://example.com|text of the link]]": "Σύνδεση με κείμενο: [[http://example.com|text του συνδέσμου]]",
|
|
221
220
|
"Long credits": "Αναλυτικές πιστώσεις",
|
|
@@ -253,14 +252,14 @@ const locale = {
|
|
|
253
252
|
"No licence has been set": "Δεν έχει οριστεί άδεια χρήσης",
|
|
254
253
|
"No results": "Δεν υπάρχουν αποτελέσματα",
|
|
255
254
|
"no": "όχι",
|
|
256
|
-
"No.": "
|
|
255
|
+
"No.": "Όχι.",
|
|
257
256
|
"None": "Κανένα",
|
|
258
257
|
"Number of desired classes (default 5)": "Αριθμός επιθυμητών κατηγοριών (προεπιλογή 5)",
|
|
259
258
|
"On the bottom": "Στο κάτω μέρος",
|
|
260
259
|
"On the left": "Στο αριστερό μέρος",
|
|
261
260
|
"On the right": "Στο δεξί μέρος",
|
|
262
261
|
"On the top": "Στο πάνω μέρος",
|
|
263
|
-
"Only visible layers' data": "
|
|
262
|
+
"Only visible layers' data": "Μόνο δεδομένα ορατών στρώσεων",
|
|
264
263
|
"opacity": "Αδιαφάνεια",
|
|
265
264
|
"Opacity": "Αδιαφάνεια",
|
|
266
265
|
"Open current feature on load": "Άνοιγμα τρέχοντος στοιχείου κατά τη φόρτωση",
|
|
@@ -290,18 +289,18 @@ const locale = {
|
|
|
290
289
|
"Popup": "Αναδυόμενο",
|
|
291
290
|
"Powered by uMap": "Με την υποστήριξη του uMap",
|
|
292
291
|
"previous": "Προηγούμενο",
|
|
293
|
-
"Problem in the response": "
|
|
292
|
+
"Problem in the response": "Πρόβλημα στην απόκριση",
|
|
294
293
|
"Properties imported:": "Ιδιότητες που έχουν εισαχθεί:",
|
|
295
294
|
"Provide an URL here": "Δώστε έναν σύνδεσμο εδώ",
|
|
296
295
|
"Proxy request": "Αίτημα απομακρυσμένου διαμεσολαβητή",
|
|
297
296
|
"Quantiles": "Ποσοστημόρια",
|
|
298
|
-
"Recent": "
|
|
297
|
+
"Recent": "Πρόσφατα",
|
|
299
298
|
"Remote data": "Απομακρυσμένα δεδομένα",
|
|
300
299
|
"Remove shape from the multi": "Αφαίρεση σχήματος από πολυδεδομένο",
|
|
301
300
|
"Replace layer content": "Αντικατάσταση περιεχομένου του επιπέδου",
|
|
302
301
|
"Restore this version": "Επαναφορά αυτής της έκδοσης",
|
|
303
302
|
"Save current edits": "Αποθήκευση τρέχουσας επεξεργασίας",
|
|
304
|
-
"Save map": "
|
|
303
|
+
"Save map": "Αποθήκευση χάρτη",
|
|
305
304
|
"Save this center and zoom": "Αποθήκευση αυτής της προβολής με το συγκεκριμένο κεντράρισμα και το επίπεδο εστίασης.",
|
|
306
305
|
"Save this location as new feature": "Αποθήκευση αυτής της τοποθεσίας ως νέο στοιχείο",
|
|
307
306
|
"Save": "Αποθήκευση",
|
|
@@ -310,14 +309,14 @@ const locale = {
|
|
|
310
309
|
"Search": "Αναζήτηση",
|
|
311
310
|
"Secret edit link:": "Μυστικός σύνδεσμος επεξεργασίας:",
|
|
312
311
|
"See full screen": "Εμφάνιση πλήρους οθόνης",
|
|
313
|
-
"See on OpenStreetMap": "
|
|
312
|
+
"See on OpenStreetMap": "Δείτε στο OpenStreetMap",
|
|
314
313
|
"Set it to false to hide this layer from the slideshow, the data browser, the popup navigation…": "Απενεργοποίηση εάν επιθυμείτε την απόκρυψη του επιπέδου κατά την προβολή των διαφανειών, την περιήγηση δεδομένων, την αναδυόμενη πλοήγηση...",
|
|
315
|
-
"settings": "
|
|
314
|
+
"settings": "ρυθμίσεις",
|
|
316
315
|
"Shape properties": "Ιδιότητες σχήματος",
|
|
317
|
-
"Share and download": "
|
|
316
|
+
"Share and download": "Κοινοποίηση και λήψη",
|
|
318
317
|
"Share this link to open a customized map view": "Share this link to open a customized map view",
|
|
319
318
|
"Short credits": "Εύσημα εν συντομία",
|
|
320
|
-
"Short link": "
|
|
319
|
+
"Short link": "Σύντομος σύνδεσμος",
|
|
321
320
|
"Show this layer in the caption": "Εμφάνιση αυτού του επιπέδου στη λεζάντα",
|
|
322
321
|
"Show/hide layer": "Εμφάνιση/απόκρυψη επιπέδου",
|
|
323
322
|
"Side panel": "Πλευρική εργαλειοθήκη",
|
|
@@ -332,7 +331,7 @@ const locale = {
|
|
|
332
331
|
"Start slideshow": "Έναρξη παρουσίασης",
|
|
333
332
|
"Stop editing": "Τερματισμός επεξεργασίας",
|
|
334
333
|
"Stop slideshow": "Τερματισμός παρουσίασης",
|
|
335
|
-
"Street": "
|
|
334
|
+
"Street": "Οδός",
|
|
336
335
|
"stroke": "Πινέλο",
|
|
337
336
|
"Supported scheme": "Υποστηριζόμενο σχέδιο",
|
|
338
337
|
"Supported variables that will be dynamically replaced": "Υποστηριζόμενες μεταβλητές που θα αντικατασταθούν δυναμικά",
|
|
@@ -406,35 +405,35 @@ const locale = {
|
|
|
406
405
|
"{distance} yd": "{distance} γιάρδες",
|
|
407
406
|
"Edit map name and caption": "Edit map name and caption",
|
|
408
407
|
"Map advanced properties": "Map advanced properties",
|
|
409
|
-
"Edit map details": "
|
|
410
|
-
"Back to browser": "
|
|
408
|
+
"Edit map details": "Επεξεργασία λεπτομερειών χάρτη",
|
|
409
|
+
"Back to browser": "Πίσω στον περιηγητή",
|
|
411
410
|
"Toggle size": "Toggle size",
|
|
412
411
|
"Display the caption control": "Display the caption control",
|
|
413
412
|
"<empty value>": "<empty value>",
|
|
414
413
|
"Min": "Min",
|
|
415
414
|
"Max": "Max",
|
|
416
|
-
"From": "
|
|
417
|
-
"Until": "
|
|
415
|
+
"From": "Από",
|
|
416
|
+
"Until": "Μέχρι",
|
|
418
417
|
"Example: key1,key2|Label 2,key3|Label 3|checkbox": "Example: key1,key2|Label 2,key3|Label 3|checkbox",
|
|
419
|
-
"Edit in OpenStreetMap": "
|
|
418
|
+
"Edit in OpenStreetMap": "Επεξεργασία στο OpenStreetMap",
|
|
420
419
|
"Cannot determine latitude and longitude columns.": "Cannot determine latitude and longitude columns.",
|
|
421
|
-
"Back to layers": "
|
|
422
|
-
"Filters": "
|
|
420
|
+
"Back to layers": "Πίσω στις στρώσεις",
|
|
421
|
+
"Filters": "Φίλτρα",
|
|
423
422
|
"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
423
|
"Comma separated list of properties to use for filters (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key). To control input field type, add it after another | (eg.: mykey|My Key|checkbox,otherkey|Other Key|datetime). Allowed values for the input field type are checkbox (default), radio, number, date and datetime.": "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": "
|
|
424
|
+
"Search keys": "Αναζήτηση κλειδιών",
|
|
426
425
|
"Filters keys": "Filters keys",
|
|
427
426
|
"Filter data": "Filter data",
|
|
428
427
|
"Search map features…": "Search map features…",
|
|
429
428
|
"Reset all": "Reset all",
|
|
430
429
|
"Open browser": "Open browser",
|
|
431
430
|
"Open caption": "Open caption",
|
|
432
|
-
"Your map has been created with an anonymous account!": "
|
|
431
|
+
"Your map has been created with an anonymous account!": "Ο χάρτης σας δημιουργήθηκε με ανώνυμο λογαριασμό!",
|
|
433
432
|
"Real-time collaboration": "Real-time collaboration",
|
|
434
433
|
"Cannot parse data": "Cannot parse data",
|
|
435
434
|
"Start typing...": "Start typing...",
|
|
436
|
-
"No result": "
|
|
437
|
-
"Data browser": "
|
|
435
|
+
"No result": "Κανένα αποτέλεσμα",
|
|
436
|
+
"Data browser": "Περιηγητής δεδομένων",
|
|
438
437
|
"When providing an URL, uMap can copy the remote data in a layer, or add this URL as remote source of the layer. In that case, data will always be fetched from that URL, and thus be up to date, but it will not be possible to edit it inside uMap.": "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
438
|
"Overpass supported expressions": "Overpass supported expressions",
|
|
440
439
|
"key (eg. building)": "key (eg. building)",
|
|
@@ -453,27 +452,27 @@ const locale = {
|
|
|
453
452
|
"Choose import mode": "Choose import mode",
|
|
454
453
|
"Copy into the layer": "Copy into the layer",
|
|
455
454
|
"Link to the layer as remote data": "Link to the layer as remote data",
|
|
456
|
-
"Condition": "
|
|
457
|
-
"key=value or key!=value": "key=value
|
|
458
|
-
"Are you sure you want to delete this rule?": "
|
|
459
|
-
"empty rule": "
|
|
460
|
-
"Conditional style rules": "
|
|
461
|
-
"Add rule": "
|
|
455
|
+
"Condition": "Συνθήκη",
|
|
456
|
+
"key=value or key!=value": "key=value ή key!=value",
|
|
457
|
+
"Are you sure you want to delete this rule?": "Θέλετε σίγουρα να διαγραφεί αυτός ο κανόνας;",
|
|
458
|
+
"empty rule": "κενός κανόνας",
|
|
459
|
+
"Conditional style rules": "Κανόνες μορφοποίησης υπό όρους",
|
|
460
|
+
"Add rule": "Προσθήκη κανόνα",
|
|
462
461
|
"Browser: data": "Browser: data",
|
|
463
462
|
"Browser: layers": "Browser: layers",
|
|
464
463
|
"Browser: filters": "Browser: filters",
|
|
465
464
|
"Enable real-time collaboration": "Enable real-time collaboration",
|
|
466
|
-
"✅ Copied!": "✅
|
|
465
|
+
"✅ Copied!": "✅ Αντιγράφηκε!",
|
|
467
466
|
"Choose a dataset": "Choose a dataset",
|
|
468
467
|
"Choose this dataset": "Choose this dataset",
|
|
469
468
|
"GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: thematic data from OpenStreetMap",
|
|
470
469
|
"Choose a theme": "Choose a theme",
|
|
471
470
|
"Symplify all geometries to points": "Symplify all geometries to points",
|
|
472
471
|
"Choose this data": "Choose this data",
|
|
473
|
-
"Search admin boundary": "
|
|
472
|
+
"Search admin boundary": "Αναζήτηση διοικητικού ορίου",
|
|
474
473
|
"Please choose a theme and a boundary first.": "Please choose a theme and a boundary first.",
|
|
475
|
-
"Expression": "
|
|
476
|
-
"Geometry mode": "
|
|
474
|
+
"Expression": "Έκφραση",
|
|
475
|
+
"Geometry mode": "Λειτουργία γεωμετρίας",
|
|
477
476
|
"Only geometry centers": "Only geometry centers",
|
|
478
477
|
"Search area": "Search area",
|
|
479
478
|
"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 +483,10 @@ const locale = {
|
|
|
484
483
|
"Categorized": "Categorized",
|
|
485
484
|
"Alphabetical": "Alphabetical",
|
|
486
485
|
"Category property": "Category property",
|
|
487
|
-
"Color palette": "
|
|
488
|
-
"Categories": "
|
|
489
|
-
"Comma separated list of categories.": "
|
|
490
|
-
"Categories mode": "
|
|
486
|
+
"Color palette": "Παλέτα χρωμάτων",
|
|
487
|
+
"Categories": "Κατηγορίες",
|
|
488
|
+
"Comma separated list of categories.": "Λίστα κατηγοριών χωρισμένες με κόμμα.",
|
|
489
|
+
"Categories mode": "Λειτουργία κατηγοριών",
|
|
491
490
|
"Remove filter for this column": "Remove filter for this column",
|
|
492
491
|
"Add filter for this column": "Add filter for this column",
|
|
493
492
|
"Rename this column": "Rename this column",
|
|
@@ -496,9 +495,16 @@ const locale = {
|
|
|
496
495
|
"This name already exists: “{name}”": "This name already exists: “{name}”",
|
|
497
496
|
"Delete selected rows": "Delete selected rows",
|
|
498
497
|
"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": "
|
|
498
|
+
"Expression is empty": "Η έκφραση είναι κενή",
|
|
500
499
|
"OK": "OK",
|
|
501
|
-
"Cancel": "
|
|
500
|
+
"Cancel": "Άκυρο",
|
|
501
|
+
"Attach map to a team": "Attach map to a team",
|
|
502
|
+
"Display the polygon inverted": "Display the polygon inverted",
|
|
503
|
+
"Proportional circles": "Proportional circles",
|
|
504
|
+
"Property name to compute circles": "Property name to compute circles",
|
|
505
|
+
"Min circle radius": "Min circle radius",
|
|
506
|
+
"Max circle radius": "Max circle radius",
|
|
507
|
+
"Display the open browser control": "Display the open browser control"
|
|
502
508
|
}
|
|
503
509
|
L.registerLocale("el", locale)
|
|
504
510
|
L.setLocale("el")
|
umap/static/umap/locale/el.json
CHANGED
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"Add": "Προσθήκη",
|
|
23
23
|
"Advanced actions": "Εξειδικευμένες ενέργειες",
|
|
24
24
|
"Advanced properties": "Εξειδικευμένες ιδιότητες",
|
|
25
|
-
"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": "
|
|
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": "
|
|
86
|
+
"copy": "αντιγραφή",
|
|
87
87
|
"Credits": "Εύσημα",
|
|
88
|
-
"Current map view": "
|
|
88
|
+
"Current map view": "Τρέχουσα προβολή χάρτη",
|
|
89
89
|
"Current view instead of default map view?": "Τρέχουσα προβολή χάρτη αντί της προεπιλεγμένης",
|
|
90
90
|
"Custom background": "Προσαρμοσμένο υπόβαθρο",
|
|
91
91
|
"Custom overlay": "Προσαρμοσμένη επικάλυψη",
|
|
@@ -115,7 +115,6 @@
|
|
|
115
115
|
"display name": "Όνομα που εμφανίζεται",
|
|
116
116
|
"Display on load": "Εμφάνιση κατά την φόρτωση",
|
|
117
117
|
"Display the control to open OpenStreetMap editor": "Εμφάνιση εικονιδίου επεξεργασίας OpenStreetMap",
|
|
118
|
-
"Display the data layers control": "Εμφάνιση εικονιδίου επιπέδων με δεδομένα",
|
|
119
118
|
"Display the embed control": "Εμφάνιση εικονιδίου διαμοιρασμού",
|
|
120
119
|
"Display the fullscreen control": "Εμφάνιση εικονιδίου πλήρους οθόνης",
|
|
121
120
|
"Display the locate control": "Εμφάνιση εικονιδίου γεωεντοπισμού",
|
|
@@ -168,7 +167,7 @@
|
|
|
168
167
|
"Generic": "Γενικός",
|
|
169
168
|
"GeoRSS (only link)": "GeoRSS (μόνο σύνδεσμος)",
|
|
170
169
|
"GeoRSS (title + image)": "GeoRSS (τίτλος + εικόνα)",
|
|
171
|
-
"Go to \"{coords}\"": "
|
|
170
|
+
"Go to \"{coords}\"": "Πήγαινε στις \"{coords}\"",
|
|
172
171
|
"Go to the homepage": "Μετάβαση στην αρχική σελίδα",
|
|
173
172
|
"Go to «{feature}»": "Μετάβαση στο «{feature}»",
|
|
174
173
|
"Heatmap intensity property": "Ένταση του χάρτη εγγύτητας",
|
|
@@ -215,7 +214,7 @@
|
|
|
215
214
|
"Licence": "Άδεια",
|
|
216
215
|
"licence": "Άδεια",
|
|
217
216
|
"Limit bounds": "Περιορισμός ορίων",
|
|
218
|
-
"Link to view the map": "
|
|
217
|
+
"Link to view the map": "Σύνδεσμος για προβολή του χάρτη",
|
|
219
218
|
"Link to…": "Σύνδεση με...",
|
|
220
219
|
"Link with text: [[http://example.com|text of the link]]": "Σύνδεση με κείμενο: [[http://example.com|text του συνδέσμου]]",
|
|
221
220
|
"Long credits": "Αναλυτικές πιστώσεις",
|
|
@@ -253,14 +252,14 @@
|
|
|
253
252
|
"No licence has been set": "Δεν έχει οριστεί άδεια χρήσης",
|
|
254
253
|
"No results": "Δεν υπάρχουν αποτελέσματα",
|
|
255
254
|
"no": "όχι",
|
|
256
|
-
"No.": "
|
|
255
|
+
"No.": "Όχι.",
|
|
257
256
|
"None": "Κανένα",
|
|
258
257
|
"Number of desired classes (default 5)": "Αριθμός επιθυμητών κατηγοριών (προεπιλογή 5)",
|
|
259
258
|
"On the bottom": "Στο κάτω μέρος",
|
|
260
259
|
"On the left": "Στο αριστερό μέρος",
|
|
261
260
|
"On the right": "Στο δεξί μέρος",
|
|
262
261
|
"On the top": "Στο πάνω μέρος",
|
|
263
|
-
"Only visible layers' data": "
|
|
262
|
+
"Only visible layers' data": "Μόνο δεδομένα ορατών στρώσεων",
|
|
264
263
|
"opacity": "Αδιαφάνεια",
|
|
265
264
|
"Opacity": "Αδιαφάνεια",
|
|
266
265
|
"Open current feature on load": "Άνοιγμα τρέχοντος στοιχείου κατά τη φόρτωση",
|
|
@@ -290,18 +289,18 @@
|
|
|
290
289
|
"Popup": "Αναδυόμενο",
|
|
291
290
|
"Powered by uMap": "Με την υποστήριξη του uMap",
|
|
292
291
|
"previous": "Προηγούμενο",
|
|
293
|
-
"Problem in the response": "
|
|
292
|
+
"Problem in the response": "Πρόβλημα στην απόκριση",
|
|
294
293
|
"Properties imported:": "Ιδιότητες που έχουν εισαχθεί:",
|
|
295
294
|
"Provide an URL here": "Δώστε έναν σύνδεσμο εδώ",
|
|
296
295
|
"Proxy request": "Αίτημα απομακρυσμένου διαμεσολαβητή",
|
|
297
296
|
"Quantiles": "Ποσοστημόρια",
|
|
298
|
-
"Recent": "
|
|
297
|
+
"Recent": "Πρόσφατα",
|
|
299
298
|
"Remote data": "Απομακρυσμένα δεδομένα",
|
|
300
299
|
"Remove shape from the multi": "Αφαίρεση σχήματος από πολυδεδομένο",
|
|
301
300
|
"Replace layer content": "Αντικατάσταση περιεχομένου του επιπέδου",
|
|
302
301
|
"Restore this version": "Επαναφορά αυτής της έκδοσης",
|
|
303
302
|
"Save current edits": "Αποθήκευση τρέχουσας επεξεργασίας",
|
|
304
|
-
"Save map": "
|
|
303
|
+
"Save map": "Αποθήκευση χάρτη",
|
|
305
304
|
"Save this center and zoom": "Αποθήκευση αυτής της προβολής με το συγκεκριμένο κεντράρισμα και το επίπεδο εστίασης.",
|
|
306
305
|
"Save this location as new feature": "Αποθήκευση αυτής της τοποθεσίας ως νέο στοιχείο",
|
|
307
306
|
"Save": "Αποθήκευση",
|
|
@@ -310,14 +309,14 @@
|
|
|
310
309
|
"Search": "Αναζήτηση",
|
|
311
310
|
"Secret edit link:": "Μυστικός σύνδεσμος επεξεργασίας:",
|
|
312
311
|
"See full screen": "Εμφάνιση πλήρους οθόνης",
|
|
313
|
-
"See on OpenStreetMap": "
|
|
312
|
+
"See on OpenStreetMap": "Δείτε στο OpenStreetMap",
|
|
314
313
|
"Set it to false to hide this layer from the slideshow, the data browser, the popup navigation…": "Απενεργοποίηση εάν επιθυμείτε την απόκρυψη του επιπέδου κατά την προβολή των διαφανειών, την περιήγηση δεδομένων, την αναδυόμενη πλοήγηση...",
|
|
315
|
-
"settings": "
|
|
314
|
+
"settings": "ρυθμίσεις",
|
|
316
315
|
"Shape properties": "Ιδιότητες σχήματος",
|
|
317
|
-
"Share and download": "
|
|
316
|
+
"Share and download": "Κοινοποίηση και λήψη",
|
|
318
317
|
"Share this link to open a customized map view": "Share this link to open a customized map view",
|
|
319
318
|
"Short credits": "Εύσημα εν συντομία",
|
|
320
|
-
"Short link": "
|
|
319
|
+
"Short link": "Σύντομος σύνδεσμος",
|
|
321
320
|
"Show this layer in the caption": "Εμφάνιση αυτού του επιπέδου στη λεζάντα",
|
|
322
321
|
"Show/hide layer": "Εμφάνιση/απόκρυψη επιπέδου",
|
|
323
322
|
"Side panel": "Πλευρική εργαλειοθήκη",
|
|
@@ -332,7 +331,7 @@
|
|
|
332
331
|
"Start slideshow": "Έναρξη παρουσίασης",
|
|
333
332
|
"Stop editing": "Τερματισμός επεξεργασίας",
|
|
334
333
|
"Stop slideshow": "Τερματισμός παρουσίασης",
|
|
335
|
-
"Street": "
|
|
334
|
+
"Street": "Οδός",
|
|
336
335
|
"stroke": "Πινέλο",
|
|
337
336
|
"Supported scheme": "Υποστηριζόμενο σχέδιο",
|
|
338
337
|
"Supported variables that will be dynamically replaced": "Υποστηριζόμενες μεταβλητές που θα αντικατασταθούν δυναμικά",
|
|
@@ -406,35 +405,35 @@
|
|
|
406
405
|
"{distance} yd": "{distance} γιάρδες",
|
|
407
406
|
"Edit map name and caption": "Edit map name and caption",
|
|
408
407
|
"Map advanced properties": "Map advanced properties",
|
|
409
|
-
"Edit map details": "
|
|
410
|
-
"Back to browser": "
|
|
408
|
+
"Edit map details": "Επεξεργασία λεπτομερειών χάρτη",
|
|
409
|
+
"Back to browser": "Πίσω στον περιηγητή",
|
|
411
410
|
"Toggle size": "Toggle size",
|
|
412
411
|
"Display the caption control": "Display the caption control",
|
|
413
412
|
"<empty value>": "<empty value>",
|
|
414
413
|
"Min": "Min",
|
|
415
414
|
"Max": "Max",
|
|
416
|
-
"From": "
|
|
417
|
-
"Until": "
|
|
415
|
+
"From": "Από",
|
|
416
|
+
"Until": "Μέχρι",
|
|
418
417
|
"Example: key1,key2|Label 2,key3|Label 3|checkbox": "Example: key1,key2|Label 2,key3|Label 3|checkbox",
|
|
419
|
-
"Edit in OpenStreetMap": "
|
|
418
|
+
"Edit in OpenStreetMap": "Επεξεργασία στο OpenStreetMap",
|
|
420
419
|
"Cannot determine latitude and longitude columns.": "Cannot determine latitude and longitude columns.",
|
|
421
|
-
"Back to layers": "
|
|
422
|
-
"Filters": "
|
|
420
|
+
"Back to layers": "Πίσω στις στρώσεις",
|
|
421
|
+
"Filters": "Φίλτρα",
|
|
423
422
|
"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
423
|
"Comma separated list of properties to use for filters (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key). To control input field type, add it after another | (eg.: mykey|My Key|checkbox,otherkey|Other Key|datetime). Allowed values for the input field type are checkbox (default), radio, number, date and datetime.": "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": "
|
|
424
|
+
"Search keys": "Αναζήτηση κλειδιών",
|
|
426
425
|
"Filters keys": "Filters keys",
|
|
427
426
|
"Filter data": "Filter data",
|
|
428
427
|
"Search map features…": "Search map features…",
|
|
429
428
|
"Reset all": "Reset all",
|
|
430
429
|
"Open browser": "Open browser",
|
|
431
430
|
"Open caption": "Open caption",
|
|
432
|
-
"Your map has been created with an anonymous account!": "
|
|
431
|
+
"Your map has been created with an anonymous account!": "Ο χάρτης σας δημιουργήθηκε με ανώνυμο λογαριασμό!",
|
|
433
432
|
"Real-time collaboration": "Real-time collaboration",
|
|
434
433
|
"Cannot parse data": "Cannot parse data",
|
|
435
434
|
"Start typing...": "Start typing...",
|
|
436
|
-
"No result": "
|
|
437
|
-
"Data browser": "
|
|
435
|
+
"No result": "Κανένα αποτέλεσμα",
|
|
436
|
+
"Data browser": "Περιηγητής δεδομένων",
|
|
438
437
|
"When providing an URL, uMap can copy the remote data in a layer, or add this URL as remote source of the layer. In that case, data will always be fetched from that URL, and thus be up to date, but it will not be possible to edit it inside uMap.": "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
438
|
"Overpass supported expressions": "Overpass supported expressions",
|
|
440
439
|
"key (eg. building)": "key (eg. building)",
|
|
@@ -453,27 +452,27 @@
|
|
|
453
452
|
"Choose import mode": "Choose import mode",
|
|
454
453
|
"Copy into the layer": "Copy into the layer",
|
|
455
454
|
"Link to the layer as remote data": "Link to the layer as remote data",
|
|
456
|
-
"Condition": "
|
|
457
|
-
"key=value or key!=value": "key=value
|
|
458
|
-
"Are you sure you want to delete this rule?": "
|
|
459
|
-
"empty rule": "
|
|
460
|
-
"Conditional style rules": "
|
|
461
|
-
"Add rule": "
|
|
455
|
+
"Condition": "Συνθήκη",
|
|
456
|
+
"key=value or key!=value": "key=value ή key!=value",
|
|
457
|
+
"Are you sure you want to delete this rule?": "Θέλετε σίγουρα να διαγραφεί αυτός ο κανόνας;",
|
|
458
|
+
"empty rule": "κενός κανόνας",
|
|
459
|
+
"Conditional style rules": "Κανόνες μορφοποίησης υπό όρους",
|
|
460
|
+
"Add rule": "Προσθήκη κανόνα",
|
|
462
461
|
"Browser: data": "Browser: data",
|
|
463
462
|
"Browser: layers": "Browser: layers",
|
|
464
463
|
"Browser: filters": "Browser: filters",
|
|
465
464
|
"Enable real-time collaboration": "Enable real-time collaboration",
|
|
466
|
-
"✅ Copied!": "✅
|
|
465
|
+
"✅ Copied!": "✅ Αντιγράφηκε!",
|
|
467
466
|
"Choose a dataset": "Choose a dataset",
|
|
468
467
|
"Choose this dataset": "Choose this dataset",
|
|
469
468
|
"GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: thematic data from OpenStreetMap",
|
|
470
469
|
"Choose a theme": "Choose a theme",
|
|
471
470
|
"Symplify all geometries to points": "Symplify all geometries to points",
|
|
472
471
|
"Choose this data": "Choose this data",
|
|
473
|
-
"Search admin boundary": "
|
|
472
|
+
"Search admin boundary": "Αναζήτηση διοικητικού ορίου",
|
|
474
473
|
"Please choose a theme and a boundary first.": "Please choose a theme and a boundary first.",
|
|
475
|
-
"Expression": "
|
|
476
|
-
"Geometry mode": "
|
|
474
|
+
"Expression": "Έκφραση",
|
|
475
|
+
"Geometry mode": "Λειτουργία γεωμετρίας",
|
|
477
476
|
"Only geometry centers": "Only geometry centers",
|
|
478
477
|
"Search area": "Search area",
|
|
479
478
|
"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 +483,10 @@
|
|
|
484
483
|
"Categorized": "Categorized",
|
|
485
484
|
"Alphabetical": "Alphabetical",
|
|
486
485
|
"Category property": "Category property",
|
|
487
|
-
"Color palette": "
|
|
488
|
-
"Categories": "
|
|
489
|
-
"Comma separated list of categories.": "
|
|
490
|
-
"Categories mode": "
|
|
486
|
+
"Color palette": "Παλέτα χρωμάτων",
|
|
487
|
+
"Categories": "Κατηγορίες",
|
|
488
|
+
"Comma separated list of categories.": "Λίστα κατηγοριών χωρισμένες με κόμμα.",
|
|
489
|
+
"Categories mode": "Λειτουργία κατηγοριών",
|
|
491
490
|
"Remove filter for this column": "Remove filter for this column",
|
|
492
491
|
"Add filter for this column": "Add filter for this column",
|
|
493
492
|
"Rename this column": "Rename this column",
|
|
@@ -496,7 +495,14 @@
|
|
|
496
495
|
"This name already exists: “{name}”": "This name already exists: “{name}”",
|
|
497
496
|
"Delete selected rows": "Delete selected rows",
|
|
498
497
|
"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": "
|
|
498
|
+
"Expression is empty": "Η έκφραση είναι κενή",
|
|
500
499
|
"OK": "OK",
|
|
501
|
-
"Cancel": "
|
|
500
|
+
"Cancel": "Άκυρο",
|
|
501
|
+
"Attach map to a team": "Attach map to a team",
|
|
502
|
+
"Display the polygon inverted": "Display the polygon inverted",
|
|
503
|
+
"Proportional circles": "Proportional circles",
|
|
504
|
+
"Property name to compute circles": "Property name to compute circles",
|
|
505
|
+
"Min circle radius": "Min circle radius",
|
|
506
|
+
"Max circle radius": "Max circle radius",
|
|
507
|
+
"Display the open browser control": "Display the open browser control"
|
|
502
508
|
}
|
umap/static/umap/locale/en.js
CHANGED
|
@@ -115,7 +115,6 @@ const locale = {
|
|
|
115
115
|
"display name": "display name",
|
|
116
116
|
"Display on load": "Display on load",
|
|
117
117
|
"Display the control to open OpenStreetMap editor": "Display the control to open OpenStreetMap editor",
|
|
118
|
-
"Display the data layers control": "Display the data layers control",
|
|
119
118
|
"Display the embed control": "Display the embed control",
|
|
120
119
|
"Display the fullscreen control": "Display the fullscreen control",
|
|
121
120
|
"Display the locate control": "Display the locate control",
|
|
@@ -498,7 +497,16 @@ const locale = {
|
|
|
498
497
|
"Found {count} rows. Are you sure you want to delete all?": "Found {count} rows. Are you sure you want to delete all?",
|
|
499
498
|
"Expression is empty": "Expression is empty",
|
|
500
499
|
"OK": "OK",
|
|
501
|
-
"Cancel": "Cancel"
|
|
500
|
+
"Cancel": "Cancel",
|
|
501
|
+
"Attach map to a team": "Attach map to a team",
|
|
502
|
+
"Display the polygon inverted": "Display the polygon inverted",
|
|
503
|
+
"Proportional circles": "Proportional circles",
|
|
504
|
+
"Property name to compute circles": "Property name to compute circles",
|
|
505
|
+
"Min circle radius": "Min circle radius",
|
|
506
|
+
"Max circle radius": "Max circle radius",
|
|
507
|
+
"Display the open browser control": "Display the open browser control",
|
|
508
|
+
"Copy as GeoJSON": "Copy as GeoJSON",
|
|
509
|
+
"Please zoom in to edit the geometry": "Please zoom in to edit the geometry"
|
|
502
510
|
}
|
|
503
511
|
L.registerLocale("en", locale)
|
|
504
512
|
L.setLocale("en")
|
umap/static/umap/locale/en.json
CHANGED
|
@@ -115,7 +115,6 @@
|
|
|
115
115
|
"display name": "display name",
|
|
116
116
|
"Display on load": "Display on load",
|
|
117
117
|
"Display the control to open OpenStreetMap editor": "Display the control to open OpenStreetMap editor",
|
|
118
|
-
"Display the data layers control": "Display the data layers control",
|
|
119
118
|
"Display the embed control": "Display the embed control",
|
|
120
119
|
"Display the fullscreen control": "Display the fullscreen control",
|
|
121
120
|
"Display the locate control": "Display the locate control",
|
|
@@ -498,5 +497,14 @@
|
|
|
498
497
|
"Found {count} rows. Are you sure you want to delete all?": "Found {count} rows. Are you sure you want to delete all?",
|
|
499
498
|
"Expression is empty": "Expression is empty",
|
|
500
499
|
"OK": "OK",
|
|
501
|
-
"Cancel": "Cancel"
|
|
500
|
+
"Cancel": "Cancel",
|
|
501
|
+
"Attach map to a team": "Attach map to a team",
|
|
502
|
+
"Display the polygon inverted": "Display the polygon inverted",
|
|
503
|
+
"Proportional circles": "Proportional circles",
|
|
504
|
+
"Property name to compute circles": "Property name to compute circles",
|
|
505
|
+
"Min circle radius": "Min circle radius",
|
|
506
|
+
"Max circle radius": "Max circle radius",
|
|
507
|
+
"Display the open browser control": "Display the open browser control",
|
|
508
|
+
"Copy as GeoJSON": "Copy as GeoJSON",
|
|
509
|
+
"Please zoom in to edit the geometry": "Please zoom in to edit the geometry"
|
|
502
510
|
}
|
|
@@ -115,7 +115,6 @@
|
|
|
115
115
|
"display name": "display name",
|
|
116
116
|
"Display on load": "Display on load",
|
|
117
117
|
"Display the control to open OpenStreetMap editor": "Display the control to open OpenStreetMap editor",
|
|
118
|
-
"Display the data layers control": "Display the data layers control",
|
|
119
118
|
"Display the embed control": "Display the embed control",
|
|
120
119
|
"Display the fullscreen control": "Display the fullscreen control",
|
|
121
120
|
"Display the locate control": "Display the locate control",
|
|
@@ -498,5 +497,12 @@
|
|
|
498
497
|
"Found {count} rows. Are you sure you want to delete all?": "Found {count} rows. Are you sure you want to delete all?",
|
|
499
498
|
"Expression is empty": "Expression is empty",
|
|
500
499
|
"OK": "OK",
|
|
501
|
-
"Cancel": "Cancel"
|
|
500
|
+
"Cancel": "Cancel",
|
|
501
|
+
"Attach map to a team": "Attach map to a team",
|
|
502
|
+
"Display the polygon inverted": "Display the polygon inverted",
|
|
503
|
+
"Proportional circles": "Proportional circles",
|
|
504
|
+
"Property name to compute circles": "Property name to compute circles",
|
|
505
|
+
"Min circle radius": "Min circle radius",
|
|
506
|
+
"Max circle radius": "Max circle radius",
|
|
507
|
+
"Display the open browser control": "Display the open browser control"
|
|
502
508
|
}
|