umap-project 2.9.3__py3-none-any.whl → 3.0.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of umap-project might be problematic. Click here for more details.
- umap/__init__.py +1 -1
- umap/context_processors.py +1 -0
- umap/forms.py +1 -2
- umap/locale/de/LC_MESSAGES/django.mo +0 -0
- umap/locale/de/LC_MESSAGES/django.po +218 -96
- umap/locale/en/LC_MESSAGES/django.po +128 -52
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +128 -52
- umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- umap/locale/hu/LC_MESSAGES/django.po +209 -88
- umap/locale/is/LC_MESSAGES/django.mo +0 -0
- umap/locale/is/LC_MESSAGES/django.po +296 -175
- umap/migrations/0027_map_tags.py +23 -0
- umap/models.py +13 -2
- umap/settings/base.py +23 -5
- umap/static/umap/base.css +41 -8
- umap/static/umap/content.css +72 -37
- umap/static/umap/css/bar.css +43 -21
- umap/static/umap/css/dialog.css +4 -1
- umap/static/umap/css/form.css +40 -27
- umap/static/umap/css/icon.css +11 -1
- umap/static/umap/css/importers.css +7 -0
- umap/static/umap/img/16-white.svg +23 -2
- umap/static/umap/img/16.svg +1 -1
- umap/static/umap/img/24.svg +4 -4
- umap/static/umap/img/home.svg +7 -0
- umap/static/umap/img/importers/banfr.svg +1 -0
- umap/static/umap/img/marker.svg +2 -5
- umap/static/umap/img/source/16-white.svg +24 -3
- umap/static/umap/img/source/16.svg +1 -1
- umap/static/umap/img/source/24.svg +5 -5
- umap/static/umap/img/target.svg +1 -0
- umap/static/umap/js/components/alerts/alert.js +0 -1
- umap/static/umap/js/modules/browser.js +4 -4
- umap/static/umap/js/modules/caption.js +1 -1
- umap/static/umap/js/modules/data/features.js +25 -25
- umap/static/umap/js/modules/data/layer.js +91 -97
- umap/static/umap/js/modules/facets.js +9 -5
- umap/static/umap/js/modules/form/builder.js +21 -29
- umap/static/umap/js/modules/form/fields.js +40 -14
- umap/static/umap/js/modules/formatter.js +1 -1
- umap/static/umap/js/modules/global.js +9 -5
- umap/static/umap/js/modules/help.js +18 -5
- umap/static/umap/js/modules/importer.js +5 -2
- umap/static/umap/js/modules/importers/banfr.js +93 -0
- umap/static/umap/js/modules/importers/cadastrefr.js +2 -2
- umap/static/umap/js/modules/importers/communesfr.js +1 -1
- umap/static/umap/js/modules/permissions.js +20 -10
- umap/static/umap/js/modules/rendering/icon.js +15 -2
- umap/static/umap/js/modules/rendering/layers/classified.js +7 -7
- umap/static/umap/js/modules/rendering/layers/cluster.js +2 -2
- umap/static/umap/js/modules/rendering/layers/heat.js +4 -4
- umap/static/umap/js/modules/rendering/map.js +14 -6
- umap/static/umap/js/modules/rendering/popup.js +2 -2
- umap/static/umap/js/modules/rendering/template.js +3 -3
- umap/static/umap/js/modules/rendering/ui.js +17 -11
- umap/static/umap/js/modules/rules.js +13 -16
- umap/static/umap/js/modules/schema.js +23 -1
- umap/static/umap/js/modules/share.js +1 -1
- umap/static/umap/js/modules/slideshow.js +1 -0
- umap/static/umap/js/modules/sync/engine.js +141 -19
- umap/static/umap/js/modules/sync/undo.js +101 -0
- umap/static/umap/js/modules/sync/updaters.js +51 -28
- umap/static/umap/js/modules/tableeditor.js +1 -1
- umap/static/umap/js/modules/ui/bar.js +61 -21
- umap/static/umap/js/modules/ui/tooltip.js +1 -1
- umap/static/umap/js/modules/umap.js +190 -176
- umap/static/umap/js/modules/utils.js +30 -4
- umap/static/umap/js/umap.controls.js +82 -38
- umap/static/umap/locale/am_ET.js +11 -6
- umap/static/umap/locale/am_ET.json +11 -6
- umap/static/umap/locale/ar.js +11 -6
- umap/static/umap/locale/ar.json +11 -6
- umap/static/umap/locale/ast.js +11 -6
- umap/static/umap/locale/ast.json +11 -6
- umap/static/umap/locale/bg.js +11 -6
- umap/static/umap/locale/bg.json +11 -6
- umap/static/umap/locale/br.js +12 -7
- umap/static/umap/locale/br.json +12 -7
- umap/static/umap/locale/ca.js +11 -6
- umap/static/umap/locale/ca.json +11 -6
- umap/static/umap/locale/cs_CZ.js +11 -6
- umap/static/umap/locale/cs_CZ.json +11 -6
- umap/static/umap/locale/da.js +11 -6
- umap/static/umap/locale/da.json +11 -6
- umap/static/umap/locale/de.js +47 -42
- umap/static/umap/locale/de.json +47 -42
- umap/static/umap/locale/el.js +11 -6
- umap/static/umap/locale/el.json +11 -6
- umap/static/umap/locale/en.js +11 -6
- umap/static/umap/locale/en.json +11 -6
- umap/static/umap/locale/en_US.json +11 -6
- umap/static/umap/locale/es.js +11 -6
- umap/static/umap/locale/es.json +11 -6
- umap/static/umap/locale/et.js +11 -6
- umap/static/umap/locale/et.json +11 -6
- umap/static/umap/locale/eu.js +11 -6
- umap/static/umap/locale/eu.json +11 -6
- umap/static/umap/locale/fa_IR.js +11 -6
- umap/static/umap/locale/fa_IR.json +11 -6
- umap/static/umap/locale/fi.js +11 -6
- umap/static/umap/locale/fi.json +11 -6
- umap/static/umap/locale/fr.js +11 -6
- umap/static/umap/locale/fr.json +11 -6
- umap/static/umap/locale/gl.js +12 -7
- umap/static/umap/locale/gl.json +12 -7
- umap/static/umap/locale/he.js +11 -6
- umap/static/umap/locale/he.json +11 -6
- umap/static/umap/locale/hr.js +11 -6
- umap/static/umap/locale/hr.json +11 -6
- umap/static/umap/locale/hu.js +25 -20
- umap/static/umap/locale/hu.json +25 -20
- umap/static/umap/locale/id.js +11 -6
- umap/static/umap/locale/id.json +11 -6
- umap/static/umap/locale/is.js +151 -146
- umap/static/umap/locale/is.json +151 -146
- umap/static/umap/locale/it.js +11 -6
- umap/static/umap/locale/it.json +11 -6
- umap/static/umap/locale/ja.js +11 -6
- umap/static/umap/locale/ja.json +11 -6
- umap/static/umap/locale/ko.js +11 -6
- umap/static/umap/locale/ko.json +11 -6
- umap/static/umap/locale/lt.js +11 -6
- umap/static/umap/locale/lt.json +11 -6
- umap/static/umap/locale/ms.js +11 -6
- umap/static/umap/locale/ms.json +11 -6
- umap/static/umap/locale/nl.js +12 -7
- umap/static/umap/locale/nl.json +12 -7
- umap/static/umap/locale/no.js +11 -6
- umap/static/umap/locale/no.json +11 -6
- umap/static/umap/locale/pl.js +11 -6
- umap/static/umap/locale/pl.json +11 -6
- umap/static/umap/locale/pl_PL.json +11 -6
- umap/static/umap/locale/pt.js +11 -6
- umap/static/umap/locale/pt.json +11 -6
- umap/static/umap/locale/pt_BR.js +11 -6
- umap/static/umap/locale/pt_BR.json +11 -6
- umap/static/umap/locale/pt_PT.js +11 -6
- umap/static/umap/locale/pt_PT.json +11 -6
- umap/static/umap/locale/ro.js +11 -6
- umap/static/umap/locale/ro.json +11 -6
- umap/static/umap/locale/ru.js +11 -6
- umap/static/umap/locale/ru.json +11 -6
- umap/static/umap/locale/sk_SK.js +11 -6
- umap/static/umap/locale/sk_SK.json +11 -6
- umap/static/umap/locale/sl.js +11 -6
- umap/static/umap/locale/sl.json +11 -6
- umap/static/umap/locale/sr.js +11 -6
- umap/static/umap/locale/sr.json +11 -6
- umap/static/umap/locale/sv.js +11 -6
- umap/static/umap/locale/sv.json +11 -6
- umap/static/umap/locale/th_TH.js +11 -6
- umap/static/umap/locale/th_TH.json +11 -6
- umap/static/umap/locale/tr.js +11 -6
- umap/static/umap/locale/tr.json +11 -6
- umap/static/umap/locale/uk_UA.js +11 -6
- umap/static/umap/locale/uk_UA.json +11 -6
- umap/static/umap/locale/vi.js +11 -6
- umap/static/umap/locale/vi.json +11 -6
- umap/static/umap/locale/vi_VN.json +11 -6
- umap/static/umap/locale/zh.js +11 -6
- umap/static/umap/locale/zh.json +11 -6
- umap/static/umap/locale/zh_CN.json +11 -6
- umap/static/umap/locale/zh_TW.Big5.json +11 -6
- umap/static/umap/locale/zh_TW.js +19 -14
- umap/static/umap/locale/zh_TW.json +19 -14
- umap/static/umap/map.css +58 -28
- umap/static/umap/unittests/sync.js +0 -57
- umap/static/umap/unittests/utils.js +47 -0
- umap/static/umap/vars.css +5 -2
- umap/static/umap/vendors/photon/leaflet.photon.js +3 -0
- umap/sync/payloads.py +3 -2
- umap/templates/auth/user_detail.html +1 -1
- umap/templates/auth/user_stars.html +1 -1
- umap/templates/umap/content.html +17 -12
- umap/templates/umap/home.html +7 -5
- umap/templates/umap/map_fragment.html +1 -1
- umap/templates/umap/map_list.html +20 -13
- umap/templates/umap/search.html +7 -3
- umap/templates/umap/search_bar.html +13 -11
- umap/templates/umap/team_detail.html +1 -1
- umap/tests/base.py +2 -1
- umap/tests/fixtures/remote_data.umap +55 -0
- umap/tests/fixtures/test_upload_data_with_iconurl.umap +122 -0
- umap/tests/integration/test_browser.py +1 -3
- umap/tests/integration/test_conditional_rules.py +3 -0
- umap/tests/integration/test_edit_datalayer.py +2 -7
- umap/tests/integration/test_edit_map.py +15 -0
- umap/tests/integration/test_edit_polygon.py +1 -2
- umap/tests/integration/test_import.py +59 -2
- umap/tests/integration/test_optimistic_merge.py +4 -3
- umap/tests/integration/test_owned_map.py +0 -1
- umap/tests/integration/test_save.py +2 -4
- umap/tests/integration/test_undo_redo.py +267 -0
- umap/tests/integration/test_websocket_sync.py +78 -11
- umap/tests/settings.py +1 -3
- umap/tests/test_datalayer_s3.py +1 -0
- umap/tests/test_map_views.py +1 -0
- umap/tests/test_views.py +34 -0
- umap/utils.py +1 -1
- umap/views.py +23 -2
- {umap_project-2.9.3.dist-info → umap_project-3.0.0.dist-info}/METADATA +13 -12
- {umap_project-2.9.3.dist-info → umap_project-3.0.0.dist-info}/RECORD +206 -208
- umap/static/umap/js/modules/saving.js +0 -52
- umap/static/umap/test/.eslintrc +0 -21
- umap/static/umap/test/DataLayer.js +0 -463
- umap/static/umap/test/Feature.js +0 -131
- umap/static/umap/test/Map.js +0 -37
- umap/static/umap/test/Marker.js +0 -126
- umap/static/umap/test/Polygon.js +0 -111
- umap/static/umap/test/Polyline.js +0 -286
- umap/static/umap/test/Util.js +0 -28
- umap/static/umap/test/_pre.js +0 -455
- umap/static/umap/test/index.html +0 -139
- {umap_project-2.9.3.dist-info → umap_project-3.0.0.dist-info}/WHEEL +0 -0
- {umap_project-2.9.3.dist-info → umap_project-3.0.0.dist-info}/entry_points.txt +0 -0
- {umap_project-2.9.3.dist-info → umap_project-3.0.0.dist-info}/licenses/LICENSE +0 -0
umap/static/umap/locale/is.js
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
const locale = {
|
|
2
|
-
"(area: {measure})": "(
|
|
3
|
-
"(length: {measure})": "(
|
|
2
|
+
"(area: {measure})": "(svæði: {measure})",
|
|
3
|
+
"(length: {measure})": "(lengd: {measure})",
|
|
4
4
|
"# one hash for main heading": "# eitt myllumerki fyrir aðalfyrirsögn",
|
|
5
5
|
"## two hashes for second heading": "## tvö myllumerki fyrir aðra fyrirsögn",
|
|
6
6
|
"### three hashes for third heading": "### þrjú myllumerki fyrir þriðju fyrirsögn",
|
|
7
7
|
"**double star for bold**": "**tvöföld stjarna/margföldun fyrir feitletrað**",
|
|
8
|
-
"*single star for italic*": "*
|
|
9
|
-
"--- for a horizontal rule": "---
|
|
8
|
+
"*single star for italic*": "*einföld stjarna/margföldun fyrir skáletrað*",
|
|
9
|
+
"--- for a horizontal rule": "--- gefur lárétt þverstrik",
|
|
10
10
|
"1 day": "1 dagur",
|
|
11
11
|
"1 hour": "1 klukkustund",
|
|
12
12
|
"5 min": "5 mín",
|
|
13
|
-
"A comma separated list of numbers that defines the stroke dash pattern. Ex.: \"5, 10, 15\".": "Kommu-aðgreindur listi með tölum sem skilgreina strikamynstur. Til dæmis:
|
|
13
|
+
"A comma separated list of numbers that defines the stroke dash pattern. Ex.: \"5, 10, 15\".": "Kommu-aðgreindur listi með tölum sem skilgreina strikamynstur. Til dæmis: '5, 10, 15'.",
|
|
14
14
|
"About": "Um hugbúnaðinn",
|
|
15
|
-
"Action not allowed :(": "
|
|
15
|
+
"Action not allowed :(": "Þessi aðgerð er ekki leyfð :(",
|
|
16
16
|
"Activate slideshow mode": "Virkja skyggnusýningarham",
|
|
17
|
-
"Add a layer": "Bæta við
|
|
17
|
+
"Add a layer": "Bæta við þekju",
|
|
18
18
|
"Add a line to the current multi": "Bæta línu við fyrirliggjandi hóp",
|
|
19
19
|
"Add a new property": "Bæta við nýju eigindi",
|
|
20
20
|
"Add a polygon to the current multi": "Bæta marghyrningi við fyrirliggjandi hóp",
|
|
21
|
-
"Add image URL": "
|
|
21
|
+
"Add image URL": "Bæta við slóð á mynd",
|
|
22
22
|
"Advanced actions": "Ítarlegri aðgerðir",
|
|
23
23
|
"Advanced properties": "Ítarlegir eiginleikar",
|
|
24
24
|
"All data and settings of the map": "All data and settings of the map",
|
|
@@ -26,11 +26,8 @@ const locale = {
|
|
|
26
26
|
"Allow interactions": "Leyfa gagnvirkni",
|
|
27
27
|
"Allow scroll wheel zoom?": "Leyfa aðdrátt með skrunhjóli?",
|
|
28
28
|
"always": "alltaf",
|
|
29
|
-
"Animated transitions": "
|
|
30
|
-
"Are you sure you want to
|
|
31
|
-
"Are you sure you want to clone this map and all its datalayers?": "Ertu viss um að þú viljir klóna þetta kort og öll gagnalög þess?",
|
|
32
|
-
"Are you sure you want to delete the feature?": "Ertu viss um að þú viljir eyða fitjunni?",
|
|
33
|
-
"Are you sure you want to delete this layer?": "Ertu viss um að þú viljir eyða þessu lagi?",
|
|
29
|
+
"Animated transitions": "Millifærslur með hreyfingu",
|
|
30
|
+
"Are you sure you want to clone this map and all its datalayers?": "Ertu viss um að þú viljir klóna þetta kort og allar gagnaþekjur þess?",
|
|
34
31
|
"Are you sure you want to delete this map?": "Ertu viss um að þú viljir eyða þessu korti?",
|
|
35
32
|
"Are you sure you want to delete this property on all the features?": "Ertu viss um að þú viljir eyða þessu eigindi á öllum fitjum?",
|
|
36
33
|
"Are you sure you want to restore this version?": "Ertu viss um að vilja endurheimta þessa útgáfu?",
|
|
@@ -39,19 +36,18 @@ const locale = {
|
|
|
39
36
|
"Auto": "Sjálfvirkt",
|
|
40
37
|
"Automatic": "Sjálfvirkt",
|
|
41
38
|
"Autostart when map is loaded": "Sjálfræsa þegar korti er hlaðið inn",
|
|
42
|
-
"Back to preview": "
|
|
39
|
+
"Back to preview": "Til baka í forskoðun",
|
|
43
40
|
"Background overlay url": "Background overlay url",
|
|
44
41
|
"Ball": "Kúla",
|
|
45
|
-
"Bring feature to center": "
|
|
42
|
+
"Bring feature to center": "Færa fitju að miðju",
|
|
46
43
|
"Browse data": "Skoða gögn",
|
|
47
44
|
"by": "eftir",
|
|
48
45
|
"Cache proxied request": "Setja milliþjónabeiðnir í skyndiminni",
|
|
49
|
-
"Cancel edits": "Hætta við breytingar",
|
|
50
46
|
"Caption": "Skýringatexti",
|
|
51
47
|
"Center map on your location": "Miðjusetja kortið á staðsetningu þína",
|
|
52
48
|
"Change map background": "Breyta bakgrunni landakorts",
|
|
53
|
-
"Change tilelayers": "Skipta um
|
|
54
|
-
"Change": "
|
|
49
|
+
"Change tilelayers": "Skipta um kortatíglaþekjur",
|
|
50
|
+
"Change": "Breyta",
|
|
55
51
|
"Choose the data format": "Veldu gagnasnið",
|
|
56
52
|
"Choropleth breakpoints": "Choropleth breakpoints",
|
|
57
53
|
"Choropleth classes": "Choropleth classes",
|
|
@@ -79,38 +75,38 @@ const locale = {
|
|
|
79
75
|
"Comma separated list of numbers, including min and max values.": "Comma separated list of numbers, including min and max values.",
|
|
80
76
|
"Comma separated list of properties to use for sorting features. To reverse the sort, put a minus sign (-) before. Eg. mykey,-otherkey.": "Comma separated list of properties to use for sorting features. To reverse the sort, put a minus sign (-) before. Eg. mykey,-otherkey.",
|
|
81
77
|
"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.": "Gildi aðgreind með kommu, dálkmerki (tab) eða semíkommu. Miðað við SRS hnattviðmið WGS84. Einungis punktalaganir (geometries) eru fluttar inn. Við innflutning er skoðað í fyrirsögnum dálka hvort minnst sé á «lat» eða «lon» í byrjun fyrirsagna, óháð há-/lágstöfum. Allir aðrir dálkar eru fluttir inn sem eigindi.",
|
|
82
|
-
"Congratulations, your map has been created!": "
|
|
78
|
+
"Congratulations, your map has been created!": "Til hamingju, það tókst að útbúa landakortið þitt!",
|
|
83
79
|
"Continue line": "Halda áfram með línu",
|
|
84
80
|
"Coordinates": "Hnit",
|
|
85
81
|
"copy": "copy",
|
|
86
82
|
"Credits": "Framlög",
|
|
87
|
-
"Current map view": "
|
|
83
|
+
"Current map view": "Núverandi kortasýn",
|
|
88
84
|
"Current view instead of default map view?": "Fyrirliggjandi sýn í stað sjálfgefinnar kortasýnar?",
|
|
89
85
|
"Custom background": "Sérsniðinn bakgrunnur",
|
|
90
|
-
"Custom overlay": "
|
|
86
|
+
"Custom overlay": "Sérsniðið yfirlag",
|
|
91
87
|
"dash array": "strikafylki",
|
|
92
88
|
"Data is browsable": "Gögn eru vafranleg",
|
|
93
|
-
"Datalayers": "
|
|
89
|
+
"Datalayers": "Gagnaþekjur",
|
|
94
90
|
"Default interaction options": "Sjálfgefnir valkostir gagnvirkni",
|
|
95
91
|
"Default properties": "Sjálfgefnir eiginleikar",
|
|
96
92
|
"Default shape properties": "Sjálfgefnir eiginleikar lögunar",
|
|
97
|
-
"Default view": "
|
|
93
|
+
"Default view": "Sjálfgefin sýn",
|
|
98
94
|
"Default zoom level": "Sjálfgefið aðdráttarstig",
|
|
99
95
|
"Default": "Sjálfgefið",
|
|
100
96
|
"Default: name": "Sjálfgefið: nafn",
|
|
101
97
|
"Define link to open in a new window on polygon click.": "Skilgreindu tengil til að opna í nýjum glugga þegar smellt er á marghyrning.",
|
|
102
98
|
"define": "skilgreina",
|
|
103
99
|
"Delay between two transitions when in play mode": "Hlé milli tveggja millifærslna í afspilunarham",
|
|
104
|
-
"Delete layer": "Eyða
|
|
100
|
+
"Delete layer": "Eyða þekju",
|
|
105
101
|
"Delete this feature": "Eyða þessari fitju",
|
|
106
102
|
"Delete this shape": "Eyða þessari lögun",
|
|
107
103
|
"Delete this vertex (Alt+Click)": "Eyða þessum brotpunkti (Alt+Smella)",
|
|
108
104
|
"Delete": "Eyða",
|
|
109
105
|
"description": "lýsing",
|
|
110
|
-
"Direct link": "
|
|
106
|
+
"Direct link": "Beinn tengill",
|
|
111
107
|
"Directions from here": "Leiðir héðan",
|
|
112
108
|
"Display label": "Birta skýringu",
|
|
113
|
-
"Display measure": "Birta
|
|
109
|
+
"Display measure": "Birta mælingar",
|
|
114
110
|
"display name": "birtingarnafn",
|
|
115
111
|
"Display on load": "Birta við innhleðslu",
|
|
116
112
|
"Display the control to open OpenStreetMap editor": "Birta hnapp til að opna OpenStreetMap-ritill",
|
|
@@ -119,12 +115,12 @@ const locale = {
|
|
|
119
115
|
"Display the locate control": "Birta staðsetningarhnapp",
|
|
120
116
|
"Display the measure control": "Birta mælihnapp",
|
|
121
117
|
"Display the search control": "Birta leitarhnapp",
|
|
122
|
-
"Display the tile layers control": "Birta hnapp fyrir
|
|
118
|
+
"Display the tile layers control": "Birta hnapp fyrir kortatíglaþekjur",
|
|
123
119
|
"Display the zoom control": "Birta aðdráttarhnapp",
|
|
124
120
|
"Do you want to display a caption bar?": "Viltu birta skjástiku með skýringatexta?",
|
|
125
121
|
"Do you want to display a minimap?": "Viltu birta yfirlitskort?",
|
|
126
122
|
"Do you want to display a panel on load?": "Viltu birta hliðarspjald við innhleðslu?",
|
|
127
|
-
"Do you want to display caption menus?": "
|
|
123
|
+
"Do you want to display caption menus?": "Viltu birta valmyndir með skýringatexta?",
|
|
128
124
|
"Do you want to display popup footer?": "Viltu birta síðufót sem sprettglugga?",
|
|
129
125
|
"Do you want to display the scale control?": "Viltu birta kvarðahnapp?",
|
|
130
126
|
"Do you want to display the «more» control?": "Viltu birta hnapp fyrir «meira»?",
|
|
@@ -133,40 +129,40 @@ const locale = {
|
|
|
133
129
|
"Draw a marker": "Teikna kortamerki",
|
|
134
130
|
"Draw a polygon": "Teikna fláka (marghyrning)",
|
|
135
131
|
"Draw a polyline": "Teikna fjölpunktalínu (polyline)",
|
|
136
|
-
"Drawing": "
|
|
132
|
+
"Drawing": "Teikning",
|
|
137
133
|
"Drop": "Dropi",
|
|
138
134
|
"Dynamic properties": "Breytilegir eiginleikar",
|
|
139
135
|
"Dynamic": "Breytilegt",
|
|
140
|
-
"Edit feature's layer": "Breyta
|
|
136
|
+
"Edit feature's layer": "Breyta þekju fitjunnar",
|
|
141
137
|
"Edit properties in a table": "Breyta eigindum í töflu",
|
|
142
|
-
"Edit the title of the map": "
|
|
138
|
+
"Edit the title of the map": "Breyta titli landakortsins",
|
|
143
139
|
"Edit this feature": "Breyta þessari fitju",
|
|
144
140
|
"Edit": "Breyta",
|
|
145
141
|
"Embed and link options": "Embed and link options",
|
|
146
142
|
"Embed the map": "Setja landakortið inn á vefsíðu",
|
|
147
|
-
"Emoji & Character": "
|
|
143
|
+
"Emoji & Character": "Tákn og stafir",
|
|
148
144
|
"Empty": "Tómt",
|
|
149
145
|
"Equidistant": "Equidistant",
|
|
150
|
-
"Error in the overlay URL": "
|
|
151
|
-
"Error in the tilelayer URL": "Villa í slóð
|
|
146
|
+
"Error in the overlay URL": "Villa í slóð yfirlagsþekju",
|
|
147
|
+
"Error in the tilelayer URL": "Villa í slóð kortatíglaþekju",
|
|
152
148
|
"Exit Fullscreen": "Hætta í skjáfylli",
|
|
153
149
|
"expanded": "útliðað",
|
|
154
150
|
"Extract shape to separate feature": "Flytja lögun í aðskilda fitju",
|
|
155
|
-
"Feature identifier key": "
|
|
156
|
-
"Feature properties": "
|
|
151
|
+
"Feature identifier key": "Auðkennislykill fitju",
|
|
152
|
+
"Feature properties": "Eiginleikar fitju",
|
|
157
153
|
"Fetch data each time map view changes.": "Sækja gögn í hvert skipti sem kortasýn breytist",
|
|
158
154
|
"fill color": "fyllilitur",
|
|
159
155
|
"fill opacity": "ógegnsæi fyllingar",
|
|
160
156
|
"fill": "fylling",
|
|
161
157
|
"Fit all data": "Fit all data",
|
|
162
158
|
"Format": "Snið",
|
|
163
|
-
"From zoom": "
|
|
159
|
+
"From zoom": "Úr aðdráttarstigi",
|
|
164
160
|
"full backup": "full backup",
|
|
165
|
-
"Generic": "
|
|
161
|
+
"Generic": "Algengt",
|
|
166
162
|
"GeoRSS (only link)": "GeoRSS (aðeins tengill)",
|
|
167
163
|
"GeoRSS (title + image)": "GeoRSS (titill + mynd)",
|
|
168
|
-
"Go to \"{coords}\"": "
|
|
169
|
-
"Go to the homepage": "
|
|
164
|
+
"Go to \"{coords}\"": "Fara á \"{coords}\"",
|
|
165
|
+
"Go to the homepage": "Fara á heimasíðuna",
|
|
170
166
|
"Go to «{feature}»": "Fara á «{feature}»",
|
|
171
167
|
"Heatmap intensity property": "Styrkeigindi fyrir hitakort",
|
|
172
168
|
"Heatmap radius": "Radíus hitakorts",
|
|
@@ -177,19 +173,19 @@ const locale = {
|
|
|
177
173
|
"Hide controls": "Fela hnappa",
|
|
178
174
|
"Home": "Heim",
|
|
179
175
|
"How much to simplify the polyline on each zoom level (more = better performance and smoother look, less = more accurate)": "Hve mikið eigi að einfalda fjölpunktalínu á hverju aðdráttarstigi (meira = betri afköst og mýkra útlit, minna = nákvæmara)",
|
|
180
|
-
"icon opacity": "
|
|
181
|
-
"Icon shape": "Lögun
|
|
176
|
+
"icon opacity": "ógegnsæi tákns",
|
|
177
|
+
"Icon shape": "Lögun táknmyndar",
|
|
182
178
|
"Icon symbol": "Myndtákn",
|
|
183
179
|
"If false, the polygon or line will act as a part of the underlying map.": "If false, the polygon or line will act as a part of the underlying map.",
|
|
184
|
-
"Iframe with custom height (in px): {{{https://iframe.url.com|height}}}": "Iframe
|
|
185
|
-
"Iframe with custom height and width (in px): {{{https://iframe.url.com|height*width}}}": "Iframe
|
|
180
|
+
"Iframe with custom height (in px): {{{https://iframe.url.com|height}}}": "Iframe með sérsniðinni hæð (í mynddílum/px): {{{https://iframe.url.com|height}}}",
|
|
181
|
+
"Iframe with custom height and width (in px): {{{https://iframe.url.com|height*width}}}": "Iframe með sérsniðinni hæð og breidd (í mynddílum/px): {{{https://iframe.url.com|height*width}}}",
|
|
186
182
|
"iframe": "iFrame",
|
|
187
183
|
"Iframe: {{{https://iframe.url.com}}}": "Iframe: {{{https://iframe.url.com}}}",
|
|
188
|
-
"Image with custom width (in px): {{https://image.url.com|width}}": "
|
|
189
|
-
"Image: {{https://image.url.com}}": "
|
|
184
|
+
"Image with custom width (in px): {{https://image.url.com|width}}": "Mynd með sérsniðinni breidd (í mynddílum): {{https://image.url.com|width}}",
|
|
185
|
+
"Image: {{https://image.url.com}}": "Mynd: {{https://image.url.com}}",
|
|
190
186
|
"Import data": "Flytja inn gögn",
|
|
191
|
-
"Import in a new layer": "Flytja inn í
|
|
192
|
-
"Imports all umap data, including layers and settings.": "Flytur inn öll umap-gögn, þar með talin
|
|
187
|
+
"Import in a new layer": "Flytja inn í nýja þekju",
|
|
188
|
+
"Imports all umap data, including layers and settings.": "Flytur inn öll umap-gögn, þar með talin þekjur og stillingar.",
|
|
193
189
|
"Include full screen link?": "Hafa með tengil á að fylla skjá?",
|
|
194
190
|
"Inherit": "Erfa",
|
|
195
191
|
"inherit": "erfa",
|
|
@@ -199,32 +195,32 @@ const locale = {
|
|
|
199
195
|
"Invalid umap data": "Ógild umap-gögn",
|
|
200
196
|
"Jenks-Fisher": "Jenks-Fisher",
|
|
201
197
|
"K-means": "K-means",
|
|
202
|
-
"Keep current visible layers": "Halda fyrirliggjandi sýnilegum
|
|
198
|
+
"Keep current visible layers": "Halda fyrirliggjandi sýnilegum þekjum",
|
|
203
199
|
"kilometers": "kílómetrar",
|
|
204
200
|
"km": "km",
|
|
205
201
|
"Label direction": "Stefna skýringar",
|
|
206
202
|
"Label key": "Lykill skýringar",
|
|
207
203
|
"Labels are clickable": "Hægt er að smella á skýringar",
|
|
208
|
-
"Latest feature": "
|
|
204
|
+
"Latest feature": "Síðasta fitja",
|
|
209
205
|
"Latitude": "Breiddargráða",
|
|
210
|
-
"Layer properties": "Eiginleikar
|
|
211
|
-
"Layer": "
|
|
206
|
+
"Layer properties": "Eiginleikar þekju",
|
|
207
|
+
"Layer": "Þekja",
|
|
212
208
|
"Licence": "Notkunarleyfi",
|
|
213
209
|
"licence": "notkunarleyfi",
|
|
214
210
|
"Limit bounds": "Mörk útjaðars",
|
|
215
|
-
"Link to view the map": "
|
|
211
|
+
"Link to view the map": "Tengill til að skoða kortið",
|
|
216
212
|
"Link to…": "Tengja við…",
|
|
217
|
-
"Link with text: [[https://example.com|text of the link]]": "
|
|
213
|
+
"Link with text: [[https://example.com|text of the link]]": "Tengill með texta: [[https://example.com|texti tengils]]",
|
|
218
214
|
"Long credits": "Lengra um framlög",
|
|
219
215
|
"Longitude": "Lengdargráða",
|
|
220
216
|
"Make main shape": "Gera að aðallögun",
|
|
221
|
-
"Manage layers": "Sýsla með
|
|
217
|
+
"Manage layers": "Sýsla með þekjur",
|
|
222
218
|
"Manual": "Manual",
|
|
223
219
|
"Map background credits": "Þakkir vegna bakgrunnsmyndar:",
|
|
224
220
|
"Map has been attached to your account": "Kortið hefur verið tengt við notandaaðganginn þinn",
|
|
225
221
|
"Map has been saved!": "Landakortið hefur verið vistað!",
|
|
226
|
-
"Map has been starred": "
|
|
227
|
-
"Map has been unstarred": "
|
|
222
|
+
"Map has been starred": "Landakortið hefur verið stjörnumerkt",
|
|
223
|
+
"Map has been unstarred": "Stjörnumerking hefur verið tekin af landakortinu",
|
|
228
224
|
"Map user content has been published under licence": "Kortagögn notandans eru gefin út með notkunarleyfinu",
|
|
229
225
|
"Map's editors": "Ritstjórar korts",
|
|
230
226
|
"Map's owner": "Eigandi korts",
|
|
@@ -250,19 +246,19 @@ const locale = {
|
|
|
250
246
|
"No licence has been set": "Ekkert notkunarleyfi hefur verið sett",
|
|
251
247
|
"No results": "Engar niðurstöður",
|
|
252
248
|
"no": "nei",
|
|
253
|
-
"No.": "
|
|
249
|
+
"No.": "Nr.",
|
|
254
250
|
"None": "Ekkert",
|
|
255
251
|
"Number of desired classes (default 5)": "Number of desired classes (default 5)",
|
|
256
252
|
"On the bottom": "Neðst",
|
|
257
253
|
"On the left": "Vinstra megin",
|
|
258
254
|
"On the right": "Hægra megin",
|
|
259
255
|
"On the top": "Efst",
|
|
260
|
-
"Only visible layers' data": "
|
|
256
|
+
"Only visible layers' data": "Aðeins gögn sýnilegrar þekju",
|
|
261
257
|
"opacity": "ógegnsæi",
|
|
262
|
-
"Opacity": "
|
|
263
|
-
"Open current feature on load": "
|
|
258
|
+
"Opacity": "Ógegnsæi",
|
|
259
|
+
"Open current feature on load": "Opna fyrirliggjandi fitju við innhleðslu",
|
|
264
260
|
"Open link in…": "Opna tengil í…",
|
|
265
|
-
"Open share & download panel": "
|
|
261
|
+
"Open share & download panel": "Opna deilingar- og niðurhalsspjald",
|
|
266
262
|
"Open this map extent in a map editor to provide more accurate data to OpenStreetMap": "Opna umfang þessa korts í kortavinnsluforriti til að gefa nákvæmari kortagögn til OpenStreetMap",
|
|
267
263
|
"OpenStreetMap": "OpenStreetMap",
|
|
268
264
|
"Optional intensity property for heatmap": "Valfrjálst styrkeigindi fyrir hitakort",
|
|
@@ -272,9 +268,9 @@ const locale = {
|
|
|
272
268
|
"Override heatmap radius (default 25)": "Nota annan radíus hitakorts (sjálfgefið 25)",
|
|
273
269
|
"parent window": "yfirgluggi",
|
|
274
270
|
"Paste your data here": "Límdu gögnin þín hér",
|
|
275
|
-
"Permalink": "
|
|
276
|
-
"Permanent credits background": "
|
|
277
|
-
"Permanent credits": "
|
|
271
|
+
"Permalink": "Fastur tengill",
|
|
272
|
+
"Permanent credits background": "Viðvarandi bakgrunnur framlaga",
|
|
273
|
+
"Permanent credits": "Viðvarandi framlög",
|
|
278
274
|
"Please be sure the licence is compliant with your use.": "Gakktu úr skugga um að notkunarleyfið samsvari notkunasviði þínu.",
|
|
279
275
|
"Please choose a format": "Veldu snið",
|
|
280
276
|
"Please enter the name of the property": "Settu inn heiti á eigindið",
|
|
@@ -285,108 +281,108 @@ const locale = {
|
|
|
285
281
|
"Popup content template": "Sniðmát efnis í sprettglugga",
|
|
286
282
|
"Popup shape": "Lögun sprettglugga",
|
|
287
283
|
"Popup": "Sprettgluggi",
|
|
288
|
-
"Powered by uMap": "
|
|
284
|
+
"Powered by uMap": "Keyrt með uMap",
|
|
289
285
|
"previous": "fyrra",
|
|
290
|
-
"Problem in the response": "
|
|
286
|
+
"Problem in the response": "Vandamál í svarinu",
|
|
291
287
|
"Properties imported:": "Innflutt eigindi:",
|
|
292
288
|
"Provide an URL here": "Gefðu hér upp URL-slóð",
|
|
293
289
|
"Proxy request": "Beiðni frá milliþjóni",
|
|
294
290
|
"Quantiles": "Quantiles",
|
|
295
|
-
"Recent": "
|
|
291
|
+
"Recent": "Nýlegt",
|
|
296
292
|
"Remote data": "Fjartengd gögn",
|
|
297
293
|
"Remove shape from the multi": "Fjarlægja lögun úr hópnum",
|
|
298
|
-
"Replace layer content": "Skipta út innihaldi
|
|
294
|
+
"Replace layer content": "Skipta út innihaldi þekjunnar",
|
|
299
295
|
"Restore this version": "Endurheimta þessa útgáfu",
|
|
300
296
|
"Save current edits": "Vista fyrirliggjandi breytingar",
|
|
301
|
-
"Save map": "
|
|
297
|
+
"Save map": "Vista kort",
|
|
302
298
|
"Save": "Vista",
|
|
303
|
-
"Saved center and zoom": "
|
|
299
|
+
"Saved center and zoom": "Vistaði miðju og aðdrátt",
|
|
304
300
|
"Search location": "Leita að staðsetningu",
|
|
305
|
-
"Search": "
|
|
306
|
-
"Secret edit link:": "
|
|
301
|
+
"Search": "Leita",
|
|
302
|
+
"Secret edit link:": "Leynilegur breytingatengill:",
|
|
307
303
|
"See full screen": "Fylla skjáinn",
|
|
308
|
-
"See on OpenStreetMap": "
|
|
309
|
-
"Set it to false to hide this layer from the slideshow, the data browser, the popup navigation…": "Settu þetta sem ósatt til að fela
|
|
310
|
-
"settings": "
|
|
304
|
+
"See on OpenStreetMap": "Skoða á OpenStreetMap",
|
|
305
|
+
"Set it to false to hide this layer from the slideshow, the data browser, the popup navigation…": "Settu þetta sem ósatt til að fela þessa þekju úr skyggnusýningu, gagnavafranum, sprettleiðsögn…",
|
|
306
|
+
"settings": "stillingar",
|
|
311
307
|
"Shape properties": "Eiginleikar lögunar",
|
|
312
|
-
"Share and download": "
|
|
308
|
+
"Share and download": "Deila og sækja",
|
|
313
309
|
"Share this link to open a customized map view": "Share this link to open a customized map view",
|
|
314
310
|
"Short credits": "Stutt um framlög",
|
|
315
311
|
"Short link": "Short link",
|
|
316
312
|
"Show this layer in the caption": "Show this layer in the caption",
|
|
317
|
-
"Show/hide layer": "Birta/Fela
|
|
313
|
+
"Show/hide layer": "Birta/Fela þekju",
|
|
318
314
|
"Side panel": "Hliðarspjald",
|
|
319
|
-
"Simple link: [[https://example.com]]": "
|
|
315
|
+
"Simple link: [[https://example.com]]": "Einfaldur tengill: [[https://example.com]]",
|
|
320
316
|
"Simplify": "Einfalda",
|
|
321
317
|
"Skipping unknown geometry.type: {type}": "Sleppi óþekktu geometry.type: {type}",
|
|
322
318
|
"Slideshow": "Skyggnusýning",
|
|
323
319
|
"Sort key": "Röðunarlykill",
|
|
324
320
|
"Split line": "Skipta línu",
|
|
325
|
-
"Star this map": "
|
|
321
|
+
"Star this map": "Stjörnumerkja þetta landakort",
|
|
326
322
|
"Start a hole here": "Byrja holu hér",
|
|
327
323
|
"Start slideshow": "Hefja skyggnusýningu",
|
|
328
324
|
"Stop editing": "Hætta breytingum",
|
|
329
325
|
"Stop slideshow": "Stöðva skyggnusýningu",
|
|
330
|
-
"Street": "
|
|
326
|
+
"Street": "Gata",
|
|
331
327
|
"stroke": "strik",
|
|
332
328
|
"Supported scheme": "Stutt skema",
|
|
333
329
|
"Supported variables that will be dynamically replaced": "Studdar breytur sem verður skipt út eftir þörfum",
|
|
334
|
-
"Symbol": "
|
|
330
|
+
"Symbol": "Tákn",
|
|
335
331
|
"Table": "Tafla",
|
|
336
332
|
"Text color for the cluster label": "Litur á texta fyrir skýringu á klasa",
|
|
337
333
|
"Text formatting": "Snið á texta",
|
|
338
334
|
"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}\")",
|
|
339
|
-
"The name of the property to use as feature unique identifier.": "
|
|
340
|
-
"The zoom and center have been modified.": "
|
|
335
|
+
"The name of the property to use as feature unique identifier.": "Heiti eigindisins sem á að nota sem auðkenni á fitju.",
|
|
336
|
+
"The zoom and center have been modified.": "Aðdrætti og miðjun hefur verið breytt.",
|
|
341
337
|
"TMS format": "TMS-snið",
|
|
342
338
|
"To use if remote server doesn't allow cross domain (slower)": "Nota ef fjartengdur þjónn leyfir ekki millivísanir léna (hægvirkara)",
|
|
343
339
|
"To zoom": "Í aðdrátt",
|
|
344
|
-
"Toggle edit mode (⇧+Click)": "
|
|
345
|
-
"Toggle edit mode": "
|
|
340
|
+
"Toggle edit mode (⇧+Click)": "Víxla breytingaham af/á (⇧+Smella)",
|
|
341
|
+
"Toggle edit mode": "Víxla breytingaham af/á",
|
|
346
342
|
"Transfer shape to edited feature": "Flytja lögun í breyttu fitjuna",
|
|
347
343
|
"Transform to lines": "Umbreyta í línur",
|
|
348
344
|
"Transform to polygon": "Umbreyta í fláka/marghyrning",
|
|
349
|
-
"Type a place name or coordinates": "
|
|
345
|
+
"Type a place name or coordinates": "Skrifaðu staðarheiti eða hnit",
|
|
350
346
|
"Type char or paste emoji": "Type char or paste emoji",
|
|
351
|
-
"Type of layer": "Tegund
|
|
347
|
+
"Type of layer": "Tegund þekju",
|
|
352
348
|
"Unable to detect format of file {filename}": "Tókst ekki að ákvarða sniðið á skránni {filename}",
|
|
353
|
-
"Untitled layer": "
|
|
349
|
+
"Untitled layer": "Ónefnd þekja",
|
|
354
350
|
"Untitled map": "Ónefnt landakort",
|
|
355
351
|
"Update permissions and editors": "Uppfæra heimildir og ritstjóra",
|
|
356
352
|
"Update permissions": "Uppfæra heimildir",
|
|
357
353
|
"Update who can see and edit the map": "Update who can see and edit the map",
|
|
358
354
|
"Url": "Slóð",
|
|
359
|
-
"URL": "
|
|
355
|
+
"URL": "Vefslóð",
|
|
360
356
|
"Use current bounds": "Nota fyrirliggjandi útjaðar",
|
|
361
357
|
"Use placeholders with feature properties between brackets, eg. {name}, they will be dynamically replaced by the corresponding values.": "Notaðu frátökutákn með eigindum fitja innan sviga, t.d. {nafn}, þeim verður skipt út eftir þörfum fyrir samsvarandi gildi.",
|
|
362
358
|
"User content credits": "Framlög notanda á efni",
|
|
363
359
|
"User interface options": "Valkostir notendaviðmóts",
|
|
364
|
-
"User location": "
|
|
360
|
+
"User location": "Staðsetning notanda",
|
|
365
361
|
"Verify remote URL": "Verify remote URL",
|
|
366
362
|
"Versions": "Útgáfur",
|
|
367
363
|
"View Fullscreen": "Fylla skjáinn",
|
|
368
|
-
"View": "
|
|
369
|
-
"Visibility: {status}": "
|
|
364
|
+
"View": "Skoða",
|
|
365
|
+
"Visibility: {status}": "Sýnileiki: {status}",
|
|
370
366
|
"weight": "þykkt",
|
|
371
367
|
"Where do we go from here?": "Hvert förum við héðan?",
|
|
372
368
|
"Whether to display or not polygons paths.": "Hvort birta eigi ferla fláka/marghyrninga.",
|
|
373
369
|
"Whether to fill polygons with color.": "Hvort eigi að fylla fláka með lit.",
|
|
374
|
-
"Who can edit \"{layer}\"": "
|
|
370
|
+
"Who can edit \"{layer}\"": "Hver getur breytt \"{layer}\"",
|
|
375
371
|
"Who can edit": "Hverjir geta breytt",
|
|
376
372
|
"Who can view": "Hverjir geta skoðað",
|
|
377
373
|
"width": "breidd",
|
|
378
374
|
"Will be displayed in the bottom right corner of the map": "Verður birt niðri í hægra horni kortsins",
|
|
379
|
-
"Will be permanently visible in the bottom left corner of the map": "
|
|
375
|
+
"Will be permanently visible in the bottom left corner of the map": "Verður birt varanlega niðri í vinstra horni kortsins",
|
|
380
376
|
"Will be visible in the caption of the map": "Verður sýnilegt í skýringatexta kortsins",
|
|
381
377
|
"yes": "já",
|
|
382
378
|
"Zoom in": "Renna að",
|
|
383
379
|
"Zoom level for automatic zooms": "Aðdráttarstig fyrir sjálfvirkan aðdrátt",
|
|
384
380
|
"Zoom out": "Renna frá",
|
|
385
|
-
"Zoom to layer extent": "Renna að útjöðrum
|
|
381
|
+
"Zoom to layer extent": "Renna að útjöðrum þekju",
|
|
386
382
|
"Zoom to the next": "Aðdráttur að næsta",
|
|
387
383
|
"Zoom to the previous": "Aðdráttur á fyrra",
|
|
388
384
|
"Zoom to this feature": "Aðdráttur að þessari fitju",
|
|
389
|
-
"{area} acres": "{area}
|
|
385
|
+
"{area} acres": "{area} ekrur",
|
|
390
386
|
"{area} ha": "{area} ha",
|
|
391
387
|
"{area} m²": "{area} m²",
|
|
392
388
|
"{area} mi²": "{area} mi²",
|
|
@@ -395,43 +391,43 @@ const locale = {
|
|
|
395
391
|
"{delay} seconds": "{delay} sekúndur",
|
|
396
392
|
"{distance} km": "{distance} km",
|
|
397
393
|
"{distance} m": "{distance} m",
|
|
398
|
-
"{distance} miles": "{distance}
|
|
399
|
-
"{distance} NM": "{distance}
|
|
394
|
+
"{distance} miles": "{distance} mílur",
|
|
395
|
+
"{distance} NM": "{distance} sjómílur",
|
|
400
396
|
"{distance} yd": "{distance} yd",
|
|
401
|
-
"Edit map name and caption": "
|
|
397
|
+
"Edit map name and caption": "Breyta heiti korts og skýringum",
|
|
402
398
|
"Map advanced properties": "Map advanced properties",
|
|
403
|
-
"Edit map details": "
|
|
404
|
-
"Back to browser": "
|
|
399
|
+
"Edit map details": "Breyta nánari upplýsingum korts",
|
|
400
|
+
"Back to browser": "Til baka í vafra",
|
|
405
401
|
"Toggle size": "Toggle size",
|
|
406
402
|
"Display the caption control": "Display the caption control",
|
|
407
403
|
"<empty value>": "<empty value>",
|
|
408
|
-
"Min": "
|
|
409
|
-
"Max": "
|
|
410
|
-
"From": "
|
|
411
|
-
"Until": "
|
|
404
|
+
"Min": "Lágm",
|
|
405
|
+
"Max": "Hám",
|
|
406
|
+
"From": "Frá",
|
|
407
|
+
"Until": "Til",
|
|
412
408
|
"Example: key1,key2|Label 2,key3|Label 3|checkbox": "Example: key1,key2|Label 2,key3|Label 3|checkbox",
|
|
413
|
-
"Edit in OpenStreetMap": "
|
|
409
|
+
"Edit in OpenStreetMap": "Breyta á OpenStreetMap",
|
|
414
410
|
"Cannot determine latitude and longitude columns.": "Cannot determine latitude and longitude columns.",
|
|
415
|
-
"Back to layers": "
|
|
416
|
-
"Filters": "
|
|
417
|
-
"Comma separated list of properties to use when filtering features by text input": "
|
|
411
|
+
"Back to layers": "Til baka í þekjur",
|
|
412
|
+
"Filters": "Síur",
|
|
413
|
+
"Comma separated list of properties to use when filtering features by text input": "Kommu-aðgreindur listi yfir eigindi sem notaður er við síun fitja með textainnslætti",
|
|
418
414
|
"Comma separated list of properties to use for filters (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 filters (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.",
|
|
419
|
-
"Search keys": "
|
|
415
|
+
"Search keys": "Leita í lyklum",
|
|
420
416
|
"Filters keys": "Filters keys",
|
|
421
|
-
"Filter data": "
|
|
417
|
+
"Filter data": "Sía gögn",
|
|
422
418
|
"Search map features…": "Search map features…",
|
|
423
|
-
"Reset all": "
|
|
424
|
-
"Open browser": "
|
|
419
|
+
"Reset all": "Frumstilla allt",
|
|
420
|
+
"Open browser": "Opna vafra",
|
|
425
421
|
"Open caption": "Open caption",
|
|
426
422
|
"Your map has been created with an anonymous account!": "Your map has been created with an anonymous account!",
|
|
427
|
-
"Real-time collaboration": "
|
|
423
|
+
"Real-time collaboration": "Samstarf í rauntíma",
|
|
428
424
|
"Cannot parse data": "Cannot parse data",
|
|
429
|
-
"Start typing...": "
|
|
430
|
-
"No result": "
|
|
431
|
-
"Data browser": "
|
|
425
|
+
"Start typing...": "Byrjaðu að skrifa...",
|
|
426
|
+
"No result": "Engar niðurstöður",
|
|
427
|
+
"Data browser": "Gagnavafri",
|
|
432
428
|
"When providing an URL, uMap can copy the remote data in a layer, or add this URL as remote source of the layer. In that case, data will always be fetched from that URL, and thus be up to date, but it will not be possible to edit it inside uMap.": "When providing an URL, uMap can copy the remote data in a layer, or add this URL as remote source of the layer. In that case, data will always be fetched from that URL, and thus be up to date, but it will not be possible to edit it inside uMap.",
|
|
433
429
|
"Overpass supported expressions": "Overpass supported expressions",
|
|
434
|
-
"key (eg. building)": "
|
|
430
|
+
"key (eg. building)": "lykill (t.d. building)",
|
|
435
431
|
"!key (eg. !name)": "!key (eg. !name)",
|
|
436
432
|
"key=value (eg. building=yes)": "key=value (eg. building=yes)",
|
|
437
433
|
"key!=value (eg. building!=yes)": "key!=value (eg. building!=yes)",
|
|
@@ -439,14 +435,14 @@ const locale = {
|
|
|
439
435
|
"key=\"value|value2\" (eg. name=\"Paris|Berlin\")": "key=\"value|value2\" (eg. name=\"Paris|Berlin\")",
|
|
440
436
|
"More info about Overpass syntax": "More info about Overpass syntax",
|
|
441
437
|
"For more complex needs, see": "For more complex needs, see",
|
|
442
|
-
"Choose data": "
|
|
438
|
+
"Choose data": "Veldu gögn",
|
|
443
439
|
"Choose the format": "Choose the format",
|
|
444
|
-
"Choose the layer": "
|
|
445
|
-
"Layer name": "
|
|
440
|
+
"Choose the layer": "Veldu þekjuna",
|
|
441
|
+
"Layer name": "Heiti þekju",
|
|
446
442
|
"Choose import mode": "Choose import mode",
|
|
447
|
-
"Copy into the layer": "
|
|
443
|
+
"Copy into the layer": "Afrita inn í þekjuna",
|
|
448
444
|
"Link to the layer as remote data": "Link to the layer as remote data",
|
|
449
|
-
"Condition": "
|
|
445
|
+
"Condition": "Skilyrði",
|
|
450
446
|
"key=value or key!=value": "key=value or key!=value",
|
|
451
447
|
"Are you sure you want to delete this rule?": "Are you sure you want to delete this rule?",
|
|
452
448
|
"empty rule": "empty rule",
|
|
@@ -456,7 +452,7 @@ const locale = {
|
|
|
456
452
|
"Browser: layers": "Browser: layers",
|
|
457
453
|
"Browser: filters": "Browser: filters",
|
|
458
454
|
"Enable real-time collaboration": "Enable real-time collaboration",
|
|
459
|
-
"✅ Copied!": "✅
|
|
455
|
+
"✅ Copied!": "✅ Afritað!",
|
|
460
456
|
"Choose a dataset": "Choose a dataset",
|
|
461
457
|
"Choose this dataset": "Choose this dataset",
|
|
462
458
|
"GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: thematic data from OpenStreetMap",
|
|
@@ -472,12 +468,12 @@ const locale = {
|
|
|
472
468
|
"Type area name, or let empty to load data in current map view": "Type area name, or let empty to load data in current map view",
|
|
473
469
|
"Data successfully imported!": "Data successfully imported!",
|
|
474
470
|
"Clear data": "Clear data",
|
|
475
|
-
"Remove layers": "
|
|
471
|
+
"Remove layers": "Fjarlægja þekjur",
|
|
476
472
|
"Categorized": "Categorized",
|
|
477
473
|
"Alphabetical": "Alphabetical",
|
|
478
474
|
"Category property": "Category property",
|
|
479
|
-
"Color palette": "
|
|
480
|
-
"Categories": "
|
|
475
|
+
"Color palette": "Litaspjald",
|
|
476
|
+
"Categories": "Flokkar",
|
|
481
477
|
"Comma separated list of categories.": "Comma separated list of categories.",
|
|
482
478
|
"Categories mode": "Categories mode",
|
|
483
479
|
"Remove filter for this column": "Remove filter for this column",
|
|
@@ -489,8 +485,8 @@ const locale = {
|
|
|
489
485
|
"Delete selected rows": "Delete selected rows",
|
|
490
486
|
"Found {count} rows. Are you sure you want to delete all?": "Found {count} rows. Are you sure you want to delete all?",
|
|
491
487
|
"Expression is empty": "Expression is empty",
|
|
492
|
-
"OK": "
|
|
493
|
-
"Cancel": "
|
|
488
|
+
"OK": "Í lagi",
|
|
489
|
+
"Cancel": "Hætta við",
|
|
494
490
|
"Attach map to a team": "Attach map to a team",
|
|
495
491
|
"Display the polygon inverted": "Display the polygon inverted",
|
|
496
492
|
"Proportional circles": "Proportional circles",
|
|
@@ -500,40 +496,49 @@ const locale = {
|
|
|
500
496
|
"Display the open browser control": "Display the open browser control",
|
|
501
497
|
"Copy as GeoJSON": "Copy as GeoJSON",
|
|
502
498
|
"Please zoom in to edit the geometry": "Please zoom in to edit the geometry",
|
|
503
|
-
"New map": "
|
|
504
|
-
"My maps": "
|
|
505
|
-
"My teams": "
|
|
506
|
-
"My profile": "
|
|
499
|
+
"New map": "Nýtt landakort",
|
|
500
|
+
"My maps": "Landakortin mín",
|
|
501
|
+
"My teams": "Teymin mín",
|
|
502
|
+
"My profile": "Sniðið mitt",
|
|
507
503
|
"Type new owner's username": "Type new owner's username",
|
|
508
504
|
"Type editor's username": "Type editor's username",
|
|
509
|
-
"Map": "
|
|
505
|
+
"Map": "Kort",
|
|
510
506
|
"Manage collaborators": "Manage collaborators",
|
|
511
|
-
"show/hide all layers": "
|
|
507
|
+
"show/hide all layers": "birta/fela allar þekjur",
|
|
512
508
|
"zoom to data extent": "zoom to data extent",
|
|
513
509
|
"download visible data": "download visible data",
|
|
514
510
|
"Import helpers": "Import helpers",
|
|
515
511
|
"Import helpers will fill the URL field for you.": "Import helpers will fill the URL field for you.",
|
|
516
512
|
"Wikipedia": "Wikipedia",
|
|
517
|
-
"Save draft": "
|
|
513
|
+
"Save draft": "Vista drög",
|
|
518
514
|
"No data has been found for import": "No data has been found for import",
|
|
519
515
|
"Successfully imported {count} feature(s)": "Successfully imported {count} feature(s)",
|
|
520
|
-
"Disconnected": "
|
|
516
|
+
"Disconnected": "Aftengt",
|
|
521
517
|
"You must be logged in": "You must be logged in",
|
|
522
518
|
"on hover": "on hover",
|
|
523
519
|
"Cannot load remote data for layer \"{layer}\" with url \"{url}\"": "Cannot load remote data for layer \"{layer}\" with url \"{url}\"",
|
|
524
520
|
"Cannot parse remote data for layer \"{layer}\" with url \"{url}\"": "Cannot parse remote data for layer \"{layer}\" with url \"{url}\"",
|
|
525
521
|
"Import failed: invalid data": "Import failed: invalid data",
|
|
526
|
-
"Anonymous": "
|
|
522
|
+
"Anonymous": "Nafnlaus",
|
|
527
523
|
"created at {date}": "created at {date}",
|
|
528
524
|
"modified at {date}": "modified at {date}",
|
|
529
|
-
"Default zoom": "
|
|
530
|
-
"Default latitude": "
|
|
531
|
-
"Default longitude": "
|
|
525
|
+
"Default zoom": "Sjálfgefinn aðdráttur",
|
|
526
|
+
"Default latitude": "Sjálfgefin breiddargráða",
|
|
527
|
+
"Default longitude": "Sjálfgefin lengdargráða",
|
|
532
528
|
"Edit map default view": "Edit map default view",
|
|
533
|
-
"Use current center and zoom": "
|
|
534
|
-
"Layer permalink": "
|
|
535
|
-
"
|
|
536
|
-
"
|
|
529
|
+
"Use current center and zoom": "Nota þessa miðju og aðdrátt",
|
|
530
|
+
"Layer permalink": "Fastur tengill þekju",
|
|
531
|
+
"Back to home": "Back to home",
|
|
532
|
+
"Home logo": "Home logo",
|
|
533
|
+
"Add this geometry to my map": "Add this geometry to my map",
|
|
534
|
+
"Add this place to my map": "Add this place to my map",
|
|
535
|
+
"Cancel last edit": "Cancel last edit",
|
|
536
|
+
"Redo last edit": "Redo last edit",
|
|
537
|
+
"Links": "Links",
|
|
538
|
+
"Images": "Images",
|
|
539
|
+
"Iframes": "Iframes",
|
|
540
|
+
"Tags": "Tags",
|
|
541
|
+
"Geocode": "Geocode"
|
|
537
542
|
}
|
|
538
543
|
L.registerLocale("is", locale)
|
|
539
544
|
L.setLocale("is")
|