umap-project 2.1.3__py3-none-any.whl → 2.2.0b0__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 (196) hide show
  1. umap/__init__.py +1 -1
  2. umap/context_processors.py +1 -0
  3. umap/locale/br/LC_MESSAGES/django.mo +0 -0
  4. umap/locale/en/LC_MESSAGES/django.po +32 -32
  5. umap/locale/hu/LC_MESSAGES/django.mo +0 -0
  6. umap/locale/it/LC_MESSAGES/django.mo +0 -0
  7. umap/locale/ms/LC_MESSAGES/django.mo +0 -0
  8. umap/migrations/0020_alter_tilelayer_url_template.py +19 -0
  9. umap/migrations/0021_remove_map_description.py +16 -0
  10. umap/models.py +8 -6
  11. umap/settings/base.py +1 -0
  12. umap/static/umap/base.css +29 -151
  13. umap/static/umap/content.css +7 -25
  14. umap/static/umap/css/icon.css +112 -0
  15. umap/static/umap/css/panel.css +140 -0
  16. umap/static/umap/img/16-white.svg +5 -1
  17. umap/static/umap/img/16.svg +7 -4
  18. umap/static/umap/img/24-white.svg +3 -1
  19. umap/static/umap/img/24.svg +3 -4
  20. umap/static/umap/img/source/16-white.svg +176 -940
  21. umap/static/umap/img/source/16.svg +8 -5
  22. umap/static/umap/img/source/24-white.svg +5 -3
  23. umap/static/umap/img/source/24.svg +6 -7
  24. umap/static/umap/js/modules/browser.js +82 -73
  25. umap/static/umap/js/modules/dompurify.js +12 -0
  26. umap/static/umap/js/modules/facets.js +148 -0
  27. umap/static/umap/js/modules/global.js +9 -1
  28. umap/static/umap/js/modules/i18n.js +7 -0
  29. umap/static/umap/js/modules/orderable.js +84 -0
  30. umap/static/umap/js/modules/panel.js +76 -0
  31. umap/static/umap/js/modules/request.js +0 -1
  32. umap/static/umap/js/modules/schema.js +324 -223
  33. umap/static/umap/js/modules/urls.js +1 -16
  34. umap/static/umap/js/modules/utils.js +340 -0
  35. umap/static/umap/js/umap.controls.js +183 -330
  36. umap/static/umap/js/umap.core.js +60 -364
  37. umap/static/umap/js/umap.datalayer.permissions.js +1 -1
  38. umap/static/umap/js/umap.features.js +60 -40
  39. umap/static/umap/js/umap.forms.js +111 -25
  40. umap/static/umap/js/umap.icon.js +11 -4
  41. umap/static/umap/js/umap.importer.js +24 -17
  42. umap/static/umap/js/umap.js +170 -145
  43. umap/static/umap/js/umap.layer.js +71 -40
  44. umap/static/umap/js/umap.permissions.js +9 -11
  45. umap/static/umap/js/umap.popup.js +10 -21
  46. umap/static/umap/js/umap.share.js +11 -8
  47. umap/static/umap/js/umap.tableeditor.js +4 -6
  48. umap/static/umap/js/umap.ui.js +0 -51
  49. umap/static/umap/locale/am_ET.js +242 -227
  50. umap/static/umap/locale/am_ET.json +18 -7
  51. umap/static/umap/locale/ar.js +242 -227
  52. umap/static/umap/locale/ar.json +18 -7
  53. umap/static/umap/locale/ast.js +242 -227
  54. umap/static/umap/locale/ast.json +18 -7
  55. umap/static/umap/locale/bg.js +242 -227
  56. umap/static/umap/locale/bg.json +18 -7
  57. umap/static/umap/locale/br.js +252 -237
  58. umap/static/umap/locale/br.json +22 -11
  59. umap/static/umap/locale/ca.js +242 -227
  60. umap/static/umap/locale/ca.json +18 -7
  61. umap/static/umap/locale/cs_CZ.js +242 -227
  62. umap/static/umap/locale/cs_CZ.json +18 -7
  63. umap/static/umap/locale/da.js +242 -227
  64. umap/static/umap/locale/da.json +18 -7
  65. umap/static/umap/locale/de.js +242 -227
  66. umap/static/umap/locale/de.json +18 -7
  67. umap/static/umap/locale/el.js +242 -227
  68. umap/static/umap/locale/el.json +18 -7
  69. umap/static/umap/locale/en.js +242 -234
  70. umap/static/umap/locale/en.json +19 -8
  71. umap/static/umap/locale/en_US.json +18 -7
  72. umap/static/umap/locale/es.js +242 -227
  73. umap/static/umap/locale/es.json +18 -7
  74. umap/static/umap/locale/et.js +242 -227
  75. umap/static/umap/locale/et.json +18 -7
  76. umap/static/umap/locale/eu.js +227 -199
  77. umap/static/umap/locale/eu.json +1 -1
  78. umap/static/umap/locale/fa_IR.js +242 -227
  79. umap/static/umap/locale/fa_IR.json +18 -7
  80. umap/static/umap/locale/fi.js +242 -227
  81. umap/static/umap/locale/fi.json +18 -7
  82. umap/static/umap/locale/fr.js +242 -234
  83. umap/static/umap/locale/fr.json +18 -7
  84. umap/static/umap/locale/gl.js +242 -227
  85. umap/static/umap/locale/gl.json +18 -7
  86. umap/static/umap/locale/he.js +242 -227
  87. umap/static/umap/locale/he.json +18 -7
  88. umap/static/umap/locale/hr.js +242 -227
  89. umap/static/umap/locale/hr.json +18 -7
  90. umap/static/umap/locale/hu.js +242 -234
  91. umap/static/umap/locale/hu.json +18 -7
  92. umap/static/umap/locale/id.js +242 -227
  93. umap/static/umap/locale/id.json +18 -7
  94. umap/static/umap/locale/is.js +242 -227
  95. umap/static/umap/locale/is.json +18 -7
  96. umap/static/umap/locale/it.js +242 -234
  97. umap/static/umap/locale/it.json +18 -7
  98. umap/static/umap/locale/ja.js +242 -227
  99. umap/static/umap/locale/ja.json +18 -7
  100. umap/static/umap/locale/ko.js +242 -227
  101. umap/static/umap/locale/ko.json +18 -7
  102. umap/static/umap/locale/lt.js +242 -227
  103. umap/static/umap/locale/lt.json +18 -7
  104. umap/static/umap/locale/ms.js +242 -234
  105. umap/static/umap/locale/ms.json +19 -8
  106. umap/static/umap/locale/nl.js +245 -230
  107. umap/static/umap/locale/nl.json +18 -7
  108. umap/static/umap/locale/no.js +242 -227
  109. umap/static/umap/locale/no.json +18 -7
  110. umap/static/umap/locale/pl.js +242 -227
  111. umap/static/umap/locale/pl.json +18 -7
  112. umap/static/umap/locale/pl_PL.json +18 -7
  113. umap/static/umap/locale/pt.js +242 -227
  114. umap/static/umap/locale/pt.json +18 -7
  115. umap/static/umap/locale/pt_BR.js +242 -227
  116. umap/static/umap/locale/pt_BR.json +18 -7
  117. umap/static/umap/locale/pt_PT.js +242 -227
  118. umap/static/umap/locale/pt_PT.json +18 -7
  119. umap/static/umap/locale/ro.js +242 -227
  120. umap/static/umap/locale/ro.json +18 -7
  121. umap/static/umap/locale/ru.js +242 -227
  122. umap/static/umap/locale/ru.json +18 -7
  123. umap/static/umap/locale/si.js +1 -1
  124. umap/static/umap/locale/si.json +1 -1
  125. umap/static/umap/locale/sk_SK.js +242 -227
  126. umap/static/umap/locale/sk_SK.json +18 -7
  127. umap/static/umap/locale/sl.js +242 -227
  128. umap/static/umap/locale/sl.json +18 -7
  129. umap/static/umap/locale/sr.js +242 -227
  130. umap/static/umap/locale/sr.json +18 -7
  131. umap/static/umap/locale/sv.js +242 -227
  132. umap/static/umap/locale/sv.json +18 -7
  133. umap/static/umap/locale/th_TH.js +242 -227
  134. umap/static/umap/locale/th_TH.json +18 -7
  135. umap/static/umap/locale/tr.js +242 -227
  136. umap/static/umap/locale/tr.json +18 -7
  137. umap/static/umap/locale/uk_UA.js +242 -227
  138. umap/static/umap/locale/uk_UA.json +18 -7
  139. umap/static/umap/locale/vi.js +242 -227
  140. umap/static/umap/locale/vi.json +18 -7
  141. umap/static/umap/locale/vi_VN.json +18 -7
  142. umap/static/umap/locale/zh.js +242 -227
  143. umap/static/umap/locale/zh.json +18 -7
  144. umap/static/umap/locale/zh_CN.json +18 -7
  145. umap/static/umap/locale/zh_TW.Big5.json +18 -7
  146. umap/static/umap/locale/zh_TW.js +242 -234
  147. umap/static/umap/locale/zh_TW.json +18 -7
  148. umap/static/umap/map.css +114 -265
  149. umap/static/umap/test/DataLayer.js +463 -0
  150. umap/static/umap/test/Feature.js +0 -226
  151. umap/static/umap/test/TableEditor.js +104 -0
  152. umap/static/umap/test/Util.js +0 -521
  153. umap/static/umap/test/index.html +0 -1
  154. umap/static/umap/unittests/URLs.js +1 -1
  155. umap/static/umap/unittests/utils.js +610 -0
  156. umap/static/umap/vars.css +9 -0
  157. umap/static/umap/vendors/dompurify/purify.es.mjs +1525 -0
  158. umap/static/umap/vendors/iconlayers/iconLayers.js +1 -1
  159. umap/templates/umap/css.html +2 -0
  160. umap/templates/umap/js.html +0 -1
  161. umap/templates/umap/map_detail.html +4 -0
  162. umap/templates/umap/map_table.html +12 -10
  163. umap/templatetags/umap_tags.py +5 -0
  164. umap/tests/integration/conftest.py +12 -1
  165. umap/tests/integration/test_anonymous_owned_map.py +6 -5
  166. umap/tests/integration/test_browser.py +12 -25
  167. umap/tests/integration/test_choropleth.py +1 -1
  168. umap/tests/integration/test_dashboard.py +10 -0
  169. umap/tests/integration/test_datalayer.py +8 -6
  170. umap/tests/integration/test_edit_datalayer.py +24 -19
  171. umap/tests/integration/test_edit_map.py +182 -2
  172. umap/tests/integration/test_edit_marker.py +120 -0
  173. umap/tests/integration/test_edit_polygon.py +122 -0
  174. umap/tests/integration/test_facets_browser.py +104 -14
  175. umap/tests/integration/test_import.py +70 -20
  176. umap/tests/integration/test_map.py +19 -17
  177. umap/tests/integration/test_map_list.py +28 -0
  178. umap/tests/integration/test_owned_map.py +10 -10
  179. umap/tests/integration/test_picto.py +5 -5
  180. umap/tests/integration/test_querystring.py +9 -15
  181. umap/tests/integration/test_slideshow.py +0 -5
  182. umap/tests/integration/test_statics.py +3 -2
  183. umap/tests/integration/test_tableeditor.py +1 -5
  184. umap/tests/integration/test_view_marker.py +64 -0
  185. umap/tests/integration/test_view_polygon.py +59 -0
  186. umap/tests/integration/test_view_polyline.py +51 -0
  187. umap/tests/test_map_views.py +13 -0
  188. {umap_project-2.1.3.dist-info → umap_project-2.2.0b0.dist-info}/METADATA +8 -8
  189. {umap_project-2.1.3.dist-info → umap_project-2.2.0b0.dist-info}/RECORD +194 -178
  190. umap/static/umap/vendors/dompurify/purify.min.js +0 -3
  191. umap/static/umap/vendors/dompurify/purify.min.js.map +0 -1
  192. /umap/tests/integration/{test_polygon.py → test_draw_polygon.py} +0 -0
  193. /umap/tests/integration/{test_polyline.py → test_draw_polyline.py} +0 -0
  194. {umap_project-2.1.3.dist-info → umap_project-2.2.0b0.dist-info}/WHEEL +0 -0
  195. {umap_project-2.1.3.dist-info → umap_project-2.2.0b0.dist-info}/entry_points.txt +0 -0
  196. {umap_project-2.1.3.dist-info → umap_project-2.2.0b0.dist-info}/licenses/LICENSE +0 -0
@@ -1,92 +1,33 @@
1
1
  const locale = {
2
- "Allow scroll wheel zoom?": "Engedélyezi-e a görgetést nagyításkor?",
3
- "Automatic": "Automatikus",
4
- "Ball": "Gombostű",
5
- "Cancel": "Mégse",
6
- "Caption": "Cím",
7
- "Choose the data format": "Adatformátum kiválasztása",
8
- "Choose the layer of the feature": "Objektum rétegének kiválasztása",
9
- "Circle": "Kör",
10
- "Clustered": "Csoportosított",
11
- "Data browser": "Adatböngésző",
12
- "Default": "Alapértelmezett",
13
- "Default zoom level": "Alapértelmezett nagyítási szint",
14
- "Default: name": "Alapértelmezett: név",
15
- "Display label": "Felirat megjelenítése",
16
- "Display the control to open OpenStreetMap editor": "Az OpenStreetMap szerkesztő megnyitása vezérlő megjelenítése",
17
- "Display the data layers control": "Adatrétegek vezérlő megjelenítése",
18
- "Display the embed control": "Beágyazás vezérlő megjelenítése",
19
- "Display the fullscreen control": "Teljes képernyő vezérlő megjelenítése",
20
- "Display the locate control": "Saját pozícióhoz igazítás vezérlő megjelenítése",
21
- "Display the measure control": "Mérés vezérlő megjelenítése",
22
- "Display the search control": "Keresés vezérlő megjelenítése",
23
- "Display the tile layers control": "Mozaikrétegek vezérlő megjelenítése",
24
- "Display the zoom control": "Nagyítás vezérlő megjelenítése",
25
- "Do you want to display a caption bar?": "Szeretné megjeleníteni a címsávot?",
26
- "Do you want to display a minimap?": "Szeretne megjeleníteni egy kis térképet?",
27
- "Do you want to display a panel on load?": "Betöltéskor szeretne-e megjeleníteni egy panelt?",
28
- "Do you want to display popup footer?": "Szeretn-e megjeleníteni egy előugró láblécet?",
29
- "Do you want to display the scale control?": "Szeretné megjeleníteni a méretarány vezérlőt?",
30
- "Do you want to display the «more» control?": "Szeretné megjeleníteni a „továbbiak” vezérlőt?",
31
- "Drop": "Csepp",
32
- "GeoRSS (only link)": "GeoRSS (csak link)",
33
- "GeoRSS (title + image)": "GeoRSS (cím + kép)",
34
- "Heatmap": "Intenzitástérkép",
35
- "Icon shape": "Ikon alakja",
36
- "Icon symbol": "Ikonszimbólum",
37
- "Inherit": "Öröklés",
38
- "Label direction": "Felirat iránya",
39
- "Label key": "Felirathoz használt kulcs",
40
- "Labels are clickable": "Kattintható feliratok",
41
- "None": "Semmi",
42
- "On the bottom": "Lent",
43
- "On the left": "Balra",
44
- "On the right": "Jobbra",
45
- "On the top": "Fent",
46
- "Popup content template": "Előugró tartalom sablonja",
47
- "Side panel": "Oldalsó panel",
48
- "Simplify": "Egyszerűsítés",
49
- "Table": "Táblázat",
50
- "always": "mindig",
51
- "clear": "alaphelyzet",
52
- "collapsed": "összecsukva",
53
- "color": "szín",
54
- "dash array": "Szaggatottság mintázata",
55
- "define": "meghatározás",
56
- "description": "leírás",
57
- "expanded": "kiterjesztett",
58
- "fill": "kitöltés",
59
- "fill color": "kitöltés színe",
60
- "fill opacity": "kitöltés átlátszósága",
61
- "hidden": "rejtett",
62
- "iframe": "iframe",
63
- "inherit": "öröklés",
64
- "name": "név",
65
- "never": "soha",
66
- "new window": "új ablak",
67
- "no": "nincs",
68
- "on hover": "rámutatáskor",
69
- "opacity": "átlátszóság",
70
- "parent window": "szülőablak",
71
- "stroke": "körvonal",
72
- "weight": "vastagság",
73
- "yes": "igen",
74
- "{delay} seconds": "{delay} másodperc",
2
+ " (area: {measure})": "(terület: {measure})",
3
+ " (length: {measure})": "(távolság: {measure})",
75
4
  "# one hash for main heading": "# egy számjel: fő címsor",
76
5
  "## two hashes for second heading": "## két számjel: második címsor",
77
6
  "### three hashes for third heading": "### három számjel: harmadik címsor",
78
7
  "**double star for bold**": "**két csillag: félkövér**",
8
+ "*single star for italic*": "*egy csillag: dőlt*",
9
+ "--- for a horizontal rule": "--- vízszintes vonal",
10
+ "1 day": "1 nap",
11
+ "1 hour": "1 óra",
12
+ "5 min": "5 perc",
79
13
  "A comma separated list of numbers that defines the stroke dash pattern. Ex.: \"5, 10, 15\".": "Vesszővel tagolt számsor, amely meghatározza a szaggatott vonalak mintázatát. Például 5,10,15 Ha nem világos, próbálkozz!",
80
14
  "About": "Térkép névjegye",
15
+ "Action not allowed :(": "Nem engedélyezett művelet :(",
81
16
  "Activate slideshow mode": "Diavetítésmód aktiválása",
82
17
  "Add a layer": "Réteg hozzáadása",
83
18
  "Add a line to the current multi": "Vonal hozzáadása a jelenlegi alakzatcsoporthoz",
84
19
  "Add a new property": "Új tulajdonság hozzáadása",
85
20
  "Add a polygon to the current multi": "Sokszög hozzáadása a jelenlegi alakzatcsoporthoz",
21
+ "Add image URL": "Kép URL-je",
22
+ "Add": "Hozzáadás",
86
23
  "Advanced actions": "Speciális műveletek",
87
24
  "Advanced properties": "Speciális tulajdonságok",
25
+ "All data and settings of the map": "A térkép összes adata és beállítása",
88
26
  "All properties are imported.": "Minden tulajdonság importálva lett.",
89
27
  "Allow interactions": "Interakció engedélyezése",
28
+ "Allow scroll wheel zoom?": "Engedélyezi-e a görgetést nagyításkor?",
29
+ "always": "mindig",
30
+ "Animated transitions": "Animált áttűnések",
90
31
  "Are you sure you want to cancel your changes?": "Biztosan elveti a módosításait?",
91
32
  "Are you sure you want to clone this map and all its datalayers?": "Biztosan klónozza a térképet és az összes adatrétegét?",
92
33
  "Are you sure you want to delete the feature?": "Biztosan törölni szeretné ezt az objektumot?",
@@ -95,186 +36,381 @@ const locale = {
95
36
  "Are you sure you want to delete this property on all the features?": "Biztosan törölni szeretné ezt a tulajdonságot az összes objektumról?",
96
37
  "Are you sure you want to restore this version?": "Biztosan ezt a változatot akarja helyreállítani?",
97
38
  "Attach the map to my account": "Térkép csatolása a fiókomhoz",
39
+ "attribution": "szerzőmegjelölés",
98
40
  "Auto": "Automatikus",
41
+ "Automatic": "Automatikus",
99
42
  "Autostart when map is loaded": "Automatikus indulás a térkép betöltése után",
43
+ "Back to preview": "Vissza az előnézethez",
44
+ "Background overlay url": "Háttérbeli fedőréteg URL-je",
45
+ "Ball": "Gombostű",
46
+ "Bring feature to center": "Objektum középre hozása",
100
47
  "Browse data": "Adatok böngészése",
48
+ "by": "- készítette:",
49
+ "Cache proxied request": "Proxy keresztül továbbított gyorsítótárkérés",
101
50
  "Cancel edits": "Szerkesztések elvetése",
51
+ "Cancel": "Mégse",
52
+ "Caption": "Cím",
102
53
  "Center map on your location": "A térkép közepének igazítása a saját pozícióhoz",
103
54
  "Change map background": "Térkép hátterének módosítása",
104
55
  "Change tilelayers": "Mozaikrétegek módosítása",
56
+ "Change": "Módosítás",
105
57
  "Choose a preset": "Előbeállítás kiválasztása",
58
+ "Choose the data format": "Adatformátum kiválasztása",
106
59
  "Choose the format of the data to import": "Importálandó adatok formátumának kiválasztása",
107
60
  "Choose the layer to import in": "Importálandó réteg kiválasztása",
61
+ "Choropleth breakpoints": "Kartogram töréspontjai",
62
+ "Choropleth classes": "Kartogram kategóriái",
63
+ "Choropleth color palette": "Kartogram színskálája",
64
+ "Choropleth mode": "Kartogram mód",
65
+ "Choropleth property value": "Kartogram tulajdonságértékei",
66
+ "Choropleth": "Kartogram",
67
+ "Circle": "Kör",
68
+ "clear": "alaphelyzet",
108
69
  "Click last point to finish shape": "Az alakzat befejezéséhez kattintson az utolsó pontra",
109
70
  "Click to add a marker": "Jelölő hozzáadásához kattintson",
110
71
  "Click to continue drawing": "Kattintson a rajzolás folytatásához",
111
72
  "Click to edit": "Kattintson a szerkesztéshez",
112
73
  "Click to start drawing a line": "Kattintson egy vonal rajzolásához",
113
74
  "Click to start drawing a polygon": "Kattintson egy sokszög rajzolásához",
114
- "Clone": "Klónozás",
115
75
  "Clone of {name}": "{name} klónozása",
116
76
  "Clone this feature": "Objektum klónozása",
117
77
  "Clone this map": "Térkép klónozása",
78
+ "Clone": "Klónozás",
118
79
  "Close": "Bezárás",
80
+ "Clustered": "Csoportosított",
119
81
  "Clustering radius": "Csoportosítás sugara",
82
+ "collapsed": "összecsukva",
83
+ "color": "szín",
84
+ "Comma separated list of numbers, including min and max values.": "Vesszővel tagolt számsor, közte a legkisebb és a legnagyobb értékek.",
85
+ "Comma separated list of properties to use for sorting features. To reverse the sort, put a minus sign (-) before. Eg. mykey,-otherkey.": "A jellemzők sorba rendezéséhez használandó tulajdonságok vesszővel tagolt sora. A sorba rendezés megfordításához tegyen mínusz jelet (-) elé. Például: kulcs,-másikkulcs.",
120
86
  "Comma separated list of properties to use when filtering features": "Tulajdonságok vesszővel tagolt sora, amely objektumok szűrésére használható",
121
87
  "Comma, tab or semi-colon separated values. SRS WGS84 is implied. Only Point geometries are imported. The import will look at the column headers for any mention of «lat» and «lon» at the begining of the header, case insensitive. All other column are imported as properties.": "Vesszővel, pontosvesszővel vagy tabulátorral tagolt értékek a WGS84 referenciarendszer szerint. Csak a pontok pozíciója importálódik. Az import során az oszlopfejlécekben, a címsor kezdetén található „lat” és „long” említések vétetenek figyelembe; kis- vagy nagybetű nem számít. Az összes többi oszlop tulajdonságként importálódik.",
122
- "Continue line": "Vonal folytatása",
88
+ "Congratulations, your map has been created!": "Gratulálunk, a térképe elkészült!",
123
89
  "Continue line (Ctrl+Click)": "Vonal folytatása (Ctrl+Kattintás)",
90
+ "Continue line": "Vonal folytatása",
124
91
  "Coordinates": "Koordináták",
92
+ "Copy link": "Link másolása",
93
+ "copy": "másolás",
125
94
  "Credits": "Alkotók",
95
+ "Current map view": "Jelenlegi térképnézet",
126
96
  "Current view instead of default map view?": "Használja-e a jelenlegi nézetet az alapértelmezett helyett?",
127
97
  "Custom background": "Egyedi háttér",
98
+ "Custom overlay": "Egyedi fedőréteg",
99
+ "dash array": "Szaggatottság mintázata",
100
+ "Data browser": "Adatböngésző",
128
101
  "Data is browsable": "Az adatok böngészhetők",
102
+ "Datalayers": "Adatrétegek",
129
103
  "Default interaction options": "Alapértelmezett interakciós beállítások",
130
104
  "Default properties": "Alapértelmezett tulajdonságok",
131
105
  "Default shape properties": "Alapértelmezett alakzattulajdonságok",
106
+ "Default view": "Alapértelmezett nézet",
107
+ "Default zoom level": "Alapértelmezett nagyítási szint",
108
+ "Default": "Alapértelmezett",
109
+ "Default: name": "Alapértelmezett: név",
132
110
  "Define link to open in a new window on polygon click.": "Link meghatározása, amely megnyílik a sokszögre kattintva.",
111
+ "define": "meghatározás",
133
112
  "Delay between two transitions when in play mode": "Az áttűnések közötti késés lejátszási üzemmódban",
134
- "Delete": "Törlés",
135
113
  "Delete all layers": "Összes réteg törlése",
136
114
  "Delete layer": "Réteg törlése",
137
115
  "Delete this feature": "Objektum törlése",
138
116
  "Delete this property on all the features": "Tulajdonság törlése az összes objektumról",
139
117
  "Delete this shape": "Alakzat törlése",
140
118
  "Delete this vertex (Alt+Click)": "Sarokpont törlése (Alt+Klikk)",
119
+ "Delete": "Törlés",
120
+ "description": "leírás",
121
+ "Direct link": "Közvetlen link",
141
122
  "Directions from here": "Irányok innen",
123
+ "Display label": "Felirat megjelenítése",
142
124
  "Display measure": "Távolságmérő megjelenítése",
125
+ "display name": "név megjelenítése",
143
126
  "Display on load": "Megjelenítés betöltéskor",
127
+ "Display the control to open OpenStreetMap editor": "Az OpenStreetMap szerkesztő megnyitása vezérlő megjelenítése",
128
+ "Display the data layers control": "Adatrétegek vezérlő megjelenítése",
129
+ "Display the embed control": "Beágyazás vezérlő megjelenítése",
130
+ "Display the fullscreen control": "Teljes képernyő vezérlő megjelenítése",
131
+ "Display the locate control": "Saját pozícióhoz igazítás vezérlő megjelenítése",
132
+ "Display the measure control": "Mérés vezérlő megjelenítése",
133
+ "Display the search control": "Keresés vezérlő megjelenítése",
134
+ "Display the star map button": "Térképet megcsillagozó gomb megjelenítése",
135
+ "Display the tile layers control": "Mozaikrétegek vezérlő megjelenítése",
136
+ "Display the zoom control": "Nagyítás vezérlő megjelenítése",
137
+ "Do you want to display a caption bar?": "Szeretné megjeleníteni a címsávot?",
138
+ "Do you want to display a minimap?": "Szeretne megjeleníteni egy kis térképet?",
139
+ "Do you want to display a panel on load?": "Betöltéskor szeretne-e megjeleníteni egy panelt?",
140
+ "Do you want to display caption menus?": "Szeretné megjeleníteni a térkép címsávmenüjét?",
141
+ "Do you want to display popup footer?": "Szeretn-e megjeleníteni egy előugró láblécet?",
142
+ "Do you want to display the scale control?": "Szeretné megjeleníteni a méretarány vezérlőt?",
143
+ "Do you want to display the «more» control?": "Szeretné megjeleníteni a „továbbiak” vezérlőt?",
144
144
  "Download": "Letöltés",
145
145
  "Drag to reorder": "Az átrendezéshez húzza át",
146
146
  "Draw a marker": "Jelölő rajzolása",
147
147
  "Draw a polygon": "Sokszög rajzolása",
148
148
  "Draw a polyline": "Töröttvonal rajzolása",
149
- "Dynamic": "Dinamikus",
149
+ "Drawing": "Rajzolás",
150
+ "Drop": "Csepp",
150
151
  "Dynamic properties": "Dinamikus tulajdonságok",
151
- "Edit": "Szerkesztés",
152
+ "Dynamic": "Dinamikus",
152
153
  "Edit feature's layer": "Objektum rétegének szerkesztése",
153
- "Edit map properties": "Térkép tulajdonságainak szerkesztése",
154
154
  "Edit properties in a table": "Tulajdonságok szerkesztése táblázatban",
155
+ "Edit the title of the map": "Térkép címének szerkesztése",
155
156
  "Edit this feature": "Objektum szerkesztése",
157
+ "Edit": "Szerkesztés",
158
+ "Email": "E-mail",
159
+ "Embed and link options": "Beágyazási és linkelési beállítások",
156
160
  "Embed the map": "Térkép beágyazása",
161
+ "Emoji & Character": "Emoji vagy karakter",
157
162
  "Empty": "Kiürítés",
163
+ "Equidistant": "Azonos távolságok",
164
+ "Error in the overlay URL": "Hiba a fedőréteg URL-jében",
158
165
  "Error in the tilelayer URL": "Hiba a mozaikréteg URL-jében",
159
166
  "Exit Fullscreen": "Kilépés a teljes képernyős nézetből",
167
+ "expanded": "kiterjesztett",
160
168
  "Extract shape to separate feature": "Alakzat kiemelése objektum széválasztásához",
169
+ "Facet keys": "Szűrési tényezők",
170
+ "Facet search": "Szűrés",
171
+ "Feature identifier key": "Feature identifier key",
172
+ "Feature properties": "Objektum tulajdonságai",
161
173
  "Fetch data each time map view changes.": "Adatok beolvasása a térkép nézetének minden egyes változásánál.",
174
+ "fill color": "kitöltés színe",
175
+ "fill opacity": "kitöltés átlátszósága",
176
+ "fill": "kitöltés",
162
177
  "Filter keys": "Szűréshez használt kulcsok",
178
+ "Filter": "Szűrő",
179
+ "Fit all data": "Legyen látható az összes adat",
163
180
  "Format": "Formátum",
164
181
  "From zoom": "Ettől a nagyítási szinttől",
182
+ "full backup": "teljes biztonsági másolat",
183
+ "Generic": "Általános",
184
+ "GeoRSS (only link)": "GeoRSS (csak link)",
185
+ "GeoRSS (title + image)": "GeoRSS (cím + kép)",
186
+ "Go to \"{coords}\"": "Ugrás ide: {coords}",
187
+ "Go to the homepage": "Ugrás a főoldalra",
165
188
  "Go to «{feature}»": "Ugrás ide: «{feature}»",
166
189
  "Heatmap intensity property": "Intenzitástérkép tulajdonságai",
167
190
  "Heatmap radius": "Intenzitástérkép sugara",
191
+ "Heatmap": "Intenzitástérkép",
192
+ "height": "magasság",
168
193
  "Help": "Súgó",
194
+ "hidden": "rejtett",
169
195
  "Hide controls": "Vezérlők elrejtése",
170
196
  "Home": "uMap kezdőlap",
171
197
  "How much to simplify the polyline on each zoom level (more = better performance and smoother look, less = more accurate)": "Mennyire egyszerűsödjék egy töröttvonal az egyes nagyítási fokozatoknál (jobban = jobb teljesítmény és simább kinézet, kevésbé = nagyobb pontosság)",
198
+ "icon opacity": "Ikon átlátszósága",
199
+ "Icon shape": "Ikon alakja",
200
+ "Icon symbol": "Ikonszimbólum",
201
+ "If false, the polygon or line will act as a part of the underlying map.": "Ha hamis, a sokszög vagy vonal az alapul szolgáló térkép részeként viselkedik.",
172
202
  "Iframe with custom height (in px): {{{http://iframe.url.com|height}}}": "Iframe egyedi magassággal (pixel): {{{http://iframe.url.com|magasság}}}",
173
203
  "Iframe with custom height and width (in px): {{{http://iframe.url.com|height*width}}}": "Iframe egyedi magassággal és szélességgel (pixel): {{{http://iframe.url.com|magasság*szélesség}}}",
204
+ "iframe": "iframe",
174
205
  "Iframe: {{{http://iframe.url.com}}}": "Iframe: {{{http://iframe.url.com}}}",
175
206
  "Image with custom width (in px): {{http://image.url.com|width}}": "Kép egyedi szélességgel (pixel): {{http://image.url.com|szélesség}}",
176
207
  "Image: {{http://image.url.com}}": "Kép: {{http://image.url.com}}",
177
- "Import": "Importálás",
178
208
  "Import data": "Adatok importálása",
179
209
  "Import in a new layer": "Importálás új rétegbe",
210
+ "Import": "Importálás",
180
211
  "Imports all umap data, including layers and settings.": "Minden uMap-adatot (többek között a rétegeket és a beállításokat is) importálja.",
181
212
  "Include full screen link?": "Tartalmazzon-e teljes képernyős nézetre vezető linket?",
213
+ "Inherit": "Öröklés",
214
+ "inherit": "öröklés",
182
215
  "Interaction options": "Interakció beállításai",
183
- "Invalid umap data": "Érvénytelen uMap-adatok",
216
+ "Invalid latitude or longitude": "Invalid latitude or longitude",
184
217
  "Invalid umap data in {filename}": "Érvénytelen uMap-adatok: {filename}",
218
+ "Invalid umap data": "Érvénytelen uMap-adatok",
219
+ "Invalide property name: {name}": "Invalide property name: {name}",
220
+ "Jenks-Fisher": "Fisher-Jenks algoritmus",
221
+ "K-means": "K-középpont",
185
222
  "Keep current visible layers": "A jelenleg látható rétegek megtartása",
223
+ "kilometers": "kilométer",
224
+ "km": "km",
225
+ "Label direction": "Felirat iránya",
226
+ "Label key": "Felirathoz használt kulcs",
227
+ "Labels are clickable": "Kattintható feliratok",
228
+ "Latest feature": "Legutóbbi objektum",
186
229
  "Latitude": "Szélesség",
187
- "Layer": "Réteg",
188
230
  "Layer properties": "Réteg tulajdonságai",
231
+ "Layer": "Réteg",
189
232
  "Licence": "Licenc",
233
+ "licence": "licenc",
190
234
  "Limit bounds": "Térkép szélei",
235
+ "Link to view the map": "Link a térkép megtekintéséhez",
191
236
  "Link to…": "Link…",
192
237
  "Link with text: [[http://example.com|text of the link]]": "Link szöveggel: [[http://pelda.hu|szöveg]]",
193
238
  "Long credits": "Alkotók részletesen",
194
239
  "Longitude": "Hosszúság",
195
240
  "Make main shape": "Legyen főalakzat",
196
241
  "Manage layers": "Rétegek kezelése",
242
+ "Manual": "Manuális",
197
243
  "Map background credits": "Térképháttér alkotói",
198
244
  "Map has been attached to your account": "A térkép az ön fiókjához csatoltatott",
199
245
  "Map has been saved!": "Térkép mentve",
246
+ "Map has been starred": "Térkép megcsillagozva",
247
+ "Map has been unstarred": "Térkép csillagozása visszavonva",
200
248
  "Map user content has been published under licence": "A térkép felhasználói tartalma licenc szerint lett közzétéve",
201
249
  "Map's editors": "Térkép szerkesztői",
202
250
  "Map's owner": "Térkép tulajdonosa",
251
+ "max East": "keletre eddig",
252
+ "max North": "északra eddig",
253
+ "max South": "délre eddig",
254
+ "max West": "nyugatra eddig",
255
+ "max zoom": "legnagyobb nagyítás",
256
+ "Measure distances": "Távolságmérés",
203
257
  "Merge lines": "Vonalak egyesítése",
258
+ "mi": "mérföld",
259
+ "miles": "mérföld",
260
+ "min zoom": "legkisebb nagyítás",
204
261
  "More controls": "További vezérlők",
205
262
  "Must be a valid CSS value (eg.: DarkBlue or #123456)": "Érvényes CSS-értéknek kell lennie (pl. DarkBlue vagy #123456)",
263
+ "name": "név",
264
+ "nautical miles": "tengeri mérföld",
265
+ "never": "soha",
266
+ "new window": "új ablak",
267
+ "next": "következő",
268
+ "NM": "tengeri mérföld",
269
+ "No cache": "Nincs gyorsítótár",
206
270
  "No licence has been set": "Licenc még nincs megadva",
271
+ "No results for these facets": "Erre a szűrésre nincs eredmény",
207
272
  "No results": "Nincs eredmény",
273
+ "no": "nincs",
274
+ "No.": "sz.",
275
+ "None": "Semmi",
276
+ "Number of desired classes (default 5)": "Kívánt kategóriák száma (alapértelmezés: 5)",
277
+ "On the bottom": "Lent",
278
+ "On the left": "Balra",
279
+ "On the right": "Jobbra",
280
+ "On the top": "Fent",
281
+ "Only visible layers' data": "Csak a látható rétegek adatai",
282
+ "opacity": "átlátszóság",
283
+ "Opacity": "Átlátszóság",
284
+ "Open current feature on load": "Open current feature on load",
208
285
  "Open link in…": "Link megnyitása itt:",
286
+ "Open share & download panel": "„Megosztás & letöltés” panel megnyitása",
209
287
  "Open this map extent in a map editor to provide more accurate data to OpenStreetMap": "A térképkivágás megnyitása egy térképszerkesztőben, hogy az OpenStreetMapbe pontosabb adatokat lehessen előállítani",
288
+ "OpenStreetMap": "OpenStreetMap",
210
289
  "Optional intensity property for heatmap": "Intenzitástérkép nem kötelező tulajdonsága",
211
290
  "Optional. Same as color if not set.": "Nem kötelező. Ha nincs beállítva, akkor ugyanaz, mint a szín.",
291
+ "Optional.": "Nem kötelező.",
212
292
  "Override clustering radius (default 80)": "Csoportosítás sugarának felülírása (alapértelmezett: 80)",
213
293
  "Override heatmap radius (default 25)": "Intenzitástérkép sugarának felülírása (alapértelmezett: 25)",
294
+ "parent window": "szülőablak",
295
+ "Paste your data here": "Illessze be ide az adatokat",
296
+ "Permalink": "Permalink",
297
+ "Permanent credits background": "Háttér a mindig látható alkotók mögött",
298
+ "Permanent credits": "Mindig látható alkotók",
214
299
  "Please be sure the licence is compliant with your use.": "Győződjön meg róla, hogy a licenc megfelel a térkép felhasználásának.",
215
300
  "Please choose a format": "Válassza ki a formátumot",
216
301
  "Please enter the name of the property": "Adja meg a tulajdonság nevét",
217
302
  "Please enter the new name of this property": "Adja meg a tulajdonság új nevét",
303
+ "Please save the map first": "Először mentse a térképet",
304
+ "Popup (large)": "Felugró (nagy)",
305
+ "Popup content style": "Felugró tartalom stílusa",
306
+ "Popup content template": "Előugró tartalom sablonja",
307
+ "Popup shape": "Felugró ablak alakja",
308
+ "Popup": "Felugró",
309
+ "Powered by uMap": "Üzemeltető: uMap",
310
+ "previous": "előző",
311
+ "Problem in the response": "Hiba a válaszban",
218
312
  "Properties imported:": "Importált tulajdonságok:",
219
313
  "Provide an URL here": "Itt adjon meg egy URL-t",
220
314
  "Proxy request": "Proxykérés",
315
+ "Quantiles": "Kvantilisek",
316
+ "Recent": "Legutóbbi",
221
317
  "Remote data": "Távoli adatok",
222
318
  "Remove shape from the multi": "Alakzat eltávolítása a jelenlegi alakzatcsoportból",
223
319
  "Rename this property on all the features": "Tulajdonság eltávolítása az összes objektumról",
224
320
  "Replace layer content": "Réteg tartalmának lecserélése",
225
321
  "Restore this version": "Ennek a változatnak a visszaállítása",
226
- "Save": "Mentés",
227
322
  "Save anyway": "Mentés mindenképpen",
228
323
  "Save current edits": "Jelenlegi szerkesztések mentése",
324
+ "Save map": "Térkép mentése",
229
325
  "Save this center and zoom": "Mentés a jelenlegi középponttal és nagyítással",
230
326
  "Save this location as new feature": "E hely mentése új objektumként",
327
+ "Save": "Mentés",
328
+ "Saved center and zoom": "Elmentett középpont és nagyítás",
231
329
  "Search location": "Hely keresése",
232
- "See all": "Összes megtekintése",
233
- "See data layers": "Adatrétegek megtekintése",
330
+ "Search": "Keresés",
331
+ "Secret edit link copied to clipboard!": "Titkos szerkesztési link a vágólapra másolva.",
332
+ "Secret edit link:": "Titkos szerkesztési link:",
333
+ "See layers": "See layers",
234
334
  "See full screen": "Teljes képernyős nézet megtekintése",
335
+ "See on OpenStreetMap": "Megtekintés az OpenStreetMapen",
336
+ "Select data": "Select data",
337
+ "Send me the link": "Link elküldése magamnak",
235
338
  "Set it to false to hide this layer from the slideshow, the data browser, the popup navigation…": "Állítsa hamisra, hogy elrejtse ezt a réteget a diavetítésből, az adatböngészőből, az előugró navigációból stb.",
339
+ "settings": "beállítások",
236
340
  "Shape properties": "Alakzat tulajdonságai",
341
+ "Share and download": "Megosztás és letöltés",
342
+ "Share this link to open a customized map view": "Link megosztása testreszabott térképnézet megnyitásához",
237
343
  "Short credits": "Alkotók röviden",
344
+ "Short link": "Rövid link",
345
+ "Show this layer in the caption": "Réteg megjelenítése a címsávban",
238
346
  "Show/hide layer": "Réteg megjelenítése/elrejtése",
347
+ "Side panel": "Oldalsó panel",
239
348
  "Simple link: [[http://example.com]]": "Egyszerű link: [[http://pelda.hu]]",
349
+ "Simplify": "Egyszerűsítés",
350
+ "Skipping unknown geometry.type: {type}": "Ismeretlen ({type}) geometriai típus kihagyása",
240
351
  "Slideshow": "Diavetítés",
241
352
  "Sort key": "Sorba rendezéshez használt kulcs",
242
353
  "Split line": "Vonal elvágása",
354
+ "Star this map": "Térkép megcsillagozása",
243
355
  "Start a hole here": "Lyuk rajzolása itt",
244
356
  "Start slideshow": "Diavetítés indítása",
245
357
  "Stop editing": "Szerkesztés befejezése",
246
358
  "Stop slideshow": "Diavetítés befejezése",
359
+ "Street": "Utca",
360
+ "stroke": "körvonal",
247
361
  "Supported scheme": "Támogatott séma",
248
362
  "Supported variables that will be dynamically replaced": "Támogatott változók, amelyek dinamikusan behelyettesítődnek",
249
- "TMS format": "TMS-formátum",
363
+ "Switch to edit mode": "Átkapcsolás szerkesztési módra",
364
+ "Symbol": "Jelkép",
365
+ "Table": "Táblázat",
250
366
  "Text color for the cluster label": "Csoportcímke szövegének színe",
251
367
  "Text formatting": "Szövegformázás",
368
+ "The name of the property to use as feature label (eg.: \"nom\"). You can also use properties inside brackets to use more than one or mix with static content (eg.: \"{name} in {place}\")": "The name of the property to use as feature label (eg.: \"nom\"). You can also use properties inside brackets to use more than one or mix with static content (eg.: \"{name} in {place}\")",
369
+ "The name of the property to use as feature unique identifier.": "The name of the property to use as feature unique identifier.",
370
+ "The zoom and center have been modified.": "A nagyítás és a középpont módosult.",
371
+ "TMS format": "TMS-formátum",
252
372
  "To use if remote server doesn't allow cross domain (slower)": "Akkor használja, ha a távoli kiszolgáló nem engedélyezi a tartományok közötti (cross-domain) átvitelt (lassabb)",
253
373
  "To zoom": "Eddig a nagyítási szintig",
374
+ "Toggle edit mode (⇧+Click)": "Szerkesztési mód be-/kikapcsolása (⇧+kattintás)",
375
+ "Toggle edit mode": "Szerkesztési mód be-/kikapcsolása",
254
376
  "Transfer shape to edited feature": "Alakzat átalakítása szerkesztett objektummá",
255
377
  "Transform to lines": "Átalakítás vonallá",
256
378
  "Transform to polygon": "Átalakítás sokszöggé",
379
+ "Type a place name or coordinates": "Helynév vagy koordináták megadása",
380
+ "Type char or paste emoji": "Karakter megadása vagy emoji beillesztése",
257
381
  "Type of layer": "Réteg típusa",
258
382
  "Unable to detect format of file {filename}": "A(z) {filename} fájl formátumának megállapítása nem sikerült",
259
383
  "Untitled layer": "Cím nélküli réteg",
260
384
  "Untitled map": "Cím nélküli térkép",
261
- "Update permissions": "Jogosultságok frissítése",
262
385
  "Update permissions and editors": "Jogosultságok és szerkesztők frissítése",
386
+ "Update permissions": "Jogosultságok frissítése",
387
+ "Update who can see and edit the map": "Annak frissítése, hogy ki láthatja és szerkesztheti a térképet",
263
388
  "Url": "URL",
389
+ "URL": "URL",
264
390
  "Use current bounds": "Jelenlegi nézet használata",
265
391
  "Use placeholders with feature properties between brackets, eg. {name}, they will be dynamically replaced by the corresponding values.": "Olyan helyőrzőket használjon, amelyeknél az objektumtulajdonságok zárójelben vannak, például {name}. A megfelelő értékek dinamikusan behelyettesítődnek a tulajdonságok helyébe.",
266
392
  "User content credits": "Felhasználói tartalom alkotói",
267
393
  "User interface options": "Felhasználói felület tulajdonságai",
394
+ "User location": "Felhasználó pozíciója",
395
+ "Verify remote URL": "Távoli URL ellenőrzése",
268
396
  "Versions": "Verziók",
269
397
  "View Fullscreen": "Megjelenítés teljes képernyőn",
398
+ "View": "Megtekintés",
399
+ "Visibility: {status}": "Láthatóság: {status}",
400
+ "weight": "vastagság",
270
401
  "Where do we go from here?": "Merre tovább?",
271
402
  "Whether to display or not polygons paths.": "Megjelenjenek-e a sokszög oldalai?",
272
403
  "Whether to fill polygons with color.": "Ki legyen-e színezve a sokszög?",
404
+ "Who can edit \"{layer}\"": "Ki szerkesztheti ezt a réteget: {layer}?",
273
405
  "Who can edit": "Ki szerkesztheti?",
274
406
  "Who can view": "Ki láthatja?",
407
+ "width": "szélesség",
275
408
  "Will be displayed in the bottom right corner of the map": "A térkép jobb alsó sarkában fog megjelenni",
409
+ "Will be permanently visible in the bottom left corner of the map": "Mindig látható lesz a térkép bal alsó sarkában",
276
410
  "Will be visible in the caption of the map": "A térkép címsávjában fog megjelenni",
277
411
  "Woops! Someone else seems to have edited the data. You can save anyway, but this will erase the changes made by others.": "Ajjaj… Úgy tűnik, időközben valaki más is szerkesztette az adatokat. Ennek ellenére elmentheti őket, de ezzel az időközben mások által végzett módosítások el fognak veszni.",
412
+ "yes": "igen",
413
+ "Your map has been created! As you are not logged in, here is your secret link to edit the map, please keep it safe:": "A térképee elkészült! Mivel nincs bejelentkezve, itt egy titkos link a térkép szerkesztéséhez, kérjük, őrizze meg:",
278
414
  "Zoom in": "Nagyítás",
279
415
  "Zoom level for automatic zooms": "Nagyítási szint automatikus nagyításoknál",
280
416
  "Zoom out": "Kicsinyítés",
@@ -283,162 +419,34 @@ const locale = {
283
419
  "Zoom to the previous": "Nagyítás az előzőre",
284
420
  "Zoom to this feature": "Nagyítás erre az objektumra",
285
421
  "Zoom to this place": "Nagyítás erre a helyre",
286
- "attribution": "szerzőmegjelölés",
287
- "by": "- készítette:",
288
- "display name": "név megjelenítése",
289
- "height": "magasság",
290
- "licence": "licenc",
291
- "max East": "keletre eddig",
292
- "max North": "északra eddig",
293
- "max South": "délre eddig",
294
- "max West": "nyugatra eddig",
295
- "max zoom": "legnagyobb nagyítás",
296
- "min zoom": "legkisebb nagyítás",
297
- "next": "következő",
298
- "previous": "előző",
299
- "width": "szélesség",
300
- "{count} errors during import: {message}": "{count} hiba történt az importálás közben: {message}",
301
- "Measure distances": "Távolságmérés",
302
- "NM": "tengeri mérföld",
303
- "kilometers": "kilométer",
304
- "km": "km",
305
- "mi": "mérföld",
306
- "miles": "mérföld",
307
- "nautical miles": "tengeri mérföld",
308
- "1 day": "1 nap",
309
- "1 hour": "1 óra",
310
- "5 min": "5 perc",
311
- "Cache proxied request": "Proxy keresztül továbbított gyorsítótárkérés",
312
- "No cache": "Nincs gyorsítótár",
313
- "Popup": "Felugró",
314
- "Popup (large)": "Felugró (nagy)",
315
- "Popup content style": "Felugró tartalom stílusa",
316
- "Popup shape": "Felugró ablak alakja",
317
- "Skipping unknown geometry.type: {type}": "Ismeretlen ({type}) geometriai típus kihagyása",
318
- "Optional.": "Nem kötelező.",
319
- "Paste your data here": "Illessze be ide az adatokat",
320
- "Please save the map first": "Először mentse a térképet",
321
- "Feature identifier key": "Feature identifier key",
322
- "Open current feature on load": "Open current feature on load",
323
- "Permalink": "Permalink",
324
- "The name of the property to use as feature unique identifier.": "The name of the property to use as feature unique identifier.",
325
- "Do you want to display caption menus?": "Szeretné megjeleníteni a térkép címsávmenüjét?",
326
- "Example: key1,key2,key3": "Example: key1,key2,key3",
327
- "Invalid latitude or longitude": "Invalid latitude or longitude",
328
- "Invalide property name: {name}": "Invalide property name: {name}",
329
- "Permanent credits": "Mindig látható alkotók",
330
- "Permanent credits background": "Háttér a mindig látható alkotók mögött",
331
- "Select data": "Select data",
332
- "Will be permanently visible in the bottom left corner of the map": "Mindig látható lesz a térkép bal alsó sarkában",
333
422
  "{area} acres": "{area} acre",
334
423
  "{area} ha": "{area} ha",
335
424
  "{area} m²": "{area} m²",
336
425
  "{area} mi²": "{area} mf²",
337
426
  "{area} yd²": "{area} yard²",
338
- "{distance} NM": "{distance} tengeri mf.",
427
+ "{count} errors during import: {message}": "{count} hiba történt az importálás közben: {message}",
428
+ "{delay} seconds": "{delay} másodperc",
339
429
  "{distance} km": "{distance} km",
340
430
  "{distance} m": "{distance} m",
341
431
  "{distance} miles": "{distance} mf",
432
+ "{distance} NM": "{distance} tengeri mf.",
342
433
  "{distance} yd": "{distance} yard",
343
- " (area: {measure})": "(terület: {measure})",
344
- " (length: {measure})": "(távolság: {measure})",
345
- "Animated transitions": "Animált áttűnések",
346
- "Background overlay url": "Háttérbeli fedőréteg URL-je",
347
- "Custom overlay": "Egyedi fedőréteg",
348
- "Display the star map button": "Térképet megcsillagozó gomb megjelenítése",
349
- "Error in the overlay URL": "Hiba a fedőréteg URL-jében",
350
- "Map has been starred": "Térkép megcsillagozva",
351
- "Map has been unstarred": "Térkép csillagozása visszavonva",
352
- "Opacity": "Átlátszóság",
353
- "Star this map": "Térkép megcsillagozása",
354
- "Symbol can be either a unicode character or an URL. You can use feature properties as variables: ex.: with \"http://myserver.org/images/{name}.png\", the {name} variable will be replaced by the \"name\" value of each marker.": "A szimbólum egy unicode karakter vagy egy URL lehet. Az objektum tulajdonságai változóként használhatók. Például „http://myserver.org/images/{name}.png” használatánál az egyes jelölők „name” értékei behelyettesítődnek {name} változó helyén.",
355
- "Direct link": "Közvetlen link",
356
- "The zoom and center have been modified.": "A nagyítás és a középpont módosult.",
357
- "Congratulations, your map has been created!": "Gratulálunk, a térképe elkészült!",
358
- "Copy link": "Link másolása",
359
- "Email": "E-mail",
360
- "Secret edit link copied to clipboard!": "Titkos szerkesztési link a vágólapra másolva.",
361
- "Send me the link": "Link elküldése magamnak",
362
- "Your map has been created! As you are not logged in, here is your secret link to edit the map, please keep it safe:": "A térképee elkészült! Mivel nincs bejelentkezve, itt egy titkos link a térkép szerkesztéséhez, kérjük, őrizze meg:",
363
- "Comma separated list of properties to use for sorting features. To reverse the sort, put a minus sign (-) before. Eg. mykey,-otherkey.": "A jellemzők sorba rendezéséhez használandó tulajdonságok vesszővel tagolt sora. A sorba rendezés megfordításához tegyen mínusz jelet (-) elé. Például: kulcs,-másikkulcs.",
364
- "Toggle edit mode (⇧+Click)": "Szerkesztési mód be-/kikapcsolása (⇧+kattintás)",
365
- "icon opacity": "Ikon átlátszósága",
366
- "*single star for italic*": "*egy csillag: dőlt*",
367
- "--- for a horizontal rule": "--- vízszintes vonal",
368
- "The name of the property to use as feature label (eg.: \"nom\"). You can also use properties inside brackets to use more than one or mix with static content (eg.: \"{name} in {place}\")": "Az objektum feliratához használandó tulajdonság neve (pl.: \"név\"). Használhat zárójelben lévő tulajdonságokat is, ha egynél többet szeretne használni, vagy keverheti statikus tartalommal is (pl.: \"{településnév} városban található {utcanév}\")",
369
- "Comma separated list of properties to use for facet search (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key)": "A szűréshez használandó tulajdonságok vesszővel tagolt listája (pl.: kulcs,másikkulcs). A felirat beállításához adja hozzá a felirat szövegét a „|” jel után (pl.: kulcs|Első jellemző,másikkulcs|Második jellemző)",
370
- "Default view": "Alapértelmezett nézet",
371
- "Facet keys": "Szűrési tényezők",
372
- "Facet search": "Szűrés",
373
- "Feature properties": "Objektum tulajdonságai",
374
- "Latest feature": "Legutóbbi objektum",
375
- "No results for these facets": "Erre a szűrésre nincs eredmény",
376
- "Saved center and zoom": "Elmentett középpont és nagyítás",
377
- "User location": "Felhasználó pozíciója",
378
- "Visibility: {status}": "Láthatóság: {status}",
379
- "Fit all data": "Legyen látható az összes adat",
380
- "Verify remote URL": "Távoli URL ellenőrzése",
381
- "Add": "Hozzáadás",
382
- "Change": "Módosítás",
383
- "Powered by uMap": "Üzemeltető: uMap",
384
- "Search": "Keresés",
385
- "Datalayers": "Adatrétegek",
386
- "Secret edit link:": "Titkos szerkesztési link:",
387
- "Who can edit \"{layer}\"": "Ki szerkesztheti ezt a réteget: {layer}?",
388
- "Choropleth": "Kartogram",
389
- "Choropleth breakpoints": "Kartogram töréspontjai",
390
- "Choropleth classes": "Kartogram kategóriái",
391
- "Choropleth color palette": "Kartogram színskálája",
392
- "Choropleth mode": "Kartogram mód",
393
- "Choropleth property value": "Kartogram tulajdonságértékei",
394
- "Comma separated list of numbers, including min and max values.": "Vesszővel tagolt számsor, közte a legkisebb és a legnagyobb értékek.",
395
- "Equidistant": "Azonos távolságok",
396
- "Jenks-Fisher": "Fisher-Jenks algoritmus",
397
- "K-means": "K-középpont",
398
- "Manual": "Manuális",
399
- "Number of desired classes (default 5)": "Kívánt kategóriák száma (alapértelmezés: 5)",
400
- "Quantiles": "Kvantilisek",
401
- "Show this layer in the caption": "Réteg megjelenítése a címsávban",
402
- "Back to preview": "Vissza az előnézethez",
403
- "Drawing": "Rajzolás",
404
- "Edit the title of the map": "Térkép címének szerkesztése",
405
- "Go to the homepage": "Ugrás a főoldalra",
406
- "Switch to edit mode": "Átkapcsolás szerkesztési módra",
407
- "Update who can see and edit the map": "Annak frissítése, hogy ki láthatja és szerkesztheti a térképet",
408
- "View": "Megtekintés",
409
- "Add image URL": "Kép URL-je",
410
- "Emoji & Character": "Emoji vagy karakter",
411
- "Generic": "Általános",
412
- "Symbol": "Jelkép",
413
- "Type char or paste emoji": "Karakter megadása vagy emoji beillesztése",
414
- "URL": "URL",
415
- "If false, the polygon or line will act as a part of the underlying map.": "Ha hamis, a sokszög vagy vonal az alapul szolgáló térkép részeként viselkedik.",
416
- "Save map": "Térkép mentése",
417
- "Toggle edit mode": "Szerkesztési mód be-/kikapcsolása",
418
- "All data and settings of the map": "A térkép összes adata és beállítása",
419
- "Embed and link options": "Beágyazási és linkelési beállítások",
420
- "Go to \"{coords}\"": "Ugrás ide: {coords}",
421
- "Link to view the map": "Link a térkép megtekintéséhez",
422
- "No.": "No.",
423
- "Only visible layers' data": "Csak a látható rétegek adatai",
424
- "Open share & download panel": "„Megosztás & letöltés” panel megnyitása",
425
- "OpenStreetMap": "OpenStreetMap",
426
- "See on OpenStreetMap": "Megtekintés az OpenStreetMapen",
427
- "Share and download": "Megosztás és letöltés",
428
- "Share this link to open a customized map view": "Link megosztása testreszabott térképnézet megnyitásához",
429
- "Short link": "Rövid link",
430
- "Street": "Utca",
431
- "Type a place name or coordinates": "Helynév vagy koordináták megadása",
432
- "copy": "másolás",
433
- "full backup": "teljes biztonsági másolat",
434
- "settings": "beállítások",
435
- "Action not allowed :(": "Nem engedélyezett művelet :(",
436
- "Bring feature to center": "Objektum középre hozása",
437
- "Current map view": "Jelenlegi térképnézet",
438
- "Features in this layer: {count}": "Objektumok ezen a rétegen: {count}",
439
- "Filter": "Szűrő",
440
- "Problem in the response": "Hiba a válaszban",
441
- "Recent": "Legutóbbi"
434
+ "Edit map name and caption": "Edit map name and caption",
435
+ "Map advanced properties": "Map advanced properties",
436
+ "Edit map details": "Edit map details",
437
+ "Back to browser": "Back to browser",
438
+ "Toggle size": "Toggle size",
439
+ "Layers": "Layers",
440
+ "Display the caption control": "Display the caption control",
441
+ "Comma separated list of properties to use for facet search (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key). To control input field type, add it after another | (eg.: mykey|My Key|checkbox,otherkey|Other Key|datetime). Allowed values for the input field type are checkbox (default), radio, number, date and datetime.": "Comma separated list of properties to use for facet search (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key). To control input field type, add it after another | (eg.: mykey|My Key|checkbox,otherkey|Other Key|datetime). Allowed values for the input field type are checkbox (default), radio, number, date and datetime.",
442
+ "<empty value>": "<empty value>",
443
+ "Min": "Min",
444
+ "Max": "Max",
445
+ "From": "From",
446
+ "Until": "Until",
447
+ "Example: key1,key2|Label 2,key3|Label 3|checkbox": "Example: key1,key2|Label 2,key3|Label 3|checkbox",
448
+ "Edit in OpenStreetMap": "Edit in OpenStreetMap",
449
+ "Cannot determine latitude and longitude columns.": "Cannot determine latitude and longitude columns."
442
450
  }
443
451
  L.registerLocale("hu", locale)
444
452
  L.setLocale("hu")