umap-project 1.14.0a1__py3-none-any.whl → 1.14.0a2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of umap-project might be problematic. Click here for more details.
- umap/__init__.py +1 -1
- umap/static/.gitignore +0 -0
- umap/static/umap/base.css +994 -0
- umap/static/umap/bitbucket.png +0 -0
- umap/static/umap/content.css +395 -0
- umap/static/umap/favicons/apple-touch-icon.png +0 -0
- umap/static/umap/favicons/favicon.ico +0 -0
- umap/static/umap/favicons/icon-192.png +0 -0
- umap/static/umap/favicons/icon-512.png +0 -0
- umap/static/umap/favicons/icon.svg +5 -0
- umap/static/umap/font/FiraSans-Light.woff +0 -0
- umap/static/umap/font/FiraSans-Light.woff2 +0 -0
- umap/static/umap/font/FiraSans-LightItalic.woff +0 -0
- umap/static/umap/font/FiraSans-LightItalic.woff2 +0 -0
- umap/static/umap/font/FiraSans-SemiBold.woff +0 -0
- umap/static/umap/font/FiraSans-SemiBold.woff2 +0 -0
- umap/static/umap/font.css +33 -0
- umap/static/umap/github.png +0 -0
- umap/static/umap/img/16-white.svg +190 -0
- umap/static/umap/img/16.svg +182 -0
- umap/static/umap/img/24-white.svg +62 -0
- umap/static/umap/img/24.svg +90 -0
- umap/static/umap/img/edit.svg +7 -0
- umap/static/umap/img/icon-bg.png +0 -0
- umap/static/umap/img/logo.svg +4 -0
- umap/static/umap/img/logo_filigree.png +0 -0
- umap/static/umap/img/logo_small.svg +14 -0
- umap/static/umap/img/marker.png +0 -0
- umap/static/umap/img/opensource.svg +7 -0
- umap/static/umap/img/osm.svg +7 -0
- umap/static/umap/img/search.gif +0 -0
- umap/static/umap/img/source/16-white.svg +980 -0
- umap/static/umap/img/source/16.svg +201 -0
- umap/static/umap/img/source/24-white.svg +83 -0
- umap/static/umap/img/source/24.svg +110 -0
- umap/static/umap/js/components/fragment.js +13 -0
- umap/static/umap/js/modules/global.js +8 -0
- umap/static/umap/js/modules/urls.js +29 -0
- umap/static/umap/js/umap.autocomplete.js +336 -0
- umap/static/umap/js/umap.browser.js +148 -0
- umap/static/umap/js/umap.controls.js +1542 -0
- umap/static/umap/js/umap.core.js +851 -0
- umap/static/umap/js/umap.datalayer.permissions.js +72 -0
- umap/static/umap/js/umap.features.js +1216 -0
- umap/static/umap/js/umap.forms.js +1267 -0
- umap/static/umap/js/umap.icon.js +234 -0
- umap/static/umap/js/umap.importer.js +166 -0
- umap/static/umap/js/umap.js +2010 -0
- umap/static/umap/js/umap.layer.js +1636 -0
- umap/static/umap/js/umap.permissions.js +212 -0
- umap/static/umap/js/umap.popup.js +340 -0
- umap/static/umap/js/umap.share.js +254 -0
- umap/static/umap/js/umap.slideshow.js +165 -0
- umap/static/umap/js/umap.tableeditor.js +120 -0
- umap/static/umap/js/umap.ui.js +240 -0
- umap/static/umap/js/umap.xhr.js +304 -0
- umap/static/umap/locale/am_ET.js +447 -0
- umap/static/umap/locale/am_ET.json +445 -0
- umap/static/umap/locale/ar.js +447 -0
- umap/static/umap/locale/ar.json +445 -0
- umap/static/umap/locale/ast.js +447 -0
- umap/static/umap/locale/ast.json +445 -0
- umap/static/umap/locale/bg.js +447 -0
- umap/static/umap/locale/bg.json +445 -0
- umap/static/umap/locale/br.js +447 -0
- umap/static/umap/locale/br.json +445 -0
- umap/static/umap/locale/ca.js +447 -0
- umap/static/umap/locale/ca.json +445 -0
- umap/static/umap/locale/cs_CZ.js +447 -0
- umap/static/umap/locale/cs_CZ.json +445 -0
- umap/static/umap/locale/da.js +447 -0
- umap/static/umap/locale/da.json +445 -0
- umap/static/umap/locale/de.js +447 -0
- umap/static/umap/locale/de.json +445 -0
- umap/static/umap/locale/el.js +447 -0
- umap/static/umap/locale/el.json +445 -0
- umap/static/umap/locale/en.js +447 -0
- umap/static/umap/locale/en.json +445 -0
- umap/static/umap/locale/en_US.json +445 -0
- umap/static/umap/locale/es.js +447 -0
- umap/static/umap/locale/es.json +445 -0
- umap/static/umap/locale/et.js +447 -0
- umap/static/umap/locale/et.json +445 -0
- umap/static/umap/locale/eu.js +413 -0
- umap/static/umap/locale/eu.json +411 -0
- umap/static/umap/locale/fa_IR.js +447 -0
- umap/static/umap/locale/fa_IR.json +445 -0
- umap/static/umap/locale/fi.js +447 -0
- umap/static/umap/locale/fi.json +445 -0
- umap/static/umap/locale/fr.js +447 -0
- umap/static/umap/locale/fr.json +445 -0
- umap/static/umap/locale/gl.js +447 -0
- umap/static/umap/locale/gl.json +445 -0
- umap/static/umap/locale/he.js +447 -0
- umap/static/umap/locale/he.json +445 -0
- umap/static/umap/locale/hr.js +447 -0
- umap/static/umap/locale/hr.json +445 -0
- umap/static/umap/locale/hu.js +447 -0
- umap/static/umap/locale/hu.json +445 -0
- umap/static/umap/locale/id.js +447 -0
- umap/static/umap/locale/id.json +445 -0
- umap/static/umap/locale/is.js +447 -0
- umap/static/umap/locale/is.json +445 -0
- umap/static/umap/locale/it.js +447 -0
- umap/static/umap/locale/it.json +445 -0
- umap/static/umap/locale/ja.js +447 -0
- umap/static/umap/locale/ja.json +445 -0
- umap/static/umap/locale/ko.js +447 -0
- umap/static/umap/locale/ko.json +445 -0
- umap/static/umap/locale/lt.js +447 -0
- umap/static/umap/locale/lt.json +445 -0
- umap/static/umap/locale/ms.js +447 -0
- umap/static/umap/locale/ms.json +445 -0
- umap/static/umap/locale/nl.js +447 -0
- umap/static/umap/locale/nl.json +445 -0
- umap/static/umap/locale/no.js +447 -0
- umap/static/umap/locale/no.json +445 -0
- umap/static/umap/locale/pl.js +447 -0
- umap/static/umap/locale/pl.json +445 -0
- umap/static/umap/locale/pl_PL.json +445 -0
- umap/static/umap/locale/pt.js +447 -0
- umap/static/umap/locale/pt.json +445 -0
- umap/static/umap/locale/pt_BR.js +447 -0
- umap/static/umap/locale/pt_BR.json +445 -0
- umap/static/umap/locale/pt_PT.js +447 -0
- umap/static/umap/locale/pt_PT.json +445 -0
- umap/static/umap/locale/ro.js +447 -0
- umap/static/umap/locale/ro.json +445 -0
- umap/static/umap/locale/ru.js +447 -0
- umap/static/umap/locale/ru.json +445 -0
- umap/static/umap/locale/si.js +439 -0
- umap/static/umap/locale/si.json +437 -0
- umap/static/umap/locale/sk_SK.js +447 -0
- umap/static/umap/locale/sk_SK.json +445 -0
- umap/static/umap/locale/sl.js +447 -0
- umap/static/umap/locale/sl.json +445 -0
- umap/static/umap/locale/sr.js +447 -0
- umap/static/umap/locale/sr.json +445 -0
- umap/static/umap/locale/sv.js +447 -0
- umap/static/umap/locale/sv.json +445 -0
- umap/static/umap/locale/th_TH.js +447 -0
- umap/static/umap/locale/th_TH.json +445 -0
- umap/static/umap/locale/tr.js +447 -0
- umap/static/umap/locale/tr.json +445 -0
- umap/static/umap/locale/uk_UA.js +447 -0
- umap/static/umap/locale/uk_UA.json +445 -0
- umap/static/umap/locale/vi.js +447 -0
- umap/static/umap/locale/vi.json +445 -0
- umap/static/umap/locale/vi_VN.json +445 -0
- umap/static/umap/locale/zh.js +447 -0
- umap/static/umap/locale/zh.json +445 -0
- umap/static/umap/locale/zh_CN.json +445 -0
- umap/static/umap/locale/zh_TW.Big5.json +445 -0
- umap/static/umap/locale/zh_TW.js +447 -0
- umap/static/umap/locale/zh_TW.json +445 -0
- umap/static/umap/map.css +1843 -0
- umap/static/umap/nav.css +81 -0
- umap/static/umap/openstreetmap.png +0 -0
- umap/static/umap/test/.eslintrc +22 -0
- umap/static/umap/test/Choropleth.js +243 -0
- umap/static/umap/test/Controls.js +100 -0
- umap/static/umap/test/DataLayer.js +495 -0
- umap/static/umap/test/Feature.js +382 -0
- umap/static/umap/test/Map.Export.js +106 -0
- umap/static/umap/test/Map.Init.js +46 -0
- umap/static/umap/test/Map.js +342 -0
- umap/static/umap/test/Marker.js +122 -0
- umap/static/umap/test/Permissions.js +74 -0
- umap/static/umap/test/Polygon.js +367 -0
- umap/static/umap/test/Polyline.js +402 -0
- umap/static/umap/test/TableEditor.js +100 -0
- umap/static/umap/test/URLs.js +54 -0
- umap/static/umap/test/Util.js +549 -0
- umap/static/umap/test/_pre.js +460 -0
- umap/static/umap/test/index.html +135 -0
- umap/static/umap/theme.css +1 -0
- umap/static/umap/twitter.png +0 -0
- {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/METADATA +1 -1
- {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/RECORD +182 -6
- {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/WHEEL +0 -0
- {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/entry_points.txt +0 -0
- {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/licenses/LICENSE +0 -0
|
@@ -0,0 +1,447 @@
|
|
|
1
|
+
const locale = {
|
|
2
|
+
"Allow scroll wheel zoom?": "Tillad zoom med scrollhjul?",
|
|
3
|
+
"Automatic": "Automatisk",
|
|
4
|
+
"Ball": "Kugle",
|
|
5
|
+
"Cancel": "Fortryd",
|
|
6
|
+
"Caption": "Billedtekst",
|
|
7
|
+
"Choose the data format": "Vælg dataformat",
|
|
8
|
+
"Choose the layer of the feature": "Vælg objektets lag",
|
|
9
|
+
"Circle": "Cirkel",
|
|
10
|
+
"Clustered": "Klynge",
|
|
11
|
+
"Data browser": "Databrowser",
|
|
12
|
+
"Default": "Standard",
|
|
13
|
+
"Default zoom level": "Standardzoomniveau",
|
|
14
|
+
"Default: name": "Standard:-navn",
|
|
15
|
+
"Display label": "Visningslabel",
|
|
16
|
+
"Display the control to open OpenStreetMap editor": "Vis kontrollen til åbning af OpenStreetMap-editoren",
|
|
17
|
+
"Display the data layers control": "Vis datalagkontrollen",
|
|
18
|
+
"Display the embed control": "Vis indlejringskontrollen",
|
|
19
|
+
"Display the fullscreen control": "Vis fuldskærmskontrollen",
|
|
20
|
+
"Display the locate control": "Vis lokaliseringskontrollen",
|
|
21
|
+
"Display the measure control": "Vis opmålingskontrollen",
|
|
22
|
+
"Display the search control": "Vis søgekontrollen",
|
|
23
|
+
"Display the tile layers control": "Vis fliselagskontrollen",
|
|
24
|
+
"Display the zoom control": "Vis zoomkontrollen",
|
|
25
|
+
"Do you want to display a caption bar?": "Vil du vise en billedtekst?",
|
|
26
|
+
"Do you want to display a minimap?": "Vil du vise et miniaturekort?",
|
|
27
|
+
"Do you want to display a panel on load?": "Vil du vise et panel ved indlæsning?",
|
|
28
|
+
"Do you want to display popup footer?": "Vil du vise popupnoten?",
|
|
29
|
+
"Do you want to display the scale control?": "Vil du vise målestokskontrollen?",
|
|
30
|
+
"Do you want to display the «more» control?": "Vil du vise \"mere\"-kontrollen?",
|
|
31
|
+
"Drop": "Drop",
|
|
32
|
+
"GeoRSS (only link)": "GeoRSS (kun link)",
|
|
33
|
+
"GeoRSS (title + image)": "GeoRSS (titel + billede)",
|
|
34
|
+
"Heatmap": "Heatmap",
|
|
35
|
+
"Icon shape": "Ikonfacon",
|
|
36
|
+
"Icon symbol": "Ikonsymbol",
|
|
37
|
+
"Inherit": "Nedarv",
|
|
38
|
+
"Label direction": "Labelretning",
|
|
39
|
+
"Label key": "Labelnøgle",
|
|
40
|
+
"Labels are clickable": "Labels er klikbare",
|
|
41
|
+
"None": "Ingen",
|
|
42
|
+
"On the bottom": "I bunden",
|
|
43
|
+
"On the left": "Til venstre",
|
|
44
|
+
"On the right": "Til højre",
|
|
45
|
+
"On the top": "I toppen",
|
|
46
|
+
"Popup content template": "Popups indholdsskabelon",
|
|
47
|
+
"Side panel": "Sidepanel",
|
|
48
|
+
"Simplify": "Simplificer",
|
|
49
|
+
"Table": "Tabel",
|
|
50
|
+
"always": "altid",
|
|
51
|
+
"clear": "tøm",
|
|
52
|
+
"collapsed": "klappet sammen",
|
|
53
|
+
"color": "farver",
|
|
54
|
+
"dash array": "stiplet række",
|
|
55
|
+
"define": "definer",
|
|
56
|
+
"description": "beskrivelse",
|
|
57
|
+
"expanded": "udvidet",
|
|
58
|
+
"fill": "udfyldning",
|
|
59
|
+
"fill color": "udfyldningsfarve",
|
|
60
|
+
"fill opacity": "udfyldningsgennemsigtighed",
|
|
61
|
+
"hidden": "skjult",
|
|
62
|
+
"iframe": "iframe",
|
|
63
|
+
"inherit": "nedarvet",
|
|
64
|
+
"name": "navn",
|
|
65
|
+
"never": "aldrig",
|
|
66
|
+
"new window": "nyt vindue",
|
|
67
|
+
"no": "nej",
|
|
68
|
+
"on hover": "ved hover",
|
|
69
|
+
"opacity": "gennemsigtighed",
|
|
70
|
+
"parent window": "forældervindue",
|
|
71
|
+
"stroke": "strøg",
|
|
72
|
+
"weight": "vægtning",
|
|
73
|
+
"yes": "ja",
|
|
74
|
+
"{delay} seconds": "{delay} sekunder",
|
|
75
|
+
"# one hash for main heading": "# et hashtag for hovedoverskrift",
|
|
76
|
+
"## two hashes for second heading": "## to hashtags for andet overskriftniveau",
|
|
77
|
+
"### three hashes for third heading": "### tre hashtags for tredje overskriftsniveau",
|
|
78
|
+
"**double star for bold**": "**dobbelt stjerne for fed skrift**",
|
|
79
|
+
"A comma separated list of numbers that defines the stroke dash pattern. Ex.: \"5, 10, 15\".": "En kommasepareret nummerliste som definerer stiplingsmønstret. Fx: \"5, 10, 15\".",
|
|
80
|
+
"About": "Om",
|
|
81
|
+
"Action not allowed :(": "Handling er ikke tilladt :(",
|
|
82
|
+
"Activate slideshow mode": "Aktiver slideshowtilstand",
|
|
83
|
+
"Add a layer": "Tilføj et lag",
|
|
84
|
+
"Add a line to the current multi": "Tilføj en linje til nuværende multi",
|
|
85
|
+
"Add a new property": "Tilføj en ny egenskab",
|
|
86
|
+
"Add a polygon to the current multi": "Tilføj en polygon til nuværende multi",
|
|
87
|
+
"Advanced actions": "Avancerede handlinger",
|
|
88
|
+
"Advanced properties": "Avancerede egenskaber",
|
|
89
|
+
"All properties are imported.": "Alle egenskaber er importeret.",
|
|
90
|
+
"Allow interactions": "Tillad interaktioner",
|
|
91
|
+
"An error occured": "Der opstod en fejl",
|
|
92
|
+
"Are you sure you want to cancel your changes?": "Er du sikker på du vil fortryde dine ændringer?",
|
|
93
|
+
"Are you sure you want to clone this map and all its datalayers?": "Er du sikker på du vil klone dette kort og alle dets datalag?",
|
|
94
|
+
"Are you sure you want to delete the feature?": "Er du sikker på at du vil slette dette objekt?",
|
|
95
|
+
"Are you sure you want to delete this layer?": "Er du sikker på at du vil slette dette lag?",
|
|
96
|
+
"Are you sure you want to delete this map?": "Er du sikker på at du vil slette dette kort?",
|
|
97
|
+
"Are you sure you want to delete this property on all the features?": "Er du sikker på du vil slette denne egenskab på alle objekter?",
|
|
98
|
+
"Are you sure you want to restore this version?": "Er du sikker på at du vil genskabe denne version?",
|
|
99
|
+
"Attach the map to my account": "Knyt kortet til min konto",
|
|
100
|
+
"Auto": "Auto",
|
|
101
|
+
"Autostart when map is loaded": "Start automatisk når kort er indlæst",
|
|
102
|
+
"Bring feature to center": "Centrerer objekt",
|
|
103
|
+
"Browse data": "Gennemse data",
|
|
104
|
+
"Cancel edits": "Fortryd redigeringer",
|
|
105
|
+
"Center map on your location": "Centrer kort på din placering",
|
|
106
|
+
"Change map background": "Skift kortbaggrund",
|
|
107
|
+
"Change tilelayers": "Skift kortlag",
|
|
108
|
+
"Choose a preset": "Vælg en forudindstilling",
|
|
109
|
+
"Choose the format of the data to import": "Vælg imports dataformat",
|
|
110
|
+
"Choose the layer to import in": "Vælg lag der skal importeres",
|
|
111
|
+
"Click last point to finish shape": "Klik på det det sidste punkt for at afslutte figur",
|
|
112
|
+
"Click to add a marker": "Klik for at tilføje en markør",
|
|
113
|
+
"Click to continue drawing": "Klik for at fortsætte indtegning",
|
|
114
|
+
"Click to edit": "Klik for at redigere",
|
|
115
|
+
"Click to start drawing a line": "Klik for at starte indtegning af linje",
|
|
116
|
+
"Click to start drawing a polygon": "Klik for at starte indtegning af polygon",
|
|
117
|
+
"Clone": "Kloning",
|
|
118
|
+
"Clone of {name}": "Klone af {name}",
|
|
119
|
+
"Clone this feature": "Klon dette objekt",
|
|
120
|
+
"Clone this map": "Klon dette kort",
|
|
121
|
+
"Close": "Luk",
|
|
122
|
+
"Clustering radius": "Klyngeradius",
|
|
123
|
+
"Comma separated list of properties to use when filtering features": "Kommasepareret egenskabsliste til brug ved objektfiltrering.",
|
|
124
|
+
"Comma, tab or semi-colon separated values. SRS WGS84 is implied. Only Point geometries are imported. The import will look at the column headers for any mention of «lat» and «lon» at the begining of the header, case insensitive. All other column are imported as properties.": "Komma, tabulering eller semikolon adskiller værdier. SRS WGS84 er underforstået. Kun punktgeometri importeres. Importen vil kigge efter kolonner, der indeholder varianter af \"lat\" eller \"lon\" i begyndelsen af overskriften, uden at tage hensyn til små og store bogstaver. Alle andre kolonner importeres som egenskaber.",
|
|
125
|
+
"Continue line": "Fortsæt linje",
|
|
126
|
+
"Continue line (Ctrl+Click)": "Fortsæt linje (Ctrl+Klik)",
|
|
127
|
+
"Coordinates": "Koordinater",
|
|
128
|
+
"Credits": "Kreditering",
|
|
129
|
+
"Current view instead of default map view?": "Nuværende kortudsnit i stedet for standardkortvisning?",
|
|
130
|
+
"Custom background": "Tilpasset baggrund",
|
|
131
|
+
"Data is browsable": "Data kan gennemses",
|
|
132
|
+
"Default interaction options": "Standardinteraktionsindstillinger",
|
|
133
|
+
"Default properties": "Standardegenskaber",
|
|
134
|
+
"Default shape properties": "Standard figur-egenskaber",
|
|
135
|
+
"Define link to open in a new window on polygon click.": "Definer link der åbnes i et nyt vindue ved klik på polygon.",
|
|
136
|
+
"Delay between two transitions when in play mode": "Forsinkelse mellem to transitioner, når i afspilningstilstand",
|
|
137
|
+
"Delete": "Slet",
|
|
138
|
+
"Delete all layers": "Slet alle lag",
|
|
139
|
+
"Delete layer": "Slet lag",
|
|
140
|
+
"Delete this feature": "Slet dette objekt",
|
|
141
|
+
"Delete this property on all the features": "Slet denne egenskab på alle objekter",
|
|
142
|
+
"Delete this shape": "Slet denne figur",
|
|
143
|
+
"Delete this vertex (Alt+Click)": "Slet denne vertex (Alt+Click)",
|
|
144
|
+
"Directions from here": "Kørselsvejledning herfra",
|
|
145
|
+
"Display measure": "Vis opmåling",
|
|
146
|
+
"Display on load": "Vis ved indlæsning",
|
|
147
|
+
"Download": "Download",
|
|
148
|
+
"Drag to reorder": "Træk for at ændre rækkefølge",
|
|
149
|
+
"Draw a marker": "Tegn en markør",
|
|
150
|
+
"Draw a polygon": "Tegn en polygon",
|
|
151
|
+
"Draw a polyline": "Tegn en polygonlinje",
|
|
152
|
+
"Dynamic": "Dynamisk",
|
|
153
|
+
"Dynamic properties": "Dynamiske egenskaber",
|
|
154
|
+
"Edit": "Redigering",
|
|
155
|
+
"Edit feature's layer": "Rediger objekts lag",
|
|
156
|
+
"Edit map properties": "Rediger kortegenskaber",
|
|
157
|
+
"Edit properties in a table": "Rediger egenskaberne i en tabel",
|
|
158
|
+
"Edit this feature": "Rediger dette objekt",
|
|
159
|
+
"Embed the map": "Indlejring af kortet",
|
|
160
|
+
"Empty": "Tomt",
|
|
161
|
+
"Error in the tilelayer URL": "Fejl i fliselags-URL'en",
|
|
162
|
+
"Error while fetching {url}": "Fejl ved hentning af {url}",
|
|
163
|
+
"Exit Fullscreen": "Afslut fuldskærm",
|
|
164
|
+
"Extract shape to separate feature": "Udtræk figur for at adskille objekt",
|
|
165
|
+
"Fetch data each time map view changes.": "Hent data hver gang kortvisningen ændres.",
|
|
166
|
+
"Filter keys": "Filternøgler",
|
|
167
|
+
"Format": "Format",
|
|
168
|
+
"From zoom": "Fra zoom",
|
|
169
|
+
"Go to «{feature}»": "Gå til \"{feature}\"",
|
|
170
|
+
"Heatmap intensity property": "Heatmaps intensitetsegenskaber",
|
|
171
|
+
"Heatmap radius": "Heatmaps radius",
|
|
172
|
+
"Help": "Hjælp",
|
|
173
|
+
"Hide controls": "Skjul kontroller",
|
|
174
|
+
"Home": "Hjem",
|
|
175
|
+
"How much to simplify the polyline on each zoom level (more = better performance and smoother look, less = more accurate)": "Hvor meget polylinjen skal forenkles på hvert zoomniveau (mere = bedre ydeevne og jævnere udseende, mindre = mere præcist)",
|
|
176
|
+
"Iframe with custom height (in px): {{{http://iframe.url.com|height}}}": "Iframe med brugerdefineret højde (i px): {{{http://iframe.url.com|højde}}}",
|
|
177
|
+
"Iframe with custom height and width (in px): {{{http://iframe.url.com|height*width}}}": "Iframe med tilpasset højde og bredde (i px): {{{http://iframe.url.com|højde*bredde}}}",
|
|
178
|
+
"Iframe: {{{http://iframe.url.com}}}": "Iframe: {{{http://iframe.url.com}}}",
|
|
179
|
+
"Image with custom width (in px): {{http://image.url.com|width}}": "Billede med tilpasset bredde (i px): {{http://image.url.com|bredde}}",
|
|
180
|
+
"Image: {{http://image.url.com}}": "Billede: {{http://image.url.com}}",
|
|
181
|
+
"Import": "Import",
|
|
182
|
+
"Import data": "Importer data",
|
|
183
|
+
"Import in a new layer": "Importerer i et nyt lag",
|
|
184
|
+
"Imports all umap data, including layers and settings.": "Importerer alle umapdata, inklusiv lag og indstillinger,",
|
|
185
|
+
"Include full screen link?": "Inkluder fuldskærmslink?",
|
|
186
|
+
"Interaction options": "Interaktionsindstillinger",
|
|
187
|
+
"Invalid umap data": "Ugyldige umapdata",
|
|
188
|
+
"Invalid umap data in {filename}": "Ugydige umapdata i {filename}",
|
|
189
|
+
"Keep current visible layers": "Behold nuværende synlige lag",
|
|
190
|
+
"Latitude": "Længdegrader",
|
|
191
|
+
"Layer": "Lag",
|
|
192
|
+
"Layer properties": "Lags egenskaber",
|
|
193
|
+
"Licence": "Licens",
|
|
194
|
+
"Limit bounds": "Afgræsning",
|
|
195
|
+
"Link to…": "Link til…",
|
|
196
|
+
"Link with text: [[http://example.com|text of the link]]": "Link med tekst: [[http://example.com|linktekst]]",
|
|
197
|
+
"Long credits": "Lang kreditering",
|
|
198
|
+
"Longitude": "Breddegrader",
|
|
199
|
+
"Make main shape": "Gør til hovedfigur",
|
|
200
|
+
"Manage layers": "Håndter lag",
|
|
201
|
+
"Map background credits": "Baggrundskortkreditering",
|
|
202
|
+
"Map has been attached to your account": "Kortet er blevet knyttet til din konto",
|
|
203
|
+
"Map has been saved!": "Kortet er blevet gemt!",
|
|
204
|
+
"Map user content has been published under licence": "Kortbrugerindholdet er udgivet under licensen",
|
|
205
|
+
"Map's editors": "Korts redaktører",
|
|
206
|
+
"Map's owner": "Korts ejer",
|
|
207
|
+
"Merge lines": "Flet linjer",
|
|
208
|
+
"More controls": "Vis flere kontroller",
|
|
209
|
+
"Must be a valid CSS value (eg.: DarkBlue or #123456)": "Skal være en gyldig CSS-værdi (fx: DarkBlue eller #123456)",
|
|
210
|
+
"No licence has been set": "Ingen licens angivet",
|
|
211
|
+
"No results": "Ingen resultater",
|
|
212
|
+
"Open link in…": "Åbn link i…",
|
|
213
|
+
"Open this map extent in a map editor to provide more accurate data to OpenStreetMap": "Åbn dette kort i en korteditor for at levere mere nøjagtige data til OpenStreetMap",
|
|
214
|
+
"Optional intensity property for heatmap": "Valgfri intensitetsegenskaber for heatmap",
|
|
215
|
+
"Optional. Same as color if not set.": "Valgfrit. Samme som farve hvis ikke opsat.",
|
|
216
|
+
"Override clustering radius (default 80)": "Overskriv klyngeradius (standard 80)",
|
|
217
|
+
"Override heatmap radius (default 25)": "Overskriv heatmapradius (standard 25)",
|
|
218
|
+
"Please be sure the licence is compliant with your use.": "Sørg for at licensen tillader din anvendelse.",
|
|
219
|
+
"Please choose a format": "Vælg et format",
|
|
220
|
+
"Please enter the name of the property": "Angiv egenskabens navn",
|
|
221
|
+
"Please enter the new name of this property": "Angiv egenskabens nye navn",
|
|
222
|
+
"Problem in the response": "Problem med svaret",
|
|
223
|
+
"Problem in the response format": "Problem med svarformatet",
|
|
224
|
+
"Properties imported:": "Egenskaber importeret:",
|
|
225
|
+
"Provide an URL here": "Indsæt en URL her",
|
|
226
|
+
"Proxy request": "Proxyforespørgsel",
|
|
227
|
+
"Remote data": "Fjernudbudte data",
|
|
228
|
+
"Remove shape from the multi": "Fjern figur fra multi",
|
|
229
|
+
"Rename this property on all the features": "Omdøb denne egenskab på alle objekter",
|
|
230
|
+
"Replace layer content": "Erstat lags indhold",
|
|
231
|
+
"Restore this version": "Genskab denne version",
|
|
232
|
+
"Save": "Gem",
|
|
233
|
+
"Save anyway": "Gem alligevel",
|
|
234
|
+
"Save current edits": "Gem nuværende redigeringer",
|
|
235
|
+
"Save this center and zoom": "Gem med dette center og zoom",
|
|
236
|
+
"Save this location as new feature": "Gem denne placering som et nyt objekt",
|
|
237
|
+
"Search location": "Søg efter placering",
|
|
238
|
+
"See all": "Se alle",
|
|
239
|
+
"See data layers": "Se datalag",
|
|
240
|
+
"See full screen": "Se i fuld skærm",
|
|
241
|
+
"Set it to false to hide this layer from the slideshow, the data browser, the popup navigation…": "Sæt den til false, for at skjule dette lag fra slideshowet, databrowseren, popupnavigeringen…",
|
|
242
|
+
"Shape properties": "Figuregenskaber",
|
|
243
|
+
"Short credits": "Kort kreditering",
|
|
244
|
+
"Show/hide layer": "Vis/skjul lag",
|
|
245
|
+
"Simple link: [[http://example.com]]": "Simpelt link: [[http://example.com]]",
|
|
246
|
+
"Slideshow": "Slideshow",
|
|
247
|
+
"Sort key": "Sorteringsnøgle",
|
|
248
|
+
"Split line": "Opsplit linje",
|
|
249
|
+
"Start a hole here": "Start et hul her",
|
|
250
|
+
"Start slideshow": "Start slideshow",
|
|
251
|
+
"Stop editing": "Stop redigering",
|
|
252
|
+
"Stop slideshow": "Stop slideshow",
|
|
253
|
+
"Supported scheme": "Understøttet skema",
|
|
254
|
+
"Supported variables that will be dynamically replaced": "Understøttede variabler som vil blive dynamisk erstattet",
|
|
255
|
+
"TMS format": "TMS-format",
|
|
256
|
+
"Text color for the cluster label": "Tekstfarve for klyngelabel",
|
|
257
|
+
"Text formatting": "Tekstformatering",
|
|
258
|
+
"To use if remote server doesn't allow cross domain (slower)": "Anvendes hvis fjernserver ikke tillader krydsdomæne (langsommere)",
|
|
259
|
+
"To zoom": "For at zoome",
|
|
260
|
+
"Transfer shape to edited feature": "Overfør figur til redigeret objekt",
|
|
261
|
+
"Transform to lines": "Transformer til linjer",
|
|
262
|
+
"Transform to polygon": "Transformer til polygon",
|
|
263
|
+
"Type of layer": "Lagtype",
|
|
264
|
+
"Unable to detect format of file {filename}": "Kunne ikke genkende formatet på filen {filename}",
|
|
265
|
+
"Untitled layer": "Unavngivet lag",
|
|
266
|
+
"Untitled map": "Unavngivet kort",
|
|
267
|
+
"Update permissions": "Opdater tilladelser",
|
|
268
|
+
"Update permissions and editors": "Opdater indstillinger og redaktører",
|
|
269
|
+
"Url": "URL",
|
|
270
|
+
"Use current bounds": "Brug nuværende grænser",
|
|
271
|
+
"Use placeholders with feature properties between brackets, eg. {name}, they will be dynamically replaced by the corresponding values.": "Brug pladsholdere med objektegenskaberne mellem tuborgklammer, fx {navn}, så vil de dynamatisk blive erstattet med de tilhørende værdier.",
|
|
272
|
+
"User content credits": "Brugerindhold-kreditering",
|
|
273
|
+
"User interface options": "Brugergrænsefladeindstillinger",
|
|
274
|
+
"Versions": "Versioner",
|
|
275
|
+
"View Fullscreen": "Fuldskærmsvisning",
|
|
276
|
+
"Where do we go from here?": "Hvor skal vi hen herfra?",
|
|
277
|
+
"Whether to display or not polygons paths.": "Hvorvidt der vises eller ikke vises polygonstier.",
|
|
278
|
+
"Whether to fill polygons with color.": "Hvorvidt polygoner udfyldes med farve.",
|
|
279
|
+
"Who can edit": "Hvem kan redigere",
|
|
280
|
+
"Who can view": "Hvem kan se",
|
|
281
|
+
"Will be displayed in the bottom right corner of the map": "Vil blive vist i kortets nederste højre hjørne",
|
|
282
|
+
"Will be visible in the caption of the map": "Vil være synlig i tekstfeltet på kortet",
|
|
283
|
+
"Woops! Someone else seems to have edited the data. You can save anyway, but this will erase the changes made by others.": "Ups! Det ser ud til at nogen har rettet i dataene. Du kan gemme alligevel, men det vil overskrive andres ændringer.",
|
|
284
|
+
"Zoom in": "Zoom ind",
|
|
285
|
+
"Zoom level for automatic zooms": "Zoomniveau for automatisk zooming",
|
|
286
|
+
"Zoom out": "Zoom ud",
|
|
287
|
+
"Zoom to layer extent": "Zoom til lagudvidelse",
|
|
288
|
+
"Zoom to the next": "Zoom til næste",
|
|
289
|
+
"Zoom to the previous": "Zoom til forrige",
|
|
290
|
+
"Zoom to this feature": "Zoom til dette objekt",
|
|
291
|
+
"Zoom to this place": "Zoom til dette sted",
|
|
292
|
+
"attribution": "navngivelse",
|
|
293
|
+
"by": "af",
|
|
294
|
+
"display name": "visningsnavn",
|
|
295
|
+
"height": "højde",
|
|
296
|
+
"licence": "licens",
|
|
297
|
+
"max East": "max øst",
|
|
298
|
+
"max North": "max nord",
|
|
299
|
+
"max South": "max syd",
|
|
300
|
+
"max West": "max vest",
|
|
301
|
+
"max zoom": "max zoom",
|
|
302
|
+
"min zoom": "min zoom",
|
|
303
|
+
"next": "næste",
|
|
304
|
+
"previous": "forrige",
|
|
305
|
+
"width": "bredde",
|
|
306
|
+
"{count} errors during import: {message}": "{count} fejl under import: {message}",
|
|
307
|
+
"Measure distances": "Opmål afstande",
|
|
308
|
+
"NM": "NM",
|
|
309
|
+
"kilometers": "kilometer",
|
|
310
|
+
"km": "km",
|
|
311
|
+
"mi": "mi",
|
|
312
|
+
"miles": "miles",
|
|
313
|
+
"nautical miles": "sømil",
|
|
314
|
+
"1 day": "1 dag",
|
|
315
|
+
"1 hour": "1 time",
|
|
316
|
+
"5 min": "5 min",
|
|
317
|
+
"Cache proxied request": "Forespørgsel i proxycache",
|
|
318
|
+
"No cache": "Ingen cache",
|
|
319
|
+
"Popup": "Popup",
|
|
320
|
+
"Popup (large)": "Popup (stor)",
|
|
321
|
+
"Popup content style": "Popupindholdsstil",
|
|
322
|
+
"Popup shape": "Popupfacon",
|
|
323
|
+
"Skipping unknown geometry.type: {type}": "Springer over ukendt geometry.type: {type}",
|
|
324
|
+
"Optional.": "Valgfrit.",
|
|
325
|
+
"Paste your data here": "Indsæt dine data her",
|
|
326
|
+
"Please save the map first": "Gem først kortet",
|
|
327
|
+
"Feature identifier key": "Feature identifier key",
|
|
328
|
+
"Open current feature on load": "Open current feature on load",
|
|
329
|
+
"Permalink": "Permalink",
|
|
330
|
+
"The name of the property to use as feature unique identifier.": "The name of the property to use as feature unique identifier.",
|
|
331
|
+
"Do you want to display caption menus?": "Do you want to display caption menus?",
|
|
332
|
+
"Example: key1,key2,key3": "Example: key1,key2,key3",
|
|
333
|
+
"Invalid latitude or longitude": "Invalid latitude or longitude",
|
|
334
|
+
"Invalide property name: {name}": "Invalide property name: {name}",
|
|
335
|
+
"Permanent credits": "Permanent credits",
|
|
336
|
+
"Permanent credits background": "Permanent credits background",
|
|
337
|
+
"Select data": "Select data",
|
|
338
|
+
"Will be permanently visible in the bottom left corner of the map": "Will be permanently visible in the bottom left corner of the map",
|
|
339
|
+
"{area} acres": "{area} acres",
|
|
340
|
+
"{area} ha": "{area} ha",
|
|
341
|
+
"{area} m²": "{area} m²",
|
|
342
|
+
"{area} mi²": "{area} mi²",
|
|
343
|
+
"{area} yd²": "{area} yd²",
|
|
344
|
+
"{distance} NM": "{distance} NM",
|
|
345
|
+
"{distance} km": "{distance} km",
|
|
346
|
+
"{distance} m": "{distance} m",
|
|
347
|
+
"{distance} miles": "{distance} miles",
|
|
348
|
+
"{distance} yd": "{distance} yd",
|
|
349
|
+
" (area: {measure})": "(area: {measure})",
|
|
350
|
+
" (length: {measure})": "(length: {measure})",
|
|
351
|
+
"Animated transitions": "Animated transitions",
|
|
352
|
+
"Background overlay url": "Background overlay url",
|
|
353
|
+
"Custom overlay": "Custom overlay",
|
|
354
|
+
"Display the star map button": "Display the star map button",
|
|
355
|
+
"Error in the overlay URL": "Error in the overlay URL",
|
|
356
|
+
"Map has been starred": "Map has been starred",
|
|
357
|
+
"Map has been unstarred": "Map has been unstarred",
|
|
358
|
+
"Opacity": "Opacity",
|
|
359
|
+
"Star this map": "Star this map",
|
|
360
|
+
"Symbol can be either a unicode character or an URL. You can use feature properties as variables: ex.: with \"http://myserver.org/images/{name}.png\", the {name} variable will be replaced by the \"name\" value of each marker.": "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.",
|
|
361
|
+
"Direct link": "Direct link",
|
|
362
|
+
"The zoom and center have been modified.": "The zoom and center have been modified.",
|
|
363
|
+
"Congratulations, your map has been created!": "Congratulations, your map has been created!",
|
|
364
|
+
"Copy link": "Copy link",
|
|
365
|
+
"Email": "Email",
|
|
366
|
+
"Secret edit link copied to clipboard!": "Secret edit link copied to clipboard!",
|
|
367
|
+
"Send me the link": "Send me the link",
|
|
368
|
+
"Your map has been created! As you are not logged in, here is your secret link to edit the map, please keep it safe:": "Your map has been created! As you are not logged in, here is your secret link to edit the map, please keep it safe:",
|
|
369
|
+
"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.",
|
|
370
|
+
"Toggle edit mode (⇧+Click)": "Toggle edit mode (⇧+Click)",
|
|
371
|
+
"icon opacity": "icon opacity",
|
|
372
|
+
"*single star for italic*": "*single star for italic*",
|
|
373
|
+
"--- for a horizontal rule": "--- for a horizontal rule",
|
|
374
|
+
"The name of the property to use as feature label (eg.: \"nom\"). You can also use properties inside brackets to use more than one or mix with static content (eg.: \"{name} in {place}\")": "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}\")",
|
|
375
|
+
"Comma separated list of properties to use for facet search (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key)": "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)",
|
|
376
|
+
"Default view": "Default view",
|
|
377
|
+
"Facet keys": "Facet keys",
|
|
378
|
+
"Facet search": "Facet search",
|
|
379
|
+
"Feature properties": "Feature properties",
|
|
380
|
+
"Issue reaching that URL (network problem or CORS protection): {url}": "Issue reaching that URL (network problem or CORS protection): {url}",
|
|
381
|
+
"Latest feature": "Latest feature",
|
|
382
|
+
"No results for these facets": "No results for these facets",
|
|
383
|
+
"Saved center and zoom": "Saved center and zoom",
|
|
384
|
+
"User location": "User location",
|
|
385
|
+
"Visibility: {status}": "Visibility: {status}",
|
|
386
|
+
"Fit all data": "Fit all data",
|
|
387
|
+
"Verify remote URL": "Verify remote URL",
|
|
388
|
+
"Add": "Add",
|
|
389
|
+
"Change": "Change",
|
|
390
|
+
"Powered by uMap": "Powered by uMap",
|
|
391
|
+
"Search": "Search",
|
|
392
|
+
"Datalayers": "Datalayers",
|
|
393
|
+
"Secret edit link:": "Secret edit link:",
|
|
394
|
+
"Who can edit \"{layer}\"": "Who can edit \"{layer}\"",
|
|
395
|
+
"Current map view": "Current map view",
|
|
396
|
+
"Filter": "Filter",
|
|
397
|
+
"Choropleth": "Choropleth",
|
|
398
|
+
"Choropleth breakpoints": "Choropleth breakpoints",
|
|
399
|
+
"Choropleth classes": "Choropleth classes",
|
|
400
|
+
"Choropleth color palette": "Choropleth color palette",
|
|
401
|
+
"Choropleth mode": "Choropleth mode",
|
|
402
|
+
"Choropleth property value": "Choropleth property value",
|
|
403
|
+
"Comma separated list of numbers, including min and max values.": "Comma separated list of numbers, including min and max values.",
|
|
404
|
+
"Equidistant": "Equidistant",
|
|
405
|
+
"Jenks-Fisher": "Jenks-Fisher",
|
|
406
|
+
"K-means": "K-means",
|
|
407
|
+
"Manual": "Manual",
|
|
408
|
+
"Number of desired classes (default 5)": "Number of desired classes (default 5)",
|
|
409
|
+
"Quantiles": "Quantiles",
|
|
410
|
+
"Show this layer in the caption": "Show this layer in the caption",
|
|
411
|
+
"Back to preview": "Back to preview",
|
|
412
|
+
"Drawing": "Drawing",
|
|
413
|
+
"Edit the title of the map": "Edit the title of the map",
|
|
414
|
+
"Go to the homepage": "Go to the homepage",
|
|
415
|
+
"Switch to edit mode": "Switch to edit mode",
|
|
416
|
+
"Update who can see and edit the map": "Update who can see and edit the map",
|
|
417
|
+
"View": "View",
|
|
418
|
+
"Add image URL": "Add image URL",
|
|
419
|
+
"Emoji & Character": "Emoji & Character",
|
|
420
|
+
"Generic": "Generic",
|
|
421
|
+
"Symbol": "Symbol",
|
|
422
|
+
"Type char or paste emoji": "Type char or paste emoji",
|
|
423
|
+
"URL": "URL",
|
|
424
|
+
"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.",
|
|
425
|
+
"Save map": "Save map",
|
|
426
|
+
"Toggle edit mode": "Toggle edit mode",
|
|
427
|
+
"All data and settings of the map": "All data and settings of the map",
|
|
428
|
+
"Embed and link options": "Embed and link options",
|
|
429
|
+
"Go to \"{coords}\"": "Go to \"{coords}\"",
|
|
430
|
+
"Link to view the map": "Link to view the map",
|
|
431
|
+
"No.": "No.",
|
|
432
|
+
"Only visible layers' data": "Only visible layers' data",
|
|
433
|
+
"Open share & download panel": "Open share & download panel",
|
|
434
|
+
"OpenStreetMap": "OpenStreetMap",
|
|
435
|
+
"See on OpenStreetMap": "See on OpenStreetMap",
|
|
436
|
+
"Share and download": "Share and download",
|
|
437
|
+
"Share this link to open a customized map view": "Share this link to open a customized map view",
|
|
438
|
+
"Short link": "Short link",
|
|
439
|
+
"Street": "Street",
|
|
440
|
+
"Type a place name or coordinates": "Type a place name or coordinates",
|
|
441
|
+
"copy": "copy",
|
|
442
|
+
"full backup": "full backup",
|
|
443
|
+
"settings": "settings",
|
|
444
|
+
"{count} features in this layer": "{count} features in this layer"
|
|
445
|
+
}
|
|
446
|
+
L.registerLocale("da", locale)
|
|
447
|
+
L.setLocale("da")
|