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?": "Мащабиране с колелцето на мишката?",
|
|
3
|
+
"Automatic": "Автоматично",
|
|
4
|
+
"Ball": "топка",
|
|
5
|
+
"Cancel": "Отмени",
|
|
6
|
+
"Caption": "Надпис",
|
|
7
|
+
"Choose the data format": "Изберете формата на данните",
|
|
8
|
+
"Choose the layer of the feature": "Изберете слой на функцията",
|
|
9
|
+
"Circle": "окръжност",
|
|
10
|
+
"Clustered": "Клъстер",
|
|
11
|
+
"Data browser": "Data browser",
|
|
12
|
+
"Default": "по подразбиране",
|
|
13
|
+
"Default zoom level": "Default zoom level",
|
|
14
|
+
"Default: name": "Default: name",
|
|
15
|
+
"Display label": "Показване на етикет",
|
|
16
|
+
"Display the control to open OpenStreetMap editor": "Display the control to open OpenStreetMap editor",
|
|
17
|
+
"Display the data layers control": "Display the data layers control",
|
|
18
|
+
"Display the embed control": "Display the embed control",
|
|
19
|
+
"Display the fullscreen control": "Показване управлението за цял екран",
|
|
20
|
+
"Display the locate control": "Display the locate control",
|
|
21
|
+
"Display the measure control": "Display the measure control",
|
|
22
|
+
"Display the search control": "Показване на търсене",
|
|
23
|
+
"Display the tile layers control": "Display the tile layers control",
|
|
24
|
+
"Display the zoom control": "Display the zoom control",
|
|
25
|
+
"Do you want to display a caption bar?": "Искате ли да се покаже надпис бар?",
|
|
26
|
+
"Do you want to display a minimap?": "Искате ли да се покаже миникартата?",
|
|
27
|
+
"Do you want to display a panel on load?": "Искате ли да се покаже панел на зареждане?",
|
|
28
|
+
"Do you want to display popup footer?": "Искате ли да се покаже изскачащ колонтитул?",
|
|
29
|
+
"Do you want to display the scale control?": "Искате ли да се показва мащаб контрола?",
|
|
30
|
+
"Do you want to display the «more» control?": "Do you want to display the «more» control?",
|
|
31
|
+
"Drop": "маркер",
|
|
32
|
+
"GeoRSS (only link)": "GeoRSS (само за връзка)",
|
|
33
|
+
"GeoRSS (title + image)": "GeoRSS (заглавие + изображение)",
|
|
34
|
+
"Heatmap": "Топлинна карта",
|
|
35
|
+
"Icon shape": "Форма на иконата",
|
|
36
|
+
"Icon symbol": "Символ на иконата",
|
|
37
|
+
"Inherit": "Наследи",
|
|
38
|
+
"Label direction": "Посока на текста на етикета",
|
|
39
|
+
"Label key": "Label key",
|
|
40
|
+
"Labels are clickable": "Labels are clickable",
|
|
41
|
+
"None": "Нищо",
|
|
42
|
+
"On the bottom": "Отдолу",
|
|
43
|
+
"On the left": "Вляво",
|
|
44
|
+
"On the right": "Вдясно",
|
|
45
|
+
"On the top": "Отгоре",
|
|
46
|
+
"Popup content template": "Popup content template",
|
|
47
|
+
"Side panel": "Страничен панел",
|
|
48
|
+
"Simplify": "Опрости",
|
|
49
|
+
"Table": "Table",
|
|
50
|
+
"always": "винаги",
|
|
51
|
+
"clear": "изчисти",
|
|
52
|
+
"collapsed": "collapsed",
|
|
53
|
+
"color": "цвят",
|
|
54
|
+
"dash array": "dash array",
|
|
55
|
+
"define": "define",
|
|
56
|
+
"description": "описание",
|
|
57
|
+
"expanded": "expanded",
|
|
58
|
+
"fill": "запълни",
|
|
59
|
+
"fill color": "попълнете цвят",
|
|
60
|
+
"fill opacity": "попълнете непрозрачност",
|
|
61
|
+
"hidden": "hidden",
|
|
62
|
+
"iframe": "iframe",
|
|
63
|
+
"inherit": "наследи",
|
|
64
|
+
"name": "име",
|
|
65
|
+
"never": "никога",
|
|
66
|
+
"new window": "new window",
|
|
67
|
+
"no": "не",
|
|
68
|
+
"on hover": "при преминаване с мишката",
|
|
69
|
+
"opacity": "непрозрачност",
|
|
70
|
+
"parent window": "родителски прозорец",
|
|
71
|
+
"stroke": "stroke",
|
|
72
|
+
"weight": "тегло",
|
|
73
|
+
"yes": "да",
|
|
74
|
+
"{delay} seconds": "{забавяне} сек.",
|
|
75
|
+
"# one hash for main heading": "# един хеш за главната позиция",
|
|
76
|
+
"## two hashes for second heading": "два хеша за втората таблица",
|
|
77
|
+
"### three hashes for third heading": "# # # Три хеша за трета позиция",
|
|
78
|
+
"**double star for bold**": "двойна звезда за удебеление",
|
|
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": "относно",
|
|
81
|
+
"Action not allowed :(": "Не позволено действие",
|
|
82
|
+
"Activate slideshow mode": "Activate slideshow mode",
|
|
83
|
+
"Add a layer": "Добавете слой",
|
|
84
|
+
"Add a line to the current multi": "Add a line to the current multi",
|
|
85
|
+
"Add a new property": "Add a new property",
|
|
86
|
+
"Add a polygon to the current multi": "Add a polygon to the current multi",
|
|
87
|
+
"Advanced actions": "Разширено действия",
|
|
88
|
+
"Advanced properties": "Разширени свойства",
|
|
89
|
+
"All properties are imported.": "Всички свойства са внесени.",
|
|
90
|
+
"Allow interactions": "Allow interactions",
|
|
91
|
+
"An error occured": "Възникна грешка",
|
|
92
|
+
"Are you sure you want to cancel your changes?": "Наистина ли искате да отмените вашите промени?",
|
|
93
|
+
"Are you sure you want to clone this map and all its datalayers?": "Наистина ли искате да клонирате тази карта и всички негови слоеве данни ?",
|
|
94
|
+
"Are you sure you want to delete the feature?": "Сигурни ли сте, че искате да изтриете тази функция?",
|
|
95
|
+
"Are you sure you want to delete this layer?": "Are you sure you want to delete this layer?",
|
|
96
|
+
"Are you sure you want to delete this map?": "Сигурни ли сте, че искате да изтриете тази карта?",
|
|
97
|
+
"Are you sure you want to delete this property on all the features?": "Are you sure you want to delete this property on all the features?",
|
|
98
|
+
"Are you sure you want to restore this version?": "Are you sure you want to restore this version?",
|
|
99
|
+
"Attach the map to my account": "Attach the map to my account",
|
|
100
|
+
"Auto": "Auto",
|
|
101
|
+
"Autostart when map is loaded": "Autostart when map is loaded",
|
|
102
|
+
"Bring feature to center": "Bring feature to center",
|
|
103
|
+
"Browse data": "Преглед данни",
|
|
104
|
+
"Cancel edits": "Отмени редакциите",
|
|
105
|
+
"Center map on your location": "Center map on your location",
|
|
106
|
+
"Change map background": "Промяна фона на картата",
|
|
107
|
+
"Change tilelayers": "Променете слоевете",
|
|
108
|
+
"Choose a preset": "Изберете предварително зададен",
|
|
109
|
+
"Choose the format of the data to import": "Изберете формат на данните за внос",
|
|
110
|
+
"Choose the layer to import in": "Избери слой за внасяне в",
|
|
111
|
+
"Click last point to finish shape": "Click last point to finish shape",
|
|
112
|
+
"Click to add a marker": "Click to add a marker",
|
|
113
|
+
"Click to continue drawing": "Click to continue drawing",
|
|
114
|
+
"Click to edit": "Click to edit",
|
|
115
|
+
"Click to start drawing a line": "Click to start drawing a line",
|
|
116
|
+
"Click to start drawing a polygon": "Click to start drawing a polygon",
|
|
117
|
+
"Clone": "Клонинг",
|
|
118
|
+
"Clone of {name}": "Клонинг на {име}",
|
|
119
|
+
"Clone this feature": "Clone this feature",
|
|
120
|
+
"Clone this map": "клонира тази карта",
|
|
121
|
+
"Close": "Close",
|
|
122
|
+
"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": "Continue line",
|
|
126
|
+
"Continue line (Ctrl+Click)": "Продължаване на линията (Ctrl+Click)",
|
|
127
|
+
"Coordinates": "Координати",
|
|
128
|
+
"Credits": "приемам като достоверен",
|
|
129
|
+
"Current view instead of default map view?": "Текущ изглед, вместо по подразбиране вижте карта?",
|
|
130
|
+
"Custom background": "Потребителски фон",
|
|
131
|
+
"Data is browsable": "Data is browsable",
|
|
132
|
+
"Default interaction options": "Интерактивни функции по подразбиране",
|
|
133
|
+
"Default properties": "По подразбиране свойства",
|
|
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": "Delay between two transitions when in play mode",
|
|
137
|
+
"Delete": "Изтрий",
|
|
138
|
+
"Delete all layers": "Delete all layers",
|
|
139
|
+
"Delete layer": "Delete layer",
|
|
140
|
+
"Delete this feature": "Изтриване на тази функция",
|
|
141
|
+
"Delete this property on all the features": "Delete this property on all the features",
|
|
142
|
+
"Delete this shape": "Delete this shape",
|
|
143
|
+
"Delete this vertex (Alt+Click)": "Delete this vertex (Alt+Click)",
|
|
144
|
+
"Directions from here": "Упътвания от тук",
|
|
145
|
+
"Display measure": "Display measure",
|
|
146
|
+
"Display on load": "Дисплей на зареждане",
|
|
147
|
+
"Download": "Download",
|
|
148
|
+
"Drag to reorder": "Drag to reorder",
|
|
149
|
+
"Draw a marker": "Начертайте маркер",
|
|
150
|
+
"Draw a polygon": "Начертайте полигон",
|
|
151
|
+
"Draw a polyline": "Начертайте полилиния",
|
|
152
|
+
"Dynamic": "динамичен",
|
|
153
|
+
"Dynamic properties": "Dynamic properties",
|
|
154
|
+
"Edit": "Редактиране",
|
|
155
|
+
"Edit feature's layer": "Редактиране функцията на слоя",
|
|
156
|
+
"Edit map properties": "Редактирай свойствата на картата",
|
|
157
|
+
"Edit properties in a table": "Edit properties in a table",
|
|
158
|
+
"Edit this feature": "Редактирайте тази характеристика",
|
|
159
|
+
"Embed the map": "Вграждане на карта",
|
|
160
|
+
"Empty": "Празно",
|
|
161
|
+
"Error in the tilelayer URL": "Грешка в URL адреса на слоя",
|
|
162
|
+
"Error while fetching {url}": "Error while fetching {url}",
|
|
163
|
+
"Exit Fullscreen": "Exit Fullscreen",
|
|
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": "формат",
|
|
168
|
+
"From zoom": "От мащабиране",
|
|
169
|
+
"Go to «{feature}»": "Go to «{feature}»",
|
|
170
|
+
"Heatmap intensity property": "Heatmap intensity property",
|
|
171
|
+
"Heatmap radius": "радиус на Топлинна карта",
|
|
172
|
+
"Help": "Помощ",
|
|
173
|
+
"Hide controls": "Скрий контролите",
|
|
174
|
+
"Home": "Home",
|
|
175
|
+
"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 with custom height (in px): {{{http://iframe.url.com|height}}}",
|
|
177
|
+
"Iframe with custom height and width (in px): {{{http://iframe.url.com|height*width}}}": "Iframe with custom height and width (in px): {{{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}}": "Изображение с поръчкова ширина (in px): {{http://image.url.com|width}}",
|
|
180
|
+
"Image: {{http://image.url.com}}": "изображение: {{http://image.url.com}}",
|
|
181
|
+
"Import": "внасяне",
|
|
182
|
+
"Import data": "Внасям данни",
|
|
183
|
+
"Import in a new layer": "Import in a new layer",
|
|
184
|
+
"Imports all umap data, including layers and settings.": "Imports all umap data, including layers and settings.",
|
|
185
|
+
"Include full screen link?": "Включи пълна връзка на екрана?",
|
|
186
|
+
"Interaction options": "Интерактивни функции",
|
|
187
|
+
"Invalid umap data": "Invalid umap data",
|
|
188
|
+
"Invalid umap data in {filename}": "Invalid umap data in {filename}",
|
|
189
|
+
"Keep current visible layers": "Keep current visible layers",
|
|
190
|
+
"Latitude": "Latitude",
|
|
191
|
+
"Layer": "Layer",
|
|
192
|
+
"Layer properties": "Layer properties",
|
|
193
|
+
"Licence": "Лиценз",
|
|
194
|
+
"Limit bounds": "Limit bounds",
|
|
195
|
+
"Link to…": "Link to…",
|
|
196
|
+
"Link with text: [[http://example.com|text of the link]]": "Връзка с текст: [[http://example.com|текст на връзката]]",
|
|
197
|
+
"Long credits": "Long credits",
|
|
198
|
+
"Longitude": "Longitude",
|
|
199
|
+
"Make main shape": "Make main shape",
|
|
200
|
+
"Manage layers": "Manage layers",
|
|
201
|
+
"Map background credits": "Map background credits",
|
|
202
|
+
"Map has been attached to your account": "Map has been attached to your account",
|
|
203
|
+
"Map has been saved!": "Map has been saved!",
|
|
204
|
+
"Map user content has been published under licence": "Map user content has been published under licence",
|
|
205
|
+
"Map's editors": "Map's editors",
|
|
206
|
+
"Map's owner": "Map's owner",
|
|
207
|
+
"Merge lines": "Merge lines",
|
|
208
|
+
"More controls": "Още контроли",
|
|
209
|
+
"Must be a valid CSS value (eg.: DarkBlue or #123456)": "Must be a valid CSS value (eg.: DarkBlue or #123456)",
|
|
210
|
+
"No licence has been set": "No licence has been set",
|
|
211
|
+
"No results": "No results",
|
|
212
|
+
"Open link in…": "Open link in…",
|
|
213
|
+
"Open this map extent in a map editor to provide more accurate data to OpenStreetMap": "Отворете тази карта в степен редактор на карта, за да предостави по-точни данни,OpenStreetMap",
|
|
214
|
+
"Optional intensity property for heatmap": "Optional intensity property for heatmap",
|
|
215
|
+
"Optional. Same as color if not set.": "По избор Същото като цвят, ако не е настроена.",
|
|
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.": "Моля, бъдете сигурни, че лицензът е съвместим с вашата употреба.",
|
|
219
|
+
"Please choose a format": "Please choose a format",
|
|
220
|
+
"Please enter the name of the property": "Please enter the name of the property",
|
|
221
|
+
"Please enter the new name of this property": "Please enter the new name of this property",
|
|
222
|
+
"Problem in the response": "Проблем в отзивите",
|
|
223
|
+
"Problem in the response format": "Проблем във формата на отговор",
|
|
224
|
+
"Properties imported:": "Внесени свойства:",
|
|
225
|
+
"Provide an URL here": "Представете URL тук",
|
|
226
|
+
"Proxy request": "Proxy request",
|
|
227
|
+
"Remote data": "отдалечена база данни",
|
|
228
|
+
"Remove shape from the multi": "Remove shape from the multi",
|
|
229
|
+
"Rename this property on all the features": "Rename this property on all the features",
|
|
230
|
+
"Replace layer content": "Replace layer content",
|
|
231
|
+
"Restore this version": "Restore this version",
|
|
232
|
+
"Save": "запазвам",
|
|
233
|
+
"Save anyway": "Save anyway",
|
|
234
|
+
"Save current edits": "Запиши текущите редакции",
|
|
235
|
+
"Save this center and zoom": "Запази този център и размер",
|
|
236
|
+
"Save this location as new feature": "Save this location as new feature",
|
|
237
|
+
"Search location": "Search location",
|
|
238
|
+
"See all": "See all",
|
|
239
|
+
"See data layers": "See data layers",
|
|
240
|
+
"See full screen": "Виж на цял екран",
|
|
241
|
+
"Set it to false to hide this layer from the slideshow, the data browser, the popup navigation…": "Set it to false to hide this layer from the slideshow, the data browser, the popup navigation…",
|
|
242
|
+
"Shape properties": "Shape properties",
|
|
243
|
+
"Short credits": "Short credits",
|
|
244
|
+
"Show/hide layer": "Покажи / скрий слой",
|
|
245
|
+
"Simple link: [[http://example.com]]": "проста връзка:[[http://example.com]]",
|
|
246
|
+
"Slideshow": "Slideshow",
|
|
247
|
+
"Sort key": "Sort key",
|
|
248
|
+
"Split line": "Split line",
|
|
249
|
+
"Start a hole here": "Start a hole here",
|
|
250
|
+
"Start slideshow": "Start slideshow",
|
|
251
|
+
"Stop editing": "Спри редактирането",
|
|
252
|
+
"Stop slideshow": "Stop slideshow",
|
|
253
|
+
"Supported scheme": "Поддържана схема",
|
|
254
|
+
"Supported variables that will be dynamically replaced": "Поддържаните променливи, които ще бъдат динамично заменени",
|
|
255
|
+
"TMS format": "TMS формат",
|
|
256
|
+
"Text color for the cluster label": "Text color for the cluster label",
|
|
257
|
+
"Text formatting": "форматиране на текст",
|
|
258
|
+
"To use if remote server doesn't allow cross domain (slower)": "За да се използва, ако отдалечен сървър не позволява кръстосан домейн (по-бавно)",
|
|
259
|
+
"To zoom": "За да увеличите",
|
|
260
|
+
"Transfer shape to edited feature": "Transfer shape to edited feature",
|
|
261
|
+
"Transform to lines": "Трансформация на линии",
|
|
262
|
+
"Transform to polygon": "Трансформация на полигон",
|
|
263
|
+
"Type of layer": "Вид на слой",
|
|
264
|
+
"Unable to detect format of file {filename}": "Unable to detect format of file {filename}",
|
|
265
|
+
"Untitled layer": "Неозаглавен слой",
|
|
266
|
+
"Untitled map": "Неозаглавена карта",
|
|
267
|
+
"Update permissions": "Update permissions",
|
|
268
|
+
"Update permissions and editors": "Актуализиране на разрешения и редактори",
|
|
269
|
+
"Url": "URL адрес",
|
|
270
|
+
"Use current bounds": "Use current bounds",
|
|
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": "User content credits",
|
|
273
|
+
"User interface options": "Опции на потребителския интерфейс",
|
|
274
|
+
"Versions": "Versions",
|
|
275
|
+
"View Fullscreen": "View Fullscreen",
|
|
276
|
+
"Where do we go from here?": "Къде да отидем от тук?",
|
|
277
|
+
"Whether to display or not polygons paths.": "Whether to display or not polygons paths.",
|
|
278
|
+
"Whether to fill polygons with color.": "Whether to fill polygons with color.",
|
|
279
|
+
"Who can edit": "Who can edit",
|
|
280
|
+
"Who can view": "Who can view",
|
|
281
|
+
"Will be displayed in the bottom right corner of the map": "Will be displayed in the bottom right corner of the map",
|
|
282
|
+
"Will be visible in the caption of the map": "Will be visible in the caption of the map",
|
|
283
|
+
"Woops! Someone else seems to have edited the data. You can save anyway, but this will erase the changes made by others.": "Woops! Someone else seems to have edited the data. You can save anyway, but this will erase the changes made by others.",
|
|
284
|
+
"Zoom in": "Zoom in",
|
|
285
|
+
"Zoom level for automatic zooms": "Zoom level for automatic zooms",
|
|
286
|
+
"Zoom out": "Намаляване на мащаба",
|
|
287
|
+
"Zoom to layer extent": "Zoom to layer extent",
|
|
288
|
+
"Zoom to the next": "Zoom to the next",
|
|
289
|
+
"Zoom to the previous": "Zoom to the previous",
|
|
290
|
+
"Zoom to this feature": "Увеличаване на тази характеристика",
|
|
291
|
+
"Zoom to this place": "Zoom to this place",
|
|
292
|
+
"attribution": "приписване",
|
|
293
|
+
"by": "чрез",
|
|
294
|
+
"display name": "показвано име",
|
|
295
|
+
"height": "височина",
|
|
296
|
+
"licence": "лиценз",
|
|
297
|
+
"max East": "максимум Източен",
|
|
298
|
+
"max North": "максимум Северен",
|
|
299
|
+
"max South": "максимум Южен",
|
|
300
|
+
"max West": "максимум Западна",
|
|
301
|
+
"max zoom": "максимум мащабиране",
|
|
302
|
+
"min zoom": "минимално мащабиране",
|
|
303
|
+
"next": "next",
|
|
304
|
+
"previous": "previous",
|
|
305
|
+
"width": "широчина",
|
|
306
|
+
"{count} errors during import: {message}": "{count} errors during import: {message}",
|
|
307
|
+
"Measure distances": "Measure distances",
|
|
308
|
+
"NM": "NM",
|
|
309
|
+
"kilometers": "kilometers",
|
|
310
|
+
"km": "km",
|
|
311
|
+
"mi": "mi",
|
|
312
|
+
"miles": "miles",
|
|
313
|
+
"nautical miles": "nautical miles",
|
|
314
|
+
"1 day": "1 day",
|
|
315
|
+
"1 hour": "1 hour",
|
|
316
|
+
"5 min": "5 min",
|
|
317
|
+
"Cache proxied request": "Cache proxied request",
|
|
318
|
+
"No cache": "No cache",
|
|
319
|
+
"Popup": "Popup",
|
|
320
|
+
"Popup (large)": "Popup (large)",
|
|
321
|
+
"Popup content style": "Popup content style",
|
|
322
|
+
"Popup shape": "Popup shape",
|
|
323
|
+
"Skipping unknown geometry.type: {type}": "Skipping unknown geometry.type: {type}",
|
|
324
|
+
"Optional.": "Optional.",
|
|
325
|
+
"Paste your data here": "Paste your data here",
|
|
326
|
+
"Please save the map first": "Please save the map first",
|
|
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("bg", locale)
|
|
447
|
+
L.setLocale("bg")
|