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,445 @@
|
|
|
1
|
+
{
|
|
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": "Просмотр данных",
|
|
12
|
+
"Default": "По умолчанию",
|
|
13
|
+
"Default zoom level": "Масштаб по умолчанию",
|
|
14
|
+
"Default: name": "По умолчанию: название",
|
|
15
|
+
"Display label": "Показывать надпись",
|
|
16
|
+
"Display the control to open OpenStreetMap editor": "Отображать кнопку редактора OpenStreetMap",
|
|
17
|
+
"Display the data layers control": "Отображать кнопку управления слоями данных",
|
|
18
|
+
"Display the embed control": "Отображать кнопку встраивания",
|
|
19
|
+
"Display the fullscreen control": "Отображать кнопку полноэкранного режима",
|
|
20
|
+
"Display the locate control": "Отображать кнопку определения местоположения",
|
|
21
|
+
"Display the measure control": "Отображать линейку",
|
|
22
|
+
"Display the search control": "Отображать строку поиска",
|
|
23
|
+
"Display the tile layers control": "Отображать кнопку управления слоями подложки",
|
|
24
|
+
"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?": "Показывать кнопку «Ещё»?",
|
|
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": "Кнопка метки",
|
|
40
|
+
"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": "Шаблон всплывающей подсказки",
|
|
47
|
+
"Side panel": "Боковая панель",
|
|
48
|
+
"Simplify": "Упростить",
|
|
49
|
+
"Table": "Таблица",
|
|
50
|
+
"always": "всегда",
|
|
51
|
+
"clear": "очистить",
|
|
52
|
+
"collapsed": "Свёрнуто",
|
|
53
|
+
"color": "цвет",
|
|
54
|
+
"dash array": "штрихи",
|
|
55
|
+
"define": "Задать",
|
|
56
|
+
"description": "описание",
|
|
57
|
+
"expanded": "Развёрнуто",
|
|
58
|
+
"fill": "заливка",
|
|
59
|
+
"fill color": "цвет заливки",
|
|
60
|
+
"fill opacity": "Непрозрачность заливки",
|
|
61
|
+
"hidden": "скрыт",
|
|
62
|
+
"iframe": "Iframe",
|
|
63
|
+
"inherit": "наследовать",
|
|
64
|
+
"name": "название",
|
|
65
|
+
"never": "никогда",
|
|
66
|
+
"new window": "Новое окно",
|
|
67
|
+
"no": "нет",
|
|
68
|
+
"on hover": "при наведении",
|
|
69
|
+
"opacity": "непрозрачность",
|
|
70
|
+
"parent window": "Родительское окно",
|
|
71
|
+
"stroke": "штрихи",
|
|
72
|
+
"weight": "толщина",
|
|
73
|
+
"yes": "да",
|
|
74
|
+
"{delay} seconds": "{delay} секунд",
|
|
75
|
+
"# one hash for main heading": "# один шарп — заголовок",
|
|
76
|
+
"## two hashes for second heading": "## два шарпа — подзаголовок",
|
|
77
|
+
"### three hashes for third heading": "### три шарпа — подзаголовок 3-го уровня",
|
|
78
|
+
"**double star for bold**": "**двойные звёздочки — полужирный**",
|
|
79
|
+
"A comma separated list of numbers that defines the stroke dash pattern. Ex.: \"5, 10, 15\".": "Список значений, определяющих штрихи линии. Напр. «5, 10, 15».",
|
|
80
|
+
"About": "Подробней",
|
|
81
|
+
"Action not allowed :(": "Действие недоступно :(",
|
|
82
|
+
"Activate slideshow mode": "Включить режим слайдшоу",
|
|
83
|
+
"Add a layer": "Добавить слой",
|
|
84
|
+
"Add a line to the current multi": "Добавить линию к текущему мультиполигону",
|
|
85
|
+
"Add a new property": "Добавить новое свойство",
|
|
86
|
+
"Add a polygon to the current multi": "Добавить полигон к текущему мультиполигону",
|
|
87
|
+
"Advanced actions": "Дополнительные действия",
|
|
88
|
+
"Advanced properties": "Дополнительные свойства",
|
|
89
|
+
"All properties are imported.": "Все свойства импортированы.",
|
|
90
|
+
"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?": "Вы уверены что хотите удалить этот слой?",
|
|
96
|
+
"Are you sure you want to delete this map?": "Вы уверены, что хотите удалить карту?",
|
|
97
|
+
"Are you sure you want to delete this property on all the features?": "Вы уверены, что хотите удалить это свойство у всех объектов?",
|
|
98
|
+
"Are you sure you want to restore this version?": "Вы уверены, что хотите восстановить эту версию?",
|
|
99
|
+
"Attach the map to my account": "Прикрепить карту к моей учётной записи",
|
|
100
|
+
"Auto": "Автоматически",
|
|
101
|
+
"Autostart when map is loaded": "Автозапуск при открытии карты",
|
|
102
|
+
"Bring feature to center": "Поместить объект в центр",
|
|
103
|
+
"Browse data": "Просмотр данных",
|
|
104
|
+
"Cancel edits": "Отменить правки",
|
|
105
|
+
"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": "Щёлкните на последней точке, чтобы завершить",
|
|
112
|
+
"Click to add a marker": "Щёлкните, чтобы добавить метку",
|
|
113
|
+
"Click to continue drawing": "Щёлкайте, чтобы продолжить рисование",
|
|
114
|
+
"Click to edit": "Щёлкните, чтобы изменить",
|
|
115
|
+
"Click to start drawing a line": "Щёлкните, чтобы начать рисование линии",
|
|
116
|
+
"Click to start drawing a polygon": "Щёлкните, чтобы начать рисование полигона",
|
|
117
|
+
"Clone": "Создать копию",
|
|
118
|
+
"Clone of {name}": "Копия {name}",
|
|
119
|
+
"Clone this feature": "Скопировать фигуру",
|
|
120
|
+
"Clone this map": "Создать копию карты",
|
|
121
|
+
"Close": "Закрыть",
|
|
122
|
+
"Clustering radius": "Радиус кластеризации",
|
|
123
|
+
"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.": "В качестве разделителя используются запятые, табуляции и точки с запятой. Применяется датум WGS84. Импорт просматривает заголовок на наличие полей «lat» и «lon», регистр не имеет значения. Все остальные поля импортируются как свойства.",
|
|
125
|
+
"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": "Данные можно просматривать",
|
|
132
|
+
"Default interaction options": "Параметры интерактивности по умолчанию",
|
|
133
|
+
"Default properties": "Свойства по умолчанию",
|
|
134
|
+
"Default shape properties": "Параметры фигуры по умолчанию",
|
|
135
|
+
"Define link to open in a new window on polygon click.": "Задайте адрес для открытия его в новом окне по клику на полигон.",
|
|
136
|
+
"Delay between two transitions when in play mode": "Задержка между двумя переходами в режиме проигрывания",
|
|
137
|
+
"Delete": "Удалить",
|
|
138
|
+
"Delete all layers": "Удалить все слои",
|
|
139
|
+
"Delete layer": "Удалить слой",
|
|
140
|
+
"Delete this feature": "Удалить объект",
|
|
141
|
+
"Delete this property on all the features": "Удалить это свойство у всех объектов",
|
|
142
|
+
"Delete this shape": "Удалить эту фигуру",
|
|
143
|
+
"Delete this vertex (Alt+Click)": "Удалить эту точку (Alt+клик)",
|
|
144
|
+
"Directions from here": "Навигация отсюда",
|
|
145
|
+
"Display measure": "Display measure",
|
|
146
|
+
"Display on load": "Показывать при загрузке",
|
|
147
|
+
"Download": "Скачать",
|
|
148
|
+
"Drag to reorder": "Перетащите для изменения порядка",
|
|
149
|
+
"Draw a marker": "Добавить метку",
|
|
150
|
+
"Draw a polygon": "Нарисовать полигон",
|
|
151
|
+
"Draw a polyline": "Нарисовать линию",
|
|
152
|
+
"Dynamic": "Динамический",
|
|
153
|
+
"Dynamic properties": "Динамические свойства",
|
|
154
|
+
"Edit": "Редактировать",
|
|
155
|
+
"Edit feature's layer": "Изменить слой объекта",
|
|
156
|
+
"Edit map properties": "Редактировать свойства карты",
|
|
157
|
+
"Edit properties in a table": "Редактировать свойства в таблице",
|
|
158
|
+
"Edit this feature": "Редактировать объект",
|
|
159
|
+
"Embed the map": "Встроить карту",
|
|
160
|
+
"Empty": "Очистить",
|
|
161
|
+
"Error in the tilelayer URL": "Ошибка в ссылке на слой карты",
|
|
162
|
+
"Error while fetching {url}": "Ошибка при обработке {url}",
|
|
163
|
+
"Exit Fullscreen": "Выйти из полноэкранного режима",
|
|
164
|
+
"Extract shape to separate feature": "Извлечь фигуру в отдельный объект",
|
|
165
|
+
"Fetch data each time map view changes.": "Запрашивать данные при каждом изменении отображения карты",
|
|
166
|
+
"Filter keys": "Кнопки фильтра",
|
|
167
|
+
"Format": "Формат",
|
|
168
|
+
"From zoom": "С масштаба",
|
|
169
|
+
"Go to «{feature}»": "Перейти к «{feature}»",
|
|
170
|
+
"Heatmap intensity property": "Свойство интенсивности тепловой карты",
|
|
171
|
+
"Heatmap radius": "Радиус для тепловой карты",
|
|
172
|
+
"Help": "Помощь",
|
|
173
|
+
"Hide controls": "Убрать элементы управления",
|
|
174
|
+
"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 с указанием высоты (в пикселях): {{{http://iframe.url.com|height}}}",
|
|
177
|
+
"Iframe with custom height and width (in px): {{{http://iframe.url.com|height*width}}}": "Iframe с заданной высотой и шириной (в 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}}": "Изображение с указанием ширины (в пикселях): {{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": "Импортировать в новый слой",
|
|
184
|
+
"Imports all umap data, including layers and settings.": "Импортировать все данные uMap, включая слои и настройки.",
|
|
185
|
+
"Include full screen link?": "Включить ссылку на полноэкранный вид?",
|
|
186
|
+
"Interaction options": "Параметры взаимодействия",
|
|
187
|
+
"Invalid umap data": "Неверные данные uMap",
|
|
188
|
+
"Invalid umap data in {filename}": "Неверные данные uMap в файле {filename}",
|
|
189
|
+
"Keep current visible layers": "Оставить текущие видимые слои",
|
|
190
|
+
"Latitude": "Широта",
|
|
191
|
+
"Layer": "Слой",
|
|
192
|
+
"Layer properties": "Свойства слоя",
|
|
193
|
+
"Licence": "Лицензия",
|
|
194
|
+
"Limit bounds": "Установить границы",
|
|
195
|
+
"Link to…": "Связать с...",
|
|
196
|
+
"Link with text: [[http://example.com|text of the link]]": "Ссылка с текстом: [[http://example.com|текст для ссылки]]",
|
|
197
|
+
"Long credits": "Полное описание прав",
|
|
198
|
+
"Longitude": "Долгота",
|
|
199
|
+
"Make main shape": "Сделать главной фигурой",
|
|
200
|
+
"Manage layers": "Управление слоями",
|
|
201
|
+
"Map background credits": "Права на фоновый слой карты",
|
|
202
|
+
"Map has been attached to your account": "Карта была прикреплена к вашей учётной записи",
|
|
203
|
+
"Map has been saved!": "Карта сохранена!",
|
|
204
|
+
"Map user content has been published under licence": "Пользовательские данные опубликованы под лицензией",
|
|
205
|
+
"Map's editors": "Редакторы карты",
|
|
206
|
+
"Map's owner": "Владелец карты",
|
|
207
|
+
"Merge lines": "Соединить линии",
|
|
208
|
+
"More controls": "Другие элементы управления",
|
|
209
|
+
"Must be a valid CSS value (eg.: DarkBlue or #123456)": "Должен быть в формате CSS (напр., DarkBlue или #123456)",
|
|
210
|
+
"No licence has been set": "Лицензия не была указана",
|
|
211
|
+
"No results": "Нет данных",
|
|
212
|
+
"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": "Дополнительные свойства интенсивности тепловой карты",
|
|
215
|
+
"Optional. Same as color if not set.": "Дополнительно. Если не выбрано, то как цвет.",
|
|
216
|
+
"Override clustering radius (default 80)": "Переопределить радиус кластеризации (по умолчанию 80)",
|
|
217
|
+
"Override heatmap radius (default 25)": "Переопределить радиус для тепловой карты (по умолчанию 25)",
|
|
218
|
+
"Please be sure the licence is compliant with your use.": "Убедитесь, что лицензия соответствует правилам использования.",
|
|
219
|
+
"Please choose a format": "Пожалуйста, выберите формат",
|
|
220
|
+
"Please enter the name of the property": "Введите название свойства",
|
|
221
|
+
"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": "Укажите ссылку здесь",
|
|
226
|
+
"Proxy request": "Проксировать запрос",
|
|
227
|
+
"Remote data": "Данные с удаленного сервера",
|
|
228
|
+
"Remove shape from the multi": "Удалить фигуру из мультиполигона",
|
|
229
|
+
"Rename this property on all the features": "Переименовать это свойство у всех объектов",
|
|
230
|
+
"Replace layer content": "Заменить содержимое слоя",
|
|
231
|
+
"Restore this version": "Восстановить эту версию",
|
|
232
|
+
"Save": "Сохранить",
|
|
233
|
+
"Save anyway": "Сохранить в любом случае",
|
|
234
|
+
"Save current edits": "Сохранить текущие правки",
|
|
235
|
+
"Save this center and zoom": "Сохранить это положение и масштаб",
|
|
236
|
+
"Save this location as new feature": "Сохранить это местоположение как новый объект",
|
|
237
|
+
"Search location": "Поиск местоположения",
|
|
238
|
+
"See all": "Посмотреть все",
|
|
239
|
+
"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…": "Сбросьте, чтобы скрыть слой из слайдшоу, просмотра данных и всплывающей навигации...",
|
|
242
|
+
"Shape properties": "Свойства фигуры",
|
|
243
|
+
"Short credits": "Краткое описание прав",
|
|
244
|
+
"Show/hide layer": "Показать/скрыть слой",
|
|
245
|
+
"Simple link: [[http://example.com]]": "Простая ссылка: [[http://example.com]]",
|
|
246
|
+
"Slideshow": "Слайдшоу",
|
|
247
|
+
"Sort key": "Кнопка сортировки",
|
|
248
|
+
"Split line": "Разделить линию",
|
|
249
|
+
"Start a hole here": "Начать отверстие отсюда",
|
|
250
|
+
"Start slideshow": "Начать слайдшоу",
|
|
251
|
+
"Stop editing": "Завершить редактирование",
|
|
252
|
+
"Stop slideshow": "Остановить слайдшоу",
|
|
253
|
+
"Supported scheme": "Поддерживаемая схема",
|
|
254
|
+
"Supported variables that will be dynamically replaced": "Поддерживаемые переменные для автоматической замены",
|
|
255
|
+
"TMS format": "Формат TMS",
|
|
256
|
+
"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": "Перенести фигуру на редактируемый объект",
|
|
261
|
+
"Transform to lines": "Преобразовать в линию",
|
|
262
|
+
"Transform to polygon": "Преобразовать в полигон",
|
|
263
|
+
"Type of layer": "Тип слоя",
|
|
264
|
+
"Unable to detect format of file {filename}": "Невозможно определить формат файла {filename}",
|
|
265
|
+
"Untitled layer": "Слой без названия",
|
|
266
|
+
"Untitled map": "Безымянная карта",
|
|
267
|
+
"Update permissions": "Обновить разрешения",
|
|
268
|
+
"Update permissions and editors": "Настроить права редактирования",
|
|
269
|
+
"Url": "Ссылка",
|
|
270
|
+
"Use current bounds": "Использовать текущие границы",
|
|
271
|
+
"Use placeholders with feature properties between brackets, eg. {name}, they will be dynamically replaced by the corresponding values.": "Используйте переменные в скобках со свойствами объектов, например, {name}, они будут автоматически заменены соответствующими значениями.",
|
|
272
|
+
"User content credits": "Права на пользовательские данные",
|
|
273
|
+
"User interface options": "Настройка интерфейса",
|
|
274
|
+
"Versions": "Версии",
|
|
275
|
+
"View Fullscreen": "Полноэкранный режим",
|
|
276
|
+
"Where do we go from here?": "Что можно сделать с картой?",
|
|
277
|
+
"Whether to display or not polygons paths.": "Показывать или нет контур полигона.",
|
|
278
|
+
"Whether to fill polygons with color.": "Заполнять или нет полигон заливкой цветом",
|
|
279
|
+
"Who can edit": "Кто может редактировать",
|
|
280
|
+
"Who can view": "Кто может просматривать",
|
|
281
|
+
"Will be displayed in the bottom right corner of the map": "Будет показано в правом нижнем углу карты",
|
|
282
|
+
"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.": "Упс! Похоже, кто-то другой тоже редактирует эти данные. Вы можете сохранить свои правки, но это уничтожит правки другого участника.",
|
|
284
|
+
"Zoom in": "Увеличить масштаб",
|
|
285
|
+
"Zoom level for automatic zooms": "Масштабировать слой автоматически",
|
|
286
|
+
"Zoom out": "Уменьшить масштаб",
|
|
287
|
+
"Zoom to layer extent": "Масштабировать до границ слоя",
|
|
288
|
+
"Zoom to the next": "Приблизиться к следующему",
|
|
289
|
+
"Zoom to the previous": "Приблизиться к предыдущему",
|
|
290
|
+
"Zoom to this feature": "Приблизиться к этому объекту",
|
|
291
|
+
"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": "следующий",
|
|
304
|
+
"previous": "предыдущий",
|
|
305
|
+
"width": "ширина",
|
|
306
|
+
"{count} errors during import: {message}": "{count} ошибок во время импорта: {message}",
|
|
307
|
+
"Measure distances": "Измерить расстояния",
|
|
308
|
+
"NM": "ММ",
|
|
309
|
+
"kilometers": "километров",
|
|
310
|
+
"km": "км",
|
|
311
|
+
"mi": "миля",
|
|
312
|
+
"miles": "миль",
|
|
313
|
+
"nautical miles": "морских миль",
|
|
314
|
+
"1 day": "1 день",
|
|
315
|
+
"1 hour": "1 час",
|
|
316
|
+
"5 min": "5 мин",
|
|
317
|
+
"Cache proxied request": "Кэшированный прокси-запрос",
|
|
318
|
+
"No cache": "Не кэшировать",
|
|
319
|
+
"Popup": "Всплывающее окно",
|
|
320
|
+
"Popup (large)": "Всплывающее окно (большое)",
|
|
321
|
+
"Popup content style": "Стиль содержимого всплывающего окна",
|
|
322
|
+
"Popup shape": "Форма всплывающего окна",
|
|
323
|
+
"Skipping unknown geometry.type: {type}": "Пропущено неизвестное свойство geometry.type: {type}",
|
|
324
|
+
"Optional.": "Необязательный.",
|
|
325
|
+
"Paste your data here": "Вставить ваши данные сюда",
|
|
326
|
+
"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": "Постоянная ссылка",
|
|
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} км",
|
|
346
|
+
"{distance} m": "{distance} м",
|
|
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
|
+
}
|