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

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

Potentially problematic release.


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

Files changed (193) hide show
  1. umap/__init__.py +1 -1
  2. umap/admin.py +6 -1
  3. umap/context_processors.py +2 -1
  4. umap/decorators.py +13 -2
  5. umap/forms.py +26 -2
  6. umap/locale/br/LC_MESSAGES/django.mo +0 -0
  7. umap/locale/br/LC_MESSAGES/django.po +252 -146
  8. umap/locale/ca/LC_MESSAGES/django.mo +0 -0
  9. umap/locale/ca/LC_MESSAGES/django.po +274 -162
  10. umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
  11. umap/locale/cs_CZ/LC_MESSAGES/django.po +261 -150
  12. umap/locale/de/LC_MESSAGES/django.mo +0 -0
  13. umap/locale/de/LC_MESSAGES/django.po +299 -187
  14. umap/locale/el/LC_MESSAGES/django.mo +0 -0
  15. umap/locale/el/LC_MESSAGES/django.po +215 -159
  16. umap/locale/en/LC_MESSAGES/django.po +211 -155
  17. umap/locale/es/LC_MESSAGES/django.mo +0 -0
  18. umap/locale/es/LC_MESSAGES/django.po +255 -144
  19. umap/locale/eu/LC_MESSAGES/django.mo +0 -0
  20. umap/locale/eu/LC_MESSAGES/django.po +254 -198
  21. umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
  22. umap/locale/fa_IR/LC_MESSAGES/django.po +346 -234
  23. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  24. umap/locale/fr/LC_MESSAGES/django.po +216 -160
  25. umap/locale/hu/LC_MESSAGES/django.mo +0 -0
  26. umap/locale/hu/LC_MESSAGES/django.po +215 -159
  27. umap/locale/it/LC_MESSAGES/django.mo +0 -0
  28. umap/locale/it/LC_MESSAGES/django.po +252 -146
  29. umap/locale/ms/LC_MESSAGES/django.mo +0 -0
  30. umap/locale/ms/LC_MESSAGES/django.po +252 -146
  31. umap/locale/pl/LC_MESSAGES/django.mo +0 -0
  32. umap/locale/pl/LC_MESSAGES/django.po +254 -148
  33. umap/locale/pt/LC_MESSAGES/django.mo +0 -0
  34. umap/locale/pt/LC_MESSAGES/django.po +215 -159
  35. umap/locale/sv/LC_MESSAGES/django.mo +0 -0
  36. umap/locale/sv/LC_MESSAGES/django.po +254 -143
  37. umap/locale/th_TH/LC_MESSAGES/django.mo +0 -0
  38. umap/locale/th_TH/LC_MESSAGES/django.po +125 -70
  39. umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
  40. umap/locale/zh_TW/LC_MESSAGES/django.po +256 -145
  41. umap/migrations/0022_add_team.py +94 -0
  42. umap/models.py +45 -10
  43. umap/settings/__init__.py +2 -0
  44. umap/settings/base.py +3 -2
  45. umap/static/umap/base.css +32 -41
  46. umap/static/umap/content.css +19 -25
  47. umap/static/umap/css/icon.css +63 -37
  48. umap/static/umap/css/importers.css +1 -1
  49. umap/static/umap/css/slideshow.css +7 -5
  50. umap/static/umap/css/tableeditor.css +4 -3
  51. umap/static/umap/img/16-white.svg +1 -4
  52. umap/static/umap/img/16.svg +2 -6
  53. umap/static/umap/img/24-white.svg +4 -4
  54. umap/static/umap/img/24.svg +6 -6
  55. umap/static/umap/img/source/16-white.svg +2 -5
  56. umap/static/umap/img/source/16.svg +3 -7
  57. umap/static/umap/img/source/24-white.svg +7 -14
  58. umap/static/umap/img/source/24.svg +10 -17
  59. umap/static/umap/js/components/alerts/alert.css +20 -8
  60. umap/static/umap/js/modules/autocomplete.js +3 -3
  61. umap/static/umap/js/modules/browser.js +4 -3
  62. umap/static/umap/js/modules/caption.js +9 -11
  63. umap/static/umap/js/modules/data/features.js +994 -0
  64. umap/static/umap/js/modules/data/layer.js +1210 -0
  65. umap/static/umap/js/modules/formatter.js +12 -3
  66. umap/static/umap/js/modules/global.js +21 -5
  67. umap/static/umap/js/modules/permissions.js +280 -0
  68. umap/static/umap/js/{umap.icon.js → modules/rendering/icon.js} +77 -56
  69. umap/static/umap/js/modules/rendering/layers/base.js +105 -0
  70. umap/static/umap/js/modules/rendering/layers/classified.js +484 -0
  71. umap/static/umap/js/modules/rendering/layers/cluster.js +103 -0
  72. umap/static/umap/js/modules/rendering/layers/heat.js +182 -0
  73. umap/static/umap/js/modules/rendering/popup.js +99 -0
  74. umap/static/umap/js/modules/rendering/template.js +217 -0
  75. umap/static/umap/js/modules/rendering/ui.js +573 -0
  76. umap/static/umap/js/modules/schema.js +24 -0
  77. umap/static/umap/js/modules/share.js +66 -45
  78. umap/static/umap/js/modules/sync/updaters.js +9 -10
  79. umap/static/umap/js/modules/tableeditor.js +7 -7
  80. umap/static/umap/js/modules/ui/dialog.js +8 -4
  81. umap/static/umap/js/modules/utils.js +22 -13
  82. umap/static/umap/js/umap.controls.js +79 -146
  83. umap/static/umap/js/umap.core.js +9 -9
  84. umap/static/umap/js/umap.forms.js +32 -12
  85. umap/static/umap/js/umap.js +65 -63
  86. umap/static/umap/locale/br.js +35 -35
  87. umap/static/umap/locale/br.json +35 -35
  88. umap/static/umap/locale/ca.js +50 -50
  89. umap/static/umap/locale/ca.json +50 -50
  90. umap/static/umap/locale/de.js +136 -136
  91. umap/static/umap/locale/de.json +136 -136
  92. umap/static/umap/locale/el.js +47 -47
  93. umap/static/umap/locale/el.json +47 -47
  94. umap/static/umap/locale/en.js +7 -1
  95. umap/static/umap/locale/en.json +7 -1
  96. umap/static/umap/locale/fa_IR.js +44 -44
  97. umap/static/umap/locale/fa_IR.json +44 -44
  98. umap/static/umap/locale/fr.js +8 -2
  99. umap/static/umap/locale/fr.json +8 -2
  100. umap/static/umap/locale/pt.js +17 -17
  101. umap/static/umap/locale/pt.json +17 -17
  102. umap/static/umap/locale/pt_PT.js +207 -207
  103. umap/static/umap/locale/pt_PT.json +207 -207
  104. umap/static/umap/locale/th_TH.js +25 -25
  105. umap/static/umap/locale/th_TH.json +25 -25
  106. umap/static/umap/map.css +107 -104
  107. umap/static/umap/nav.css +19 -10
  108. umap/static/umap/unittests/utils.js +230 -107
  109. umap/static/umap/vendors/csv2geojson/csv2geojson.js +62 -40
  110. umap/static/umap/vendors/markercluster/MarkerCluster.Default.css +1 -1
  111. umap/storage.py +1 -0
  112. umap/templates/404.html +5 -1
  113. umap/templates/500.html +3 -1
  114. umap/templates/auth/user_detail.html +8 -2
  115. umap/templates/auth/user_form.html +19 -10
  116. umap/templates/auth/user_stars.html +8 -2
  117. umap/templates/base.html +1 -0
  118. umap/templates/registration/login.html +18 -3
  119. umap/templates/umap/about.html +1 -0
  120. umap/templates/umap/about_summary.html +22 -7
  121. umap/templates/umap/components/alerts/alert.html +42 -21
  122. umap/templates/umap/content.html +2 -0
  123. umap/templates/umap/content_footer.html +6 -2
  124. umap/templates/umap/css.html +1 -0
  125. umap/templates/umap/dashboard_menu.html +15 -0
  126. umap/templates/umap/home.html +14 -4
  127. umap/templates/umap/js.html +4 -9
  128. umap/templates/umap/login_popup_end.html +10 -4
  129. umap/templates/umap/map_detail.html +8 -2
  130. umap/templates/umap/map_fragment.html +3 -1
  131. umap/templates/umap/map_init.html +2 -1
  132. umap/templates/umap/map_list.html +4 -3
  133. umap/templates/umap/map_table.html +36 -12
  134. umap/templates/umap/messages.html +0 -1
  135. umap/templates/umap/navigation.html +2 -1
  136. umap/templates/umap/password_change.html +5 -1
  137. umap/templates/umap/password_change_done.html +8 -2
  138. umap/templates/umap/search.html +8 -2
  139. umap/templates/umap/search_bar.html +1 -0
  140. umap/templates/umap/team_confirm_delete.html +19 -0
  141. umap/templates/umap/team_detail.html +27 -0
  142. umap/templates/umap/team_form.html +60 -0
  143. umap/templates/umap/user_dashboard.html +7 -9
  144. umap/templates/umap/user_teams.html +51 -0
  145. umap/tests/base.py +8 -1
  146. umap/tests/conftest.py +6 -0
  147. umap/tests/fixtures/test_circles_layer.geojson +219 -0
  148. umap/tests/fixtures/test_upload_georss.xml +20 -0
  149. umap/tests/integration/conftest.py +18 -4
  150. umap/tests/integration/helpers.py +12 -0
  151. umap/tests/integration/test_anonymous_owned_map.py +23 -0
  152. umap/tests/integration/test_basics.py +29 -0
  153. umap/tests/integration/test_caption.py +20 -0
  154. umap/tests/integration/test_circles_layer.py +69 -0
  155. umap/tests/integration/test_draw_polygon.py +110 -13
  156. umap/tests/integration/test_draw_polyline.py +8 -18
  157. umap/tests/integration/test_edit_datalayer.py +1 -1
  158. umap/tests/integration/test_import.py +64 -5
  159. umap/tests/integration/test_owned_map.py +21 -13
  160. umap/tests/integration/test_team.py +47 -0
  161. umap/tests/integration/test_tilelayer.py +19 -2
  162. umap/tests/integration/test_view_marker.py +28 -1
  163. umap/tests/integration/test_websocket_sync.py +5 -5
  164. umap/tests/test_datalayer.py +32 -7
  165. umap/tests/test_datalayer_views.py +1 -1
  166. umap/tests/test_map.py +30 -4
  167. umap/tests/test_map_views.py +2 -2
  168. umap/tests/test_statics.py +40 -0
  169. umap/tests/test_team_views.py +131 -0
  170. umap/tests/test_views.py +15 -1
  171. umap/urls.py +23 -13
  172. umap/views.py +116 -10
  173. {umap_project-2.5.1.dist-info → umap_project-2.6.0b0.dist-info}/METADATA +9 -9
  174. {umap_project-2.5.1.dist-info → umap_project-2.6.0b0.dist-info}/RECORD +177 -170
  175. umap/static/umap/js/umap.datalayer.permissions.js +0 -70
  176. umap/static/umap/js/umap.features.js +0 -1290
  177. umap/static/umap/js/umap.layer.js +0 -1837
  178. umap/static/umap/js/umap.permissions.js +0 -208
  179. umap/static/umap/js/umap.popup.js +0 -341
  180. umap/static/umap/test/TableEditor.js +0 -104
  181. umap/static/umap/vendors/leaflet/leaflet-src.js +0 -14512
  182. umap/static/umap/vendors/leaflet/leaflet-src.js.map +0 -1
  183. umap/static/umap/vendors/leaflet/leaflet.js +0 -6
  184. umap/static/umap/vendors/leaflet/leaflet.js.map +0 -1
  185. umap/static/umap/vendors/markercluster/WhereAreTheJavascriptFiles.txt +0 -5
  186. umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js +0 -2718
  187. umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js.map +0 -1
  188. umap/static/umap/vendors/toolbar/leaflet.toolbar-src.css +0 -117
  189. umap/static/umap/vendors/toolbar/leaflet.toolbar-src.js +0 -365
  190. umap/tests/integration/test_statics.py +0 -47
  191. {umap_project-2.5.1.dist-info → umap_project-2.6.0b0.dist-info}/WHEEL +0 -0
  192. {umap_project-2.5.1.dist-info → umap_project-2.6.0b0.dist-info}/entry_points.txt +0 -0
  193. {umap_project-2.5.1.dist-info → umap_project-2.6.0b0.dist-info}/licenses/LICENSE +0 -0
@@ -13,7 +13,7 @@ msgid ""
13
13
  msgstr ""
14
14
  "Project-Id-Version: uMap\n"
15
15
  "Report-Msgid-Bugs-To: \n"
16
- "POT-Creation-Date: 2024-06-26 20:59+0000\n"
16
+ "POT-Creation-Date: 2024-08-30 18:23+0000\n"
17
17
  "PO-Revision-Date: 2013-11-22 14:00+0000\n"
18
18
  "Last-Translator: Yannis Kaskamanidis <kiolalis@gmail.com>, 2021,2023-2024\n"
19
19
  "Language-Team: Greek (http://app.transifex.com/openstreetmap/umap/language/el/)\n"
@@ -31,7 +31,7 @@ msgstr "Επεξεργάσιμο μόνο με μυστικό σύνδεσμο"
31
31
  msgid "Everyone can edit"
32
32
  msgstr "Όλοι μπορούν να επεξεργαστούν"
33
33
 
34
- #: forms.py:69 models.py:389
34
+ #: forms.py:69 models.py:423
35
35
  msgid "Inherit"
36
36
  msgstr "Κληρονόμοι"
37
37
 
@@ -39,242 +39,238 @@ msgstr "Κληρονόμοι"
39
39
  msgid "Site is readonly for maintenance"
40
40
  msgstr "Λόγω συντήρησης, ο ιστότοπος είναι μόνο για ανάγνωση"
41
41
 
42
- #: models.py:53
42
+ #: models.py:54 models.py:73
43
43
  msgid "name"
44
44
  msgstr "όνομα"
45
45
 
46
- #: models.py:84
46
+ #: models.py:56 models.py:433
47
+ msgid "description"
48
+ msgstr "περιγραφή"
49
+
50
+ #: models.py:104
47
51
  msgid "details"
48
52
  msgstr "λεπτομέρειες"
49
53
 
50
- #: models.py:85
54
+ #: models.py:105
51
55
  msgid "Link to a page where the licence is detailed."
52
56
  msgstr "Σύνδεσμος σελίδας αναλυτικής Άδειας Χρήσης."
53
57
 
54
- #: models.py:95
58
+ #: models.py:115
55
59
  msgid "URL template using OSM tile format"
56
60
  msgstr "Πρότυπο URL που χρησιμοποιεί μορφοποίηση πλακιδίων OSM"
57
61
 
58
- #: models.py:101
62
+ #: models.py:121
59
63
  msgid "Order of the tilelayers in the edit box"
60
64
  msgstr "Σειρά των υπόβαθρων στο πλαίσιο επεξεργασίας"
61
65
 
62
- #: models.py:147 models.py:390
66
+ #: models.py:167 models.py:424
63
67
  msgid "Everyone"
64
68
  msgstr "Οποιοσδήποτε"
65
69
 
66
- #: models.py:148 models.py:154 models.py:391
67
- msgid "Editors only"
68
- msgstr "Μόνο οι συντάκτες"
70
+ #: models.py:168 models.py:174 models.py:425
71
+ msgid "Editors and team only"
72
+ msgstr ""
69
73
 
70
- #: models.py:149 models.py:392
74
+ #: models.py:169 models.py:426
71
75
  msgid "Owner only"
72
76
  msgstr "Μόνο ο κάτοχος"
73
77
 
74
- #: models.py:152
78
+ #: models.py:172
75
79
  msgid "Everyone (public)"
76
80
  msgstr "Όλοι (δημόσιος)"
77
81
 
78
- #: models.py:153
82
+ #: models.py:173
79
83
  msgid "Anyone with link"
80
84
  msgstr "Οποιοδήποτε με τον σύνδεσμο"
81
85
 
82
- #: models.py:155
86
+ #: models.py:175
83
87
  msgid "Blocked"
84
88
  msgstr "Αποκλεισμένος"
85
89
 
86
- #: models.py:158
90
+ #: models.py:178
87
91
  msgid "center"
88
92
  msgstr "κέντρο"
89
93
 
90
- #: models.py:159
94
+ #: models.py:179
91
95
  msgid "zoom"
92
96
  msgstr "εστίαση"
93
97
 
94
- #: models.py:161
98
+ #: models.py:181
95
99
  msgid "locate"
96
100
  msgstr "εντοπισμός θέσης"
97
101
 
98
- #: models.py:161
102
+ #: models.py:181
99
103
  msgid "Locate user on load?"
100
104
  msgstr "Εντοπισμός θέσης χρήστη κατά την φόρτωση;"
101
105
 
102
- #: models.py:165
106
+ #: models.py:185
103
107
  msgid "Choose the map licence."
104
108
  msgstr "Επιλογή άδειας χρήσης του χάρτη."
105
109
 
106
- #: models.py:166
110
+ #: models.py:186
107
111
  msgid "licence"
108
112
  msgstr "άδεια"
109
113
 
110
- #: models.py:177
114
+ #: models.py:197
111
115
  msgid "owner"
112
116
  msgstr "ιδιοκτήτης"
113
117
 
114
- #: models.py:181
118
+ #: models.py:201
115
119
  msgid "editors"
116
120
  msgstr "συντάκτες"
117
121
 
118
- #: models.py:186 models.py:413
122
+ #: models.py:207
123
+ msgid "team"
124
+ msgstr ""
125
+
126
+ #: models.py:213 models.py:447
119
127
  msgid "edit status"
120
128
  msgstr "κατάσταση επεξεργασίας"
121
129
 
122
- #: models.py:191
130
+ #: models.py:218
123
131
  msgid "share status"
124
132
  msgstr "κατάσταση διαμοιρασμού"
125
133
 
126
- #: models.py:194 models.py:408
134
+ #: models.py:221 models.py:442
127
135
  msgid "settings"
128
136
  msgstr "ρυθμίσεις"
129
137
 
130
- #: models.py:330
138
+ #: models.py:364
131
139
  msgid "Clone of"
132
140
  msgstr "Κλώνος του"
133
141
 
134
- #: models.py:399
135
- msgid "description"
136
- msgstr "περιγραφή"
137
-
138
- #: models.py:403
142
+ #: models.py:437
139
143
  msgid "display on load"
140
144
  msgstr "εμφάνιση κατά τη φόρτωση"
141
145
 
142
- #: models.py:404
146
+ #: models.py:438
143
147
  msgid "Display this layer on load."
144
148
  msgstr "Εμφάνιση αυτού του επιπέδου κατά την φόρτωση."
145
149
 
146
- #: templates/404.html:6
150
+ #: templates/404.html:8
147
151
  msgid "Take me to the home page"
148
152
  msgstr "Επιστροφή στην αρχική σελίδα"
149
153
 
150
- #: templates/auth/user_detail.html:5
154
+ #: templates/auth/user_detail.html:8
151
155
  #, python-format
152
156
  msgid "Browse %(current_user)s's maps"
153
157
  msgstr "Περιήγηση στους χάρτες του χρήστη %(current_user)s"
154
158
 
155
- #: templates/auth/user_detail.html:12
159
+ #: templates/auth/user_detail.html:17
156
160
  #, python-format
157
161
  msgid "%(current_user)s has no maps."
158
162
  msgstr "Ο %(current_user)s χρήστης δεν έχει χάρτες."
159
163
 
160
- #: templates/auth/user_form.html:6
161
- msgid "My Maps"
162
- msgstr "Οι χάρτες μου"
163
-
164
- #: templates/auth/user_form.html:7
165
- msgid "My Profile"
166
- msgstr "Το προφίλ μου"
167
-
168
- #: templates/auth/user_form.html:20
164
+ #: templates/auth/user_form.html:21 templates/umap/team_form.html:21
169
165
  msgid "Save"
170
166
  msgstr "Αποθήκευση"
171
167
 
172
- #: templates/auth/user_form.html:25
168
+ #: templates/auth/user_form.html:27
173
169
  msgid "Your current providers"
174
170
  msgstr "Οι τρέχοντες πάροχοι σας"
175
171
 
176
- #: templates/auth/user_form.html:31
172
+ #: templates/auth/user_form.html:39
177
173
  msgid "Connect to another provider"
178
174
  msgstr "Σύνδεση σε άλλον πάροχο"
179
175
 
180
- #: templates/auth/user_form.html:33
176
+ #: templates/auth/user_form.html:42
181
177
  msgid ""
182
178
  "It's a good habit to connect your account to more than one provider, in case"
183
179
  " one provider becomes unavailable, temporarily or even permanently."
184
180
  msgstr "Είναι καλή συνήθεια να συνδέετε το λογαριασμό σας σε περισσότερους από έναν παρόχους, σε περίπτωση που ένας πάροχος δεν είναι διαθέσιμος, προσωρινά ή και μόνιμα."
185
181
 
186
- #: templates/auth/user_stars.html:5
182
+ #: templates/auth/user_stars.html:8
187
183
  #, python-format
188
184
  msgid "Browse %(current_user)s's starred maps"
189
185
  msgstr "Περιήγηση στους χάρτες με αστέρι του χρήστη %(current_user)s"
190
186
 
191
- #: templates/auth/user_stars.html:12
187
+ #: templates/auth/user_stars.html:17
192
188
  #, python-format
193
189
  msgid "%(current_user)s has no starred maps yet."
194
190
  msgstr "Ο %(current_user)s δεν έχει ακόμη χάρτες με αστέρι."
195
191
 
196
- #: templates/base.html:12
192
+ #: templates/base.html:13
197
193
  msgid ""
198
194
  "uMap lets you create maps with OpenStreetMap layers in a minute and embed "
199
195
  "them in your site."
200
196
  msgstr "Το uMap σου επιτρέπει να δημιουργήσεις στο λεπτό χάρτες με στρώσεις OpenStreetMap και να τους ενσωματώσεις στον ιστότοπό σου."
201
197
 
202
- #: templates/registration/login.html:16
198
+ #: templates/registration/login.html:6 templates/registration/login.html:45
199
+ msgid "Login"
200
+ msgstr "Σύνδεση"
201
+
202
+ #: templates/registration/login.html:24
203
203
  msgid "Please log in with your account"
204
204
  msgstr "Παρακαλώ συνδεθείτε με τον λογαριασμό σας"
205
205
 
206
- #: templates/registration/login.html:28
206
+ #: templates/registration/login.html:41
207
207
  msgid "Username"
208
208
  msgstr "Όνομα χρήστη"
209
209
 
210
- #: templates/registration/login.html:31
210
+ #: templates/registration/login.html:44
211
211
  msgid "Password"
212
212
  msgstr "Κωδικός πρόσβασης"
213
213
 
214
- #: templates/registration/login.html:32
215
- msgid "Login"
216
- msgstr "Σύνδεση"
217
-
218
- #: templates/registration/login.html:37
214
+ #: templates/registration/login.html:51
219
215
  msgid "Please choose a provider"
220
216
  msgstr "Παρακαλώ επιλέξτε έναν πάροχο"
221
217
 
222
- #: templates/umap/about_summary.html:11
218
+ #: templates/umap/about_summary.html:12
223
219
  #, python-format
224
220
  msgid ""
225
221
  "uMap lets you create maps with <a href=\"%(osm_url)s\" />OpenStreetMap</a> "
226
222
  "layers in a minute and embed them in your site."
227
223
  msgstr "Το uMap σου επιτρέπει να δημιουργήσεις στο λεπτό χάρτες με στρώσεις στο <a href=\"%(osm_url)s\" />OpenStreetMap</a> και να τους ενσωματώσεις στον ιστότοπό σου."
228
224
 
229
- #: templates/umap/about_summary.html:21
225
+ #: templates/umap/about_summary.html:23
230
226
  msgid "Choose the layers of your map"
231
227
  msgstr "Επιλέξτε επίπεδα από τον χάρτη σας"
232
228
 
233
- #: templates/umap/about_summary.html:22
229
+ #: templates/umap/about_summary.html:26
234
230
  msgid "Add POIs: markers, lines, polygons..."
235
231
  msgstr "Προσθήκη σημείων ενδιαφέροντος: δείκτες, γραμμές, πολύγωνα..."
236
232
 
237
- #: templates/umap/about_summary.html:23
233
+ #: templates/umap/about_summary.html:29
238
234
  msgid "Manage POIs colours and icons"
239
235
  msgstr "Διαχείριση χρωμάτων και συμβόλων των σημείων ενδιαφέροντος"
240
236
 
241
- #: templates/umap/about_summary.html:24
237
+ #: templates/umap/about_summary.html:32
242
238
  msgid "Manage map options: display a minimap, locate user on load…"
243
239
  msgstr "Διαχείριση επιλογών χάρτη: εμφάνιση χάρτη προσανατολισμού, γεωεντοπισμός χρήστη κατά την φόρτωση."
244
240
 
245
- #: templates/umap/about_summary.html:25
241
+ #: templates/umap/about_summary.html:35
246
242
  msgid "Batch import geostructured data (geojson, gpx, kml, osm...)"
247
243
  msgstr "Μαζική εισαγωγή δομημένων γεωγραφικών δεδομένων (geojson, gpx, kml, osm...)"
248
244
 
249
- #: templates/umap/about_summary.html:26
245
+ #: templates/umap/about_summary.html:38
250
246
  msgid "Choose the license for your data"
251
247
  msgstr "Επιλογή άδειας χρήσης των δεδομένων σας"
252
248
 
253
- #: templates/umap/about_summary.html:27
249
+ #: templates/umap/about_summary.html:41
254
250
  msgid "Embed and share your map"
255
251
  msgstr "Ενσωματώστε και διαμοιραστείτε τον χάρτης σας"
256
252
 
257
- #: templates/umap/about_summary.html:37
253
+ #: templates/umap/about_summary.html:52
258
254
  #, python-format
259
255
  msgid "And it's <a href=\"%(repo_url)s\">open source</a>!"
260
256
  msgstr "Και είναι <a href=\"%(repo_url)s\">ανοικτού κώδικα</a>!"
261
257
 
262
- #: templates/umap/about_summary.html:48 templates/umap/navigation.html:38
263
- #: templates/umap/user_dashboard.html:42
258
+ #: templates/umap/about_summary.html:63 templates/umap/navigation.html:39
259
+ #: templates/umap/user_dashboard.html:40
264
260
  msgid "Create a map"
265
261
  msgstr "Δημιουργία χάρτη"
266
262
 
267
- #: templates/umap/about_summary.html:51
263
+ #: templates/umap/about_summary.html:66
268
264
  msgid "Play with the demo"
269
265
  msgstr "Δοκιμή με την έκδοση επίδειξης"
270
266
 
271
- #: templates/umap/components/alerts/alert.html:14
272
- #: templates/umap/components/alerts/alert.html:49
273
- #: templates/umap/components/alerts/alert.html:71
267
+ #: templates/umap/components/alerts/alert.html:15
268
+ #: templates/umap/components/alerts/alert.html:64
269
+ #: templates/umap/components/alerts/alert.html:92
274
270
  msgid "Close"
275
271
  msgstr "Κλείσιμο"
276
272
 
277
- #: templates/umap/components/alerts/alert.html:27
273
+ #: templates/umap/components/alerts/alert.html:30
278
274
  #, python-format
279
275
  msgid ""
280
276
  "Pro-tip: to easily find back your maps, <a href=\"%(login_url)s\" "
@@ -282,45 +278,45 @@ msgid ""
282
278
  "target=\"_blank\">log in</a>."
283
279
  msgstr "Επισήμανση: για να βρίσκετε εύκολα τους χάρτες σας, <a href=\"%(login_url)s\" target=\"_blank\">δημιουργήστε λογαριασμό</a> ή <a href=\"%(login_url)s\" target=\"_blank\">συνδεθείτε</a>."
284
280
 
285
- #: templates/umap/components/alerts/alert.html:30
281
+ #: templates/umap/components/alerts/alert.html:35
286
282
  msgid "Here is your secret link to edit the map, please keep it safe:"
287
283
  msgstr "Αυτός είναι ο μυστικός σας σύνδεσμος για να επεξεργαστείτε τον χάρτη, διατηρήστε τον ασφαλή:"
288
284
 
289
- #: templates/umap/components/alerts/alert.html:33
285
+ #: templates/umap/components/alerts/alert.html:39
290
286
  msgid "Copy link"
291
287
  msgstr "Αντιγραφή συνδέσμου"
292
288
 
293
- #: templates/umap/components/alerts/alert.html:39
289
+ #: templates/umap/components/alerts/alert.html:46
294
290
  msgid "Enter your email address to receive the secret link:"
295
291
  msgstr "Καταχωρίστε το email σας για να λάβετε τον μυστικό σύνδεσμο:"
296
292
 
297
- #: templates/umap/components/alerts/alert.html:41
293
+ #: templates/umap/components/alerts/alert.html:52
298
294
  msgid "Email"
299
295
  msgstr "Email"
300
296
 
301
- #: templates/umap/components/alerts/alert.html:42
297
+ #: templates/umap/components/alerts/alert.html:55
302
298
  msgid "Send me the link"
303
299
  msgstr "Στείλε μου τον σύνδεσμο"
304
300
 
305
- #: templates/umap/components/alerts/alert.html:63
301
+ #: templates/umap/components/alerts/alert.html:79
306
302
  msgid "See their edits in another tab"
307
303
  msgstr "Δείτε τις επεξεργασίες τους σε άλλη καρτέλα"
308
304
 
309
- #: templates/umap/components/alerts/alert.html:64
305
+ #: templates/umap/components/alerts/alert.html:82
310
306
  msgid "Keep your changes and loose theirs"
311
307
  msgstr "Διατηρήστε τις αλλαγές σας και αγνοήστε τις δικές τους"
312
308
 
313
- #: templates/umap/components/alerts/alert.html:65
309
+ #: templates/umap/components/alerts/alert.html:85
314
310
  msgid "Keep their changes and loose yours"
315
311
  msgstr "Κρατήστε τις αλλαγές τους και αγνοήστε τις δικές σας"
316
312
 
317
- #: templates/umap/content.html:24
313
+ #: templates/umap/content.html:26
318
314
  msgid ""
319
315
  "This instance of uMap is currently in read only mode, no creation/edit is "
320
316
  "allowed."
321
317
  msgstr "Αυτό το στιγμιότυπο του uMap βρίσκεται για την ώρα σε λειτουργία μόνο για ανάγνωση, δεν επιτρέπεται καμία δημιουργία/επεξεργασία."
322
318
 
323
- #: templates/umap/content.html:32
319
+ #: templates/umap/content.html:34
324
320
  #, python-format
325
321
  msgid ""
326
322
  "This is a demo instance, used for tests and pre-rolling releases. If you "
@@ -329,279 +325,339 @@ msgid ""
329
325
  "instance, it's <a href=\"%(repo_url)s\">open source</a>!"
330
326
  msgstr "Αυτή είναι μια έκδοση επίδειξης, που χρησιμοποιήθηκε για δοκιμές και προκαταρκτικές εκδόσεις. Αν χρειάζεστε μια σταθερή έκδοση, παρακαλώ χρησιμοποιήστε την <a href=\"%(stable_url)s\">%(stable_url)s</a>. Μπορείτε, επίσης, να φιλοξενήσετε τη δική σας έκδοση, είναι <a href=\"%(repo_url)s\">ανοικτού κώδικα</a>!"
331
327
 
332
- #: templates/umap/home.html:11
328
+ #: templates/umap/content_footer.html:5
329
+ msgid "An OpenStreetMap project"
330
+ msgstr ""
331
+
332
+ #: templates/umap/content_footer.html:6
333
+ msgid "version"
334
+ msgstr ""
335
+
336
+ #: templates/umap/content_footer.html:7
337
+ msgid "Hosted by"
338
+ msgstr ""
339
+
340
+ #: templates/umap/content_footer.html:8
341
+ msgid "Contact"
342
+ msgstr ""
343
+
344
+ #: templates/umap/content_footer.html:9 templates/umap/navigation.html:25
345
+ msgid "Help"
346
+ msgstr "Βοήθεια"
347
+
348
+ #: templates/umap/dashboard_menu.html:6
349
+ #, python-format
350
+ msgid "My Maps (%(count)s)"
351
+ msgstr "Οι χάρτες μου (%(count)s)"
352
+
353
+ #: templates/umap/dashboard_menu.html:8
354
+ msgid "My Maps"
355
+ msgstr "Οι χάρτες μου"
356
+
357
+ #: templates/umap/dashboard_menu.html:11
358
+ msgid "My profile"
359
+ msgstr "Το προφίλ μου"
360
+
361
+ #: templates/umap/dashboard_menu.html:13
362
+ msgid "My teams"
363
+ msgstr ""
364
+
365
+ #: templates/umap/home.html:14
333
366
  msgid "Map of the uMaps"
334
367
  msgstr "Χάρτης των uMaps"
335
368
 
336
- #: templates/umap/home.html:17
369
+ #: templates/umap/home.html:24
337
370
  msgid "Get inspired, browse maps"
338
371
  msgstr "Περιηγήσου και αναζήτησε την έμπνευση στους χάρτες!"
339
372
 
340
- #: templates/umap/login_popup_end.html:2
373
+ #: templates/umap/login_popup_end.html:4
341
374
  msgid "You are logged in. Continuing..."
342
375
  msgstr "Είστε συνδεδεμένοι. Συνέχεια..."
343
376
 
344
- #: templates/umap/map_list.html:9 views.py:348
377
+ #: templates/umap/map_list.html:10 views.py:433
345
378
  msgid "by"
346
379
  msgstr "από"
347
380
 
348
- #: templates/umap/map_list.html:17
381
+ #: templates/umap/map_list.html:18
349
382
  msgid "More"
350
383
  msgstr "Περισσότερα"
351
384
 
352
- #: templates/umap/map_table.html:6
385
+ #: templates/umap/map_table.html:8 templates/umap/user_teams.html:14
353
386
  msgid "Name"
354
387
  msgstr "Όνομα"
355
388
 
356
- #: templates/umap/map_table.html:7
389
+ #: templates/umap/map_table.html:11
357
390
  msgid "Preview"
358
391
  msgstr "Προεπισκόπηση"
359
392
 
360
- #: templates/umap/map_table.html:8
393
+ #: templates/umap/map_table.html:14
361
394
  msgid "Who can see"
362
395
  msgstr "Ποιος μπορεί να προβάλλει"
363
396
 
364
- #: templates/umap/map_table.html:9
397
+ #: templates/umap/map_table.html:17
365
398
  msgid "Who can edit"
366
399
  msgstr "Ποιος μπορεί να επεξεργαστεί"
367
400
 
368
- #: templates/umap/map_table.html:10
401
+ #: templates/umap/map_table.html:20
369
402
  msgid "Last save"
370
403
  msgstr "Τελευταία αποθήκευση"
371
404
 
372
- #: templates/umap/map_table.html:11
405
+ #: templates/umap/map_table.html:23
373
406
  msgid "Owner"
374
407
  msgstr "Κάτοχος"
375
408
 
376
- #: templates/umap/map_table.html:12
409
+ #: templates/umap/map_table.html:26 templates/umap/user_teams.html:20
377
410
  msgid "Actions"
378
411
  msgstr "Ενέργειες"
379
412
 
380
- #: templates/umap/map_table.html:26 templates/umap/map_table.html:28
413
+ #: templates/umap/map_table.html:41 templates/umap/map_table.html:43
381
414
  msgid "Open preview"
382
415
  msgstr "Άνοιγμα προεπισκόπησης"
383
416
 
384
- #: templates/umap/map_table.html:48 templates/umap/map_table.html:50
417
+ #: templates/umap/map_table.html:72 templates/umap/map_table.html:74
385
418
  msgid "Share"
386
419
  msgstr "Διαμοιρασμός"
387
420
 
388
- #: templates/umap/map_table.html:54 templates/umap/map_table.html:56
421
+ #: templates/umap/map_table.html:78 templates/umap/map_table.html:80
422
+ #: templates/umap/user_teams.html:38 templates/umap/user_teams.html:40
389
423
  msgid "Edit"
390
424
  msgstr "Επεξεργασία"
391
425
 
392
- #: templates/umap/map_table.html:60 templates/umap/map_table.html:62
426
+ #: templates/umap/map_table.html:84 templates/umap/map_table.html:86
393
427
  msgid "Download"
394
428
  msgstr "Λήψη"
395
429
 
396
- #: templates/umap/map_table.html:66 templates/umap/map_table.html:68
430
+ #: templates/umap/map_table.html:90 templates/umap/map_table.html:92
397
431
  msgid "Clone"
398
432
  msgstr "Κλωνοποίηση"
399
433
 
400
- #: templates/umap/map_table.html:77 templates/umap/map_table.html:79
434
+ #: templates/umap/map_table.html:101 templates/umap/map_table.html:103
401
435
  msgid "Delete"
402
436
  msgstr "Διαγραφή"
403
437
 
404
- #: templates/umap/map_table.html:93
438
+ #: templates/umap/map_table.html:117
405
439
  msgid "first"
406
440
  msgstr "πρώτο"
407
441
 
408
- #: templates/umap/map_table.html:94
442
+ #: templates/umap/map_table.html:118
409
443
  msgid "previous"
410
444
  msgstr "προηγούμενο"
411
445
 
412
- #: templates/umap/map_table.html:102
446
+ #: templates/umap/map_table.html:126
413
447
  #, python-format
414
448
  msgid "Page %(maps_number)s of %(num_pages)s"
415
449
  msgstr "Σελίδα %(maps_number)s από %(num_pages)s"
416
450
 
417
- #: templates/umap/map_table.html:107
451
+ #: templates/umap/map_table.html:131
418
452
  msgid "next"
419
453
  msgstr "επόμενο"
420
454
 
421
- #: templates/umap/map_table.html:108
455
+ #: templates/umap/map_table.html:132
422
456
  msgid "last"
423
457
  msgstr "τελευταίο"
424
458
 
425
- #: templates/umap/map_table.html:116
459
+ #: templates/umap/map_table.html:140
426
460
  #, python-format
427
461
  msgid "Lines per page: %(per_page)s"
428
462
  msgstr "Γραμμές ανά σελίδα: %(per_page)s"
429
463
 
430
- #: templates/umap/map_table.html:121
464
+ #: templates/umap/map_table.html:145
431
465
  #, python-format
432
466
  msgid "%(count)s maps"
433
467
  msgstr "%(count)s χάρτες"
434
468
 
435
- #: templates/umap/navigation.html:10 templates/umap/user_dashboard.html:4
469
+ #: templates/umap/navigation.html:11 templates/umap/user_dashboard.html:6
436
470
  msgid "My Dashboard"
437
471
  msgstr "Το ταμπλό μου"
438
472
 
439
- #: templates/umap/navigation.html:13
473
+ #: templates/umap/navigation.html:14
440
474
  msgid "Starred maps"
441
475
  msgstr "Χάρτες με αστέρι"
442
476
 
443
- #: templates/umap/navigation.html:17
477
+ #: templates/umap/navigation.html:18
444
478
  msgid "Log in"
445
479
  msgstr "Σύνδεση"
446
480
 
447
- #: templates/umap/navigation.html:17
481
+ #: templates/umap/navigation.html:18
448
482
  msgid "Sign in"
449
483
  msgstr "Εγγραφή"
450
484
 
451
- #: templates/umap/navigation.html:21
485
+ #: templates/umap/navigation.html:22
452
486
  msgid "About"
453
487
  msgstr "Σχετικά"
454
488
 
455
- #: templates/umap/navigation.html:24
456
- msgid "Help"
457
- msgstr "Βοήθεια"
458
-
459
- #: templates/umap/navigation.html:29
489
+ #: templates/umap/navigation.html:30
460
490
  msgid "Change password"
461
491
  msgstr "Αλλαγή κωδικού πρόσβασης"
462
492
 
463
- #: templates/umap/navigation.html:33
493
+ #: templates/umap/navigation.html:34
464
494
  msgid "Log out"
465
495
  msgstr "Αποσύνδεση"
466
496
 
467
- #: templates/umap/password_change.html:4
497
+ #: templates/umap/password_change.html:7
468
498
  msgid "Password change"
469
499
  msgstr "Αλλαγή κωδικού πρόσβασης"
470
500
 
471
- #: templates/umap/password_change.html:6
501
+ #: templates/umap/password_change.html:10
472
502
  msgid ""
473
503
  "Please enter your old password, for security's sake, and then enter your new"
474
504
  " password twice so we can verify you typed it in correctly."
475
505
  msgstr "Παρακαλώ εισάγετε τον παλιό κωδικό πρόσβασης και μετά εισάγετε τον νέο κωδικό πρόσβασης δύο φορές, ώστε να επιβεβαιωθεί ότι πληκτρολογήθηκε σωστά."
476
506
 
477
- #: templates/umap/password_change.html:13
507
+ #: templates/umap/password_change.html:17
478
508
  msgid "Old password"
479
509
  msgstr "Παλιός κωδικός πρόσβασης"
480
510
 
481
- #: templates/umap/password_change.html:18
511
+ #: templates/umap/password_change.html:22
482
512
  msgid "New password"
483
513
  msgstr "Νέος κωδικός πρόσβασης"
484
514
 
485
- #: templates/umap/password_change.html:22
515
+ #: templates/umap/password_change.html:26
486
516
  msgid "New password confirmation"
487
517
  msgstr "Επιβεβαίωση νέου κωδικού πρόσβασης"
488
518
 
489
- #: templates/umap/password_change.html:23
519
+ #: templates/umap/password_change.html:27
490
520
  msgid "Change my password"
491
521
  msgstr "Αλλαγή του κωδικού πρόσβασης"
492
522
 
493
- #: templates/umap/password_change_done.html:4
523
+ #: templates/umap/password_change_done.html:7
494
524
  msgid "Password change successful"
495
525
  msgstr "Η αλλαγή του κωδικού πρόσβασης ήταν επιτυχημένη"
496
526
 
497
- #: templates/umap/password_change_done.html:5
527
+ #: templates/umap/password_change_done.html:10
498
528
  msgid "Your password was changed."
499
529
  msgstr "Ο κωδικός πρόσβασής σας άλλαξε."
500
530
 
501
- #: templates/umap/search.html:13
531
+ #: templates/umap/search.html:15
502
532
  #, python-format
503
533
  msgid "%(count)s map found:"
504
534
  msgid_plural "%(count)s maps found:"
505
535
  msgstr[0] "%(count)s χάρτης βρέθηκε:"
506
536
  msgstr[1] "%(count)s χάρτες βρέθηκαν:"
507
537
 
508
- #: templates/umap/search.html:21
538
+ #: templates/umap/search.html:24
509
539
  msgid "No map found."
510
540
  msgstr "Δεν βρέθηκε κανένας χάρτης."
511
541
 
512
- #: templates/umap/search.html:24
542
+ #: templates/umap/search.html:29
513
543
  msgid "Latest created maps"
514
544
  msgstr "Χάρτες που δημιουργήθηκαν τελευταίοι"
515
545
 
516
- #: templates/umap/search_bar.html:3
546
+ #: templates/umap/search_bar.html:4
517
547
  msgid "Search maps"
518
548
  msgstr "Αναζήτηση χαρτών"
519
549
 
520
- #: templates/umap/search_bar.html:14
550
+ #: templates/umap/search_bar.html:15
521
551
  msgid "Search"
522
552
  msgstr "Αναζήτηση"
523
553
 
524
- #: templates/umap/user_dashboard.html:7 templates/umap/user_dashboard.html:27
525
- msgid "Search my maps"
526
- msgstr "Αναζήτηση στους χάρτες μου"
554
+ #: templates/umap/team_detail.html:10
555
+ #, python-format
556
+ msgid "Browse %(current_team)s's maps"
557
+ msgstr ""
527
558
 
528
- #: templates/umap/user_dashboard.html:10
559
+ #: templates/umap/team_detail.html:22
529
560
  #, python-format
530
- msgid "My Maps (%(count)s)"
531
- msgstr "Οι χάρτες μου (%(count)s)"
561
+ msgid "%(current_team)s has no public maps."
562
+ msgstr ""
532
563
 
533
- #: templates/umap/user_dashboard.html:12
534
- msgid "My profile"
535
- msgstr "Το προφίλ μου"
564
+ #: templates/umap/team_form.html:24
565
+ msgid "Delete this team"
566
+ msgstr ""
567
+
568
+ #: templates/umap/team_form.html:47
569
+ msgid "Add user"
570
+ msgstr ""
571
+
572
+ #: templates/umap/user_dashboard.html:9 templates/umap/user_dashboard.html:25
573
+ msgid "Search my maps"
574
+ msgstr "Αναζήτηση στους χάρτες μου"
536
575
 
537
- #: templates/umap/user_dashboard.html:20 templates/umap/user_dashboard.html:24
576
+ #: templates/umap/user_dashboard.html:17 templates/umap/user_dashboard.html:22
538
577
  msgid "Map’s title"
539
578
  msgstr "Τίτλος χάρτη"
540
579
 
541
- #: templates/umap/user_dashboard.html:32
580
+ #: templates/umap/user_dashboard.html:30
542
581
  #, python-format
543
582
  msgid "Download %(count)s maps"
544
583
  msgstr "Λήψη%(count)s χαρτών"
545
584
 
546
- #: templates/umap/user_dashboard.html:42
585
+ #: templates/umap/user_dashboard.html:40
547
586
  msgid "You have no map yet."
548
587
  msgstr "Δεν έχετε ακόμη χάρτη."
549
588
 
550
- #: views.py:353
589
+ #: templates/umap/user_teams.html:17
590
+ msgid "Users"
591
+ msgstr ""
592
+
593
+ #: templates/umap/user_teams.html:48
594
+ msgid "New team"
595
+ msgstr ""
596
+
597
+ #: views.py:235
598
+ msgid "Cannot delete a team with more than one member"
599
+ msgstr ""
600
+
601
+ #: views.py:239
602
+ #, python-format
603
+ msgid "Team “%(name)s” has been deleted"
604
+ msgstr ""
605
+
606
+ #: views.py:438
551
607
  msgid "View the map"
552
608
  msgstr "Προβολή του χάρτη"
553
609
 
554
- #: views.py:719
610
+ #: views.py:824
555
611
  msgid "See full screen"
556
612
  msgstr "Προβολή πλήρους οθόνης"
557
613
 
558
- #: views.py:847
614
+ #: views.py:953
559
615
  msgid "Map editors updated with success!"
560
616
  msgstr "Η ενημέρωση των συντακτών χάρτη ήταν επιτυχής!"
561
617
 
562
- #: views.py:883
618
+ #: views.py:989
563
619
  #, python-format
564
620
  msgid "The uMap edit link for your map: %(map_name)s"
565
621
  msgstr "Ο uMap σύνδεσμος επεξεργασίας του χάρτη σας: %(map_name)s"
566
622
 
567
- #: views.py:886
623
+ #: views.py:992
568
624
  #, python-format
569
625
  msgid "Here is your secret edit link: %(link)s"
570
626
  msgstr "Εδώ είναι ο μυστικός σύνδεσμος επεξεργασίας: %(link)s"
571
627
 
572
- #: views.py:893
628
+ #: views.py:999
573
629
  #, python-format
574
630
  msgid "Can't send email to %(email)s"
575
631
  msgstr "Αδυναμία αποστολής email στο %(email)s"
576
632
 
577
- #: views.py:896
633
+ #: views.py:1002
578
634
  #, python-format
579
635
  msgid "Email sent to %(email)s"
580
636
  msgstr "Μήνυμα email στάλθηκε στο %(email)s"
581
637
 
582
- #: views.py:907
638
+ #: views.py:1013
583
639
  msgid "Only its owner can delete the map."
584
640
  msgstr "Μονό ο ιδιοκτήτης μπορεί να διαγράψει αυτό τον χάρτη."
585
641
 
586
- #: views.py:910
642
+ #: views.py:1016
587
643
  msgid "Map successfully deleted."
588
644
  msgstr "Ο χάρτης διαγράφηκε με επιτυχία."
589
645
 
590
- #: views.py:936
646
+ #: views.py:1042
591
647
  #, python-format
592
648
  msgid ""
593
649
  "Your map has been cloned! If you want to edit this map from another "
594
650
  "computer, please use this link: %(anonymous_url)s"
595
651
  msgstr "Ο χάρτης κλωνοποιήθηκε! Αν θέλετε να τον επεξεργαστείτε από κάποιον άλλο υπολογιστή, παρακαλώ χρησιμοποιήστε αυτόν τον σύνδεσμο: %(anonymous_url)s"
596
652
 
597
- #: views.py:941
653
+ #: views.py:1047
598
654
  msgid "Congratulations, your map has been cloned!"
599
655
  msgstr "Συγχαρητήρια ο χάρτης σας κλωνοποιήθηκε!"
600
656
 
601
- #: views.py:1176
657
+ #: views.py:1282
602
658
  msgid "Layer successfully deleted."
603
659
  msgstr "Το επίπεδο διαγράφηκε με επιτυχία."
604
660
 
605
- #: views.py:1198
661
+ #: views.py:1304
606
662
  msgid "Permissions updated with success!"
607
663
  msgstr "Τα δικαιώματα ενημερώθηκαν με επιτυχία!"