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.

Files changed (145) hide show
  1. umap/__init__.py +1 -1
  2. umap/forms.py +1 -1
  3. umap/locale/br/LC_MESSAGES/django.mo +0 -0
  4. umap/locale/br/LC_MESSAGES/django.po +219 -72
  5. umap/locale/ca/LC_MESSAGES/django.mo +0 -0
  6. umap/locale/ca/LC_MESSAGES/django.po +286 -95
  7. umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
  8. umap/locale/cs_CZ/LC_MESSAGES/django.po +211 -65
  9. umap/locale/da/LC_MESSAGES/django.mo +0 -0
  10. umap/locale/da/LC_MESSAGES/django.po +394 -202
  11. umap/locale/de/LC_MESSAGES/django.mo +0 -0
  12. umap/locale/de/LC_MESSAGES/django.po +146 -75
  13. umap/locale/el/LC_MESSAGES/django.mo +0 -0
  14. umap/locale/el/LC_MESSAGES/django.po +125 -59
  15. umap/locale/en/LC_MESSAGES/django.mo +0 -0
  16. umap/locale/en/LC_MESSAGES/django.po +124 -58
  17. umap/locale/es/LC_MESSAGES/django.mo +0 -0
  18. umap/locale/es/LC_MESSAGES/django.po +125 -59
  19. umap/locale/et/LC_MESSAGES/django.mo +0 -0
  20. umap/locale/et/LC_MESSAGES/django.po +210 -64
  21. umap/locale/eu/LC_MESSAGES/django.mo +0 -0
  22. umap/locale/eu/LC_MESSAGES/django.po +212 -65
  23. umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
  24. umap/locale/fa_IR/LC_MESSAGES/django.po +286 -95
  25. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  26. umap/locale/fr/LC_MESSAGES/django.po +125 -59
  27. umap/locale/gl/LC_MESSAGES/django.mo +0 -0
  28. umap/locale/gl/LC_MESSAGES/django.po +212 -66
  29. umap/locale/hu/LC_MESSAGES/django.mo +0 -0
  30. umap/locale/hu/LC_MESSAGES/django.po +148 -78
  31. umap/locale/is/LC_MESSAGES/django.mo +0 -0
  32. umap/locale/is/LC_MESSAGES/django.po +130 -60
  33. umap/locale/it/LC_MESSAGES/django.mo +0 -0
  34. umap/locale/it/LC_MESSAGES/django.po +219 -73
  35. umap/locale/ms/LC_MESSAGES/django.mo +0 -0
  36. umap/locale/ms/LC_MESSAGES/django.po +289 -98
  37. umap/locale/nl/LC_MESSAGES/django.mo +0 -0
  38. umap/locale/nl/LC_MESSAGES/django.po +128 -61
  39. umap/locale/pl/LC_MESSAGES/django.mo +0 -0
  40. umap/locale/pl/LC_MESSAGES/django.po +287 -96
  41. umap/locale/pt/LC_MESSAGES/django.mo +0 -0
  42. umap/locale/pt/LC_MESSAGES/django.po +211 -65
  43. umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
  44. umap/locale/zh_TW/LC_MESSAGES/django.po +212 -66
  45. umap/management/commands/migrate_to_S3.py +42 -20
  46. umap/management/commands/purge_old_versions.py +63 -0
  47. umap/management/commands/switch_user.py +52 -0
  48. umap/managers.py +29 -2
  49. umap/middleware.py +1 -1
  50. umap/migrations/0028_map_is_template.py +21 -0
  51. umap/models.py +14 -4
  52. umap/settings/base.py +22 -0
  53. umap/static/umap/base.css +4 -2
  54. umap/static/umap/content.css +1 -1
  55. umap/static/umap/css/dialog.css +5 -2
  56. umap/static/umap/css/form.css +19 -12
  57. umap/static/umap/css/icon.css +6 -0
  58. umap/static/umap/css/importers.css +4 -0
  59. umap/static/umap/css/panel.css +2 -0
  60. umap/static/umap/img/16-white.svg +5 -1
  61. umap/static/umap/img/16.svg +1 -1
  62. umap/static/umap/img/24-white.svg +3 -2
  63. umap/static/umap/img/24.svg +3 -4
  64. umap/static/umap/img/importers/opendata.svg +1 -0
  65. umap/static/umap/img/source/16-white.svg +8 -4
  66. umap/static/umap/img/source/16.svg +1 -1
  67. umap/static/umap/img/source/24-white.svg +5 -4
  68. umap/static/umap/img/source/24.svg +5 -6
  69. umap/static/umap/js/components/modal.js +27 -0
  70. umap/static/umap/js/modules/caption.js +4 -4
  71. umap/static/umap/js/modules/data/features.js +40 -4
  72. umap/static/umap/js/modules/data/layer.js +208 -138
  73. umap/static/umap/js/modules/form/builder.js +6 -14
  74. umap/static/umap/js/modules/form/fields.js +2 -2
  75. umap/static/umap/js/modules/help.js +15 -3
  76. umap/static/umap/js/modules/importer.js +7 -4
  77. umap/static/umap/js/modules/importers/opendata.js +142 -0
  78. umap/static/umap/js/modules/permissions.js +3 -3
  79. umap/static/umap/js/modules/rendering/controls.js +34 -2
  80. umap/static/umap/js/modules/rendering/icon.js +2 -2
  81. umap/static/umap/js/modules/rendering/layers/base.js +1 -1
  82. umap/static/umap/js/modules/rendering/layers/classified.js +55 -49
  83. umap/static/umap/js/modules/rendering/layers/cluster.js +16 -9
  84. umap/static/umap/js/modules/rendering/layers/heat.js +13 -11
  85. umap/static/umap/js/modules/rendering/map.js +5 -0
  86. umap/static/umap/js/modules/rendering/ui.js +23 -0
  87. umap/static/umap/js/modules/rules.js +24 -23
  88. umap/static/umap/js/modules/schema.js +60 -4
  89. umap/static/umap/js/modules/sync/updaters.js +7 -3
  90. umap/static/umap/js/modules/tableeditor.js +7 -30
  91. umap/static/umap/js/modules/templates.js +122 -0
  92. umap/static/umap/js/modules/ui/bar.js +13 -3
  93. umap/static/umap/js/modules/ui/panel.js +1 -1
  94. umap/static/umap/js/modules/umap.js +28 -13
  95. umap/static/umap/js/umap.controls.js +11 -4
  96. umap/static/umap/locale/br.js +51 -18
  97. umap/static/umap/locale/br.json +51 -18
  98. umap/static/umap/locale/da.js +343 -310
  99. umap/static/umap/locale/da.json +343 -310
  100. umap/static/umap/locale/de.js +40 -7
  101. umap/static/umap/locale/de.json +40 -7
  102. umap/static/umap/locale/el.js +31 -4
  103. umap/static/umap/locale/el.json +31 -4
  104. umap/static/umap/locale/en.js +34 -1
  105. umap/static/umap/locale/en.json +34 -1
  106. umap/static/umap/locale/es.js +37 -4
  107. umap/static/umap/locale/es.json +37 -4
  108. umap/static/umap/locale/fr.js +34 -1
  109. umap/static/umap/locale/fr.json +34 -1
  110. umap/static/umap/locale/hu.js +44 -17
  111. umap/static/umap/locale/hu.json +44 -17
  112. umap/static/umap/locale/it.js +74 -41
  113. umap/static/umap/locale/it.json +74 -41
  114. umap/static/umap/locale/nl.js +42 -9
  115. umap/static/umap/locale/nl.json +42 -9
  116. umap/static/umap/map.css +3 -23
  117. umap/static/umap/vendors/textpath/leaflet.textpath.js +184 -0
  118. umap/storage/fs.py +19 -9
  119. umap/templates/umap/dashboard_menu.html +5 -0
  120. umap/templates/umap/design_system.html +9 -0
  121. umap/templates/umap/js.html +3 -0
  122. umap/templates/umap/map_init.html +3 -1
  123. umap/templates/umap/map_list.html +2 -2
  124. umap/templates/umap/map_table.html +18 -18
  125. umap/templates/umap/user_dashboard.html +9 -58
  126. umap/templates/umap/user_map_table.html +36 -0
  127. umap/templates/umap/user_templates.html +19 -0
  128. umap/templatetags/umap_tags.py +5 -0
  129. umap/tests/integration/test_basics.py +9 -1
  130. umap/tests/integration/test_conditional_rules.py +57 -0
  131. umap/tests/integration/test_datalayer.py +16 -9
  132. umap/tests/integration/test_edit_marker.py +11 -0
  133. umap/tests/integration/test_tableeditor.py +42 -7
  134. umap/tests/integration/test_templates.py +44 -0
  135. umap/tests/test_dashboard.py +19 -0
  136. umap/tests/test_purge_old_versions.py +91 -0
  137. umap/tests/test_switch_user.py +31 -0
  138. umap/tests/test_views.py +67 -0
  139. umap/urls.py +7 -1
  140. umap/views.py +65 -19
  141. {umap_project-3.0.5.dist-info → umap_project-3.1.0.dist-info}/METADATA +15 -15
  142. {umap_project-3.0.5.dist-info → umap_project-3.1.0.dist-info}/RECORD +145 -132
  143. {umap_project-3.0.5.dist-info → umap_project-3.1.0.dist-info}/WHEEL +0 -0
  144. {umap_project-3.0.5.dist-info → umap_project-3.1.0.dist-info}/entry_points.txt +0 -0
  145. {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-04-04 16:49+0000\n"
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:493
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:487
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:488
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:481
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:482
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:483
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:477
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:509
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:514
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:504
150
+ #: models.py:238 models.py:514
151
151
  msgid "settings"
152
152
  msgstr "beállítások"
153
153
 
154
- #: models.py:410
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:476 models.py:480 models.py:486
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:499
170
+ #: models.py:509
163
171
  msgid "display on load"
164
172
  msgstr "megjelenítés betöltéskor"
165
173
 
166
- #: models.py:500
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:295
171
- msgid "Art and Culture"
178
+ #: settings/base.py:283
179
+ msgid "uMap user documentation"
172
180
  msgstr ""
173
181
 
174
- #: settings/base.py:296
175
- msgid "Cycling"
182
+ #: settings/base.py:288
183
+ msgid "Video tutorials"
176
184
  msgstr ""
177
185
 
178
- #: settings/base.py:297
179
- msgid "Business"
186
+ #: settings/base.py:293
187
+ msgid "OpenStreetMap.org forum"
180
188
  msgstr ""
181
189
 
182
190
  #: settings/base.py:298
183
- msgid "Environment"
191
+ msgid "OpenStreetMap France forum"
184
192
  msgstr ""
185
193
 
186
- #: settings/base.py:299
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:300
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:301
218
+ #: settings/base.py:324
195
219
  msgid "Geopolitics"
196
- msgstr ""
220
+ msgstr "Geopolitika"
197
221
 
198
- #: settings/base.py:302
222
+ #: settings/base.py:325
199
223
  msgid "Health"
200
- msgstr ""
224
+ msgstr "Egészségügy"
201
225
 
202
- #: settings/base.py:303
226
+ #: settings/base.py:326
203
227
  msgid "Hiking"
204
- msgstr ""
228
+ msgstr "Túrázás"
205
229
 
206
- #: settings/base.py:304
230
+ #: settings/base.py:327
207
231
  msgid "History"
208
- msgstr ""
232
+ msgstr "Történelem"
209
233
 
210
- #: settings/base.py:305
234
+ #: settings/base.py:328
211
235
  msgid "Public sector"
212
- msgstr ""
236
+ msgstr "Közigazgatás"
213
237
 
214
- #: settings/base.py:306
238
+ #: settings/base.py:329
215
239
  msgid "Science"
216
- msgstr ""
240
+ msgstr "Tudomány"
217
241
 
218
- #: settings/base.py:307
242
+ #: settings/base.py:330
219
243
  msgid "Shopping"
220
- msgstr ""
244
+ msgstr "Vásárlás"
221
245
 
222
- #: settings/base.py:308
246
+ #: settings/base.py:331
223
247
  msgid "Sport and Leisure"
224
- msgstr ""
248
+ msgstr "Sport és szabadidő"
225
249
 
226
- #: settings/base.py:309
250
+ #: settings/base.py:332
227
251
  msgid "Travel"
228
- msgstr ""
252
+ msgstr "Utazás"
229
253
 
230
- #: settings/base.py:310
254
+ #: settings/base.py:333
231
255
  msgid "Transports"
232
- msgstr ""
256
+ msgstr "Közlekedés"
233
257
 
234
- #: settings/base.py:311
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:40
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:12
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:15
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:18 views.py:444
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 map"
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:41 templates/umap/map_table.html:43
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:35
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:9 templates/umap/user_dashboard.html:25
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:17 templates/umap/user_dashboard.html:22
721
- msgid "Map’s title"
722
- msgstr "Térkép címe"
765
+ #: templates/umap/user_dashboard.html:11
766
+ msgid "Map’s name"
767
+ msgstr ""
723
768
 
724
- #: templates/umap/user_dashboard.html:30
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:40
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
- #: views.py:235
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:239
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:449
824
+ #: views.py:463
755
825
  msgid "View the map"
756
826
  msgstr "Térkép megtekintése"
757
827
 
758
- #: views.py:845
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:988
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:1024
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:1027
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:1034
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:1037
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:1048
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:1051
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:1077
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:1082
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:1336
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:1358
879
+ #: views.py:1380
810
880
  msgid "Permissions updated with success!"
811
881
  msgstr "Az engedélyek sikeresen frissültek!"
Binary file