umap-project 2.9.3__py3-none-any.whl → 3.0.1__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 (217) hide show
  1. umap/__init__.py +1 -1
  2. umap/context_processors.py +1 -0
  3. umap/forms.py +1 -2
  4. umap/locale/de/LC_MESSAGES/django.mo +0 -0
  5. umap/locale/de/LC_MESSAGES/django.po +218 -96
  6. umap/locale/en/LC_MESSAGES/django.po +128 -52
  7. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  8. umap/locale/fr/LC_MESSAGES/django.po +128 -52
  9. umap/locale/hu/LC_MESSAGES/django.mo +0 -0
  10. umap/locale/hu/LC_MESSAGES/django.po +209 -88
  11. umap/locale/is/LC_MESSAGES/django.mo +0 -0
  12. umap/locale/is/LC_MESSAGES/django.po +296 -175
  13. umap/migrations/0027_map_tags.py +23 -0
  14. umap/models.py +13 -2
  15. umap/settings/base.py +23 -5
  16. umap/static/umap/base.css +41 -8
  17. umap/static/umap/content.css +72 -37
  18. umap/static/umap/css/bar.css +43 -21
  19. umap/static/umap/css/dialog.css +4 -1
  20. umap/static/umap/css/form.css +40 -27
  21. umap/static/umap/css/icon.css +11 -1
  22. umap/static/umap/css/importers.css +7 -0
  23. umap/static/umap/img/16-white.svg +23 -2
  24. umap/static/umap/img/16.svg +1 -1
  25. umap/static/umap/img/24.svg +4 -4
  26. umap/static/umap/img/home.svg +7 -0
  27. umap/static/umap/img/importers/banfr.svg +1 -0
  28. umap/static/umap/img/marker.svg +2 -5
  29. umap/static/umap/img/source/16-white.svg +24 -3
  30. umap/static/umap/img/source/16.svg +1 -1
  31. umap/static/umap/img/source/24.svg +5 -5
  32. umap/static/umap/img/target.svg +1 -0
  33. umap/static/umap/js/components/alerts/alert.js +0 -1
  34. umap/static/umap/js/modules/browser.js +4 -4
  35. umap/static/umap/js/modules/caption.js +1 -1
  36. umap/static/umap/js/modules/data/features.js +25 -25
  37. umap/static/umap/js/modules/data/layer.js +91 -97
  38. umap/static/umap/js/modules/facets.js +9 -5
  39. umap/static/umap/js/modules/form/builder.js +19 -27
  40. umap/static/umap/js/modules/form/fields.js +40 -14
  41. umap/static/umap/js/modules/formatter.js +1 -1
  42. umap/static/umap/js/modules/global.js +9 -5
  43. umap/static/umap/js/modules/help.js +18 -5
  44. umap/static/umap/js/modules/importer.js +5 -2
  45. umap/static/umap/js/modules/importers/banfr.js +93 -0
  46. umap/static/umap/js/modules/importers/cadastrefr.js +2 -2
  47. umap/static/umap/js/modules/importers/communesfr.js +1 -1
  48. umap/static/umap/js/modules/permissions.js +20 -10
  49. umap/static/umap/js/modules/rendering/icon.js +15 -2
  50. umap/static/umap/js/modules/rendering/layers/classified.js +7 -7
  51. umap/static/umap/js/modules/rendering/layers/cluster.js +2 -2
  52. umap/static/umap/js/modules/rendering/layers/heat.js +4 -4
  53. umap/static/umap/js/modules/rendering/map.js +14 -6
  54. umap/static/umap/js/modules/rendering/popup.js +2 -2
  55. umap/static/umap/js/modules/rendering/template.js +3 -3
  56. umap/static/umap/js/modules/rendering/ui.js +17 -11
  57. umap/static/umap/js/modules/rules.js +13 -16
  58. umap/static/umap/js/modules/schema.js +23 -1
  59. umap/static/umap/js/modules/share.js +1 -1
  60. umap/static/umap/js/modules/slideshow.js +1 -0
  61. umap/static/umap/js/modules/sync/engine.js +141 -19
  62. umap/static/umap/js/modules/sync/undo.js +101 -0
  63. umap/static/umap/js/modules/sync/updaters.js +51 -28
  64. umap/static/umap/js/modules/tableeditor.js +1 -1
  65. umap/static/umap/js/modules/ui/bar.js +61 -21
  66. umap/static/umap/js/modules/ui/tooltip.js +1 -1
  67. umap/static/umap/js/modules/umap.js +190 -176
  68. umap/static/umap/js/modules/utils.js +30 -4
  69. umap/static/umap/js/umap.controls.js +82 -38
  70. umap/static/umap/locale/am_ET.js +11 -6
  71. umap/static/umap/locale/am_ET.json +11 -6
  72. umap/static/umap/locale/ar.js +11 -6
  73. umap/static/umap/locale/ar.json +11 -6
  74. umap/static/umap/locale/ast.js +11 -6
  75. umap/static/umap/locale/ast.json +11 -6
  76. umap/static/umap/locale/bg.js +11 -6
  77. umap/static/umap/locale/bg.json +11 -6
  78. umap/static/umap/locale/br.js +12 -7
  79. umap/static/umap/locale/br.json +12 -7
  80. umap/static/umap/locale/ca.js +11 -6
  81. umap/static/umap/locale/ca.json +11 -6
  82. umap/static/umap/locale/cs_CZ.js +11 -6
  83. umap/static/umap/locale/cs_CZ.json +11 -6
  84. umap/static/umap/locale/da.js +11 -6
  85. umap/static/umap/locale/da.json +11 -6
  86. umap/static/umap/locale/de.js +47 -42
  87. umap/static/umap/locale/de.json +47 -42
  88. umap/static/umap/locale/el.js +11 -6
  89. umap/static/umap/locale/el.json +11 -6
  90. umap/static/umap/locale/en.js +11 -6
  91. umap/static/umap/locale/en.json +11 -6
  92. umap/static/umap/locale/en_US.json +11 -6
  93. umap/static/umap/locale/es.js +11 -6
  94. umap/static/umap/locale/es.json +11 -6
  95. umap/static/umap/locale/et.js +11 -6
  96. umap/static/umap/locale/et.json +11 -6
  97. umap/static/umap/locale/eu.js +11 -6
  98. umap/static/umap/locale/eu.json +11 -6
  99. umap/static/umap/locale/fa_IR.js +11 -6
  100. umap/static/umap/locale/fa_IR.json +11 -6
  101. umap/static/umap/locale/fi.js +11 -6
  102. umap/static/umap/locale/fi.json +11 -6
  103. umap/static/umap/locale/fr.js +11 -6
  104. umap/static/umap/locale/fr.json +11 -6
  105. umap/static/umap/locale/gl.js +12 -7
  106. umap/static/umap/locale/gl.json +12 -7
  107. umap/static/umap/locale/he.js +11 -6
  108. umap/static/umap/locale/he.json +11 -6
  109. umap/static/umap/locale/hr.js +11 -6
  110. umap/static/umap/locale/hr.json +11 -6
  111. umap/static/umap/locale/hu.js +25 -20
  112. umap/static/umap/locale/hu.json +25 -20
  113. umap/static/umap/locale/id.js +11 -6
  114. umap/static/umap/locale/id.json +11 -6
  115. umap/static/umap/locale/is.js +151 -146
  116. umap/static/umap/locale/is.json +151 -146
  117. umap/static/umap/locale/it.js +11 -6
  118. umap/static/umap/locale/it.json +11 -6
  119. umap/static/umap/locale/ja.js +11 -6
  120. umap/static/umap/locale/ja.json +11 -6
  121. umap/static/umap/locale/ko.js +11 -6
  122. umap/static/umap/locale/ko.json +11 -6
  123. umap/static/umap/locale/lt.js +11 -6
  124. umap/static/umap/locale/lt.json +11 -6
  125. umap/static/umap/locale/ms.js +11 -6
  126. umap/static/umap/locale/ms.json +11 -6
  127. umap/static/umap/locale/nl.js +12 -7
  128. umap/static/umap/locale/nl.json +12 -7
  129. umap/static/umap/locale/no.js +11 -6
  130. umap/static/umap/locale/no.json +11 -6
  131. umap/static/umap/locale/pl.js +11 -6
  132. umap/static/umap/locale/pl.json +11 -6
  133. umap/static/umap/locale/pl_PL.json +11 -6
  134. umap/static/umap/locale/pt.js +11 -6
  135. umap/static/umap/locale/pt.json +11 -6
  136. umap/static/umap/locale/pt_BR.js +11 -6
  137. umap/static/umap/locale/pt_BR.json +11 -6
  138. umap/static/umap/locale/pt_PT.js +11 -6
  139. umap/static/umap/locale/pt_PT.json +11 -6
  140. umap/static/umap/locale/ro.js +11 -6
  141. umap/static/umap/locale/ro.json +11 -6
  142. umap/static/umap/locale/ru.js +11 -6
  143. umap/static/umap/locale/ru.json +11 -6
  144. umap/static/umap/locale/sk_SK.js +11 -6
  145. umap/static/umap/locale/sk_SK.json +11 -6
  146. umap/static/umap/locale/sl.js +11 -6
  147. umap/static/umap/locale/sl.json +11 -6
  148. umap/static/umap/locale/sr.js +11 -6
  149. umap/static/umap/locale/sr.json +11 -6
  150. umap/static/umap/locale/sv.js +11 -6
  151. umap/static/umap/locale/sv.json +11 -6
  152. umap/static/umap/locale/th_TH.js +11 -6
  153. umap/static/umap/locale/th_TH.json +11 -6
  154. umap/static/umap/locale/tr.js +11 -6
  155. umap/static/umap/locale/tr.json +11 -6
  156. umap/static/umap/locale/uk_UA.js +11 -6
  157. umap/static/umap/locale/uk_UA.json +11 -6
  158. umap/static/umap/locale/vi.js +11 -6
  159. umap/static/umap/locale/vi.json +11 -6
  160. umap/static/umap/locale/vi_VN.json +11 -6
  161. umap/static/umap/locale/zh.js +11 -6
  162. umap/static/umap/locale/zh.json +11 -6
  163. umap/static/umap/locale/zh_CN.json +11 -6
  164. umap/static/umap/locale/zh_TW.Big5.json +11 -6
  165. umap/static/umap/locale/zh_TW.js +19 -14
  166. umap/static/umap/locale/zh_TW.json +19 -14
  167. umap/static/umap/map.css +58 -28
  168. umap/static/umap/unittests/sync.js +0 -57
  169. umap/static/umap/unittests/utils.js +47 -0
  170. umap/static/umap/vars.css +5 -2
  171. umap/static/umap/vendors/photon/leaflet.photon.js +3 -0
  172. umap/sync/payloads.py +3 -2
  173. umap/templates/auth/user_detail.html +1 -1
  174. umap/templates/auth/user_stars.html +1 -1
  175. umap/templates/umap/content.html +17 -12
  176. umap/templates/umap/home.html +7 -5
  177. umap/templates/umap/map_fragment.html +1 -1
  178. umap/templates/umap/map_list.html +20 -13
  179. umap/templates/umap/search.html +7 -3
  180. umap/templates/umap/search_bar.html +13 -11
  181. umap/templates/umap/team_detail.html +1 -1
  182. umap/tests/base.py +2 -1
  183. umap/tests/fixtures/remote_data.umap +55 -0
  184. umap/tests/fixtures/test_upload_data_with_iconurl.umap +122 -0
  185. umap/tests/integration/test_browser.py +1 -3
  186. umap/tests/integration/test_conditional_rules.py +3 -0
  187. umap/tests/integration/test_edit_datalayer.py +2 -7
  188. umap/tests/integration/test_edit_map.py +15 -0
  189. umap/tests/integration/test_edit_polygon.py +1 -2
  190. umap/tests/integration/test_import.py +59 -2
  191. umap/tests/integration/test_optimistic_merge.py +4 -3
  192. umap/tests/integration/test_owned_map.py +0 -1
  193. umap/tests/integration/test_save.py +2 -4
  194. umap/tests/integration/test_undo_redo.py +267 -0
  195. umap/tests/integration/test_websocket_sync.py +78 -11
  196. umap/tests/settings.py +1 -3
  197. umap/tests/test_datalayer_s3.py +1 -0
  198. umap/tests/test_map_views.py +1 -0
  199. umap/tests/test_views.py +34 -0
  200. umap/utils.py +1 -1
  201. umap/views.py +23 -2
  202. {umap_project-2.9.3.dist-info → umap_project-3.0.1.dist-info}/METADATA +13 -12
  203. {umap_project-2.9.3.dist-info → umap_project-3.0.1.dist-info}/RECORD +206 -208
  204. umap/static/umap/js/modules/saving.js +0 -52
  205. umap/static/umap/test/.eslintrc +0 -21
  206. umap/static/umap/test/DataLayer.js +0 -463
  207. umap/static/umap/test/Feature.js +0 -131
  208. umap/static/umap/test/Map.js +0 -37
  209. umap/static/umap/test/Marker.js +0 -126
  210. umap/static/umap/test/Polygon.js +0 -111
  211. umap/static/umap/test/Polyline.js +0 -286
  212. umap/static/umap/test/Util.js +0 -28
  213. umap/static/umap/test/_pre.js +0 -455
  214. umap/static/umap/test/index.html +0 -139
  215. {umap_project-2.9.3.dist-info → umap_project-3.0.1.dist-info}/WHEEL +0 -0
  216. {umap_project-2.9.3.dist-info → umap_project-3.0.1.dist-info}/entry_points.txt +0 -0
  217. {umap_project-2.9.3.dist-info → umap_project-3.0.1.dist-info}/licenses/LICENSE +0 -0
@@ -3,15 +3,15 @@
3
3
  # This file is distributed under the same license as the PACKAGE package.
4
4
  #
5
5
  # Translators:
6
- # Gábor Babos <gabor.babos@gmail.com>, 2017-2019,2023-2024
6
+ # Gábor Babos <gabor.babos@gmail.com>, 2017-2019,2023-2025
7
7
  # Peter Velosy <peter.velosy@gmail.com>, 2017
8
8
  msgid ""
9
9
  msgstr ""
10
10
  "Project-Id-Version: uMap\n"
11
11
  "Report-Msgid-Bugs-To: \n"
12
- "POT-Creation-Date: 2024-12-24 08:39+0000\n"
12
+ "POT-Creation-Date: 2025-04-04 16:49+0000\n"
13
13
  "PO-Revision-Date: 2013-11-22 14:00+0000\n"
14
- "Last-Translator: Gábor Babos <gabor.babos@gmail.com>, 2017-2019,2023-2024\n"
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"
16
16
  "MIME-Version: 1.0\n"
17
17
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -27,138 +27,214 @@ msgstr "CSV exportálás"
27
27
  msgid "This map is not publicly available"
28
28
  msgstr "Ez a térkép nem nyilvános"
29
29
 
30
- #: middleware.py:13
30
+ #: middleware.py:19
31
31
  msgid "Site is readonly for maintenance"
32
32
  msgstr "Karbantartás miatt a webhely csak olvasható"
33
33
 
34
- #: models.py:60 models.py:79
34
+ #: middleware.py:34
35
+ #, python-format
36
+ msgid ""
37
+ "Using “%(name)s” to authenticate is deprecated and will be removed soon. "
38
+ "Please configure another provider below before losing access to your account"
39
+ " and maps. Then, please logout and login again with the new provider."
40
+ msgstr "A „%(name)s” használata a hitelesítéshez elavult, és hamarosan eltávolításra kerül. Kérjük, állítson be egy másik szolgáltatót az alábbiakban, mielőtt elveszítené a fiókjához és a térképekhez való hozzáférést. Ezután jelentkezzen ki, majd jelentkezzen be újra az új szolgáltatóval."
41
+
42
+ #: models.py:61 models.py:80
35
43
  msgid "name"
36
44
  msgstr "név"
37
45
 
38
- #: models.py:62 models.py:475
46
+ #: models.py:63 models.py:493
39
47
  msgid "description"
40
48
  msgstr "leírás"
41
49
 
42
- #: models.py:110
50
+ #: models.py:111
43
51
  msgid "details"
44
52
  msgstr "részletek"
45
53
 
46
- #: models.py:111
54
+ #: models.py:112
47
55
  msgid "Link to a page where the licence is detailed."
48
56
  msgstr "Link egy részletes licencinformációkat tartalmazó lapra."
49
57
 
50
- #: models.py:121
58
+ #: models.py:122
51
59
  msgid "URL template using OSM tile format"
52
60
  msgstr "OSM-csempeformátumot használó URL-sablon"
53
61
 
54
- #: models.py:127
62
+ #: models.py:128
55
63
  msgid "Order of the tilelayers in the edit box"
56
64
  msgstr "Csemperétegek sorrendje a szerkesztődobozban"
57
65
 
58
- #: models.py:175 models.py:469
66
+ #: models.py:176 models.py:487
59
67
  msgid "Only editable with secret edit link"
60
68
  msgstr "Kizárólag titkos szerkesztési linkkel szerkeszthető"
61
69
 
62
- #: models.py:176 models.py:470
70
+ #: models.py:177 models.py:488
63
71
  msgid "Everyone can edit"
64
72
  msgstr "Bárki szerkesztheti"
65
73
 
66
- #: models.py:179 models.py:463
74
+ #: models.py:180 models.py:481
67
75
  msgid "Everyone"
68
76
  msgstr "Mindenki"
69
77
 
70
- #: models.py:180 models.py:189 models.py:464
78
+ #: models.py:181 models.py:190 models.py:482
71
79
  msgid "Editors and team only"
72
80
  msgstr "Csak a szerkesztők és a csoport"
73
81
 
74
- #: models.py:181 models.py:465
82
+ #: models.py:182 models.py:483
75
83
  msgid "Owner only"
76
84
  msgstr "Csak a tulajdonos"
77
85
 
78
- #: models.py:184
86
+ #: models.py:185
79
87
  msgid "Draft (private)"
80
88
  msgstr "Piszkozat (privát)"
81
89
 
82
- #: models.py:185
90
+ #: models.py:186
83
91
  msgid "Everyone (public)"
84
92
  msgstr "Mindenki (nyilvános)"
85
93
 
86
- #: models.py:188
94
+ #: models.py:189
87
95
  msgid "Anyone with link"
88
96
  msgstr "A link birtokában bárki"
89
97
 
90
- #: models.py:190
98
+ #: models.py:191
91
99
  msgid "Blocked"
92
100
  msgstr "Blokkolva"
93
101
 
94
- #: models.py:191
102
+ #: models.py:192 models.py:477
95
103
  msgid "Deleted"
96
104
  msgstr "Törölve"
97
105
 
98
- #: models.py:194
106
+ #: models.py:195
99
107
  msgid "center"
100
108
  msgstr "középpont"
101
109
 
102
- #: models.py:195
110
+ #: models.py:196
103
111
  msgid "zoom"
104
112
  msgstr "nagyítás"
105
113
 
106
- #: models.py:197
114
+ #: models.py:198
107
115
  msgid "locate"
108
116
  msgstr "helymeghatározás"
109
117
 
110
- #: models.py:197
118
+ #: models.py:198
111
119
  msgid "Locate user on load?"
112
120
  msgstr "Bekérje a felhasználó pozícióját betöltéskor?"
113
121
 
114
- #: models.py:201
122
+ #: models.py:202
115
123
  msgid "Choose the map licence."
116
124
  msgstr "Térképlicenc kiválasztása"
117
125
 
118
- #: models.py:202
126
+ #: models.py:203
119
127
  msgid "licence"
120
128
  msgstr "licenc"
121
129
 
122
- #: models.py:213
130
+ #: models.py:214
123
131
  msgid "owner"
124
132
  msgstr "tulajdonos"
125
133
 
126
- #: models.py:217
134
+ #: models.py:218
127
135
  msgid "editors"
128
136
  msgstr "szerkesztők"
129
137
 
130
- #: models.py:223
138
+ #: models.py:224
131
139
  msgid "team"
132
140
  msgstr "csoport"
133
141
 
134
- #: models.py:229 models.py:491
142
+ #: models.py:230 models.py:509
135
143
  msgid "edit status"
136
144
  msgstr "szerkeszthetőség"
137
145
 
138
- #: models.py:234
146
+ #: models.py:235 models.py:514
139
147
  msgid "share status"
140
148
  msgstr "megoszthatóság"
141
149
 
142
- #: models.py:237 models.py:486
150
+ #: models.py:238 models.py:504
143
151
  msgid "settings"
144
152
  msgstr "beállítások"
145
153
 
146
- #: models.py:402
154
+ #: models.py:410
147
155
  msgid "Clone of"
148
156
  msgstr "Másolat erről: "
149
157
 
150
- #: models.py:462 models.py:468
158
+ #: models.py:476 models.py:480 models.py:486
151
159
  msgid "Inherit"
152
160
  msgstr "Öröklés"
153
161
 
154
- #: models.py:481
162
+ #: models.py:499
155
163
  msgid "display on load"
156
164
  msgstr "megjelenítés betöltéskor"
157
165
 
158
- #: models.py:482
166
+ #: models.py:500
159
167
  msgid "Display this layer on load."
160
168
  msgstr "Réteg megjelenítése betöltéskor"
161
169
 
170
+ #: settings/base.py:295
171
+ msgid "Art and Culture"
172
+ msgstr ""
173
+
174
+ #: settings/base.py:296
175
+ msgid "Cycling"
176
+ msgstr ""
177
+
178
+ #: settings/base.py:297
179
+ msgid "Business"
180
+ msgstr ""
181
+
182
+ #: settings/base.py:298
183
+ msgid "Environment"
184
+ msgstr ""
185
+
186
+ #: settings/base.py:299
187
+ msgid "Education"
188
+ msgstr ""
189
+
190
+ #: settings/base.py:300
191
+ msgid "Food and Agriculture"
192
+ msgstr ""
193
+
194
+ #: settings/base.py:301
195
+ msgid "Geopolitics"
196
+ msgstr ""
197
+
198
+ #: settings/base.py:302
199
+ msgid "Health"
200
+ msgstr ""
201
+
202
+ #: settings/base.py:303
203
+ msgid "Hiking"
204
+ msgstr ""
205
+
206
+ #: settings/base.py:304
207
+ msgid "History"
208
+ msgstr ""
209
+
210
+ #: settings/base.py:305
211
+ msgid "Public sector"
212
+ msgstr ""
213
+
214
+ #: settings/base.py:306
215
+ msgid "Science"
216
+ msgstr ""
217
+
218
+ #: settings/base.py:307
219
+ msgid "Shopping"
220
+ msgstr ""
221
+
222
+ #: settings/base.py:308
223
+ msgid "Sport and Leisure"
224
+ msgstr ""
225
+
226
+ #: settings/base.py:309
227
+ msgid "Travel"
228
+ msgstr ""
229
+
230
+ #: settings/base.py:310
231
+ msgid "Transports"
232
+ msgstr ""
233
+
234
+ #: settings/base.py:311
235
+ msgid "Tourism"
236
+ msgstr ""
237
+
162
238
  #: templates/403.html:8
163
239
  msgid ""
164
240
  "<a href=\"https://discover.umap-project.org/support/faq/#map-statuses\" "
@@ -174,40 +250,54 @@ msgstr "← Ugrás a főoldalra"
174
250
  msgid "404 Page Not Found"
175
251
  msgstr "404 hiba: ez az oldal nem található. Eltévedtél a térképek között"
176
252
 
177
- #: templates/auth/user_detail.html:8
253
+ #: templates/auth/user_detail.html:6
254
+ #, python-format
255
+ msgid "%(current_user)s’s maps"
256
+ msgstr "%(current_user)s térképei"
257
+
258
+ #: templates/auth/user_detail.html:12
178
259
  #, python-format
179
260
  msgid "Browse %(current_user)s's maps"
180
261
  msgstr "%(current_user)s térképeinek böngészése"
181
262
 
182
- #: templates/auth/user_detail.html:17
263
+ #: templates/auth/user_detail.html:21
183
264
  #, python-format
184
265
  msgid "%(current_user)s has no maps."
185
266
  msgstr "%(current_user)s felhasználónak nincs térképe."
186
267
 
187
- #: templates/auth/user_form.html:21 templates/umap/team_form.html:21
268
+ #: templates/auth/user_form.html:6
269
+ msgid "My Profile"
270
+ msgstr "Profilom"
271
+
272
+ #: templates/auth/user_form.html:24 templates/umap/team_form.html:25
188
273
  msgid "Save"
189
274
  msgstr "Mentés"
190
275
 
191
- #: templates/auth/user_form.html:27
276
+ #: templates/auth/user_form.html:30
192
277
  msgid "Your current providers"
193
278
  msgstr "Jelenlegi szolgáltatói"
194
279
 
195
- #: templates/auth/user_form.html:39
280
+ #: templates/auth/user_form.html:44
196
281
  msgid "Connect to another provider"
197
282
  msgstr "Újabb szolgáltató csatlakoztatása"
198
283
 
199
- #: templates/auth/user_form.html:42
284
+ #: templates/auth/user_form.html:47
200
285
  msgid ""
201
286
  "It's a good habit to connect your account to more than one provider, in case"
202
287
  " one provider becomes unavailable, temporarily or even permanently."
203
288
  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."
204
289
 
205
- #: templates/auth/user_stars.html:8
290
+ #: templates/auth/user_stars.html:6
291
+ #, python-format
292
+ msgid "%(current_user)s’s starred maps"
293
+ msgstr "%(current_user)s megcsillagozott térképei"
294
+
295
+ #: templates/auth/user_stars.html:12
206
296
  #, python-format
207
297
  msgid "Browse %(current_user)s's starred maps"
208
298
  msgstr "%(current_user)s megcsillagozott térképeinek böngészése"
209
299
 
210
- #: templates/auth/user_stars.html:17
300
+ #: templates/auth/user_stars.html:21
211
301
  #, python-format
212
302
  msgid "%(current_user)s has no starred maps yet."
213
303
  msgstr "%(current_user)s felhasználónak még nincs megcsillagozott térképe."
@@ -242,6 +332,10 @@ msgstr "Jelszó"
242
332
  msgid "Please choose a provider:"
243
333
  msgstr "Válassz egy szolgáltatót:"
244
334
 
335
+ #: templates/umap/about.html:5 templates/umap/navigation.html:22
336
+ msgid "About"
337
+ msgstr "Névjegy"
338
+
245
339
  #: templates/umap/about_summary.html:12
246
340
  #, python-format
247
341
  msgid ""
@@ -383,7 +477,7 @@ msgstr "Térképeim"
383
477
 
384
478
  #: templates/umap/dashboard_menu.html:12
385
479
  msgid "My profile"
386
- msgstr "Saját profil"
480
+ msgstr "Profilom"
387
481
 
388
482
  #: templates/umap/dashboard_menu.html:15
389
483
  msgid "My teams"
@@ -393,7 +487,7 @@ msgstr "Csoportjaim"
393
487
  msgid "Map of the uMaps"
394
488
  msgstr "uMap-térképek térképe"
395
489
 
396
- #: templates/umap/home.html:24
490
+ #: templates/umap/home.html:25
397
491
  msgid "Get inspired, browse maps"
398
492
  msgstr "Szerezzen ihletet, böngésszen a térképek között!"
399
493
 
@@ -401,15 +495,19 @@ msgstr "Szerezzen ihletet, böngésszen a térképek között!"
401
495
  msgid "You are logged in. Continuing..."
402
496
  msgstr "Be van jelentkezve. Továbblépés…"
403
497
 
404
- #: templates/umap/map_list.html:11 views.py:437
498
+ #: templates/umap/map_list.html:18 views.py:444
405
499
  msgid "by"
406
500
  msgstr "– készítette:"
407
501
 
408
- #: templates/umap/map_list.html:20
502
+ #: templates/umap/map_list.html:22
503
+ msgid "See the map"
504
+ msgstr ""
505
+
506
+ #: templates/umap/map_list.html:28
409
507
  msgid "More"
410
508
  msgstr "Még több"
411
509
 
412
- #: templates/umap/map_table.html:8 templates/umap/user_teams.html:14
510
+ #: templates/umap/map_table.html:8 templates/umap/user_teams.html:18
413
511
  msgid "Name"
414
512
  msgstr "Név"
415
513
 
@@ -433,7 +531,7 @@ msgstr "Utolsó mentés"
433
531
  msgid "Owner"
434
532
  msgstr "Tulajdonos"
435
533
 
436
- #: templates/umap/map_table.html:26 templates/umap/user_teams.html:20
534
+ #: templates/umap/map_table.html:26 templates/umap/user_teams.html:24
437
535
  msgid "Actions"
438
536
  msgstr "Műveletek"
439
537
 
@@ -446,7 +544,7 @@ msgid "Share"
446
544
  msgstr "Megosztás"
447
545
 
448
546
  #: templates/umap/map_table.html:78 templates/umap/map_table.html:80
449
- #: templates/umap/user_teams.html:38 templates/umap/user_teams.html:40
547
+ #: templates/umap/user_teams.html:42 templates/umap/user_teams.html:44
450
548
  msgid "Edit"
451
549
  msgstr "Szerkesztés"
452
550
 
@@ -509,10 +607,6 @@ msgstr "Bejelentkezés"
509
607
  msgid "Sign in"
510
608
  msgstr "Regisztráció"
511
609
 
512
- #: templates/umap/navigation.html:22
513
- msgid "About"
514
- msgstr "Névjegy"
515
-
516
610
  #: templates/umap/navigation.html:30
517
611
  msgid "Change password"
518
612
  msgstr "Jelszó módosítása"
@@ -521,52 +615,58 @@ msgstr "Jelszó módosítása"
521
615
  msgid "Log out"
522
616
  msgstr "Kijelentkezés"
523
617
 
524
- #: templates/umap/password_change.html:7
618
+ #: templates/umap/password_change.html:6
619
+ #: templates/umap/password_change.html:11
525
620
  msgid "Password change"
526
621
  msgstr "Jelszó módosítása"
527
622
 
528
- #: templates/umap/password_change.html:10
623
+ #: templates/umap/password_change.html:14
529
624
  msgid ""
530
625
  "Please enter your old password, for security's sake, and then enter your new"
531
626
  " password twice so we can verify you typed it in correctly."
532
627
  msgstr "Biztonsági okokból írja be a régi jelszavát, majd adja meg kétszer a kívánt új jelszót!"
533
628
 
534
- #: templates/umap/password_change.html:17
629
+ #: templates/umap/password_change.html:21
535
630
  msgid "Old password"
536
631
  msgstr "Régi jelszó"
537
632
 
538
- #: templates/umap/password_change.html:22
633
+ #: templates/umap/password_change.html:26
539
634
  msgid "New password"
540
635
  msgstr "Új jelszó"
541
636
 
542
- #: templates/umap/password_change.html:26
637
+ #: templates/umap/password_change.html:30
543
638
  msgid "New password confirmation"
544
639
  msgstr "Új jelszó ismét"
545
640
 
546
- #: templates/umap/password_change.html:27
641
+ #: templates/umap/password_change.html:31
547
642
  msgid "Change my password"
548
643
  msgstr "Jelszavam módosítása"
549
644
 
550
- #: templates/umap/password_change_done.html:7
645
+ #: templates/umap/password_change_done.html:6
646
+ #: templates/umap/password_change_done.html:11
551
647
  msgid "Password change successful"
552
648
  msgstr "A jelszómódosítás sikeres"
553
649
 
554
- #: templates/umap/password_change_done.html:10
650
+ #: templates/umap/password_change_done.html:14
555
651
  msgid "Your password was changed."
556
652
  msgstr "A jelszava megváltozott."
557
653
 
558
- #: templates/umap/search.html:15
654
+ #: templates/umap/search.html:6
655
+ msgid "Explore maps"
656
+ msgstr "Térképek felfedezése"
657
+
658
+ #: templates/umap/search.html:19
559
659
  #, python-format
560
660
  msgid "%(count)s map found:"
561
661
  msgid_plural "%(count)s maps found:"
562
662
  msgstr[0] "%(count)s térképet találtunk:"
563
663
  msgstr[1] "%(count)s térképet találtunk:"
564
664
 
565
- #: templates/umap/search.html:24
665
+ #: templates/umap/search.html:30
566
666
  msgid "No map found."
567
667
  msgstr "Nem található ilyen térkép."
568
668
 
569
- #: templates/umap/search.html:29
669
+ #: templates/umap/search.html:35
570
670
  msgid "Latest created maps"
571
671
  msgstr "Legutóbb létrehozott térképek"
572
672
 
@@ -574,25 +674,42 @@ msgstr "Legutóbb létrehozott térképek"
574
674
  msgid "Search maps"
575
675
  msgstr "Térképek keresése"
576
676
 
577
- #: templates/umap/search_bar.html:15
677
+ #: templates/umap/search_bar.html:14
678
+ msgid "Any category"
679
+ msgstr ""
680
+
681
+ #: templates/umap/search_bar.html:19
578
682
  msgid "Search"
579
683
  msgstr "Keresés"
580
684
 
581
- #: templates/umap/team_detail.html:10
685
+ #: templates/umap/team_confirm_delete.html:6
686
+ msgid "Team deletion"
687
+ msgstr "Csoport törlése"
688
+
689
+ #: templates/umap/team_detail.html:6
690
+ #, python-format
691
+ msgid "%(current_team)s’s maps"
692
+ msgstr "%(current_team)s csoport térképei"
693
+
694
+ #: templates/umap/team_detail.html:14
582
695
  #, python-format
583
696
  msgid "Browse %(current_team)s's maps"
584
697
  msgstr "%(current_team)s csoport térképeinek böngészése"
585
698
 
586
- #: templates/umap/team_detail.html:22
699
+ #: templates/umap/team_detail.html:26
587
700
  #, python-format
588
701
  msgid "%(current_team)s has no public maps."
589
702
  msgstr "%(current_team)s csoportnak nincs nyilvános térképe."
590
703
 
591
- #: templates/umap/team_form.html:24
704
+ #: templates/umap/team_form.html:6
705
+ msgid "Create or edit a team"
706
+ msgstr "Csoport létrehozása vagy szerkesztése"
707
+
708
+ #: templates/umap/team_form.html:28
592
709
  msgid "Delete this team"
593
710
  msgstr "Csoport törlése"
594
711
 
595
- #: templates/umap/team_form.html:47
712
+ #: templates/umap/team_form.html:51
596
713
  msgid "Add user"
597
714
  msgstr "Felhasználó hozzáadása"
598
715
 
@@ -613,78 +730,82 @@ msgstr "%(count)s térkép letöltése"
613
730
  msgid "You have no map yet."
614
731
  msgstr "Önnek még nincs térképe."
615
732
 
616
- #: templates/umap/user_teams.html:17
733
+ #: templates/umap/user_teams.html:6
734
+ msgid "My Teams"
735
+ msgstr "Csoportjaim"
736
+
737
+ #: templates/umap/user_teams.html:21
617
738
  msgid "Users"
618
739
  msgstr "Felhasználók"
619
740
 
620
- #: templates/umap/user_teams.html:48
741
+ #: templates/umap/user_teams.html:52
621
742
  msgid "New team"
622
743
  msgstr "Új csoport"
623
744
 
624
- #: views.py:234
745
+ #: views.py:235
625
746
  msgid "Cannot delete a team with more than one member"
626
747
  msgstr "Egynél több tagú csoport nem törölhető"
627
748
 
628
- #: views.py:238
749
+ #: views.py:239
629
750
  #, python-format
630
751
  msgid "Team “%(name)s” has been deleted"
631
752
  msgstr "%(name)s csoport törölve"
632
753
 
633
- #: views.py:442
754
+ #: views.py:449
634
755
  msgid "View the map"
635
756
  msgstr "Térkép megtekintése"
636
757
 
637
- #: views.py:825
758
+ #: views.py:845
638
759
  msgid "See full screen"
639
760
  msgstr "Teljes képernyős nézet megtekintése"
640
761
 
641
- #: views.py:968
762
+ #: views.py:988
642
763
  msgid "Map editors updated with success!"
643
764
  msgstr "A térképszerkesztők sikeresen frissültek."
644
765
 
645
- #: views.py:1004
766
+ #: views.py:1024
646
767
  #, python-format
647
768
  msgid "The uMap edit link for your map: %(map_name)s"
648
769
  msgstr "A térképéhez tartozó uMap szerkesztési link: %(map_name)s"
649
770
 
650
- #: views.py:1007
771
+ #: views.py:1027
651
772
  #, python-format
652
773
  msgid "Here is your secret edit link: %(link)s"
653
774
  msgstr "Az Ön titkos szerkesztési linkje: %(link)s"
654
775
 
655
- #: views.py:1014
776
+ #: views.py:1034
656
777
  #, python-format
657
778
  msgid "Can't send email to %(email)s"
658
779
  msgstr "Nem sikerül e-mailt küldeni ide: %(email)s"
659
780
 
660
- #: views.py:1017
781
+ #: views.py:1037
661
782
  #, python-format
662
783
  msgid "Email sent to %(email)s"
663
784
  msgstr "E-mail elküldve ide: %(email)s"
664
785
 
665
- #: views.py:1028
786
+ #: views.py:1048
666
787
  msgid "Only its owner can delete the map."
667
788
  msgstr "A térképet csak a tulajdonosa törölheti."
668
789
 
669
- #: views.py:1031
790
+ #: views.py:1051
670
791
  msgid "Map successfully deleted."
671
792
  msgstr "Térkép sikeresen törölve."
672
793
 
673
- #: views.py:1057
794
+ #: views.py:1077
674
795
  #, python-format
675
796
  msgid ""
676
797
  "Your map has been cloned! If you want to edit this map from another "
677
798
  "computer, please use this link: %(anonymous_url)s"
678
799
  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"
679
800
 
680
- #: views.py:1062
801
+ #: views.py:1082
681
802
  msgid "Congratulations, your map has been cloned!"
682
803
  msgstr "Gratulálunk, elkészült a térképe másolata!"
683
804
 
684
- #: views.py:1313
805
+ #: views.py:1336
685
806
  msgid "Layer successfully deleted."
686
807
  msgstr "A réteg sikeresen törlődött."
687
808
 
688
- #: views.py:1335
809
+ #: views.py:1358
689
810
  msgid "Permissions updated with success!"
690
811
  msgstr "Az engedélyek sikeresen frissültek!"
Binary file