umap-project 2.5.0__py3-none-any.whl → 2.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.

Potentially problematic release.


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

Files changed (276) 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 +347 -235
  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 +9 -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 +8 -12
  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 +993 -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/importers/overpass.js +22 -8
  68. umap/static/umap/js/modules/permissions.js +280 -0
  69. umap/static/umap/js/{umap.icon.js → modules/rendering/icon.js} +77 -56
  70. umap/static/umap/js/modules/rendering/layers/base.js +105 -0
  71. umap/static/umap/js/modules/rendering/layers/classified.js +484 -0
  72. umap/static/umap/js/modules/rendering/layers/cluster.js +103 -0
  73. umap/static/umap/js/modules/rendering/layers/heat.js +182 -0
  74. umap/static/umap/js/modules/rendering/popup.js +99 -0
  75. umap/static/umap/js/modules/rendering/template.js +217 -0
  76. umap/static/umap/js/modules/rendering/ui.js +610 -0
  77. umap/static/umap/js/modules/rules.js +16 -3
  78. umap/static/umap/js/modules/schema.js +25 -1
  79. umap/static/umap/js/modules/share.js +66 -45
  80. umap/static/umap/js/modules/sync/updaters.js +9 -10
  81. umap/static/umap/js/modules/tableeditor.js +7 -7
  82. umap/static/umap/js/modules/ui/dialog.js +8 -4
  83. umap/static/umap/js/modules/utils.js +22 -13
  84. umap/static/umap/js/umap.controls.js +80 -146
  85. umap/static/umap/js/umap.core.js +9 -9
  86. umap/static/umap/js/umap.forms.js +41 -17
  87. umap/static/umap/js/umap.js +72 -65
  88. umap/static/umap/locale/am_ET.js +8 -2
  89. umap/static/umap/locale/am_ET.json +8 -2
  90. umap/static/umap/locale/ar.js +8 -2
  91. umap/static/umap/locale/ar.json +8 -2
  92. umap/static/umap/locale/ast.js +8 -2
  93. umap/static/umap/locale/ast.json +8 -2
  94. umap/static/umap/locale/bg.js +8 -2
  95. umap/static/umap/locale/bg.json +8 -2
  96. umap/static/umap/locale/br.js +42 -36
  97. umap/static/umap/locale/br.json +42 -36
  98. umap/static/umap/locale/ca.js +67 -61
  99. umap/static/umap/locale/ca.json +67 -61
  100. umap/static/umap/locale/cs_CZ.js +8 -2
  101. umap/static/umap/locale/cs_CZ.json +8 -2
  102. umap/static/umap/locale/da.js +8 -2
  103. umap/static/umap/locale/da.json +8 -2
  104. umap/static/umap/locale/de.js +143 -137
  105. umap/static/umap/locale/de.json +143 -137
  106. umap/static/umap/locale/el.js +54 -48
  107. umap/static/umap/locale/el.json +54 -48
  108. umap/static/umap/locale/en.js +10 -2
  109. umap/static/umap/locale/en.json +10 -2
  110. umap/static/umap/locale/en_US.json +8 -2
  111. umap/static/umap/locale/es.js +8 -2
  112. umap/static/umap/locale/es.json +8 -2
  113. umap/static/umap/locale/et.js +8 -2
  114. umap/static/umap/locale/et.json +8 -2
  115. umap/static/umap/locale/eu.js +346 -338
  116. umap/static/umap/locale/eu.json +346 -338
  117. umap/static/umap/locale/fa_IR.js +415 -407
  118. umap/static/umap/locale/fa_IR.json +415 -407
  119. umap/static/umap/locale/fi.js +8 -2
  120. umap/static/umap/locale/fi.json +8 -2
  121. umap/static/umap/locale/fr.js +11 -3
  122. umap/static/umap/locale/fr.json +11 -3
  123. umap/static/umap/locale/gl.js +8 -2
  124. umap/static/umap/locale/gl.json +8 -2
  125. umap/static/umap/locale/he.js +8 -2
  126. umap/static/umap/locale/he.json +8 -2
  127. umap/static/umap/locale/hr.js +8 -2
  128. umap/static/umap/locale/hr.json +8 -2
  129. umap/static/umap/locale/hu.js +31 -23
  130. umap/static/umap/locale/hu.json +31 -23
  131. umap/static/umap/locale/id.js +8 -2
  132. umap/static/umap/locale/id.json +8 -2
  133. umap/static/umap/locale/is.js +8 -2
  134. umap/static/umap/locale/is.json +8 -2
  135. umap/static/umap/locale/it.js +8 -2
  136. umap/static/umap/locale/it.json +8 -2
  137. umap/static/umap/locale/ja.js +8 -2
  138. umap/static/umap/locale/ja.json +8 -2
  139. umap/static/umap/locale/ko.js +8 -2
  140. umap/static/umap/locale/ko.json +8 -2
  141. umap/static/umap/locale/lt.js +8 -2
  142. umap/static/umap/locale/lt.json +8 -2
  143. umap/static/umap/locale/ms.js +8 -2
  144. umap/static/umap/locale/ms.json +8 -2
  145. umap/static/umap/locale/nl.js +8 -2
  146. umap/static/umap/locale/nl.json +8 -2
  147. umap/static/umap/locale/no.js +8 -2
  148. umap/static/umap/locale/no.json +8 -2
  149. umap/static/umap/locale/pl.js +54 -48
  150. umap/static/umap/locale/pl.json +54 -48
  151. umap/static/umap/locale/pl_PL.json +8 -2
  152. umap/static/umap/locale/pt.js +24 -18
  153. umap/static/umap/locale/pt.json +24 -18
  154. umap/static/umap/locale/pt_BR.js +8 -2
  155. umap/static/umap/locale/pt_BR.json +8 -2
  156. umap/static/umap/locale/pt_PT.js +214 -208
  157. umap/static/umap/locale/pt_PT.json +214 -208
  158. umap/static/umap/locale/ro.js +8 -2
  159. umap/static/umap/locale/ro.json +8 -2
  160. umap/static/umap/locale/ru.js +8 -2
  161. umap/static/umap/locale/ru.json +8 -2
  162. umap/static/umap/locale/sk_SK.js +8 -2
  163. umap/static/umap/locale/sk_SK.json +8 -2
  164. umap/static/umap/locale/sl.js +8 -2
  165. umap/static/umap/locale/sl.json +8 -2
  166. umap/static/umap/locale/sr.js +8 -2
  167. umap/static/umap/locale/sr.json +8 -2
  168. umap/static/umap/locale/sv.js +8 -2
  169. umap/static/umap/locale/sv.json +8 -2
  170. umap/static/umap/locale/th_TH.js +33 -27
  171. umap/static/umap/locale/th_TH.json +33 -27
  172. umap/static/umap/locale/tr.js +8 -2
  173. umap/static/umap/locale/tr.json +8 -2
  174. umap/static/umap/locale/uk_UA.js +8 -2
  175. umap/static/umap/locale/uk_UA.json +8 -2
  176. umap/static/umap/locale/vi.js +8 -2
  177. umap/static/umap/locale/vi.json +8 -2
  178. umap/static/umap/locale/vi_VN.json +8 -2
  179. umap/static/umap/locale/zh.js +8 -2
  180. umap/static/umap/locale/zh.json +8 -2
  181. umap/static/umap/locale/zh_CN.json +8 -2
  182. umap/static/umap/locale/zh_TW.Big5.json +8 -2
  183. umap/static/umap/locale/zh_TW.js +102 -96
  184. umap/static/umap/locale/zh_TW.json +102 -96
  185. umap/static/umap/map.css +111 -108
  186. umap/static/umap/nav.css +19 -10
  187. umap/static/umap/unittests/utils.js +230 -107
  188. umap/static/umap/vars.css +1 -0
  189. umap/static/umap/vendors/csv2geojson/csv2geojson.js +62 -40
  190. umap/static/umap/vendors/editable/Leaflet.Editable.js +2079 -1937
  191. umap/storage.py +4 -3
  192. umap/templates/404.html +5 -1
  193. umap/templates/500.html +3 -1
  194. umap/templates/auth/user_detail.html +8 -2
  195. umap/templates/auth/user_form.html +19 -10
  196. umap/templates/auth/user_stars.html +8 -2
  197. umap/templates/base.html +1 -0
  198. umap/templates/registration/login.html +18 -3
  199. umap/templates/umap/about.html +1 -0
  200. umap/templates/umap/about_summary.html +22 -7
  201. umap/templates/umap/components/alerts/alert.html +42 -21
  202. umap/templates/umap/content.html +2 -0
  203. umap/templates/umap/content_footer.html +7 -3
  204. umap/templates/umap/css.html +1 -0
  205. umap/templates/umap/dashboard_menu.html +15 -0
  206. umap/templates/umap/home.html +14 -4
  207. umap/templates/umap/js.html +4 -9
  208. umap/templates/umap/login_popup_end.html +10 -4
  209. umap/templates/umap/map_detail.html +8 -2
  210. umap/templates/umap/map_fragment.html +3 -1
  211. umap/templates/umap/map_init.html +2 -1
  212. umap/templates/umap/map_list.html +6 -3
  213. umap/templates/umap/map_table.html +36 -12
  214. umap/templates/umap/messages.html +0 -1
  215. umap/templates/umap/navigation.html +2 -1
  216. umap/templates/umap/password_change.html +5 -1
  217. umap/templates/umap/password_change_done.html +8 -2
  218. umap/templates/umap/search.html +8 -2
  219. umap/templates/umap/search_bar.html +1 -0
  220. umap/templates/umap/team_confirm_delete.html +19 -0
  221. umap/templates/umap/team_detail.html +27 -0
  222. umap/templates/umap/team_form.html +60 -0
  223. umap/templates/umap/user_dashboard.html +7 -9
  224. umap/templates/umap/user_teams.html +51 -0
  225. umap/tests/base.py +8 -1
  226. umap/tests/conftest.py +6 -0
  227. umap/tests/fixtures/test_circles_layer.geojson +219 -0
  228. umap/tests/fixtures/test_upload_georss.xml +20 -0
  229. umap/tests/integration/conftest.py +18 -4
  230. umap/tests/integration/helpers.py +12 -0
  231. umap/tests/integration/test_anonymous_owned_map.py +23 -0
  232. umap/tests/integration/test_basics.py +29 -0
  233. umap/tests/integration/test_browser.py +20 -0
  234. umap/tests/integration/test_caption.py +20 -0
  235. umap/tests/integration/test_circles_layer.py +69 -0
  236. umap/tests/integration/test_conditional_rules.py +102 -17
  237. umap/tests/integration/test_draw_polygon.py +138 -13
  238. umap/tests/integration/test_draw_polyline.py +8 -18
  239. umap/tests/integration/test_edit_datalayer.py +3 -3
  240. umap/tests/integration/test_import.py +124 -5
  241. umap/tests/integration/test_owned_map.py +21 -13
  242. umap/tests/integration/test_querystring.py +7 -0
  243. umap/tests/integration/test_team.py +47 -0
  244. umap/tests/integration/test_tilelayer.py +19 -2
  245. umap/tests/integration/test_view_marker.py +28 -1
  246. umap/tests/integration/test_websocket_sync.py +5 -5
  247. umap/tests/test_datalayer.py +32 -7
  248. umap/tests/test_datalayer_views.py +1 -1
  249. umap/tests/test_map.py +30 -4
  250. umap/tests/test_map_views.py +2 -2
  251. umap/tests/test_statics.py +40 -0
  252. umap/tests/test_team_views.py +131 -0
  253. umap/tests/test_views.py +15 -1
  254. umap/urls.py +23 -13
  255. umap/views.py +116 -10
  256. {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/METADATA +14 -14
  257. {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/RECORD +260 -253
  258. umap/static/umap/js/umap.datalayer.permissions.js +0 -70
  259. umap/static/umap/js/umap.features.js +0 -1290
  260. umap/static/umap/js/umap.layer.js +0 -1837
  261. umap/static/umap/js/umap.permissions.js +0 -208
  262. umap/static/umap/js/umap.popup.js +0 -341
  263. umap/static/umap/test/TableEditor.js +0 -104
  264. umap/static/umap/vendors/leaflet/leaflet-src.js +0 -14512
  265. umap/static/umap/vendors/leaflet/leaflet-src.js.map +0 -1
  266. umap/static/umap/vendors/leaflet/leaflet.js +0 -6
  267. umap/static/umap/vendors/leaflet/leaflet.js.map +0 -1
  268. umap/static/umap/vendors/markercluster/WhereAreTheJavascriptFiles.txt +0 -5
  269. umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js +0 -2718
  270. umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js.map +0 -1
  271. umap/static/umap/vendors/toolbar/leaflet.toolbar-src.css +0 -117
  272. umap/static/umap/vendors/toolbar/leaflet.toolbar-src.js +0 -365
  273. umap/tests/integration/test_statics.py +0 -47
  274. {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/WHEEL +0 -0
  275. {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/entry_points.txt +0 -0
  276. {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/licenses/LICENSE +0 -0
@@ -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: 2024-06-26 20:59+0000\n"
12
+ "POT-Creation-Date: 2024-09-04 14:02+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-2024\n"
15
15
  "Language-Team: Hungarian (http://app.transifex.com/openstreetmap/umap/language/hu/)\n"
@@ -27,7 +27,7 @@ msgstr "Kizárólag titkos szerkesztési linkkel szerkeszthető"
27
27
  msgid "Everyone can edit"
28
28
  msgstr "Bárki szerkesztheti"
29
29
 
30
- #: forms.py:69 models.py:389
30
+ #: forms.py:69 models.py:423
31
31
  msgid "Inherit"
32
32
  msgstr "Öröklés"
33
33
 
@@ -35,242 +35,238 @@ msgstr "Öröklés"
35
35
  msgid "Site is readonly for maintenance"
36
36
  msgstr "Karbantartás miatt a webhely csak olvasható"
37
37
 
38
- #: models.py:53
38
+ #: models.py:54 models.py:73
39
39
  msgid "name"
40
40
  msgstr "név"
41
41
 
42
- #: models.py:84
42
+ #: models.py:56 models.py:433
43
+ msgid "description"
44
+ msgstr "leírás"
45
+
46
+ #: models.py:104
43
47
  msgid "details"
44
48
  msgstr "részletek"
45
49
 
46
- #: models.py:85
50
+ #: models.py:105
47
51
  msgid "Link to a page where the licence is detailed."
48
52
  msgstr "Link egy részletes licencinformációkat tartalmazó lapra."
49
53
 
50
- #: models.py:95
54
+ #: models.py:115
51
55
  msgid "URL template using OSM tile format"
52
56
  msgstr "OSM-csempeformátumot használó URL-sablon"
53
57
 
54
- #: models.py:101
58
+ #: models.py:121
55
59
  msgid "Order of the tilelayers in the edit box"
56
60
  msgstr "Csemperétegek sorrendje a szerkesztődobozban"
57
61
 
58
- #: models.py:147 models.py:390
62
+ #: models.py:167 models.py:424
59
63
  msgid "Everyone"
60
64
  msgstr "Mindenki"
61
65
 
62
- #: models.py:148 models.py:154 models.py:391
63
- msgid "Editors only"
64
- msgstr "Csak a szerkesztők"
66
+ #: models.py:168 models.py:174 models.py:425
67
+ msgid "Editors and team only"
68
+ msgstr "Csak a szerkesztők és a csoport"
65
69
 
66
- #: models.py:149 models.py:392
70
+ #: models.py:169 models.py:426
67
71
  msgid "Owner only"
68
72
  msgstr "Csak a tulajdonos"
69
73
 
70
- #: models.py:152
74
+ #: models.py:172
71
75
  msgid "Everyone (public)"
72
76
  msgstr "Mindenki (nyilvános)"
73
77
 
74
- #: models.py:153
78
+ #: models.py:173
75
79
  msgid "Anyone with link"
76
80
  msgstr "A link birtokában bárki"
77
81
 
78
- #: models.py:155
82
+ #: models.py:175
79
83
  msgid "Blocked"
80
84
  msgstr "Blokkolva"
81
85
 
82
- #: models.py:158
86
+ #: models.py:178
83
87
  msgid "center"
84
88
  msgstr "középpont"
85
89
 
86
- #: models.py:159
90
+ #: models.py:179
87
91
  msgid "zoom"
88
92
  msgstr "nagyítás"
89
93
 
90
- #: models.py:161
94
+ #: models.py:181
91
95
  msgid "locate"
92
96
  msgstr "helymeghatározás"
93
97
 
94
- #: models.py:161
98
+ #: models.py:181
95
99
  msgid "Locate user on load?"
96
100
  msgstr "Bekérje a felhasználó pozícióját betöltéskor?"
97
101
 
98
- #: models.py:165
102
+ #: models.py:185
99
103
  msgid "Choose the map licence."
100
104
  msgstr "Térképlicenc kiválasztása"
101
105
 
102
- #: models.py:166
106
+ #: models.py:186
103
107
  msgid "licence"
104
108
  msgstr "licenc"
105
109
 
106
- #: models.py:177
110
+ #: models.py:197
107
111
  msgid "owner"
108
112
  msgstr "tulajdonos"
109
113
 
110
- #: models.py:181
114
+ #: models.py:201
111
115
  msgid "editors"
112
116
  msgstr "szerkesztők"
113
117
 
114
- #: models.py:186 models.py:413
118
+ #: models.py:207
119
+ msgid "team"
120
+ msgstr "csoport"
121
+
122
+ #: models.py:213 models.py:447
115
123
  msgid "edit status"
116
124
  msgstr "szerkeszthetőség"
117
125
 
118
- #: models.py:191
126
+ #: models.py:218
119
127
  msgid "share status"
120
128
  msgstr "megoszthatóság"
121
129
 
122
- #: models.py:194 models.py:408
130
+ #: models.py:221 models.py:442
123
131
  msgid "settings"
124
132
  msgstr "beállítások"
125
133
 
126
- #: models.py:330
134
+ #: models.py:364
127
135
  msgid "Clone of"
128
136
  msgstr "Másolat erről: "
129
137
 
130
- #: models.py:399
131
- msgid "description"
132
- msgstr "leírás"
133
-
134
- #: models.py:403
138
+ #: models.py:437
135
139
  msgid "display on load"
136
140
  msgstr "megjelenítés betöltéskor"
137
141
 
138
- #: models.py:404
142
+ #: models.py:438
139
143
  msgid "Display this layer on load."
140
144
  msgstr "Réteg megjelenítése betöltéskor"
141
145
 
142
- #: templates/404.html:6
146
+ #: templates/404.html:8
143
147
  msgid "Take me to the home page"
144
148
  msgstr "Vissza a kezdőlapra"
145
149
 
146
- #: templates/auth/user_detail.html:5
150
+ #: templates/auth/user_detail.html:8
147
151
  #, python-format
148
152
  msgid "Browse %(current_user)s's maps"
149
153
  msgstr "%(current_user)s térképeinek böngészése"
150
154
 
151
- #: templates/auth/user_detail.html:12
155
+ #: templates/auth/user_detail.html:17
152
156
  #, python-format
153
157
  msgid "%(current_user)s has no maps."
154
158
  msgstr "%(current_user)s felhasználónak nincs térképe."
155
159
 
156
- #: templates/auth/user_form.html:6
157
- msgid "My Maps"
158
- msgstr "Térképeim"
159
-
160
- #: templates/auth/user_form.html:7
161
- msgid "My Profile"
162
- msgstr "Profil"
163
-
164
- #: templates/auth/user_form.html:20
160
+ #: templates/auth/user_form.html:21 templates/umap/team_form.html:21
165
161
  msgid "Save"
166
162
  msgstr "Mentés"
167
163
 
168
- #: templates/auth/user_form.html:25
164
+ #: templates/auth/user_form.html:27
169
165
  msgid "Your current providers"
170
166
  msgstr "Jelenlegi szolgáltatói"
171
167
 
172
- #: templates/auth/user_form.html:31
168
+ #: templates/auth/user_form.html:39
173
169
  msgid "Connect to another provider"
174
170
  msgstr "Újabb szolgáltató csatlakoztatása"
175
171
 
176
- #: templates/auth/user_form.html:33
172
+ #: templates/auth/user_form.html:42
177
173
  msgid ""
178
174
  "It's a good habit to connect your account to more than one provider, in case"
179
175
  " one provider becomes unavailable, temporarily or even permanently."
180
176
  msgstr "Jó szokás, ha fiókját több szolgáltatóhoz is hozzáköti, ha esetleg az egyik szolgáltató átmenetileg vagy akár véglegesen elérhetetlenné válna."
181
177
 
182
- #: templates/auth/user_stars.html:5
178
+ #: templates/auth/user_stars.html:8
183
179
  #, python-format
184
180
  msgid "Browse %(current_user)s's starred maps"
185
181
  msgstr "%(current_user)s megcsillagozott térképeinek böngészése"
186
182
 
187
- #: templates/auth/user_stars.html:12
183
+ #: templates/auth/user_stars.html:17
188
184
  #, python-format
189
185
  msgid "%(current_user)s has no starred maps yet."
190
186
  msgstr "%(current_user)s felhasználónak még nincs megcsillagozott térképe."
191
187
 
192
- #: templates/base.html:12
188
+ #: templates/base.html:13
193
189
  msgid ""
194
190
  "uMap lets you create maps with OpenStreetMap layers in a minute and embed "
195
191
  "them in your site."
196
192
  msgstr "A uMap segítségével percek alatt létrehozhat OpenStreetMap-alapú térképrétegeket, amelyeket be is ágyazhat a weboldalába."
197
193
 
198
- #: templates/registration/login.html:16
194
+ #: templates/registration/login.html:6 templates/registration/login.html:45
195
+ msgid "Login"
196
+ msgstr "Belépés"
197
+
198
+ #: templates/registration/login.html:24
199
199
  msgid "Please log in with your account"
200
200
  msgstr "Jelentkezzék be a fiókjával"
201
201
 
202
- #: templates/registration/login.html:28
202
+ #: templates/registration/login.html:41
203
203
  msgid "Username"
204
204
  msgstr "Felhasználónév"
205
205
 
206
- #: templates/registration/login.html:31
206
+ #: templates/registration/login.html:44
207
207
  msgid "Password"
208
208
  msgstr "Jelszó"
209
209
 
210
- #: templates/registration/login.html:32
211
- msgid "Login"
212
- msgstr "Belépés"
213
-
214
- #: templates/registration/login.html:37
210
+ #: templates/registration/login.html:51
215
211
  msgid "Please choose a provider"
216
212
  msgstr "Válasszon egy szolgáltatót"
217
213
 
218
- #: templates/umap/about_summary.html:11
214
+ #: templates/umap/about_summary.html:12
219
215
  #, python-format
220
216
  msgid ""
221
217
  "uMap lets you create maps with <a href=\"%(osm_url)s\" />OpenStreetMap</a> "
222
218
  "layers in a minute and embed them in your site."
223
219
  msgstr "A uMap segítségével percek alatt létrehozhat <a href=\"%(osm_url)s\" />OpenStreetMap</a>-alapú térképrétegeket, amelyeket be is ágyazhat a weboldalába."
224
220
 
225
- #: templates/umap/about_summary.html:21
221
+ #: templates/umap/about_summary.html:23
226
222
  msgid "Choose the layers of your map"
227
223
  msgstr "Válassza ki a térképe rétegeit"
228
224
 
229
- #: templates/umap/about_summary.html:22
225
+ #: templates/umap/about_summary.html:26
230
226
  msgid "Add POIs: markers, lines, polygons..."
231
227
  msgstr "Adjon hozzá érdekes helyeket (POI-kat): pontokat, vonalakat, sokszögeket…"
232
228
 
233
- #: templates/umap/about_summary.html:23
229
+ #: templates/umap/about_summary.html:29
234
230
  msgid "Manage POIs colours and icons"
235
231
  msgstr "Állítsa be a POI-k színét és ikonját"
236
232
 
237
- #: templates/umap/about_summary.html:24
233
+ #: templates/umap/about_summary.html:32
238
234
  msgid "Manage map options: display a minimap, locate user on load…"
239
235
  msgstr "Szabja testre a térképét: helyezzen el egy kis áttekintő térképet, betöltésnél határozza meg a felhasználó pozícióját…"
240
236
 
241
- #: templates/umap/about_summary.html:25
237
+ #: templates/umap/about_summary.html:35
242
238
  msgid "Batch import geostructured data (geojson, gpx, kml, osm...)"
243
239
  msgstr "Importáljon csoportosan geoinformatikai adatfájlokat (geojson, gpx, kml, osm…)"
244
240
 
245
- #: templates/umap/about_summary.html:26
241
+ #: templates/umap/about_summary.html:38
246
242
  msgid "Choose the license for your data"
247
243
  msgstr "Válassza ki az adatai felhasználási licencét"
248
244
 
249
- #: templates/umap/about_summary.html:27
245
+ #: templates/umap/about_summary.html:41
250
246
  msgid "Embed and share your map"
251
247
  msgstr "Ágyazza be és ossza meg a térképét"
252
248
 
253
- #: templates/umap/about_summary.html:37
249
+ #: templates/umap/about_summary.html:52
254
250
  #, python-format
255
251
  msgid "And it's <a href=\"%(repo_url)s\">open source</a>!"
256
252
  msgstr "És mindezt <a href=\"%(repo_url)s\">nyílt forráskóddal</a>!"
257
253
 
258
- #: templates/umap/about_summary.html:48 templates/umap/navigation.html:38
259
- #: templates/umap/user_dashboard.html:42
254
+ #: templates/umap/about_summary.html:63 templates/umap/navigation.html:39
255
+ #: templates/umap/user_dashboard.html:40
260
256
  msgid "Create a map"
261
257
  msgstr "Térkép készítése"
262
258
 
263
- #: templates/umap/about_summary.html:51
259
+ #: templates/umap/about_summary.html:66
264
260
  msgid "Play with the demo"
265
261
  msgstr "Játék a bemutatóval"
266
262
 
267
- #: templates/umap/components/alerts/alert.html:14
268
- #: templates/umap/components/alerts/alert.html:49
269
- #: templates/umap/components/alerts/alert.html:71
263
+ #: templates/umap/components/alerts/alert.html:15
264
+ #: templates/umap/components/alerts/alert.html:64
265
+ #: templates/umap/components/alerts/alert.html:92
270
266
  msgid "Close"
271
267
  msgstr "Bezárás"
272
268
 
273
- #: templates/umap/components/alerts/alert.html:27
269
+ #: templates/umap/components/alerts/alert.html:30
274
270
  #, python-format
275
271
  msgid ""
276
272
  "Pro-tip: to easily find back your maps, <a href=\"%(login_url)s\" "
@@ -278,45 +274,45 @@ msgid ""
278
274
  "target=\"_blank\">log in</a>."
279
275
  msgstr "Haladó tipp: ha térképét később szeretné könnyedén megtalálni, <a href=\"%(login_url)s\" target=\"_blank\">hozzon létre egy fiókot</a> vagy <a href=\"%(login_url)s\" target=\"_blank\">jelentkezzék be</a>."
280
276
 
281
- #: templates/umap/components/alerts/alert.html:30
277
+ #: templates/umap/components/alerts/alert.html:35
282
278
  msgid "Here is your secret link to edit the map, please keep it safe:"
283
279
  msgstr "Itt van a térkép szerkesztéséhez vezető titkos link, őrizze meg gondosan:"
284
280
 
285
- #: templates/umap/components/alerts/alert.html:33
281
+ #: templates/umap/components/alerts/alert.html:39
286
282
  msgid "Copy link"
287
283
  msgstr "Link másolása"
288
284
 
289
- #: templates/umap/components/alerts/alert.html:39
285
+ #: templates/umap/components/alerts/alert.html:46
290
286
  msgid "Enter your email address to receive the secret link:"
291
287
  msgstr "Adja meg az e-mail-címét, hogy megkapja a titkos linket: "
292
288
 
293
- #: templates/umap/components/alerts/alert.html:41
289
+ #: templates/umap/components/alerts/alert.html:52
294
290
  msgid "Email"
295
291
  msgstr "E-mail"
296
292
 
297
- #: templates/umap/components/alerts/alert.html:42
293
+ #: templates/umap/components/alerts/alert.html:55
298
294
  msgid "Send me the link"
299
295
  msgstr "Link elküldése magamnak"
300
296
 
301
- #: templates/umap/components/alerts/alert.html:63
297
+ #: templates/umap/components/alerts/alert.html:79
302
298
  msgid "See their edits in another tab"
303
299
  msgstr "Szerkesztéseik megtekintése egy másik fülön"
304
300
 
305
- #: templates/umap/components/alerts/alert.html:64
301
+ #: templates/umap/components/alerts/alert.html:82
306
302
  msgid "Keep your changes and loose theirs"
307
303
  msgstr "Saját szerkesztéseim megőrzése és az övék elvetése"
308
304
 
309
- #: templates/umap/components/alerts/alert.html:65
305
+ #: templates/umap/components/alerts/alert.html:85
310
306
  msgid "Keep their changes and loose yours"
311
307
  msgstr "Az ő szerkesztéseik megőrzése és a sajátjaim elvetése"
312
308
 
313
- #: templates/umap/content.html:24
309
+ #: templates/umap/content.html:26
314
310
  msgid ""
315
311
  "This instance of uMap is currently in read only mode, no creation/edit is "
316
312
  "allowed."
317
313
  msgstr "A uMap e példánya jelenleg csak olvasási módban működik, létrehozás/szerkesztés nem engedélyezett."
318
314
 
319
- #: templates/umap/content.html:32
315
+ #: templates/umap/content.html:34
320
316
  #, python-format
321
317
  msgid ""
322
318
  "This is a demo instance, used for tests and pre-rolling releases. If you "
@@ -325,279 +321,339 @@ msgid ""
325
321
  "instance, it's <a href=\"%(repo_url)s\">open source</a>!"
326
322
  msgstr "Ez egy demonstrációs változat, amelyet tesztelésre és még nem nyilvános kiadásoknál használnak. Ha stabil változatra van szüksége, használja ezt a címet: <a href=\"%(stable_url)s\">%(stable_url)s</a>. A uMap-et a saját szerverére is telepítheti, hiszen <a href=\"%(repo_url)s\">nyílt forráskódú</a>!"
327
323
 
328
- #: templates/umap/home.html:11
324
+ #: templates/umap/content_footer.html:5
325
+ msgid "An OpenStreetMap project"
326
+ msgstr "OpenStreetMap projekt"
327
+
328
+ #: templates/umap/content_footer.html:6
329
+ msgid "version"
330
+ msgstr "verzió"
331
+
332
+ #: templates/umap/content_footer.html:7
333
+ msgid "Hosted by"
334
+ msgstr "Tárhely:"
335
+
336
+ #: templates/umap/content_footer.html:8
337
+ msgid "Contact"
338
+ msgstr "Kapcsolat:"
339
+
340
+ #: templates/umap/content_footer.html:9 templates/umap/navigation.html:25
341
+ msgid "Help"
342
+ msgstr "Súgó"
343
+
344
+ #: templates/umap/dashboard_menu.html:6
345
+ #, python-format
346
+ msgid "My Maps (%(count)s)"
347
+ msgstr "Térképeim (%(count)s)"
348
+
349
+ #: templates/umap/dashboard_menu.html:8
350
+ msgid "My Maps"
351
+ msgstr "Térképeim"
352
+
353
+ #: templates/umap/dashboard_menu.html:11
354
+ msgid "My profile"
355
+ msgstr "Saját profil"
356
+
357
+ #: templates/umap/dashboard_menu.html:13
358
+ msgid "My teams"
359
+ msgstr "Csoportjaim"
360
+
361
+ #: templates/umap/home.html:14
329
362
  msgid "Map of the uMaps"
330
363
  msgstr "uMap-térképek térképe"
331
364
 
332
- #: templates/umap/home.html:17
365
+ #: templates/umap/home.html:24
333
366
  msgid "Get inspired, browse maps"
334
367
  msgstr "Szerezzen ihletet, böngésszen a térképek között!"
335
368
 
336
- #: templates/umap/login_popup_end.html:2
369
+ #: templates/umap/login_popup_end.html:4
337
370
  msgid "You are logged in. Continuing..."
338
371
  msgstr "Be van jelentkezve. Továbblépés…"
339
372
 
340
- #: templates/umap/map_list.html:9 views.py:348
373
+ #: templates/umap/map_list.html:11 views.py:433
341
374
  msgid "by"
342
375
  msgstr "– készítette:"
343
376
 
344
- #: templates/umap/map_list.html:17
377
+ #: templates/umap/map_list.html:20
345
378
  msgid "More"
346
379
  msgstr "Még több"
347
380
 
348
- #: templates/umap/map_table.html:6
381
+ #: templates/umap/map_table.html:8 templates/umap/user_teams.html:14
349
382
  msgid "Name"
350
383
  msgstr "Név"
351
384
 
352
- #: templates/umap/map_table.html:7
385
+ #: templates/umap/map_table.html:11
353
386
  msgid "Preview"
354
387
  msgstr "Előnézet"
355
388
 
356
- #: templates/umap/map_table.html:8
389
+ #: templates/umap/map_table.html:14
357
390
  msgid "Who can see"
358
391
  msgstr "Ki láthatja?"
359
392
 
360
- #: templates/umap/map_table.html:9
393
+ #: templates/umap/map_table.html:17
361
394
  msgid "Who can edit"
362
395
  msgstr "Ki szerkesztheti?"
363
396
 
364
- #: templates/umap/map_table.html:10
397
+ #: templates/umap/map_table.html:20
365
398
  msgid "Last save"
366
399
  msgstr "Utolsó mentés"
367
400
 
368
- #: templates/umap/map_table.html:11
401
+ #: templates/umap/map_table.html:23
369
402
  msgid "Owner"
370
403
  msgstr "Tulajdonos"
371
404
 
372
- #: templates/umap/map_table.html:12
405
+ #: templates/umap/map_table.html:26 templates/umap/user_teams.html:20
373
406
  msgid "Actions"
374
407
  msgstr "Műveletek"
375
408
 
376
- #: templates/umap/map_table.html:26 templates/umap/map_table.html:28
409
+ #: templates/umap/map_table.html:41 templates/umap/map_table.html:43
377
410
  msgid "Open preview"
378
411
  msgstr "Előnézet"
379
412
 
380
- #: templates/umap/map_table.html:48 templates/umap/map_table.html:50
413
+ #: templates/umap/map_table.html:72 templates/umap/map_table.html:74
381
414
  msgid "Share"
382
415
  msgstr "Megosztás"
383
416
 
384
- #: templates/umap/map_table.html:54 templates/umap/map_table.html:56
417
+ #: templates/umap/map_table.html:78 templates/umap/map_table.html:80
418
+ #: templates/umap/user_teams.html:38 templates/umap/user_teams.html:40
385
419
  msgid "Edit"
386
420
  msgstr "Szerkesztés"
387
421
 
388
- #: templates/umap/map_table.html:60 templates/umap/map_table.html:62
422
+ #: templates/umap/map_table.html:84 templates/umap/map_table.html:86
389
423
  msgid "Download"
390
424
  msgstr "Letöltés"
391
425
 
392
- #: templates/umap/map_table.html:66 templates/umap/map_table.html:68
426
+ #: templates/umap/map_table.html:90 templates/umap/map_table.html:92
393
427
  msgid "Clone"
394
428
  msgstr "Másolat készítése"
395
429
 
396
- #: templates/umap/map_table.html:77 templates/umap/map_table.html:79
430
+ #: templates/umap/map_table.html:101 templates/umap/map_table.html:103
397
431
  msgid "Delete"
398
432
  msgstr "Törlés"
399
433
 
400
- #: templates/umap/map_table.html:93
434
+ #: templates/umap/map_table.html:117
401
435
  msgid "first"
402
436
  msgstr "első"
403
437
 
404
- #: templates/umap/map_table.html:94
438
+ #: templates/umap/map_table.html:118
405
439
  msgid "previous"
406
440
  msgstr "előző"
407
441
 
408
- #: templates/umap/map_table.html:102
442
+ #: templates/umap/map_table.html:126
409
443
  #, python-format
410
444
  msgid "Page %(maps_number)s of %(num_pages)s"
411
445
  msgstr "%(maps_number)s / %(num_pages)s oldal"
412
446
 
413
- #: templates/umap/map_table.html:107
447
+ #: templates/umap/map_table.html:131
414
448
  msgid "next"
415
449
  msgstr "következő"
416
450
 
417
- #: templates/umap/map_table.html:108
451
+ #: templates/umap/map_table.html:132
418
452
  msgid "last"
419
453
  msgstr "utolsó"
420
454
 
421
- #: templates/umap/map_table.html:116
455
+ #: templates/umap/map_table.html:140
422
456
  #, python-format
423
457
  msgid "Lines per page: %(per_page)s"
424
458
  msgstr "Sorok oldalanként: %(per_page)s"
425
459
 
426
- #: templates/umap/map_table.html:121
460
+ #: templates/umap/map_table.html:145
427
461
  #, python-format
428
462
  msgid "%(count)s maps"
429
463
  msgstr "%(count)s térkép"
430
464
 
431
- #: templates/umap/navigation.html:10 templates/umap/user_dashboard.html:4
465
+ #: templates/umap/navigation.html:11 templates/umap/user_dashboard.html:6
432
466
  msgid "My Dashboard"
433
467
  msgstr "Irányítópult"
434
468
 
435
- #: templates/umap/navigation.html:13
469
+ #: templates/umap/navigation.html:14
436
470
  msgid "Starred maps"
437
471
  msgstr "Megcsillagozott térképek"
438
472
 
439
- #: templates/umap/navigation.html:17
473
+ #: templates/umap/navigation.html:18
440
474
  msgid "Log in"
441
475
  msgstr "Bejelentkezés"
442
476
 
443
- #: templates/umap/navigation.html:17
477
+ #: templates/umap/navigation.html:18
444
478
  msgid "Sign in"
445
479
  msgstr "Regisztráció"
446
480
 
447
- #: templates/umap/navigation.html:21
481
+ #: templates/umap/navigation.html:22
448
482
  msgid "About"
449
483
  msgstr "Névjegy"
450
484
 
451
- #: templates/umap/navigation.html:24
452
- msgid "Help"
453
- msgstr "Súgó"
454
-
455
- #: templates/umap/navigation.html:29
485
+ #: templates/umap/navigation.html:30
456
486
  msgid "Change password"
457
487
  msgstr "Jelszó módosítása"
458
488
 
459
- #: templates/umap/navigation.html:33
489
+ #: templates/umap/navigation.html:34
460
490
  msgid "Log out"
461
491
  msgstr "Kijelentkezés"
462
492
 
463
- #: templates/umap/password_change.html:4
493
+ #: templates/umap/password_change.html:7
464
494
  msgid "Password change"
465
495
  msgstr "Jelszó módosítása"
466
496
 
467
- #: templates/umap/password_change.html:6
497
+ #: templates/umap/password_change.html:10
468
498
  msgid ""
469
499
  "Please enter your old password, for security's sake, and then enter your new"
470
500
  " password twice so we can verify you typed it in correctly."
471
501
  msgstr "Biztonsági okokból írja be a régi jelszavát, majd adja meg kétszer a kívánt új jelszót!"
472
502
 
473
- #: templates/umap/password_change.html:13
503
+ #: templates/umap/password_change.html:17
474
504
  msgid "Old password"
475
505
  msgstr "Régi jelszó"
476
506
 
477
- #: templates/umap/password_change.html:18
507
+ #: templates/umap/password_change.html:22
478
508
  msgid "New password"
479
509
  msgstr "Új jelszó"
480
510
 
481
- #: templates/umap/password_change.html:22
511
+ #: templates/umap/password_change.html:26
482
512
  msgid "New password confirmation"
483
513
  msgstr "Új jelszó ismét"
484
514
 
485
- #: templates/umap/password_change.html:23
515
+ #: templates/umap/password_change.html:27
486
516
  msgid "Change my password"
487
517
  msgstr "Jelszavam módosítása"
488
518
 
489
- #: templates/umap/password_change_done.html:4
519
+ #: templates/umap/password_change_done.html:7
490
520
  msgid "Password change successful"
491
521
  msgstr "A jelszómódosítás sikeres"
492
522
 
493
- #: templates/umap/password_change_done.html:5
523
+ #: templates/umap/password_change_done.html:10
494
524
  msgid "Your password was changed."
495
525
  msgstr "A jelszava megváltozott."
496
526
 
497
- #: templates/umap/search.html:13
527
+ #: templates/umap/search.html:15
498
528
  #, python-format
499
529
  msgid "%(count)s map found:"
500
530
  msgid_plural "%(count)s maps found:"
501
531
  msgstr[0] "%(count)s térképet találtunk:"
502
532
  msgstr[1] "%(count)s térképet találtunk:"
503
533
 
504
- #: templates/umap/search.html:21
534
+ #: templates/umap/search.html:24
505
535
  msgid "No map found."
506
536
  msgstr "Nem található ilyen térkép."
507
537
 
508
- #: templates/umap/search.html:24
538
+ #: templates/umap/search.html:29
509
539
  msgid "Latest created maps"
510
540
  msgstr "Legutóbb létrehozott térképek"
511
541
 
512
- #: templates/umap/search_bar.html:3
542
+ #: templates/umap/search_bar.html:4
513
543
  msgid "Search maps"
514
544
  msgstr "Térképek keresése"
515
545
 
516
- #: templates/umap/search_bar.html:14
546
+ #: templates/umap/search_bar.html:15
517
547
  msgid "Search"
518
548
  msgstr "Keresés"
519
549
 
520
- #: templates/umap/user_dashboard.html:7 templates/umap/user_dashboard.html:27
521
- msgid "Search my maps"
522
- msgstr "Saját térkép keresése"
550
+ #: templates/umap/team_detail.html:10
551
+ #, python-format
552
+ msgid "Browse %(current_team)s's maps"
553
+ msgstr "%(current_team)s csoport térképeinek böngészése"
523
554
 
524
- #: templates/umap/user_dashboard.html:10
555
+ #: templates/umap/team_detail.html:22
525
556
  #, python-format
526
- msgid "My Maps (%(count)s)"
527
- msgstr "Térképeim (%(count)s)"
557
+ msgid "%(current_team)s has no public maps."
558
+ msgstr "%(current_team)s csoportnak nincs nyilvános térképe."
528
559
 
529
- #: templates/umap/user_dashboard.html:12
530
- msgid "My profile"
531
- msgstr "Saját profil"
560
+ #: templates/umap/team_form.html:24
561
+ msgid "Delete this team"
562
+ msgstr "Csoport törlése"
532
563
 
533
- #: templates/umap/user_dashboard.html:20 templates/umap/user_dashboard.html:24
564
+ #: templates/umap/team_form.html:47
565
+ msgid "Add user"
566
+ msgstr "Felhasználó hozzáadása"
567
+
568
+ #: templates/umap/user_dashboard.html:9 templates/umap/user_dashboard.html:25
569
+ msgid "Search my maps"
570
+ msgstr "Saját térkép keresése"
571
+
572
+ #: templates/umap/user_dashboard.html:17 templates/umap/user_dashboard.html:22
534
573
  msgid "Map’s title"
535
574
  msgstr "Térkép címe"
536
575
 
537
- #: templates/umap/user_dashboard.html:32
576
+ #: templates/umap/user_dashboard.html:30
538
577
  #, python-format
539
578
  msgid "Download %(count)s maps"
540
579
  msgstr "%(count)s térkép letöltése"
541
580
 
542
- #: templates/umap/user_dashboard.html:42
581
+ #: templates/umap/user_dashboard.html:40
543
582
  msgid "You have no map yet."
544
583
  msgstr "Önnek még nincs térképe."
545
584
 
546
- #: views.py:353
585
+ #: templates/umap/user_teams.html:17
586
+ msgid "Users"
587
+ msgstr "Felhasználók"
588
+
589
+ #: templates/umap/user_teams.html:48
590
+ msgid "New team"
591
+ msgstr "Új csoport"
592
+
593
+ #: views.py:235
594
+ msgid "Cannot delete a team with more than one member"
595
+ msgstr "Egynél több tagú csoport nem törölhető"
596
+
597
+ #: views.py:239
598
+ #, python-format
599
+ msgid "Team “%(name)s” has been deleted"
600
+ msgstr "%(name)s csoport törölve"
601
+
602
+ #: views.py:438
547
603
  msgid "View the map"
548
604
  msgstr "Térkép megtekintése"
549
605
 
550
- #: views.py:719
606
+ #: views.py:824
551
607
  msgid "See full screen"
552
608
  msgstr "Teljes képernyős nézet megtekintése"
553
609
 
554
- #: views.py:847
610
+ #: views.py:953
555
611
  msgid "Map editors updated with success!"
556
612
  msgstr "A térképszerkesztők sikeresen frissültek."
557
613
 
558
- #: views.py:883
614
+ #: views.py:989
559
615
  #, python-format
560
616
  msgid "The uMap edit link for your map: %(map_name)s"
561
617
  msgstr "A térképéhez tartozó uMap szerkesztési link: %(map_name)s"
562
618
 
563
- #: views.py:886
619
+ #: views.py:992
564
620
  #, python-format
565
621
  msgid "Here is your secret edit link: %(link)s"
566
622
  msgstr "Az Ön titkos szerkesztési linkje: %(link)s"
567
623
 
568
- #: views.py:893
624
+ #: views.py:999
569
625
  #, python-format
570
626
  msgid "Can't send email to %(email)s"
571
627
  msgstr "Nem sikerül e-mailt küldeni ide: %(email)s"
572
628
 
573
- #: views.py:896
629
+ #: views.py:1002
574
630
  #, python-format
575
631
  msgid "Email sent to %(email)s"
576
632
  msgstr "E-mail elküldve ide: %(email)s"
577
633
 
578
- #: views.py:907
634
+ #: views.py:1013
579
635
  msgid "Only its owner can delete the map."
580
636
  msgstr "A térképet csak a tulajdonosa törölheti."
581
637
 
582
- #: views.py:910
638
+ #: views.py:1016
583
639
  msgid "Map successfully deleted."
584
640
  msgstr "Térkép sikeresen törölve."
585
641
 
586
- #: views.py:936
642
+ #: views.py:1042
587
643
  #, python-format
588
644
  msgid ""
589
645
  "Your map has been cloned! If you want to edit this map from another "
590
646
  "computer, please use this link: %(anonymous_url)s"
591
647
  msgstr "Elkészült a térképe másolata. Ha egy másik számítógépről szeretné szerkeszteni, ezt a linket használja: %(anonymous_url)s"
592
648
 
593
- #: views.py:941
649
+ #: views.py:1047
594
650
  msgid "Congratulations, your map has been cloned!"
595
651
  msgstr "Gratulálunk, elkészült a térképe másolata!"
596
652
 
597
- #: views.py:1176
653
+ #: views.py:1282
598
654
  msgid "Layer successfully deleted."
599
655
  msgstr "A réteg sikeresen törlődött."
600
656
 
601
- #: views.py:1198
657
+ #: views.py:1304
602
658
  msgid "Permissions updated with success!"
603
659
  msgstr "Az engedélyek sikeresen frissültek!"