umap-project 1.10.0__py3-none-any.whl → 1.11.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of umap-project might be problematic. Click here for more details.
- umap/__init__.py +1 -1
- umap/admin.py +7 -3
- umap/autocomplete.py +3 -5
- umap/bin/__init__.py +2 -5
- umap/decorators.py +4 -5
- umap/forms.py +5 -5
- umap/locale/en/LC_MESSAGES/django.po +23 -23
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +28 -27
- umap/management/commands/generate_js_locale.py +9 -11
- umap/management/commands/import_pictograms.py +49 -28
- umap/managers.py +5 -3
- umap/middleware.py +2 -3
- umap/migrations/0001_initial.py +204 -56
- umap/migrations/0002_tilelayer_tms.py +3 -4
- umap/migrations/0003_add_tilelayer.py +13 -9
- umap/migrations/0004_add_licence.py +3 -6
- umap/migrations/0005_remove_map_tilelayer.py +3 -4
- umap/migrations/0006_auto_20190407_0719.py +6 -5
- umap/migrations/0007_auto_20190416_1757.py +13 -5
- umap/migrations/0008_alter_map_settings.py +0 -1
- umap/migrations/0009_star.py +27 -8
- umap/migrations/0010_alter_map_edit_status_alter_map_share_status.py +20 -8
- umap/migrations/0011_alter_map_edit_status_alter_map_share_status.py +21 -8
- umap/migrations/0014_map_created_at.py +1 -1
- umap/migrations/0015_alter_pictogram_pictogram.py +17 -0
- umap/migrations/0016_pictogram_category.py +17 -0
- umap/models.py +9 -7
- umap/settings/base.py +1 -4
- umap/static/umap/base.css +59 -20
- umap/static/umap/content.css +2 -13
- 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/img/16-white.svg +20 -9
- umap/static/umap/img/24-white.svg +2 -2
- umap/static/umap/img/source/16-white.svg +25 -13
- umap/static/umap/img/source/24-white.svg +5 -5
- umap/static/umap/js/umap.controls.js +15 -23
- umap/static/umap/js/umap.core.js +33 -24
- umap/static/umap/js/umap.features.js +24 -2
- umap/static/umap/js/umap.forms.js +182 -84
- umap/static/umap/js/umap.icon.js +19 -14
- umap/static/umap/js/umap.js +14 -32
- umap/static/umap/js/umap.layer.js +13 -2
- umap/static/umap/js/umap.popup.js +21 -0
- umap/static/umap/locale/am_ET.js +9 -4
- umap/static/umap/locale/am_ET.json +9 -4
- umap/static/umap/locale/ar.js +9 -4
- umap/static/umap/locale/ar.json +9 -4
- umap/static/umap/locale/ast.js +9 -4
- umap/static/umap/locale/ast.json +9 -4
- umap/static/umap/locale/bg.js +9 -4
- umap/static/umap/locale/bg.json +9 -4
- umap/static/umap/locale/br.js +20 -15
- umap/static/umap/locale/br.json +20 -15
- umap/static/umap/locale/ca.js +9 -4
- umap/static/umap/locale/ca.json +9 -4
- umap/static/umap/locale/cs_CZ.js +9 -4
- umap/static/umap/locale/cs_CZ.json +9 -4
- umap/static/umap/locale/da.js +9 -4
- umap/static/umap/locale/da.json +9 -4
- umap/static/umap/locale/de.js +9 -4
- umap/static/umap/locale/de.json +9 -4
- umap/static/umap/locale/el.js +9 -4
- umap/static/umap/locale/el.json +9 -4
- umap/static/umap/locale/en.js +9 -4
- umap/static/umap/locale/en.json +9 -4
- umap/static/umap/locale/en_US.json +9 -4
- umap/static/umap/locale/es.js +15 -10
- umap/static/umap/locale/es.json +15 -10
- umap/static/umap/locale/et.js +9 -4
- umap/static/umap/locale/et.json +9 -4
- umap/static/umap/locale/fa_IR.js +9 -4
- umap/static/umap/locale/fa_IR.json +9 -4
- umap/static/umap/locale/fi.js +9 -4
- umap/static/umap/locale/fi.json +9 -4
- umap/static/umap/locale/fr.js +10 -5
- umap/static/umap/locale/fr.json +10 -5
- umap/static/umap/locale/gl.js +9 -4
- umap/static/umap/locale/gl.json +9 -4
- umap/static/umap/locale/he.js +9 -4
- umap/static/umap/locale/he.json +9 -4
- umap/static/umap/locale/hr.js +9 -4
- umap/static/umap/locale/hr.json +9 -4
- umap/static/umap/locale/hu.js +64 -59
- umap/static/umap/locale/hu.json +64 -59
- umap/static/umap/locale/id.js +9 -4
- umap/static/umap/locale/id.json +9 -4
- umap/static/umap/locale/is.js +9 -4
- umap/static/umap/locale/is.json +9 -4
- umap/static/umap/locale/it.js +9 -4
- umap/static/umap/locale/it.json +9 -4
- umap/static/umap/locale/ja.js +9 -4
- umap/static/umap/locale/ja.json +9 -4
- umap/static/umap/locale/ko.js +9 -4
- umap/static/umap/locale/ko.json +9 -4
- umap/static/umap/locale/lt.js +9 -4
- umap/static/umap/locale/lt.json +9 -4
- umap/static/umap/locale/ms.js +15 -10
- umap/static/umap/locale/ms.json +15 -10
- umap/static/umap/locale/nl.js +9 -4
- umap/static/umap/locale/nl.json +9 -4
- umap/static/umap/locale/no.js +9 -4
- umap/static/umap/locale/no.json +9 -4
- umap/static/umap/locale/pl.js +9 -4
- umap/static/umap/locale/pl.json +9 -4
- umap/static/umap/locale/pl_PL.json +9 -4
- umap/static/umap/locale/pt.js +9 -4
- umap/static/umap/locale/pt.json +9 -4
- umap/static/umap/locale/pt_BR.js +9 -4
- umap/static/umap/locale/pt_BR.json +9 -4
- umap/static/umap/locale/pt_PT.js +9 -4
- umap/static/umap/locale/pt_PT.json +9 -4
- umap/static/umap/locale/ro.js +9 -4
- umap/static/umap/locale/ro.json +9 -4
- umap/static/umap/locale/ru.js +9 -4
- umap/static/umap/locale/ru.json +9 -4
- umap/static/umap/locale/si.js +55 -20
- umap/static/umap/locale/si.json +55 -20
- umap/static/umap/locale/sk_SK.js +9 -4
- umap/static/umap/locale/sk_SK.json +9 -4
- umap/static/umap/locale/sl.js +9 -4
- umap/static/umap/locale/sl.json +9 -4
- umap/static/umap/locale/sr.js +9 -4
- umap/static/umap/locale/sr.json +9 -4
- umap/static/umap/locale/sv.js +9 -4
- umap/static/umap/locale/sv.json +9 -4
- umap/static/umap/locale/th_TH.js +9 -4
- umap/static/umap/locale/th_TH.json +9 -4
- umap/static/umap/locale/tr.js +9 -4
- umap/static/umap/locale/tr.json +9 -4
- umap/static/umap/locale/uk_UA.js +9 -4
- umap/static/umap/locale/uk_UA.json +9 -4
- umap/static/umap/locale/vi.js +9 -4
- umap/static/umap/locale/vi.json +9 -4
- umap/static/umap/locale/vi_VN.json +9 -4
- umap/static/umap/locale/zh.js +9 -4
- umap/static/umap/locale/zh.json +9 -4
- umap/static/umap/locale/zh_CN.json +9 -4
- umap/static/umap/locale/zh_TW.Big5.json +9 -4
- umap/static/umap/locale/zh_TW.js +9 -4
- umap/static/umap/locale/zh_TW.json +9 -4
- umap/static/umap/map.css +104 -21
- umap/static/umap/nav.css +0 -1
- umap/static/umap/test/Controls.js +0 -1
- umap/static/umap/test/Feature.js +29 -0
- umap/static/umap/test/Map.Export.js +2 -127
- umap/static/umap/test/Util.js +10 -0
- umap/static/umap/test/_pre.js +2 -3
- umap/static/umap/vendors/formbuilder/Leaflet.FormBuilder.js +13 -2
- umap/static/umap/vendors/leaflet/leaflet-src.js +7144 -7144
- umap/templates/auth/user_form.html +2 -2
- umap/templates/base.html +11 -0
- umap/templates/umap/map_table.html +3 -3
- umap/templatetags/umap_tags.py +32 -34
- umap/tests/base.py +4 -4
- umap/tests/conftest.py +3 -6
- umap/tests/fixtures/circle.svg +4 -0
- umap/tests/fixtures/star.svg +4 -0
- umap/tests/integration/test_export_map.py +5 -18
- umap/tests/integration/test_picto.py +217 -0
- umap/tests/integration/test_slideshow.py +70 -0
- umap/tests/settings.py +11 -5
- umap/tests/test_datalayer.py +7 -6
- umap/tests/test_map.py +6 -5
- umap/tests/test_map_views.py +82 -10
- umap/tests/test_tilelayer.py +17 -11
- umap/tests/test_views.py +36 -9
- umap/urls.py +27 -4
- umap/utils.py +1 -2
- umap/views.py +67 -35
- umap/wsgi.py +2 -2
- {umap_project-1.10.0.dist-info → umap_project-1.11.1.dist-info}/METADATA +11 -9
- {umap_project-1.10.0.dist-info → umap_project-1.11.1.dist-info}/RECORD +180 -170
- umap/static/favicon.ico +0 -0
- {umap_project-1.10.0.dist-info → umap_project-1.11.1.dist-info}/WHEEL +0 -0
- {umap_project-1.10.0.dist-info → umap_project-1.11.1.dist-info}/entry_points.txt +0 -0
- {umap_project-1.10.0.dist-info → umap_project-1.11.1.dist-info}/licenses/LICENSE +0 -0
umap/static/umap/locale/hu.js
CHANGED
|
@@ -46,7 +46,6 @@ const locale = {
|
|
|
46
46
|
"Popup content template": "Előugró tartalom sablonja",
|
|
47
47
|
"Side panel": "Oldalsó panel",
|
|
48
48
|
"Simplify": "Egyszerűsítés",
|
|
49
|
-
"Symbol or url": "Szimbólum vagy URL",
|
|
50
49
|
"Table": "Táblázat",
|
|
51
50
|
"always": "mindig",
|
|
52
51
|
"clear": "alaphelyzet",
|
|
@@ -77,7 +76,7 @@ const locale = {
|
|
|
77
76
|
"## two hashes for second heading": "## két számjel: második címsor",
|
|
78
77
|
"### three hashes for third heading": "### három számjel: harmadik címsor",
|
|
79
78
|
"**double star for bold**": "**két csillag: félkövér**",
|
|
80
|
-
"A comma separated list of numbers that defines the stroke dash pattern. Ex.: \"5, 10, 15\".": "Vesszővel
|
|
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!",
|
|
81
80
|
"About": "Névjegy",
|
|
82
81
|
"Action not allowed :(": "Nem engedélyezett művelet :(",
|
|
83
82
|
"Activate slideshow mode": "Diavetítésmód aktiválása",
|
|
@@ -121,8 +120,8 @@ const locale = {
|
|
|
121
120
|
"Clone this map": "Térkép klónozása",
|
|
122
121
|
"Close": "Bezárás",
|
|
123
122
|
"Clustering radius": "Csoportosítás sugara",
|
|
124
|
-
"Comma separated list of properties to use when filtering features": "Tulajdonságok vesszővel
|
|
125
|
-
"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
|
|
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.",
|
|
126
125
|
"Continue line": "Vonal folytatása",
|
|
127
126
|
"Continue line (Ctrl+Click)": "Vonal folytatása (Ctrl+Kattintás)",
|
|
128
127
|
"Coordinates": "Koordináták",
|
|
@@ -171,7 +170,6 @@ const locale = {
|
|
|
171
170
|
"Filter keys": "Szűréshez használt kulcsok",
|
|
172
171
|
"Format": "Formátum",
|
|
173
172
|
"From zoom": "Ettől a nagyítási szinttől",
|
|
174
|
-
"Full map data": "Minden térképadat",
|
|
175
173
|
"Go to «{feature}»": "Ugrás ide: «{feature}»",
|
|
176
174
|
"Heatmap intensity property": "Intenzitástérkép tulajdonságai",
|
|
177
175
|
"Heatmap radius": "Intenzitástérkép sugara",
|
|
@@ -340,14 +338,14 @@ const locale = {
|
|
|
340
338
|
"Open current feature on load": "Open current feature on load",
|
|
341
339
|
"Permalink": "Permalink",
|
|
342
340
|
"The name of the property to use as feature unique identifier.": "The name of the property to use as feature unique identifier.",
|
|
343
|
-
"Do you want to display caption menus?": "
|
|
341
|
+
"Do you want to display caption menus?": "Szeretné megjeleníteni a térkép címsávmenüjét?",
|
|
344
342
|
"Example: key1,key2,key3": "Example: key1,key2,key3",
|
|
345
343
|
"Invalid latitude or longitude": "Invalid latitude or longitude",
|
|
346
344
|
"Invalide property name: {name}": "Invalide property name: {name}",
|
|
347
|
-
"Permanent credits": "
|
|
348
|
-
"Permanent credits background": "
|
|
345
|
+
"Permanent credits": "Mindig látható alkotók",
|
|
346
|
+
"Permanent credits background": "Háttér a mindig látható alkotók mögött",
|
|
349
347
|
"Select data": "Select data",
|
|
350
|
-
"Will be permanently visible in the bottom left corner of the map": "
|
|
348
|
+
"Will be permanently visible in the bottom left corner of the map": "Mindig látható lesz a térkép bal alsó sarkában",
|
|
351
349
|
"{area} acres": "{area} acre",
|
|
352
350
|
"{area} ha": "{area} ha",
|
|
353
351
|
"{area} m²": "{area} m²",
|
|
@@ -367,7 +365,7 @@ const locale = {
|
|
|
367
365
|
"Error in the overlay URL": "Hiba a fedőréteg URL-jében",
|
|
368
366
|
"Map has been starred": "Térkép megcsillagozva",
|
|
369
367
|
"Map has been unstarred": "Térkép csillagozása visszavonva",
|
|
370
|
-
"Opacity": "
|
|
368
|
+
"Opacity": "Átlátszóság",
|
|
371
369
|
"Star this map": "Térkép megcsillagozása",
|
|
372
370
|
"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.",
|
|
373
371
|
"Direct link": "Közvetlen link",
|
|
@@ -379,56 +377,63 @@ const locale = {
|
|
|
379
377
|
"Secret edit link copied to clipboard!": "Titkos szerkesztési link a vágólapra másolva.",
|
|
380
378
|
"Send me the link": "Link elküldése magamnak",
|
|
381
379
|
"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:",
|
|
382
|
-
"Comma separated list of properties to use for sorting features. To reverse the sort, put a minus sign (-) before. Eg. mykey,-otherkey.": "
|
|
383
|
-
"Toggle edit mode (⇧+Click)": "
|
|
384
|
-
"icon opacity": "
|
|
385
|
-
"*single star for italic*": "*
|
|
386
|
-
"--- for a horizontal rule": "---
|
|
387
|
-
"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}\")": "
|
|
388
|
-
"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)": "
|
|
389
|
-
"Default view": "
|
|
390
|
-
"Facet keys": "
|
|
391
|
-
"Facet search": "
|
|
392
|
-
"Feature properties": "
|
|
393
|
-
"Issue reaching that URL (network problem or CORS protection): {url}": "
|
|
394
|
-
"Latest feature": "
|
|
395
|
-
"No results for these facets": "
|
|
396
|
-
"Saved center and zoom": "
|
|
397
|
-
"User location": "
|
|
398
|
-
"Visibility: {status}": "
|
|
399
|
-
"Fit all data": "
|
|
400
|
-
"Verify remote URL": "
|
|
401
|
-
"Add": "
|
|
402
|
-
"Change": "
|
|
403
|
-
"Powered by uMap": "
|
|
404
|
-
"Search": "
|
|
405
|
-
"
|
|
406
|
-
"
|
|
407
|
-
"
|
|
408
|
-
"
|
|
409
|
-
"
|
|
410
|
-
"
|
|
411
|
-
"Choropleth": "
|
|
412
|
-
"Choropleth
|
|
413
|
-
"Choropleth
|
|
414
|
-
"Choropleth
|
|
415
|
-
"Choropleth
|
|
416
|
-
"
|
|
417
|
-
"
|
|
418
|
-
"Equidistant": "Equidistant",
|
|
380
|
+
"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.",
|
|
381
|
+
"Toggle edit mode (⇧+Click)": "Szerkesztési mód be-/kikapcsolás (⇧+kattintás)",
|
|
382
|
+
"icon opacity": "Ikon átlátszósága",
|
|
383
|
+
"*single star for italic*": "*egy csillag: dőlt*",
|
|
384
|
+
"--- for a horizontal rule": "--- vízszintes vonal",
|
|
385
|
+
"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}\")",
|
|
386
|
+
"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ő)",
|
|
387
|
+
"Default view": "Alapértelmezett nézet",
|
|
388
|
+
"Facet keys": "Szűrési tényezők",
|
|
389
|
+
"Facet search": "Szűrés",
|
|
390
|
+
"Feature properties": "Objektum tulajdonságai",
|
|
391
|
+
"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}",
|
|
392
|
+
"Latest feature": "Legutóbbi objektum",
|
|
393
|
+
"No results for these facets": "Erre a szűrésre nincs eredmény",
|
|
394
|
+
"Saved center and zoom": "Elmentett középpont és nagyítás",
|
|
395
|
+
"User location": "Felhasználó pozíciója",
|
|
396
|
+
"Visibility: {status}": "Láthatóság: {status}",
|
|
397
|
+
"Fit all data": "Legyen látható az összes adat",
|
|
398
|
+
"Verify remote URL": "Távoli URL ellenőrzése",
|
|
399
|
+
"Add": "Hozzáadás",
|
|
400
|
+
"Change": "Módosítás",
|
|
401
|
+
"Powered by uMap": "Üzemeltető: uMap",
|
|
402
|
+
"Search": "Keresés",
|
|
403
|
+
"Datalayers": "Adatrétegek",
|
|
404
|
+
"Secret edit link:": "Titkos szerkesztési link:",
|
|
405
|
+
"Who can edit \"{layer}\"": "Ki szerkesztheti ezt a réteget: {layer}?",
|
|
406
|
+
"Current map view": "Jelenlegi térképnézet",
|
|
407
|
+
"Filter": "Szűrő",
|
|
408
|
+
"Choropleth": "Kartogram",
|
|
409
|
+
"Choropleth breakpoints": "Kartogram töréspontjai",
|
|
410
|
+
"Choropleth classes": "Kartogram kategóriái",
|
|
411
|
+
"Choropleth color palette": "Kartogram színskálája",
|
|
412
|
+
"Choropleth mode": "Kartogram mód",
|
|
413
|
+
"Choropleth property value": "Kartogram tulajdonságértékei",
|
|
414
|
+
"Comma separated list of numbers, including min and max values.": "Vesszővel tagolt számsor, közte a legkisebb és a legnagyobb értékek.",
|
|
415
|
+
"Equidistant": "Azonos távolságok",
|
|
419
416
|
"Jenks-Fisher": "Jenks-Fisher",
|
|
420
|
-
"K-means": "K-
|
|
421
|
-
"Manual": "
|
|
422
|
-
"Number of desired classes (default 5)": "
|
|
423
|
-
"Quantiles": "
|
|
424
|
-
"Show this layer in the caption": "
|
|
425
|
-
"Back to preview": "
|
|
426
|
-
"Drawing": "
|
|
427
|
-
"Edit the title of the map": "
|
|
428
|
-
"Go to the homepage": "
|
|
429
|
-
"Switch to edit mode": "
|
|
430
|
-
"Update who can see and edit the map": "
|
|
431
|
-
"View": "
|
|
417
|
+
"K-means": "K-középpont",
|
|
418
|
+
"Manual": "Manuális",
|
|
419
|
+
"Number of desired classes (default 5)": "Kívánt kategóriák száma (alapértelmezés: 5)",
|
|
420
|
+
"Quantiles": "Kvantilisek",
|
|
421
|
+
"Show this layer in the caption": "Réteg megjelenítése a címsávban",
|
|
422
|
+
"Back to preview": "Vissza az előnézethez",
|
|
423
|
+
"Drawing": "Rajzolás",
|
|
424
|
+
"Edit the title of the map": "Térkép címének szerkesztése",
|
|
425
|
+
"Go to the homepage": "Ugrás a főoldalra",
|
|
426
|
+
"Switch to edit mode": "Átkapcsolás szerkesztési módra",
|
|
427
|
+
"Update who can see and edit the map": "Annak frissítése, hogy ki láthatja és szerkesztheti a térképet",
|
|
428
|
+
"View": "Megtekintés",
|
|
429
|
+
"Add image URL": "Add image URL",
|
|
430
|
+
"Backup data": "Backup data",
|
|
431
|
+
"Download full data": "Download full data",
|
|
432
|
+
"Emoji & Character": "Emoji & Character",
|
|
433
|
+
"Generic": "Generic",
|
|
434
|
+
"Symbol": "Symbol",
|
|
435
|
+
"Type char or paste emoji": "Type char or paste emoji",
|
|
436
|
+
"URL": "URL"
|
|
432
437
|
}
|
|
433
438
|
L.registerLocale("hu", locale)
|
|
434
439
|
L.setLocale("hu")
|
umap/static/umap/locale/hu.json
CHANGED
|
@@ -46,7 +46,6 @@
|
|
|
46
46
|
"Popup content template": "Előugró tartalom sablonja",
|
|
47
47
|
"Side panel": "Oldalsó panel",
|
|
48
48
|
"Simplify": "Egyszerűsítés",
|
|
49
|
-
"Symbol or url": "Szimbólum vagy URL",
|
|
50
49
|
"Table": "Táblázat",
|
|
51
50
|
"always": "mindig",
|
|
52
51
|
"clear": "alaphelyzet",
|
|
@@ -77,7 +76,7 @@
|
|
|
77
76
|
"## two hashes for second heading": "## két számjel: második címsor",
|
|
78
77
|
"### three hashes for third heading": "### három számjel: harmadik címsor",
|
|
79
78
|
"**double star for bold**": "**két csillag: félkövér**",
|
|
80
|
-
"A comma separated list of numbers that defines the stroke dash pattern. Ex.: \"5, 10, 15\".": "Vesszővel
|
|
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!",
|
|
81
80
|
"About": "Névjegy",
|
|
82
81
|
"Action not allowed :(": "Nem engedélyezett művelet :(",
|
|
83
82
|
"Activate slideshow mode": "Diavetítésmód aktiválása",
|
|
@@ -121,8 +120,8 @@
|
|
|
121
120
|
"Clone this map": "Térkép klónozása",
|
|
122
121
|
"Close": "Bezárás",
|
|
123
122
|
"Clustering radius": "Csoportosítás sugara",
|
|
124
|
-
"Comma separated list of properties to use when filtering features": "Tulajdonságok vesszővel
|
|
125
|
-
"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
|
|
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.",
|
|
126
125
|
"Continue line": "Vonal folytatása",
|
|
127
126
|
"Continue line (Ctrl+Click)": "Vonal folytatása (Ctrl+Kattintás)",
|
|
128
127
|
"Coordinates": "Koordináták",
|
|
@@ -171,7 +170,6 @@
|
|
|
171
170
|
"Filter keys": "Szűréshez használt kulcsok",
|
|
172
171
|
"Format": "Formátum",
|
|
173
172
|
"From zoom": "Ettől a nagyítási szinttől",
|
|
174
|
-
"Full map data": "Minden térképadat",
|
|
175
173
|
"Go to «{feature}»": "Ugrás ide: «{feature}»",
|
|
176
174
|
"Heatmap intensity property": "Intenzitástérkép tulajdonságai",
|
|
177
175
|
"Heatmap radius": "Intenzitástérkép sugara",
|
|
@@ -340,14 +338,14 @@
|
|
|
340
338
|
"Open current feature on load": "Open current feature on load",
|
|
341
339
|
"Permalink": "Permalink",
|
|
342
340
|
"The name of the property to use as feature unique identifier.": "The name of the property to use as feature unique identifier.",
|
|
343
|
-
"Do you want to display caption menus?": "
|
|
341
|
+
"Do you want to display caption menus?": "Szeretné megjeleníteni a térkép címsávmenüjét?",
|
|
344
342
|
"Example: key1,key2,key3": "Example: key1,key2,key3",
|
|
345
343
|
"Invalid latitude or longitude": "Invalid latitude or longitude",
|
|
346
344
|
"Invalide property name: {name}": "Invalide property name: {name}",
|
|
347
|
-
"Permanent credits": "
|
|
348
|
-
"Permanent credits background": "
|
|
345
|
+
"Permanent credits": "Mindig látható alkotók",
|
|
346
|
+
"Permanent credits background": "Háttér a mindig látható alkotók mögött",
|
|
349
347
|
"Select data": "Select data",
|
|
350
|
-
"Will be permanently visible in the bottom left corner of the map": "
|
|
348
|
+
"Will be permanently visible in the bottom left corner of the map": "Mindig látható lesz a térkép bal alsó sarkában",
|
|
351
349
|
"{area} acres": "{area} acre",
|
|
352
350
|
"{area} ha": "{area} ha",
|
|
353
351
|
"{area} m²": "{area} m²",
|
|
@@ -367,7 +365,7 @@
|
|
|
367
365
|
"Error in the overlay URL": "Hiba a fedőréteg URL-jében",
|
|
368
366
|
"Map has been starred": "Térkép megcsillagozva",
|
|
369
367
|
"Map has been unstarred": "Térkép csillagozása visszavonva",
|
|
370
|
-
"Opacity": "
|
|
368
|
+
"Opacity": "Átlátszóság",
|
|
371
369
|
"Star this map": "Térkép megcsillagozása",
|
|
372
370
|
"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.",
|
|
373
371
|
"Direct link": "Közvetlen link",
|
|
@@ -379,54 +377,61 @@
|
|
|
379
377
|
"Secret edit link copied to clipboard!": "Titkos szerkesztési link a vágólapra másolva.",
|
|
380
378
|
"Send me the link": "Link elküldése magamnak",
|
|
381
379
|
"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:",
|
|
382
|
-
"Comma separated list of properties to use for sorting features. To reverse the sort, put a minus sign (-) before. Eg. mykey,-otherkey.": "
|
|
383
|
-
"Toggle edit mode (⇧+Click)": "
|
|
384
|
-
"icon opacity": "
|
|
385
|
-
"*single star for italic*": "*
|
|
386
|
-
"--- for a horizontal rule": "---
|
|
387
|
-
"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}\")": "
|
|
388
|
-
"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)": "
|
|
389
|
-
"Default view": "
|
|
390
|
-
"Facet keys": "
|
|
391
|
-
"Facet search": "
|
|
392
|
-
"Feature properties": "
|
|
393
|
-
"Issue reaching that URL (network problem or CORS protection): {url}": "
|
|
394
|
-
"Latest feature": "
|
|
395
|
-
"No results for these facets": "
|
|
396
|
-
"Saved center and zoom": "
|
|
397
|
-
"User location": "
|
|
398
|
-
"Visibility: {status}": "
|
|
399
|
-
"Fit all data": "
|
|
400
|
-
"Verify remote URL": "
|
|
401
|
-
"Add": "
|
|
402
|
-
"Change": "
|
|
403
|
-
"Powered by uMap": "
|
|
404
|
-
"Search": "
|
|
405
|
-
"
|
|
406
|
-
"
|
|
407
|
-
"
|
|
408
|
-
"
|
|
409
|
-
"
|
|
410
|
-
"
|
|
411
|
-
"Choropleth": "
|
|
412
|
-
"Choropleth
|
|
413
|
-
"Choropleth
|
|
414
|
-
"Choropleth
|
|
415
|
-
"Choropleth
|
|
416
|
-
"
|
|
417
|
-
"
|
|
418
|
-
"Equidistant": "Equidistant",
|
|
380
|
+
"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.",
|
|
381
|
+
"Toggle edit mode (⇧+Click)": "Szerkesztési mód be-/kikapcsolás (⇧+kattintás)",
|
|
382
|
+
"icon opacity": "Ikon átlátszósága",
|
|
383
|
+
"*single star for italic*": "*egy csillag: dőlt*",
|
|
384
|
+
"--- for a horizontal rule": "--- vízszintes vonal",
|
|
385
|
+
"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}\")",
|
|
386
|
+
"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ő)",
|
|
387
|
+
"Default view": "Alapértelmezett nézet",
|
|
388
|
+
"Facet keys": "Szűrési tényezők",
|
|
389
|
+
"Facet search": "Szűrés",
|
|
390
|
+
"Feature properties": "Objektum tulajdonságai",
|
|
391
|
+
"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}",
|
|
392
|
+
"Latest feature": "Legutóbbi objektum",
|
|
393
|
+
"No results for these facets": "Erre a szűrésre nincs eredmény",
|
|
394
|
+
"Saved center and zoom": "Elmentett középpont és nagyítás",
|
|
395
|
+
"User location": "Felhasználó pozíciója",
|
|
396
|
+
"Visibility: {status}": "Láthatóság: {status}",
|
|
397
|
+
"Fit all data": "Legyen látható az összes adat",
|
|
398
|
+
"Verify remote URL": "Távoli URL ellenőrzése",
|
|
399
|
+
"Add": "Hozzáadás",
|
|
400
|
+
"Change": "Módosítás",
|
|
401
|
+
"Powered by uMap": "Üzemeltető: uMap",
|
|
402
|
+
"Search": "Keresés",
|
|
403
|
+
"Datalayers": "Adatrétegek",
|
|
404
|
+
"Secret edit link:": "Titkos szerkesztési link:",
|
|
405
|
+
"Who can edit \"{layer}\"": "Ki szerkesztheti ezt a réteget: {layer}?",
|
|
406
|
+
"Current map view": "Jelenlegi térképnézet",
|
|
407
|
+
"Filter": "Szűrő",
|
|
408
|
+
"Choropleth": "Kartogram",
|
|
409
|
+
"Choropleth breakpoints": "Kartogram töréspontjai",
|
|
410
|
+
"Choropleth classes": "Kartogram kategóriái",
|
|
411
|
+
"Choropleth color palette": "Kartogram színskálája",
|
|
412
|
+
"Choropleth mode": "Kartogram mód",
|
|
413
|
+
"Choropleth property value": "Kartogram tulajdonságértékei",
|
|
414
|
+
"Comma separated list of numbers, including min and max values.": "Vesszővel tagolt számsor, közte a legkisebb és a legnagyobb értékek.",
|
|
415
|
+
"Equidistant": "Azonos távolságok",
|
|
419
416
|
"Jenks-Fisher": "Jenks-Fisher",
|
|
420
|
-
"K-means": "K-
|
|
421
|
-
"Manual": "
|
|
422
|
-
"Number of desired classes (default 5)": "
|
|
423
|
-
"Quantiles": "
|
|
424
|
-
"Show this layer in the caption": "
|
|
425
|
-
"Back to preview": "
|
|
426
|
-
"Drawing": "
|
|
427
|
-
"Edit the title of the map": "
|
|
428
|
-
"Go to the homepage": "
|
|
429
|
-
"Switch to edit mode": "
|
|
430
|
-
"Update who can see and edit the map": "
|
|
431
|
-
"View": "
|
|
417
|
+
"K-means": "K-középpont",
|
|
418
|
+
"Manual": "Manuális",
|
|
419
|
+
"Number of desired classes (default 5)": "Kívánt kategóriák száma (alapértelmezés: 5)",
|
|
420
|
+
"Quantiles": "Kvantilisek",
|
|
421
|
+
"Show this layer in the caption": "Réteg megjelenítése a címsávban",
|
|
422
|
+
"Back to preview": "Vissza az előnézethez",
|
|
423
|
+
"Drawing": "Rajzolás",
|
|
424
|
+
"Edit the title of the map": "Térkép címének szerkesztése",
|
|
425
|
+
"Go to the homepage": "Ugrás a főoldalra",
|
|
426
|
+
"Switch to edit mode": "Átkapcsolás szerkesztési módra",
|
|
427
|
+
"Update who can see and edit the map": "Annak frissítése, hogy ki láthatja és szerkesztheti a térképet",
|
|
428
|
+
"View": "Megtekintés",
|
|
429
|
+
"Add image URL": "Add image URL",
|
|
430
|
+
"Backup data": "Backup data",
|
|
431
|
+
"Download full data": "Download full data",
|
|
432
|
+
"Emoji & Character": "Emoji & Character",
|
|
433
|
+
"Generic": "Generic",
|
|
434
|
+
"Symbol": "Symbol",
|
|
435
|
+
"Type char or paste emoji": "Type char or paste emoji",
|
|
436
|
+
"URL": "URL"
|
|
432
437
|
}
|
umap/static/umap/locale/id.js
CHANGED
|
@@ -46,7 +46,6 @@ const locale = {
|
|
|
46
46
|
"Popup content template": "Popup content template",
|
|
47
47
|
"Side panel": "Side panel",
|
|
48
48
|
"Simplify": "Simplify",
|
|
49
|
-
"Symbol or url": "Symbol or url",
|
|
50
49
|
"Table": "Table",
|
|
51
50
|
"always": "always",
|
|
52
51
|
"clear": "clear",
|
|
@@ -171,7 +170,6 @@ const locale = {
|
|
|
171
170
|
"Filter keys": "Filter keys",
|
|
172
171
|
"Format": "Format",
|
|
173
172
|
"From zoom": "From zoom",
|
|
174
|
-
"Full map data": "Full map data",
|
|
175
173
|
"Go to «{feature}»": "Go to «{feature}»",
|
|
176
174
|
"Heatmap intensity property": "Heatmap intensity property",
|
|
177
175
|
"Heatmap radius": "Heatmap radius",
|
|
@@ -402,7 +400,6 @@ const locale = {
|
|
|
402
400
|
"Change": "Change",
|
|
403
401
|
"Powered by uMap": "Powered by uMap",
|
|
404
402
|
"Search": "Search",
|
|
405
|
-
"Toggle direct input (advanced)": "Toggle direct input (advanced)",
|
|
406
403
|
"Datalayers": "Datalayers",
|
|
407
404
|
"Secret edit link:": "Secret edit link:",
|
|
408
405
|
"Who can edit \"{layer}\"": "Who can edit \"{layer}\"",
|
|
@@ -428,7 +425,15 @@ const locale = {
|
|
|
428
425
|
"Go to the homepage": "Go to the homepage",
|
|
429
426
|
"Switch to edit mode": "Switch to edit mode",
|
|
430
427
|
"Update who can see and edit the map": "Update who can see and edit the map",
|
|
431
|
-
"View": "View"
|
|
428
|
+
"View": "View",
|
|
429
|
+
"Add image URL": "Add image URL",
|
|
430
|
+
"Backup data": "Backup data",
|
|
431
|
+
"Download full data": "Download full data",
|
|
432
|
+
"Emoji & Character": "Emoji & Character",
|
|
433
|
+
"Generic": "Generic",
|
|
434
|
+
"Symbol": "Symbol",
|
|
435
|
+
"Type char or paste emoji": "Type char or paste emoji",
|
|
436
|
+
"URL": "URL"
|
|
432
437
|
}
|
|
433
438
|
L.registerLocale("id", locale)
|
|
434
439
|
L.setLocale("id")
|
umap/static/umap/locale/id.json
CHANGED
|
@@ -46,7 +46,6 @@
|
|
|
46
46
|
"Popup content template": "Popup content template",
|
|
47
47
|
"Side panel": "Side panel",
|
|
48
48
|
"Simplify": "Simplify",
|
|
49
|
-
"Symbol or url": "Symbol or url",
|
|
50
49
|
"Table": "Table",
|
|
51
50
|
"always": "always",
|
|
52
51
|
"clear": "clear",
|
|
@@ -171,7 +170,6 @@
|
|
|
171
170
|
"Filter keys": "Filter keys",
|
|
172
171
|
"Format": "Format",
|
|
173
172
|
"From zoom": "From zoom",
|
|
174
|
-
"Full map data": "Full map data",
|
|
175
173
|
"Go to «{feature}»": "Go to «{feature}»",
|
|
176
174
|
"Heatmap intensity property": "Heatmap intensity property",
|
|
177
175
|
"Heatmap radius": "Heatmap radius",
|
|
@@ -402,7 +400,6 @@
|
|
|
402
400
|
"Change": "Change",
|
|
403
401
|
"Powered by uMap": "Powered by uMap",
|
|
404
402
|
"Search": "Search",
|
|
405
|
-
"Toggle direct input (advanced)": "Toggle direct input (advanced)",
|
|
406
403
|
"Datalayers": "Datalayers",
|
|
407
404
|
"Secret edit link:": "Secret edit link:",
|
|
408
405
|
"Who can edit \"{layer}\"": "Who can edit \"{layer}\"",
|
|
@@ -428,5 +425,13 @@
|
|
|
428
425
|
"Go to the homepage": "Go to the homepage",
|
|
429
426
|
"Switch to edit mode": "Switch to edit mode",
|
|
430
427
|
"Update who can see and edit the map": "Update who can see and edit the map",
|
|
431
|
-
"View": "View"
|
|
428
|
+
"View": "View",
|
|
429
|
+
"Add image URL": "Add image URL",
|
|
430
|
+
"Backup data": "Backup data",
|
|
431
|
+
"Download full data": "Download full data",
|
|
432
|
+
"Emoji & Character": "Emoji & Character",
|
|
433
|
+
"Generic": "Generic",
|
|
434
|
+
"Symbol": "Symbol",
|
|
435
|
+
"Type char or paste emoji": "Type char or paste emoji",
|
|
436
|
+
"URL": "URL"
|
|
432
437
|
}
|
umap/static/umap/locale/is.js
CHANGED
|
@@ -46,7 +46,6 @@ const locale = {
|
|
|
46
46
|
"Popup content template": "Sniðmát efnis í sprettglugga",
|
|
47
47
|
"Side panel": "Hliðarspjald",
|
|
48
48
|
"Simplify": "Einfalda",
|
|
49
|
-
"Symbol or url": "Tákn eða slóð",
|
|
50
49
|
"Table": "Tafla",
|
|
51
50
|
"always": "alltaf",
|
|
52
51
|
"clear": "hreinsa",
|
|
@@ -171,7 +170,6 @@ const locale = {
|
|
|
171
170
|
"Filter keys": "Sía lykla",
|
|
172
171
|
"Format": "Snið",
|
|
173
172
|
"From zoom": "Frá aðdráttarstigi",
|
|
174
|
-
"Full map data": "Öll kortagögn",
|
|
175
173
|
"Go to «{feature}»": "Fara á «{feature}»",
|
|
176
174
|
"Heatmap intensity property": "Styrkeigindi fyrir hitakort",
|
|
177
175
|
"Heatmap radius": "Radíus hitakorts",
|
|
@@ -402,7 +400,6 @@ const locale = {
|
|
|
402
400
|
"Change": "Change",
|
|
403
401
|
"Powered by uMap": "Powered by uMap",
|
|
404
402
|
"Search": "Search",
|
|
405
|
-
"Toggle direct input (advanced)": "Toggle direct input (advanced)",
|
|
406
403
|
"Datalayers": "Datalayers",
|
|
407
404
|
"Secret edit link:": "Secret edit link:",
|
|
408
405
|
"Who can edit \"{layer}\"": "Who can edit \"{layer}\"",
|
|
@@ -428,7 +425,15 @@ const locale = {
|
|
|
428
425
|
"Go to the homepage": "Go to the homepage",
|
|
429
426
|
"Switch to edit mode": "Switch to edit mode",
|
|
430
427
|
"Update who can see and edit the map": "Update who can see and edit the map",
|
|
431
|
-
"View": "View"
|
|
428
|
+
"View": "View",
|
|
429
|
+
"Add image URL": "Add image URL",
|
|
430
|
+
"Backup data": "Backup data",
|
|
431
|
+
"Download full data": "Download full data",
|
|
432
|
+
"Emoji & Character": "Emoji & Character",
|
|
433
|
+
"Generic": "Generic",
|
|
434
|
+
"Symbol": "Symbol",
|
|
435
|
+
"Type char or paste emoji": "Type char or paste emoji",
|
|
436
|
+
"URL": "URL"
|
|
432
437
|
}
|
|
433
438
|
L.registerLocale("is", locale)
|
|
434
439
|
L.setLocale("is")
|
umap/static/umap/locale/is.json
CHANGED
|
@@ -46,7 +46,6 @@
|
|
|
46
46
|
"Popup content template": "Sniðmát efnis í sprettglugga",
|
|
47
47
|
"Side panel": "Hliðarspjald",
|
|
48
48
|
"Simplify": "Einfalda",
|
|
49
|
-
"Symbol or url": "Tákn eða slóð",
|
|
50
49
|
"Table": "Tafla",
|
|
51
50
|
"always": "alltaf",
|
|
52
51
|
"clear": "hreinsa",
|
|
@@ -171,7 +170,6 @@
|
|
|
171
170
|
"Filter keys": "Sía lykla",
|
|
172
171
|
"Format": "Snið",
|
|
173
172
|
"From zoom": "Frá aðdráttarstigi",
|
|
174
|
-
"Full map data": "Öll kortagögn",
|
|
175
173
|
"Go to «{feature}»": "Fara á «{feature}»",
|
|
176
174
|
"Heatmap intensity property": "Styrkeigindi fyrir hitakort",
|
|
177
175
|
"Heatmap radius": "Radíus hitakorts",
|
|
@@ -402,7 +400,6 @@
|
|
|
402
400
|
"Change": "Change",
|
|
403
401
|
"Powered by uMap": "Powered by uMap",
|
|
404
402
|
"Search": "Search",
|
|
405
|
-
"Toggle direct input (advanced)": "Toggle direct input (advanced)",
|
|
406
403
|
"Datalayers": "Datalayers",
|
|
407
404
|
"Secret edit link:": "Secret edit link:",
|
|
408
405
|
"Who can edit \"{layer}\"": "Who can edit \"{layer}\"",
|
|
@@ -428,5 +425,13 @@
|
|
|
428
425
|
"Go to the homepage": "Go to the homepage",
|
|
429
426
|
"Switch to edit mode": "Switch to edit mode",
|
|
430
427
|
"Update who can see and edit the map": "Update who can see and edit the map",
|
|
431
|
-
"View": "View"
|
|
428
|
+
"View": "View",
|
|
429
|
+
"Add image URL": "Add image URL",
|
|
430
|
+
"Backup data": "Backup data",
|
|
431
|
+
"Download full data": "Download full data",
|
|
432
|
+
"Emoji & Character": "Emoji & Character",
|
|
433
|
+
"Generic": "Generic",
|
|
434
|
+
"Symbol": "Symbol",
|
|
435
|
+
"Type char or paste emoji": "Type char or paste emoji",
|
|
436
|
+
"URL": "URL"
|
|
432
437
|
}
|
umap/static/umap/locale/it.js
CHANGED
|
@@ -46,7 +46,6 @@ const locale = {
|
|
|
46
46
|
"Popup content template": "Modello del contenuto del popup",
|
|
47
47
|
"Side panel": "Pannello laterale",
|
|
48
48
|
"Simplify": "Semplifica",
|
|
49
|
-
"Symbol or url": "Simbolo o url",
|
|
50
49
|
"Table": "Tabella",
|
|
51
50
|
"always": "sempre",
|
|
52
51
|
"clear": "pulisci",
|
|
@@ -171,7 +170,6 @@ const locale = {
|
|
|
171
170
|
"Filter keys": "Filtro sui campi",
|
|
172
171
|
"Format": "Formato",
|
|
173
172
|
"From zoom": "Dallo zoom",
|
|
174
|
-
"Full map data": "Mappa completa",
|
|
175
173
|
"Go to «{feature}»": "Vai a «{feature}»",
|
|
176
174
|
"Heatmap intensity property": "Proprietà intensità mappa di densità",
|
|
177
175
|
"Heatmap radius": "Raggio mappa di densità",
|
|
@@ -402,7 +400,6 @@ const locale = {
|
|
|
402
400
|
"Change": "Cambia",
|
|
403
401
|
"Powered by uMap": "Alimentato da uMap",
|
|
404
402
|
"Search": "Ricerca",
|
|
405
|
-
"Toggle direct input (advanced)": "Attiva/disattiva input diretto (avanzato)",
|
|
406
403
|
"Datalayers": "Strati di dati",
|
|
407
404
|
"Secret edit link:": "Link segreto per editare:",
|
|
408
405
|
"Who can edit \"{layer}\"": "Chi può editare \"{layer}\"",
|
|
@@ -428,7 +425,15 @@ const locale = {
|
|
|
428
425
|
"Go to the homepage": "Go to the homepage",
|
|
429
426
|
"Switch to edit mode": "Switch to edit mode",
|
|
430
427
|
"Update who can see and edit the map": "Update who can see and edit the map",
|
|
431
|
-
"View": "View"
|
|
428
|
+
"View": "View",
|
|
429
|
+
"Add image URL": "Add image URL",
|
|
430
|
+
"Backup data": "Backup data",
|
|
431
|
+
"Download full data": "Download full data",
|
|
432
|
+
"Emoji & Character": "Emoji & Character",
|
|
433
|
+
"Generic": "Generic",
|
|
434
|
+
"Symbol": "Symbol",
|
|
435
|
+
"Type char or paste emoji": "Type char or paste emoji",
|
|
436
|
+
"URL": "URL"
|
|
432
437
|
}
|
|
433
438
|
L.registerLocale("it", locale)
|
|
434
439
|
L.setLocale("it")
|
umap/static/umap/locale/it.json
CHANGED
|
@@ -46,7 +46,6 @@
|
|
|
46
46
|
"Popup content template": "Modello del contenuto del popup",
|
|
47
47
|
"Side panel": "Pannello laterale",
|
|
48
48
|
"Simplify": "Semplifica",
|
|
49
|
-
"Symbol or url": "Simbolo o url",
|
|
50
49
|
"Table": "Tabella",
|
|
51
50
|
"always": "sempre",
|
|
52
51
|
"clear": "pulisci",
|
|
@@ -171,7 +170,6 @@
|
|
|
171
170
|
"Filter keys": "Filtro sui campi",
|
|
172
171
|
"Format": "Formato",
|
|
173
172
|
"From zoom": "Dallo zoom",
|
|
174
|
-
"Full map data": "Mappa completa",
|
|
175
173
|
"Go to «{feature}»": "Vai a «{feature}»",
|
|
176
174
|
"Heatmap intensity property": "Proprietà intensità mappa di densità",
|
|
177
175
|
"Heatmap radius": "Raggio mappa di densità",
|
|
@@ -402,7 +400,6 @@
|
|
|
402
400
|
"Change": "Cambia",
|
|
403
401
|
"Powered by uMap": "Alimentato da uMap",
|
|
404
402
|
"Search": "Ricerca",
|
|
405
|
-
"Toggle direct input (advanced)": "Attiva/disattiva input diretto (avanzato)",
|
|
406
403
|
"Datalayers": "Strati di dati",
|
|
407
404
|
"Secret edit link:": "Link segreto per editare:",
|
|
408
405
|
"Who can edit \"{layer}\"": "Chi può editare \"{layer}\"",
|
|
@@ -428,5 +425,13 @@
|
|
|
428
425
|
"Go to the homepage": "Go to the homepage",
|
|
429
426
|
"Switch to edit mode": "Switch to edit mode",
|
|
430
427
|
"Update who can see and edit the map": "Update who can see and edit the map",
|
|
431
|
-
"View": "View"
|
|
428
|
+
"View": "View",
|
|
429
|
+
"Add image URL": "Add image URL",
|
|
430
|
+
"Backup data": "Backup data",
|
|
431
|
+
"Download full data": "Download full data",
|
|
432
|
+
"Emoji & Character": "Emoji & Character",
|
|
433
|
+
"Generic": "Generic",
|
|
434
|
+
"Symbol": "Symbol",
|
|
435
|
+
"Type char or paste emoji": "Type char or paste emoji",
|
|
436
|
+
"URL": "URL"
|
|
432
437
|
}
|