umap-project 2.1.2__py3-none-any.whl → 2.2.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of umap-project might be problematic. Click here for more details.

Files changed (211) hide show
  1. umap/__init__.py +1 -1
  2. umap/context_processors.py +1 -0
  3. umap/locale/br/LC_MESSAGES/django.mo +0 -0
  4. umap/locale/en/LC_MESSAGES/django.po +32 -32
  5. umap/locale/hu/LC_MESSAGES/django.mo +0 -0
  6. umap/locale/it/LC_MESSAGES/django.mo +0 -0
  7. umap/locale/ms/LC_MESSAGES/django.mo +0 -0
  8. umap/migrations/0020_alter_tilelayer_url_template.py +19 -0
  9. umap/migrations/0021_remove_map_description.py +16 -0
  10. umap/models.py +10 -6
  11. umap/settings/base.py +1 -0
  12. umap/static/umap/base.css +43 -156
  13. umap/static/umap/content.css +7 -25
  14. umap/static/umap/css/icon.css +112 -0
  15. umap/static/umap/css/panel.css +140 -0
  16. umap/static/umap/img/16-white.svg +5 -1
  17. umap/static/umap/img/16.svg +7 -4
  18. umap/static/umap/img/24-white.svg +3 -1
  19. umap/static/umap/img/24.svg +3 -4
  20. umap/static/umap/img/source/16-white.svg +176 -940
  21. umap/static/umap/img/source/16.svg +8 -5
  22. umap/static/umap/img/source/24-white.svg +5 -3
  23. umap/static/umap/img/source/24.svg +6 -7
  24. umap/static/umap/js/modules/browser.js +97 -73
  25. umap/static/umap/js/modules/dompurify.js +12 -0
  26. umap/static/umap/js/modules/facets.js +149 -0
  27. umap/static/umap/js/modules/global.js +9 -1
  28. umap/static/umap/js/modules/i18n.js +7 -0
  29. umap/static/umap/js/modules/orderable.js +84 -0
  30. umap/static/umap/js/modules/panel.js +76 -0
  31. umap/static/umap/js/modules/request.js +0 -1
  32. umap/static/umap/js/modules/schema.js +324 -223
  33. umap/static/umap/js/modules/urls.js +1 -16
  34. umap/static/umap/js/modules/utils.js +340 -0
  35. umap/static/umap/js/umap.autocomplete.js +40 -25
  36. umap/static/umap/js/umap.controls.js +248 -361
  37. umap/static/umap/js/umap.core.js +77 -366
  38. umap/static/umap/js/umap.datalayer.permissions.js +1 -1
  39. umap/static/umap/js/umap.features.js +65 -43
  40. umap/static/umap/js/umap.forms.js +128 -36
  41. umap/static/umap/js/umap.icon.js +11 -4
  42. umap/static/umap/js/umap.importer.js +78 -58
  43. umap/static/umap/js/umap.js +206 -192
  44. umap/static/umap/js/umap.layer.js +86 -46
  45. umap/static/umap/js/umap.permissions.js +13 -9
  46. umap/static/umap/js/umap.popup.js +26 -30
  47. umap/static/umap/js/umap.share.js +12 -9
  48. umap/static/umap/js/umap.tableeditor.js +4 -6
  49. umap/static/umap/js/umap.ui.js +10 -60
  50. umap/static/umap/locale/am_ET.js +243 -227
  51. umap/static/umap/locale/am_ET.json +21 -9
  52. umap/static/umap/locale/ar.js +243 -227
  53. umap/static/umap/locale/ar.json +21 -9
  54. umap/static/umap/locale/ast.js +243 -227
  55. umap/static/umap/locale/ast.json +21 -9
  56. umap/static/umap/locale/bg.js +243 -227
  57. umap/static/umap/locale/bg.json +21 -9
  58. umap/static/umap/locale/br.js +253 -237
  59. umap/static/umap/locale/br.json +25 -13
  60. umap/static/umap/locale/ca.js +243 -227
  61. umap/static/umap/locale/ca.json +21 -9
  62. umap/static/umap/locale/cs_CZ.js +243 -227
  63. umap/static/umap/locale/cs_CZ.json +21 -9
  64. umap/static/umap/locale/da.js +243 -227
  65. umap/static/umap/locale/da.json +21 -9
  66. umap/static/umap/locale/de.js +243 -227
  67. umap/static/umap/locale/de.json +21 -9
  68. umap/static/umap/locale/el.js +243 -227
  69. umap/static/umap/locale/el.json +21 -9
  70. umap/static/umap/locale/en.js +243 -234
  71. umap/static/umap/locale/en.json +22 -10
  72. umap/static/umap/locale/en_US.json +21 -9
  73. umap/static/umap/locale/es.js +243 -227
  74. umap/static/umap/locale/es.json +21 -9
  75. umap/static/umap/locale/et.js +243 -227
  76. umap/static/umap/locale/et.json +21 -9
  77. umap/static/umap/locale/eu.js +227 -199
  78. umap/static/umap/locale/eu.json +1 -1
  79. umap/static/umap/locale/fa_IR.js +243 -227
  80. umap/static/umap/locale/fa_IR.json +21 -9
  81. umap/static/umap/locale/fi.js +243 -227
  82. umap/static/umap/locale/fi.json +21 -9
  83. umap/static/umap/locale/fr.js +243 -234
  84. umap/static/umap/locale/fr.json +21 -9
  85. umap/static/umap/locale/gl.js +243 -227
  86. umap/static/umap/locale/gl.json +21 -9
  87. umap/static/umap/locale/he.js +243 -227
  88. umap/static/umap/locale/he.json +21 -9
  89. umap/static/umap/locale/hr.js +243 -227
  90. umap/static/umap/locale/hr.json +21 -9
  91. umap/static/umap/locale/hu.js +243 -234
  92. umap/static/umap/locale/hu.json +21 -9
  93. umap/static/umap/locale/id.js +243 -227
  94. umap/static/umap/locale/id.json +21 -9
  95. umap/static/umap/locale/is.js +243 -227
  96. umap/static/umap/locale/is.json +21 -9
  97. umap/static/umap/locale/it.js +243 -234
  98. umap/static/umap/locale/it.json +21 -9
  99. umap/static/umap/locale/ja.js +243 -227
  100. umap/static/umap/locale/ja.json +21 -9
  101. umap/static/umap/locale/ko.js +243 -227
  102. umap/static/umap/locale/ko.json +21 -9
  103. umap/static/umap/locale/lt.js +243 -227
  104. umap/static/umap/locale/lt.json +21 -9
  105. umap/static/umap/locale/ms.js +243 -234
  106. umap/static/umap/locale/ms.json +22 -10
  107. umap/static/umap/locale/nl.js +246 -230
  108. umap/static/umap/locale/nl.json +21 -9
  109. umap/static/umap/locale/no.js +243 -227
  110. umap/static/umap/locale/no.json +21 -9
  111. umap/static/umap/locale/pl.js +243 -227
  112. umap/static/umap/locale/pl.json +21 -9
  113. umap/static/umap/locale/pl_PL.json +21 -9
  114. umap/static/umap/locale/pt.js +243 -227
  115. umap/static/umap/locale/pt.json +21 -9
  116. umap/static/umap/locale/pt_BR.js +243 -227
  117. umap/static/umap/locale/pt_BR.json +21 -9
  118. umap/static/umap/locale/pt_PT.js +243 -227
  119. umap/static/umap/locale/pt_PT.json +21 -9
  120. umap/static/umap/locale/ro.js +243 -227
  121. umap/static/umap/locale/ro.json +21 -9
  122. umap/static/umap/locale/ru.js +243 -227
  123. umap/static/umap/locale/ru.json +21 -9
  124. umap/static/umap/locale/si.js +1 -1
  125. umap/static/umap/locale/si.json +1 -1
  126. umap/static/umap/locale/sk_SK.js +243 -227
  127. umap/static/umap/locale/sk_SK.json +21 -9
  128. umap/static/umap/locale/sl.js +243 -227
  129. umap/static/umap/locale/sl.json +21 -9
  130. umap/static/umap/locale/sr.js +243 -227
  131. umap/static/umap/locale/sr.json +21 -9
  132. umap/static/umap/locale/sv.js +243 -227
  133. umap/static/umap/locale/sv.json +21 -9
  134. umap/static/umap/locale/th_TH.js +243 -227
  135. umap/static/umap/locale/th_TH.json +21 -9
  136. umap/static/umap/locale/tr.js +243 -227
  137. umap/static/umap/locale/tr.json +21 -9
  138. umap/static/umap/locale/uk_UA.js +243 -227
  139. umap/static/umap/locale/uk_UA.json +21 -9
  140. umap/static/umap/locale/vi.js +243 -227
  141. umap/static/umap/locale/vi.json +21 -9
  142. umap/static/umap/locale/vi_VN.json +21 -9
  143. umap/static/umap/locale/zh.js +243 -227
  144. umap/static/umap/locale/zh.json +21 -9
  145. umap/static/umap/locale/zh_CN.json +21 -9
  146. umap/static/umap/locale/zh_TW.Big5.json +21 -9
  147. umap/static/umap/locale/zh_TW.js +243 -234
  148. umap/static/umap/locale/zh_TW.json +21 -9
  149. umap/static/umap/map.css +124 -264
  150. umap/static/umap/test/DataLayer.js +1 -1
  151. umap/static/umap/test/Feature.js +0 -226
  152. umap/static/umap/test/Map.js +0 -304
  153. umap/static/umap/test/Polygon.js +0 -256
  154. umap/static/umap/test/Polyline.js +0 -116
  155. umap/static/umap/test/TableEditor.js +10 -10
  156. umap/static/umap/test/Util.js +0 -521
  157. umap/static/umap/test/index.html +1 -5
  158. umap/static/umap/unittests/URLs.js +1 -1
  159. umap/static/umap/unittests/utils.js +610 -0
  160. umap/static/umap/vars.css +9 -0
  161. umap/static/umap/vendors/dompurify/purify.es.mjs +1525 -0
  162. umap/static/umap/vendors/formbuilder/Leaflet.FormBuilder.js +1 -0
  163. umap/static/umap/vendors/iconlayers/iconLayers.js +1 -1
  164. umap/templates/umap/css.html +2 -0
  165. umap/templates/umap/js.html +0 -1
  166. umap/templates/umap/map_detail.html +4 -0
  167. umap/templates/umap/map_table.html +12 -10
  168. umap/templatetags/umap_tags.py +5 -0
  169. umap/tests/conftest.py +9 -0
  170. umap/tests/fixtures/test_upload_data.csv +2 -1
  171. umap/tests/fixtures/test_upload_data.umap +171 -0
  172. umap/tests/fixtures/test_upload_data_osm.json +33 -0
  173. umap/tests/integration/conftest.py +16 -0
  174. umap/tests/integration/test_anonymous_owned_map.py +30 -5
  175. umap/tests/integration/test_basics.py +21 -0
  176. umap/tests/integration/test_browser.py +16 -36
  177. umap/tests/integration/test_choropleth.py +89 -0
  178. umap/tests/integration/test_collaborative_editing.py +30 -1
  179. umap/tests/integration/test_dashboard.py +10 -0
  180. umap/tests/integration/test_datalayer.py +132 -0
  181. umap/tests/integration/test_draw_polygon.py +363 -0
  182. umap/tests/integration/test_draw_polyline.py +325 -0
  183. umap/tests/integration/test_edit_datalayer.py +145 -6
  184. umap/tests/integration/test_edit_map.py +202 -0
  185. umap/tests/integration/test_edit_marker.py +120 -0
  186. umap/tests/integration/test_edit_polygon.py +122 -0
  187. umap/tests/integration/test_facets_browser.py +132 -11
  188. umap/tests/integration/test_import.py +407 -10
  189. umap/tests/integration/test_map.py +36 -54
  190. umap/tests/integration/test_map_list.py +28 -0
  191. umap/tests/integration/test_owned_map.py +24 -6
  192. umap/tests/integration/test_picto.py +25 -38
  193. umap/tests/integration/test_querystring.py +9 -15
  194. umap/tests/integration/test_slideshow.py +0 -5
  195. umap/tests/integration/test_statics.py +3 -2
  196. umap/tests/integration/test_tableeditor.py +23 -0
  197. umap/tests/integration/test_tilelayer.py +10 -0
  198. umap/tests/integration/test_view_marker.py +64 -0
  199. umap/tests/integration/test_view_polygon.py +59 -0
  200. umap/tests/integration/test_view_polyline.py +51 -0
  201. umap/tests/test_map_views.py +13 -0
  202. {umap_project-2.1.2.dist-info → umap_project-2.2.0.dist-info}/METADATA +12 -12
  203. {umap_project-2.1.2.dist-info → umap_project-2.2.0.dist-info}/RECORD +206 -187
  204. {umap_project-2.1.2.dist-info → umap_project-2.2.0.dist-info}/WHEEL +1 -1
  205. umap/static/umap/test/Choropleth.js +0 -245
  206. umap/static/umap/test/Permissions.js +0 -74
  207. umap/static/umap/vendors/dompurify/purify.min.js +0 -3
  208. umap/static/umap/vendors/dompurify/purify.min.js.map +0 -1
  209. umap/tests/integration/test_drawing.py +0 -243
  210. {umap_project-2.1.2.dist-info → umap_project-2.2.0.dist-info}/entry_points.txt +0 -0
  211. {umap_project-2.1.2.dist-info → umap_project-2.2.0.dist-info}/licenses/LICENSE +0 -0
@@ -1,92 +1,33 @@
1
1
  const locale = {
2
- "Allow scroll wheel zoom?": "Leyfa aðdrátt með skrunhjóli?",
3
- "Automatic": "Sjálfvirkt",
4
- "Ball": "Kúla",
5
- "Cancel": "Hætta við",
6
- "Caption": "Skýringatexti",
7
- "Choose the data format": "Veldu gagnasnið",
8
- "Choose the layer of the feature": "Veldu lagið með fitjunni",
9
- "Circle": "Hringur",
10
- "Clustered": "Í klösum",
11
- "Data browser": "Gagnavafri",
12
- "Default": "Sjálfgefið",
13
- "Default zoom level": "Sjálfgefið aðdráttarstig",
14
- "Default: name": "Sjálfgefið: nafn",
15
- "Display label": "Birta skýringu",
16
- "Display the control to open OpenStreetMap editor": "Birta hnapp til að opna OpenStreetMap-ritill",
17
- "Display the data layers control": "Birta hnapp fyrir gagnalög",
18
- "Display the embed control": "Birta hnapp fyrir ígræðslukóða",
19
- "Display the fullscreen control": "Birta hnapp fyrir skjáfylli",
20
- "Display the locate control": "Birta staðsetningarhnapp",
21
- "Display the measure control": "Birta mælihnapp",
22
- "Display the search control": "Birta leitarhnapp",
23
- "Display the tile layers control": "Birta hnapp fyrir kortatíglalög",
24
- "Display the zoom control": "Birta aðdráttarhnapp",
25
- "Do you want to display a caption bar?": "Viltu birta skjástiku með skýringatexta?",
26
- "Do you want to display a minimap?": "Viltu birta yfirlitskort?",
27
- "Do you want to display a panel on load?": "Viltu birta hliðarspjald við innhleðslu?",
28
- "Do you want to display popup footer?": "Viltu birta síðufót sem sprettglugga?",
29
- "Do you want to display the scale control?": "Viltu birta kvarðahnapp?",
30
- "Do you want to display the «more» control?": "Viltu birta hnapp fyrir «meira»?",
31
- "Drop": "Dropi",
32
- "GeoRSS (only link)": "GeoRSS (aðeins tengill)",
33
- "GeoRSS (title + image)": "GeoRSS (titill + mynd)",
34
- "Heatmap": "Hitakort",
35
- "Icon shape": "Lögun Táknmyndar",
36
- "Icon symbol": "Myndtákn",
37
- "Inherit": "Erfa",
38
- "Label direction": "Stefna skýringar",
39
- "Label key": "Lykill skýringar",
40
- "Labels are clickable": "Hægt er að smella á skýringar",
41
- "None": "Ekkert",
42
- "On the bottom": "Neðst",
43
- "On the left": "Vinstra megin",
44
- "On the right": "Hægra megin",
45
- "On the top": "Efst",
46
- "Popup content template": "Sniðmát efnis í sprettglugga",
47
- "Side panel": "Hliðarspjald",
48
- "Simplify": "Einfalda",
49
- "Table": "Tafla",
50
- "always": "alltaf",
51
- "clear": "hreinsa",
52
- "collapsed": "samfallið",
53
- "color": "litur",
54
- "dash array": "strikafylki",
55
- "define": "skilgreina",
56
- "description": "lýsing",
57
- "expanded": "útliðað",
58
- "fill": "fylling",
59
- "fill color": "fyllilitur",
60
- "fill opacity": "ógegnsæi fyllingar",
61
- "hidden": "falið",
62
- "iframe": "iFrame",
63
- "inherit": "erfa",
64
- "name": "heiti",
65
- "never": "aldrei",
66
- "new window": "nýr gluggi",
67
- "no": "nei",
68
- "on hover": "við yfirsvif",
69
- "opacity": "ógegnsæi",
70
- "parent window": "yfirgluggi",
71
- "stroke": "strik",
72
- "weight": "þykkt",
73
- "yes": "já",
74
- "{delay} seconds": "{delay} sekúndur",
2
+ " (area: {measure})": "(area: {measure})",
3
+ " (length: {measure})": "(length: {measure})",
75
4
  "# one hash for main heading": "# eitt myllumerki fyrir aðalfyrirsögn",
76
5
  "## two hashes for second heading": "## tvö myllumerki fyrir aðra fyrirsögn",
77
6
  "### three hashes for third heading": "### þrjú myllumerki fyrir þriðju fyrirsögn",
78
7
  "**double star for bold**": "**tvöföld stjarna/margföldun fyrir feitletrað**",
8
+ "*single star for italic*": "*single star for italic*",
9
+ "--- for a horizontal rule": "--- for a horizontal rule",
10
+ "1 day": "1 dagur",
11
+ "1 hour": "1 klukkustund",
12
+ "5 min": "5 mín",
79
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\".",
80
14
  "About": "Um hugbúnaðinn",
15
+ "Action not allowed :(": "Action not allowed :(",
81
16
  "Activate slideshow mode": "Virkja skyggnusýningarham",
82
17
  "Add a layer": "Bæta við lagi",
83
18
  "Add a line to the current multi": "Bæta línu við fyrirliggjandi hóp",
84
19
  "Add a new property": "Bæta við nýju eigindi",
85
20
  "Add a polygon to the current multi": "Bæta marghyrningi við fyrirliggjandi hóp",
21
+ "Add image URL": "Add image URL",
22
+ "Add": "Add",
86
23
  "Advanced actions": "Ítarlegri aðgerðir",
87
24
  "Advanced properties": "Ítarlegir eiginleikar",
25
+ "All data and settings of the map": "All data and settings of the map",
88
26
  "All properties are imported.": "Öll eigindi voru flutt inn.",
89
27
  "Allow interactions": "Leyfa gagnvirkni",
28
+ "Allow scroll wheel zoom?": "Leyfa aðdrátt með skrunhjóli?",
29
+ "always": "alltaf",
30
+ "Animated transitions": "Animated transitions",
90
31
  "Are you sure you want to cancel your changes?": "Ertu viss um að þú viljir hætta við breytingarnar þínar?",
91
32
  "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?",
92
33
  "Are you sure you want to delete the feature?": "Ertu viss um að þú viljir eyða fitjunni?",
@@ -95,186 +36,379 @@ const locale = {
95
36
  "Are you sure you want to delete this property on all the features?": "Ertu viss um að þú viljir eyða þessu eigindi á öllum fitjum?",
96
37
  "Are you sure you want to restore this version?": "Ertu viss um að vilja endurheimta þessa útgáfu?",
97
38
  "Attach the map to my account": "Tengja kortið við notandaaðganginn minn",
39
+ "attribution": "tilvísun í höfund/a",
98
40
  "Auto": "Sjálfvirkt",
41
+ "Automatic": "Sjálfvirkt",
99
42
  "Autostart when map is loaded": "Sjálfræsa þegar korti er hlaðið inn",
43
+ "Back to preview": "Back to preview",
44
+ "Background overlay url": "Background overlay url",
45
+ "Ball": "Kúla",
46
+ "Bring feature to center": "Bring feature to center",
100
47
  "Browse data": "Skoða gögn",
48
+ "by": "eftir",
49
+ "Cache proxied request": "Setja milliþjónabeiðnir í skyndiminni",
101
50
  "Cancel edits": "Hætta við breytingar",
51
+ "Cancel": "Hætta við",
52
+ "Caption": "Skýringatexti",
102
53
  "Center map on your location": "Miðjusetja kortið á staðsetningu þína",
103
54
  "Change map background": "Breyta bakgrunni landakorts",
104
55
  "Change tilelayers": "Skipta um kortatíglalög",
56
+ "Change": "Change",
105
57
  "Choose a preset": "Veldu forstillingu",
58
+ "Choose the data format": "Veldu gagnasnið",
106
59
  "Choose the format of the data to import": "Veldu snið á gögnum sem á að flytja inn",
107
60
  "Choose the layer to import in": "Veldu lagið sem á að flytja inn í",
61
+ "Choropleth breakpoints": "Choropleth breakpoints",
62
+ "Choropleth classes": "Choropleth classes",
63
+ "Choropleth color palette": "Choropleth color palette",
64
+ "Choropleth mode": "Choropleth mode",
65
+ "Choropleth property value": "Choropleth property value",
66
+ "Choropleth": "Choropleth",
67
+ "Circle": "Hringur",
68
+ "clear": "hreinsa",
108
69
  "Click last point to finish shape": "Smelltu á síðasta punktinn til að ljúka lögun",
109
70
  "Click to add a marker": "Smella til að bæta við kortamerki",
110
71
  "Click to continue drawing": "Smelltu til að halda áfram að teikna",
111
72
  "Click to edit": "Smelltu til að breyta",
112
73
  "Click to start drawing a line": "Smelltu til að byrja að teikna línu",
113
74
  "Click to start drawing a polygon": "Smelltu til að byrja að teikna fláka (marghyrning)",
114
- "Clone": "Klóna",
115
75
  "Clone of {name}": "Klónað afrit af {name}",
116
76
  "Clone this feature": "Klóna þessa fitju",
117
77
  "Clone this map": "Klóna þetta landakort",
78
+ "Clone": "Klóna",
118
79
  "Close": "Loka",
80
+ "Clustered": "Í klösum",
119
81
  "Clustering radius": "Radíus klasa",
82
+ "collapsed": "samfallið",
83
+ "color": "litur",
84
+ "Comma separated list of numbers, including min and max values.": "Comma separated list of numbers, including min and max values.",
85
+ "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.",
120
86
  "Comma separated list of properties to use when filtering features": "Kommu-aðgreindur listi yfir eigindi sem notaður er við síun fitja",
121
87
  "Comma, tab or semi-colon separated values. SRS WGS84 is implied. Only Point geometries are imported. The import will look at the column headers for any mention of «lat» and «lon» at the begining of the header, case insensitive. All other column are imported as properties.": "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.",
88
+ "Congratulations, your map has been created!": "Congratulations, your map has been created!",
122
89
  "Continue line": "Halda áfram með línu",
123
- "Continue line (Ctrl+Click)": "Halda áfram með línu (Ctrl+Smella)",
124
90
  "Coordinates": "Hnit",
91
+ "Copy link": "Copy link",
92
+ "copy": "copy",
125
93
  "Credits": "Framlög",
94
+ "Current map view": "Current map view",
126
95
  "Current view instead of default map view?": "Fyrirliggjandi sýn í stað sjálfgefinnar kortasýnar?",
127
96
  "Custom background": "Sérsniðinn bakgrunnur",
97
+ "Custom overlay": "Custom overlay",
98
+ "dash array": "strikafylki",
99
+ "Data browser": "Gagnavafri",
128
100
  "Data is browsable": "Gögn eru vafranleg",
101
+ "Datalayers": "Datalayers",
129
102
  "Default interaction options": "Sjálfgefnir valkostir gagnvirkni",
130
103
  "Default properties": "Sjálfgefnir eiginleikar",
131
104
  "Default shape properties": "Sjálfgefnir eiginleikar lögunar",
105
+ "Default view": "Default view",
106
+ "Default zoom level": "Sjálfgefið aðdráttarstig",
107
+ "Default": "Sjálfgefið",
108
+ "Default: name": "Sjálfgefið: nafn",
132
109
  "Define link to open in a new window on polygon click.": "Skilgreindu tengil til að opna í nýjum glugga þegar smellt er á marghyrning.",
110
+ "define": "skilgreina",
133
111
  "Delay between two transitions when in play mode": "Hlé milli tveggja millifærslna í afspilunarham",
134
- "Delete": "Eyða",
135
112
  "Delete all layers": "Eyða öllum lögum",
136
113
  "Delete layer": "Eyða lagi",
137
114
  "Delete this feature": "Eyða þessari fitju",
138
115
  "Delete this property on all the features": "Eyða þessu eigindi á öllum fitjum",
139
116
  "Delete this shape": "Eyða þessari lögun",
140
117
  "Delete this vertex (Alt+Click)": "Eyða þessum brotpunkti (Alt+Smella)",
118
+ "Delete": "Eyða",
119
+ "description": "lýsing",
120
+ "Direct link": "Direct link",
141
121
  "Directions from here": "Leiðir héðan",
122
+ "Display label": "Birta skýringu",
142
123
  "Display measure": "Birta lengdarmæli",
124
+ "display name": "birtingarnafn",
143
125
  "Display on load": "Birta við innhleðslu",
126
+ "Display the control to open OpenStreetMap editor": "Birta hnapp til að opna OpenStreetMap-ritill",
127
+ "Display the data layers control": "Birta hnapp fyrir gagnalög",
128
+ "Display the embed control": "Birta hnapp fyrir ígræðslukóða",
129
+ "Display the fullscreen control": "Birta hnapp fyrir skjáfylli",
130
+ "Display the locate control": "Birta staðsetningarhnapp",
131
+ "Display the measure control": "Birta mælihnapp",
132
+ "Display the search control": "Birta leitarhnapp",
133
+ "Display the star map button": "Display the star map button",
134
+ "Display the tile layers control": "Birta hnapp fyrir kortatíglalög",
135
+ "Display the zoom control": "Birta aðdráttarhnapp",
136
+ "Do you want to display a caption bar?": "Viltu birta skjástiku með skýringatexta?",
137
+ "Do you want to display a minimap?": "Viltu birta yfirlitskort?",
138
+ "Do you want to display a panel on load?": "Viltu birta hliðarspjald við innhleðslu?",
139
+ "Do you want to display caption menus?": "Do you want to display caption menus?",
140
+ "Do you want to display popup footer?": "Viltu birta síðufót sem sprettglugga?",
141
+ "Do you want to display the scale control?": "Viltu birta kvarðahnapp?",
142
+ "Do you want to display the «more» control?": "Viltu birta hnapp fyrir «meira»?",
144
143
  "Download": "Sækja",
145
144
  "Drag to reorder": "Draga til að endurraða",
146
145
  "Draw a marker": "Teikna kortamerki",
147
146
  "Draw a polygon": "Teikna fláka (marghyrning)",
148
147
  "Draw a polyline": "Teikna fjölpunktalínu (polyline)",
149
- "Dynamic": "Breytilegt",
148
+ "Drawing": "Drawing",
149
+ "Drop": "Dropi",
150
150
  "Dynamic properties": "Breytilegir eiginleikar",
151
- "Edit": "Breyta",
151
+ "Dynamic": "Breytilegt",
152
152
  "Edit feature's layer": "Breyta lagi fitjunnar",
153
- "Edit map properties": "Breyta eiginleikum korts",
154
153
  "Edit properties in a table": "Breyta eigindum í töflu",
154
+ "Edit the title of the map": "Edit the title of the map",
155
155
  "Edit this feature": "Breyta þessari fitju",
156
+ "Edit": "Breyta",
157
+ "Email": "Email",
158
+ "Embed and link options": "Embed and link options",
156
159
  "Embed the map": "Setja landakortið inn á vefsíðu",
160
+ "Emoji & Character": "Emoji & Character",
157
161
  "Empty": "Tómt",
162
+ "Equidistant": "Equidistant",
163
+ "Error in the overlay URL": "Error in the overlay URL",
158
164
  "Error in the tilelayer URL": "Villa í slóð kortatíglalags",
159
165
  "Exit Fullscreen": "Hætta í skjáfylli",
166
+ "expanded": "útliðað",
160
167
  "Extract shape to separate feature": "Flytja lögun í aðskilda fitju",
168
+ "Facet keys": "Facet keys",
169
+ "Facet search": "Facet search",
170
+ "Feature identifier key": "Feature identifier key",
171
+ "Feature properties": "Feature properties",
161
172
  "Fetch data each time map view changes.": "Sækja gögn í hvert skipti sem kortasýn breytist",
173
+ "fill color": "fyllilitur",
174
+ "fill opacity": "ógegnsæi fyllingar",
175
+ "fill": "fylling",
162
176
  "Filter keys": "Sía lykla",
177
+ "Filter": "Filter",
178
+ "Fit all data": "Fit all data",
163
179
  "Format": "Snið",
164
180
  "From zoom": "Frá aðdráttarstigi",
181
+ "full backup": "full backup",
182
+ "Generic": "Generic",
183
+ "GeoRSS (only link)": "GeoRSS (aðeins tengill)",
184
+ "GeoRSS (title + image)": "GeoRSS (titill + mynd)",
185
+ "Go to \"{coords}\"": "Go to \"{coords}\"",
186
+ "Go to the homepage": "Go to the homepage",
165
187
  "Go to «{feature}»": "Fara á «{feature}»",
166
188
  "Heatmap intensity property": "Styrkeigindi fyrir hitakort",
167
189
  "Heatmap radius": "Radíus hitakorts",
190
+ "Heatmap": "Hitakort",
191
+ "height": "hæð",
168
192
  "Help": "Hjálp",
193
+ "hidden": "falið",
169
194
  "Hide controls": "Fela hnappa",
170
195
  "Home": "Heim",
171
196
  "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)",
197
+ "icon opacity": "icon opacity",
198
+ "Icon shape": "Lögun Táknmyndar",
199
+ "Icon symbol": "Myndtákn",
200
+ "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.",
172
201
  "Iframe with custom height (in px): {{{http://iframe.url.com|height}}}": "Iframe með sérsniðinni hæð (í mynddílum/px): {{{http://iframe.url.com|hæð}}}",
173
202
  "Iframe with custom height and width (in px): {{{http://iframe.url.com|height*width}}}": "Iframe með sérsniðinni hæð og breidd (í mynddílum/px): {{{http://iframe.url.com|hæð*breidd}}}",
203
+ "iframe": "iFrame",
174
204
  "Iframe: {{{http://iframe.url.com}}}": "Iframe: {{{http://iframe.url.com}}}",
175
205
  "Image with custom width (in px): {{http://image.url.com|width}}": "Mynd með sérsniðinni breidd (í mynddílum): {{http://image.url.com|width}}",
176
206
  "Image: {{http://image.url.com}}": "Mynd: {{http://image.url.com}}",
177
- "Import": "Flytja inn",
178
207
  "Import data": "Flytja inn gögn",
179
208
  "Import in a new layer": "Flytja inn í nýtt lag",
209
+ "Import": "Flytja inn",
180
210
  "Imports all umap data, including layers and settings.": "Flytur inn öll umap-gögn, þar með talin lög og stillingar.",
181
211
  "Include full screen link?": "Hafa með tengil á að fylla skjá?",
212
+ "Inherit": "Erfa",
213
+ "inherit": "erfa",
182
214
  "Interaction options": "Valkostir gagnvirkni",
183
- "Invalid umap data": "Ógild umap-gögn",
215
+ "Invalid latitude or longitude": "Invalid latitude or longitude",
184
216
  "Invalid umap data in {filename}": "Ógild umap-gögn í {filename}",
217
+ "Invalid umap data": "Ógild umap-gögn",
218
+ "Invalide property name: {name}": "Invalide property name: {name}",
219
+ "Jenks-Fisher": "Jenks-Fisher",
220
+ "K-means": "K-means",
185
221
  "Keep current visible layers": "Halda fyrirliggjandi sýnilegum lögum",
222
+ "kilometers": "kílómetrar",
223
+ "km": "km",
224
+ "Label direction": "Stefna skýringar",
225
+ "Label key": "Lykill skýringar",
226
+ "Labels are clickable": "Hægt er að smella á skýringar",
227
+ "Latest feature": "Latest feature",
186
228
  "Latitude": "Breiddargráða",
187
- "Layer": "Lag",
188
229
  "Layer properties": "Eiginleikar lags",
230
+ "Layer": "Lag",
189
231
  "Licence": "Notkunarleyfi",
232
+ "licence": "notkunarleyfi",
190
233
  "Limit bounds": "Mörk útjaðars",
234
+ "Link to view the map": "Link to view the map",
191
235
  "Link to…": "Tengja við…",
192
236
  "Link with text: [[http://example.com|text of the link]]": "Tengill með texta: [[http://example.com|texti tengils]]",
193
237
  "Long credits": "Lengra um framlög",
194
238
  "Longitude": "Lengdargráða",
195
239
  "Make main shape": "Gera að aðallögun",
196
240
  "Manage layers": "Sýsla með lög",
241
+ "Manual": "Manual",
197
242
  "Map background credits": "Þakkir vegna bakgrunnsmyndar:",
198
243
  "Map has been attached to your account": "Kortið hefur verið tengt við notandaaðganginn þinn",
199
244
  "Map has been saved!": "Landakortið hefur verið vistað!",
245
+ "Map has been starred": "Map has been starred",
246
+ "Map has been unstarred": "Map has been unstarred",
200
247
  "Map user content has been published under licence": "Kortagögn notandans eru gefin út með notkunarleyfinu",
201
248
  "Map's editors": "Ritstjórar korts",
202
249
  "Map's owner": "Eigandi korts",
250
+ "max East": "Hám. austur",
251
+ "max North": "Hám. norður",
252
+ "max South": "Hám. suður",
253
+ "max West": "Hám. vestur",
254
+ "max zoom": "Hám. aðdráttur",
255
+ "Measure distances": "Mæla vegalengdir",
203
256
  "Merge lines": "Sameina línur",
257
+ "mi": "mi",
258
+ "miles": "mílur",
259
+ "min zoom": "lágm. aðdráttur",
204
260
  "More controls": "Fleiri hnappar",
205
261
  "Must be a valid CSS value (eg.: DarkBlue or #123456)": "Verður að vera gilt CSS-gildi (t.d.: DarkBlue eða #123456)",
262
+ "name": "heiti",
263
+ "nautical miles": "sjómílur",
264
+ "never": "aldrei",
265
+ "new window": "nýr gluggi",
266
+ "next": "næsta",
267
+ "NM": "Sjómílur",
268
+ "No cache": "Ekkert biðminni",
206
269
  "No licence has been set": "Ekkert notkunarleyfi hefur verið sett",
270
+ "No results for these facets": "No results for these facets",
207
271
  "No results": "Engar niðurstöður",
272
+ "no": "nei",
273
+ "No.": "No.",
274
+ "None": "Ekkert",
275
+ "Number of desired classes (default 5)": "Number of desired classes (default 5)",
276
+ "On the bottom": "Neðst",
277
+ "On the left": "Vinstra megin",
278
+ "On the right": "Hægra megin",
279
+ "On the top": "Efst",
280
+ "Only visible layers' data": "Only visible layers' data",
281
+ "opacity": "ógegnsæi",
282
+ "Opacity": "Opacity",
283
+ "Open current feature on load": "Open current feature on load",
208
284
  "Open link in…": "Opna tengil í…",
285
+ "Open share & download panel": "Open share & download panel",
209
286
  "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",
287
+ "OpenStreetMap": "OpenStreetMap",
210
288
  "Optional intensity property for heatmap": "Valfrjálst styrkeigindi fyrir hitakort",
211
289
  "Optional. Same as color if not set.": "Valfrjálst. Sama og litur ef ekkert er skilgreint.",
290
+ "Optional.": "Valfrjálst.",
212
291
  "Override clustering radius (default 80)": "Nota annan radíus klösunar (sjálfgefið 80)",
213
292
  "Override heatmap radius (default 25)": "Nota annan radíus hitakorts (sjálfgefið 25)",
293
+ "parent window": "yfirgluggi",
294
+ "Paste your data here": "Límdu gögnin þín hér",
295
+ "Permalink": "Permalink",
296
+ "Permanent credits background": "Permanent credits background",
297
+ "Permanent credits": "Permanent credits",
214
298
  "Please be sure the licence is compliant with your use.": "Gakktu úr skugga um að notkunarleyfið samsvari notkunasviði þínu.",
215
299
  "Please choose a format": "Veldu snið",
216
300
  "Please enter the name of the property": "Settu inn heiti á eigindið",
217
301
  "Please enter the new name of this property": "Settu inn nýja heitið á þetta eigindi",
302
+ "Please save the map first": "Vistaðu fyrst kortið",
303
+ "Popup (large)": "Sprettgluggi (stór)",
304
+ "Popup content style": "Stíll efnis í sprettglugga",
305
+ "Popup content template": "Sniðmát efnis í sprettglugga",
306
+ "Popup shape": "Lögun sprettglugga",
307
+ "Popup": "Sprettgluggi",
308
+ "Powered by uMap": "Powered by uMap",
309
+ "previous": "fyrra",
310
+ "Problem in the response": "Problem in the response",
218
311
  "Properties imported:": "Innflutt eigindi:",
219
312
  "Provide an URL here": "Gefðu hér upp URL-slóð",
220
313
  "Proxy request": "Beiðni frá milliþjóni",
314
+ "Quantiles": "Quantiles",
315
+ "Recent": "Recent",
221
316
  "Remote data": "Fjartengd gögn",
222
317
  "Remove shape from the multi": "Fjarlægja lögun úr hópnum",
223
318
  "Rename this property on all the features": "Endurnefna þetta eigindi á öllum fitjum",
224
319
  "Replace layer content": "Skipta út innihaldi lagsins",
225
320
  "Restore this version": "Endurheimta þessa útgáfu",
226
- "Save": "Vista",
227
321
  "Save anyway": "Vista samt",
228
322
  "Save current edits": "Vista fyrirliggjandi breytingar",
323
+ "Save map": "Save map",
229
324
  "Save this center and zoom": "Vista þessa miðju og aðdrátt",
230
325
  "Save this location as new feature": "Vista þessa staðsetningu sem nýja fitju",
326
+ "Save": "Vista",
327
+ "Saved center and zoom": "Saved center and zoom",
231
328
  "Search location": "Leita að staðsetningu",
232
- "See all": "Sjá allt",
233
- "See data layers": "Skoða gagnalög",
329
+ "Search": "Search",
330
+ "Secret edit link copied to clipboard!": "Secret edit link copied to clipboard!",
331
+ "Secret edit link:": "Secret edit link:",
332
+ "See layers": "See layers",
234
333
  "See full screen": "Fylla skjáinn",
334
+ "See on OpenStreetMap": "See on OpenStreetMap",
335
+ "Select data": "Select data",
336
+ "Send me the link": "Send me the link",
235
337
  "Set it to false to hide this layer from the slideshow, the data browser, the popup navigation…": "Settu þetta sem ósatt til að fela þetta lag úr skyggnusýningu, gagnavafranum, sprettleiðsögn…",
338
+ "settings": "settings",
236
339
  "Shape properties": "Eiginleikar lögunar",
340
+ "Share and download": "Share and download",
341
+ "Share this link to open a customized map view": "Share this link to open a customized map view",
237
342
  "Short credits": "Stutt um framlög",
343
+ "Short link": "Short link",
344
+ "Show this layer in the caption": "Show this layer in the caption",
238
345
  "Show/hide layer": "Birta/Fela lag",
346
+ "Side panel": "Hliðarspjald",
239
347
  "Simple link: [[http://example.com]]": "Einfaldur tengill: [[http://example.com]]",
348
+ "Simplify": "Einfalda",
349
+ "Skipping unknown geometry.type: {type}": "Sleppi óþekktu geometry.type: {type}",
240
350
  "Slideshow": "Skyggnusýning",
241
351
  "Sort key": "Röðunarlykill",
242
352
  "Split line": "Skipta línu",
353
+ "Star this map": "Star this map",
243
354
  "Start a hole here": "Byrja holu hér",
244
355
  "Start slideshow": "Hefja skyggnusýningu",
245
356
  "Stop editing": "Hætta breytingum",
246
357
  "Stop slideshow": "Stöðva skyggnusýningu",
358
+ "Street": "Street",
359
+ "stroke": "strik",
247
360
  "Supported scheme": "Stutt skema",
248
361
  "Supported variables that will be dynamically replaced": "Studdar breytur sem verður skipt út eftir þörfum",
249
- "TMS format": "TMS-snið",
362
+ "Symbol": "Symbol",
363
+ "Table": "Tafla",
250
364
  "Text color for the cluster label": "Litur á texta fyrir skýringu á klasa",
251
365
  "Text formatting": "Snið á texta",
366
+ "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}\")",
367
+ "The name of the property to use as feature unique identifier.": "The name of the property to use as feature unique identifier.",
368
+ "The zoom and center have been modified.": "The zoom and center have been modified.",
369
+ "TMS format": "TMS-snið",
252
370
  "To use if remote server doesn't allow cross domain (slower)": "Nota ef fjartengdur þjónn leyfir ekki millivísanir léna (hægvirkara)",
253
371
  "To zoom": "Í aðdrátt",
372
+ "Toggle edit mode (⇧+Click)": "Toggle edit mode (⇧+Click)",
373
+ "Toggle edit mode": "Toggle edit mode",
254
374
  "Transfer shape to edited feature": "Flytja lögun í breyttu fitjuna",
255
375
  "Transform to lines": "Umbreyta í línur",
256
376
  "Transform to polygon": "Umbreyta í fláka/marghyrning",
377
+ "Type a place name or coordinates": "Type a place name or coordinates",
378
+ "Type char or paste emoji": "Type char or paste emoji",
257
379
  "Type of layer": "Tegund lags",
258
380
  "Unable to detect format of file {filename}": "Tókst ekki að ákvarða sniðið á skránni {filename}",
259
381
  "Untitled layer": "Ónefnt lag",
260
382
  "Untitled map": "Ónefnt landakort",
261
- "Update permissions": "Uppfæra heimildir",
262
383
  "Update permissions and editors": "Uppfæra heimildir og ritstjóra",
384
+ "Update permissions": "Uppfæra heimildir",
385
+ "Update who can see and edit the map": "Update who can see and edit the map",
263
386
  "Url": "Slóð",
387
+ "URL": "URL",
264
388
  "Use current bounds": "Nota fyrirliggjandi útjaðar",
265
389
  "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.",
266
390
  "User content credits": "Framlög notanda á efni",
267
391
  "User interface options": "Valkostir notendaviðmóts",
392
+ "User location": "User location",
393
+ "Verify remote URL": "Verify remote URL",
268
394
  "Versions": "Útgáfur",
269
395
  "View Fullscreen": "Fylla skjáinn",
396
+ "View": "View",
397
+ "Visibility: {status}": "Visibility: {status}",
398
+ "weight": "þykkt",
270
399
  "Where do we go from here?": "Hvert förum við héðan?",
271
400
  "Whether to display or not polygons paths.": "Hvort birta eigi ferla fláka/marghyrninga.",
272
401
  "Whether to fill polygons with color.": "Hvort eigi að fylla fláka með lit.",
402
+ "Who can edit \"{layer}\"": "Who can edit \"{layer}\"",
273
403
  "Who can edit": "Hverjir geta breytt",
274
404
  "Who can view": "Hverjir geta skoðað",
405
+ "width": "breidd",
275
406
  "Will be displayed in the bottom right corner of the map": "Verður birt niðri í hægra horni kortsins",
407
+ "Will be permanently visible in the bottom left corner of the map": "Will be permanently visible in the bottom left corner of the map",
276
408
  "Will be visible in the caption of the map": "Verður sýnilegt í skýringatexta kortsins",
277
409
  "Woops! Someone else seems to have edited the data. You can save anyway, but this will erase the changes made by others.": "Úbbs! Það lítur út fyrir að einhver annar hafi breytt gögnunum. Þú getur samt vistað, en það mun hreinsa út breytingarnar sem hinn aðilinn gerði.",
410
+ "yes": "já",
411
+ "Your map has been created! As you are not logged in, here is your secret link to edit the map, please keep it safe:": "Your map has been created! As you are not logged in, here is your secret link to edit the map, please keep it safe:",
278
412
  "Zoom in": "Renna að",
279
413
  "Zoom level for automatic zooms": "Aðdráttarstig fyrir sjálfvirkan aðdrátt",
280
414
  "Zoom out": "Renna frá",
@@ -283,155 +417,37 @@ const locale = {
283
417
  "Zoom to the previous": "Aðdráttur á fyrra",
284
418
  "Zoom to this feature": "Aðdráttur að þessari fitju",
285
419
  "Zoom to this place": "Aðdráttur á þennan stað",
286
- "attribution": "tilvísun í höfund/a",
287
- "by": "eftir",
288
- "display name": "birtingarnafn",
289
- "height": "hæð",
290
- "licence": "notkunarleyfi",
291
- "max East": "Hám. austur",
292
- "max North": "Hám. norður",
293
- "max South": "Hám. suður",
294
- "max West": "Hám. vestur",
295
- "max zoom": "Hám. aðdráttur",
296
- "min zoom": "lágm. aðdráttur",
297
- "next": "næsta",
298
- "previous": "fyrra",
299
- "width": "breidd",
300
- "{count} errors during import: {message}": "{count} villur við innflutning: {message}",
301
- "Measure distances": "Mæla vegalengdir",
302
- "NM": "Sjómílur",
303
- "kilometers": "kílómetrar",
304
- "km": "km",
305
- "mi": "mi",
306
- "miles": "mílur",
307
- "nautical miles": "sjómílur",
308
- "1 day": "1 dagur",
309
- "1 hour": "1 klukkustund",
310
- "5 min": "5 mín",
311
- "Cache proxied request": "Setja milliþjónabeiðnir í skyndiminni",
312
- "No cache": "Ekkert biðminni",
313
- "Popup": "Sprettgluggi",
314
- "Popup (large)": "Sprettgluggi (stór)",
315
- "Popup content style": "Stíll efnis í sprettglugga",
316
- "Popup shape": "Lögun sprettglugga",
317
- "Skipping unknown geometry.type: {type}": "Sleppi óþekktu geometry.type: {type}",
318
- "Optional.": "Valfrjálst.",
319
- "Paste your data here": "Límdu gögnin þín hér",
320
- "Please save the map first": "Vistaðu fyrst kortið",
321
- "Feature identifier key": "Feature identifier key",
322
- "Open current feature on load": "Open current feature on load",
323
- "Permalink": "Permalink",
324
- "The name of the property to use as feature unique identifier.": "The name of the property to use as feature unique identifier.",
325
- "Do you want to display caption menus?": "Do you want to display caption menus?",
326
- "Example: key1,key2,key3": "Example: key1,key2,key3",
327
- "Invalid latitude or longitude": "Invalid latitude or longitude",
328
- "Invalide property name: {name}": "Invalide property name: {name}",
329
- "Permanent credits": "Permanent credits",
330
- "Permanent credits background": "Permanent credits background",
331
- "Select data": "Select data",
332
- "Will be permanently visible in the bottom left corner of the map": "Will be permanently visible in the bottom left corner of the map",
333
420
  "{area} acres": "{area} acres",
334
421
  "{area} ha": "{area} ha",
335
422
  "{area} m²": "{area} m²",
336
423
  "{area} mi²": "{area} mi²",
337
424
  "{area} yd²": "{area} yd²",
338
- "{distance} NM": "{distance} NM",
425
+ "{count} errors during import: {message}": "{count} villur við innflutning: {message}",
426
+ "{delay} seconds": "{delay} sekúndur",
339
427
  "{distance} km": "{distance} km",
340
428
  "{distance} m": "{distance} m",
341
429
  "{distance} miles": "{distance} miles",
430
+ "{distance} NM": "{distance} NM",
342
431
  "{distance} yd": "{distance} yd",
343
- " (area: {measure})": "(area: {measure})",
344
- " (length: {measure})": "(length: {measure})",
345
- "Animated transitions": "Animated transitions",
346
- "Background overlay url": "Background overlay url",
347
- "Custom overlay": "Custom overlay",
348
- "Display the star map button": "Display the star map button",
349
- "Error in the overlay URL": "Error in the overlay URL",
350
- "Map has been starred": "Map has been starred",
351
- "Map has been unstarred": "Map has been unstarred",
352
- "Opacity": "Opacity",
353
- "Star this map": "Star this map",
354
- "Symbol can be either a unicode character or an URL. You can use feature properties as variables: ex.: with \"http://myserver.org/images/{name}.png\", the {name} variable will be replaced by the \"name\" value of each marker.": "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.",
355
- "Direct link": "Direct link",
356
- "The zoom and center have been modified.": "The zoom and center have been modified.",
357
- "Congratulations, your map has been created!": "Congratulations, your map has been created!",
358
- "Copy link": "Copy link",
359
- "Email": "Email",
360
- "Secret edit link copied to clipboard!": "Secret edit link copied to clipboard!",
361
- "Send me the link": "Send me the link",
362
- "Your map has been created! As you are not logged in, here is your secret link to edit the map, please keep it safe:": "Your map has been created! As you are not logged in, here is your secret link to edit the map, please keep it safe:",
363
- "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.",
364
- "Toggle edit mode (⇧+Click)": "Toggle edit mode (⇧+Click)",
365
- "icon opacity": "icon opacity",
366
- "*single star for italic*": "*single star for italic*",
367
- "--- for a horizontal rule": "--- for a horizontal rule",
368
- "The name of the property to use as feature label (eg.: \"nom\"). You can also use properties inside brackets to use more than one or mix with static content (eg.: \"{name} in {place}\")": "The name of the property to use as feature label (eg.: \"nom\"). You can also use properties inside brackets to use more than one or mix with static content (eg.: \"{name} in {place}\")",
369
- "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)": "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)",
370
- "Default view": "Default view",
371
- "Facet keys": "Facet keys",
372
- "Facet search": "Facet search",
373
- "Feature properties": "Feature properties",
374
- "Latest feature": "Latest feature",
375
- "No results for these facets": "No results for these facets",
376
- "Saved center and zoom": "Saved center and zoom",
377
- "User location": "User location",
378
- "Visibility: {status}": "Visibility: {status}",
379
- "Fit all data": "Fit all data",
380
- "Verify remote URL": "Verify remote URL",
381
- "Add": "Add",
382
- "Change": "Change",
383
- "Powered by uMap": "Powered by uMap",
384
- "Search": "Search",
385
- "Datalayers": "Datalayers",
386
- "Secret edit link:": "Secret edit link:",
387
- "Who can edit \"{layer}\"": "Who can edit \"{layer}\"",
388
- "Choropleth": "Choropleth",
389
- "Choropleth breakpoints": "Choropleth breakpoints",
390
- "Choropleth classes": "Choropleth classes",
391
- "Choropleth color palette": "Choropleth color palette",
392
- "Choropleth mode": "Choropleth mode",
393
- "Choropleth property value": "Choropleth property value",
394
- "Comma separated list of numbers, including min and max values.": "Comma separated list of numbers, including min and max values.",
395
- "Equidistant": "Equidistant",
396
- "Jenks-Fisher": "Jenks-Fisher",
397
- "K-means": "K-means",
398
- "Manual": "Manual",
399
- "Number of desired classes (default 5)": "Number of desired classes (default 5)",
400
- "Quantiles": "Quantiles",
401
- "Show this layer in the caption": "Show this layer in the caption",
402
- "Back to preview": "Back to preview",
403
- "Drawing": "Drawing",
404
- "Edit the title of the map": "Edit the title of the map",
405
- "Go to the homepage": "Go to the homepage",
406
- "Switch to edit mode": "Switch to edit mode",
407
- "Update who can see and edit the map": "Update who can see and edit the map",
408
- "View": "View",
409
- "Add image URL": "Add image URL",
410
- "Emoji & Character": "Emoji & Character",
411
- "Generic": "Generic",
412
- "Symbol": "Symbol",
413
- "Type char or paste emoji": "Type char or paste emoji",
414
- "URL": "URL",
415
- "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.",
416
- "Save map": "Save map",
417
- "Toggle edit mode": "Toggle edit mode",
418
- "All data and settings of the map": "All data and settings of the map",
419
- "Embed and link options": "Embed and link options",
420
- "Go to \"{coords}\"": "Go to \"{coords}\"",
421
- "Link to view the map": "Link to view the map",
422
- "No.": "No.",
423
- "Only visible layers' data": "Only visible layers' data",
424
- "Open share & download panel": "Open share & download panel",
425
- "OpenStreetMap": "OpenStreetMap",
426
- "See on OpenStreetMap": "See on OpenStreetMap",
427
- "Share and download": "Share and download",
428
- "Share this link to open a customized map view": "Share this link to open a customized map view",
429
- "Short link": "Short link",
430
- "Street": "Street",
431
- "Type a place name or coordinates": "Type a place name or coordinates",
432
- "copy": "copy",
433
- "full backup": "full backup",
434
- "settings": "settings"
432
+ "Edit map name and caption": "Edit map name and caption",
433
+ "Map advanced properties": "Map advanced properties",
434
+ "Edit map details": "Edit map details",
435
+ "Back to browser": "Back to browser",
436
+ "Toggle size": "Toggle size",
437
+ "Layers": "Layers",
438
+ "Display the caption control": "Display the caption control",
439
+ "Comma separated list of properties to use for facet search (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key). To control input field type, add it after another | (eg.: mykey|My Key|checkbox,otherkey|Other Key|datetime). Allowed values for the input field type are checkbox (default), radio, number, date and datetime.": "Comma separated list of properties to use for facet search (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key). To control input field type, add it after another | (eg.: mykey|My Key|checkbox,otherkey|Other Key|datetime). Allowed values for the input field type are checkbox (default), radio, number, date and datetime.",
440
+ "<empty value>": "<empty value>",
441
+ "Min": "Min",
442
+ "Max": "Max",
443
+ "From": "From",
444
+ "Until": "Until",
445
+ "Example: key1,key2|Label 2,key3|Label 3|checkbox": "Example: key1,key2|Label 2,key3|Label 3|checkbox",
446
+ "Edit in OpenStreetMap": "Edit in OpenStreetMap",
447
+ "Cannot determine latitude and longitude columns.": "Cannot determine latitude and longitude columns.",
448
+ "Back to layers": "Back to layers",
449
+ "Data": "Data",
450
+ "Filters": "Filters"
435
451
  }
436
452
  L.registerLocale("is", locale)
437
453
  L.setLocale("is")