umap-project 3.0.6__py3-none-any.whl → 3.1.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/forms.py +1 -1
- umap/locale/br/LC_MESSAGES/django.mo +0 -0
- umap/locale/br/LC_MESSAGES/django.po +219 -72
- umap/locale/ca/LC_MESSAGES/django.mo +0 -0
- umap/locale/ca/LC_MESSAGES/django.po +286 -95
- umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- umap/locale/cs_CZ/LC_MESSAGES/django.po +211 -65
- umap/locale/da/LC_MESSAGES/django.mo +0 -0
- umap/locale/da/LC_MESSAGES/django.po +394 -202
- umap/locale/de/LC_MESSAGES/django.mo +0 -0
- umap/locale/de/LC_MESSAGES/django.po +146 -75
- umap/locale/el/LC_MESSAGES/django.mo +0 -0
- umap/locale/el/LC_MESSAGES/django.po +125 -59
- umap/locale/en/LC_MESSAGES/django.po +124 -58
- umap/locale/es/LC_MESSAGES/django.mo +0 -0
- umap/locale/es/LC_MESSAGES/django.po +125 -59
- umap/locale/et/LC_MESSAGES/django.mo +0 -0
- umap/locale/et/LC_MESSAGES/django.po +210 -64
- umap/locale/eu/LC_MESSAGES/django.mo +0 -0
- umap/locale/eu/LC_MESSAGES/django.po +212 -65
- umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
- umap/locale/fa_IR/LC_MESSAGES/django.po +286 -95
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +125 -59
- umap/locale/gl/LC_MESSAGES/django.mo +0 -0
- umap/locale/gl/LC_MESSAGES/django.po +212 -66
- umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- umap/locale/hu/LC_MESSAGES/django.po +148 -78
- umap/locale/is/LC_MESSAGES/django.mo +0 -0
- umap/locale/is/LC_MESSAGES/django.po +130 -60
- umap/locale/it/LC_MESSAGES/django.mo +0 -0
- umap/locale/it/LC_MESSAGES/django.po +125 -59
- umap/locale/ms/LC_MESSAGES/django.mo +0 -0
- umap/locale/ms/LC_MESSAGES/django.po +289 -98
- umap/locale/nl/LC_MESSAGES/django.mo +0 -0
- umap/locale/nl/LC_MESSAGES/django.po +128 -61
- umap/locale/pl/LC_MESSAGES/django.mo +0 -0
- umap/locale/pl/LC_MESSAGES/django.po +287 -96
- umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- umap/locale/pt/LC_MESSAGES/django.po +211 -65
- umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
- umap/locale/zh_TW/LC_MESSAGES/django.po +212 -66
- umap/management/commands/migrate_to_S3.py +42 -20
- umap/management/commands/purge_old_versions.py +63 -0
- umap/management/commands/switch_user.py +52 -0
- umap/managers.py +29 -2
- umap/middleware.py +1 -1
- umap/migrations/0028_map_is_template.py +21 -0
- umap/models.py +14 -4
- umap/settings/base.py +22 -0
- umap/static/umap/base.css +4 -2
- umap/static/umap/content.css +1 -1
- umap/static/umap/css/dialog.css +5 -2
- umap/static/umap/css/form.css +19 -12
- umap/static/umap/css/icon.css +6 -0
- umap/static/umap/css/importers.css +4 -0
- umap/static/umap/css/panel.css +2 -0
- umap/static/umap/img/16-white.svg +5 -1
- umap/static/umap/img/16.svg +1 -1
- umap/static/umap/img/24-white.svg +3 -2
- umap/static/umap/img/24.svg +3 -4
- umap/static/umap/img/importers/opendata.svg +1 -0
- umap/static/umap/img/source/16-white.svg +8 -4
- umap/static/umap/img/source/16.svg +1 -1
- umap/static/umap/img/source/24-white.svg +5 -4
- umap/static/umap/img/source/24.svg +5 -6
- umap/static/umap/js/components/modal.js +27 -0
- umap/static/umap/js/modules/caption.js +4 -4
- umap/static/umap/js/modules/data/features.js +40 -4
- umap/static/umap/js/modules/data/layer.js +208 -138
- umap/static/umap/js/modules/form/builder.js +6 -14
- umap/static/umap/js/modules/form/fields.js +2 -2
- umap/static/umap/js/modules/help.js +11 -3
- umap/static/umap/js/modules/importer.js +7 -4
- umap/static/umap/js/modules/importers/opendata.js +142 -0
- umap/static/umap/js/modules/permissions.js +3 -3
- umap/static/umap/js/modules/rendering/controls.js +34 -2
- umap/static/umap/js/modules/rendering/icon.js +2 -2
- umap/static/umap/js/modules/rendering/layers/base.js +1 -1
- umap/static/umap/js/modules/rendering/layers/classified.js +55 -49
- umap/static/umap/js/modules/rendering/layers/cluster.js +16 -9
- umap/static/umap/js/modules/rendering/layers/heat.js +13 -11
- umap/static/umap/js/modules/rendering/map.js +5 -0
- umap/static/umap/js/modules/rendering/ui.js +23 -0
- umap/static/umap/js/modules/rules.js +24 -23
- umap/static/umap/js/modules/schema.js +60 -4
- umap/static/umap/js/modules/sync/updaters.js +7 -3
- umap/static/umap/js/modules/tableeditor.js +7 -30
- umap/static/umap/js/modules/templates.js +122 -0
- umap/static/umap/js/modules/ui/bar.js +13 -3
- umap/static/umap/js/modules/ui/panel.js +1 -1
- umap/static/umap/js/modules/umap.js +28 -13
- umap/static/umap/js/umap.controls.js +11 -4
- umap/static/umap/locale/br.js +51 -18
- umap/static/umap/locale/br.json +51 -18
- umap/static/umap/locale/da.js +343 -310
- umap/static/umap/locale/da.json +343 -310
- umap/static/umap/locale/de.js +40 -7
- umap/static/umap/locale/de.json +40 -7
- umap/static/umap/locale/el.js +31 -4
- umap/static/umap/locale/el.json +31 -4
- umap/static/umap/locale/en.js +33 -1
- umap/static/umap/locale/en.json +33 -1
- umap/static/umap/locale/es.js +37 -4
- umap/static/umap/locale/es.json +37 -4
- umap/static/umap/locale/fr.js +34 -1
- umap/static/umap/locale/fr.json +34 -1
- umap/static/umap/locale/hu.js +44 -17
- umap/static/umap/locale/hu.json +44 -17
- umap/static/umap/locale/it.js +74 -41
- umap/static/umap/locale/it.json +74 -41
- umap/static/umap/locale/nl.js +42 -9
- umap/static/umap/locale/nl.json +42 -9
- umap/static/umap/map.css +3 -23
- umap/static/umap/vendors/textpath/leaflet.textpath.js +184 -0
- umap/storage/fs.py +19 -9
- umap/templates/umap/dashboard_menu.html +5 -0
- umap/templates/umap/design_system.html +9 -0
- umap/templates/umap/js.html +3 -0
- umap/templates/umap/map_list.html +2 -2
- umap/templates/umap/map_table.html +18 -18
- umap/templates/umap/user_dashboard.html +9 -58
- umap/templates/umap/user_map_table.html +36 -0
- umap/templates/umap/user_templates.html +19 -0
- umap/templatetags/umap_tags.py +5 -0
- umap/tests/integration/test_conditional_rules.py +57 -0
- umap/tests/integration/test_datalayer.py +16 -9
- umap/tests/integration/test_edit_marker.py +11 -0
- umap/tests/integration/test_tableeditor.py +42 -7
- umap/tests/integration/test_templates.py +44 -0
- umap/tests/test_dashboard.py +19 -0
- umap/tests/test_purge_old_versions.py +91 -0
- umap/tests/test_switch_user.py +31 -0
- umap/tests/test_views.py +67 -0
- umap/urls.py +7 -1
- umap/views.py +64 -18
- {umap_project-3.0.6.dist-info → umap_project-3.1.0.dist-info}/METADATA +14 -14
- {umap_project-3.0.6.dist-info → umap_project-3.1.0.dist-info}/RECORD +142 -129
- {umap_project-3.0.6.dist-info → umap_project-3.1.0.dist-info}/WHEEL +0 -0
- {umap_project-3.0.6.dist-info → umap_project-3.1.0.dist-info}/entry_points.txt +0 -0
- {umap_project-3.0.6.dist-info → umap_project-3.1.0.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: 2025-
|
|
16
|
+
"POT-Creation-Date: 2025-06-10 09:19+0000\n"
|
|
17
17
|
"PO-Revision-Date: 2013-11-22 14:00+0000\n"
|
|
18
18
|
"Last-Translator: prendi <prendi@openmailbox.org>, 2017\n"
|
|
19
19
|
"Language-Team: Greek (http://app.transifex.com/openstreetmap/umap/language/el/)\n"
|
|
@@ -47,7 +47,7 @@ msgstr "Η χρήση του «%(name)s» για τον έλεγχο ταυτό
|
|
|
47
47
|
msgid "name"
|
|
48
48
|
msgstr "όνομα"
|
|
49
49
|
|
|
50
|
-
#: models.py:63 models.py:
|
|
50
|
+
#: models.py:63 models.py:503
|
|
51
51
|
msgid "description"
|
|
52
52
|
msgstr "περιγραφή"
|
|
53
53
|
|
|
@@ -67,23 +67,23 @@ msgstr "Πρότυπο URL που χρησιμοποιεί μορφοποίησ
|
|
|
67
67
|
msgid "Order of the tilelayers in the edit box"
|
|
68
68
|
msgstr "Σειρά των υπόβαθρων στο πλαίσιο επεξεργασίας"
|
|
69
69
|
|
|
70
|
-
#: models.py:176 models.py:
|
|
70
|
+
#: models.py:176 models.py:497
|
|
71
71
|
msgid "Only editable with secret edit link"
|
|
72
72
|
msgstr "Επεξεργάσιμο μόνο με μυστικό σύνδεσμο"
|
|
73
73
|
|
|
74
|
-
#: models.py:177 models.py:
|
|
74
|
+
#: models.py:177 models.py:498
|
|
75
75
|
msgid "Everyone can edit"
|
|
76
76
|
msgstr "Όλοι μπορούν να επεξεργαστούν"
|
|
77
77
|
|
|
78
|
-
#: models.py:180 models.py:
|
|
78
|
+
#: models.py:180 models.py:491
|
|
79
79
|
msgid "Everyone"
|
|
80
80
|
msgstr "Οποιοσδήποτε"
|
|
81
81
|
|
|
82
|
-
#: models.py:181 models.py:190 models.py:
|
|
82
|
+
#: models.py:181 models.py:190 models.py:492
|
|
83
83
|
msgid "Editors and team only"
|
|
84
84
|
msgstr "Μόνο συντάκτες και ομάδα"
|
|
85
85
|
|
|
86
|
-
#: models.py:182 models.py:
|
|
86
|
+
#: models.py:182 models.py:493
|
|
87
87
|
msgid "Owner only"
|
|
88
88
|
msgstr "Μόνο ο κάτοχος"
|
|
89
89
|
|
|
@@ -103,7 +103,7 @@ msgstr "Οποιοδήποτε με τον σύνδεσμο"
|
|
|
103
103
|
msgid "Blocked"
|
|
104
104
|
msgstr "Αποκλεισμένος"
|
|
105
105
|
|
|
106
|
-
#: models.py:192 models.py:
|
|
106
|
+
#: models.py:192 models.py:487
|
|
107
107
|
msgid "Deleted"
|
|
108
108
|
msgstr "Διαγράφηκε"
|
|
109
109
|
|
|
@@ -143,99 +143,123 @@ msgstr "συντάκτες"
|
|
|
143
143
|
msgid "team"
|
|
144
144
|
msgstr "ομάδα"
|
|
145
145
|
|
|
146
|
-
#: models.py:230 models.py:
|
|
146
|
+
#: models.py:230 models.py:519
|
|
147
147
|
msgid "edit status"
|
|
148
148
|
msgstr "κατάσταση επεξεργασίας"
|
|
149
149
|
|
|
150
|
-
#: models.py:235 models.py:
|
|
150
|
+
#: models.py:235 models.py:524
|
|
151
151
|
msgid "share status"
|
|
152
152
|
msgstr "κατάσταση διαμοιρασμού"
|
|
153
153
|
|
|
154
|
-
#: models.py:238 models.py:
|
|
154
|
+
#: models.py:238 models.py:514
|
|
155
155
|
msgid "settings"
|
|
156
156
|
msgstr "ρυθμίσεις"
|
|
157
157
|
|
|
158
|
-
#: models.py:
|
|
158
|
+
#: models.py:243
|
|
159
|
+
msgid "save as template"
|
|
160
|
+
msgstr ""
|
|
161
|
+
|
|
162
|
+
#: models.py:244
|
|
163
|
+
msgid "This map is a template map."
|
|
164
|
+
msgstr ""
|
|
165
|
+
|
|
166
|
+
#: models.py:420
|
|
159
167
|
msgid "Clone of"
|
|
160
168
|
msgstr "Κλώνος του"
|
|
161
169
|
|
|
162
|
-
#: models.py:
|
|
170
|
+
#: models.py:486 models.py:490 models.py:496
|
|
163
171
|
msgid "Inherit"
|
|
164
172
|
msgstr "Κληρονόμοι"
|
|
165
173
|
|
|
166
|
-
#: models.py:
|
|
174
|
+
#: models.py:509
|
|
167
175
|
msgid "display on load"
|
|
168
176
|
msgstr "εμφάνιση κατά τη φόρτωση"
|
|
169
177
|
|
|
170
|
-
#: models.py:
|
|
178
|
+
#: models.py:510
|
|
171
179
|
msgid "Display this layer on load."
|
|
172
180
|
msgstr "Εμφάνιση αυτού του επιπέδου κατά την φόρτωση."
|
|
173
181
|
|
|
174
|
-
#: settings/base.py:
|
|
182
|
+
#: settings/base.py:283
|
|
183
|
+
msgid "uMap user documentation"
|
|
184
|
+
msgstr ""
|
|
185
|
+
|
|
186
|
+
#: settings/base.py:288
|
|
187
|
+
msgid "Video tutorials"
|
|
188
|
+
msgstr ""
|
|
189
|
+
|
|
190
|
+
#: settings/base.py:293
|
|
191
|
+
msgid "OpenStreetMap.org forum"
|
|
192
|
+
msgstr ""
|
|
193
|
+
|
|
194
|
+
#: settings/base.py:298
|
|
195
|
+
msgid "OpenStreetMap France forum"
|
|
196
|
+
msgstr ""
|
|
197
|
+
|
|
198
|
+
#: settings/base.py:318
|
|
175
199
|
msgid "Art and Culture"
|
|
176
200
|
msgstr "Τέχνες και Πολιτισμός"
|
|
177
201
|
|
|
178
|
-
#: settings/base.py:
|
|
202
|
+
#: settings/base.py:319
|
|
179
203
|
msgid "Cycling"
|
|
180
204
|
msgstr "Ποδηλασία"
|
|
181
205
|
|
|
182
|
-
#: settings/base.py:
|
|
206
|
+
#: settings/base.py:320
|
|
183
207
|
msgid "Business"
|
|
184
208
|
msgstr "Επιχειρήσεις"
|
|
185
209
|
|
|
186
|
-
#: settings/base.py:
|
|
210
|
+
#: settings/base.py:321
|
|
187
211
|
msgid "Environment"
|
|
188
212
|
msgstr "Περιβάλλον"
|
|
189
213
|
|
|
190
|
-
#: settings/base.py:
|
|
214
|
+
#: settings/base.py:322
|
|
191
215
|
msgid "Education"
|
|
192
216
|
msgstr "Εκπαίδευση"
|
|
193
217
|
|
|
194
|
-
#: settings/base.py:
|
|
218
|
+
#: settings/base.py:323
|
|
195
219
|
msgid "Food and Agriculture"
|
|
196
220
|
msgstr "Διατροφή και Γεωργία"
|
|
197
221
|
|
|
198
|
-
#: settings/base.py:
|
|
222
|
+
#: settings/base.py:324
|
|
199
223
|
msgid "Geopolitics"
|
|
200
224
|
msgstr "Γεωπολιτική"
|
|
201
225
|
|
|
202
|
-
#: settings/base.py:
|
|
226
|
+
#: settings/base.py:325
|
|
203
227
|
msgid "Health"
|
|
204
228
|
msgstr "Υγεία"
|
|
205
229
|
|
|
206
|
-
#: settings/base.py:
|
|
230
|
+
#: settings/base.py:326
|
|
207
231
|
msgid "Hiking"
|
|
208
232
|
msgstr "Πεζοπορία-Ορειβασία"
|
|
209
233
|
|
|
210
|
-
#: settings/base.py:
|
|
234
|
+
#: settings/base.py:327
|
|
211
235
|
msgid "History"
|
|
212
236
|
msgstr "Ιστορία"
|
|
213
237
|
|
|
214
|
-
#: settings/base.py:
|
|
238
|
+
#: settings/base.py:328
|
|
215
239
|
msgid "Public sector"
|
|
216
240
|
msgstr "Δημόσιος τομέας"
|
|
217
241
|
|
|
218
|
-
#: settings/base.py:
|
|
242
|
+
#: settings/base.py:329
|
|
219
243
|
msgid "Science"
|
|
220
244
|
msgstr "Επιστήμες"
|
|
221
245
|
|
|
222
|
-
#: settings/base.py:
|
|
246
|
+
#: settings/base.py:330
|
|
223
247
|
msgid "Shopping"
|
|
224
248
|
msgstr "Ψώνια"
|
|
225
249
|
|
|
226
|
-
#: settings/base.py:
|
|
250
|
+
#: settings/base.py:331
|
|
227
251
|
msgid "Sport and Leisure"
|
|
228
252
|
msgstr "Αθλητισμός και ελεύθερος χρόνος"
|
|
229
253
|
|
|
230
|
-
#: settings/base.py:
|
|
254
|
+
#: settings/base.py:332
|
|
231
255
|
msgid "Travel"
|
|
232
256
|
msgstr "Ταξίδια"
|
|
233
257
|
|
|
234
|
-
#: settings/base.py:
|
|
258
|
+
#: settings/base.py:333
|
|
235
259
|
msgid "Transports"
|
|
236
260
|
msgstr "Μεταφορές"
|
|
237
261
|
|
|
238
|
-
#: settings/base.py:
|
|
262
|
+
#: settings/base.py:334
|
|
239
263
|
msgid "Tourism"
|
|
240
264
|
msgstr "Τουρισμός"
|
|
241
265
|
|
|
@@ -381,7 +405,7 @@ msgid "And it's <a href=\"%(repo_url)s\">open source</a>!"
|
|
|
381
405
|
msgstr "Και είναι <a href=\"%(repo_url)s\">ανοικτού κώδικα</a>!"
|
|
382
406
|
|
|
383
407
|
#: templates/umap/about_summary.html:63 templates/umap/navigation.html:39
|
|
384
|
-
#: templates/umap/user_dashboard.html:
|
|
408
|
+
#: templates/umap/user_dashboard.html:16
|
|
385
409
|
msgid "Create a map"
|
|
386
410
|
msgstr "Δημιουργία χάρτη"
|
|
387
411
|
|
|
@@ -479,11 +503,20 @@ msgstr "Οι χάρτες μου (%(count)s)"
|
|
|
479
503
|
msgid "My Maps"
|
|
480
504
|
msgstr "Οι χάρτες μου"
|
|
481
505
|
|
|
482
|
-
#: templates/umap/dashboard_menu.html:
|
|
506
|
+
#: templates/umap/dashboard_menu.html:11
|
|
507
|
+
#, python-format
|
|
508
|
+
msgid "My Templates (%(count)s)"
|
|
509
|
+
msgstr ""
|
|
510
|
+
|
|
511
|
+
#: templates/umap/dashboard_menu.html:13 templates/umap/user_templates.html:6
|
|
512
|
+
msgid "My Templates"
|
|
513
|
+
msgstr ""
|
|
514
|
+
|
|
515
|
+
#: templates/umap/dashboard_menu.html:17
|
|
483
516
|
msgid "My profile"
|
|
484
517
|
msgstr "Το προφίλ μου"
|
|
485
518
|
|
|
486
|
-
#: templates/umap/dashboard_menu.html:
|
|
519
|
+
#: templates/umap/dashboard_menu.html:20
|
|
487
520
|
msgid "My teams"
|
|
488
521
|
msgstr "Οι ομάδες μου"
|
|
489
522
|
|
|
@@ -499,10 +532,18 @@ msgstr "Περιηγήσου και αναζήτησε την έμπνευση
|
|
|
499
532
|
msgid "You are logged in. Continuing..."
|
|
500
533
|
msgstr "Είστε συνδεδεμένοι. Συνέχεια..."
|
|
501
534
|
|
|
502
|
-
#: templates/umap/map_list.html:
|
|
535
|
+
#: templates/umap/map_list.html:15
|
|
536
|
+
msgid "template"
|
|
537
|
+
msgstr ""
|
|
538
|
+
|
|
539
|
+
#: templates/umap/map_list.html:18 views.py:458
|
|
503
540
|
msgid "by"
|
|
504
541
|
msgstr "από"
|
|
505
542
|
|
|
543
|
+
#: templates/umap/map_list.html:22
|
|
544
|
+
msgid "See the template"
|
|
545
|
+
msgstr ""
|
|
546
|
+
|
|
506
547
|
#: templates/umap/map_list.html:22
|
|
507
548
|
msgid "See the map"
|
|
508
549
|
msgstr "Δες τον χάρτη"
|
|
@@ -539,7 +580,7 @@ msgstr "Κάτοχος"
|
|
|
539
580
|
msgid "Actions"
|
|
540
581
|
msgstr "Ενέργειες"
|
|
541
582
|
|
|
542
|
-
#: templates/umap/map_table.html:
|
|
583
|
+
#: templates/umap/map_table.html:40 templates/umap/map_table.html:42
|
|
543
584
|
msgid "Open preview"
|
|
544
585
|
msgstr "Άνοιγμα προεπισκόπησης"
|
|
545
586
|
|
|
@@ -666,7 +707,7 @@ msgid_plural "%(count)s maps found:"
|
|
|
666
707
|
msgstr[0] "%(count)s χάρτης βρέθηκε:"
|
|
667
708
|
msgstr[1] "%(count)s χάρτες βρέθηκαν:"
|
|
668
709
|
|
|
669
|
-
#: templates/umap/search.html:30
|
|
710
|
+
#: templates/umap/search.html:30 templates/umap/user_dashboard.html:17
|
|
670
711
|
msgid "No map found."
|
|
671
712
|
msgstr "Δεν βρέθηκε κανένας χάρτης."
|
|
672
713
|
|
|
@@ -721,20 +762,20 @@ msgstr "Διαγραφή αυτής της ομάδας"
|
|
|
721
762
|
msgid "Add user"
|
|
722
763
|
msgstr "Προσθήκη χρήστη"
|
|
723
764
|
|
|
724
|
-
#: templates/umap/user_dashboard.html:
|
|
765
|
+
#: templates/umap/user_dashboard.html:10
|
|
725
766
|
msgid "Search my maps"
|
|
726
767
|
msgstr "Αναζήτηση στους χάρτες μου"
|
|
727
768
|
|
|
728
|
-
#: templates/umap/user_dashboard.html:
|
|
729
|
-
msgid "Map’s
|
|
730
|
-
msgstr "
|
|
769
|
+
#: templates/umap/user_dashboard.html:11
|
|
770
|
+
msgid "Map’s name"
|
|
771
|
+
msgstr ""
|
|
731
772
|
|
|
732
|
-
#: templates/umap/user_dashboard.html:
|
|
773
|
+
#: templates/umap/user_dashboard.html:12
|
|
733
774
|
#, python-format
|
|
734
775
|
msgid "Download %(count)s maps"
|
|
735
776
|
msgstr "Λήψη%(count)s χαρτών"
|
|
736
777
|
|
|
737
|
-
#: templates/umap/user_dashboard.html:
|
|
778
|
+
#: templates/umap/user_dashboard.html:15
|
|
738
779
|
msgid "You have no map yet."
|
|
739
780
|
msgstr "Δεν έχετε ακόμη χάρτη."
|
|
740
781
|
|
|
@@ -750,70 +791,95 @@ msgstr "Χρήστες"
|
|
|
750
791
|
msgid "New team"
|
|
751
792
|
msgstr "Νέα ομάδα"
|
|
752
793
|
|
|
753
|
-
#:
|
|
794
|
+
#: templates/umap/user_templates.html:10
|
|
795
|
+
msgid "Search my templates"
|
|
796
|
+
msgstr ""
|
|
797
|
+
|
|
798
|
+
#: templates/umap/user_templates.html:11
|
|
799
|
+
msgid "Template’s name"
|
|
800
|
+
msgstr ""
|
|
801
|
+
|
|
802
|
+
#: templates/umap/user_templates.html:12
|
|
803
|
+
#, python-format
|
|
804
|
+
msgid "Download %(count)s templates"
|
|
805
|
+
msgstr ""
|
|
806
|
+
|
|
807
|
+
#: templates/umap/user_templates.html:15
|
|
808
|
+
msgid "You have no template yet."
|
|
809
|
+
msgstr ""
|
|
810
|
+
|
|
811
|
+
#: templates/umap/user_templates.html:16
|
|
812
|
+
msgid "Create a template"
|
|
813
|
+
msgstr ""
|
|
814
|
+
|
|
815
|
+
#: templates/umap/user_templates.html:17
|
|
816
|
+
msgid "No template found."
|
|
817
|
+
msgstr ""
|
|
818
|
+
|
|
819
|
+
#: views.py:233
|
|
754
820
|
msgid "Cannot delete a team with more than one member"
|
|
755
821
|
msgstr "Δεν είναι δυνατή η διαγραφή μιας ομάδας που έχει περισσότερα από ένα μέλη"
|
|
756
822
|
|
|
757
|
-
#: views.py:
|
|
823
|
+
#: views.py:237
|
|
758
824
|
#, python-format
|
|
759
825
|
msgid "Team “%(name)s” has been deleted"
|
|
760
826
|
msgstr "Η ομάδα «%(name)s» έχει διαγραφεί."
|
|
761
827
|
|
|
762
|
-
#: views.py:
|
|
828
|
+
#: views.py:463
|
|
763
829
|
msgid "View the map"
|
|
764
830
|
msgstr "Προβολή του χάρτη"
|
|
765
831
|
|
|
766
|
-
#: views.py:
|
|
832
|
+
#: views.py:864
|
|
767
833
|
msgid "See full screen"
|
|
768
834
|
msgstr "Προβολή πλήρους οθόνης"
|
|
769
835
|
|
|
770
|
-
#: views.py:
|
|
836
|
+
#: views.py:1007
|
|
771
837
|
msgid "Map editors updated with success!"
|
|
772
838
|
msgstr "Η ενημέρωση των συντακτών χάρτη ήταν επιτυχής!"
|
|
773
839
|
|
|
774
|
-
#: views.py:
|
|
840
|
+
#: views.py:1043
|
|
775
841
|
#, python-format
|
|
776
842
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
777
843
|
msgstr "Ο uMap σύνδεσμος επεξεργασίας του χάρτη σας: %(map_name)s"
|
|
778
844
|
|
|
779
|
-
#: views.py:
|
|
845
|
+
#: views.py:1046
|
|
780
846
|
#, python-format
|
|
781
847
|
msgid "Here is your secret edit link: %(link)s"
|
|
782
848
|
msgstr "Εδώ είναι ο μυστικός σύνδεσμος επεξεργασίας: %(link)s"
|
|
783
849
|
|
|
784
|
-
#: views.py:
|
|
850
|
+
#: views.py:1053
|
|
785
851
|
#, python-format
|
|
786
852
|
msgid "Can't send email to %(email)s"
|
|
787
853
|
msgstr "Αδυναμία αποστολής email στο %(email)s"
|
|
788
854
|
|
|
789
|
-
#: views.py:
|
|
855
|
+
#: views.py:1056
|
|
790
856
|
#, python-format
|
|
791
857
|
msgid "Email sent to %(email)s"
|
|
792
858
|
msgstr "Μήνυμα email στάλθηκε στο %(email)s"
|
|
793
859
|
|
|
794
|
-
#: views.py:
|
|
860
|
+
#: views.py:1067
|
|
795
861
|
msgid "Only its owner can delete the map."
|
|
796
862
|
msgstr "Μονό ο ιδιοκτήτης μπορεί να διαγράψει αυτό τον χάρτη."
|
|
797
863
|
|
|
798
|
-
#: views.py:
|
|
864
|
+
#: views.py:1073
|
|
799
865
|
msgid "Map successfully deleted."
|
|
800
866
|
msgstr "Ο χάρτης διαγράφηκε με επιτυχία."
|
|
801
867
|
|
|
802
|
-
#: views.py:
|
|
868
|
+
#: views.py:1099
|
|
803
869
|
#, python-format
|
|
804
870
|
msgid ""
|
|
805
871
|
"Your map has been cloned! If you want to edit this map from another "
|
|
806
872
|
"computer, please use this link: %(anonymous_url)s"
|
|
807
873
|
msgstr "Ο χάρτης κλωνοποιήθηκε! Αν θέλετε να τον επεξεργαστείτε από κάποιον άλλο υπολογιστή, παρακαλώ χρησιμοποιήστε αυτόν τον σύνδεσμο: %(anonymous_url)s"
|
|
808
874
|
|
|
809
|
-
#: views.py:
|
|
875
|
+
#: views.py:1104
|
|
810
876
|
msgid "Congratulations, your map has been cloned!"
|
|
811
877
|
msgstr "Συγχαρητήρια ο χάρτης σας κλωνοποιήθηκε!"
|
|
812
878
|
|
|
813
|
-
#: views.py:
|
|
879
|
+
#: views.py:1358
|
|
814
880
|
msgid "Layer successfully deleted."
|
|
815
881
|
msgstr "Το επίπεδο διαγράφηκε με επιτυχία."
|
|
816
882
|
|
|
817
|
-
#: views.py:
|
|
883
|
+
#: views.py:1380
|
|
818
884
|
msgid "Permissions updated with success!"
|
|
819
885
|
msgstr "Τα δικαιώματα ενημερώθηκαν με επιτυχία!"
|