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.

Files changed (182) hide show
  1. umap/__init__.py +1 -1
  2. umap/static/.gitignore +0 -0
  3. umap/static/umap/base.css +994 -0
  4. umap/static/umap/bitbucket.png +0 -0
  5. umap/static/umap/content.css +395 -0
  6. umap/static/umap/favicons/apple-touch-icon.png +0 -0
  7. umap/static/umap/favicons/favicon.ico +0 -0
  8. umap/static/umap/favicons/icon-192.png +0 -0
  9. umap/static/umap/favicons/icon-512.png +0 -0
  10. umap/static/umap/favicons/icon.svg +5 -0
  11. umap/static/umap/font/FiraSans-Light.woff +0 -0
  12. umap/static/umap/font/FiraSans-Light.woff2 +0 -0
  13. umap/static/umap/font/FiraSans-LightItalic.woff +0 -0
  14. umap/static/umap/font/FiraSans-LightItalic.woff2 +0 -0
  15. umap/static/umap/font/FiraSans-SemiBold.woff +0 -0
  16. umap/static/umap/font/FiraSans-SemiBold.woff2 +0 -0
  17. umap/static/umap/font.css +33 -0
  18. umap/static/umap/github.png +0 -0
  19. umap/static/umap/img/16-white.svg +190 -0
  20. umap/static/umap/img/16.svg +182 -0
  21. umap/static/umap/img/24-white.svg +62 -0
  22. umap/static/umap/img/24.svg +90 -0
  23. umap/static/umap/img/edit.svg +7 -0
  24. umap/static/umap/img/icon-bg.png +0 -0
  25. umap/static/umap/img/logo.svg +4 -0
  26. umap/static/umap/img/logo_filigree.png +0 -0
  27. umap/static/umap/img/logo_small.svg +14 -0
  28. umap/static/umap/img/marker.png +0 -0
  29. umap/static/umap/img/opensource.svg +7 -0
  30. umap/static/umap/img/osm.svg +7 -0
  31. umap/static/umap/img/search.gif +0 -0
  32. umap/static/umap/img/source/16-white.svg +980 -0
  33. umap/static/umap/img/source/16.svg +201 -0
  34. umap/static/umap/img/source/24-white.svg +83 -0
  35. umap/static/umap/img/source/24.svg +110 -0
  36. umap/static/umap/js/components/fragment.js +13 -0
  37. umap/static/umap/js/modules/global.js +8 -0
  38. umap/static/umap/js/modules/urls.js +29 -0
  39. umap/static/umap/js/umap.autocomplete.js +336 -0
  40. umap/static/umap/js/umap.browser.js +148 -0
  41. umap/static/umap/js/umap.controls.js +1542 -0
  42. umap/static/umap/js/umap.core.js +851 -0
  43. umap/static/umap/js/umap.datalayer.permissions.js +72 -0
  44. umap/static/umap/js/umap.features.js +1216 -0
  45. umap/static/umap/js/umap.forms.js +1267 -0
  46. umap/static/umap/js/umap.icon.js +234 -0
  47. umap/static/umap/js/umap.importer.js +166 -0
  48. umap/static/umap/js/umap.js +2010 -0
  49. umap/static/umap/js/umap.layer.js +1636 -0
  50. umap/static/umap/js/umap.permissions.js +212 -0
  51. umap/static/umap/js/umap.popup.js +340 -0
  52. umap/static/umap/js/umap.share.js +254 -0
  53. umap/static/umap/js/umap.slideshow.js +165 -0
  54. umap/static/umap/js/umap.tableeditor.js +120 -0
  55. umap/static/umap/js/umap.ui.js +240 -0
  56. umap/static/umap/js/umap.xhr.js +304 -0
  57. umap/static/umap/locale/am_ET.js +447 -0
  58. umap/static/umap/locale/am_ET.json +445 -0
  59. umap/static/umap/locale/ar.js +447 -0
  60. umap/static/umap/locale/ar.json +445 -0
  61. umap/static/umap/locale/ast.js +447 -0
  62. umap/static/umap/locale/ast.json +445 -0
  63. umap/static/umap/locale/bg.js +447 -0
  64. umap/static/umap/locale/bg.json +445 -0
  65. umap/static/umap/locale/br.js +447 -0
  66. umap/static/umap/locale/br.json +445 -0
  67. umap/static/umap/locale/ca.js +447 -0
  68. umap/static/umap/locale/ca.json +445 -0
  69. umap/static/umap/locale/cs_CZ.js +447 -0
  70. umap/static/umap/locale/cs_CZ.json +445 -0
  71. umap/static/umap/locale/da.js +447 -0
  72. umap/static/umap/locale/da.json +445 -0
  73. umap/static/umap/locale/de.js +447 -0
  74. umap/static/umap/locale/de.json +445 -0
  75. umap/static/umap/locale/el.js +447 -0
  76. umap/static/umap/locale/el.json +445 -0
  77. umap/static/umap/locale/en.js +447 -0
  78. umap/static/umap/locale/en.json +445 -0
  79. umap/static/umap/locale/en_US.json +445 -0
  80. umap/static/umap/locale/es.js +447 -0
  81. umap/static/umap/locale/es.json +445 -0
  82. umap/static/umap/locale/et.js +447 -0
  83. umap/static/umap/locale/et.json +445 -0
  84. umap/static/umap/locale/eu.js +413 -0
  85. umap/static/umap/locale/eu.json +411 -0
  86. umap/static/umap/locale/fa_IR.js +447 -0
  87. umap/static/umap/locale/fa_IR.json +445 -0
  88. umap/static/umap/locale/fi.js +447 -0
  89. umap/static/umap/locale/fi.json +445 -0
  90. umap/static/umap/locale/fr.js +447 -0
  91. umap/static/umap/locale/fr.json +445 -0
  92. umap/static/umap/locale/gl.js +447 -0
  93. umap/static/umap/locale/gl.json +445 -0
  94. umap/static/umap/locale/he.js +447 -0
  95. umap/static/umap/locale/he.json +445 -0
  96. umap/static/umap/locale/hr.js +447 -0
  97. umap/static/umap/locale/hr.json +445 -0
  98. umap/static/umap/locale/hu.js +447 -0
  99. umap/static/umap/locale/hu.json +445 -0
  100. umap/static/umap/locale/id.js +447 -0
  101. umap/static/umap/locale/id.json +445 -0
  102. umap/static/umap/locale/is.js +447 -0
  103. umap/static/umap/locale/is.json +445 -0
  104. umap/static/umap/locale/it.js +447 -0
  105. umap/static/umap/locale/it.json +445 -0
  106. umap/static/umap/locale/ja.js +447 -0
  107. umap/static/umap/locale/ja.json +445 -0
  108. umap/static/umap/locale/ko.js +447 -0
  109. umap/static/umap/locale/ko.json +445 -0
  110. umap/static/umap/locale/lt.js +447 -0
  111. umap/static/umap/locale/lt.json +445 -0
  112. umap/static/umap/locale/ms.js +447 -0
  113. umap/static/umap/locale/ms.json +445 -0
  114. umap/static/umap/locale/nl.js +447 -0
  115. umap/static/umap/locale/nl.json +445 -0
  116. umap/static/umap/locale/no.js +447 -0
  117. umap/static/umap/locale/no.json +445 -0
  118. umap/static/umap/locale/pl.js +447 -0
  119. umap/static/umap/locale/pl.json +445 -0
  120. umap/static/umap/locale/pl_PL.json +445 -0
  121. umap/static/umap/locale/pt.js +447 -0
  122. umap/static/umap/locale/pt.json +445 -0
  123. umap/static/umap/locale/pt_BR.js +447 -0
  124. umap/static/umap/locale/pt_BR.json +445 -0
  125. umap/static/umap/locale/pt_PT.js +447 -0
  126. umap/static/umap/locale/pt_PT.json +445 -0
  127. umap/static/umap/locale/ro.js +447 -0
  128. umap/static/umap/locale/ro.json +445 -0
  129. umap/static/umap/locale/ru.js +447 -0
  130. umap/static/umap/locale/ru.json +445 -0
  131. umap/static/umap/locale/si.js +439 -0
  132. umap/static/umap/locale/si.json +437 -0
  133. umap/static/umap/locale/sk_SK.js +447 -0
  134. umap/static/umap/locale/sk_SK.json +445 -0
  135. umap/static/umap/locale/sl.js +447 -0
  136. umap/static/umap/locale/sl.json +445 -0
  137. umap/static/umap/locale/sr.js +447 -0
  138. umap/static/umap/locale/sr.json +445 -0
  139. umap/static/umap/locale/sv.js +447 -0
  140. umap/static/umap/locale/sv.json +445 -0
  141. umap/static/umap/locale/th_TH.js +447 -0
  142. umap/static/umap/locale/th_TH.json +445 -0
  143. umap/static/umap/locale/tr.js +447 -0
  144. umap/static/umap/locale/tr.json +445 -0
  145. umap/static/umap/locale/uk_UA.js +447 -0
  146. umap/static/umap/locale/uk_UA.json +445 -0
  147. umap/static/umap/locale/vi.js +447 -0
  148. umap/static/umap/locale/vi.json +445 -0
  149. umap/static/umap/locale/vi_VN.json +445 -0
  150. umap/static/umap/locale/zh.js +447 -0
  151. umap/static/umap/locale/zh.json +445 -0
  152. umap/static/umap/locale/zh_CN.json +445 -0
  153. umap/static/umap/locale/zh_TW.Big5.json +445 -0
  154. umap/static/umap/locale/zh_TW.js +447 -0
  155. umap/static/umap/locale/zh_TW.json +445 -0
  156. umap/static/umap/map.css +1843 -0
  157. umap/static/umap/nav.css +81 -0
  158. umap/static/umap/openstreetmap.png +0 -0
  159. umap/static/umap/test/.eslintrc +22 -0
  160. umap/static/umap/test/Choropleth.js +243 -0
  161. umap/static/umap/test/Controls.js +100 -0
  162. umap/static/umap/test/DataLayer.js +495 -0
  163. umap/static/umap/test/Feature.js +382 -0
  164. umap/static/umap/test/Map.Export.js +106 -0
  165. umap/static/umap/test/Map.Init.js +46 -0
  166. umap/static/umap/test/Map.js +342 -0
  167. umap/static/umap/test/Marker.js +122 -0
  168. umap/static/umap/test/Permissions.js +74 -0
  169. umap/static/umap/test/Polygon.js +367 -0
  170. umap/static/umap/test/Polyline.js +402 -0
  171. umap/static/umap/test/TableEditor.js +100 -0
  172. umap/static/umap/test/URLs.js +54 -0
  173. umap/static/umap/test/Util.js +549 -0
  174. umap/static/umap/test/_pre.js +460 -0
  175. umap/static/umap/test/index.html +135 -0
  176. umap/static/umap/theme.css +1 -0
  177. umap/static/umap/twitter.png +0 -0
  178. {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/METADATA +1 -1
  179. {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/RECORD +182 -6
  180. {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/WHEEL +0 -0
  181. {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/entry_points.txt +0 -0
  182. {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,445 @@
1
+ {
2
+ "Allow scroll wheel zoom?": "Aotren ar zoum gant ar rodell?",
3
+ "Automatic": "Emgefreek",
4
+ "Ball": "Spilhenn",
5
+ "Cancel": "Nullañ",
6
+ "Caption": "Alc'hwez",
7
+ "Choose the data format": "Diuzañ furmad ar roadennoù",
8
+ "Choose the layer of the feature": "Diuzañ gwiskad an elfenn",
9
+ "Circle": "Kelc'h",
10
+ "Clustered": "Clustered",
11
+ "Data browser": "Furchal ar roadennoù",
12
+ "Default": "Dre ziouer",
13
+ "Default zoom level": "Live zoum dre ziouer",
14
+ "Default: name": "Dre ziouer: anv",
15
+ "Display label": "Diskouez un dikedenn",
16
+ "Display the control to open OpenStreetMap editor": "Diskwel an afell evit digeriñ an aozer OpenStreetMap",
17
+ "Display the data layers control": "Diskwel panell ar gwiskadoù roadennoù",
18
+ "Display the embed control": "Diskwel an afell \"enframmañ\"",
19
+ "Display the fullscreen control": "Diskwel an afell \"skramm a-bezh\"",
20
+ "Display the locate control": "Diskwel an afell \"lec'hiañ\"",
21
+ "Display the measure control": "Diskwel an afell muzuliañ",
22
+ "Display the search control": "Diskwel an afell \"klask\"",
23
+ "Display the tile layers control": "Diskwel an afell \"cheñch foñs ar gartenn\"",
24
+ "Display the zoom control": "Diskwel an afelloù \"zoumañ\" ha \"dizoumañ\"",
25
+ "Do you want to display a caption bar?": "Diskwel ur varrenn alc'hwez?",
26
+ "Do you want to display a minimap?": "Diskwel ur gartennig evit en em lec'hiañ?",
27
+ "Do you want to display a panel on load?": "Do you want to display a panel on load?",
28
+ "Do you want to display popup footer?": "Diskwel an diflugell e traoñ ar bajenn?",
29
+ "Do you want to display the scale control?": "Diskwel skeul ar gartenn?",
30
+ "Do you want to display the «more» control?": "Diskwel an afell \"muioc'h\"?",
31
+ "Drop": "Takenn",
32
+ "GeoRSS (only link)": "GeoRSS (liamm hepken)",
33
+ "GeoRSS (title + image)": "GeoRSS (titl + skeudenn)",
34
+ "Heatmap": "Kartenn dermek",
35
+ "Icon shape": "Furm an ikon",
36
+ "Icon symbol": "Arouez an ikon",
37
+ "Inherit": "Heritañ",
38
+ "Label direction": "Durc'hadur an dikedenn",
39
+ "Label key": "Alc'hwez an dikedenn",
40
+ "Labels are clickable": "An dikedennoù a c'haller klikañ",
41
+ "None": "Hini ebet",
42
+ "On the bottom": "D'an traoñ",
43
+ "On the left": "A-gleiz",
44
+ "On the right": "A-zehoù",
45
+ "On the top": "D'an nec'h",
46
+ "Popup content template": "Popup content template",
47
+ "Side panel": "Panell gostez",
48
+ "Simplify": "Eeunaat",
49
+ "Table": "Taolenn",
50
+ "always": "bepred",
51
+ "clear": "skarzhañ",
52
+ "collapsed": "serret",
53
+ "color": "liv",
54
+ "dash array": "Barrennoùigoù",
55
+ "define": "termenañ",
56
+ "description": "deskrivadur",
57
+ "expanded": "digor",
58
+ "fill": "leuniañ",
59
+ "fill color": "liv leuniañ",
60
+ "fill opacity": "demerez al leuniañ",
61
+ "hidden": "kuzhet",
62
+ "iframe": "iframe",
63
+ "inherit": "heritañ",
64
+ "name": "anv",
65
+ "never": "morse",
66
+ "new window": "prenestr nevez",
67
+ "no": "ket",
68
+ "on hover": "on hover",
69
+ "opacity": "demerez",
70
+ "parent window": "prenestr kar",
71
+ "stroke": "tres",
72
+ "weight": "tevder",
73
+ "yes": "ya",
74
+ "{delay} seconds": "{delay} segondenn",
75
+ "# one hash for main heading": "# un diezenn evit an titl pennañ",
76
+ "## two hashes for second heading": "## div ziezenn evit an eil titl",
77
+ "### three hashes for third heading": "### teir diezenn evit an trede titl",
78
+ "**double star for bold**": "**div steredennig evit tevaat**",
79
+ "A comma separated list of numbers that defines the stroke dash pattern. Ex.: \"5, 10, 15\".": "A comma separated list of numbers that defines the stroke dash pattern. Ex.: \"5, 10, 15\".",
80
+ "About": "Diwar-benn",
81
+ "Action not allowed :(": "N'oc'h ket aotreet d'ober-se :(",
82
+ "Activate slideshow mode": "Gweredekaat ar mod diaporama",
83
+ "Add a layer": "Ouzhpennañ ur gwiskad",
84
+ "Add a line to the current multi": "Add a line to the current multi",
85
+ "Add a new property": "Ouzhpennañ ur perzh nevez",
86
+ "Add a polygon to the current multi": "Add a polygon to the current multi",
87
+ "Advanced actions": "Oberoù araokaet",
88
+ "Advanced properties": "Perzhioù araokaet",
89
+ "All properties are imported.": "Enporzhiet eo bet an holl berzhioù.",
90
+ "Allow interactions": "Aotren an etreoberiadennoù",
91
+ "An error occured": "Ur fazi ez eus bet",
92
+ "Are you sure you want to cancel your changes?": "Ha sur oc'h e faot deoc'h nullañ ho kemmoù?",
93
+ "Are you sure you want to clone this map and all its datalayers?": "Ha sur oc'h e faot deoc'h arredaoliñ ar gartenn-mañ hag hec'h holl wiskadoù roadennoù?",
94
+ "Are you sure you want to delete the feature?": "Ha sur oc'h e faot deoc'h dilemel an elfenn-mañ?",
95
+ "Are you sure you want to delete this layer?": "Ha sur oc'h e faot deoc'h dilemel ar gwiskad-mañ?",
96
+ "Are you sure you want to delete this map?": "Ha sur oc'h e faot deoc'h dilemel ar gartenn-mañ?",
97
+ "Are you sure you want to delete this property on all the features?": "Ha sur oc'h a faot deoc'h lemel ar perzh-mañ diwar an holl elfennoù?",
98
+ "Are you sure you want to restore this version?": "Ha sur oc'h e faot deoc'h adsevel ar stumm-mañ?",
99
+ "Attach the map to my account": "Stagañ ar gartenn d'am c'hont",
100
+ "Auto": "Emgefre",
101
+ "Autostart when map is loaded": "Loc'hañ pa vez karget ar gartenn",
102
+ "Bring feature to center": "Kreizañ ar gartenn war an elfenn-mañ",
103
+ "Browse data": "Furchal ar roadennoù",
104
+ "Cancel edits": "Nullañ ar c'hemmoù",
105
+ "Center map on your location": "Kreizañ ar gartenn war al lec'h m'emaoc'h",
106
+ "Change map background": "Cheñch foñs ar gartenn",
107
+ "Change tilelayers": "Cheñch foñs ar gartenn",
108
+ "Choose a preset": "Diuzañ ur rakdibab",
109
+ "Choose the format of the data to import": "Diuzañ furmad ar roadennoù da enporzhiañ",
110
+ "Choose the layer to import in": "Diuzañ ar gwiskad evit enporzhiañ e-barzh",
111
+ "Click last point to finish shape": "Klikañ war ar poent diwezhañ evit echuiñ an tres",
112
+ "Click to add a marker": "Klikañ evit ouzhpennañ ur valizenn",
113
+ "Click to continue drawing": "Klikañ evit kenderc'hel da dresañ",
114
+ "Click to edit": "Klikañ evit aozañ",
115
+ "Click to start drawing a line": "Klikañ evit tresañ ul linenn",
116
+ "Click to start drawing a polygon": "Klikañ evit tresañ ul lieskorn",
117
+ "Clone": "Arredaoliñ",
118
+ "Clone of {name}": "Eilenn eus {name}",
119
+ "Clone this feature": "Arredaoliñ an elfenn-mañ",
120
+ "Clone this map": "Arredaoliñ ar gartenn-mañ",
121
+ "Close": "Serriñ",
122
+ "Clustering radius": "Clustering radius",
123
+ "Comma separated list of properties to use when filtering features": "Comma separated list of properties to use when filtering features",
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.": "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.",
125
+ "Continue line": "Kenderc'hel al linenn",
126
+ "Continue line (Ctrl+Click)": "Kenderc'hel al linenn (Reol+Klikañ)",
127
+ "Coordinates": "Daveennoù",
128
+ "Credits": "Kredadoù",
129
+ "Current view instead of default map view?": "Gwel a-vremañ e-lec'h ar gwel dre ziouer?",
130
+ "Custom background": "Foñs personelaet",
131
+ "Data is browsable": "Ar roadennoù a c'haller merdeiñ",
132
+ "Default interaction options": "Dibarzhioù etreoberiañ dre ziouer",
133
+ "Default properties": "Perzhioù dre ziouer",
134
+ "Default shape properties": "Default shape properties",
135
+ "Define link to open in a new window on polygon click.": "Define link to open in a new window on polygon click.",
136
+ "Delay between two transitions when in play mode": "Dale etre daou dremen pa vez e mod lenn",
137
+ "Delete": "Dilemel",
138
+ "Delete all layers": "Dilemel kement gwiskad",
139
+ "Delete layer": "Dilemel ar gwiskad",
140
+ "Delete this feature": "Dilemel an elfenn-mañ",
141
+ "Delete this property on all the features": "Dilemel ar perzh-mañ",
142
+ "Delete this shape": "Dilemel an tres-mañ",
143
+ "Delete this vertex (Alt+Click)": "Dilemel ar poent-mañ (Erl+Klik)",
144
+ "Directions from here": "Heñchadurioù adalek amañ",
145
+ "Display measure": "Diskouez ar muzulioù",
146
+ "Display on load": "Diskwel en ur gargañ",
147
+ "Download": "Pellgargañ",
148
+ "Drag to reorder": "Riklañ evit adurzhiañ",
149
+ "Draw a marker": "Ouzhpennañ ur valizenn",
150
+ "Draw a polygon": "Tresañ ul lieskorn",
151
+ "Draw a polyline": "Tresañ ul linenn",
152
+ "Dynamic": "Buhezek",
153
+ "Dynamic properties": "Perzhioù buhezek",
154
+ "Edit": "Aozañ",
155
+ "Edit feature's layer": "Kemmañ gwiskad an elfenn",
156
+ "Edit map properties": "Aozañ perzhioù ar gartenn",
157
+ "Edit properties in a table": "Aozañ ar perzhioù en un daolenn",
158
+ "Edit this feature": "Kemmañ an elfenn-mañ",
159
+ "Embed the map": "Enframmañ ar gartenn",
160
+ "Empty": "Goullonderiñ",
161
+ "Error in the tilelayer URL": "Ur fazi zo en URL foñs ar gartenn",
162
+ "Error while fetching {url}": "Ur fazi ez eus bet en ur c'hervel an URL {url}",
163
+ "Exit Fullscreen": "Kuitaat ar mod skramm a-bezh",
164
+ "Extract shape to separate feature": "Extract shape to separate feature",
165
+ "Fetch data each time map view changes.": "Fetch data each time map view changes.",
166
+ "Filter keys": "Filter keys",
167
+ "Format": "Furmad",
168
+ "From zoom": "Adalek ar zoum",
169
+ "Go to «{feature}»": "Mont da «{feature}»",
170
+ "Heatmap intensity property": "Heatmap intensity property",
171
+ "Heatmap radius": "Skin ar gartenn dermek",
172
+ "Help": "Skoazell",
173
+ "Hide controls": "Kuzhat ar binvioù",
174
+ "Home": "Degemer",
175
+ "How much to simplify the polyline on each zoom level (more = better performance and smoother look, less = more accurate)": "How much to simplify the polyline on each zoom level (more = better performance and smoother look, less = more accurate)",
176
+ "Iframe with custom height (in px): {{{http://iframe.url.com|height}}}": "Iframe gant uhelder personelaet (e pikselioù): {{{http://iframe.url.com|height}}}",
177
+ "Iframe with custom height and width (in px): {{{http://iframe.url.com|height*width}}}": "Iframe gant mentoù personelaet (e pikselioù): {{{http://iframe.url.com|height*width}}}",
178
+ "Iframe: {{{http://iframe.url.com}}}": "Iframe: {{{http://iframe.url.com}}}",
179
+ "Image with custom width (in px): {{http://image.url.com|width}}": "Skeudenn gant ledander personelaet (e pikselioù): {{http://image.url.com|width}}",
180
+ "Image: {{http://image.url.com}}": "Skeudenn: {{http://image.url.com}}",
181
+ "Import": "Enporzhiañ",
182
+ "Import data": "Enporzhiañ roadennoù",
183
+ "Import in a new layer": "Enporzhiañ ur gwiskad nevez",
184
+ "Imports all umap data, including layers and settings.": "Enporzhiañ holl roadennoù ar gartenn, ar gwiskadoù hag an arventennoù en o zouez.",
185
+ "Include full screen link?": "Lakaat ul liamm \"skramm a-bezh\" e-barzh?",
186
+ "Interaction options": "Dibarzhioù etre-ober",
187
+ "Invalid umap data": "Roadennoù umap direizh",
188
+ "Invalid umap data in {filename}": "Roadennoù umap direizh e-barzh {filename}",
189
+ "Keep current visible layers": "Derc'hel ar gwiskadoù a c'haller gwelet bremañ",
190
+ "Latitude": "Ledred",
191
+ "Layer": "Gwiskad",
192
+ "Layer properties": "Perzhioù ar gwiskad",
193
+ "Licence": "Aotre-implijout",
194
+ "Limit bounds": "Bevennoù geografek",
195
+ "Link to…": "Liamm etrezek...",
196
+ "Link with text: [[http://example.com|text of the link]]": "Liamm gant testenn: [[http://skouer.bzh|testenn al liamm]]",
197
+ "Long credits": "Kredadoù hir",
198
+ "Longitude": "Hedred",
199
+ "Make main shape": "Tres pennañ",
200
+ "Manage layers": "Merañ ar gwiskadoù",
201
+ "Map background credits": "Kredadoù foñs ar gartenn",
202
+ "Map has been attached to your account": "Staget eo bet ar gartenn d'ho kont",
203
+ "Map has been saved!": "Enrollet eo bet ar gartenn!",
204
+ "Map user content has been published under licence": "Endalc'had ar gartenn zo bet embannet gant an aotre-implijout",
205
+ "Map's editors": "Aozerien ar gartenn",
206
+ "Map's owner": "Perc'henner ar gartenn",
207
+ "Merge lines": "Kendeuziñ al linennoù",
208
+ "More controls": "Binvioù all",
209
+ "Must be a valid CSS value (eg.: DarkBlue or #123456)": "Rankout a ra bezañ un talvoud CSS reizh (da sk.: DarkBlue pe #123456)",
210
+ "No licence has been set": "Aotre-implijout ebet bet termenet",
211
+ "No results": "Disoc'h ebet",
212
+ "Open link in…": "Digeriñ al liamm e...",
213
+ "Open this map extent in a map editor to provide more accurate data to OpenStreetMap": "Open this map extent in a map editor to provide more accurate data to OpenStreetMap",
214
+ "Optional intensity property for heatmap": "Optional intensity property for heatmap",
215
+ "Optional. Same as color if not set.": "Diret. Al liv pennañ a vo implijet ma ne vez ket termenet.",
216
+ "Override clustering radius (default 80)": "Override clustering radius (default 80)",
217
+ "Override heatmap radius (default 25)": "Override heatmap radius (default 25)",
218
+ "Please be sure the licence is compliant with your use.": "Gwiriit m'az oc'h aotreet da implijout ar roadennoù-mañ mar plij.",
219
+ "Please choose a format": "Diuzit ur furmad mar plij",
220
+ "Please enter the name of the property": "Enankit anv ar perzh mar plij",
221
+ "Please enter the new name of this property": "Enankit anv nevez ar perzh-mañ mar plij",
222
+ "Problem in the response": "Kudenn e respont ar servijer",
223
+ "Problem in the response format": "Kudenn gant furmadiñ ar respont",
224
+ "Properties imported:": "Perzhioù enporzhiet:",
225
+ "Provide an URL here": "Pourchas un URL amañ",
226
+ "Proxy request": "Reked proksi",
227
+ "Remote data": "Rouedadoù a-bell",
228
+ "Remove shape from the multi": "Remove shape from the multi",
229
+ "Rename this property on all the features": "Adenvel ar perzh-mañ",
230
+ "Replace layer content": "Erlec'hiañ endalc'had ar gwiskad",
231
+ "Restore this version": "Adsevel ar stumm-mañ?",
232
+ "Save": "Enrollañ",
233
+ "Save anyway": "Enrollañ evelkent",
234
+ "Save current edits": "Enrollañ ar c'hemmoù a-vremañ ",
235
+ "Save this center and zoom": "Enrollañ ar c'hreiz hag ar zoum-mañ",
236
+ "Save this location as new feature": "Enrollañ al lec'h-mañ evel un elfenn nevez",
237
+ "Search location": "Klask ul lec'h",
238
+ "See all": "Gwelet pep tra",
239
+ "See data layers": "Diskouez ar gwiskadoù",
240
+ "See full screen": "Gwelet e skramm a-bezh",
241
+ "Set it to false to hide this layer from the slideshow, the data browser, the popup navigation…": "Diweredekaat evit kuzhat ar gwiskad-mañ ouzh an diaporama, ar merdeer roadennoù...",
242
+ "Shape properties": "Perzhioù ar furm",
243
+ "Short credits": "Kredadoù berr",
244
+ "Show/hide layer": "Diskouez/kuzhat ar gwiskad",
245
+ "Simple link: [[http://example.com]]": "Liamm eeun: [[http://skouer.bzh]]",
246
+ "Slideshow": "Diaporama",
247
+ "Sort key": "Sort key",
248
+ "Split line": "Disrannañ al linenn",
249
+ "Start a hole here": "Ouzhpennañ un toull e-barzh",
250
+ "Start slideshow": "Lenn",
251
+ "Stop editing": "Paouez da aozañ",
252
+ "Stop slideshow": "Ehan",
253
+ "Supported scheme": "Steuñv skoret",
254
+ "Supported variables that will be dynamically replaced": "Supported variables that will be dynamically replaced",
255
+ "TMS format": "Furmad TMS",
256
+ "Text color for the cluster label": "Text color for the cluster label",
257
+ "Text formatting": "Furmaozañ an destenn",
258
+ "To use if remote server doesn't allow cross domain (slower)": "To use if remote server doesn't allow cross domain (slower)",
259
+ "To zoom": "Betek ar zoum",
260
+ "Transfer shape to edited feature": "Transfer shape to edited feature",
261
+ "Transform to lines": "Treiñ da linennoù",
262
+ "Transform to polygon": "Treiñ d'ul lieskorn",
263
+ "Type of layer": "Seurt ar gwiskad",
264
+ "Unable to detect format of file {filename}": "N'haller ket anavezout furmad ar restr {filename}",
265
+ "Untitled layer": "Gwiskad hep anv",
266
+ "Untitled map": "Kartenn hep anv",
267
+ "Update permissions": "Kemmañ an aotreoù",
268
+ "Update permissions and editors": "Kemmañ an aotreoù hag an aozerien",
269
+ "Url": "URL",
270
+ "Use current bounds": "Implij ar gwel a-vremañ",
271
+ "Use placeholders with feature properties between brackets, eg. {name}, they will be dynamically replaced by the corresponding values.": "Use placeholders with feature properties between brackets, eg. {name}, they will be dynamically replaced by the corresponding values.",
272
+ "User content credits": "Kredadoù evit danvez an implijer",
273
+ "User interface options": "Dibarzhioù etrefas an implijer",
274
+ "Versions": "Stummoù",
275
+ "View Fullscreen": "Mont e mod skramm a-bezh",
276
+ "Where do we go from here?": "Dre belec'h ez eomp adalek amañ?",
277
+ "Whether to display or not polygons paths.": "Diskouez trolinennoù al lieskornoù",
278
+ "Whether to fill polygons with color.": "Leuniañ al lieskornoù gant liv",
279
+ "Who can edit": "Piv a c'hall aozañ",
280
+ "Who can view": "Piv a c'hall gwelet",
281
+ "Will be displayed in the bottom right corner of the map": "Diskwelet e vo e traoñ a-zehoù ar gartenn",
282
+ "Will be visible in the caption of the map": "Gwelus e vo en alc'hwez ar gartenn",
283
+ "Woops! Someone else seems to have edited the data. You can save anyway, but this will erase the changes made by others.": "Chaous! Seblant a ra ez eus bet kemmet ar gartenn gant unan bennak all. Gallout a rit enrollañ koulskoude, kollet e vo e roadennoù avat.",
284
+ "Zoom in": "Zoumañ",
285
+ "Zoom level for automatic zooms": "Live ar zoum emgefreek",
286
+ "Zoom out": "Dizoumañ",
287
+ "Zoom to layer extent": "Zoumañ evit gwelet ar gwiskad en e bezh",
288
+ "Zoom to the next": "War-lerc'h",
289
+ "Zoom to the previous": "Kent",
290
+ "Zoom to this feature": "Zoumañ war an elfenn-mañ",
291
+ "Zoom to this place": "Zoumañ war al lec'h-mañ",
292
+ "attribution": "deroadur",
293
+ "by": "gant",
294
+ "display name": "anv diskwel",
295
+ "height": "uhelder",
296
+ "licence": "aotre-implijout",
297
+ "max East": "bevenn reterañ",
298
+ "max North": "bevenn norzhañ",
299
+ "max South": "bevenn suañ",
300
+ "max West": "bevenn gornôgañ",
301
+ "max zoom": "zoum brasañ",
302
+ "min zoom": "zoum bihanañ",
303
+ "next": "war-lerc'h",
304
+ "previous": "kent",
305
+ "width": "ledander",
306
+ "{count} errors during import: {message}": "{count} fazi zo bet en ur enporzhiañ: {message}",
307
+ "Measure distances": "Muzuliañ pellderioù",
308
+ "NM": "NM",
309
+ "kilometers": "kilometroù",
310
+ "km": "km",
311
+ "mi": "mi",
312
+ "miles": "miltirioù",
313
+ "nautical miles": "milmorioù",
314
+ "1 day": "1 deiz",
315
+ "1 hour": "1 eur",
316
+ "5 min": "5 min",
317
+ "Cache proxied request": "Cache proxied request",
318
+ "No cache": "No cache",
319
+ "Popup": "Diflugell",
320
+ "Popup (large)": "Diflugell (vras)",
321
+ "Popup content style": "Neuz endalc'had an diflugell",
322
+ "Popup shape": "Stumm an diflugell",
323
+ "Skipping unknown geometry.type: {type}": "Tremen e-bioù tikedenn geometry.type dianav: {type}",
324
+ "Optional.": "Diret.",
325
+ "Paste your data here": "Pegit ho roadennoù amañ",
326
+ "Please save the map first": "Ret eo deoc'h enrollañ ar gartenn da gentañ",
327
+ "Feature identifier key": "Alc'hwez anaout un elfenn",
328
+ "Open current feature on load": "Open current feature on load",
329
+ "Permalink": "Liamm pad",
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?": "Diskwel lañser an alc'hwezioù?",
332
+ "Example: key1,key2,key3": "Skouer: key1,key2,key3",
333
+ "Invalid latitude or longitude": "Hedred pe ledred direizh",
334
+ "Invalide property name: {name}": "Anv ar perzh direizh: {name}",
335
+ "Permanent credits": "Kredadoù padus",
336
+ "Permanent credits background": "Foñs ar c'hredadoù padus",
337
+ "Select data": "Diuzañ ar roadennoù",
338
+ "Will be permanently visible in the bottom left corner of the map": "Diskwel dalc'hmat e traoñ a-gleiz ar gartenn",
339
+ "{area} acres": "{area} erv",
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} miltir",
348
+ "{distance} yd": "{distance} yd",
349
+ " (area: {measure})": "(gorread: {measure})",
350
+ " (length: {measure})": "(pellder: {measure})",
351
+ "Animated transitions": "Tremenoù buhezek",
352
+ "Background overlay url": "URL ar foñs",
353
+ "Custom overlay": "Gwiskad personelaet",
354
+ "Display the star map button": "Diskouez an afell evit spilhennañ ar gartenn",
355
+ "Error in the overlay URL": "URL foñs ar gartenn direizh",
356
+ "Map has been starred": "Spilhennet eo bet ar gartenn",
357
+ "Map has been unstarred": "Dispilhennet eo bet ar gartenn",
358
+ "Opacity": "Demerez",
359
+ "Star this map": "Spilhennañ ar gartenn-mañ",
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": "Liamm eeun",
362
+ "The zoom and center have been modified.": "Kemmet eo bet ar zoum hag ar c'hreiz.",
363
+ "Congratulations, your map has been created!": "Gourc'hemennoù, ho kartenn zo bet krouet!",
364
+ "Copy link": "Eilañ an ere",
365
+ "Email": "Postel",
366
+ "Secret edit link copied to clipboard!": "Liamm aozañ kuzh eilet er golver!",
367
+ "Send me the link": "Kas al liamm din",
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:": "Krouet eo bet ho kartenn! Peogwir n'oc'h ket kevreet, setu al liamm kuzh evit aozañ ar gartenn diwezhatoc'h, diwallit mat anezhañ !",
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)": "Gweredekaat ar mod aozañ (⇧+Click)",
371
+ "icon opacity": "Demerez an ikon",
372
+ "*single star for italic*": "*ur steredennig simpl evit italek*",
373
+ "--- for a horizontal rule": "--- evit ul linenn-disparti a-blaen",
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": "Gwel dre ziouer",
377
+ "Facet keys": "Facet keys",
378
+ "Facet search": "Facet search",
379
+ "Feature properties": "Perzhioù an elfenn",
380
+ "Issue reaching that URL (network problem or CORS protection): {url}": "Issue reaching that URL (network problem or CORS protection): {url}",
381
+ "Latest feature": "Elfenn diwezhañ",
382
+ "No results for these facets": "No results for these facets",
383
+ "Saved center and zoom": "Kreiz ha zoum enrollet",
384
+ "User location": "Lec'hiadur an implijer",
385
+ "Visibility: {status}": "Gwelusted: {status}",
386
+ "Fit all data": "Zoumañ war ar roadennoù",
387
+ "Verify remote URL": "Gwiriañ an URL",
388
+ "Add": "Ouzhpennañ",
389
+ "Change": "Kemmañ",
390
+ "Powered by uMap": "Lusket gant uMap",
391
+ "Search": "Klask",
392
+ "Datalayers": "Gwiskadoù",
393
+ "Secret edit link:": "Liamm aozañ kuzh:",
394
+ "Who can edit \"{layer}\"": "Piv a c'hall aozañ \"{layer}\"",
395
+ "Current map view": "Listenn an objedoù a c'haller gwelet",
396
+ "Filter": "Silañ",
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": "Keitpell",
405
+ "Jenks-Fisher": "Jenks-Fisher",
406
+ "K-means": "K-means",
407
+ "Manual": "Sturlevr",
408
+ "Number of desired classes (default 5)": "Niver a renkadoù hoc'h eus c'hoant (5 dre ziouer)",
409
+ "Quantiles": "Kwantiloù",
410
+ "Show this layer in the caption": "Diskouez ar gwiskad-mañ en alc'hwez",
411
+ "Back to preview": "Distreiñ d'ar rakwel",
412
+ "Drawing": "Tres",
413
+ "Edit the title of the map": "Kemmañ titl ar gartenn",
414
+ "Go to the homepage": "Mont d'ar bajenn degemer",
415
+ "Switch to edit mode": "Mod aozañ",
416
+ "Update who can see and edit the map": "Termenañ piv a c'hall gwelet ha kemmañ ar gartenn",
417
+ "View": "Gwelet",
418
+ "Add image URL": "Ouzhpennañ URL ar skeudenn",
419
+ "Emoji & Character": "Emoji & Testenn",
420
+ "Generic": "Standard",
421
+ "Symbol": "Arouezenn",
422
+ "Type char or paste emoji": "Skrivañ un destenn pe pegañ un 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": "Enrollañ ar gartenn",
426
+ "Toggle edit mode": "Gweredekaat ar mod aozañ",
427
+ "All data and settings of the map": "Holl roadennoù hag arventennoù ar gartenn",
428
+ "Embed and link options": "Dibarzhioù enframmañ ha liammoù",
429
+ "Go to \"{coords}\"": "Mont da \"{coords}\"",
430
+ "Link to view the map": "Liamm evit gwelet ar gartenn",
431
+ "No.": "Ket.",
432
+ "Only visible layers' data": "Roadennoù ar gwiskadoù a c'haller gwelet hepken",
433
+ "Open share & download panel": "Open share & download panel",
434
+ "OpenStreetMap": "OpenStreetMap",
435
+ "See on OpenStreetMap": "Gwelet war OpenStreetMap",
436
+ "Share and download": "Rannañ ha pellgargañ",
437
+ "Share this link to open a customized map view": "Share this link to open a customized map view",
438
+ "Short link": "Liamm berr",
439
+ "Street": "Straed",
440
+ "Type a place name or coordinates": "Skrivit anv ul lec'h pe daveennoù",
441
+ "copy": "eilañ",
442
+ "full backup": "gwarez klok",
443
+ "settings": "arventennoù",
444
+ "{count} features in this layer": "{count} a berzhioù er gwiskad-mañ"
445
+ }