umap-project 2.8.1__py3-none-any.whl → 2.9.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 +15 -2
- umap/asgi.py +12 -7
- umap/context_processors.py +1 -0
- umap/locale/br/LC_MESSAGES/django.mo +0 -0
- umap/locale/br/LC_MESSAGES/django.po +111 -67
- umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- umap/locale/cs_CZ/LC_MESSAGES/django.po +110 -66
- umap/locale/el/LC_MESSAGES/django.mo +0 -0
- umap/locale/el/LC_MESSAGES/django.po +129 -85
- umap/locale/en/LC_MESSAGES/django.po +103 -60
- umap/locale/es/LC_MESSAGES/django.mo +0 -0
- umap/locale/es/LC_MESSAGES/django.po +114 -69
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +105 -61
- umap/locale/gl/LC_MESSAGES/django.mo +0 -0
- umap/locale/gl/LC_MESSAGES/django.po +216 -171
- umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- umap/locale/hu/LC_MESSAGES/django.po +10 -10
- umap/locale/it/LC_MESSAGES/django.mo +0 -0
- umap/locale/it/LC_MESSAGES/django.po +142 -98
- umap/locale/nl/LC_MESSAGES/django.mo +0 -0
- umap/locale/nl/LC_MESSAGES/django.po +196 -151
- umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- umap/locale/pt/LC_MESSAGES/django.po +115 -71
- umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
- umap/locale/zh_TW/LC_MESSAGES/django.po +109 -65
- umap/management/commands/empty_trash.py +12 -1
- umap/migrations/0026_datalayer_modified_at_datalayer_share_status.py +26 -0
- umap/models.py +43 -13
- umap/settings/base.py +5 -2
- umap/static/umap/base.css +5 -2
- umap/static/umap/content.css +2 -22
- umap/static/umap/css/bar.css +39 -10
- umap/static/umap/css/contextmenu.css +14 -2
- umap/static/umap/css/form.css +33 -39
- umap/static/umap/css/icon.css +47 -5
- umap/static/umap/css/panel.css +20 -2
- umap/static/umap/css/popup.css +0 -1
- umap/static/umap/css/tooltip.css +33 -31
- umap/static/umap/img/16-white.svg +5 -3
- umap/static/umap/img/16.svg +1 -1
- umap/static/umap/img/24-white.svg +17 -16
- umap/static/umap/img/24.svg +29 -18
- umap/static/umap/img/providers/bitbucket.png +0 -0
- umap/static/umap/img/providers/github.png +0 -0
- umap/static/umap/img/providers/keycloak.png +0 -0
- umap/static/umap/img/providers/openstreetmap-oauth2.png +0 -0
- umap/static/umap/img/providers/twitter-oauth2.png +0 -0
- umap/static/umap/img/source/16-white.svg +6 -4
- umap/static/umap/img/source/16.svg +1 -1
- umap/static/umap/img/source/24-white.svg +20 -18
- umap/static/umap/img/source/24.svg +30 -19
- umap/static/umap/js/components/alerts/alert.js +4 -1
- umap/static/umap/js/modules/browser.js +8 -8
- umap/static/umap/js/modules/caption.js +30 -7
- umap/static/umap/js/modules/data/features.js +101 -56
- umap/static/umap/js/modules/data/layer.js +108 -83
- umap/static/umap/js/modules/form/builder.js +242 -0
- umap/static/umap/js/modules/form/fields.js +1346 -0
- umap/static/umap/js/modules/formatter.js +9 -8
- umap/static/umap/js/modules/help.js +20 -24
- umap/static/umap/js/modules/importer.js +6 -3
- umap/static/umap/js/modules/permissions.js +11 -6
- umap/static/umap/js/modules/rendering/icon.js +5 -1
- umap/static/umap/js/modules/rendering/layers/classified.js +12 -8
- umap/static/umap/js/modules/rendering/layers/cluster.js +11 -1
- umap/static/umap/js/modules/rendering/map.js +1 -23
- umap/static/umap/js/modules/rendering/ui.js +20 -38
- umap/static/umap/js/modules/rules.js +3 -2
- umap/static/umap/js/modules/saving.js +5 -0
- umap/static/umap/js/modules/schema.js +8 -6
- umap/static/umap/js/modules/share.js +3 -3
- umap/static/umap/js/modules/sync/engine.js +56 -26
- umap/static/umap/js/modules/sync/updaters.js +15 -6
- umap/static/umap/js/modules/sync/websocket.js +50 -37
- umap/static/umap/js/modules/tableeditor.js +3 -2
- umap/static/umap/js/modules/ui/bar.js +101 -9
- umap/static/umap/js/modules/ui/base.js +7 -24
- umap/static/umap/js/modules/ui/contextmenu.js +9 -2
- umap/static/umap/js/modules/ui/panel.js +5 -1
- umap/static/umap/js/modules/ui/tooltip.js +19 -11
- umap/static/umap/js/modules/umap.js +124 -71
- umap/static/umap/js/modules/utils.js +196 -12
- umap/static/umap/js/umap.controls.js +12 -354
- umap/static/umap/locale/am_ET.js +17 -5
- umap/static/umap/locale/am_ET.json +17 -5
- umap/static/umap/locale/ar.js +17 -5
- umap/static/umap/locale/ar.json +17 -5
- umap/static/umap/locale/ast.js +17 -5
- umap/static/umap/locale/ast.json +17 -5
- umap/static/umap/locale/bg.js +17 -5
- umap/static/umap/locale/bg.json +17 -5
- umap/static/umap/locale/br.js +33 -20
- umap/static/umap/locale/br.json +33 -20
- umap/static/umap/locale/ca.js +17 -5
- umap/static/umap/locale/ca.json +17 -5
- umap/static/umap/locale/cs_CZ.js +15 -5
- umap/static/umap/locale/cs_CZ.json +15 -5
- umap/static/umap/locale/da.js +17 -5
- umap/static/umap/locale/da.json +17 -5
- umap/static/umap/locale/de.js +17 -5
- umap/static/umap/locale/de.json +17 -5
- umap/static/umap/locale/el.js +63 -51
- umap/static/umap/locale/el.json +63 -51
- umap/static/umap/locale/en.js +15 -5
- umap/static/umap/locale/en.json +15 -5
- umap/static/umap/locale/en_US.json +17 -5
- umap/static/umap/locale/es.js +25 -13
- umap/static/umap/locale/es.json +25 -13
- umap/static/umap/locale/et.js +17 -5
- umap/static/umap/locale/et.json +17 -5
- umap/static/umap/locale/eu.js +17 -5
- umap/static/umap/locale/eu.json +17 -5
- umap/static/umap/locale/fa_IR.js +17 -5
- umap/static/umap/locale/fa_IR.json +17 -5
- umap/static/umap/locale/fi.js +17 -5
- umap/static/umap/locale/fi.json +17 -5
- umap/static/umap/locale/fr.js +16 -6
- umap/static/umap/locale/fr.json +16 -6
- umap/static/umap/locale/gl.js +357 -345
- umap/static/umap/locale/gl.json +357 -345
- umap/static/umap/locale/he.js +17 -5
- umap/static/umap/locale/he.json +17 -5
- umap/static/umap/locale/hr.js +17 -5
- umap/static/umap/locale/hr.json +17 -5
- umap/static/umap/locale/hu.js +39 -27
- umap/static/umap/locale/hu.json +39 -27
- umap/static/umap/locale/id.js +17 -5
- umap/static/umap/locale/id.json +17 -5
- umap/static/umap/locale/is.js +17 -5
- umap/static/umap/locale/is.json +17 -5
- umap/static/umap/locale/it.js +125 -113
- umap/static/umap/locale/it.json +125 -113
- umap/static/umap/locale/ja.js +17 -5
- umap/static/umap/locale/ja.json +17 -5
- umap/static/umap/locale/ko.js +17 -5
- umap/static/umap/locale/ko.json +17 -5
- umap/static/umap/locale/lt.js +17 -5
- umap/static/umap/locale/lt.json +17 -5
- umap/static/umap/locale/ms.js +17 -5
- umap/static/umap/locale/ms.json +17 -5
- umap/static/umap/locale/nl.js +132 -119
- umap/static/umap/locale/nl.json +132 -119
- umap/static/umap/locale/no.js +17 -5
- umap/static/umap/locale/no.json +17 -5
- umap/static/umap/locale/pl.js +17 -5
- umap/static/umap/locale/pl.json +17 -5
- umap/static/umap/locale/pl_PL.json +17 -5
- umap/static/umap/locale/pt.js +38 -25
- umap/static/umap/locale/pt.json +38 -25
- umap/static/umap/locale/pt_BR.js +17 -5
- umap/static/umap/locale/pt_BR.json +17 -5
- umap/static/umap/locale/pt_PT.js +17 -5
- umap/static/umap/locale/pt_PT.json +17 -5
- umap/static/umap/locale/ro.js +17 -5
- umap/static/umap/locale/ro.json +17 -5
- umap/static/umap/locale/ru.js +17 -5
- umap/static/umap/locale/ru.json +17 -5
- umap/static/umap/locale/sk_SK.js +17 -5
- umap/static/umap/locale/sk_SK.json +17 -5
- umap/static/umap/locale/sl.js +17 -5
- umap/static/umap/locale/sl.json +17 -5
- umap/static/umap/locale/sr.js +17 -5
- umap/static/umap/locale/sr.json +17 -5
- umap/static/umap/locale/sv.js +17 -5
- umap/static/umap/locale/sv.json +17 -5
- umap/static/umap/locale/th_TH.js +17 -5
- umap/static/umap/locale/th_TH.json +17 -5
- umap/static/umap/locale/tr.js +17 -5
- umap/static/umap/locale/tr.json +17 -5
- umap/static/umap/locale/uk_UA.js +17 -5
- umap/static/umap/locale/uk_UA.json +17 -5
- umap/static/umap/locale/vi.js +17 -5
- umap/static/umap/locale/vi.json +17 -5
- umap/static/umap/locale/vi_VN.json +17 -5
- umap/static/umap/locale/zh.js +17 -5
- umap/static/umap/locale/zh.json +17 -5
- umap/static/umap/locale/zh_CN.json +17 -5
- umap/static/umap/locale/zh_TW.Big5.json +17 -5
- umap/static/umap/locale/zh_TW.js +15 -5
- umap/static/umap/locale/zh_TW.json +15 -5
- umap/static/umap/map.css +29 -76
- umap/static/umap/nav.css +6 -3
- umap/static/umap/unittests/utils.js +14 -0
- umap/static/umap/vars.css +3 -0
- umap/static/umap/vendors/dompurify/purify.es.js +138 -354
- umap/static/umap/vendors/dompurify/purify.es.mjs.map +1 -1
- umap/static/umap/vendors/editable/Leaflet.Editable.js +1 -0
- umap/sync/__init__.py +0 -0
- umap/sync/app.py +187 -0
- umap/sync/payloads.py +56 -0
- umap/templates/auth/user_detail.html +4 -0
- umap/templates/auth/user_form.html +9 -6
- umap/templates/auth/user_stars.html +4 -0
- umap/templates/base.html +1 -1
- umap/templates/registration/login.html +2 -5
- umap/templates/umap/about.html +5 -0
- umap/templates/umap/about_summary.html +2 -2
- umap/templates/umap/components/provider.html +8 -0
- umap/templates/umap/content_footer.html +1 -1
- umap/templates/umap/css.html +0 -2
- umap/templates/umap/js.html +0 -4
- umap/templates/umap/map_detail.html +1 -1
- umap/templates/umap/password_change.html +4 -0
- umap/templates/umap/password_change_done.html +4 -0
- umap/templates/umap/search.html +4 -0
- umap/templates/umap/search_bar.html +1 -0
- umap/templates/umap/team_confirm_delete.html +4 -0
- umap/templates/umap/team_detail.html +4 -0
- umap/templates/umap/team_form.html +4 -0
- umap/templates/umap/user_dashboard.html +1 -1
- umap/templates/umap/user_teams.html +4 -0
- umap/tests/base.py +3 -1
- umap/tests/integration/conftest.py +16 -23
- umap/tests/integration/test_anonymous_owned_map.py +2 -2
- umap/tests/integration/test_basics.py +4 -7
- umap/tests/integration/test_caption.py +1 -0
- umap/tests/integration/test_categorized_layer.py +4 -8
- umap/tests/integration/test_choropleth.py +1 -1
- umap/tests/integration/test_conditional_rules.py +3 -3
- umap/tests/integration/test_draw_polygon.py +14 -22
- umap/tests/integration/test_draw_polyline.py +6 -14
- umap/tests/integration/test_edit_datalayer.py +11 -11
- umap/tests/integration/test_edit_map.py +30 -4
- umap/tests/integration/test_edit_marker.py +5 -5
- umap/tests/integration/test_edit_polygon.py +6 -6
- umap/tests/integration/test_features_id_generation.py +2 -6
- umap/tests/integration/test_import.py +115 -29
- umap/tests/integration/test_optimistic_merge.py +1 -0
- umap/tests/integration/test_owned_map.py +1 -1
- umap/tests/integration/test_picto.py +8 -8
- umap/tests/integration/test_save.py +3 -2
- umap/tests/integration/test_star.py +13 -9
- umap/tests/integration/test_tableeditor.py +8 -7
- umap/tests/integration/test_view_marker.py +10 -0
- umap/tests/integration/test_websocket_sync.py +239 -64
- umap/tests/settings.py +2 -0
- umap/tests/test_datalayer.py +2 -3
- umap/tests/test_datalayer_views.py +20 -1
- umap/tests/test_empty_trash.py +10 -3
- umap/tests/test_map_views.py +11 -0
- umap/utils.py +27 -11
- umap/views.py +37 -6
- {umap_project-2.8.1.dist-info → umap_project-2.9.0.dist-info}/METADATA +22 -22
- {umap_project-2.8.1.dist-info → umap_project-2.9.0.dist-info}/RECORD +249 -250
- {umap_project-2.8.1.dist-info → umap_project-2.9.0.dist-info}/WHEEL +1 -1
- umap/management/commands/run_websocket_server.py +0 -23
- umap/settings/local_s3.py +0 -45
- umap/static/umap/bitbucket.png +0 -0
- umap/static/umap/github.png +0 -0
- umap/static/umap/js/umap.forms.js +0 -1242
- umap/static/umap/keycloak.png +0 -0
- umap/static/umap/openstreetmap.png +0 -0
- umap/static/umap/twitter.png +0 -0
- umap/static/umap/vendors/formbuilder/Leaflet.FormBuilder.js +0 -468
- umap/static/umap/vendors/toolbar/leaflet.toolbar.css +0 -1
- umap/static/umap/vendors/toolbar/leaflet.toolbar.js +0 -1
- umap/tests/test_websocket_server.py +0 -22
- umap/websocket_server.py +0 -202
- {umap_project-2.8.1.dist-info → umap_project-2.9.0.dist-info}/entry_points.txt +0 -0
- {umap_project-2.8.1.dist-info → umap_project-2.9.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -13,9 +13,9 @@ msgid ""
|
|
|
13
13
|
msgstr ""
|
|
14
14
|
"Project-Id-Version: uMap\n"
|
|
15
15
|
"Report-Msgid-Bugs-To: \n"
|
|
16
|
-
"POT-Creation-Date:
|
|
16
|
+
"POT-Creation-Date: 2025-01-31 17:29+0000\n"
|
|
17
17
|
"PO-Revision-Date: 2013-11-22 14:00+0000\n"
|
|
18
|
-
"Last-Translator:
|
|
18
|
+
"Last-Translator: prendi <prendi@openmailbox.org>, 2017\n"
|
|
19
19
|
"Language-Team: Greek (http://app.transifex.com/openstreetmap/umap/language/el/)\n"
|
|
20
20
|
"MIME-Version: 1.0\n"
|
|
21
21
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
@@ -25,11 +25,11 @@ msgstr ""
|
|
|
25
25
|
|
|
26
26
|
#: admin.py:16
|
|
27
27
|
msgid "CSV Export"
|
|
28
|
-
msgstr ""
|
|
28
|
+
msgstr "Εξαγωγή CSV"
|
|
29
29
|
|
|
30
30
|
#: decorators.py:60
|
|
31
31
|
msgid "This map is not publicly available"
|
|
32
|
-
msgstr ""
|
|
32
|
+
msgstr "Αυτός ο χάρτης δεν είναι δημοσίως διαθέσιμος"
|
|
33
33
|
|
|
34
34
|
#: middleware.py:13
|
|
35
35
|
msgid "Site is readonly for maintenance"
|
|
@@ -39,7 +39,7 @@ msgstr "Λόγω συντήρησης, ο ιστότοπος είναι μόνο
|
|
|
39
39
|
msgid "name"
|
|
40
40
|
msgstr "όνομα"
|
|
41
41
|
|
|
42
|
-
#: models.py:62 models.py:
|
|
42
|
+
#: models.py:62 models.py:485
|
|
43
43
|
msgid "description"
|
|
44
44
|
msgstr "περιγραφή"
|
|
45
45
|
|
|
@@ -59,29 +59,29 @@ msgstr "Πρότυπο URL που χρησιμοποιεί μορφοποίησ
|
|
|
59
59
|
msgid "Order of the tilelayers in the edit box"
|
|
60
60
|
msgstr "Σειρά των υπόβαθρων στο πλαίσιο επεξεργασίας"
|
|
61
61
|
|
|
62
|
-
#: models.py:175 models.py:
|
|
62
|
+
#: models.py:175 models.py:479
|
|
63
63
|
msgid "Only editable with secret edit link"
|
|
64
64
|
msgstr "Επεξεργάσιμο μόνο με μυστικό σύνδεσμο"
|
|
65
65
|
|
|
66
|
-
#: models.py:176 models.py:
|
|
66
|
+
#: models.py:176 models.py:480
|
|
67
67
|
msgid "Everyone can edit"
|
|
68
68
|
msgstr "Όλοι μπορούν να επεξεργαστούν"
|
|
69
69
|
|
|
70
|
-
#: models.py:179 models.py:
|
|
70
|
+
#: models.py:179 models.py:473
|
|
71
71
|
msgid "Everyone"
|
|
72
72
|
msgstr "Οποιοσδήποτε"
|
|
73
73
|
|
|
74
|
-
#: models.py:180 models.py:189 models.py:
|
|
74
|
+
#: models.py:180 models.py:189 models.py:474
|
|
75
75
|
msgid "Editors and team only"
|
|
76
|
-
msgstr ""
|
|
76
|
+
msgstr "Μόνο συντάκτες και ομάδα"
|
|
77
77
|
|
|
78
|
-
#: models.py:181 models.py:
|
|
78
|
+
#: models.py:181 models.py:475
|
|
79
79
|
msgid "Owner only"
|
|
80
80
|
msgstr "Μόνο ο κάτοχος"
|
|
81
81
|
|
|
82
82
|
#: models.py:184
|
|
83
83
|
msgid "Draft (private)"
|
|
84
|
-
msgstr ""
|
|
84
|
+
msgstr "Πρόχειρο (ιδιωτικό)"
|
|
85
85
|
|
|
86
86
|
#: models.py:185
|
|
87
87
|
msgid "Everyone (public)"
|
|
@@ -95,9 +95,9 @@ msgstr "Οποιοδήποτε με τον σύνδεσμο"
|
|
|
95
95
|
msgid "Blocked"
|
|
96
96
|
msgstr "Αποκλεισμένος"
|
|
97
97
|
|
|
98
|
-
#: models.py:191
|
|
98
|
+
#: models.py:191 models.py:469
|
|
99
99
|
msgid "Deleted"
|
|
100
|
-
msgstr ""
|
|
100
|
+
msgstr "Διαγράφηκε"
|
|
101
101
|
|
|
102
102
|
#: models.py:194
|
|
103
103
|
msgid "center"
|
|
@@ -133,33 +133,33 @@ msgstr "συντάκτες"
|
|
|
133
133
|
|
|
134
134
|
#: models.py:223
|
|
135
135
|
msgid "team"
|
|
136
|
-
msgstr ""
|
|
136
|
+
msgstr "ομάδα"
|
|
137
137
|
|
|
138
|
-
#: models.py:229 models.py:
|
|
138
|
+
#: models.py:229 models.py:501
|
|
139
139
|
msgid "edit status"
|
|
140
140
|
msgstr "κατάσταση επεξεργασίας"
|
|
141
141
|
|
|
142
|
-
#: models.py:234
|
|
142
|
+
#: models.py:234 models.py:506
|
|
143
143
|
msgid "share status"
|
|
144
144
|
msgstr "κατάσταση διαμοιρασμού"
|
|
145
145
|
|
|
146
|
-
#: models.py:237 models.py:
|
|
146
|
+
#: models.py:237 models.py:496
|
|
147
147
|
msgid "settings"
|
|
148
148
|
msgstr "ρυθμίσεις"
|
|
149
149
|
|
|
150
|
-
#: models.py:
|
|
150
|
+
#: models.py:407
|
|
151
151
|
msgid "Clone of"
|
|
152
152
|
msgstr "Κλώνος του"
|
|
153
153
|
|
|
154
|
-
#: models.py:
|
|
154
|
+
#: models.py:468 models.py:472 models.py:478
|
|
155
155
|
msgid "Inherit"
|
|
156
156
|
msgstr "Κληρονόμοι"
|
|
157
157
|
|
|
158
|
-
#: models.py:
|
|
158
|
+
#: models.py:491
|
|
159
159
|
msgid "display on load"
|
|
160
160
|
msgstr "εμφάνιση κατά τη φόρτωση"
|
|
161
161
|
|
|
162
|
-
#: models.py:
|
|
162
|
+
#: models.py:492
|
|
163
163
|
msgid "Display this layer on load."
|
|
164
164
|
msgstr "Εμφάνιση αυτού του επιπέδου κατά την φόρτωση."
|
|
165
165
|
|
|
@@ -168,50 +168,64 @@ msgid ""
|
|
|
168
168
|
"<a href=\"https://discover.umap-project.org/support/faq/#map-statuses\" "
|
|
169
169
|
"target=\"_blank\">Find out here the documentation</a> on how to manage map’s"
|
|
170
170
|
" permissions."
|
|
171
|
-
msgstr ""
|
|
171
|
+
msgstr "<a href=\"https://discover.umap-project.org/support/faq/#map-statuses\" target=\"_blank\">Δείτε εδώ την τεκμηρίωση</a> για το πώς να διαχειρίζεστε τα δικαιώματα του χάρτη."
|
|
172
172
|
|
|
173
173
|
#: templates/403.html:10 templates/404.html:8
|
|
174
174
|
msgid "← Go to the homepage"
|
|
175
|
-
msgstr ""
|
|
175
|
+
msgstr "← Μετάβαση στην αρχική σελίδα"
|
|
176
176
|
|
|
177
177
|
#: templates/404.html:7
|
|
178
178
|
msgid "404 Page Not Found"
|
|
179
|
-
msgstr ""
|
|
179
|
+
msgstr "404 Η σελίδα δεν βρέθηκε"
|
|
180
|
+
|
|
181
|
+
#: templates/auth/user_detail.html:6
|
|
182
|
+
#, python-format
|
|
183
|
+
msgid "%(current_user)s’s maps"
|
|
184
|
+
msgstr "%(current_user)s’s χάρτες"
|
|
180
185
|
|
|
181
|
-
#: templates/auth/user_detail.html:
|
|
186
|
+
#: templates/auth/user_detail.html:12
|
|
182
187
|
#, python-format
|
|
183
188
|
msgid "Browse %(current_user)s's maps"
|
|
184
189
|
msgstr "Περιήγηση στους χάρτες του χρήστη %(current_user)s"
|
|
185
190
|
|
|
186
|
-
#: templates/auth/user_detail.html:
|
|
191
|
+
#: templates/auth/user_detail.html:21
|
|
187
192
|
#, python-format
|
|
188
193
|
msgid "%(current_user)s has no maps."
|
|
189
194
|
msgstr "Ο %(current_user)s χρήστης δεν έχει χάρτες."
|
|
190
195
|
|
|
191
|
-
#: templates/auth/user_form.html:
|
|
196
|
+
#: templates/auth/user_form.html:6
|
|
197
|
+
msgid "My Profile"
|
|
198
|
+
msgstr "Το προφίλ μου"
|
|
199
|
+
|
|
200
|
+
#: templates/auth/user_form.html:24 templates/umap/team_form.html:25
|
|
192
201
|
msgid "Save"
|
|
193
202
|
msgstr "Αποθήκευση"
|
|
194
203
|
|
|
195
|
-
#: templates/auth/user_form.html:
|
|
204
|
+
#: templates/auth/user_form.html:30
|
|
196
205
|
msgid "Your current providers"
|
|
197
206
|
msgstr "Οι τρέχοντες πάροχοι σας"
|
|
198
207
|
|
|
199
|
-
#: templates/auth/user_form.html:
|
|
208
|
+
#: templates/auth/user_form.html:44
|
|
200
209
|
msgid "Connect to another provider"
|
|
201
210
|
msgstr "Σύνδεση σε άλλον πάροχο"
|
|
202
211
|
|
|
203
|
-
#: templates/auth/user_form.html:
|
|
212
|
+
#: templates/auth/user_form.html:47
|
|
204
213
|
msgid ""
|
|
205
214
|
"It's a good habit to connect your account to more than one provider, in case"
|
|
206
215
|
" one provider becomes unavailable, temporarily or even permanently."
|
|
207
216
|
msgstr "Είναι καλή συνήθεια να συνδέετε το λογαριασμό σας σε περισσότερους από έναν παρόχους, σε περίπτωση που ένας πάροχος δεν είναι διαθέσιμος, προσωρινά ή και μόνιμα."
|
|
208
217
|
|
|
209
|
-
#: templates/auth/user_stars.html:
|
|
218
|
+
#: templates/auth/user_stars.html:6
|
|
219
|
+
#, python-format
|
|
220
|
+
msgid "%(current_user)s’s starred maps"
|
|
221
|
+
msgstr "%(current_user)s’s χάρτες με αστέρια"
|
|
222
|
+
|
|
223
|
+
#: templates/auth/user_stars.html:12
|
|
210
224
|
#, python-format
|
|
211
225
|
msgid "Browse %(current_user)s's starred maps"
|
|
212
226
|
msgstr "Περιήγηση στους χάρτες με αστέρι του χρήστη %(current_user)s"
|
|
213
227
|
|
|
214
|
-
#: templates/auth/user_stars.html:
|
|
228
|
+
#: templates/auth/user_stars.html:21
|
|
215
229
|
#, python-format
|
|
216
230
|
msgid "%(current_user)s has no starred maps yet."
|
|
217
231
|
msgstr "Ο %(current_user)s δεν έχει ακόμη χάρτες με αστέρι."
|
|
@@ -228,11 +242,11 @@ msgstr "Σύνδεση"
|
|
|
228
242
|
|
|
229
243
|
#: templates/registration/login.html:22
|
|
230
244
|
msgid "To save and easily find your maps, identify yourself."
|
|
231
|
-
msgstr ""
|
|
245
|
+
msgstr "Για να αποθηκεύσετε και να βρείτε εύκολα τους χάρτες σας, προσδιορίστε τον εαυτό σας."
|
|
232
246
|
|
|
233
247
|
#: templates/registration/login.html:25
|
|
234
248
|
msgid "Please log in with your account:"
|
|
235
|
-
msgstr ""
|
|
249
|
+
msgstr "Παρακαλούμε συνδεθείτε με το λογαριασμό σας:"
|
|
236
250
|
|
|
237
251
|
#: templates/registration/login.html:42
|
|
238
252
|
msgid "Username"
|
|
@@ -244,7 +258,11 @@ msgstr "Κωδικός πρόσβασης"
|
|
|
244
258
|
|
|
245
259
|
#: templates/registration/login.html:52
|
|
246
260
|
msgid "Please choose a provider:"
|
|
247
|
-
msgstr ""
|
|
261
|
+
msgstr "Παρακαλώ επιλέξτε έναν πάροχο:"
|
|
262
|
+
|
|
263
|
+
#: templates/umap/about.html:5 templates/umap/navigation.html:22
|
|
264
|
+
msgid "About"
|
|
265
|
+
msgstr "Σχετικά"
|
|
248
266
|
|
|
249
267
|
#: templates/umap/about_summary.html:12
|
|
250
268
|
#, python-format
|
|
@@ -358,19 +376,19 @@ msgstr "Αυτή είναι μια έκδοση επίδειξης, που χρ
|
|
|
358
376
|
|
|
359
377
|
#: templates/umap/content_footer.html:5
|
|
360
378
|
msgid "An OpenStreetMap project"
|
|
361
|
-
msgstr ""
|
|
379
|
+
msgstr "Ένα έργο OpenStreetMap"
|
|
362
380
|
|
|
363
381
|
#: templates/umap/content_footer.html:6
|
|
364
382
|
msgid "version"
|
|
365
|
-
msgstr ""
|
|
383
|
+
msgstr "έκδοση"
|
|
366
384
|
|
|
367
385
|
#: templates/umap/content_footer.html:7
|
|
368
386
|
msgid "Hosted by"
|
|
369
|
-
msgstr ""
|
|
387
|
+
msgstr "Φιλοξενείται από"
|
|
370
388
|
|
|
371
389
|
#: templates/umap/content_footer.html:8
|
|
372
390
|
msgid "Contact"
|
|
373
|
-
msgstr ""
|
|
391
|
+
msgstr "Επικοινωνία"
|
|
374
392
|
|
|
375
393
|
#: templates/umap/content_footer.html:9 templates/umap/navigation.html:25
|
|
376
394
|
msgid "Help"
|
|
@@ -391,7 +409,7 @@ msgstr "Το προφίλ μου"
|
|
|
391
409
|
|
|
392
410
|
#: templates/umap/dashboard_menu.html:15
|
|
393
411
|
msgid "My teams"
|
|
394
|
-
msgstr ""
|
|
412
|
+
msgstr "Οι ομάδες μου"
|
|
395
413
|
|
|
396
414
|
#: templates/umap/home.html:14
|
|
397
415
|
msgid "Map of the uMaps"
|
|
@@ -413,7 +431,7 @@ msgstr "από"
|
|
|
413
431
|
msgid "More"
|
|
414
432
|
msgstr "Περισσότερα"
|
|
415
433
|
|
|
416
|
-
#: templates/umap/map_table.html:8 templates/umap/user_teams.html:
|
|
434
|
+
#: templates/umap/map_table.html:8 templates/umap/user_teams.html:18
|
|
417
435
|
msgid "Name"
|
|
418
436
|
msgstr "Όνομα"
|
|
419
437
|
|
|
@@ -437,7 +455,7 @@ msgstr "Τελευταία αποθήκευση"
|
|
|
437
455
|
msgid "Owner"
|
|
438
456
|
msgstr "Κάτοχος"
|
|
439
457
|
|
|
440
|
-
#: templates/umap/map_table.html:26 templates/umap/user_teams.html:
|
|
458
|
+
#: templates/umap/map_table.html:26 templates/umap/user_teams.html:24
|
|
441
459
|
msgid "Actions"
|
|
442
460
|
msgstr "Ενέργειες"
|
|
443
461
|
|
|
@@ -450,7 +468,7 @@ msgid "Share"
|
|
|
450
468
|
msgstr "Διαμοιρασμός"
|
|
451
469
|
|
|
452
470
|
#: templates/umap/map_table.html:78 templates/umap/map_table.html:80
|
|
453
|
-
#: templates/umap/user_teams.html:
|
|
471
|
+
#: templates/umap/user_teams.html:42 templates/umap/user_teams.html:44
|
|
454
472
|
msgid "Edit"
|
|
455
473
|
msgstr "Επεξεργασία"
|
|
456
474
|
|
|
@@ -513,10 +531,6 @@ msgstr "Σύνδεση"
|
|
|
513
531
|
msgid "Sign in"
|
|
514
532
|
msgstr "Εγγραφή"
|
|
515
533
|
|
|
516
|
-
#: templates/umap/navigation.html:22
|
|
517
|
-
msgid "About"
|
|
518
|
-
msgstr "Σχετικά"
|
|
519
|
-
|
|
520
534
|
#: templates/umap/navigation.html:30
|
|
521
535
|
msgid "Change password"
|
|
522
536
|
msgstr "Αλλαγή κωδικού πρόσβασης"
|
|
@@ -525,52 +539,58 @@ msgstr "Αλλαγή κωδικού πρόσβασης"
|
|
|
525
539
|
msgid "Log out"
|
|
526
540
|
msgstr "Αποσύνδεση"
|
|
527
541
|
|
|
528
|
-
#: templates/umap/password_change.html:
|
|
542
|
+
#: templates/umap/password_change.html:6
|
|
543
|
+
#: templates/umap/password_change.html:11
|
|
529
544
|
msgid "Password change"
|
|
530
545
|
msgstr "Αλλαγή κωδικού πρόσβασης"
|
|
531
546
|
|
|
532
|
-
#: templates/umap/password_change.html:
|
|
547
|
+
#: templates/umap/password_change.html:14
|
|
533
548
|
msgid ""
|
|
534
549
|
"Please enter your old password, for security's sake, and then enter your new"
|
|
535
550
|
" password twice so we can verify you typed it in correctly."
|
|
536
551
|
msgstr "Παρακαλώ εισάγετε τον παλιό κωδικό πρόσβασης και μετά εισάγετε τον νέο κωδικό πρόσβασης δύο φορές, ώστε να επιβεβαιωθεί ότι πληκτρολογήθηκε σωστά."
|
|
537
552
|
|
|
538
|
-
#: templates/umap/password_change.html:
|
|
553
|
+
#: templates/umap/password_change.html:21
|
|
539
554
|
msgid "Old password"
|
|
540
555
|
msgstr "Παλιός κωδικός πρόσβασης"
|
|
541
556
|
|
|
542
|
-
#: templates/umap/password_change.html:
|
|
557
|
+
#: templates/umap/password_change.html:26
|
|
543
558
|
msgid "New password"
|
|
544
559
|
msgstr "Νέος κωδικός πρόσβασης"
|
|
545
560
|
|
|
546
|
-
#: templates/umap/password_change.html:
|
|
561
|
+
#: templates/umap/password_change.html:30
|
|
547
562
|
msgid "New password confirmation"
|
|
548
563
|
msgstr "Επιβεβαίωση νέου κωδικού πρόσβασης"
|
|
549
564
|
|
|
550
|
-
#: templates/umap/password_change.html:
|
|
565
|
+
#: templates/umap/password_change.html:31
|
|
551
566
|
msgid "Change my password"
|
|
552
567
|
msgstr "Αλλαγή του κωδικού πρόσβασης"
|
|
553
568
|
|
|
554
|
-
#: templates/umap/password_change_done.html:
|
|
569
|
+
#: templates/umap/password_change_done.html:6
|
|
570
|
+
#: templates/umap/password_change_done.html:11
|
|
555
571
|
msgid "Password change successful"
|
|
556
572
|
msgstr "Η αλλαγή του κωδικού πρόσβασης ήταν επιτυχημένη"
|
|
557
573
|
|
|
558
|
-
#: templates/umap/password_change_done.html:
|
|
574
|
+
#: templates/umap/password_change_done.html:14
|
|
559
575
|
msgid "Your password was changed."
|
|
560
576
|
msgstr "Ο κωδικός πρόσβασής σας άλλαξε."
|
|
561
577
|
|
|
562
|
-
#: templates/umap/search.html:
|
|
578
|
+
#: templates/umap/search.html:6
|
|
579
|
+
msgid "Explore maps"
|
|
580
|
+
msgstr "Εξερεύνηση χαρτών"
|
|
581
|
+
|
|
582
|
+
#: templates/umap/search.html:19
|
|
563
583
|
#, python-format
|
|
564
584
|
msgid "%(count)s map found:"
|
|
565
585
|
msgid_plural "%(count)s maps found:"
|
|
566
586
|
msgstr[0] "%(count)s χάρτης βρέθηκε:"
|
|
567
587
|
msgstr[1] "%(count)s χάρτες βρέθηκαν:"
|
|
568
588
|
|
|
569
|
-
#: templates/umap/search.html:
|
|
589
|
+
#: templates/umap/search.html:28
|
|
570
590
|
msgid "No map found."
|
|
571
591
|
msgstr "Δεν βρέθηκε κανένας χάρτης."
|
|
572
592
|
|
|
573
|
-
#: templates/umap/search.html:
|
|
593
|
+
#: templates/umap/search.html:33
|
|
574
594
|
msgid "Latest created maps"
|
|
575
595
|
msgstr "Χάρτες που δημιουργήθηκαν τελευταίοι"
|
|
576
596
|
|
|
@@ -582,23 +602,36 @@ msgstr "Αναζήτηση χαρτών"
|
|
|
582
602
|
msgid "Search"
|
|
583
603
|
msgstr "Αναζήτηση"
|
|
584
604
|
|
|
585
|
-
#: templates/umap/
|
|
605
|
+
#: templates/umap/team_confirm_delete.html:6
|
|
606
|
+
msgid "Team deletion"
|
|
607
|
+
msgstr "Διαγραφή ομάδας"
|
|
608
|
+
|
|
609
|
+
#: templates/umap/team_detail.html:6
|
|
610
|
+
#, python-format
|
|
611
|
+
msgid "%(current_team)s’s maps"
|
|
612
|
+
msgstr "%(current_team)s’s χάρτες"
|
|
613
|
+
|
|
614
|
+
#: templates/umap/team_detail.html:14
|
|
586
615
|
#, python-format
|
|
587
616
|
msgid "Browse %(current_team)s's maps"
|
|
588
|
-
msgstr ""
|
|
617
|
+
msgstr "Περιήγηση στους χάρτες της %(current_team)s"
|
|
589
618
|
|
|
590
|
-
#: templates/umap/team_detail.html:
|
|
619
|
+
#: templates/umap/team_detail.html:26
|
|
591
620
|
#, python-format
|
|
592
621
|
msgid "%(current_team)s has no public maps."
|
|
593
|
-
msgstr ""
|
|
622
|
+
msgstr "%(current_team)s δεν έχει δημόσιους χάρτες."
|
|
623
|
+
|
|
624
|
+
#: templates/umap/team_form.html:6
|
|
625
|
+
msgid "Create or edit a team"
|
|
626
|
+
msgstr "Δημιουργία ή επεξεργασία ομάδας"
|
|
594
627
|
|
|
595
|
-
#: templates/umap/team_form.html:
|
|
628
|
+
#: templates/umap/team_form.html:28
|
|
596
629
|
msgid "Delete this team"
|
|
597
|
-
msgstr ""
|
|
630
|
+
msgstr "Διαγραφή αυτής της ομάδας"
|
|
598
631
|
|
|
599
|
-
#: templates/umap/team_form.html:
|
|
632
|
+
#: templates/umap/team_form.html:51
|
|
600
633
|
msgid "Add user"
|
|
601
|
-
msgstr ""
|
|
634
|
+
msgstr "Προσθήκη χρήστη"
|
|
602
635
|
|
|
603
636
|
#: templates/umap/user_dashboard.html:9 templates/umap/user_dashboard.html:25
|
|
604
637
|
msgid "Search my maps"
|
|
@@ -617,78 +650,89 @@ msgstr "Λήψη%(count)s χαρτών"
|
|
|
617
650
|
msgid "You have no map yet."
|
|
618
651
|
msgstr "Δεν έχετε ακόμη χάρτη."
|
|
619
652
|
|
|
620
|
-
#: templates/umap/user_teams.html:
|
|
653
|
+
#: templates/umap/user_teams.html:6
|
|
654
|
+
msgid "My Teams"
|
|
655
|
+
msgstr "Οι ομάδες μου"
|
|
656
|
+
|
|
657
|
+
#: templates/umap/user_teams.html:21
|
|
621
658
|
msgid "Users"
|
|
622
|
-
msgstr ""
|
|
659
|
+
msgstr "Χρήστες"
|
|
623
660
|
|
|
624
|
-
#: templates/umap/user_teams.html:
|
|
661
|
+
#: templates/umap/user_teams.html:52
|
|
625
662
|
msgid "New team"
|
|
626
|
-
msgstr ""
|
|
663
|
+
msgstr "Νέα ομάδα"
|
|
627
664
|
|
|
628
665
|
#: views.py:234
|
|
629
666
|
msgid "Cannot delete a team with more than one member"
|
|
630
|
-
msgstr ""
|
|
667
|
+
msgstr "Δεν είναι δυνατή η διαγραφή μιας ομάδας που έχει περισσότερα από ένα μέλη"
|
|
631
668
|
|
|
632
669
|
#: views.py:238
|
|
633
670
|
#, python-format
|
|
634
671
|
msgid "Team “%(name)s” has been deleted"
|
|
635
|
-
msgstr ""
|
|
672
|
+
msgstr "Η ομάδα «%(name)s» έχει διαγραφεί."
|
|
636
673
|
|
|
637
674
|
#: views.py:442
|
|
638
675
|
msgid "View the map"
|
|
639
676
|
msgstr "Προβολή του χάρτη"
|
|
640
677
|
|
|
641
|
-
#: views.py:
|
|
678
|
+
#: views.py:838
|
|
642
679
|
msgid "See full screen"
|
|
643
680
|
msgstr "Προβολή πλήρους οθόνης"
|
|
644
681
|
|
|
645
|
-
#: views.py:
|
|
682
|
+
#: views.py:981
|
|
646
683
|
msgid "Map editors updated with success!"
|
|
647
684
|
msgstr "Η ενημέρωση των συντακτών χάρτη ήταν επιτυχής!"
|
|
648
685
|
|
|
649
|
-
#: views.py:
|
|
686
|
+
#: views.py:1017
|
|
650
687
|
#, python-format
|
|
651
688
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
652
689
|
msgstr "Ο uMap σύνδεσμος επεξεργασίας του χάρτη σας: %(map_name)s"
|
|
653
690
|
|
|
654
|
-
#: views.py:
|
|
691
|
+
#: views.py:1020
|
|
655
692
|
#, python-format
|
|
656
693
|
msgid "Here is your secret edit link: %(link)s"
|
|
657
694
|
msgstr "Εδώ είναι ο μυστικός σύνδεσμος επεξεργασίας: %(link)s"
|
|
658
695
|
|
|
659
|
-
#: views.py:
|
|
696
|
+
#: views.py:1027
|
|
660
697
|
#, python-format
|
|
661
698
|
msgid "Can't send email to %(email)s"
|
|
662
699
|
msgstr "Αδυναμία αποστολής email στο %(email)s"
|
|
663
700
|
|
|
664
|
-
#: views.py:
|
|
701
|
+
#: views.py:1030
|
|
665
702
|
#, python-format
|
|
666
703
|
msgid "Email sent to %(email)s"
|
|
667
704
|
msgstr "Μήνυμα email στάλθηκε στο %(email)s"
|
|
668
705
|
|
|
669
|
-
#: views.py:
|
|
706
|
+
#: views.py:1041
|
|
670
707
|
msgid "Only its owner can delete the map."
|
|
671
708
|
msgstr "Μονό ο ιδιοκτήτης μπορεί να διαγράψει αυτό τον χάρτη."
|
|
672
709
|
|
|
673
|
-
#: views.py:
|
|
710
|
+
#: views.py:1044
|
|
674
711
|
msgid "Map successfully deleted."
|
|
675
712
|
msgstr "Ο χάρτης διαγράφηκε με επιτυχία."
|
|
676
713
|
|
|
677
|
-
#: views.py:
|
|
714
|
+
#: views.py:1070
|
|
678
715
|
#, python-format
|
|
679
716
|
msgid ""
|
|
680
717
|
"Your map has been cloned! If you want to edit this map from another "
|
|
681
718
|
"computer, please use this link: %(anonymous_url)s"
|
|
682
719
|
msgstr "Ο χάρτης κλωνοποιήθηκε! Αν θέλετε να τον επεξεργαστείτε από κάποιον άλλο υπολογιστή, παρακαλώ χρησιμοποιήστε αυτόν τον σύνδεσμο: %(anonymous_url)s"
|
|
683
720
|
|
|
684
|
-
#: views.py:
|
|
721
|
+
#: views.py:1075
|
|
685
722
|
msgid "Congratulations, your map has been cloned!"
|
|
686
723
|
msgstr "Συγχαρητήρια ο χάρτης σας κλωνοποιήθηκε!"
|
|
687
724
|
|
|
688
|
-
#: views.py:
|
|
725
|
+
#: views.py:1329
|
|
689
726
|
msgid "Layer successfully deleted."
|
|
690
727
|
msgstr "Το επίπεδο διαγράφηκε με επιτυχία."
|
|
691
728
|
|
|
692
|
-
#: views.py:
|
|
729
|
+
#: views.py:1351
|
|
693
730
|
msgid "Permissions updated with success!"
|
|
694
731
|
msgstr "Τα δικαιώματα ενημερώθηκαν με επιτυχία!"
|
|
732
|
+
|
|
733
|
+
#: views.py:1430
|
|
734
|
+
#, python-format
|
|
735
|
+
msgid ""
|
|
736
|
+
"Using “%(name)s” to authenticate is deprecated. Please configure another "
|
|
737
|
+
"provider in your profile page."
|
|
738
|
+
msgstr "Η χρήση του «%(name)s» για τον έλεγχο ταυτότητας έχει ξεπεραστεί. Παρακαλούμε ρυθμίστε έναν άλλο πάροχο στη σελίδα του προφίλ σας."
|