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.

Files changed (262) hide show
  1. umap/__init__.py +1 -1
  2. umap/admin.py +15 -2
  3. umap/asgi.py +12 -7
  4. umap/context_processors.py +1 -0
  5. umap/locale/br/LC_MESSAGES/django.mo +0 -0
  6. umap/locale/br/LC_MESSAGES/django.po +111 -67
  7. umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
  8. umap/locale/cs_CZ/LC_MESSAGES/django.po +110 -66
  9. umap/locale/el/LC_MESSAGES/django.mo +0 -0
  10. umap/locale/el/LC_MESSAGES/django.po +129 -85
  11. umap/locale/en/LC_MESSAGES/django.po +103 -60
  12. umap/locale/es/LC_MESSAGES/django.mo +0 -0
  13. umap/locale/es/LC_MESSAGES/django.po +114 -69
  14. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  15. umap/locale/fr/LC_MESSAGES/django.po +105 -61
  16. umap/locale/gl/LC_MESSAGES/django.mo +0 -0
  17. umap/locale/gl/LC_MESSAGES/django.po +216 -171
  18. umap/locale/hu/LC_MESSAGES/django.mo +0 -0
  19. umap/locale/hu/LC_MESSAGES/django.po +10 -10
  20. umap/locale/it/LC_MESSAGES/django.mo +0 -0
  21. umap/locale/it/LC_MESSAGES/django.po +142 -98
  22. umap/locale/nl/LC_MESSAGES/django.mo +0 -0
  23. umap/locale/nl/LC_MESSAGES/django.po +196 -151
  24. umap/locale/pt/LC_MESSAGES/django.mo +0 -0
  25. umap/locale/pt/LC_MESSAGES/django.po +115 -71
  26. umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
  27. umap/locale/zh_TW/LC_MESSAGES/django.po +109 -65
  28. umap/management/commands/empty_trash.py +12 -1
  29. umap/migrations/0026_datalayer_modified_at_datalayer_share_status.py +26 -0
  30. umap/models.py +43 -13
  31. umap/settings/base.py +5 -2
  32. umap/static/umap/base.css +5 -2
  33. umap/static/umap/content.css +2 -22
  34. umap/static/umap/css/bar.css +39 -10
  35. umap/static/umap/css/contextmenu.css +14 -2
  36. umap/static/umap/css/form.css +33 -39
  37. umap/static/umap/css/icon.css +47 -5
  38. umap/static/umap/css/panel.css +20 -2
  39. umap/static/umap/css/popup.css +0 -1
  40. umap/static/umap/css/tooltip.css +33 -31
  41. umap/static/umap/img/16-white.svg +5 -3
  42. umap/static/umap/img/16.svg +1 -1
  43. umap/static/umap/img/24-white.svg +17 -16
  44. umap/static/umap/img/24.svg +29 -18
  45. umap/static/umap/img/providers/bitbucket.png +0 -0
  46. umap/static/umap/img/providers/github.png +0 -0
  47. umap/static/umap/img/providers/keycloak.png +0 -0
  48. umap/static/umap/img/providers/openstreetmap-oauth2.png +0 -0
  49. umap/static/umap/img/providers/twitter-oauth2.png +0 -0
  50. umap/static/umap/img/source/16-white.svg +6 -4
  51. umap/static/umap/img/source/16.svg +1 -1
  52. umap/static/umap/img/source/24-white.svg +20 -18
  53. umap/static/umap/img/source/24.svg +30 -19
  54. umap/static/umap/js/components/alerts/alert.js +4 -1
  55. umap/static/umap/js/modules/browser.js +8 -8
  56. umap/static/umap/js/modules/caption.js +30 -7
  57. umap/static/umap/js/modules/data/features.js +101 -56
  58. umap/static/umap/js/modules/data/layer.js +108 -83
  59. umap/static/umap/js/modules/form/builder.js +242 -0
  60. umap/static/umap/js/modules/form/fields.js +1346 -0
  61. umap/static/umap/js/modules/formatter.js +9 -8
  62. umap/static/umap/js/modules/help.js +20 -24
  63. umap/static/umap/js/modules/importer.js +6 -3
  64. umap/static/umap/js/modules/permissions.js +11 -6
  65. umap/static/umap/js/modules/rendering/icon.js +5 -1
  66. umap/static/umap/js/modules/rendering/layers/classified.js +12 -8
  67. umap/static/umap/js/modules/rendering/layers/cluster.js +11 -1
  68. umap/static/umap/js/modules/rendering/map.js +1 -23
  69. umap/static/umap/js/modules/rendering/ui.js +20 -38
  70. umap/static/umap/js/modules/rules.js +3 -2
  71. umap/static/umap/js/modules/saving.js +5 -0
  72. umap/static/umap/js/modules/schema.js +8 -6
  73. umap/static/umap/js/modules/share.js +3 -3
  74. umap/static/umap/js/modules/sync/engine.js +56 -26
  75. umap/static/umap/js/modules/sync/updaters.js +15 -6
  76. umap/static/umap/js/modules/sync/websocket.js +50 -37
  77. umap/static/umap/js/modules/tableeditor.js +3 -2
  78. umap/static/umap/js/modules/ui/bar.js +101 -9
  79. umap/static/umap/js/modules/ui/base.js +7 -24
  80. umap/static/umap/js/modules/ui/contextmenu.js +9 -2
  81. umap/static/umap/js/modules/ui/panel.js +5 -1
  82. umap/static/umap/js/modules/ui/tooltip.js +19 -11
  83. umap/static/umap/js/modules/umap.js +124 -71
  84. umap/static/umap/js/modules/utils.js +196 -12
  85. umap/static/umap/js/umap.controls.js +12 -354
  86. umap/static/umap/locale/am_ET.js +17 -5
  87. umap/static/umap/locale/am_ET.json +17 -5
  88. umap/static/umap/locale/ar.js +17 -5
  89. umap/static/umap/locale/ar.json +17 -5
  90. umap/static/umap/locale/ast.js +17 -5
  91. umap/static/umap/locale/ast.json +17 -5
  92. umap/static/umap/locale/bg.js +17 -5
  93. umap/static/umap/locale/bg.json +17 -5
  94. umap/static/umap/locale/br.js +33 -20
  95. umap/static/umap/locale/br.json +33 -20
  96. umap/static/umap/locale/ca.js +17 -5
  97. umap/static/umap/locale/ca.json +17 -5
  98. umap/static/umap/locale/cs_CZ.js +15 -5
  99. umap/static/umap/locale/cs_CZ.json +15 -5
  100. umap/static/umap/locale/da.js +17 -5
  101. umap/static/umap/locale/da.json +17 -5
  102. umap/static/umap/locale/de.js +17 -5
  103. umap/static/umap/locale/de.json +17 -5
  104. umap/static/umap/locale/el.js +63 -51
  105. umap/static/umap/locale/el.json +63 -51
  106. umap/static/umap/locale/en.js +15 -5
  107. umap/static/umap/locale/en.json +15 -5
  108. umap/static/umap/locale/en_US.json +17 -5
  109. umap/static/umap/locale/es.js +25 -13
  110. umap/static/umap/locale/es.json +25 -13
  111. umap/static/umap/locale/et.js +17 -5
  112. umap/static/umap/locale/et.json +17 -5
  113. umap/static/umap/locale/eu.js +17 -5
  114. umap/static/umap/locale/eu.json +17 -5
  115. umap/static/umap/locale/fa_IR.js +17 -5
  116. umap/static/umap/locale/fa_IR.json +17 -5
  117. umap/static/umap/locale/fi.js +17 -5
  118. umap/static/umap/locale/fi.json +17 -5
  119. umap/static/umap/locale/fr.js +16 -6
  120. umap/static/umap/locale/fr.json +16 -6
  121. umap/static/umap/locale/gl.js +357 -345
  122. umap/static/umap/locale/gl.json +357 -345
  123. umap/static/umap/locale/he.js +17 -5
  124. umap/static/umap/locale/he.json +17 -5
  125. umap/static/umap/locale/hr.js +17 -5
  126. umap/static/umap/locale/hr.json +17 -5
  127. umap/static/umap/locale/hu.js +39 -27
  128. umap/static/umap/locale/hu.json +39 -27
  129. umap/static/umap/locale/id.js +17 -5
  130. umap/static/umap/locale/id.json +17 -5
  131. umap/static/umap/locale/is.js +17 -5
  132. umap/static/umap/locale/is.json +17 -5
  133. umap/static/umap/locale/it.js +125 -113
  134. umap/static/umap/locale/it.json +125 -113
  135. umap/static/umap/locale/ja.js +17 -5
  136. umap/static/umap/locale/ja.json +17 -5
  137. umap/static/umap/locale/ko.js +17 -5
  138. umap/static/umap/locale/ko.json +17 -5
  139. umap/static/umap/locale/lt.js +17 -5
  140. umap/static/umap/locale/lt.json +17 -5
  141. umap/static/umap/locale/ms.js +17 -5
  142. umap/static/umap/locale/ms.json +17 -5
  143. umap/static/umap/locale/nl.js +132 -119
  144. umap/static/umap/locale/nl.json +132 -119
  145. umap/static/umap/locale/no.js +17 -5
  146. umap/static/umap/locale/no.json +17 -5
  147. umap/static/umap/locale/pl.js +17 -5
  148. umap/static/umap/locale/pl.json +17 -5
  149. umap/static/umap/locale/pl_PL.json +17 -5
  150. umap/static/umap/locale/pt.js +38 -25
  151. umap/static/umap/locale/pt.json +38 -25
  152. umap/static/umap/locale/pt_BR.js +17 -5
  153. umap/static/umap/locale/pt_BR.json +17 -5
  154. umap/static/umap/locale/pt_PT.js +17 -5
  155. umap/static/umap/locale/pt_PT.json +17 -5
  156. umap/static/umap/locale/ro.js +17 -5
  157. umap/static/umap/locale/ro.json +17 -5
  158. umap/static/umap/locale/ru.js +17 -5
  159. umap/static/umap/locale/ru.json +17 -5
  160. umap/static/umap/locale/sk_SK.js +17 -5
  161. umap/static/umap/locale/sk_SK.json +17 -5
  162. umap/static/umap/locale/sl.js +17 -5
  163. umap/static/umap/locale/sl.json +17 -5
  164. umap/static/umap/locale/sr.js +17 -5
  165. umap/static/umap/locale/sr.json +17 -5
  166. umap/static/umap/locale/sv.js +17 -5
  167. umap/static/umap/locale/sv.json +17 -5
  168. umap/static/umap/locale/th_TH.js +17 -5
  169. umap/static/umap/locale/th_TH.json +17 -5
  170. umap/static/umap/locale/tr.js +17 -5
  171. umap/static/umap/locale/tr.json +17 -5
  172. umap/static/umap/locale/uk_UA.js +17 -5
  173. umap/static/umap/locale/uk_UA.json +17 -5
  174. umap/static/umap/locale/vi.js +17 -5
  175. umap/static/umap/locale/vi.json +17 -5
  176. umap/static/umap/locale/vi_VN.json +17 -5
  177. umap/static/umap/locale/zh.js +17 -5
  178. umap/static/umap/locale/zh.json +17 -5
  179. umap/static/umap/locale/zh_CN.json +17 -5
  180. umap/static/umap/locale/zh_TW.Big5.json +17 -5
  181. umap/static/umap/locale/zh_TW.js +15 -5
  182. umap/static/umap/locale/zh_TW.json +15 -5
  183. umap/static/umap/map.css +29 -76
  184. umap/static/umap/nav.css +6 -3
  185. umap/static/umap/unittests/utils.js +14 -0
  186. umap/static/umap/vars.css +3 -0
  187. umap/static/umap/vendors/dompurify/purify.es.js +138 -354
  188. umap/static/umap/vendors/dompurify/purify.es.mjs.map +1 -1
  189. umap/static/umap/vendors/editable/Leaflet.Editable.js +1 -0
  190. umap/sync/__init__.py +0 -0
  191. umap/sync/app.py +187 -0
  192. umap/sync/payloads.py +56 -0
  193. umap/templates/auth/user_detail.html +4 -0
  194. umap/templates/auth/user_form.html +9 -6
  195. umap/templates/auth/user_stars.html +4 -0
  196. umap/templates/base.html +1 -1
  197. umap/templates/registration/login.html +2 -5
  198. umap/templates/umap/about.html +5 -0
  199. umap/templates/umap/about_summary.html +2 -2
  200. umap/templates/umap/components/provider.html +8 -0
  201. umap/templates/umap/content_footer.html +1 -1
  202. umap/templates/umap/css.html +0 -2
  203. umap/templates/umap/js.html +0 -4
  204. umap/templates/umap/map_detail.html +1 -1
  205. umap/templates/umap/password_change.html +4 -0
  206. umap/templates/umap/password_change_done.html +4 -0
  207. umap/templates/umap/search.html +4 -0
  208. umap/templates/umap/search_bar.html +1 -0
  209. umap/templates/umap/team_confirm_delete.html +4 -0
  210. umap/templates/umap/team_detail.html +4 -0
  211. umap/templates/umap/team_form.html +4 -0
  212. umap/templates/umap/user_dashboard.html +1 -1
  213. umap/templates/umap/user_teams.html +4 -0
  214. umap/tests/base.py +3 -1
  215. umap/tests/integration/conftest.py +16 -23
  216. umap/tests/integration/test_anonymous_owned_map.py +2 -2
  217. umap/tests/integration/test_basics.py +4 -7
  218. umap/tests/integration/test_caption.py +1 -0
  219. umap/tests/integration/test_categorized_layer.py +4 -8
  220. umap/tests/integration/test_choropleth.py +1 -1
  221. umap/tests/integration/test_conditional_rules.py +3 -3
  222. umap/tests/integration/test_draw_polygon.py +14 -22
  223. umap/tests/integration/test_draw_polyline.py +6 -14
  224. umap/tests/integration/test_edit_datalayer.py +11 -11
  225. umap/tests/integration/test_edit_map.py +30 -4
  226. umap/tests/integration/test_edit_marker.py +5 -5
  227. umap/tests/integration/test_edit_polygon.py +6 -6
  228. umap/tests/integration/test_features_id_generation.py +2 -6
  229. umap/tests/integration/test_import.py +115 -29
  230. umap/tests/integration/test_optimistic_merge.py +1 -0
  231. umap/tests/integration/test_owned_map.py +1 -1
  232. umap/tests/integration/test_picto.py +8 -8
  233. umap/tests/integration/test_save.py +3 -2
  234. umap/tests/integration/test_star.py +13 -9
  235. umap/tests/integration/test_tableeditor.py +8 -7
  236. umap/tests/integration/test_view_marker.py +10 -0
  237. umap/tests/integration/test_websocket_sync.py +239 -64
  238. umap/tests/settings.py +2 -0
  239. umap/tests/test_datalayer.py +2 -3
  240. umap/tests/test_datalayer_views.py +20 -1
  241. umap/tests/test_empty_trash.py +10 -3
  242. umap/tests/test_map_views.py +11 -0
  243. umap/utils.py +27 -11
  244. umap/views.py +37 -6
  245. {umap_project-2.8.1.dist-info → umap_project-2.9.0.dist-info}/METADATA +22 -22
  246. {umap_project-2.8.1.dist-info → umap_project-2.9.0.dist-info}/RECORD +249 -250
  247. {umap_project-2.8.1.dist-info → umap_project-2.9.0.dist-info}/WHEEL +1 -1
  248. umap/management/commands/run_websocket_server.py +0 -23
  249. umap/settings/local_s3.py +0 -45
  250. umap/static/umap/bitbucket.png +0 -0
  251. umap/static/umap/github.png +0 -0
  252. umap/static/umap/js/umap.forms.js +0 -1242
  253. umap/static/umap/keycloak.png +0 -0
  254. umap/static/umap/openstreetmap.png +0 -0
  255. umap/static/umap/twitter.png +0 -0
  256. umap/static/umap/vendors/formbuilder/Leaflet.FormBuilder.js +0 -468
  257. umap/static/umap/vendors/toolbar/leaflet.toolbar.css +0 -1
  258. umap/static/umap/vendors/toolbar/leaflet.toolbar.js +0 -1
  259. umap/tests/test_websocket_server.py +0 -22
  260. umap/websocket_server.py +0 -202
  261. {umap_project-2.8.1.dist-info → umap_project-2.9.0.dist-info}/entry_points.txt +0 -0
  262. {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: 2024-12-24 08:39+0000\n"
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: Yannis Kaskamanidis <kiolalis@gmail.com>, 2021,2023-2024\n"
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:475
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:469
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:470
66
+ #: models.py:176 models.py:480
67
67
  msgid "Everyone can edit"
68
68
  msgstr "Όλοι μπορούν να επεξεργαστούν"
69
69
 
70
- #: models.py:179 models.py:463
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:464
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:465
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:491
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:486
146
+ #: models.py:237 models.py:496
147
147
  msgid "settings"
148
148
  msgstr "ρυθμίσεις"
149
149
 
150
- #: models.py:402
150
+ #: models.py:407
151
151
  msgid "Clone of"
152
152
  msgstr "Κλώνος του"
153
153
 
154
- #: models.py:462 models.py:468
154
+ #: models.py:468 models.py:472 models.py:478
155
155
  msgid "Inherit"
156
156
  msgstr "Κληρονόμοι"
157
157
 
158
- #: models.py:481
158
+ #: models.py:491
159
159
  msgid "display on load"
160
160
  msgstr "εμφάνιση κατά τη φόρτωση"
161
161
 
162
- #: models.py:482
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:8
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:17
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:21 templates/umap/team_form.html:21
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:27
204
+ #: templates/auth/user_form.html:30
196
205
  msgid "Your current providers"
197
206
  msgstr "Οι τρέχοντες πάροχοι σας"
198
207
 
199
- #: templates/auth/user_form.html:39
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:42
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:8
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:17
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:14
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:20
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:38 templates/umap/user_teams.html:40
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:7
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:10
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:17
553
+ #: templates/umap/password_change.html:21
539
554
  msgid "Old password"
540
555
  msgstr "Παλιός κωδικός πρόσβασης"
541
556
 
542
- #: templates/umap/password_change.html:22
557
+ #: templates/umap/password_change.html:26
543
558
  msgid "New password"
544
559
  msgstr "Νέος κωδικός πρόσβασης"
545
560
 
546
- #: templates/umap/password_change.html:26
561
+ #: templates/umap/password_change.html:30
547
562
  msgid "New password confirmation"
548
563
  msgstr "Επιβεβαίωση νέου κωδικού πρόσβασης"
549
564
 
550
- #: templates/umap/password_change.html:27
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:7
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:10
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:15
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:24
589
+ #: templates/umap/search.html:28
570
590
  msgid "No map found."
571
591
  msgstr "Δεν βρέθηκε κανένας χάρτης."
572
592
 
573
- #: templates/umap/search.html:29
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/team_detail.html:10
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:22
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:24
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:47
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:17
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:48
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:825
678
+ #: views.py:838
642
679
  msgid "See full screen"
643
680
  msgstr "Προβολή πλήρους οθόνης"
644
681
 
645
- #: views.py:968
682
+ #: views.py:981
646
683
  msgid "Map editors updated with success!"
647
684
  msgstr "Η ενημέρωση των συντακτών χάρτη ήταν επιτυχής!"
648
685
 
649
- #: views.py:1004
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:1007
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:1014
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:1017
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:1028
706
+ #: views.py:1041
670
707
  msgid "Only its owner can delete the map."
671
708
  msgstr "Μονό ο ιδιοκτήτης μπορεί να διαγράψει αυτό τον χάρτη."
672
709
 
673
- #: views.py:1031
710
+ #: views.py:1044
674
711
  msgid "Map successfully deleted."
675
712
  msgstr "Ο χάρτης διαγράφηκε με επιτυχία."
676
713
 
677
- #: views.py:1057
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:1062
721
+ #: views.py:1075
685
722
  msgid "Congratulations, your map has been cloned!"
686
723
  msgstr "Συγχαρητήρια ο χάρτης σας κλωνοποιήθηκε!"
687
724
 
688
- #: views.py:1313
725
+ #: views.py:1329
689
726
  msgid "Layer successfully deleted."
690
727
  msgstr "Το επίπεδο διαγράφηκε με επιτυχία."
691
728
 
692
- #: views.py:1335
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» για τον έλεγχο ταυτότητας έχει ξεπεραστεί. Παρακαλούμε ρυθμίστε έναν άλλο πάροχο στη σελίδα του προφίλ σας."