umap-project 3.0.5__py3-none-any.whl → 3.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of umap-project might be problematic. Click here for more details.
- umap/__init__.py +1 -1
- umap/forms.py +1 -1
- umap/locale/br/LC_MESSAGES/django.mo +0 -0
- umap/locale/br/LC_MESSAGES/django.po +219 -72
- umap/locale/ca/LC_MESSAGES/django.mo +0 -0
- umap/locale/ca/LC_MESSAGES/django.po +286 -95
- umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- umap/locale/cs_CZ/LC_MESSAGES/django.po +211 -65
- umap/locale/da/LC_MESSAGES/django.mo +0 -0
- umap/locale/da/LC_MESSAGES/django.po +394 -202
- umap/locale/de/LC_MESSAGES/django.mo +0 -0
- umap/locale/de/LC_MESSAGES/django.po +146 -75
- umap/locale/el/LC_MESSAGES/django.mo +0 -0
- umap/locale/el/LC_MESSAGES/django.po +125 -59
- umap/locale/en/LC_MESSAGES/django.mo +0 -0
- umap/locale/en/LC_MESSAGES/django.po +124 -58
- umap/locale/es/LC_MESSAGES/django.mo +0 -0
- umap/locale/es/LC_MESSAGES/django.po +125 -59
- umap/locale/et/LC_MESSAGES/django.mo +0 -0
- umap/locale/et/LC_MESSAGES/django.po +210 -64
- umap/locale/eu/LC_MESSAGES/django.mo +0 -0
- umap/locale/eu/LC_MESSAGES/django.po +212 -65
- umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
- umap/locale/fa_IR/LC_MESSAGES/django.po +286 -95
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +125 -59
- umap/locale/gl/LC_MESSAGES/django.mo +0 -0
- umap/locale/gl/LC_MESSAGES/django.po +212 -66
- umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- umap/locale/hu/LC_MESSAGES/django.po +148 -78
- umap/locale/is/LC_MESSAGES/django.mo +0 -0
- umap/locale/is/LC_MESSAGES/django.po +130 -60
- umap/locale/it/LC_MESSAGES/django.mo +0 -0
- umap/locale/it/LC_MESSAGES/django.po +219 -73
- umap/locale/ms/LC_MESSAGES/django.mo +0 -0
- umap/locale/ms/LC_MESSAGES/django.po +289 -98
- umap/locale/nl/LC_MESSAGES/django.mo +0 -0
- umap/locale/nl/LC_MESSAGES/django.po +128 -61
- umap/locale/pl/LC_MESSAGES/django.mo +0 -0
- umap/locale/pl/LC_MESSAGES/django.po +287 -96
- umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- umap/locale/pt/LC_MESSAGES/django.po +211 -65
- umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
- umap/locale/zh_TW/LC_MESSAGES/django.po +212 -66
- umap/management/commands/migrate_to_S3.py +42 -20
- umap/management/commands/purge_old_versions.py +63 -0
- umap/management/commands/switch_user.py +52 -0
- umap/managers.py +29 -2
- umap/middleware.py +1 -1
- umap/migrations/0028_map_is_template.py +21 -0
- umap/models.py +14 -4
- umap/settings/base.py +22 -0
- umap/static/umap/base.css +4 -2
- umap/static/umap/content.css +1 -1
- umap/static/umap/css/dialog.css +5 -2
- umap/static/umap/css/form.css +19 -12
- umap/static/umap/css/icon.css +6 -0
- umap/static/umap/css/importers.css +4 -0
- umap/static/umap/css/panel.css +2 -0
- umap/static/umap/img/16-white.svg +5 -1
- umap/static/umap/img/16.svg +1 -1
- umap/static/umap/img/24-white.svg +3 -2
- umap/static/umap/img/24.svg +3 -4
- umap/static/umap/img/importers/opendata.svg +1 -0
- umap/static/umap/img/source/16-white.svg +8 -4
- umap/static/umap/img/source/16.svg +1 -1
- umap/static/umap/img/source/24-white.svg +5 -4
- umap/static/umap/img/source/24.svg +5 -6
- umap/static/umap/js/components/modal.js +27 -0
- umap/static/umap/js/modules/caption.js +4 -4
- umap/static/umap/js/modules/data/features.js +40 -4
- umap/static/umap/js/modules/data/layer.js +208 -138
- umap/static/umap/js/modules/form/builder.js +6 -14
- umap/static/umap/js/modules/form/fields.js +2 -2
- umap/static/umap/js/modules/help.js +15 -3
- umap/static/umap/js/modules/importer.js +7 -4
- umap/static/umap/js/modules/importers/opendata.js +142 -0
- umap/static/umap/js/modules/permissions.js +3 -3
- umap/static/umap/js/modules/rendering/controls.js +34 -2
- umap/static/umap/js/modules/rendering/icon.js +2 -2
- umap/static/umap/js/modules/rendering/layers/base.js +1 -1
- umap/static/umap/js/modules/rendering/layers/classified.js +55 -49
- umap/static/umap/js/modules/rendering/layers/cluster.js +16 -9
- umap/static/umap/js/modules/rendering/layers/heat.js +13 -11
- umap/static/umap/js/modules/rendering/map.js +5 -0
- umap/static/umap/js/modules/rendering/ui.js +23 -0
- umap/static/umap/js/modules/rules.js +24 -23
- umap/static/umap/js/modules/schema.js +60 -4
- umap/static/umap/js/modules/sync/updaters.js +7 -3
- umap/static/umap/js/modules/tableeditor.js +7 -30
- umap/static/umap/js/modules/templates.js +122 -0
- umap/static/umap/js/modules/ui/bar.js +13 -3
- umap/static/umap/js/modules/ui/panel.js +1 -1
- umap/static/umap/js/modules/umap.js +28 -13
- umap/static/umap/js/umap.controls.js +11 -4
- umap/static/umap/locale/br.js +51 -18
- umap/static/umap/locale/br.json +51 -18
- umap/static/umap/locale/da.js +343 -310
- umap/static/umap/locale/da.json +343 -310
- umap/static/umap/locale/de.js +40 -7
- umap/static/umap/locale/de.json +40 -7
- umap/static/umap/locale/el.js +31 -4
- umap/static/umap/locale/el.json +31 -4
- umap/static/umap/locale/en.js +34 -1
- umap/static/umap/locale/en.json +34 -1
- umap/static/umap/locale/es.js +37 -4
- umap/static/umap/locale/es.json +37 -4
- umap/static/umap/locale/fr.js +34 -1
- umap/static/umap/locale/fr.json +34 -1
- umap/static/umap/locale/hu.js +44 -17
- umap/static/umap/locale/hu.json +44 -17
- umap/static/umap/locale/it.js +74 -41
- umap/static/umap/locale/it.json +74 -41
- umap/static/umap/locale/nl.js +42 -9
- umap/static/umap/locale/nl.json +42 -9
- umap/static/umap/map.css +3 -23
- umap/static/umap/vendors/textpath/leaflet.textpath.js +184 -0
- umap/storage/fs.py +19 -9
- umap/templates/umap/dashboard_menu.html +5 -0
- umap/templates/umap/design_system.html +9 -0
- umap/templates/umap/js.html +3 -0
- umap/templates/umap/map_init.html +3 -1
- umap/templates/umap/map_list.html +2 -2
- umap/templates/umap/map_table.html +18 -18
- umap/templates/umap/user_dashboard.html +9 -58
- umap/templates/umap/user_map_table.html +36 -0
- umap/templates/umap/user_templates.html +19 -0
- umap/templatetags/umap_tags.py +5 -0
- umap/tests/integration/test_basics.py +9 -1
- umap/tests/integration/test_conditional_rules.py +57 -0
- umap/tests/integration/test_datalayer.py +16 -9
- umap/tests/integration/test_edit_marker.py +11 -0
- umap/tests/integration/test_tableeditor.py +42 -7
- umap/tests/integration/test_templates.py +44 -0
- umap/tests/test_dashboard.py +19 -0
- umap/tests/test_purge_old_versions.py +91 -0
- umap/tests/test_switch_user.py +31 -0
- umap/tests/test_views.py +67 -0
- umap/urls.py +7 -1
- umap/views.py +65 -19
- {umap_project-3.0.5.dist-info → umap_project-3.1.0.dist-info}/METADATA +15 -15
- {umap_project-3.0.5.dist-info → umap_project-3.1.0.dist-info}/RECORD +145 -132
- {umap_project-3.0.5.dist-info → umap_project-3.1.0.dist-info}/WHEEL +0 -0
- {umap_project-3.0.5.dist-info → umap_project-3.1.0.dist-info}/entry_points.txt +0 -0
- {umap_project-3.0.5.dist-info → umap_project-3.1.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: 2025-
|
|
12
|
+
"POT-Creation-Date: 2025-06-10 09:19+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:
|
|
46
|
+
#: models.py:63 models.py:503
|
|
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:
|
|
66
|
+
#: models.py:176 models.py:497
|
|
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:
|
|
70
|
+
#: models.py:177 models.py:498
|
|
71
71
|
msgid "Everyone can edit"
|
|
72
72
|
msgstr "Bárki szerkesztheti"
|
|
73
73
|
|
|
74
|
-
#: models.py:180 models.py:
|
|
74
|
+
#: models.py:180 models.py:491
|
|
75
75
|
msgid "Everyone"
|
|
76
76
|
msgstr "Mindenki"
|
|
77
77
|
|
|
78
|
-
#: models.py:181 models.py:190 models.py:
|
|
78
|
+
#: models.py:181 models.py:190 models.py:492
|
|
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:
|
|
82
|
+
#: models.py:182 models.py:493
|
|
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:
|
|
102
|
+
#: models.py:192 models.py:487
|
|
103
103
|
msgid "Deleted"
|
|
104
104
|
msgstr "Törölve"
|
|
105
105
|
|
|
@@ -139,101 +139,125 @@ msgstr "szerkesztők"
|
|
|
139
139
|
msgid "team"
|
|
140
140
|
msgstr "csoport"
|
|
141
141
|
|
|
142
|
-
#: models.py:230 models.py:
|
|
142
|
+
#: models.py:230 models.py:519
|
|
143
143
|
msgid "edit status"
|
|
144
144
|
msgstr "szerkeszthetőség"
|
|
145
145
|
|
|
146
|
-
#: models.py:235 models.py:
|
|
146
|
+
#: models.py:235 models.py:524
|
|
147
147
|
msgid "share status"
|
|
148
148
|
msgstr "megoszthatóság"
|
|
149
149
|
|
|
150
|
-
#: models.py:238 models.py:
|
|
150
|
+
#: models.py:238 models.py:514
|
|
151
151
|
msgid "settings"
|
|
152
152
|
msgstr "beállítások"
|
|
153
153
|
|
|
154
|
-
#: models.py:
|
|
154
|
+
#: models.py:243
|
|
155
|
+
msgid "save as template"
|
|
156
|
+
msgstr ""
|
|
157
|
+
|
|
158
|
+
#: models.py:244
|
|
159
|
+
msgid "This map is a template map."
|
|
160
|
+
msgstr ""
|
|
161
|
+
|
|
162
|
+
#: models.py:420
|
|
155
163
|
msgid "Clone of"
|
|
156
164
|
msgstr "Másolat erről: "
|
|
157
165
|
|
|
158
|
-
#: models.py:
|
|
166
|
+
#: models.py:486 models.py:490 models.py:496
|
|
159
167
|
msgid "Inherit"
|
|
160
168
|
msgstr "Öröklés"
|
|
161
169
|
|
|
162
|
-
#: models.py:
|
|
170
|
+
#: models.py:509
|
|
163
171
|
msgid "display on load"
|
|
164
172
|
msgstr "megjelenítés betöltéskor"
|
|
165
173
|
|
|
166
|
-
#: models.py:
|
|
174
|
+
#: models.py:510
|
|
167
175
|
msgid "Display this layer on load."
|
|
168
176
|
msgstr "Réteg megjelenítése betöltéskor"
|
|
169
177
|
|
|
170
|
-
#: settings/base.py:
|
|
171
|
-
msgid "
|
|
178
|
+
#: settings/base.py:283
|
|
179
|
+
msgid "uMap user documentation"
|
|
172
180
|
msgstr ""
|
|
173
181
|
|
|
174
|
-
#: settings/base.py:
|
|
175
|
-
msgid "
|
|
182
|
+
#: settings/base.py:288
|
|
183
|
+
msgid "Video tutorials"
|
|
176
184
|
msgstr ""
|
|
177
185
|
|
|
178
|
-
#: settings/base.py:
|
|
179
|
-
msgid "
|
|
186
|
+
#: settings/base.py:293
|
|
187
|
+
msgid "OpenStreetMap.org forum"
|
|
180
188
|
msgstr ""
|
|
181
189
|
|
|
182
190
|
#: settings/base.py:298
|
|
183
|
-
msgid "
|
|
191
|
+
msgid "OpenStreetMap France forum"
|
|
184
192
|
msgstr ""
|
|
185
193
|
|
|
186
|
-
#: settings/base.py:
|
|
194
|
+
#: settings/base.py:318
|
|
195
|
+
msgid "Art and Culture"
|
|
196
|
+
msgstr "Művészet és kultúra"
|
|
197
|
+
|
|
198
|
+
#: settings/base.py:319
|
|
199
|
+
msgid "Cycling"
|
|
200
|
+
msgstr "Kerékpározás"
|
|
201
|
+
|
|
202
|
+
#: settings/base.py:320
|
|
203
|
+
msgid "Business"
|
|
204
|
+
msgstr "Üzlet"
|
|
205
|
+
|
|
206
|
+
#: settings/base.py:321
|
|
207
|
+
msgid "Environment"
|
|
208
|
+
msgstr "Környezet"
|
|
209
|
+
|
|
210
|
+
#: settings/base.py:322
|
|
187
211
|
msgid "Education"
|
|
188
|
-
msgstr ""
|
|
212
|
+
msgstr "Oktatás"
|
|
189
213
|
|
|
190
|
-
#: settings/base.py:
|
|
214
|
+
#: settings/base.py:323
|
|
191
215
|
msgid "Food and Agriculture"
|
|
192
|
-
msgstr ""
|
|
216
|
+
msgstr "Élelmiszeripar és mezőgazdaság"
|
|
193
217
|
|
|
194
|
-
#: settings/base.py:
|
|
218
|
+
#: settings/base.py:324
|
|
195
219
|
msgid "Geopolitics"
|
|
196
|
-
msgstr ""
|
|
220
|
+
msgstr "Geopolitika"
|
|
197
221
|
|
|
198
|
-
#: settings/base.py:
|
|
222
|
+
#: settings/base.py:325
|
|
199
223
|
msgid "Health"
|
|
200
|
-
msgstr ""
|
|
224
|
+
msgstr "Egészségügy"
|
|
201
225
|
|
|
202
|
-
#: settings/base.py:
|
|
226
|
+
#: settings/base.py:326
|
|
203
227
|
msgid "Hiking"
|
|
204
|
-
msgstr ""
|
|
228
|
+
msgstr "Túrázás"
|
|
205
229
|
|
|
206
|
-
#: settings/base.py:
|
|
230
|
+
#: settings/base.py:327
|
|
207
231
|
msgid "History"
|
|
208
|
-
msgstr ""
|
|
232
|
+
msgstr "Történelem"
|
|
209
233
|
|
|
210
|
-
#: settings/base.py:
|
|
234
|
+
#: settings/base.py:328
|
|
211
235
|
msgid "Public sector"
|
|
212
|
-
msgstr ""
|
|
236
|
+
msgstr "Közigazgatás"
|
|
213
237
|
|
|
214
|
-
#: settings/base.py:
|
|
238
|
+
#: settings/base.py:329
|
|
215
239
|
msgid "Science"
|
|
216
|
-
msgstr ""
|
|
240
|
+
msgstr "Tudomány"
|
|
217
241
|
|
|
218
|
-
#: settings/base.py:
|
|
242
|
+
#: settings/base.py:330
|
|
219
243
|
msgid "Shopping"
|
|
220
|
-
msgstr ""
|
|
244
|
+
msgstr "Vásárlás"
|
|
221
245
|
|
|
222
|
-
#: settings/base.py:
|
|
246
|
+
#: settings/base.py:331
|
|
223
247
|
msgid "Sport and Leisure"
|
|
224
|
-
msgstr ""
|
|
248
|
+
msgstr "Sport és szabadidő"
|
|
225
249
|
|
|
226
|
-
#: settings/base.py:
|
|
250
|
+
#: settings/base.py:332
|
|
227
251
|
msgid "Travel"
|
|
228
|
-
msgstr ""
|
|
252
|
+
msgstr "Utazás"
|
|
229
253
|
|
|
230
|
-
#: settings/base.py:
|
|
254
|
+
#: settings/base.py:333
|
|
231
255
|
msgid "Transports"
|
|
232
|
-
msgstr ""
|
|
256
|
+
msgstr "Közlekedés"
|
|
233
257
|
|
|
234
|
-
#: settings/base.py:
|
|
258
|
+
#: settings/base.py:334
|
|
235
259
|
msgid "Tourism"
|
|
236
|
-
msgstr ""
|
|
260
|
+
msgstr "Turizmus"
|
|
237
261
|
|
|
238
262
|
#: templates/403.html:8
|
|
239
263
|
msgid ""
|
|
@@ -377,7 +401,7 @@ msgid "And it's <a href=\"%(repo_url)s\">open source</a>!"
|
|
|
377
401
|
msgstr "És mindezt <a href=\"%(repo_url)s\">nyílt forráskóddal</a>!"
|
|
378
402
|
|
|
379
403
|
#: templates/umap/about_summary.html:63 templates/umap/navigation.html:39
|
|
380
|
-
#: templates/umap/user_dashboard.html:
|
|
404
|
+
#: templates/umap/user_dashboard.html:16
|
|
381
405
|
msgid "Create a map"
|
|
382
406
|
msgstr "Térkép készítése"
|
|
383
407
|
|
|
@@ -475,11 +499,20 @@ msgstr "Térképeim (%(count)s)"
|
|
|
475
499
|
msgid "My Maps"
|
|
476
500
|
msgstr "Térképeim"
|
|
477
501
|
|
|
478
|
-
#: templates/umap/dashboard_menu.html:
|
|
502
|
+
#: templates/umap/dashboard_menu.html:11
|
|
503
|
+
#, python-format
|
|
504
|
+
msgid "My Templates (%(count)s)"
|
|
505
|
+
msgstr ""
|
|
506
|
+
|
|
507
|
+
#: templates/umap/dashboard_menu.html:13 templates/umap/user_templates.html:6
|
|
508
|
+
msgid "My Templates"
|
|
509
|
+
msgstr ""
|
|
510
|
+
|
|
511
|
+
#: templates/umap/dashboard_menu.html:17
|
|
479
512
|
msgid "My profile"
|
|
480
513
|
msgstr "Profilom"
|
|
481
514
|
|
|
482
|
-
#: templates/umap/dashboard_menu.html:
|
|
515
|
+
#: templates/umap/dashboard_menu.html:20
|
|
483
516
|
msgid "My teams"
|
|
484
517
|
msgstr "Csoportjaim"
|
|
485
518
|
|
|
@@ -495,14 +528,22 @@ msgstr "Szerezzen ihletet, böngésszen a térképek között!"
|
|
|
495
528
|
msgid "You are logged in. Continuing..."
|
|
496
529
|
msgstr "Be van jelentkezve. Továbblépés…"
|
|
497
530
|
|
|
498
|
-
#: templates/umap/map_list.html:
|
|
531
|
+
#: templates/umap/map_list.html:15
|
|
532
|
+
msgid "template"
|
|
533
|
+
msgstr ""
|
|
534
|
+
|
|
535
|
+
#: templates/umap/map_list.html:18 views.py:458
|
|
499
536
|
msgid "by"
|
|
500
537
|
msgstr "– készítette:"
|
|
501
538
|
|
|
502
539
|
#: templates/umap/map_list.html:22
|
|
503
|
-
msgid "See the
|
|
540
|
+
msgid "See the template"
|
|
504
541
|
msgstr ""
|
|
505
542
|
|
|
543
|
+
#: templates/umap/map_list.html:22
|
|
544
|
+
msgid "See the map"
|
|
545
|
+
msgstr "Térkép megtekintése"
|
|
546
|
+
|
|
506
547
|
#: templates/umap/map_list.html:28
|
|
507
548
|
msgid "More"
|
|
508
549
|
msgstr "Még több"
|
|
@@ -535,7 +576,7 @@ msgstr "Tulajdonos"
|
|
|
535
576
|
msgid "Actions"
|
|
536
577
|
msgstr "Műveletek"
|
|
537
578
|
|
|
538
|
-
#: templates/umap/map_table.html:
|
|
579
|
+
#: templates/umap/map_table.html:40 templates/umap/map_table.html:42
|
|
539
580
|
msgid "Open preview"
|
|
540
581
|
msgstr "Előnézet"
|
|
541
582
|
|
|
@@ -662,11 +703,15 @@ msgid_plural "%(count)s maps found:"
|
|
|
662
703
|
msgstr[0] "%(count)s térképet találtunk:"
|
|
663
704
|
msgstr[1] "%(count)s térképet találtunk:"
|
|
664
705
|
|
|
665
|
-
#: templates/umap/search.html:30
|
|
706
|
+
#: templates/umap/search.html:30 templates/umap/user_dashboard.html:17
|
|
666
707
|
msgid "No map found."
|
|
667
708
|
msgstr "Nem található ilyen térkép."
|
|
668
709
|
|
|
669
|
-
#: templates/umap/search.html:
|
|
710
|
+
#: templates/umap/search.html:36
|
|
711
|
+
msgid "Latest created maps in category"
|
|
712
|
+
msgstr "Legutóbb létrehozott térképek ebben a kategóriában"
|
|
713
|
+
|
|
714
|
+
#: templates/umap/search.html:43
|
|
670
715
|
msgid "Latest created maps"
|
|
671
716
|
msgstr "Legutóbb létrehozott térképek"
|
|
672
717
|
|
|
@@ -676,7 +721,7 @@ msgstr "Térképek keresése"
|
|
|
676
721
|
|
|
677
722
|
#: templates/umap/search_bar.html:14
|
|
678
723
|
msgid "Any category"
|
|
679
|
-
msgstr ""
|
|
724
|
+
msgstr "Bármely kategória"
|
|
680
725
|
|
|
681
726
|
#: templates/umap/search_bar.html:19
|
|
682
727
|
msgid "Search"
|
|
@@ -713,20 +758,20 @@ msgstr "Csoport törlése"
|
|
|
713
758
|
msgid "Add user"
|
|
714
759
|
msgstr "Felhasználó hozzáadása"
|
|
715
760
|
|
|
716
|
-
#: templates/umap/user_dashboard.html:
|
|
761
|
+
#: templates/umap/user_dashboard.html:10
|
|
717
762
|
msgid "Search my maps"
|
|
718
763
|
msgstr "Saját térkép keresése"
|
|
719
764
|
|
|
720
|
-
#: templates/umap/user_dashboard.html:
|
|
721
|
-
msgid "Map’s
|
|
722
|
-
msgstr "
|
|
765
|
+
#: templates/umap/user_dashboard.html:11
|
|
766
|
+
msgid "Map’s name"
|
|
767
|
+
msgstr ""
|
|
723
768
|
|
|
724
|
-
#: templates/umap/user_dashboard.html:
|
|
769
|
+
#: templates/umap/user_dashboard.html:12
|
|
725
770
|
#, python-format
|
|
726
771
|
msgid "Download %(count)s maps"
|
|
727
772
|
msgstr "%(count)s térkép letöltése"
|
|
728
773
|
|
|
729
|
-
#: templates/umap/user_dashboard.html:
|
|
774
|
+
#: templates/umap/user_dashboard.html:15
|
|
730
775
|
msgid "You have no map yet."
|
|
731
776
|
msgstr "Önnek még nincs térképe."
|
|
732
777
|
|
|
@@ -742,70 +787,95 @@ msgstr "Felhasználók"
|
|
|
742
787
|
msgid "New team"
|
|
743
788
|
msgstr "Új csoport"
|
|
744
789
|
|
|
745
|
-
#:
|
|
790
|
+
#: templates/umap/user_templates.html:10
|
|
791
|
+
msgid "Search my templates"
|
|
792
|
+
msgstr ""
|
|
793
|
+
|
|
794
|
+
#: templates/umap/user_templates.html:11
|
|
795
|
+
msgid "Template’s name"
|
|
796
|
+
msgstr ""
|
|
797
|
+
|
|
798
|
+
#: templates/umap/user_templates.html:12
|
|
799
|
+
#, python-format
|
|
800
|
+
msgid "Download %(count)s templates"
|
|
801
|
+
msgstr ""
|
|
802
|
+
|
|
803
|
+
#: templates/umap/user_templates.html:15
|
|
804
|
+
msgid "You have no template yet."
|
|
805
|
+
msgstr ""
|
|
806
|
+
|
|
807
|
+
#: templates/umap/user_templates.html:16
|
|
808
|
+
msgid "Create a template"
|
|
809
|
+
msgstr ""
|
|
810
|
+
|
|
811
|
+
#: templates/umap/user_templates.html:17
|
|
812
|
+
msgid "No template found."
|
|
813
|
+
msgstr ""
|
|
814
|
+
|
|
815
|
+
#: views.py:233
|
|
746
816
|
msgid "Cannot delete a team with more than one member"
|
|
747
817
|
msgstr "Egynél több tagú csoport nem törölhető"
|
|
748
818
|
|
|
749
|
-
#: views.py:
|
|
819
|
+
#: views.py:237
|
|
750
820
|
#, python-format
|
|
751
821
|
msgid "Team “%(name)s” has been deleted"
|
|
752
822
|
msgstr "%(name)s csoport törölve"
|
|
753
823
|
|
|
754
|
-
#: views.py:
|
|
824
|
+
#: views.py:463
|
|
755
825
|
msgid "View the map"
|
|
756
826
|
msgstr "Térkép megtekintése"
|
|
757
827
|
|
|
758
|
-
#: views.py:
|
|
828
|
+
#: views.py:864
|
|
759
829
|
msgid "See full screen"
|
|
760
830
|
msgstr "Teljes képernyős nézet megtekintése"
|
|
761
831
|
|
|
762
|
-
#: views.py:
|
|
832
|
+
#: views.py:1007
|
|
763
833
|
msgid "Map editors updated with success!"
|
|
764
834
|
msgstr "A térképszerkesztők sikeresen frissültek."
|
|
765
835
|
|
|
766
|
-
#: views.py:
|
|
836
|
+
#: views.py:1043
|
|
767
837
|
#, python-format
|
|
768
838
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
769
839
|
msgstr "A térképéhez tartozó uMap szerkesztési link: %(map_name)s"
|
|
770
840
|
|
|
771
|
-
#: views.py:
|
|
841
|
+
#: views.py:1046
|
|
772
842
|
#, python-format
|
|
773
843
|
msgid "Here is your secret edit link: %(link)s"
|
|
774
844
|
msgstr "Az Ön titkos szerkesztési linkje: %(link)s"
|
|
775
845
|
|
|
776
|
-
#: views.py:
|
|
846
|
+
#: views.py:1053
|
|
777
847
|
#, python-format
|
|
778
848
|
msgid "Can't send email to %(email)s"
|
|
779
849
|
msgstr "Nem sikerül e-mailt küldeni ide: %(email)s"
|
|
780
850
|
|
|
781
|
-
#: views.py:
|
|
851
|
+
#: views.py:1056
|
|
782
852
|
#, python-format
|
|
783
853
|
msgid "Email sent to %(email)s"
|
|
784
854
|
msgstr "E-mail elküldve ide: %(email)s"
|
|
785
855
|
|
|
786
|
-
#: views.py:
|
|
856
|
+
#: views.py:1067
|
|
787
857
|
msgid "Only its owner can delete the map."
|
|
788
858
|
msgstr "A térképet csak a tulajdonosa törölheti."
|
|
789
859
|
|
|
790
|
-
#: views.py:
|
|
860
|
+
#: views.py:1073
|
|
791
861
|
msgid "Map successfully deleted."
|
|
792
862
|
msgstr "Térkép sikeresen törölve."
|
|
793
863
|
|
|
794
|
-
#: views.py:
|
|
864
|
+
#: views.py:1099
|
|
795
865
|
#, python-format
|
|
796
866
|
msgid ""
|
|
797
867
|
"Your map has been cloned! If you want to edit this map from another "
|
|
798
868
|
"computer, please use this link: %(anonymous_url)s"
|
|
799
869
|
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"
|
|
800
870
|
|
|
801
|
-
#: views.py:
|
|
871
|
+
#: views.py:1104
|
|
802
872
|
msgid "Congratulations, your map has been cloned!"
|
|
803
873
|
msgstr "Gratulálunk, elkészült a térképe másolata!"
|
|
804
874
|
|
|
805
|
-
#: views.py:
|
|
875
|
+
#: views.py:1358
|
|
806
876
|
msgid "Layer successfully deleted."
|
|
807
877
|
msgstr "A réteg sikeresen törlődött."
|
|
808
878
|
|
|
809
|
-
#: views.py:
|
|
879
|
+
#: views.py:1380
|
|
810
880
|
msgid "Permissions updated with success!"
|
|
811
881
|
msgstr "Az engedélyek sikeresen frissültek!"
|
|
Binary file
|