umap-project 1.14.0a1__py3-none-any.whl → 1.14.0a2__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/static/.gitignore +0 -0
- umap/static/umap/base.css +994 -0
- umap/static/umap/bitbucket.png +0 -0
- umap/static/umap/content.css +395 -0
- umap/static/umap/favicons/apple-touch-icon.png +0 -0
- umap/static/umap/favicons/favicon.ico +0 -0
- umap/static/umap/favicons/icon-192.png +0 -0
- umap/static/umap/favicons/icon-512.png +0 -0
- umap/static/umap/favicons/icon.svg +5 -0
- umap/static/umap/font/FiraSans-Light.woff +0 -0
- umap/static/umap/font/FiraSans-Light.woff2 +0 -0
- umap/static/umap/font/FiraSans-LightItalic.woff +0 -0
- umap/static/umap/font/FiraSans-LightItalic.woff2 +0 -0
- umap/static/umap/font/FiraSans-SemiBold.woff +0 -0
- umap/static/umap/font/FiraSans-SemiBold.woff2 +0 -0
- umap/static/umap/font.css +33 -0
- umap/static/umap/github.png +0 -0
- umap/static/umap/img/16-white.svg +190 -0
- umap/static/umap/img/16.svg +182 -0
- umap/static/umap/img/24-white.svg +62 -0
- umap/static/umap/img/24.svg +90 -0
- umap/static/umap/img/edit.svg +7 -0
- umap/static/umap/img/icon-bg.png +0 -0
- umap/static/umap/img/logo.svg +4 -0
- umap/static/umap/img/logo_filigree.png +0 -0
- umap/static/umap/img/logo_small.svg +14 -0
- umap/static/umap/img/marker.png +0 -0
- umap/static/umap/img/opensource.svg +7 -0
- umap/static/umap/img/osm.svg +7 -0
- umap/static/umap/img/search.gif +0 -0
- umap/static/umap/img/source/16-white.svg +980 -0
- umap/static/umap/img/source/16.svg +201 -0
- umap/static/umap/img/source/24-white.svg +83 -0
- umap/static/umap/img/source/24.svg +110 -0
- umap/static/umap/js/components/fragment.js +13 -0
- umap/static/umap/js/modules/global.js +8 -0
- umap/static/umap/js/modules/urls.js +29 -0
- umap/static/umap/js/umap.autocomplete.js +336 -0
- umap/static/umap/js/umap.browser.js +148 -0
- umap/static/umap/js/umap.controls.js +1542 -0
- umap/static/umap/js/umap.core.js +851 -0
- umap/static/umap/js/umap.datalayer.permissions.js +72 -0
- umap/static/umap/js/umap.features.js +1216 -0
- umap/static/umap/js/umap.forms.js +1267 -0
- umap/static/umap/js/umap.icon.js +234 -0
- umap/static/umap/js/umap.importer.js +166 -0
- umap/static/umap/js/umap.js +2010 -0
- umap/static/umap/js/umap.layer.js +1636 -0
- umap/static/umap/js/umap.permissions.js +212 -0
- umap/static/umap/js/umap.popup.js +340 -0
- umap/static/umap/js/umap.share.js +254 -0
- umap/static/umap/js/umap.slideshow.js +165 -0
- umap/static/umap/js/umap.tableeditor.js +120 -0
- umap/static/umap/js/umap.ui.js +240 -0
- umap/static/umap/js/umap.xhr.js +304 -0
- umap/static/umap/locale/am_ET.js +447 -0
- umap/static/umap/locale/am_ET.json +445 -0
- umap/static/umap/locale/ar.js +447 -0
- umap/static/umap/locale/ar.json +445 -0
- umap/static/umap/locale/ast.js +447 -0
- umap/static/umap/locale/ast.json +445 -0
- umap/static/umap/locale/bg.js +447 -0
- umap/static/umap/locale/bg.json +445 -0
- umap/static/umap/locale/br.js +447 -0
- umap/static/umap/locale/br.json +445 -0
- umap/static/umap/locale/ca.js +447 -0
- umap/static/umap/locale/ca.json +445 -0
- umap/static/umap/locale/cs_CZ.js +447 -0
- umap/static/umap/locale/cs_CZ.json +445 -0
- umap/static/umap/locale/da.js +447 -0
- umap/static/umap/locale/da.json +445 -0
- umap/static/umap/locale/de.js +447 -0
- umap/static/umap/locale/de.json +445 -0
- umap/static/umap/locale/el.js +447 -0
- umap/static/umap/locale/el.json +445 -0
- umap/static/umap/locale/en.js +447 -0
- umap/static/umap/locale/en.json +445 -0
- umap/static/umap/locale/en_US.json +445 -0
- umap/static/umap/locale/es.js +447 -0
- umap/static/umap/locale/es.json +445 -0
- umap/static/umap/locale/et.js +447 -0
- umap/static/umap/locale/et.json +445 -0
- umap/static/umap/locale/eu.js +413 -0
- umap/static/umap/locale/eu.json +411 -0
- umap/static/umap/locale/fa_IR.js +447 -0
- umap/static/umap/locale/fa_IR.json +445 -0
- umap/static/umap/locale/fi.js +447 -0
- umap/static/umap/locale/fi.json +445 -0
- umap/static/umap/locale/fr.js +447 -0
- umap/static/umap/locale/fr.json +445 -0
- umap/static/umap/locale/gl.js +447 -0
- umap/static/umap/locale/gl.json +445 -0
- umap/static/umap/locale/he.js +447 -0
- umap/static/umap/locale/he.json +445 -0
- umap/static/umap/locale/hr.js +447 -0
- umap/static/umap/locale/hr.json +445 -0
- umap/static/umap/locale/hu.js +447 -0
- umap/static/umap/locale/hu.json +445 -0
- umap/static/umap/locale/id.js +447 -0
- umap/static/umap/locale/id.json +445 -0
- umap/static/umap/locale/is.js +447 -0
- umap/static/umap/locale/is.json +445 -0
- umap/static/umap/locale/it.js +447 -0
- umap/static/umap/locale/it.json +445 -0
- umap/static/umap/locale/ja.js +447 -0
- umap/static/umap/locale/ja.json +445 -0
- umap/static/umap/locale/ko.js +447 -0
- umap/static/umap/locale/ko.json +445 -0
- umap/static/umap/locale/lt.js +447 -0
- umap/static/umap/locale/lt.json +445 -0
- umap/static/umap/locale/ms.js +447 -0
- umap/static/umap/locale/ms.json +445 -0
- umap/static/umap/locale/nl.js +447 -0
- umap/static/umap/locale/nl.json +445 -0
- umap/static/umap/locale/no.js +447 -0
- umap/static/umap/locale/no.json +445 -0
- umap/static/umap/locale/pl.js +447 -0
- umap/static/umap/locale/pl.json +445 -0
- umap/static/umap/locale/pl_PL.json +445 -0
- umap/static/umap/locale/pt.js +447 -0
- umap/static/umap/locale/pt.json +445 -0
- umap/static/umap/locale/pt_BR.js +447 -0
- umap/static/umap/locale/pt_BR.json +445 -0
- umap/static/umap/locale/pt_PT.js +447 -0
- umap/static/umap/locale/pt_PT.json +445 -0
- umap/static/umap/locale/ro.js +447 -0
- umap/static/umap/locale/ro.json +445 -0
- umap/static/umap/locale/ru.js +447 -0
- umap/static/umap/locale/ru.json +445 -0
- umap/static/umap/locale/si.js +439 -0
- umap/static/umap/locale/si.json +437 -0
- umap/static/umap/locale/sk_SK.js +447 -0
- umap/static/umap/locale/sk_SK.json +445 -0
- umap/static/umap/locale/sl.js +447 -0
- umap/static/umap/locale/sl.json +445 -0
- umap/static/umap/locale/sr.js +447 -0
- umap/static/umap/locale/sr.json +445 -0
- umap/static/umap/locale/sv.js +447 -0
- umap/static/umap/locale/sv.json +445 -0
- umap/static/umap/locale/th_TH.js +447 -0
- umap/static/umap/locale/th_TH.json +445 -0
- umap/static/umap/locale/tr.js +447 -0
- umap/static/umap/locale/tr.json +445 -0
- umap/static/umap/locale/uk_UA.js +447 -0
- umap/static/umap/locale/uk_UA.json +445 -0
- umap/static/umap/locale/vi.js +447 -0
- umap/static/umap/locale/vi.json +445 -0
- umap/static/umap/locale/vi_VN.json +445 -0
- umap/static/umap/locale/zh.js +447 -0
- umap/static/umap/locale/zh.json +445 -0
- umap/static/umap/locale/zh_CN.json +445 -0
- umap/static/umap/locale/zh_TW.Big5.json +445 -0
- umap/static/umap/locale/zh_TW.js +447 -0
- umap/static/umap/locale/zh_TW.json +445 -0
- umap/static/umap/map.css +1843 -0
- umap/static/umap/nav.css +81 -0
- umap/static/umap/openstreetmap.png +0 -0
- umap/static/umap/test/.eslintrc +22 -0
- umap/static/umap/test/Choropleth.js +243 -0
- umap/static/umap/test/Controls.js +100 -0
- umap/static/umap/test/DataLayer.js +495 -0
- umap/static/umap/test/Feature.js +382 -0
- umap/static/umap/test/Map.Export.js +106 -0
- umap/static/umap/test/Map.Init.js +46 -0
- umap/static/umap/test/Map.js +342 -0
- umap/static/umap/test/Marker.js +122 -0
- umap/static/umap/test/Permissions.js +74 -0
- umap/static/umap/test/Polygon.js +367 -0
- umap/static/umap/test/Polyline.js +402 -0
- umap/static/umap/test/TableEditor.js +100 -0
- umap/static/umap/test/URLs.js +54 -0
- umap/static/umap/test/Util.js +549 -0
- umap/static/umap/test/_pre.js +460 -0
- umap/static/umap/test/index.html +135 -0
- umap/static/umap/theme.css +1 -0
- umap/static/umap/twitter.png +0 -0
- {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/METADATA +1 -1
- {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/RECORD +182 -6
- {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/WHEEL +0 -0
- {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/entry_points.txt +0 -0
- {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/licenses/LICENSE +0 -0
|
@@ -0,0 +1,445 @@
|
|
|
1
|
+
{
|
|
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",
|
|
75
|
+
"# one hash for main heading": "# egy számjel: fő címsor",
|
|
76
|
+
"## two hashes for second heading": "## két számjel: második címsor",
|
|
77
|
+
"### three hashes for third heading": "### három számjel: harmadik címsor",
|
|
78
|
+
"**double star for bold**": "**két csillag: félkövér**",
|
|
79
|
+
"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
|
+
"About": "Térkép névjegye",
|
|
81
|
+
"Action not allowed :(": "Nem engedélyezett művelet :(",
|
|
82
|
+
"Activate slideshow mode": "Diavetítésmód aktiválása",
|
|
83
|
+
"Add a layer": "Réteg hozzáadása",
|
|
84
|
+
"Add a line to the current multi": "Vonal hozzáadása a jelenlegi alakzatcsoporthoz",
|
|
85
|
+
"Add a new property": "Új tulajdonság hozzáadása",
|
|
86
|
+
"Add a polygon to the current multi": "Sokszög hozzáadása a jelenlegi alakzatcsoporthoz",
|
|
87
|
+
"Advanced actions": "Speciális műveletek",
|
|
88
|
+
"Advanced properties": "Speciális tulajdonságok",
|
|
89
|
+
"All properties are imported.": "Minden tulajdonság importálva lett.",
|
|
90
|
+
"Allow interactions": "Interakció engedélyezése",
|
|
91
|
+
"An error occured": "Hiba történt",
|
|
92
|
+
"Are you sure you want to cancel your changes?": "Biztosan elveti a módosításait?",
|
|
93
|
+
"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?",
|
|
94
|
+
"Are you sure you want to delete the feature?": "Biztosan törölni szeretné ezt az objektumot?",
|
|
95
|
+
"Are you sure you want to delete this layer?": "Biztosan törölni szeretné ezt a réteget?",
|
|
96
|
+
"Are you sure you want to delete this map?": "Biztosan törölni szeretné ezt a térképet?",
|
|
97
|
+
"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?",
|
|
98
|
+
"Are you sure you want to restore this version?": "Biztosan ezt a változatot akarja helyreállítani?",
|
|
99
|
+
"Attach the map to my account": "Térkép csatolása a fiókomhoz",
|
|
100
|
+
"Auto": "Automatikus",
|
|
101
|
+
"Autostart when map is loaded": "Automatikus indulás a térkép betöltése után",
|
|
102
|
+
"Bring feature to center": "Objektum középre hozása",
|
|
103
|
+
"Browse data": "Adatok böngészése",
|
|
104
|
+
"Cancel edits": "Szerkesztések elvetése",
|
|
105
|
+
"Center map on your location": "A térkép közepének igazítása a saját pozícióhoz",
|
|
106
|
+
"Change map background": "Térkép hátterének módosítása",
|
|
107
|
+
"Change tilelayers": "Mozaikrétegek módosítása",
|
|
108
|
+
"Choose a preset": "Előbeállítás kiválasztása",
|
|
109
|
+
"Choose the format of the data to import": "Importálandó adatok formátumának kiválasztása",
|
|
110
|
+
"Choose the layer to import in": "Importálandó réteg kiválasztása",
|
|
111
|
+
"Click last point to finish shape": "Az alakzat befejezéséhez kattintson az utolsó pontra",
|
|
112
|
+
"Click to add a marker": "Jelölő hozzáadásához kattintson",
|
|
113
|
+
"Click to continue drawing": "Kattintson a rajzolás folytatásához",
|
|
114
|
+
"Click to edit": "Kattintson a szerkesztéshez",
|
|
115
|
+
"Click to start drawing a line": "Kattintson egy vonal rajzolásához",
|
|
116
|
+
"Click to start drawing a polygon": "Kattintson egy sokszög rajzolásához",
|
|
117
|
+
"Clone": "Klónozás",
|
|
118
|
+
"Clone of {name}": "{name} klónozása",
|
|
119
|
+
"Clone this feature": "Objektum klónozása",
|
|
120
|
+
"Clone this map": "Térkép klónozása",
|
|
121
|
+
"Close": "Bezárás",
|
|
122
|
+
"Clustering radius": "Csoportosítás sugara",
|
|
123
|
+
"Comma separated list of properties to use when filtering features": "Tulajdonságok vesszővel tagolt sora, amely objektumok szűrésére használható",
|
|
124
|
+
"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.",
|
|
125
|
+
"Continue line": "Vonal folytatása",
|
|
126
|
+
"Continue line (Ctrl+Click)": "Vonal folytatása (Ctrl+Kattintás)",
|
|
127
|
+
"Coordinates": "Koordináták",
|
|
128
|
+
"Credits": "Alkotók",
|
|
129
|
+
"Current view instead of default map view?": "Használja-e a jelenlegi nézetet az alapértelmezett helyett?",
|
|
130
|
+
"Custom background": "Egyedi háttér",
|
|
131
|
+
"Data is browsable": "Az adatok böngészhetők",
|
|
132
|
+
"Default interaction options": "Alapértelmezett interakciós beállítások",
|
|
133
|
+
"Default properties": "Alapértelmezett tulajdonságok",
|
|
134
|
+
"Default shape properties": "Alapértelmezett alakzattulajdonságok",
|
|
135
|
+
"Define link to open in a new window on polygon click.": "Link meghatározása, amely megnyílik a sokszögre kattintva.",
|
|
136
|
+
"Delay between two transitions when in play mode": "Az áttűnések közötti késés lejátszási üzemmódban",
|
|
137
|
+
"Delete": "Törlés",
|
|
138
|
+
"Delete all layers": "Összes réteg törlése",
|
|
139
|
+
"Delete layer": "Réteg törlése",
|
|
140
|
+
"Delete this feature": "Objektum törlése",
|
|
141
|
+
"Delete this property on all the features": "Tulajdonság törlése az összes objektumról",
|
|
142
|
+
"Delete this shape": "Alakzat törlése",
|
|
143
|
+
"Delete this vertex (Alt+Click)": "Sarokpont törlése (Alt+Klikk)",
|
|
144
|
+
"Directions from here": "Irányok innen",
|
|
145
|
+
"Display measure": "Távolságmérő megjelenítése",
|
|
146
|
+
"Display on load": "Megjelenítés betöltéskor",
|
|
147
|
+
"Download": "Letöltés",
|
|
148
|
+
"Drag to reorder": "Az átrendezéshez húzza át",
|
|
149
|
+
"Draw a marker": "Jelölő rajzolása",
|
|
150
|
+
"Draw a polygon": "Sokszög rajzolása",
|
|
151
|
+
"Draw a polyline": "Töröttvonal rajzolása",
|
|
152
|
+
"Dynamic": "Dinamikus",
|
|
153
|
+
"Dynamic properties": "Dinamikus tulajdonságok",
|
|
154
|
+
"Edit": "Szerkesztés",
|
|
155
|
+
"Edit feature's layer": "Objektum rétegének szerkesztése",
|
|
156
|
+
"Edit map properties": "Térkép tulajdonságainak szerkesztése",
|
|
157
|
+
"Edit properties in a table": "Tulajdonságok szerkesztése táblázatban",
|
|
158
|
+
"Edit this feature": "Objektum szerkesztése",
|
|
159
|
+
"Embed the map": "Térkép beágyazása",
|
|
160
|
+
"Empty": "Kiürítés",
|
|
161
|
+
"Error in the tilelayer URL": "Hiba a mozaikréteg URL-jében",
|
|
162
|
+
"Error while fetching {url}": "Hiba történt e webcím beolvasásakor: {url}",
|
|
163
|
+
"Exit Fullscreen": "Kilépés a teljes képernyős nézetből",
|
|
164
|
+
"Extract shape to separate feature": "Alakzat kiemelése objektum széválasztásához",
|
|
165
|
+
"Fetch data each time map view changes.": "Adatok beolvasása a térkép nézetének minden egyes változásánál.",
|
|
166
|
+
"Filter keys": "Szűréshez használt kulcsok",
|
|
167
|
+
"Format": "Formátum",
|
|
168
|
+
"From zoom": "Ettől a nagyítási szinttől",
|
|
169
|
+
"Go to «{feature}»": "Ugrás ide: «{feature}»",
|
|
170
|
+
"Heatmap intensity property": "Intenzitástérkép tulajdonságai",
|
|
171
|
+
"Heatmap radius": "Intenzitástérkép sugara",
|
|
172
|
+
"Help": "Súgó",
|
|
173
|
+
"Hide controls": "Vezérlők elrejtése",
|
|
174
|
+
"Home": "uMap kezdőlap",
|
|
175
|
+
"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)",
|
|
176
|
+
"Iframe with custom height (in px): {{{http://iframe.url.com|height}}}": "Iframe egyedi magassággal (pixel): {{{http://iframe.url.com|magasság}}}",
|
|
177
|
+
"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}}}",
|
|
178
|
+
"Iframe: {{{http://iframe.url.com}}}": "Iframe: {{{http://iframe.url.com}}}",
|
|
179
|
+
"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}}",
|
|
180
|
+
"Image: {{http://image.url.com}}": "Kép: {{http://image.url.com}}",
|
|
181
|
+
"Import": "Importálás",
|
|
182
|
+
"Import data": "Adatok importálása",
|
|
183
|
+
"Import in a new layer": "Importálás új rétegbe",
|
|
184
|
+
"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.",
|
|
185
|
+
"Include full screen link?": "Tartalmazzon-e teljes képernyős nézetre vezető linket?",
|
|
186
|
+
"Interaction options": "Interakció beállításai",
|
|
187
|
+
"Invalid umap data": "Érvénytelen uMap-adatok",
|
|
188
|
+
"Invalid umap data in {filename}": "Érvénytelen uMap-adatok: {filename}",
|
|
189
|
+
"Keep current visible layers": "A jelenleg látható rétegek megtartása",
|
|
190
|
+
"Latitude": "Szélesség",
|
|
191
|
+
"Layer": "Réteg",
|
|
192
|
+
"Layer properties": "Réteg tulajdonságai",
|
|
193
|
+
"Licence": "Licenc",
|
|
194
|
+
"Limit bounds": "Térkép szélei",
|
|
195
|
+
"Link to…": "Link…",
|
|
196
|
+
"Link with text: [[http://example.com|text of the link]]": "Link szöveggel: [[http://pelda.hu|szöveg]]",
|
|
197
|
+
"Long credits": "Alkotók részletesen",
|
|
198
|
+
"Longitude": "Hosszúság",
|
|
199
|
+
"Make main shape": "Legyen főalakzat",
|
|
200
|
+
"Manage layers": "Rétegek kezelése",
|
|
201
|
+
"Map background credits": "Térképháttér alkotói",
|
|
202
|
+
"Map has been attached to your account": "A térkép az ön fiókjához csatoltatott",
|
|
203
|
+
"Map has been saved!": "Térkép mentve",
|
|
204
|
+
"Map user content has been published under licence": "A térkép felhasználói tartalma licenc szerint lett közzétéve",
|
|
205
|
+
"Map's editors": "Térkép szerkesztői",
|
|
206
|
+
"Map's owner": "Térkép tulajdonosa",
|
|
207
|
+
"Merge lines": "Vonalak egyesítése",
|
|
208
|
+
"More controls": "További vezérlők",
|
|
209
|
+
"Must be a valid CSS value (eg.: DarkBlue or #123456)": "Érvényes CSS-értéknek kell lennie (pl. DarkBlue vagy #123456)",
|
|
210
|
+
"No licence has been set": "Licenc még nincs megadva",
|
|
211
|
+
"No results": "Nincs eredmény",
|
|
212
|
+
"Open link in…": "Link megnyitása itt:",
|
|
213
|
+
"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",
|
|
214
|
+
"Optional intensity property for heatmap": "Intenzitástérkép nem kötelező tulajdonsága",
|
|
215
|
+
"Optional. Same as color if not set.": "Nem kötelező. Ha nincs beállítva, akkor ugyanaz, mint a szín.",
|
|
216
|
+
"Override clustering radius (default 80)": "Csoportosítás sugarának felülírása (alapértelmezett: 80)",
|
|
217
|
+
"Override heatmap radius (default 25)": "Intenzitástérkép sugarának felülírása (alapértelmezett: 25)",
|
|
218
|
+
"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.",
|
|
219
|
+
"Please choose a format": "Válassza ki a formátumot",
|
|
220
|
+
"Please enter the name of the property": "Adja meg a tulajdonság nevét",
|
|
221
|
+
"Please enter the new name of this property": "Adja meg a tulajdonság új nevét",
|
|
222
|
+
"Problem in the response": "Hiba a válaszban",
|
|
223
|
+
"Problem in the response format": "Hiba a válasz formátumában",
|
|
224
|
+
"Properties imported:": "Importált tulajdonságok:",
|
|
225
|
+
"Provide an URL here": "Itt adjon meg egy URL-t",
|
|
226
|
+
"Proxy request": "Proxykérés",
|
|
227
|
+
"Remote data": "Távoli adatok",
|
|
228
|
+
"Remove shape from the multi": "Alakzat eltávolítása a jelenlegi alakzatcsoportból",
|
|
229
|
+
"Rename this property on all the features": "Tulajdonság eltávolítása az összes objektumról",
|
|
230
|
+
"Replace layer content": "Réteg tartalmának lecserélése",
|
|
231
|
+
"Restore this version": "Ennek a változatnak a visszaállítása",
|
|
232
|
+
"Save": "Mentés",
|
|
233
|
+
"Save anyway": "Mentés mindenképpen",
|
|
234
|
+
"Save current edits": "Jelenlegi szerkesztések mentése",
|
|
235
|
+
"Save this center and zoom": "Mentés a jelenlegi középponttal és nagyítással",
|
|
236
|
+
"Save this location as new feature": "E hely mentése új objektumként",
|
|
237
|
+
"Search location": "Hely keresése",
|
|
238
|
+
"See all": "Összes megtekintése",
|
|
239
|
+
"See data layers": "Adatrétegek megtekintése",
|
|
240
|
+
"See full screen": "Teljes képernyős nézet megtekintése",
|
|
241
|
+
"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.",
|
|
242
|
+
"Shape properties": "Alakzat tulajdonságai",
|
|
243
|
+
"Short credits": "Alkotók röviden",
|
|
244
|
+
"Show/hide layer": "Réteg megjelenítése/elrejtése",
|
|
245
|
+
"Simple link: [[http://example.com]]": "Egyszerű link: [[http://pelda.hu]]",
|
|
246
|
+
"Slideshow": "Diavetítés",
|
|
247
|
+
"Sort key": "Sorba rendezéshez használt kulcs",
|
|
248
|
+
"Split line": "Vonal elvágása",
|
|
249
|
+
"Start a hole here": "Lyuk rajzolása itt",
|
|
250
|
+
"Start slideshow": "Diavetítés indítása",
|
|
251
|
+
"Stop editing": "Szerkesztés befejezése",
|
|
252
|
+
"Stop slideshow": "Diavetítés befejezése",
|
|
253
|
+
"Supported scheme": "Támogatott séma",
|
|
254
|
+
"Supported variables that will be dynamically replaced": "Támogatott változók, amelyek dinamikusan behelyettesítődnek",
|
|
255
|
+
"TMS format": "TMS-formátum",
|
|
256
|
+
"Text color for the cluster label": "Csoportcímke szövegének színe",
|
|
257
|
+
"Text formatting": "Szövegformázás",
|
|
258
|
+
"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)",
|
|
259
|
+
"To zoom": "Eddig a nagyítási szintig",
|
|
260
|
+
"Transfer shape to edited feature": "Alakzat átalakítása szerkesztett objektummá",
|
|
261
|
+
"Transform to lines": "Átalakítás vonallá",
|
|
262
|
+
"Transform to polygon": "Átalakítás sokszöggé",
|
|
263
|
+
"Type of layer": "Réteg típusa",
|
|
264
|
+
"Unable to detect format of file {filename}": "A(z) {filename} fájl formátumának megállapítása nem sikerült",
|
|
265
|
+
"Untitled layer": "Cím nélküli réteg",
|
|
266
|
+
"Untitled map": "Cím nélküli térkép",
|
|
267
|
+
"Update permissions": "Jogosultságok frissítése",
|
|
268
|
+
"Update permissions and editors": "Jogosultságok és szerkesztők frissítése",
|
|
269
|
+
"Url": "URL",
|
|
270
|
+
"Use current bounds": "Jelenlegi nézet használata",
|
|
271
|
+
"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.",
|
|
272
|
+
"User content credits": "Felhasználói tartalom alkotói",
|
|
273
|
+
"User interface options": "Felhasználói felület tulajdonságai",
|
|
274
|
+
"Versions": "Verziók",
|
|
275
|
+
"View Fullscreen": "Megjelenítés teljes képernyőn",
|
|
276
|
+
"Where do we go from here?": "Merre tovább?",
|
|
277
|
+
"Whether to display or not polygons paths.": "Megjelenjenek-e a sokszög oldalai?",
|
|
278
|
+
"Whether to fill polygons with color.": "Ki legyen-e színezve a sokszög?",
|
|
279
|
+
"Who can edit": "Ki szerkesztheti?",
|
|
280
|
+
"Who can view": "Ki láthatja?",
|
|
281
|
+
"Will be displayed in the bottom right corner of the map": "A térkép jobb alsó sarkában fog megjelenni",
|
|
282
|
+
"Will be visible in the caption of the map": "A térkép címsávjában fog megjelenni",
|
|
283
|
+
"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.",
|
|
284
|
+
"Zoom in": "Nagyítás",
|
|
285
|
+
"Zoom level for automatic zooms": "Nagyítási szint automatikus nagyításoknál",
|
|
286
|
+
"Zoom out": "Kicsinyítés",
|
|
287
|
+
"Zoom to layer extent": "Nagyítás a teljes rétegre",
|
|
288
|
+
"Zoom to the next": "Nagyítás a következőre",
|
|
289
|
+
"Zoom to the previous": "Nagyítás az előzőre",
|
|
290
|
+
"Zoom to this feature": "Nagyítás erre az objektumra",
|
|
291
|
+
"Zoom to this place": "Nagyítás erre a helyre",
|
|
292
|
+
"attribution": "szerzőmegjelölés",
|
|
293
|
+
"by": "- készítette:",
|
|
294
|
+
"display name": "név megjelenítése",
|
|
295
|
+
"height": "magasság",
|
|
296
|
+
"licence": "licenc",
|
|
297
|
+
"max East": "keletre eddig",
|
|
298
|
+
"max North": "északra eddig",
|
|
299
|
+
"max South": "délre eddig",
|
|
300
|
+
"max West": "nyugatra eddig",
|
|
301
|
+
"max zoom": "legnagyobb nagyítás",
|
|
302
|
+
"min zoom": "legkisebb nagyítás",
|
|
303
|
+
"next": "következő",
|
|
304
|
+
"previous": "előző",
|
|
305
|
+
"width": "szélesség",
|
|
306
|
+
"{count} errors during import: {message}": "{count} hiba történt az importálás közben: {message}",
|
|
307
|
+
"Measure distances": "Távolságmérés",
|
|
308
|
+
"NM": "tengeri mérföld",
|
|
309
|
+
"kilometers": "kilométer",
|
|
310
|
+
"km": "km",
|
|
311
|
+
"mi": "mérföld",
|
|
312
|
+
"miles": "mérföld",
|
|
313
|
+
"nautical miles": "tengeri mérföld",
|
|
314
|
+
"1 day": "1 nap",
|
|
315
|
+
"1 hour": "1 óra",
|
|
316
|
+
"5 min": "5 perc",
|
|
317
|
+
"Cache proxied request": "Proxy keresztül továbbított gyorsítótárkérés",
|
|
318
|
+
"No cache": "Nincs gyorsítótár",
|
|
319
|
+
"Popup": "Felugró",
|
|
320
|
+
"Popup (large)": "Felugró (nagy)",
|
|
321
|
+
"Popup content style": "Felugró tartalom stílusa",
|
|
322
|
+
"Popup shape": "Felugró ablak alakja",
|
|
323
|
+
"Skipping unknown geometry.type: {type}": "Ismeretlen ({type}) geometriai típus kihagyása",
|
|
324
|
+
"Optional.": "Nem kötelező.",
|
|
325
|
+
"Paste your data here": "Illessze be ide az adatokat",
|
|
326
|
+
"Please save the map first": "Először mentse a térképet",
|
|
327
|
+
"Feature identifier key": "Feature identifier key",
|
|
328
|
+
"Open current feature on load": "Open current feature on load",
|
|
329
|
+
"Permalink": "Permalink",
|
|
330
|
+
"The name of the property to use as feature unique identifier.": "The name of the property to use as feature unique identifier.",
|
|
331
|
+
"Do you want to display caption menus?": "Szeretné megjeleníteni a térkép címsávmenüjét?",
|
|
332
|
+
"Example: key1,key2,key3": "Example: key1,key2,key3",
|
|
333
|
+
"Invalid latitude or longitude": "Invalid latitude or longitude",
|
|
334
|
+
"Invalide property name: {name}": "Invalide property name: {name}",
|
|
335
|
+
"Permanent credits": "Mindig látható alkotók",
|
|
336
|
+
"Permanent credits background": "Háttér a mindig látható alkotók mögött",
|
|
337
|
+
"Select data": "Select data",
|
|
338
|
+
"Will be permanently visible in the bottom left corner of the map": "Mindig látható lesz a térkép bal alsó sarkában",
|
|
339
|
+
"{area} acres": "{area} acre",
|
|
340
|
+
"{area} ha": "{area} ha",
|
|
341
|
+
"{area} m²": "{area} m²",
|
|
342
|
+
"{area} mi²": "{area} mf²",
|
|
343
|
+
"{area} yd²": "{area} yard²",
|
|
344
|
+
"{distance} NM": "{distance} tengeri mf.",
|
|
345
|
+
"{distance} km": "{distance} km",
|
|
346
|
+
"{distance} m": "{distance} m",
|
|
347
|
+
"{distance} miles": "{distance} mf",
|
|
348
|
+
"{distance} yd": "{distance} yard",
|
|
349
|
+
" (area: {measure})": "(terület: {measure})",
|
|
350
|
+
" (length: {measure})": "(távolság: {measure})",
|
|
351
|
+
"Animated transitions": "Animált áttűnések",
|
|
352
|
+
"Background overlay url": "Háttérbeli fedőréteg URL-je",
|
|
353
|
+
"Custom overlay": "Egyedi fedőréteg",
|
|
354
|
+
"Display the star map button": "Térképet megcsillagozó gomb megjelenítése",
|
|
355
|
+
"Error in the overlay URL": "Hiba a fedőréteg URL-jében",
|
|
356
|
+
"Map has been starred": "Térkép megcsillagozva",
|
|
357
|
+
"Map has been unstarred": "Térkép csillagozása visszavonva",
|
|
358
|
+
"Opacity": "Átlátszóság",
|
|
359
|
+
"Star this map": "Térkép megcsillagozása",
|
|
360
|
+
"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.",
|
|
361
|
+
"Direct link": "Közvetlen link",
|
|
362
|
+
"The zoom and center have been modified.": "A nagyítás és a középpont módosult.",
|
|
363
|
+
"Congratulations, your map has been created!": "Gratulálunk, a térképe elkészült!",
|
|
364
|
+
"Copy link": "Link másolása",
|
|
365
|
+
"Email": "E-mail",
|
|
366
|
+
"Secret edit link copied to clipboard!": "Titkos szerkesztési link a vágólapra másolva.",
|
|
367
|
+
"Send me the link": "Link elküldése magamnak",
|
|
368
|
+
"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:",
|
|
369
|
+
"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.",
|
|
370
|
+
"Toggle edit mode (⇧+Click)": "Szerkesztési mód be-/kikapcsolása (⇧+kattintás)",
|
|
371
|
+
"icon opacity": "Ikon átlátszósága",
|
|
372
|
+
"*single star for italic*": "*egy csillag: dőlt*",
|
|
373
|
+
"--- for a horizontal rule": "--- vízszintes vonal",
|
|
374
|
+
"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}\")",
|
|
375
|
+
"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ő)",
|
|
376
|
+
"Default view": "Alapértelmezett nézet",
|
|
377
|
+
"Facet keys": "Szűrési tényezők",
|
|
378
|
+
"Facet search": "Szűrés",
|
|
379
|
+
"Feature properties": "Objektum tulajdonságai",
|
|
380
|
+
"Issue reaching that URL (network problem or CORS protection): {url}": "Hiba történt az URL elérésekor (hálózati probléma vagy külső weboldalak használata elleni CORS-védelem): {url}",
|
|
381
|
+
"Latest feature": "Legutóbbi objektum",
|
|
382
|
+
"No results for these facets": "Erre a szűrésre nincs eredmény",
|
|
383
|
+
"Saved center and zoom": "Elmentett középpont és nagyítás",
|
|
384
|
+
"User location": "Felhasználó pozíciója",
|
|
385
|
+
"Visibility: {status}": "Láthatóság: {status}",
|
|
386
|
+
"Fit all data": "Legyen látható az összes adat",
|
|
387
|
+
"Verify remote URL": "Távoli URL ellenőrzése",
|
|
388
|
+
"Add": "Hozzáadás",
|
|
389
|
+
"Change": "Módosítás",
|
|
390
|
+
"Powered by uMap": "Üzemeltető: uMap",
|
|
391
|
+
"Search": "Keresés",
|
|
392
|
+
"Datalayers": "Adatrétegek",
|
|
393
|
+
"Secret edit link:": "Titkos szerkesztési link:",
|
|
394
|
+
"Who can edit \"{layer}\"": "Ki szerkesztheti ezt a réteget: {layer}?",
|
|
395
|
+
"Current map view": "Jelenlegi térképnézet",
|
|
396
|
+
"Filter": "Szűrő",
|
|
397
|
+
"Choropleth": "Kartogram",
|
|
398
|
+
"Choropleth breakpoints": "Kartogram töréspontjai",
|
|
399
|
+
"Choropleth classes": "Kartogram kategóriái",
|
|
400
|
+
"Choropleth color palette": "Kartogram színskálája",
|
|
401
|
+
"Choropleth mode": "Kartogram mód",
|
|
402
|
+
"Choropleth property value": "Kartogram tulajdonságértékei",
|
|
403
|
+
"Comma separated list of numbers, including min and max values.": "Vesszővel tagolt számsor, közte a legkisebb és a legnagyobb értékek.",
|
|
404
|
+
"Equidistant": "Azonos távolságok",
|
|
405
|
+
"Jenks-Fisher": "Fisher-Jenks algoritmus",
|
|
406
|
+
"K-means": "K-középpont",
|
|
407
|
+
"Manual": "Manuális",
|
|
408
|
+
"Number of desired classes (default 5)": "Kívánt kategóriák száma (alapértelmezés: 5)",
|
|
409
|
+
"Quantiles": "Kvantilisek",
|
|
410
|
+
"Show this layer in the caption": "Réteg megjelenítése a címsávban",
|
|
411
|
+
"Back to preview": "Vissza az előnézethez",
|
|
412
|
+
"Drawing": "Rajzolás",
|
|
413
|
+
"Edit the title of the map": "Térkép címének szerkesztése",
|
|
414
|
+
"Go to the homepage": "Ugrás a főoldalra",
|
|
415
|
+
"Switch to edit mode": "Átkapcsolás szerkesztési módra",
|
|
416
|
+
"Update who can see and edit the map": "Annak frissítése, hogy ki láthatja és szerkesztheti a térképet",
|
|
417
|
+
"View": "Megtekintés",
|
|
418
|
+
"Add image URL": "Kép URL-je",
|
|
419
|
+
"Emoji & Character": "Emoji vagy karakter",
|
|
420
|
+
"Generic": "Általános",
|
|
421
|
+
"Symbol": "Jelkép",
|
|
422
|
+
"Type char or paste emoji": "Karakter megadása vagy emoji beillesztése",
|
|
423
|
+
"URL": "URL",
|
|
424
|
+
"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.",
|
|
425
|
+
"Save map": "Térkép mentése",
|
|
426
|
+
"Toggle edit mode": "Szerkesztési mód be-/kikapcsolása",
|
|
427
|
+
"All data and settings of the map": "A térkép összes adata és beállítása",
|
|
428
|
+
"Embed and link options": "Beágyazási és linkelési beállítások",
|
|
429
|
+
"Go to \"{coords}\"": "Ugrás ide: {coords}",
|
|
430
|
+
"Link to view the map": "Link a térkép megtekintéséhez",
|
|
431
|
+
"No.": "No.",
|
|
432
|
+
"Only visible layers' data": "Csak a látható rétegek adatai",
|
|
433
|
+
"Open share & download panel": "„Megosztás & letöltés” panel megnyitása",
|
|
434
|
+
"OpenStreetMap": "OpenStreetMap",
|
|
435
|
+
"See on OpenStreetMap": "Megtekintés az OpenStreetMapen",
|
|
436
|
+
"Share and download": "Megosztás és letöltés",
|
|
437
|
+
"Share this link to open a customized map view": "Link megosztása testreszabott térképnézet megnyitásához",
|
|
438
|
+
"Short link": "Rövid link",
|
|
439
|
+
"Street": "Utca",
|
|
440
|
+
"Type a place name or coordinates": "Helynév vagy koordináták megadása",
|
|
441
|
+
"copy": "másolás",
|
|
442
|
+
"full backup": "teljes biztonsági másolat",
|
|
443
|
+
"settings": "beállítások",
|
|
444
|
+
"{count} features in this layer": "{count} objektum van ezen a rétegen"
|
|
445
|
+
}
|