umap-project 2.0.4__py3-none-any.whl → 2.1.1__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.
Files changed (106) hide show
  1. umap/__init__.py +1 -1
  2. umap/fields.py +3 -1
  3. umap/locale/br/LC_MESSAGES/django.po +76 -71
  4. umap/locale/en/LC_MESSAGES/django.po +41 -41
  5. umap/locale/hu/LC_MESSAGES/django.po +42 -42
  6. umap/locale/it/LC_MESSAGES/django.po +64 -58
  7. umap/locale/ms/LC_MESSAGES/django.po +62 -57
  8. umap/migrations/0018_datalayer_uuid.py +62 -0
  9. umap/migrations/0019_migrate_internal_remote_datalayers.py +52 -0
  10. umap/models.py +20 -3
  11. umap/settings/base.py +1 -0
  12. umap/settings/dev.py +1 -0
  13. umap/static/umap/js/modules/browser.js +2 -2
  14. umap/static/umap/js/modules/global.js +14 -4
  15. umap/static/umap/js/modules/i18n.js +35 -0
  16. umap/static/umap/js/modules/leaflet-configure.js +7 -0
  17. umap/static/umap/js/modules/schema.js +388 -0
  18. umap/static/umap/js/modules/urls.js +17 -2
  19. umap/static/umap/js/modules/utils.js +24 -0
  20. umap/static/umap/js/umap.controls.js +9 -10
  21. umap/static/umap/js/umap.core.js +5 -5
  22. umap/static/umap/js/umap.features.js +23 -9
  23. umap/static/umap/js/umap.forms.js +49 -299
  24. umap/static/umap/js/umap.icon.js +2 -2
  25. umap/static/umap/js/umap.js +26 -129
  26. umap/static/umap/js/umap.layer.js +9 -9
  27. umap/static/umap/js/umap.popup.js +3 -0
  28. umap/static/umap/js/umap.share.js +1 -1
  29. umap/static/umap/locale/am_ET.json +229 -225
  30. umap/static/umap/locale/ar.json +229 -225
  31. umap/static/umap/locale/ast.json +229 -225
  32. umap/static/umap/locale/bg.json +229 -225
  33. umap/static/umap/locale/br.json +237 -233
  34. umap/static/umap/locale/ca.json +229 -225
  35. umap/static/umap/locale/cs_CZ.json +229 -225
  36. umap/static/umap/locale/da.json +229 -225
  37. umap/static/umap/locale/de.json +229 -225
  38. umap/static/umap/locale/el.json +229 -225
  39. umap/static/umap/locale/en.json +230 -233
  40. umap/static/umap/locale/en_US.json +229 -225
  41. umap/static/umap/locale/es.json +229 -225
  42. umap/static/umap/locale/et.json +229 -225
  43. umap/static/umap/locale/eu.json +226 -198
  44. umap/static/umap/locale/fa_IR.json +229 -225
  45. umap/static/umap/locale/fi.json +229 -225
  46. umap/static/umap/locale/fr.json +229 -232
  47. umap/static/umap/locale/gl.json +229 -225
  48. umap/static/umap/locale/he.json +229 -225
  49. umap/static/umap/locale/hr.json +229 -225
  50. umap/static/umap/locale/hu.json +229 -232
  51. umap/static/umap/locale/id.json +229 -225
  52. umap/static/umap/locale/is.json +229 -225
  53. umap/static/umap/locale/it.json +229 -232
  54. umap/static/umap/locale/ja.json +229 -225
  55. umap/static/umap/locale/ko.json +229 -225
  56. umap/static/umap/locale/lt.json +229 -225
  57. umap/static/umap/locale/ms.json +229 -232
  58. umap/static/umap/locale/nl.json +232 -228
  59. umap/static/umap/locale/no.json +229 -225
  60. umap/static/umap/locale/pl.json +229 -225
  61. umap/static/umap/locale/pl_PL.json +229 -225
  62. umap/static/umap/locale/pt.json +229 -225
  63. umap/static/umap/locale/pt_BR.json +229 -225
  64. umap/static/umap/locale/pt_PT.json +229 -225
  65. umap/static/umap/locale/ro.json +229 -225
  66. umap/static/umap/locale/ru.json +229 -225
  67. umap/static/umap/locale/sk_SK.json +229 -225
  68. umap/static/umap/locale/sl.json +229 -225
  69. umap/static/umap/locale/sr.json +229 -225
  70. umap/static/umap/locale/sv.json +229 -225
  71. umap/static/umap/locale/th_TH.json +229 -225
  72. umap/static/umap/locale/tr.json +229 -225
  73. umap/static/umap/locale/uk_UA.json +229 -225
  74. umap/static/umap/locale/vi.json +229 -225
  75. umap/static/umap/locale/vi_VN.json +229 -225
  76. umap/static/umap/locale/zh.json +229 -225
  77. umap/static/umap/locale/zh_CN.json +229 -225
  78. umap/static/umap/locale/zh_TW.Big5.json +229 -225
  79. umap/static/umap/locale/zh_TW.json +229 -232
  80. umap/static/umap/test/index.html +0 -2
  81. umap/static/umap/{test → unittests}/URLs.js +5 -0
  82. umap/static/umap/vendors/leaflet/leaflet-src.esm.js +7064 -7064
  83. umap/static/umap/vendors/photon/leaflet.photon.js +3 -0
  84. umap/templates/umap/js.html +8 -6
  85. umap/templatetags/umap_tags.py +3 -2
  86. umap/tests/integration/test_browser.py +40 -0
  87. umap/tests/integration/test_collaborative_editing.py +72 -3
  88. umap/tests/integration/test_export_map.py +226 -9
  89. umap/tests/integration/test_features_id_generation.py +51 -0
  90. umap/tests/integration/test_owned_map.py +14 -1
  91. umap/tests/integration/test_statics.py +3 -3
  92. umap/tests/integration/test_tilelayer.py +3 -3
  93. umap/tests/settings.py +3 -3
  94. umap/tests/test_datalayer_views.py +77 -20
  95. umap/tests/test_map_views.py +20 -0
  96. umap/tests/test_merge_features.py +25 -5
  97. umap/urls.py +12 -12
  98. umap/utils.py +7 -0
  99. umap/views.py +58 -49
  100. umap/wsgi.py +1 -0
  101. {umap_project-2.0.4.dist-info → umap_project-2.1.1.dist-info}/METADATA +9 -9
  102. {umap_project-2.0.4.dist-info → umap_project-2.1.1.dist-info}/RECORD +105 -99
  103. umap/static/umap/test/Map.Export.js +0 -106
  104. {umap_project-2.0.4.dist-info → umap_project-2.1.1.dist-info}/WHEEL +0 -0
  105. {umap_project-2.0.4.dist-info → umap_project-2.1.1.dist-info}/entry_points.txt +0 -0
  106. {umap_project-2.0.4.dist-info → umap_project-2.1.1.dist-info}/licenses/LICENSE +0 -0
@@ -1,92 +1,33 @@
1
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": "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": "{забавяне} сек.",
2
+ " (area: {measure})": "(area: {measure})",
3
+ " (length: {measure})": "(length: {measure})",
75
4
  "# one hash for main heading": "# един хеш за главната позиция",
76
5
  "## two hashes for second heading": "два хеша за втората таблица",
77
6
  "### three hashes for third heading": "# # # Три хеша за трета позиция",
78
7
  "**double star for bold**": "двойна звезда за удебеление",
8
+ "*single star for italic*": "*single star for italic*",
9
+ "--- for a horizontal rule": "--- for a horizontal rule",
10
+ "1 day": "1 day",
11
+ "1 hour": "1 hour",
12
+ "5 min": "5 min",
79
13
  "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
14
  "About": "относно",
15
+ "Action not allowed :(": "Action not allowed :(",
81
16
  "Activate slideshow mode": "Activate slideshow mode",
82
17
  "Add a layer": "Добавете слой",
83
18
  "Add a line to the current multi": "Add a line to the current multi",
84
19
  "Add a new property": "Add a new property",
85
20
  "Add a polygon to the current multi": "Add a polygon to the current multi",
21
+ "Add image URL": "Add image URL",
22
+ "Add": "Add",
86
23
  "Advanced actions": "Разширено действия",
87
24
  "Advanced properties": "Разширени свойства",
25
+ "All data and settings of the map": "All data and settings of the map",
88
26
  "All properties are imported.": "Всички свойства са внесени.",
89
27
  "Allow interactions": "Allow interactions",
28
+ "Allow scroll wheel zoom?": "Мащабиране с колелцето на мишката?",
29
+ "always": "винаги",
30
+ "Animated transitions": "Animated transitions",
90
31
  "Are you sure you want to cancel your changes?": "Наистина ли искате да отмените вашите промени?",
91
32
  "Are you sure you want to clone this map and all its datalayers?": "Наистина ли искате да клонирате тази карта и всички негови слоеве данни ?",
92
33
  "Are you sure you want to delete the feature?": "Сигурни ли сте, че искате да изтриете тази функция?",
@@ -95,186 +36,386 @@
95
36
  "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?",
96
37
  "Are you sure you want to restore this version?": "Are you sure you want to restore this version?",
97
38
  "Attach the map to my account": "Attach the map to my account",
39
+ "attribution": "приписване",
98
40
  "Auto": "Auto",
41
+ "Automatic": "Автоматично",
99
42
  "Autostart when map is loaded": "Autostart when map is loaded",
43
+ "Back to preview": "Back to preview",
44
+ "Background overlay url": "Background overlay url",
45
+ "Ball": "топка",
46
+ "Bring feature to center": "Bring feature to center",
100
47
  "Browse data": "Преглед данни",
48
+ "by": "чрез",
49
+ "Cache proxied request": "Cache proxied request",
101
50
  "Cancel edits": "Отмени редакциите",
51
+ "Cancel": "Отмени",
52
+ "Caption": "Надпис",
102
53
  "Center map on your location": "Center map on your location",
103
54
  "Change map background": "Промяна фона на картата",
104
55
  "Change tilelayers": "Променете слоевете",
56
+ "Change": "Change",
105
57
  "Choose a preset": "Изберете предварително зададен",
58
+ "Choose the data format": "Изберете формата на данните",
106
59
  "Choose the format of the data to import": "Изберете формат на данните за внос",
107
60
  "Choose the layer to import in": "Избери слой за внасяне в",
61
+ "Choropleth breakpoints": "Choropleth breakpoints",
62
+ "Choropleth classes": "Choropleth classes",
63
+ "Choropleth color palette": "Choropleth color palette",
64
+ "Choropleth mode": "Choropleth mode",
65
+ "Choropleth property value": "Choropleth property value",
66
+ "Choropleth": "Choropleth",
67
+ "Circle": "окръжност",
68
+ "clear": "изчисти",
108
69
  "Click last point to finish shape": "Click last point to finish shape",
109
70
  "Click to add a marker": "Click to add a marker",
110
71
  "Click to continue drawing": "Click to continue drawing",
111
72
  "Click to edit": "Click to edit",
112
73
  "Click to start drawing a line": "Click to start drawing a line",
113
74
  "Click to start drawing a polygon": "Click to start drawing a polygon",
114
- "Clone": "Клонинг",
115
75
  "Clone of {name}": "Клонинг на {име}",
116
76
  "Clone this feature": "Clone this feature",
117
77
  "Clone this map": "клонира тази карта",
78
+ "Clone": "Клонинг",
118
79
  "Close": "Close",
80
+ "Clustered": "Клъстер",
119
81
  "Clustering radius": "радиус на клъстери",
82
+ "collapsed": "collapsed",
83
+ "color": "цвят",
84
+ "Comma separated list of numbers, including min and max values.": "Comma separated list of numbers, including min and max values.",
85
+ "Comma separated list of properties to use for 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)",
86
+ "Comma separated list of properties to use for sorting features. To reverse the sort, put a minus sign (-) before. Eg. mykey,-otherkey.": "Comma separated list of properties to use for sorting features. To reverse the sort, put a minus sign (-) before. Eg. mykey,-otherkey.",
120
87
  "Comma separated list of properties to use when filtering features": "Comma separated list of properties to use when filtering features",
121
88
  "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.",
122
- "Continue line": "Continue line",
89
+ "Congratulations, your map has been created!": "Congratulations, your map has been created!",
123
90
  "Continue line (Ctrl+Click)": "Продължаване на линията (Ctrl+Click)",
91
+ "Continue line": "Continue line",
124
92
  "Coordinates": "Координати",
93
+ "Copy link": "Copy link",
94
+ "copy": "copy",
125
95
  "Credits": "приемам като достоверен",
96
+ "Current map view": "Current map view",
126
97
  "Current view instead of default map view?": "Текущ изглед, вместо по подразбиране вижте карта?",
127
98
  "Custom background": "Потребителски фон",
99
+ "Custom overlay": "Custom overlay",
100
+ "dash array": "dash array",
101
+ "Data browser": "Data browser",
128
102
  "Data is browsable": "Data is browsable",
103
+ "Datalayers": "Datalayers",
129
104
  "Default interaction options": "Интерактивни функции по подразбиране",
130
105
  "Default properties": "По подразбиране свойства",
131
106
  "Default shape properties": "Default shape properties",
107
+ "Default view": "Default view",
108
+ "Default zoom level": "Default zoom level",
109
+ "Default": "по подразбиране",
110
+ "Default: name": "Default: name",
132
111
  "Define link to open in a new window on polygon click.": "Define link to open in a new window on polygon click.",
112
+ "define": "define",
133
113
  "Delay between two transitions when in play mode": "Delay between two transitions when in play mode",
134
- "Delete": "Изтрий",
135
114
  "Delete all layers": "Delete all layers",
136
115
  "Delete layer": "Delete layer",
137
116
  "Delete this feature": "Изтриване на тази функция",
138
117
  "Delete this property on all the features": "Delete this property on all the features",
139
118
  "Delete this shape": "Delete this shape",
140
119
  "Delete this vertex (Alt+Click)": "Delete this vertex (Alt+Click)",
120
+ "Delete": "Изтрий",
121
+ "description": "описание",
122
+ "Direct link": "Direct link",
141
123
  "Directions from here": "Упътвания от тук",
124
+ "Display label": "Показване на етикет",
142
125
  "Display measure": "Display measure",
126
+ "display name": "показвано име",
143
127
  "Display on load": "Дисплей на зареждане",
128
+ "Display the control to open OpenStreetMap editor": "Display the control to open OpenStreetMap editor",
129
+ "Display the data layers control": "Display the data layers control",
130
+ "Display the embed control": "Display the embed control",
131
+ "Display the fullscreen control": "Показване управлението за цял екран",
132
+ "Display the locate control": "Display the locate control",
133
+ "Display the measure control": "Display the measure control",
134
+ "Display the search control": "Показване на търсене",
135
+ "Display the star map button": "Display the star map button",
136
+ "Display the tile layers control": "Display the tile layers control",
137
+ "Display the zoom control": "Display the zoom control",
138
+ "Do you want to display a caption bar?": "Искате ли да се покаже надпис бар?",
139
+ "Do you want to display a minimap?": "Искате ли да се покаже миникартата?",
140
+ "Do you want to display a panel on load?": "Искате ли да се покаже панел на зареждане?",
141
+ "Do you want to display caption menus?": "Do you want to display caption menus?",
142
+ "Do you want to display popup footer?": "Искате ли да се покаже изскачащ колонтитул?",
143
+ "Do you want to display the scale control?": "Искате ли да се показва мащаб контрола?",
144
+ "Do you want to display the «more» control?": "Do you want to display the «more» control?",
144
145
  "Download": "Download",
145
146
  "Drag to reorder": "Drag to reorder",
146
147
  "Draw a marker": "Начертайте маркер",
147
148
  "Draw a polygon": "Начертайте полигон",
148
149
  "Draw a polyline": "Начертайте полилиния",
149
- "Dynamic": "динамичен",
150
+ "Drawing": "Drawing",
151
+ "Drop": "маркер",
150
152
  "Dynamic properties": "Dynamic properties",
151
- "Edit": "Редактиране",
153
+ "Dynamic": "динамичен",
152
154
  "Edit feature's layer": "Редактиране функцията на слоя",
153
155
  "Edit map properties": "Редактирай свойствата на картата",
154
156
  "Edit properties in a table": "Edit properties in a table",
157
+ "Edit the title of the map": "Edit the title of the map",
155
158
  "Edit this feature": "Редактирайте тази характеристика",
159
+ "Edit": "Редактиране",
160
+ "Email": "Email",
161
+ "Embed and link options": "Embed and link options",
156
162
  "Embed the map": "Вграждане на карта",
163
+ "Emoji & Character": "Emoji & Character",
157
164
  "Empty": "Празно",
165
+ "Equidistant": "Equidistant",
166
+ "Error in the overlay URL": "Error in the overlay URL",
158
167
  "Error in the tilelayer URL": "Грешка в URL адреса на слоя",
168
+ "Example: key1,key2,key3": "Example: key1,key2,key3",
159
169
  "Exit Fullscreen": "Exit Fullscreen",
170
+ "expanded": "expanded",
160
171
  "Extract shape to separate feature": "Extract shape to separate feature",
172
+ "Facet keys": "Facet keys",
173
+ "Facet search": "Facet search",
174
+ "Feature identifier key": "Feature identifier key",
175
+ "Feature properties": "Feature properties",
176
+ "Features in this layer: {count}": "Features in this layer: {count}",
161
177
  "Fetch data each time map view changes.": "Fetch data each time map view changes.",
178
+ "fill color": "попълнете цвят",
179
+ "fill opacity": "попълнете непрозрачност",
180
+ "fill": "запълни",
162
181
  "Filter keys": "Filter keys",
182
+ "Filter": "Filter",
183
+ "Fit all data": "Fit all data",
163
184
  "Format": "формат",
164
185
  "From zoom": "От мащабиране",
186
+ "full backup": "full backup",
187
+ "Generic": "Generic",
188
+ "GeoRSS (only link)": "GeoRSS (само за връзка)",
189
+ "GeoRSS (title + image)": "GeoRSS (заглавие + изображение)",
190
+ "Go to \"{coords}\"": "Go to \"{coords}\"",
191
+ "Go to the homepage": "Go to the homepage",
165
192
  "Go to «{feature}»": "Go to «{feature}»",
166
193
  "Heatmap intensity property": "Heatmap intensity property",
167
194
  "Heatmap radius": "радиус на Топлинна карта",
195
+ "Heatmap": "Топлинна карта",
196
+ "height": "височина",
168
197
  "Help": "Помощ",
198
+ "hidden": "hidden",
169
199
  "Hide controls": "Скрий контролите",
170
200
  "Home": "Home",
171
201
  "How much to simplify the polyline on each zoom level (more = better performance and smoother look, less = more accurate)": "Колко да опрости полилинията на всяко ниво увеличение (повече = по-добра производителност и по-гладко на вид, по-малко = по-точно)",
202
+ "icon opacity": "icon opacity",
203
+ "Icon shape": "Форма на иконата",
204
+ "Icon symbol": "Символ на иконата",
205
+ "If false, the polygon or line will act as a part of the underlying map.": "If false, the polygon or line will act as a part of the underlying map.",
172
206
  "Iframe with custom height (in px): {{{http://iframe.url.com|height}}}": "Iframe with custom height (in px): {{{http://iframe.url.com|height}}}",
173
207
  "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}}}",
208
+ "iframe": "iframe",
174
209
  "Iframe: {{{http://iframe.url.com}}}": "Iframe: {{{http://iframe.url.com}}}",
175
210
  "Image with custom width (in px): {{http://image.url.com|width}}": "Изображение с поръчкова ширина (in px): {{http://image.url.com|width}}",
176
211
  "Image: {{http://image.url.com}}": "изображение: {{http://image.url.com}}",
177
- "Import": "внасяне",
178
212
  "Import data": "Внасям данни",
179
213
  "Import in a new layer": "Import in a new layer",
214
+ "Import": "внасяне",
180
215
  "Imports all umap data, including layers and settings.": "Imports all umap data, including layers and settings.",
181
216
  "Include full screen link?": "Включи пълна връзка на екрана?",
217
+ "Inherit": "Наследи",
218
+ "inherit": "наследи",
182
219
  "Interaction options": "Интерактивни функции",
183
- "Invalid umap data": "Invalid umap data",
220
+ "Invalid latitude or longitude": "Invalid latitude or longitude",
184
221
  "Invalid umap data in {filename}": "Invalid umap data in {filename}",
222
+ "Invalid umap data": "Invalid umap data",
223
+ "Invalide property name: {name}": "Invalide property name: {name}",
224
+ "Jenks-Fisher": "Jenks-Fisher",
225
+ "K-means": "K-means",
185
226
  "Keep current visible layers": "Keep current visible layers",
227
+ "kilometers": "kilometers",
228
+ "km": "km",
229
+ "Label direction": "Посока на текста на етикета",
230
+ "Label key": "Label key",
231
+ "Labels are clickable": "Labels are clickable",
232
+ "Latest feature": "Latest feature",
186
233
  "Latitude": "Latitude",
187
- "Layer": "Layer",
188
234
  "Layer properties": "Layer properties",
235
+ "Layer": "Layer",
189
236
  "Licence": "Лиценз",
237
+ "licence": "лиценз",
190
238
  "Limit bounds": "Limit bounds",
239
+ "Link to view the map": "Link to view the map",
191
240
  "Link to…": "Link to…",
192
241
  "Link with text: [[http://example.com|text of the link]]": "Връзка с текст: [[http://example.com|текст на връзката]]",
193
242
  "Long credits": "Long credits",
194
243
  "Longitude": "Longitude",
195
244
  "Make main shape": "Make main shape",
196
245
  "Manage layers": "Manage layers",
246
+ "Manual": "Manual",
197
247
  "Map background credits": "Map background credits",
198
248
  "Map has been attached to your account": "Map has been attached to your account",
199
249
  "Map has been saved!": "Map has been saved!",
250
+ "Map has been starred": "Map has been starred",
251
+ "Map has been unstarred": "Map has been unstarred",
200
252
  "Map user content has been published under licence": "Map user content has been published under licence",
201
253
  "Map's editors": "Map's editors",
202
254
  "Map's owner": "Map's owner",
255
+ "max East": "максимум Източен",
256
+ "max North": "максимум Северен",
257
+ "max South": "максимум Южен",
258
+ "max West": "максимум Западна",
259
+ "max zoom": "максимум мащабиране",
260
+ "Measure distances": "Measure distances",
203
261
  "Merge lines": "Merge lines",
262
+ "mi": "mi",
263
+ "miles": "miles",
264
+ "min zoom": "минимално мащабиране",
204
265
  "More controls": "Още контроли",
205
266
  "Must be a valid CSS value (eg.: DarkBlue or #123456)": "Must be a valid CSS value (eg.: DarkBlue or #123456)",
267
+ "name": "име",
268
+ "nautical miles": "nautical miles",
269
+ "never": "никога",
270
+ "new window": "new window",
271
+ "next": "next",
272
+ "NM": "NM",
273
+ "No cache": "No cache",
206
274
  "No licence has been set": "No licence has been set",
275
+ "No results for these facets": "No results for these facets",
207
276
  "No results": "No results",
277
+ "no": "не",
278
+ "No.": "No.",
279
+ "None": "Нищо",
280
+ "Number of desired classes (default 5)": "Number of desired classes (default 5)",
281
+ "On the bottom": "Отдолу",
282
+ "On the left": "Вляво",
283
+ "On the right": "Вдясно",
284
+ "On the top": "Отгоре",
285
+ "Only visible layers' data": "Only visible layers' data",
286
+ "opacity": "непрозрачност",
287
+ "Opacity": "Opacity",
288
+ "Open current feature on load": "Open current feature on load",
208
289
  "Open link in…": "Open link in…",
290
+ "Open share & download panel": "Open share & download panel",
209
291
  "Open this map extent in a map editor to provide more accurate data to OpenStreetMap": "Отворете тази карта в степен редактор на карта, за да предостави по-точни данни,OpenStreetMap",
292
+ "OpenStreetMap": "OpenStreetMap",
210
293
  "Optional intensity property for heatmap": "Optional intensity property for heatmap",
211
294
  "Optional. Same as color if not set.": "По избор Същото като цвят, ако не е настроена.",
295
+ "Optional.": "Optional.",
212
296
  "Override clustering radius (default 80)": "Override clustering radius (default 80)",
213
297
  "Override heatmap radius (default 25)": "Override heatmap radius (default 25)",
298
+ "parent window": "родителски прозорец",
299
+ "Paste your data here": "Paste your data here",
300
+ "Permalink": "Permalink",
301
+ "Permanent credits background": "Permanent credits background",
302
+ "Permanent credits": "Permanent credits",
214
303
  "Please be sure the licence is compliant with your use.": "Моля, бъдете сигурни, че лицензът е съвместим с вашата употреба.",
215
304
  "Please choose a format": "Please choose a format",
216
305
  "Please enter the name of the property": "Please enter the name of the property",
217
306
  "Please enter the new name of this property": "Please enter the new name of this property",
307
+ "Please save the map first": "Please save the map first",
308
+ "Popup (large)": "Popup (large)",
309
+ "Popup content style": "Popup content style",
310
+ "Popup content template": "Popup content template",
311
+ "Popup shape": "Popup shape",
312
+ "Popup": "Popup",
313
+ "Powered by uMap": "Powered by uMap",
314
+ "previous": "previous",
315
+ "Problem in the response": "Problem in the response",
218
316
  "Properties imported:": "Внесени свойства:",
219
317
  "Provide an URL here": "Представете URL тук",
220
318
  "Proxy request": "Proxy request",
319
+ "Quantiles": "Quantiles",
320
+ "Recent": "Recent",
221
321
  "Remote data": "отдалечена база данни",
222
322
  "Remove shape from the multi": "Remove shape from the multi",
223
323
  "Rename this property on all the features": "Rename this property on all the features",
224
324
  "Replace layer content": "Replace layer content",
225
325
  "Restore this version": "Restore this version",
226
- "Save": "запазвам",
227
326
  "Save anyway": "Save anyway",
228
327
  "Save current edits": "Запиши текущите редакции",
328
+ "Save map": "Save map",
229
329
  "Save this center and zoom": "Запази този център и размер",
230
330
  "Save this location as new feature": "Save this location as new feature",
331
+ "Save": "запазвам",
332
+ "Saved center and zoom": "Saved center and zoom",
231
333
  "Search location": "Search location",
334
+ "Search": "Search",
335
+ "Secret edit link copied to clipboard!": "Secret edit link copied to clipboard!",
336
+ "Secret edit link:": "Secret edit link:",
232
337
  "See all": "See all",
233
338
  "See data layers": "See data layers",
234
339
  "See full screen": "Виж на цял екран",
340
+ "See on OpenStreetMap": "See on OpenStreetMap",
341
+ "Select data": "Select data",
342
+ "Send me the link": "Send me the link",
235
343
  "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…",
344
+ "settings": "settings",
236
345
  "Shape properties": "Shape properties",
346
+ "Share and download": "Share and download",
347
+ "Share this link to open a customized map view": "Share this link to open a customized map view",
237
348
  "Short credits": "Short credits",
349
+ "Short link": "Short link",
350
+ "Show this layer in the caption": "Show this layer in the caption",
238
351
  "Show/hide layer": "Покажи / скрий слой",
352
+ "Side panel": "Страничен панел",
239
353
  "Simple link: [[http://example.com]]": "проста връзка:[[http://example.com]]",
354
+ "Simplify": "Опрости",
355
+ "Skipping unknown geometry.type: {type}": "Skipping unknown geometry.type: {type}",
240
356
  "Slideshow": "Slideshow",
241
357
  "Sort key": "Sort key",
242
358
  "Split line": "Split line",
359
+ "Star this map": "Star this map",
243
360
  "Start a hole here": "Start a hole here",
244
361
  "Start slideshow": "Start slideshow",
245
362
  "Stop editing": "Спри редактирането",
246
363
  "Stop slideshow": "Stop slideshow",
364
+ "Street": "Street",
365
+ "stroke": "stroke",
247
366
  "Supported scheme": "Поддържана схема",
248
367
  "Supported variables that will be dynamically replaced": "Поддържаните променливи, които ще бъдат динамично заменени",
249
- "TMS format": "TMS формат",
368
+ "Switch to edit mode": "Switch to edit mode",
369
+ "Symbol": "Symbol",
370
+ "Table": "Table",
250
371
  "Text color for the cluster label": "Text color for the cluster label",
251
372
  "Text formatting": "форматиране на текст",
373
+ "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}\")",
374
+ "The name of the property to use as feature unique identifier.": "The name of the property to use as feature unique identifier.",
375
+ "The zoom and center have been modified.": "The zoom and center have been modified.",
376
+ "TMS format": "TMS формат",
252
377
  "To use if remote server doesn't allow cross domain (slower)": "За да се използва, ако отдалечен сървър не позволява кръстосан домейн (по-бавно)",
253
378
  "To zoom": "За да увеличите",
379
+ "Toggle edit mode (⇧+Click)": "Toggle edit mode (⇧+Click)",
380
+ "Toggle edit mode": "Toggle edit mode",
254
381
  "Transfer shape to edited feature": "Transfer shape to edited feature",
255
382
  "Transform to lines": "Трансформация на линии",
256
383
  "Transform to polygon": "Трансформация на полигон",
384
+ "Type a place name or coordinates": "Type a place name or coordinates",
385
+ "Type char or paste emoji": "Type char or paste emoji",
257
386
  "Type of layer": "Вид на слой",
258
387
  "Unable to detect format of file {filename}": "Unable to detect format of file {filename}",
259
388
  "Untitled layer": "Неозаглавен слой",
260
389
  "Untitled map": "Неозаглавена карта",
261
- "Update permissions": "Update permissions",
262
390
  "Update permissions and editors": "Актуализиране на разрешения и редактори",
391
+ "Update permissions": "Update permissions",
392
+ "Update who can see and edit the map": "Update who can see and edit the map",
263
393
  "Url": "URL адрес",
394
+ "URL": "URL",
264
395
  "Use current bounds": "Use current bounds",
265
396
  "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.",
266
397
  "User content credits": "User content credits",
267
398
  "User interface options": "Опции на потребителския интерфейс",
399
+ "User location": "User location",
400
+ "Verify remote URL": "Verify remote URL",
268
401
  "Versions": "Versions",
269
402
  "View Fullscreen": "View Fullscreen",
403
+ "View": "View",
404
+ "Visibility: {status}": "Visibility: {status}",
405
+ "weight": "тегло",
270
406
  "Where do we go from here?": "Къде да отидем от тук?",
271
407
  "Whether to display or not polygons paths.": "Whether to display or not polygons paths.",
272
408
  "Whether to fill polygons with color.": "Whether to fill polygons with color.",
409
+ "Who can edit \"{layer}\"": "Who can edit \"{layer}\"",
273
410
  "Who can edit": "Who can edit",
274
411
  "Who can view": "Who can view",
412
+ "width": "широчина",
275
413
  "Will be displayed in the bottom right corner of the map": "Will be displayed in the bottom right corner of the map",
414
+ "Will be permanently visible in the bottom left corner of the map": "Will be permanently visible in the bottom left corner of the map",
276
415
  "Will be visible in the caption of the map": "Will be visible in the caption of the map",
277
416
  "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.",
417
+ "yes": "да",
418
+ "Your map has been created! As you are not logged in, here is your secret link to edit the map, please keep it safe:": "Your map has been created! As you are not logged in, here is your secret link to edit the map, please keep it safe:",
278
419
  "Zoom in": "Zoom in",
279
420
  "Zoom level for automatic zooms": "Zoom level for automatic zooms",
280
421
  "Zoom out": "Намаляване на мащаба",
@@ -283,153 +424,16 @@
283
424
  "Zoom to the previous": "Zoom to the previous",
284
425
  "Zoom to this feature": "Увеличаване на тази характеристика",
285
426
  "Zoom to this place": "Zoom to this place",
286
- "attribution": "приписване",
287
- "by": "чрез",
288
- "display name": "показвано име",
289
- "height": "височина",
290
- "licence": "лиценз",
291
- "max East": "максимум Източен",
292
- "max North": "максимум Северен",
293
- "max South": "максимум Южен",
294
- "max West": "максимум Западна",
295
- "max zoom": "максимум мащабиране",
296
- "min zoom": "минимално мащабиране",
297
- "next": "next",
298
- "previous": "previous",
299
- "width": "широчина",
300
- "{count} errors during import: {message}": "{count} errors during import: {message}",
301
- "Measure distances": "Measure distances",
302
- "NM": "NM",
303
- "kilometers": "kilometers",
304
- "km": "km",
305
- "mi": "mi",
306
- "miles": "miles",
307
- "nautical miles": "nautical miles",
308
- "1 day": "1 day",
309
- "1 hour": "1 hour",
310
- "5 min": "5 min",
311
- "Cache proxied request": "Cache proxied request",
312
- "No cache": "No cache",
313
- "Popup": "Popup",
314
- "Popup (large)": "Popup (large)",
315
- "Popup content style": "Popup content style",
316
- "Popup shape": "Popup shape",
317
- "Skipping unknown geometry.type: {type}": "Skipping unknown geometry.type: {type}",
318
- "Optional.": "Optional.",
319
- "Paste your data here": "Paste your data here",
320
- "Please save the map first": "Please save the map first",
321
- "Feature identifier key": "Feature identifier key",
322
- "Open current feature on load": "Open current feature on load",
323
- "Permalink": "Permalink",
324
- "The name of the property to use as feature unique identifier.": "The name of the property to use as feature unique identifier.",
325
- "Do you want to display caption menus?": "Do you want to display caption menus?",
326
- "Example: key1,key2,key3": "Example: key1,key2,key3",
327
- "Invalid latitude or longitude": "Invalid latitude or longitude",
328
- "Invalide property name: {name}": "Invalide property name: {name}",
329
- "Permanent credits": "Permanent credits",
330
- "Permanent credits background": "Permanent credits background",
331
- "Select data": "Select data",
332
- "Will be permanently visible in the bottom left corner of the map": "Will be permanently visible in the bottom left corner of the map",
333
427
  "{area} acres": "{area} acres",
334
428
  "{area} ha": "{area} ha",
335
429
  "{area} m²": "{area} m²",
336
430
  "{area} mi²": "{area} mi²",
337
431
  "{area} yd²": "{area} yd²",
338
- "{distance} NM": "{distance} NM",
432
+ "{count} errors during import: {message}": "{count} errors during import: {message}",
433
+ "{delay} seconds": "{забавяне} сек.",
339
434
  "{distance} km": "{distance} km",
340
435
  "{distance} m": "{distance} m",
341
436
  "{distance} miles": "{distance} miles",
342
- "{distance} yd": "{distance} yd",
343
- " (area: {measure})": "(area: {measure})",
344
- " (length: {measure})": "(length: {measure})",
345
- "Animated transitions": "Animated transitions",
346
- "Background overlay url": "Background overlay url",
347
- "Custom overlay": "Custom overlay",
348
- "Display the star map button": "Display the star map button",
349
- "Error in the overlay URL": "Error in the overlay URL",
350
- "Map has been starred": "Map has been starred",
351
- "Map has been unstarred": "Map has been unstarred",
352
- "Opacity": "Opacity",
353
- "Star this map": "Star this map",
354
- "Symbol can be either a unicode character or an URL. You can use feature properties as variables: ex.: with \"http://myserver.org/images/{name}.png\", the {name} variable will be replaced by the \"name\" value of each marker.": "Symbol can be either a unicode character or an URL. You can use feature properties as variables: ex.: with \"http://myserver.org/images/{name}.png\", the {name} variable will be replaced by the \"name\" value of each marker.",
355
- "Direct link": "Direct link",
356
- "The zoom and center have been modified.": "The zoom and center have been modified.",
357
- "Congratulations, your map has been created!": "Congratulations, your map has been created!",
358
- "Copy link": "Copy link",
359
- "Email": "Email",
360
- "Secret edit link copied to clipboard!": "Secret edit link copied to clipboard!",
361
- "Send me the link": "Send me the link",
362
- "Your map has been created! As you are not logged in, here is your secret link to edit the map, please keep it safe:": "Your map has been created! As you are not logged in, here is your secret link to edit the map, please keep it safe:",
363
- "Comma separated list of properties to use for sorting features. To reverse the sort, put a minus sign (-) before. Eg. mykey,-otherkey.": "Comma separated list of properties to use for sorting features. To reverse the sort, put a minus sign (-) before. Eg. mykey,-otherkey.",
364
- "Toggle edit mode (⇧+Click)": "Toggle edit mode (⇧+Click)",
365
- "icon opacity": "icon opacity",
366
- "*single star for italic*": "*single star for italic*",
367
- "--- for a horizontal rule": "--- for a horizontal rule",
368
- "The name of the property to use as feature label (eg.: \"nom\"). You can also use properties inside brackets to use more than one or mix with static content (eg.: \"{name} in {place}\")": "The name of the property to use as feature label (eg.: \"nom\"). You can also use properties inside brackets to use more than one or mix with static content (eg.: \"{name} in {place}\")",
369
- "Comma separated list of properties to use for facet search (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key)": "Comma separated list of properties to use for facet search (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key)",
370
- "Default view": "Default view",
371
- "Facet keys": "Facet keys",
372
- "Facet search": "Facet search",
373
- "Feature properties": "Feature properties",
374
- "Latest feature": "Latest feature",
375
- "No results for these facets": "No results for these facets",
376
- "Saved center and zoom": "Saved center and zoom",
377
- "User location": "User location",
378
- "Visibility: {status}": "Visibility: {status}",
379
- "Fit all data": "Fit all data",
380
- "Verify remote URL": "Verify remote URL",
381
- "Add": "Add",
382
- "Change": "Change",
383
- "Powered by uMap": "Powered by uMap",
384
- "Search": "Search",
385
- "Datalayers": "Datalayers",
386
- "Secret edit link:": "Secret edit link:",
387
- "Who can edit \"{layer}\"": "Who can edit \"{layer}\"",
388
- "Choropleth": "Choropleth",
389
- "Choropleth breakpoints": "Choropleth breakpoints",
390
- "Choropleth classes": "Choropleth classes",
391
- "Choropleth color palette": "Choropleth color palette",
392
- "Choropleth mode": "Choropleth mode",
393
- "Choropleth property value": "Choropleth property value",
394
- "Comma separated list of numbers, including min and max values.": "Comma separated list of numbers, including min and max values.",
395
- "Equidistant": "Equidistant",
396
- "Jenks-Fisher": "Jenks-Fisher",
397
- "K-means": "K-means",
398
- "Manual": "Manual",
399
- "Number of desired classes (default 5)": "Number of desired classes (default 5)",
400
- "Quantiles": "Quantiles",
401
- "Show this layer in the caption": "Show this layer in the caption",
402
- "Back to preview": "Back to preview",
403
- "Drawing": "Drawing",
404
- "Edit the title of the map": "Edit the title of the map",
405
- "Go to the homepage": "Go to the homepage",
406
- "Switch to edit mode": "Switch to edit mode",
407
- "Update who can see and edit the map": "Update who can see and edit the map",
408
- "View": "View",
409
- "Add image URL": "Add image URL",
410
- "Emoji & Character": "Emoji & Character",
411
- "Generic": "Generic",
412
- "Symbol": "Symbol",
413
- "Type char or paste emoji": "Type char or paste emoji",
414
- "URL": "URL",
415
- "If false, the polygon or line will act as a part of the underlying map.": "If false, the polygon or line will act as a part of the underlying map.",
416
- "Save map": "Save map",
417
- "Toggle edit mode": "Toggle edit mode",
418
- "All data and settings of the map": "All data and settings of the map",
419
- "Embed and link options": "Embed and link options",
420
- "Go to \"{coords}\"": "Go to \"{coords}\"",
421
- "Link to view the map": "Link to view the map",
422
- "No.": "No.",
423
- "Only visible layers' data": "Only visible layers' data",
424
- "Open share & download panel": "Open share & download panel",
425
- "OpenStreetMap": "OpenStreetMap",
426
- "See on OpenStreetMap": "See on OpenStreetMap",
427
- "Share and download": "Share and download",
428
- "Share this link to open a customized map view": "Share this link to open a customized map view",
429
- "Short link": "Short link",
430
- "Street": "Street",
431
- "Type a place name or coordinates": "Type a place name or coordinates",
432
- "copy": "copy",
433
- "full backup": "full backup",
434
- "settings": "settings"
437
+ "{distance} NM": "{distance} NM",
438
+ "{distance} yd": "{distance} yd"
435
439
  }