umap-project 3.3.2__py3-none-any.whl → 3.4.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.
Files changed (242) hide show
  1. umap/__init__.py +1 -1
  2. umap/context_processors.py +4 -1
  3. umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
  4. umap/locale/cs_CZ/LC_MESSAGES/django.po +43 -33
  5. umap/locale/da/LC_MESSAGES/django.mo +0 -0
  6. umap/locale/da/LC_MESSAGES/django.po +43 -33
  7. umap/locale/de/LC_MESSAGES/django.mo +0 -0
  8. umap/locale/de/LC_MESSAGES/django.po +64 -53
  9. umap/locale/el/LC_MESSAGES/django.mo +0 -0
  10. umap/locale/el/LC_MESSAGES/django.po +35 -29
  11. umap/locale/en/LC_MESSAGES/django.po +47 -41
  12. umap/locale/es/LC_MESSAGES/django.mo +0 -0
  13. umap/locale/es/LC_MESSAGES/django.po +43 -33
  14. umap/locale/et/LC_MESSAGES/django.mo +0 -0
  15. umap/locale/et/LC_MESSAGES/django.po +58 -54
  16. umap/locale/eu/LC_MESSAGES/django.mo +0 -0
  17. umap/locale/eu/LC_MESSAGES/django.po +43 -33
  18. umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
  19. umap/locale/fa_IR/LC_MESSAGES/django.po +43 -33
  20. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  21. umap/locale/fr/LC_MESSAGES/django.po +36 -30
  22. umap/locale/gl/LC_MESSAGES/django.mo +0 -0
  23. umap/locale/gl/LC_MESSAGES/django.po +43 -33
  24. umap/locale/hu/LC_MESSAGES/django.mo +0 -0
  25. umap/locale/hu/LC_MESSAGES/django.po +35 -29
  26. umap/locale/is/LC_MESSAGES/django.mo +0 -0
  27. umap/locale/is/LC_MESSAGES/django.po +43 -33
  28. umap/locale/it/LC_MESSAGES/django.mo +0 -0
  29. umap/locale/it/LC_MESSAGES/django.po +43 -33
  30. umap/locale/nl/LC_MESSAGES/django.mo +0 -0
  31. umap/locale/nl/LC_MESSAGES/django.po +35 -29
  32. umap/locale/pl/LC_MESSAGES/django.mo +0 -0
  33. umap/locale/pl/LC_MESSAGES/django.po +114 -103
  34. umap/locale/pt/LC_MESSAGES/django.mo +0 -0
  35. umap/locale/pt/LC_MESSAGES/django.po +43 -33
  36. umap/locale/th_TH/LC_MESSAGES/django.mo +0 -0
  37. umap/locale/th_TH/LC_MESSAGES/django.po +310 -109
  38. umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
  39. umap/locale/zh_TW/LC_MESSAGES/django.po +80 -70
  40. umap/management/commands/switch_user.py +2 -2
  41. umap/migrations/0018_datalayer_uuid.py +1 -1
  42. umap/models.py +7 -3
  43. umap/settings/local.py.sample +1 -1
  44. umap/static/umap/base.css +89 -32
  45. umap/static/umap/content.css +129 -33
  46. umap/static/umap/css/bar.css +82 -20
  47. umap/static/umap/css/browser.css +163 -0
  48. umap/static/umap/css/contextmenu.css +15 -0
  49. umap/static/umap/css/dialog.css +36 -16
  50. umap/static/umap/css/form.css +123 -33
  51. umap/static/umap/css/icon.css +46 -3
  52. umap/static/umap/css/panel.css +7 -3
  53. umap/static/umap/css/popup.css +34 -8
  54. umap/static/umap/css/tooltip.css +8 -4
  55. umap/static/umap/img/16-white.svg +26 -8
  56. umap/static/umap/img/16.svg +1 -1
  57. umap/static/umap/img/source/16-white.svg +36 -18
  58. umap/static/umap/img/source/16.svg +1 -1
  59. umap/static/umap/js/components/alerts/alert.css +69 -31
  60. umap/static/umap/js/components/alerts/alert.js +20 -2
  61. umap/static/umap/js/components/base.js +1 -1
  62. umap/static/umap/js/modules/browser.js +69 -61
  63. umap/static/umap/js/modules/caption.js +10 -7
  64. umap/static/umap/js/modules/data/features.js +89 -63
  65. umap/static/umap/js/modules/data/fields.js +446 -0
  66. umap/static/umap/js/modules/data/layer.js +116 -196
  67. umap/static/umap/js/modules/domutils.js +109 -0
  68. umap/static/umap/js/modules/filters.js +780 -0
  69. umap/static/umap/js/modules/form/builder.js +8 -5
  70. umap/static/umap/js/modules/form/fields.js +111 -221
  71. umap/static/umap/js/modules/formatter.js +24 -1
  72. umap/static/umap/js/modules/help.js +4 -3
  73. umap/static/umap/js/modules/i18n.js +1 -1
  74. umap/static/umap/js/modules/importer.js +1 -1
  75. umap/static/umap/js/modules/importers/opendata.js +15 -0
  76. umap/static/umap/js/modules/importers/openrouteservice.js +6 -1
  77. umap/static/umap/js/modules/managers.js +2 -1
  78. umap/static/umap/js/modules/permissions.js +39 -31
  79. umap/static/umap/js/modules/rendering/controls.js +11 -9
  80. umap/static/umap/js/modules/rendering/icon.js +3 -8
  81. umap/static/umap/js/modules/rendering/layers/base.js +3 -3
  82. umap/static/umap/js/modules/rendering/layers/classified.js +18 -11
  83. umap/static/umap/js/modules/rendering/layers/cluster.js +23 -11
  84. umap/static/umap/js/modules/rendering/layers/heat.js +27 -21
  85. umap/static/umap/js/modules/rendering/map.js +1 -0
  86. umap/static/umap/js/modules/rendering/template.js +50 -23
  87. umap/static/umap/js/modules/rendering/ui.js +33 -25
  88. umap/static/umap/js/modules/rules.js +38 -44
  89. umap/static/umap/js/modules/schema.js +3 -6
  90. umap/static/umap/js/modules/share.js +5 -4
  91. umap/static/umap/js/modules/tableeditor.js +50 -38
  92. umap/static/umap/js/modules/templates.js +2 -3
  93. umap/static/umap/js/modules/ui/bar.js +55 -23
  94. umap/static/umap/js/modules/ui/dialog.js +38 -27
  95. umap/static/umap/js/modules/ui/panel.js +23 -8
  96. umap/static/umap/js/modules/ui/tooltip.js +6 -5
  97. umap/static/umap/js/modules/umap.js +158 -51
  98. umap/static/umap/js/modules/utils.js +24 -2
  99. umap/static/umap/js/umap.core.js +1 -110
  100. umap/static/umap/locale/am_ET.js +52 -17
  101. umap/static/umap/locale/am_ET.json +52 -17
  102. umap/static/umap/locale/ar.js +52 -17
  103. umap/static/umap/locale/ar.json +52 -17
  104. umap/static/umap/locale/ast.js +52 -17
  105. umap/static/umap/locale/ast.json +52 -17
  106. umap/static/umap/locale/bg.js +52 -17
  107. umap/static/umap/locale/bg.json +52 -17
  108. umap/static/umap/locale/br.js +48 -22
  109. umap/static/umap/locale/br.json +48 -22
  110. umap/static/umap/locale/ca.js +52 -17
  111. umap/static/umap/locale/ca.json +52 -17
  112. umap/static/umap/locale/cs_CZ.js +52 -17
  113. umap/static/umap/locale/cs_CZ.json +52 -17
  114. umap/static/umap/locale/da.js +54 -17
  115. umap/static/umap/locale/da.json +54 -17
  116. umap/static/umap/locale/de.js +102 -67
  117. umap/static/umap/locale/de.json +102 -67
  118. umap/static/umap/locale/el.js +52 -17
  119. umap/static/umap/locale/el.json +52 -17
  120. umap/static/umap/locale/en.js +54 -16
  121. umap/static/umap/locale/en.json +54 -16
  122. umap/static/umap/locale/en_US.json +52 -17
  123. umap/static/umap/locale/es.js +54 -17
  124. umap/static/umap/locale/es.json +54 -17
  125. umap/static/umap/locale/et.js +91 -56
  126. umap/static/umap/locale/et.json +91 -56
  127. umap/static/umap/locale/eu.js +84 -49
  128. umap/static/umap/locale/eu.json +84 -49
  129. umap/static/umap/locale/fa_IR.js +52 -17
  130. umap/static/umap/locale/fa_IR.json +52 -17
  131. umap/static/umap/locale/fi.js +52 -17
  132. umap/static/umap/locale/fi.json +52 -17
  133. umap/static/umap/locale/fr.js +54 -17
  134. umap/static/umap/locale/fr.json +54 -17
  135. umap/static/umap/locale/gl.js +52 -17
  136. umap/static/umap/locale/gl.json +52 -17
  137. umap/static/umap/locale/he.js +52 -17
  138. umap/static/umap/locale/he.json +52 -17
  139. umap/static/umap/locale/hr.js +52 -17
  140. umap/static/umap/locale/hr.json +52 -17
  141. umap/static/umap/locale/hu.js +59 -24
  142. umap/static/umap/locale/hu.json +59 -24
  143. umap/static/umap/locale/id.js +52 -17
  144. umap/static/umap/locale/id.json +52 -17
  145. umap/static/umap/locale/is.js +52 -17
  146. umap/static/umap/locale/is.json +52 -17
  147. umap/static/umap/locale/it.js +52 -17
  148. umap/static/umap/locale/it.json +52 -17
  149. umap/static/umap/locale/ja.js +52 -17
  150. umap/static/umap/locale/ja.json +52 -17
  151. umap/static/umap/locale/ko.js +52 -17
  152. umap/static/umap/locale/ko.json +52 -17
  153. umap/static/umap/locale/lt.js +52 -17
  154. umap/static/umap/locale/lt.json +52 -17
  155. umap/static/umap/locale/ms.js +52 -17
  156. umap/static/umap/locale/ms.json +52 -17
  157. umap/static/umap/locale/nl.js +52 -17
  158. umap/static/umap/locale/nl.json +52 -17
  159. umap/static/umap/locale/no.js +52 -17
  160. umap/static/umap/locale/no.json +52 -17
  161. umap/static/umap/locale/pl.js +53 -17
  162. umap/static/umap/locale/pl.json +53 -17
  163. umap/static/umap/locale/pl_PL.json +52 -17
  164. umap/static/umap/locale/pt.js +52 -17
  165. umap/static/umap/locale/pt.json +52 -17
  166. umap/static/umap/locale/pt_BR.js +52 -17
  167. umap/static/umap/locale/pt_BR.json +52 -17
  168. umap/static/umap/locale/pt_PT.js +52 -17
  169. umap/static/umap/locale/pt_PT.json +52 -17
  170. umap/static/umap/locale/ro.js +52 -17
  171. umap/static/umap/locale/ro.json +52 -17
  172. umap/static/umap/locale/ru.js +52 -17
  173. umap/static/umap/locale/ru.json +52 -17
  174. umap/static/umap/locale/si.js +1 -1
  175. umap/static/umap/locale/si.json +1 -1
  176. umap/static/umap/locale/sk_SK.js +52 -17
  177. umap/static/umap/locale/sk_SK.json +52 -17
  178. umap/static/umap/locale/sl.js +52 -17
  179. umap/static/umap/locale/sl.json +52 -17
  180. umap/static/umap/locale/sr.js +52 -17
  181. umap/static/umap/locale/sr.json +52 -17
  182. umap/static/umap/locale/sv.js +52 -17
  183. umap/static/umap/locale/sv.json +52 -17
  184. umap/static/umap/locale/th_TH.js +52 -17
  185. umap/static/umap/locale/th_TH.json +52 -17
  186. umap/static/umap/locale/tr.js +52 -17
  187. umap/static/umap/locale/tr.json +52 -17
  188. umap/static/umap/locale/uk_UA.js +52 -17
  189. umap/static/umap/locale/uk_UA.json +52 -17
  190. umap/static/umap/locale/vi.js +52 -17
  191. umap/static/umap/locale/vi.json +52 -17
  192. umap/static/umap/locale/vi_VN.json +52 -17
  193. umap/static/umap/locale/zh.js +52 -17
  194. umap/static/umap/locale/zh.json +52 -17
  195. umap/static/umap/locale/zh_CN.json +52 -17
  196. umap/static/umap/locale/zh_TW.Big5.json +52 -17
  197. umap/static/umap/locale/zh_TW.js +53 -17
  198. umap/static/umap/locale/zh_TW.json +53 -17
  199. umap/static/umap/map.css +63 -226
  200. umap/static/umap/unittests/utils.js +18 -0
  201. umap/static/umap/vars.css +23 -5
  202. umap/templates/umap/components/alerts/alert.html +32 -29
  203. umap/templates/umap/css.html +2 -1
  204. umap/templates/umap/login_popup_end.html +18 -9
  205. umap/templates/umap/user_map_table.html +7 -2
  206. umap/tests/integration/conftest.py +10 -6
  207. umap/tests/integration/test_anonymous_owned_map.py +90 -37
  208. umap/tests/integration/test_basics.py +25 -1
  209. umap/tests/integration/test_browser.py +37 -0
  210. umap/tests/integration/test_cluster.py +110 -0
  211. umap/tests/integration/test_conditional_rules.py +107 -52
  212. umap/tests/integration/test_datalayer.py +9 -16
  213. umap/tests/integration/test_draw_polygon.py +6 -0
  214. umap/tests/integration/test_draw_polyline.py +11 -0
  215. umap/tests/integration/test_edit_marker.py +12 -1
  216. umap/tests/integration/test_export_map.py +19 -0
  217. umap/tests/integration/test_fields.py +541 -0
  218. umap/tests/integration/test_filters.py +616 -0
  219. umap/tests/integration/test_iframe.py +1 -1
  220. umap/tests/integration/test_import.py +38 -42
  221. umap/tests/integration/test_map_preview.py +1 -1
  222. umap/tests/integration/test_picto.py +1 -1
  223. umap/tests/integration/test_popup.py +31 -0
  224. umap/tests/integration/test_remote_data.py +60 -4
  225. umap/tests/integration/test_save.py +1 -1
  226. umap/tests/integration/test_share.py +4 -4
  227. umap/tests/integration/test_tableeditor.py +31 -7
  228. umap/tests/integration/test_websocket_sync.py +71 -20
  229. umap/tests/test_dashboard.py +11 -1
  230. umap/tests/test_statics.py +2 -2
  231. umap/tests/test_utils.py +19 -2
  232. umap/tests/test_views.py +1 -1
  233. umap/urls.py +1 -0
  234. umap/utils.py +8 -1
  235. umap/views.py +5 -0
  236. {umap_project-3.3.2.dist-info → umap_project-3.4.0.dist-info}/METADATA +15 -15
  237. {umap_project-3.3.2.dist-info → umap_project-3.4.0.dist-info}/RECORD +240 -236
  238. umap/static/umap/js/modules/facets.js +0 -164
  239. umap/tests/integration/test_facets_browser.py +0 -279
  240. {umap_project-3.3.2.dist-info → umap_project-3.4.0.dist-info}/WHEEL +0 -0
  241. {umap_project-3.3.2.dist-info → umap_project-3.4.0.dist-info}/entry_points.txt +0 -0
  242. {umap_project-3.3.2.dist-info → umap_project-3.4.0.dist-info}/licenses/LICENSE +0 -0
@@ -15,14 +15,15 @@
15
15
  # Paul Vogel, 2025
16
16
  # pgeo, 2023
17
17
  # Klumbumbus, 2013-2014,2018-2019
18
+ # s r, 2025
18
19
  # YOHAN BONIFACE <yb@enix.org>, 2012
19
20
  msgid ""
20
21
  msgstr ""
21
22
  "Project-Id-Version: uMap\n"
22
23
  "Report-Msgid-Bugs-To: \n"
23
- "POT-Creation-Date: 2025-06-10 09:19+0000\n"
24
+ "POT-Creation-Date: 2025-10-14 15:28+0000\n"
24
25
  "PO-Revision-Date: 2013-11-22 14:00+0000\n"
25
- "Last-Translator: Paul Vogel, 2025\n"
26
+ "Last-Translator: s r, 2025\n"
26
27
  "Language-Team: German (http://app.transifex.com/openstreetmap/umap/language/de/)\n"
27
28
  "MIME-Version: 1.0\n"
28
29
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -212,11 +213,11 @@ msgstr "Fahrradfahren"
212
213
 
213
214
  #: settings/base.py:320
214
215
  msgid "Business"
215
- msgstr ""
216
+ msgstr "Gewerblich"
216
217
 
217
218
  #: settings/base.py:321
218
219
  msgid "Environment"
219
- msgstr "Umgebung"
220
+ msgstr "Umwelt"
220
221
 
221
222
  #: settings/base.py:322
222
223
  msgid "Education"
@@ -224,11 +225,11 @@ msgstr "Bildung"
224
225
 
225
226
  #: settings/base.py:323
226
227
  msgid "Food and Agriculture"
227
- msgstr ""
228
+ msgstr "Nahrungsmittel und Landwirtschaft"
228
229
 
229
230
  #: settings/base.py:324
230
231
  msgid "Geopolitics"
231
- msgstr ""
232
+ msgstr "Geopolitik"
232
233
 
233
234
  #: settings/base.py:325
234
235
  msgid "Health"
@@ -244,7 +245,7 @@ msgstr "Geschichte"
244
245
 
245
246
  #: settings/base.py:328
246
247
  msgid "Public sector"
247
- msgstr ""
248
+ msgstr "Öffentlicher Sektor"
248
249
 
249
250
  #: settings/base.py:329
250
251
  msgid "Science"
@@ -252,7 +253,7 @@ msgstr "Wissenschaft"
252
253
 
253
254
  #: settings/base.py:330
254
255
  msgid "Shopping"
255
- msgstr "Shopping"
256
+ msgstr "Einkaufsmöglichkeiten"
256
257
 
257
258
  #: settings/base.py:331
258
259
  msgid "Sport and Leisure"
@@ -264,7 +265,7 @@ msgstr "Reisen"
264
265
 
265
266
  #: settings/base.py:333
266
267
  msgid "Transports"
267
- msgstr ""
268
+ msgstr "Transport"
268
269
 
269
270
  #: settings/base.py:334
270
271
  msgid "Tourism"
@@ -337,7 +338,7 @@ msgstr "Schaue dir %(current_user)s's favorisierten Karten an"
337
338
  msgid "%(current_user)s has no starred maps yet."
338
339
  msgstr "%(current_user)s hat keine favorisierten Karten."
339
340
 
340
- #: templates/base.html:13
341
+ #: templates/base.html:16
341
342
  msgid ""
342
343
  "uMap lets you create maps with OpenStreetMap layers in a minute and embed "
343
344
  "them in your site."
@@ -349,11 +350,11 @@ msgstr "Anmeldung"
349
350
 
350
351
  #: templates/registration/login.html:22
351
352
  msgid "To save and easily find your maps, identify yourself."
352
- msgstr "Um deine Karten einfach zu speichern und wieder zu finden, merke dich an."
353
+ msgstr "Melde dich an um deine Karten einfach zu speichern und wieder zu finden."
353
354
 
354
355
  #: templates/registration/login.html:25
355
356
  msgid "Please log in with your account:"
356
- msgstr "Bitte melden Sie sich mit Ihrem Konto an"
357
+ msgstr "Bitte melde dich mit deinem Konto an"
357
358
 
358
359
  #: templates/registration/login.html:42
359
360
  msgid "Username"
@@ -421,48 +422,54 @@ msgid "Play with the demo"
421
422
  msgstr "Spiele mit der Demo"
422
423
 
423
424
  #: templates/umap/components/alerts/alert.html:17
424
- #: templates/umap/components/alerts/alert.html:66
425
- #: templates/umap/components/alerts/alert.html:94
425
+ #: templates/umap/components/alerts/alert.html:69
426
+ #: templates/umap/components/alerts/alert.html:97
426
427
  msgid "Close"
427
428
  msgstr "Schließen"
428
429
 
429
430
  #: templates/umap/components/alerts/alert.html:32
430
431
  #, python-format
431
432
  msgid ""
432
- "Pro-tip: to easily find back your maps, <a href=\"%(login_url)s\" "
433
- "target=\"_blank\">create an account</a> or <a href=\"%(login_url)s\" "
434
- "target=\"_blank\">log in</a>."
435
- msgstr "Um auf Deine Karten schnell zugreifen zu können: <a href=\"%(login_url)s\" target=\"_blank\">erstelle ein Konto</a> oder <a href=\"%(login_url)s\" target=\"_blank\">melde dich an</a>."
433
+ "Oops, I didn't mean it, I want to <a href=\"%(login_url)s\" "
434
+ "class=\"login\">create an account</a> or <a href=\"%(login_url)s\" "
435
+ "class=\"login\">log in</a> (no worry, we'll attach the map to your account)."
436
+ msgstr ""
437
+
438
+ #: templates/umap/components/alerts/alert.html:35
439
+ msgid ""
440
+ "Yes, I want to continue editing anonymously, I will save the secret edit "
441
+ "link to be able to edit this map later or on another device"
442
+ msgstr ""
436
443
 
437
- #: templates/umap/components/alerts/alert.html:37
444
+ #: templates/umap/components/alerts/alert.html:39
438
445
  msgid "Here is your secret link to edit the map, please keep it safe:"
439
446
  msgstr "Hier ist der geheime Link zum Bearbeiten der Karte, bitte bewahre ihn sicher auf:"
440
447
 
441
- #: templates/umap/components/alerts/alert.html:41
448
+ #: templates/umap/components/alerts/alert.html:43
442
449
  msgid "Copy link"
443
450
  msgstr "Link kopieren"
444
451
 
445
- #: templates/umap/components/alerts/alert.html:48
452
+ #: templates/umap/components/alerts/alert.html:50
446
453
  msgid "Enter your email address to receive the secret link:"
447
454
  msgstr "Gib Deine E-Mail-Adresse ein, um den geheimen Link zu gesendet zu bekommen:"
448
455
 
449
- #: templates/umap/components/alerts/alert.html:54
456
+ #: templates/umap/components/alerts/alert.html:56
450
457
  msgid "Email"
451
458
  msgstr "Email"
452
459
 
453
- #: templates/umap/components/alerts/alert.html:57
460
+ #: templates/umap/components/alerts/alert.html:59
454
461
  msgid "Send me the link"
455
462
  msgstr "Link verschicken"
456
463
 
457
- #: templates/umap/components/alerts/alert.html:81
464
+ #: templates/umap/components/alerts/alert.html:84
458
465
  msgid "See their edits in another tab"
459
466
  msgstr "Die Bearbeitungen in einem anderen Browser-Tab öffnen"
460
467
 
461
- #: templates/umap/components/alerts/alert.html:84
468
+ #: templates/umap/components/alerts/alert.html:87
462
469
  msgid "Keep your changes and loose theirs"
463
470
  msgstr "Behalte Deine Änderungen und verwirf die anderen"
464
471
 
465
- #: templates/umap/components/alerts/alert.html:87
472
+ #: templates/umap/components/alerts/alert.html:90
466
473
  msgid "Keep their changes and loose yours"
467
474
  msgstr "Behalte die anderen Änderungen und verwirf Deine"
468
475
 
@@ -513,11 +520,11 @@ msgstr "Meine Karten"
513
520
  #: templates/umap/dashboard_menu.html:11
514
521
  #, python-format
515
522
  msgid "My Templates (%(count)s)"
516
- msgstr ""
523
+ msgstr "Meine Vorlagen (%(count)s)"
517
524
 
518
525
  #: templates/umap/dashboard_menu.html:13 templates/umap/user_templates.html:6
519
526
  msgid "My Templates"
520
- msgstr ""
527
+ msgstr "Meine Vorlagen"
521
528
 
522
529
  #: templates/umap/dashboard_menu.html:17
523
530
  msgid "My profile"
@@ -543,7 +550,7 @@ msgstr "Du bist eingeloggt. Weiterleitung..."
543
550
  msgid "template"
544
551
  msgstr "Vorlage"
545
552
 
546
- #: templates/umap/map_list.html:18 views.py:458
553
+ #: templates/umap/map_list.html:18 views.py:459
547
554
  msgid "by"
548
555
  msgstr "von"
549
556
 
@@ -720,7 +727,7 @@ msgstr "Keine Karte gefunden."
720
727
 
721
728
  #: templates/umap/search.html:36
722
729
  msgid "Latest created maps in category"
723
- msgstr ""
730
+ msgstr "Zuletzt erstelle Karten in Kategorie"
724
731
 
725
732
  #: templates/umap/search.html:43
726
733
  msgid "Latest created maps"
@@ -730,7 +737,7 @@ msgstr "Zuletzt erstellte Karten"
730
737
  msgid "Search maps"
731
738
  msgstr "Karten suchen"
732
739
 
733
- #: templates/umap/search_bar.html:14
740
+ #: templates/umap/search_bar.html:14 templates/umap/user_map_table.html:15
734
741
  msgid "Any category"
735
742
  msgstr "Jede Kategorie"
736
743
 
@@ -775,7 +782,7 @@ msgstr "Meine Karten suchen"
775
782
 
776
783
  #: templates/umap/user_dashboard.html:11
777
784
  msgid "Map’s name"
778
- msgstr ""
785
+ msgstr "Kartenname"
779
786
 
780
787
  #: templates/umap/user_dashboard.html:12
781
788
  #, python-format
@@ -800,93 +807,97 @@ msgstr "Neues Team"
800
807
 
801
808
  #: templates/umap/user_templates.html:10
802
809
  msgid "Search my templates"
803
- msgstr ""
810
+ msgstr "Meine Vorlagen durchsuchen"
804
811
 
805
812
  #: templates/umap/user_templates.html:11
806
813
  msgid "Template’s name"
807
- msgstr ""
814
+ msgstr "Vorlagenname"
808
815
 
809
816
  #: templates/umap/user_templates.html:12
810
817
  #, python-format
811
818
  msgid "Download %(count)s templates"
812
- msgstr ""
819
+ msgstr "Herunterladen von %(count)s Vorlage(n)"
813
820
 
814
821
  #: templates/umap/user_templates.html:15
815
822
  msgid "You have no template yet."
816
- msgstr ""
823
+ msgstr "Du hast noch keine Vorlagen"
817
824
 
818
825
  #: templates/umap/user_templates.html:16
819
826
  msgid "Create a template"
820
- msgstr ""
827
+ msgstr "Erstelle Vorlage"
821
828
 
822
829
  #: templates/umap/user_templates.html:17
823
830
  msgid "No template found."
824
- msgstr ""
831
+ msgstr "Keine Vorlage gefunden"
825
832
 
826
- #: views.py:233
833
+ #: views.py:235
827
834
  msgid "Cannot delete a team with more than one member"
828
835
  msgstr "Teams mit mehr als einem Mitglied können nicht gelöscht werden"
829
836
 
830
- #: views.py:237
837
+ #: views.py:239
831
838
  #, python-format
832
839
  msgid "Team “%(name)s” has been deleted"
833
840
  msgstr "Team “%(name)s” wurde gelöscht"
834
841
 
835
- #: views.py:463
842
+ #: views.py:464
836
843
  msgid "View the map"
837
844
  msgstr "Diese Karte anzeigen"
838
845
 
839
- #: views.py:864
846
+ #: views.py:872
840
847
  msgid "See full screen"
841
848
  msgstr "Vollbildanzeige"
842
849
 
843
- #: views.py:1007
850
+ #: views.py:1015
844
851
  msgid "Map editors updated with success!"
845
852
  msgstr "Bearbeiter erfolgreich geändert"
846
853
 
847
- #: views.py:1043
854
+ #: views.py:1051
848
855
  #, python-format
849
856
  msgid "The uMap edit link for your map: %(map_name)s"
850
857
  msgstr "Der uMap-Bearbeitungslink für Deine Karte: %(map_name)s"
851
858
 
852
- #: views.py:1046
859
+ #: views.py:1054
853
860
  #, python-format
854
861
  msgid "Here is your secret edit link: %(link)s"
855
862
  msgstr "Dies ist der geheime Bearbeitungslink: %(link)s"
856
863
 
857
- #: views.py:1053
864
+ #: views.py:1061
858
865
  #, python-format
859
866
  msgid "Can't send email to %(email)s"
860
867
  msgstr "E-Mail kann nicht gesendet werden an %(email)s"
861
868
 
862
- #: views.py:1056
869
+ #: views.py:1064
863
870
  #, python-format
864
871
  msgid "Email sent to %(email)s"
865
872
  msgstr "Email gesendet an %(email)s"
866
873
 
867
- #: views.py:1067
874
+ #: views.py:1075
868
875
  msgid "Only its owner can delete the map."
869
876
  msgstr "Nur der Ersteller kann die Karte löschen."
870
877
 
871
- #: views.py:1073
878
+ #: views.py:1081
872
879
  msgid "Map successfully deleted."
873
880
  msgstr "Karte erfolgreich gelöscht."
874
881
 
875
- #: views.py:1099
882
+ #: views.py:1107
876
883
  #, python-format
877
884
  msgid ""
878
885
  "Your map has been cloned! If you want to edit this map from another "
879
886
  "computer, please use this link: %(anonymous_url)s"
880
887
  msgstr "Deine Karte wurde kopiert! Wenn du diese Karte von einem anderen Computer aus bearbeiten möchtest, benutze bitte diesen Link: %(anonymous_url)s"
881
888
 
882
- #: views.py:1104
889
+ #: views.py:1112
883
890
  msgid "Congratulations, your map has been cloned!"
884
891
  msgstr "Glückwunsch, deine Karte wurde kopiert!"
885
892
 
886
- #: views.py:1358
893
+ #: views.py:1366
887
894
  msgid "Layer successfully deleted."
888
895
  msgstr "Ebene erfolgreich gelöscht."
889
896
 
890
- #: views.py:1380
897
+ #: views.py:1388
891
898
  msgid "Permissions updated with success!"
892
899
  msgstr "Berechtigungen erfolgreich aktualisiert!"
900
+
901
+ #: views.py:1405
902
+ msgid "Generic"
903
+ msgstr "Allgemein"
Binary file
@@ -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-08-14 15:22+0000\n"
16
+ "POT-Creation-Date: 2025-10-14 15:28+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-2025\n"
19
19
  "Language-Team: Greek (http://app.transifex.com/openstreetmap/umap/language/el/)\n"
@@ -414,48 +414,54 @@ msgid "Play with the demo"
414
414
  msgstr "Δοκιμή με την έκδοση επίδειξης"
415
415
 
416
416
  #: templates/umap/components/alerts/alert.html:17
417
- #: templates/umap/components/alerts/alert.html:66
418
- #: templates/umap/components/alerts/alert.html:94
417
+ #: templates/umap/components/alerts/alert.html:69
418
+ #: templates/umap/components/alerts/alert.html:97
419
419
  msgid "Close"
420
420
  msgstr "Κλείσιμο"
421
421
 
422
422
  #: templates/umap/components/alerts/alert.html:32
423
423
  #, python-format
424
424
  msgid ""
425
- "Pro-tip: to easily find back your maps, <a href=\"%(login_url)s\" "
426
- "target=\"_blank\">create an account</a> or <a href=\"%(login_url)s\" "
427
- "target=\"_blank\">log in</a>."
428
- msgstr "Επισήμανση: για να βρίσκετε εύκολα τους χάρτες σας, <a href=\"%(login_url)s\" target=\"_blank\">δημιουργήστε λογαριασμό</a> ή <a href=\"%(login_url)s\" target=\"_blank\">συνδεθείτε</a>."
425
+ "Oops, I didn't mean it, I want to <a href=\"%(login_url)s\" "
426
+ "class=\"login\">create an account</a> or <a href=\"%(login_url)s\" "
427
+ "class=\"login\">log in</a> (no worry, we'll attach the map to your account)."
428
+ msgstr ""
429
429
 
430
- #: templates/umap/components/alerts/alert.html:37
430
+ #: templates/umap/components/alerts/alert.html:35
431
+ msgid ""
432
+ "Yes, I want to continue editing anonymously, I will save the secret edit "
433
+ "link to be able to edit this map later or on another device"
434
+ msgstr ""
435
+
436
+ #: templates/umap/components/alerts/alert.html:39
431
437
  msgid "Here is your secret link to edit the map, please keep it safe:"
432
438
  msgstr "Αυτός είναι ο μυστικός σας σύνδεσμος για να επεξεργαστείτε τον χάρτη, διατηρήστε τον ασφαλή:"
433
439
 
434
- #: templates/umap/components/alerts/alert.html:41
440
+ #: templates/umap/components/alerts/alert.html:43
435
441
  msgid "Copy link"
436
442
  msgstr "Αντιγραφή συνδέσμου"
437
443
 
438
- #: templates/umap/components/alerts/alert.html:48
444
+ #: templates/umap/components/alerts/alert.html:50
439
445
  msgid "Enter your email address to receive the secret link:"
440
446
  msgstr "Καταχωρίστε το email σας για να λάβετε τον μυστικό σύνδεσμο:"
441
447
 
442
- #: templates/umap/components/alerts/alert.html:54
448
+ #: templates/umap/components/alerts/alert.html:56
443
449
  msgid "Email"
444
450
  msgstr "Email"
445
451
 
446
- #: templates/umap/components/alerts/alert.html:57
452
+ #: templates/umap/components/alerts/alert.html:59
447
453
  msgid "Send me the link"
448
454
  msgstr "Στείλε μου τον σύνδεσμο"
449
455
 
450
- #: templates/umap/components/alerts/alert.html:81
456
+ #: templates/umap/components/alerts/alert.html:84
451
457
  msgid "See their edits in another tab"
452
458
  msgstr "Δείτε τις επεξεργασίες τους σε άλλη καρτέλα"
453
459
 
454
- #: templates/umap/components/alerts/alert.html:84
460
+ #: templates/umap/components/alerts/alert.html:87
455
461
  msgid "Keep your changes and loose theirs"
456
462
  msgstr "Διατηρήστε τις αλλαγές σας και αγνοήστε τις δικές τους"
457
463
 
458
- #: templates/umap/components/alerts/alert.html:87
464
+ #: templates/umap/components/alerts/alert.html:90
459
465
  msgid "Keep their changes and loose yours"
460
466
  msgstr "Κρατήστε τις αλλαγές τους και αγνοήστε τις δικές σας"
461
467
 
@@ -723,7 +729,7 @@ msgstr "Χάρτες που δημιουργήθηκαν τελευταίοι"
723
729
  msgid "Search maps"
724
730
  msgstr "Αναζήτηση χαρτών"
725
731
 
726
- #: templates/umap/search_bar.html:14
732
+ #: templates/umap/search_bar.html:14 templates/umap/user_map_table.html:15
727
733
  msgid "Any category"
728
734
  msgstr "Οποιαδήποτε κατηγορία"
729
735
 
@@ -829,61 +835,61 @@ msgstr "Η ομάδα «%(name)s» έχει διαγραφεί."
829
835
  msgid "View the map"
830
836
  msgstr "Προβολή του χάρτη"
831
837
 
832
- #: views.py:867
838
+ #: views.py:872
833
839
  msgid "See full screen"
834
840
  msgstr "Προβολή πλήρους οθόνης"
835
841
 
836
- #: views.py:1010
842
+ #: views.py:1015
837
843
  msgid "Map editors updated with success!"
838
844
  msgstr "Η ενημέρωση των συντακτών χάρτη ήταν επιτυχής!"
839
845
 
840
- #: views.py:1046
846
+ #: views.py:1051
841
847
  #, python-format
842
848
  msgid "The uMap edit link for your map: %(map_name)s"
843
849
  msgstr "Ο uMap σύνδεσμος επεξεργασίας του χάρτη σας: %(map_name)s"
844
850
 
845
- #: views.py:1049
851
+ #: views.py:1054
846
852
  #, python-format
847
853
  msgid "Here is your secret edit link: %(link)s"
848
854
  msgstr "Εδώ είναι ο μυστικός σύνδεσμος επεξεργασίας: %(link)s"
849
855
 
850
- #: views.py:1056
856
+ #: views.py:1061
851
857
  #, python-format
852
858
  msgid "Can't send email to %(email)s"
853
859
  msgstr "Αδυναμία αποστολής email στο %(email)s"
854
860
 
855
- #: views.py:1059
861
+ #: views.py:1064
856
862
  #, python-format
857
863
  msgid "Email sent to %(email)s"
858
864
  msgstr "Μήνυμα email στάλθηκε στο %(email)s"
859
865
 
860
- #: views.py:1070
866
+ #: views.py:1075
861
867
  msgid "Only its owner can delete the map."
862
868
  msgstr "Μονό ο ιδιοκτήτης μπορεί να διαγράψει αυτό τον χάρτη."
863
869
 
864
- #: views.py:1076
870
+ #: views.py:1081
865
871
  msgid "Map successfully deleted."
866
872
  msgstr "Ο χάρτης διαγράφηκε με επιτυχία."
867
873
 
868
- #: views.py:1102
874
+ #: views.py:1107
869
875
  #, python-format
870
876
  msgid ""
871
877
  "Your map has been cloned! If you want to edit this map from another "
872
878
  "computer, please use this link: %(anonymous_url)s"
873
879
  msgstr "Ο χάρτης κλωνοποιήθηκε! Αν θέλετε να τον επεξεργαστείτε από κάποιον άλλο υπολογιστή, παρακαλώ χρησιμοποιήστε αυτόν τον σύνδεσμο: %(anonymous_url)s"
874
880
 
875
- #: views.py:1107
881
+ #: views.py:1112
876
882
  msgid "Congratulations, your map has been cloned!"
877
883
  msgstr "Συγχαρητήρια ο χάρτης σας κλωνοποιήθηκε!"
878
884
 
879
- #: views.py:1361
885
+ #: views.py:1366
880
886
  msgid "Layer successfully deleted."
881
887
  msgstr "Το επίπεδο διαγράφηκε με επιτυχία."
882
888
 
883
- #: views.py:1383
889
+ #: views.py:1388
884
890
  msgid "Permissions updated with success!"
885
891
  msgstr "Τα δικαιώματα ενημερώθηκαν με επιτυχία!"
886
892
 
887
- #: views.py:1400
893
+ #: views.py:1405
888
894
  msgid "Generic"
889
895
  msgstr "Γενικό"