umap-project 3.4.0b3__py3-none-any.whl → 3.6.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 (222) hide show
  1. umap/__init__.py +1 -1
  2. umap/locale/br/LC_MESSAGES/django.mo +0 -0
  3. umap/locale/br/LC_MESSAGES/django.po +71 -57
  4. umap/locale/da/LC_MESSAGES/django.mo +0 -0
  5. umap/locale/da/LC_MESSAGES/django.po +18 -14
  6. umap/locale/de/LC_MESSAGES/django.mo +0 -0
  7. umap/locale/de/LC_MESSAGES/django.po +20 -16
  8. umap/locale/en/LC_MESSAGES/django.po +18 -14
  9. umap/locale/es/LC_MESSAGES/django.mo +0 -0
  10. umap/locale/es/LC_MESSAGES/django.po +20 -16
  11. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  12. umap/locale/fr/LC_MESSAGES/django.po +18 -14
  13. umap/locale/hu/LC_MESSAGES/django.mo +0 -0
  14. umap/locale/hu/LC_MESSAGES/django.po +20 -16
  15. umap/locale/pl/LC_MESSAGES/django.mo +0 -0
  16. umap/locale/pl/LC_MESSAGES/django.po +101 -95
  17. umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
  18. umap/locale/zh_TW/LC_MESSAGES/django.po +20 -16
  19. umap/management/commands/clean_tilelayer.py +0 -1
  20. umap/management/commands/search_maps.py +95 -0
  21. umap/settings/__init__.py +9 -1
  22. umap/settings/base.py +7 -6
  23. umap/static/umap/content.css +0 -3
  24. umap/static/umap/css/bar.css +9 -6
  25. umap/static/umap/css/form.css +25 -9
  26. umap/static/umap/css/icon.css +8 -0
  27. umap/static/umap/css/popup.css +1 -0
  28. umap/static/umap/img/16-white.svg +5 -2
  29. umap/static/umap/img/16.svg +1 -1
  30. umap/static/umap/img/source/16-white.svg +7 -4
  31. umap/static/umap/img/source/16.svg +1 -1
  32. umap/static/umap/js/components/copiable.js +47 -0
  33. umap/static/umap/js/modules/autocomplete.js +32 -67
  34. umap/static/umap/js/modules/browser.js +31 -14
  35. umap/static/umap/js/modules/data/features.js +34 -36
  36. umap/static/umap/js/modules/data/fields.js +199 -23
  37. umap/static/umap/js/modules/data/layer.js +85 -96
  38. umap/static/umap/js/modules/domutils.js +25 -1
  39. umap/static/umap/js/modules/filters.js +24 -50
  40. umap/static/umap/js/modules/form/builder.js +17 -16
  41. umap/static/umap/js/modules/form/fields.js +20 -20
  42. umap/static/umap/js/modules/formatter.js +9 -1
  43. umap/static/umap/js/modules/help.js +12 -13
  44. umap/static/umap/js/modules/importer.js +17 -26
  45. umap/static/umap/js/modules/importers/banfr.js +0 -1
  46. umap/static/umap/js/modules/importers/cadastrefr.js +19 -19
  47. umap/static/umap/js/modules/importers/communesfr.js +7 -8
  48. umap/static/umap/js/modules/importers/datasets.js +14 -14
  49. umap/static/umap/js/modules/importers/geodatamine.js +20 -22
  50. umap/static/umap/js/modules/importers/opendata.js +10 -0
  51. umap/static/umap/js/modules/importers/overpass.js +19 -18
  52. umap/static/umap/js/modules/managers.js +1 -1
  53. umap/static/umap/js/modules/permissions.js +15 -5
  54. umap/static/umap/js/modules/rendering/controls.js +203 -10
  55. umap/static/umap/js/modules/rendering/icon.js +5 -9
  56. umap/static/umap/js/modules/rendering/layers/base.js +1 -1
  57. umap/static/umap/js/modules/rendering/layers/classified.js +16 -11
  58. umap/static/umap/js/modules/rendering/layers/heat.js +1 -0
  59. umap/static/umap/js/modules/rendering/map.js +67 -57
  60. umap/static/umap/js/modules/rendering/popup.js +6 -3
  61. umap/static/umap/js/modules/rendering/template.js +40 -40
  62. umap/static/umap/js/modules/rendering/ui.js +1 -2
  63. umap/static/umap/js/modules/rules.js +34 -41
  64. umap/static/umap/js/modules/schema.js +0 -7
  65. umap/static/umap/js/modules/share.js +36 -69
  66. umap/static/umap/js/modules/slideshow.js +3 -3
  67. umap/static/umap/js/modules/tableeditor.js +0 -1
  68. umap/static/umap/js/modules/ui/bar.js +53 -33
  69. umap/static/umap/js/modules/ui/hash.js +36 -0
  70. umap/static/umap/js/modules/ui/loader.js +26 -0
  71. umap/static/umap/js/modules/ui/panel.js +33 -21
  72. umap/static/umap/js/modules/ui/tooltip.js +1 -1
  73. umap/static/umap/js/modules/umap.js +81 -80
  74. umap/static/umap/js/modules/utils.js +13 -3
  75. umap/static/umap/js/umap.controls.js +16 -179
  76. umap/static/umap/locale/am_ET.js +7 -8
  77. umap/static/umap/locale/am_ET.json +7 -8
  78. umap/static/umap/locale/ar.js +7 -8
  79. umap/static/umap/locale/ar.json +7 -8
  80. umap/static/umap/locale/ast.js +7 -8
  81. umap/static/umap/locale/ast.json +7 -8
  82. umap/static/umap/locale/bg.js +7 -8
  83. umap/static/umap/locale/bg.json +7 -8
  84. umap/static/umap/locale/br.js +44 -36
  85. umap/static/umap/locale/br.json +44 -36
  86. umap/static/umap/locale/ca.js +7 -8
  87. umap/static/umap/locale/ca.json +7 -8
  88. umap/static/umap/locale/cs_CZ.js +7 -8
  89. umap/static/umap/locale/cs_CZ.json +7 -8
  90. umap/static/umap/locale/da.js +8 -9
  91. umap/static/umap/locale/da.json +8 -9
  92. umap/static/umap/locale/de.js +62 -63
  93. umap/static/umap/locale/de.json +62 -63
  94. umap/static/umap/locale/el.js +7 -8
  95. umap/static/umap/locale/el.json +7 -8
  96. umap/static/umap/locale/en.js +7 -8
  97. umap/static/umap/locale/en.json +7 -8
  98. umap/static/umap/locale/en_US.json +7 -8
  99. umap/static/umap/locale/es.js +19 -20
  100. umap/static/umap/locale/es.json +19 -20
  101. umap/static/umap/locale/et.js +7 -8
  102. umap/static/umap/locale/et.json +7 -8
  103. umap/static/umap/locale/eu.js +23 -24
  104. umap/static/umap/locale/eu.json +23 -24
  105. umap/static/umap/locale/fa_IR.js +7 -8
  106. umap/static/umap/locale/fa_IR.json +7 -8
  107. umap/static/umap/locale/fi.js +7 -8
  108. umap/static/umap/locale/fi.json +7 -8
  109. umap/static/umap/locale/fr.js +11 -12
  110. umap/static/umap/locale/fr.json +11 -12
  111. umap/static/umap/locale/gl.js +147 -148
  112. umap/static/umap/locale/gl.json +147 -148
  113. umap/static/umap/locale/he.js +7 -8
  114. umap/static/umap/locale/he.json +7 -8
  115. umap/static/umap/locale/hr.js +7 -8
  116. umap/static/umap/locale/hr.json +7 -8
  117. umap/static/umap/locale/hu.js +8 -9
  118. umap/static/umap/locale/hu.json +8 -9
  119. umap/static/umap/locale/id.js +7 -8
  120. umap/static/umap/locale/id.json +7 -8
  121. umap/static/umap/locale/is.js +7 -8
  122. umap/static/umap/locale/is.json +7 -8
  123. umap/static/umap/locale/it.js +7 -8
  124. umap/static/umap/locale/it.json +7 -8
  125. umap/static/umap/locale/ja.js +7 -8
  126. umap/static/umap/locale/ja.json +7 -8
  127. umap/static/umap/locale/ko.js +7 -8
  128. umap/static/umap/locale/ko.json +7 -8
  129. umap/static/umap/locale/lt.js +7 -8
  130. umap/static/umap/locale/lt.json +7 -8
  131. umap/static/umap/locale/ms.js +7 -8
  132. umap/static/umap/locale/ms.json +7 -8
  133. umap/static/umap/locale/nl.js +7 -8
  134. umap/static/umap/locale/nl.json +7 -8
  135. umap/static/umap/locale/no.js +7 -8
  136. umap/static/umap/locale/no.json +7 -8
  137. umap/static/umap/locale/pl.js +53 -54
  138. umap/static/umap/locale/pl.json +53 -54
  139. umap/static/umap/locale/pl_PL.json +7 -8
  140. umap/static/umap/locale/pt.js +7 -8
  141. umap/static/umap/locale/pt.json +7 -8
  142. umap/static/umap/locale/pt_BR.js +7 -8
  143. umap/static/umap/locale/pt_BR.json +7 -8
  144. umap/static/umap/locale/pt_PT.js +7 -8
  145. umap/static/umap/locale/pt_PT.json +7 -8
  146. umap/static/umap/locale/ro.js +7 -8
  147. umap/static/umap/locale/ro.json +7 -8
  148. umap/static/umap/locale/ru.js +7 -8
  149. umap/static/umap/locale/ru.json +7 -8
  150. umap/static/umap/locale/sk_SK.js +7 -8
  151. umap/static/umap/locale/sk_SK.json +7 -8
  152. umap/static/umap/locale/sl.js +7 -8
  153. umap/static/umap/locale/sl.json +7 -8
  154. umap/static/umap/locale/sr.js +7 -8
  155. umap/static/umap/locale/sr.json +7 -8
  156. umap/static/umap/locale/sv.js +7 -8
  157. umap/static/umap/locale/sv.json +7 -8
  158. umap/static/umap/locale/th_TH.js +7 -8
  159. umap/static/umap/locale/th_TH.json +7 -8
  160. umap/static/umap/locale/tr.js +7 -8
  161. umap/static/umap/locale/tr.json +7 -8
  162. umap/static/umap/locale/uk_UA.js +7 -8
  163. umap/static/umap/locale/uk_UA.json +7 -8
  164. umap/static/umap/locale/vi.js +7 -8
  165. umap/static/umap/locale/vi.json +7 -8
  166. umap/static/umap/locale/vi_VN.json +7 -8
  167. umap/static/umap/locale/zh.js +7 -8
  168. umap/static/umap/locale/zh.json +7 -8
  169. umap/static/umap/locale/zh_CN.json +7 -8
  170. umap/static/umap/locale/zh_TW.Big5.json +7 -8
  171. umap/static/umap/locale/zh_TW.js +20 -21
  172. umap/static/umap/locale/zh_TW.json +20 -21
  173. umap/static/umap/map.css +6 -21
  174. umap/static/umap/unittests/utils.js +7 -7
  175. umap/static/umap/vendors/locatecontrol/L.Control.Locate.esm.js +942 -0
  176. umap/static/umap/vendors/photon/leaflet.photon.esm.js +472 -0
  177. umap/sync/app.py +4 -1
  178. umap/templates/umap/content_footer.html +1 -0
  179. umap/templates/umap/css.html +0 -4
  180. umap/templates/umap/js.html +1 -8
  181. umap/templates/umap/team_form.html +2 -1
  182. umap/tests/integration/conftest.py +3 -2
  183. umap/tests/integration/test_anonymous_owned_map.py +1 -1
  184. umap/tests/integration/test_conditional_rules.py +106 -51
  185. umap/tests/integration/test_draw_polygon.py +4 -0
  186. umap/tests/integration/test_draw_polyline.py +11 -0
  187. umap/tests/integration/test_edit_datalayer.py +1 -1
  188. umap/tests/integration/test_edit_map.py +2 -0
  189. umap/tests/integration/test_fields.py +19 -0
  190. umap/tests/integration/test_filters.py +24 -0
  191. umap/tests/integration/test_iframe.py +1 -1
  192. umap/tests/integration/test_import.py +26 -0
  193. umap/tests/integration/test_map.py +3 -3
  194. umap/tests/integration/test_optimistic_merge.py +7 -1
  195. umap/tests/integration/test_owned_map.py +2 -2
  196. umap/tests/integration/test_popup.py +31 -0
  197. umap/tests/integration/test_remote_data.py +5 -5
  198. umap/tests/integration/test_search.py +41 -0
  199. umap/tests/integration/test_share.py +2 -2
  200. umap/tests/integration/test_team.py +1 -1
  201. umap/tests/integration/test_websocket_sync.py +6 -1
  202. umap/tests/test_search_maps_command.py +44 -0
  203. umap/tests/test_utils.py +4 -1
  204. umap/utils.py +10 -3
  205. umap/views.py +17 -4
  206. {umap_project-3.4.0b3.dist-info → umap_project-3.6.0.dist-info}/METADATA +29 -23
  207. {umap_project-3.4.0b3.dist-info → umap_project-3.6.0.dist-info}/RECORD +210 -214
  208. {umap_project-3.4.0b3.dist-info → umap_project-3.6.0.dist-info}/WHEEL +1 -1
  209. umap/static/umap/js/umap.core.js +0 -93
  210. umap/static/umap/vendors/editinosm/Leaflet.EditInOSM.css +0 -46
  211. umap/static/umap/vendors/editinosm/Leaflet.EditInOSM.js +0 -240
  212. umap/static/umap/vendors/editinosm/edit-in-osm.png +0 -0
  213. umap/static/umap/vendors/hash/leaflet-hash.js +0 -162
  214. umap/static/umap/vendors/loading/Control.Loading.css +0 -26
  215. umap/static/umap/vendors/loading/Control.Loading.js +0 -351
  216. umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.css +0 -1
  217. umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.css.map +0 -1
  218. umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js +0 -4
  219. umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js.map +0 -1
  220. umap/static/umap/vendors/photon/leaflet.photon.js +0 -487
  221. {umap_project-3.4.0b3.dist-info → umap_project-3.6.0.dist-info}/entry_points.txt +0 -0
  222. {umap_project-3.4.0b3.dist-info → umap_project-3.6.0.dist-info}/licenses/LICENSE +0 -0
@@ -17,7 +17,7 @@ msgid ""
17
17
  msgstr ""
18
18
  "Project-Id-Version: uMap\n"
19
19
  "Report-Msgid-Bugs-To: \n"
20
- "POT-Creation-Date: 2025-10-14 15:28+0000\n"
20
+ "POT-Creation-Date: 2025-11-24 14:49+0000\n"
21
21
  "PO-Revision-Date: 2013-11-22 14:00+0000\n"
22
22
  "Last-Translator: Ignacio L'Episcopo, 2024-2025\n"
23
23
  "Language-Team: Spanish (http://app.transifex.com/openstreetmap/umap/language/es/)\n"
@@ -51,7 +51,7 @@ msgstr "El uso de “%(name)s” para autenticar está obsoleto y se eliminará
51
51
  msgid "name"
52
52
  msgstr "nombre"
53
53
 
54
- #: models.py:63 models.py:503
54
+ #: models.py:63 models.py:507
55
55
  msgid "description"
56
56
  msgstr "descripción"
57
57
 
@@ -71,23 +71,23 @@ msgstr "Plantilla de URL usando el formato de teselas OSM"
71
71
  msgid "Order of the tilelayers in the edit box"
72
72
  msgstr "Orden de las capas de teselas en el cuadro de edición"
73
73
 
74
- #: models.py:176 models.py:497
74
+ #: models.py:176 models.py:501
75
75
  msgid "Only editable with secret edit link"
76
76
  msgstr "Solo editable con enlace secreto de edición"
77
77
 
78
- #: models.py:177 models.py:498
78
+ #: models.py:177 models.py:502
79
79
  msgid "Everyone can edit"
80
80
  msgstr "Todos pueden editar"
81
81
 
82
- #: models.py:180 models.py:491
82
+ #: models.py:180 models.py:495
83
83
  msgid "Everyone"
84
84
  msgstr "Todos"
85
85
 
86
- #: models.py:181 models.py:190 models.py:492
86
+ #: models.py:181 models.py:190 models.py:496
87
87
  msgid "Editors and team only"
88
88
  msgstr "Solo editores y equipo"
89
89
 
90
- #: models.py:182 models.py:493
90
+ #: models.py:182 models.py:497
91
91
  msgid "Owner only"
92
92
  msgstr "Solo el propietario"
93
93
 
@@ -107,7 +107,7 @@ msgstr "Cualquiera con el enlace"
107
107
  msgid "Blocked"
108
108
  msgstr "Bloqueado"
109
109
 
110
- #: models.py:192 models.py:487
110
+ #: models.py:192 models.py:491
111
111
  msgid "Deleted"
112
112
  msgstr "Eliminado"
113
113
 
@@ -147,15 +147,15 @@ msgstr "editores"
147
147
  msgid "team"
148
148
  msgstr "equipo"
149
149
 
150
- #: models.py:230 models.py:519
150
+ #: models.py:230 models.py:523
151
151
  msgid "edit status"
152
152
  msgstr "estado de edición"
153
153
 
154
- #: models.py:235 models.py:524
154
+ #: models.py:235 models.py:528
155
155
  msgid "share status"
156
156
  msgstr "estado de compartir"
157
157
 
158
- #: models.py:238 models.py:514
158
+ #: models.py:238 models.py:518
159
159
  msgid "settings"
160
160
  msgstr "ajustes"
161
161
 
@@ -171,15 +171,15 @@ msgstr "Este mapa es una plantilla."
171
171
  msgid "Clone of"
172
172
  msgstr "Clon de"
173
173
 
174
- #: models.py:486 models.py:490 models.py:496
174
+ #: models.py:490 models.py:494 models.py:500
175
175
  msgid "Inherit"
176
176
  msgstr "Heredar"
177
177
 
178
- #: models.py:509
178
+ #: models.py:513
179
179
  msgid "display on load"
180
180
  msgstr "mostrar al cargar"
181
181
 
182
- #: models.py:510
182
+ #: models.py:514
183
183
  msgid "Display this layer on load."
184
184
  msgstr "Mostrar esta capa al cargar."
185
185
 
@@ -429,13 +429,13 @@ msgid ""
429
429
  "Oops, I didn't mean it, I want to <a href=\"%(login_url)s\" "
430
430
  "class=\"login\">create an account</a> or <a href=\"%(login_url)s\" "
431
431
  "class=\"login\">log in</a> (no worry, we'll attach the map to your account)."
432
- msgstr ""
432
+ msgstr "Ups, no era mi intención. Quiero <a href=\"%(login_url)s\" class=\"login\">crear una cuenta</a> o <a href=\"%(login_url)s\" class=\"login\">iniciar sesión</a> (no te preocupes, vincularemos el mapa a tu cuenta)."
433
433
 
434
434
  #: templates/umap/components/alerts/alert.html:35
435
435
  msgid ""
436
436
  "Yes, I want to continue editing anonymously, I will save the secret edit "
437
437
  "link to be able to edit this map later or on another device"
438
- msgstr ""
438
+ msgstr "Sí, quiero seguir editando de forma anónima. Guardaré el enlace secreto de edición para poder modificar este mapa más tarde o desde otro dispositivo."
439
439
 
440
440
  #: templates/umap/components/alerts/alert.html:39
441
441
  msgid "Here is your secret link to edit the map, please keep it safe:"
@@ -504,6 +504,10 @@ msgstr "Contacto"
504
504
  msgid "Help"
505
505
  msgstr "Ayuda"
506
506
 
507
+ #: templates/umap/content_footer.html:10
508
+ msgid "Terms of Service"
509
+ msgstr "Términos del servicio"
510
+
507
511
  #: templates/umap/dashboard_menu.html:6
508
512
  #, python-format
509
513
  msgid "My Maps (%(count)s)"
Binary file
@@ -24,7 +24,7 @@ msgid ""
24
24
  msgstr ""
25
25
  "Project-Id-Version: uMap\n"
26
26
  "Report-Msgid-Bugs-To: \n"
27
- "POT-Creation-Date: 2025-10-14 15:28+0000\n"
27
+ "POT-Creation-Date: 2025-11-24 14:49+0000\n"
28
28
  "PO-Revision-Date: 2013-11-22 14:00+0000\n"
29
29
  "Last-Translator: yohanboniface <yohanboniface@free.fr>, 2013-2014,2018-2019,2023-2025\n"
30
30
  "Language-Team: French (http://app.transifex.com/openstreetmap/umap/language/fr/)\n"
@@ -58,7 +58,7 @@ msgstr "L’utilisation de “%(name)s” pour s’authentifier est dépréciée
58
58
  msgid "name"
59
59
  msgstr "nom"
60
60
 
61
- #: models.py:63 models.py:503
61
+ #: models.py:63 models.py:507
62
62
  msgid "description"
63
63
  msgstr "description"
64
64
 
@@ -78,23 +78,23 @@ msgstr "Modèle d'URL au format des tuiles OSM"
78
78
  msgid "Order of the tilelayers in the edit box"
79
79
  msgstr "Ordre des calques de tuiles dans le panneau de modification"
80
80
 
81
- #: models.py:176 models.py:497
81
+ #: models.py:176 models.py:501
82
82
  msgid "Only editable with secret edit link"
83
83
  msgstr "Modifiable seulement avec le lien de modification secret"
84
84
 
85
- #: models.py:177 models.py:498
85
+ #: models.py:177 models.py:502
86
86
  msgid "Everyone can edit"
87
87
  msgstr "Tout le monde peut modifier"
88
88
 
89
- #: models.py:180 models.py:491
89
+ #: models.py:180 models.py:495
90
90
  msgid "Everyone"
91
91
  msgstr "Tout le monde"
92
92
 
93
- #: models.py:181 models.py:190 models.py:492
93
+ #: models.py:181 models.py:190 models.py:496
94
94
  msgid "Editors and team only"
95
95
  msgstr "Éditeurs et équipe seulement"
96
96
 
97
- #: models.py:182 models.py:493
97
+ #: models.py:182 models.py:497
98
98
  msgid "Owner only"
99
99
  msgstr "Propriétaire uniquement"
100
100
 
@@ -114,7 +114,7 @@ msgstr "Quiconque a le lien"
114
114
  msgid "Blocked"
115
115
  msgstr "Bloquée"
116
116
 
117
- #: models.py:192 models.py:487
117
+ #: models.py:192 models.py:491
118
118
  msgid "Deleted"
119
119
  msgstr "Supprimé"
120
120
 
@@ -154,15 +154,15 @@ msgstr "éditeurs"
154
154
  msgid "team"
155
155
  msgstr "équipe"
156
156
 
157
- #: models.py:230 models.py:519
157
+ #: models.py:230 models.py:523
158
158
  msgid "edit status"
159
159
  msgstr "statut de modification"
160
160
 
161
- #: models.py:235 models.py:524
161
+ #: models.py:235 models.py:528
162
162
  msgid "share status"
163
163
  msgstr "qui a accès"
164
164
 
165
- #: models.py:238 models.py:514
165
+ #: models.py:238 models.py:518
166
166
  msgid "settings"
167
167
  msgstr "réglages"
168
168
 
@@ -178,15 +178,15 @@ msgstr "Cette carte est un modèle."
178
178
  msgid "Clone of"
179
179
  msgstr "Clone de"
180
180
 
181
- #: models.py:486 models.py:490 models.py:496
181
+ #: models.py:490 models.py:494 models.py:500
182
182
  msgid "Inherit"
183
183
  msgstr "Par défaut"
184
184
 
185
- #: models.py:509
185
+ #: models.py:513
186
186
  msgid "display on load"
187
187
  msgstr "afficher au chargement."
188
188
 
189
- #: models.py:510
189
+ #: models.py:514
190
190
  msgid "Display this layer on load."
191
191
  msgstr "Afficher ce calque au chargement."
192
192
 
@@ -511,6 +511,10 @@ msgstr "Contact"
511
511
  msgid "Help"
512
512
  msgstr "Aide"
513
513
 
514
+ #: templates/umap/content_footer.html:10
515
+ msgid "Terms of Service"
516
+ msgstr "Conditions d'utilisation"
517
+
514
518
  #: templates/umap/dashboard_menu.html:6
515
519
  #, python-format
516
520
  msgid "My Maps (%(count)s)"
Binary file
@@ -9,7 +9,7 @@ msgid ""
9
9
  msgstr ""
10
10
  "Project-Id-Version: uMap\n"
11
11
  "Report-Msgid-Bugs-To: \n"
12
- "POT-Creation-Date: 2025-10-14 15:28+0000\n"
12
+ "POT-Creation-Date: 2025-11-24 14:49+0000\n"
13
13
  "PO-Revision-Date: 2013-11-22 14:00+0000\n"
14
14
  "Last-Translator: Gábor Babos <gabor.babos@gmail.com>, 2017-2019,2023-2025\n"
15
15
  "Language-Team: Hungarian (http://app.transifex.com/openstreetmap/umap/language/hu/)\n"
@@ -43,7 +43,7 @@ msgstr "A „%(name)s” használata a hitelesítéshez elavult, és hamarosan e
43
43
  msgid "name"
44
44
  msgstr "név"
45
45
 
46
- #: models.py:63 models.py:503
46
+ #: models.py:63 models.py:507
47
47
  msgid "description"
48
48
  msgstr "leírás"
49
49
 
@@ -63,23 +63,23 @@ msgstr "OSM-csempeformátumot használó URL-sablon"
63
63
  msgid "Order of the tilelayers in the edit box"
64
64
  msgstr "Csemperétegek sorrendje a szerkesztődobozban"
65
65
 
66
- #: models.py:176 models.py:497
66
+ #: models.py:176 models.py:501
67
67
  msgid "Only editable with secret edit link"
68
68
  msgstr "Kizárólag titkos szerkesztési linkkel szerkeszthető"
69
69
 
70
- #: models.py:177 models.py:498
70
+ #: models.py:177 models.py:502
71
71
  msgid "Everyone can edit"
72
72
  msgstr "Bárki szerkesztheti"
73
73
 
74
- #: models.py:180 models.py:491
74
+ #: models.py:180 models.py:495
75
75
  msgid "Everyone"
76
76
  msgstr "Mindenki"
77
77
 
78
- #: models.py:181 models.py:190 models.py:492
78
+ #: models.py:181 models.py:190 models.py:496
79
79
  msgid "Editors and team only"
80
80
  msgstr "Csak a szerkesztők és a csoport"
81
81
 
82
- #: models.py:182 models.py:493
82
+ #: models.py:182 models.py:497
83
83
  msgid "Owner only"
84
84
  msgstr "Csak a tulajdonos"
85
85
 
@@ -99,7 +99,7 @@ msgstr "A link birtokában bárki"
99
99
  msgid "Blocked"
100
100
  msgstr "Blokkolva"
101
101
 
102
- #: models.py:192 models.py:487
102
+ #: models.py:192 models.py:491
103
103
  msgid "Deleted"
104
104
  msgstr "Törölve"
105
105
 
@@ -139,15 +139,15 @@ msgstr "szerkesztők"
139
139
  msgid "team"
140
140
  msgstr "csoport"
141
141
 
142
- #: models.py:230 models.py:519
142
+ #: models.py:230 models.py:523
143
143
  msgid "edit status"
144
144
  msgstr "szerkeszthetőség"
145
145
 
146
- #: models.py:235 models.py:524
146
+ #: models.py:235 models.py:528
147
147
  msgid "share status"
148
148
  msgstr "megoszthatóság"
149
149
 
150
- #: models.py:238 models.py:514
150
+ #: models.py:238 models.py:518
151
151
  msgid "settings"
152
152
  msgstr "beállítások"
153
153
 
@@ -163,15 +163,15 @@ msgstr "Ez a térkép egy sablontérkép."
163
163
  msgid "Clone of"
164
164
  msgstr "Másolat erről: "
165
165
 
166
- #: models.py:486 models.py:490 models.py:496
166
+ #: models.py:490 models.py:494 models.py:500
167
167
  msgid "Inherit"
168
168
  msgstr "Öröklés"
169
169
 
170
- #: models.py:509
170
+ #: models.py:513
171
171
  msgid "display on load"
172
172
  msgstr "megjelenítés betöltéskor"
173
173
 
174
- #: models.py:510
174
+ #: models.py:514
175
175
  msgid "Display this layer on load."
176
176
  msgstr "Réteg megjelenítése betöltéskor"
177
177
 
@@ -421,13 +421,13 @@ msgid ""
421
421
  "Oops, I didn't mean it, I want to <a href=\"%(login_url)s\" "
422
422
  "class=\"login\">create an account</a> or <a href=\"%(login_url)s\" "
423
423
  "class=\"login\">log in</a> (no worry, we'll attach the map to your account)."
424
- msgstr ""
424
+ msgstr "Hoppá, véletlen volt! <a href=\"%(login_url)s\" class=\"login\">Fiókot szeretnék létrehozni</a> vagy <a href=\"%(login_url)s\" class=\"login\">be szeretnék jelentkezni</a> (ne aggódjon, a térképet a fiókjához csatoljuk)."
425
425
 
426
426
  #: templates/umap/components/alerts/alert.html:35
427
427
  msgid ""
428
428
  "Yes, I want to continue editing anonymously, I will save the secret edit "
429
429
  "link to be able to edit this map later or on another device"
430
- msgstr ""
430
+ msgstr "Igen, továbbra is névtelenül szeretnék szerkeszteni, elmentem a titkos szerkesztési linket, hogy később vagy egy másik eszközön is szerkeszthessem ezt a térképet."
431
431
 
432
432
  #: templates/umap/components/alerts/alert.html:39
433
433
  msgid "Here is your secret link to edit the map, please keep it safe:"
@@ -496,6 +496,10 @@ msgstr "Kapcsolat:"
496
496
  msgid "Help"
497
497
  msgstr "Súgó"
498
498
 
499
+ #: templates/umap/content_footer.html:10
500
+ msgid "Terms of Service"
501
+ msgstr "Szolgáltatási feltételek"
502
+
499
503
  #: templates/umap/dashboard_menu.html:6
500
504
  #, python-format
501
505
  msgid "My Maps (%(count)s)"
Binary file