umap-project 2.3.1__py3-none-any.whl → 2.4.0b0__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 (210) hide show
  1. umap/.DS_Store +0 -0
  2. umap/__init__.py +1 -1
  3. umap/locale/en/LC_MESSAGES/django.po +81 -31
  4. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  5. umap/locale/fr/LC_MESSAGES/django.po +109 -59
  6. umap/management/commands/run_websocket_server.py +23 -0
  7. umap/models.py +6 -1
  8. umap/settings/base.py +11 -3
  9. umap/static/.DS_Store +0 -0
  10. umap/static/umap/.DS_Store +0 -0
  11. umap/static/umap/base.css +53 -162
  12. umap/static/umap/content.css +3 -2
  13. umap/static/umap/css/dialog.css +18 -0
  14. umap/static/umap/css/icon.css +8 -0
  15. umap/static/umap/css/importers.css +44 -0
  16. umap/static/umap/css/panel.css +19 -57
  17. umap/static/umap/css/tooltip.css +59 -0
  18. umap/static/umap/css/window.css +35 -0
  19. umap/static/umap/favicons/.DS_Store +0 -0
  20. umap/static/umap/fonts/.DS_Store +0 -0
  21. umap/static/umap/img/.DS_Store +0 -0
  22. umap/static/umap/img/alert-icon-error.svg +8 -0
  23. umap/static/umap/img/alert-icon-info.svg +4 -0
  24. umap/static/umap/img/alert-icon-success.svg +3 -0
  25. umap/static/umap/img/icon-external-link.svg +3 -0
  26. umap/static/umap/img/importers/communesfr.svg +5 -0
  27. umap/static/umap/img/importers/datasets.svg +13 -0
  28. umap/static/umap/img/importers/geodatamine.svg +10 -0
  29. umap/static/umap/img/importers/overpass.svg +7 -0
  30. umap/static/umap/img/importers/random.svg +18 -0
  31. umap/static/umap/img/importers/random1.svg +4 -0
  32. umap/static/umap/img/importers/random2.svg +4 -0
  33. umap/static/umap/img/source/.DS_Store +0 -0
  34. umap/static/umap/js/components/alerts/alert.css +160 -0
  35. umap/static/umap/js/components/alerts/alert.js +169 -0
  36. umap/static/umap/js/components/base.js +54 -0
  37. umap/static/umap/js/modules/autocomplete.js +347 -0
  38. umap/static/umap/js/modules/browser.js +1 -1
  39. umap/static/umap/js/modules/caption.js +4 -3
  40. umap/static/umap/js/modules/global.js +36 -12
  41. umap/static/umap/js/modules/help.js +255 -0
  42. umap/static/umap/js/modules/importer.js +280 -0
  43. umap/static/umap/js/modules/importers/communesfr.js +44 -0
  44. umap/static/umap/js/modules/importers/datasets.js +41 -0
  45. umap/static/umap/js/modules/importers/geodatamine.js +95 -0
  46. umap/static/umap/js/modules/importers/overpass.js +84 -0
  47. umap/static/umap/js/modules/request.js +12 -14
  48. umap/static/umap/js/modules/rules.js +241 -0
  49. umap/static/umap/js/modules/schema.js +63 -14
  50. umap/static/umap/js/modules/sync/engine.js +93 -0
  51. umap/static/umap/js/modules/sync/updaters.js +109 -0
  52. umap/static/umap/js/modules/sync/websocket.js +25 -0
  53. umap/static/umap/js/modules/ui/dialog.js +52 -0
  54. umap/static/umap/js/modules/{panel.js → ui/panel.js} +25 -14
  55. umap/static/umap/js/modules/ui/tooltip.js +116 -0
  56. umap/static/umap/js/modules/utils.js +25 -18
  57. umap/static/umap/js/umap.controls.js +13 -14
  58. umap/static/umap/js/umap.core.js +1 -324
  59. umap/static/umap/js/umap.features.js +67 -27
  60. umap/static/umap/js/umap.forms.js +9 -13
  61. umap/static/umap/js/umap.js +220 -180
  62. umap/static/umap/js/umap.layer.js +142 -74
  63. umap/static/umap/js/umap.permissions.js +5 -9
  64. umap/static/umap/js/umap.tableeditor.js +8 -8
  65. umap/static/umap/locale/am_ET.js +51 -16
  66. umap/static/umap/locale/am_ET.json +51 -16
  67. umap/static/umap/locale/ar.js +51 -16
  68. umap/static/umap/locale/ar.json +51 -16
  69. umap/static/umap/locale/ast.js +51 -16
  70. umap/static/umap/locale/ast.json +51 -16
  71. umap/static/umap/locale/bg.js +51 -16
  72. umap/static/umap/locale/bg.json +51 -16
  73. umap/static/umap/locale/br.js +55 -20
  74. umap/static/umap/locale/br.json +55 -20
  75. umap/static/umap/locale/ca.js +51 -16
  76. umap/static/umap/locale/ca.json +51 -16
  77. umap/static/umap/locale/cs_CZ.js +93 -58
  78. umap/static/umap/locale/cs_CZ.json +93 -58
  79. umap/static/umap/locale/da.js +51 -16
  80. umap/static/umap/locale/da.json +51 -16
  81. umap/static/umap/locale/de.js +56 -21
  82. umap/static/umap/locale/de.json +56 -21
  83. umap/static/umap/locale/el.js +51 -16
  84. umap/static/umap/locale/el.json +51 -16
  85. umap/static/umap/locale/en.js +51 -16
  86. umap/static/umap/locale/en.json +51 -16
  87. umap/static/umap/locale/en_US.json +51 -16
  88. umap/static/umap/locale/es.js +51 -16
  89. umap/static/umap/locale/es.json +51 -16
  90. umap/static/umap/locale/et.js +51 -16
  91. umap/static/umap/locale/et.json +51 -16
  92. umap/static/umap/locale/eu.js +51 -16
  93. umap/static/umap/locale/eu.json +51 -16
  94. umap/static/umap/locale/fa_IR.js +51 -16
  95. umap/static/umap/locale/fa_IR.json +51 -16
  96. umap/static/umap/locale/fi.js +51 -16
  97. umap/static/umap/locale/fi.json +51 -16
  98. umap/static/umap/locale/fr.js +52 -17
  99. umap/static/umap/locale/fr.json +52 -17
  100. umap/static/umap/locale/gl.js +51 -16
  101. umap/static/umap/locale/gl.json +51 -16
  102. umap/static/umap/locale/he.js +51 -16
  103. umap/static/umap/locale/he.json +51 -16
  104. umap/static/umap/locale/hr.js +51 -16
  105. umap/static/umap/locale/hr.json +51 -16
  106. umap/static/umap/locale/hu.js +51 -16
  107. umap/static/umap/locale/hu.json +51 -16
  108. umap/static/umap/locale/id.js +51 -16
  109. umap/static/umap/locale/id.json +51 -16
  110. umap/static/umap/locale/is.js +51 -16
  111. umap/static/umap/locale/is.json +51 -16
  112. umap/static/umap/locale/it.js +51 -16
  113. umap/static/umap/locale/it.json +51 -16
  114. umap/static/umap/locale/ja.js +51 -16
  115. umap/static/umap/locale/ja.json +51 -16
  116. umap/static/umap/locale/ko.js +51 -16
  117. umap/static/umap/locale/ko.json +51 -16
  118. umap/static/umap/locale/lt.js +51 -16
  119. umap/static/umap/locale/lt.json +51 -16
  120. umap/static/umap/locale/ms.js +51 -16
  121. umap/static/umap/locale/ms.json +51 -16
  122. umap/static/umap/locale/nl.js +51 -16
  123. umap/static/umap/locale/nl.json +51 -16
  124. umap/static/umap/locale/no.js +51 -16
  125. umap/static/umap/locale/no.json +51 -16
  126. umap/static/umap/locale/pl.js +93 -58
  127. umap/static/umap/locale/pl.json +93 -58
  128. umap/static/umap/locale/pl_PL.json +51 -16
  129. umap/static/umap/locale/pt.js +215 -180
  130. umap/static/umap/locale/pt.json +215 -180
  131. umap/static/umap/locale/pt_BR.js +51 -16
  132. umap/static/umap/locale/pt_BR.json +51 -16
  133. umap/static/umap/locale/pt_PT.js +51 -16
  134. umap/static/umap/locale/pt_PT.json +51 -16
  135. umap/static/umap/locale/ro.js +51 -16
  136. umap/static/umap/locale/ro.json +51 -16
  137. umap/static/umap/locale/ru.js +51 -16
  138. umap/static/umap/locale/ru.json +51 -16
  139. umap/static/umap/locale/si.js +51 -16
  140. umap/static/umap/locale/si.json +51 -16
  141. umap/static/umap/locale/sk_SK.js +51 -16
  142. umap/static/umap/locale/sk_SK.json +51 -16
  143. umap/static/umap/locale/sl.js +51 -16
  144. umap/static/umap/locale/sl.json +51 -16
  145. umap/static/umap/locale/sr.js +51 -16
  146. umap/static/umap/locale/sr.json +51 -16
  147. umap/static/umap/locale/sv.js +51 -16
  148. umap/static/umap/locale/sv.json +51 -16
  149. umap/static/umap/locale/th_TH.js +51 -16
  150. umap/static/umap/locale/th_TH.json +51 -16
  151. umap/static/umap/locale/tr.js +51 -16
  152. umap/static/umap/locale/tr.json +51 -16
  153. umap/static/umap/locale/uk_UA.js +51 -16
  154. umap/static/umap/locale/uk_UA.json +51 -16
  155. umap/static/umap/locale/vi.js +51 -16
  156. umap/static/umap/locale/vi.json +51 -16
  157. umap/static/umap/locale/vi_VN.json +51 -16
  158. umap/static/umap/locale/zh.js +51 -16
  159. umap/static/umap/locale/zh.json +51 -16
  160. umap/static/umap/locale/zh_CN.json +51 -16
  161. umap/static/umap/locale/zh_TW.Big5.json +51 -16
  162. umap/static/umap/locale/zh_TW.js +51 -16
  163. umap/static/umap/locale/zh_TW.json +51 -16
  164. umap/static/umap/map.css +27 -41
  165. umap/static/umap/unittests/sync.js +105 -0
  166. umap/static/umap/unittests/utils.js +76 -34
  167. umap/static/umap/vars.css +18 -1
  168. umap/static/umap/vendors/dompurify/purify.es.js +5 -59
  169. umap/static/umap/vendors/dompurify/purify.es.mjs.map +1 -1
  170. umap/templates/umap/components/alerts/alert.html +89 -0
  171. umap/templates/umap/content.html +4 -3
  172. umap/templates/umap/css.html +4 -0
  173. umap/templates/umap/home.html +3 -0
  174. umap/templates/umap/js.html +0 -3
  175. umap/templates/umap/map_init.html +2 -8
  176. umap/templates/umap/messages.html +9 -11
  177. umap/templates/umap/search.html +3 -0
  178. umap/tests/.DS_Store +0 -0
  179. umap/tests/base.py +2 -0
  180. umap/tests/integration/.DS_Store +0 -0
  181. umap/tests/integration/conftest.py +30 -0
  182. umap/tests/integration/test_anonymous_owned_map.py +8 -13
  183. umap/tests/integration/test_browser.py +1 -1
  184. umap/tests/integration/test_conditional_rules.py +201 -0
  185. umap/tests/integration/test_dashboard.py +1 -1
  186. umap/tests/integration/test_datalayer.py +2 -3
  187. umap/tests/integration/test_edit_datalayer.py +4 -4
  188. umap/tests/integration/test_edit_map.py +1 -1
  189. umap/tests/integration/test_facets_browser.py +3 -3
  190. umap/tests/integration/test_import.py +138 -49
  191. umap/tests/integration/test_map.py +2 -2
  192. umap/tests/integration/{test_collaborative_editing.py → test_optimistic_merge.py} +7 -7
  193. umap/tests/integration/test_owned_map.py +1 -1
  194. umap/tests/integration/test_picto.py +2 -2
  195. umap/tests/integration/test_statics.py +1 -1
  196. umap/tests/integration/test_websocket_sync.py +283 -0
  197. umap/tests/settings.py +5 -0
  198. umap/tests/test_datalayer_views.py +0 -1
  199. umap/tests/test_views.py +53 -0
  200. umap/urls.py +5 -0
  201. umap/views.py +40 -11
  202. umap/websocket_server.py +92 -0
  203. {umap_project-2.3.1.dist-info → umap_project-2.4.0b0.dist-info}/METADATA +11 -9
  204. {umap_project-2.3.1.dist-info → umap_project-2.4.0b0.dist-info}/RECORD +207 -164
  205. {umap_project-2.3.1.dist-info → umap_project-2.4.0b0.dist-info}/WHEEL +1 -1
  206. umap/static/umap/js/umap.autocomplete.js +0 -341
  207. umap/static/umap/js/umap.importer.js +0 -187
  208. umap/static/umap/js/umap.ui.js +0 -190
  209. {umap_project-2.3.1.dist-info → umap_project-2.4.0b0.dist-info}/entry_points.txt +0 -0
  210. {umap_project-2.3.1.dist-info → umap_project-2.4.0b0.dist-info}/licenses/LICENSE +0 -0
@@ -12,7 +12,7 @@ const locale = {
12
12
  "5 min": "5 minut",
13
13
  "A comma separated list of numbers that defines the stroke dash pattern. Ex.: \"5, 10, 15\".": "Čárkami oddělený seznam čísel, který popisuje vzorek přerušované čáry. Např. «5, 10, 15».",
14
14
  "About": "O mapě",
15
- "Action not allowed :(": "Action not allowed :(",
15
+ "Action not allowed :(": "Akce nepovolena :(",
16
16
  "Activate slideshow mode": "Aktivovat prezentační mód",
17
17
  "Add a layer": "Přidat vrstvu",
18
18
  "Add a line to the current multi": "Přidat čáru k současnému multi",
@@ -22,7 +22,7 @@ const locale = {
22
22
  "Add": "Přidat",
23
23
  "Advanced actions": "Pokročilé akce",
24
24
  "Advanced properties": "Pokročilé vlastnosti",
25
- "All data and settings of the map": "All data and settings of the map",
25
+ "All data and settings of the map": "Všechna data a nastavení mapy",
26
26
  "All properties are imported.": "Všechny vlastnosti jsou importovány.",
27
27
  "Allow interactions": "Povolit interakce",
28
28
  "Allow scroll wheel zoom?": "Povolit přibližování kolečkem myši?",
@@ -43,21 +43,17 @@ const locale = {
43
43
  "Back to preview": "Zpět na náhled",
44
44
  "Background overlay url": "Url překrytí pozadí",
45
45
  "Ball": "špendlík",
46
- "Bring feature to center": "Bring feature to center",
46
+ "Bring feature to center": "Centruj mapu na objektu",
47
47
  "Browse data": "Prohlížet data",
48
48
  "by": "od",
49
49
  "Cache proxied request": "Požadavek na zástupnou mezipaměť",
50
50
  "Cancel edits": "Stornovat úpravy",
51
- "Cancel": "Storno",
52
51
  "Caption": "Popisek",
53
52
  "Center map on your location": "Přemístit se na mapě na vaši polohu",
54
53
  "Change map background": "Změnit pozadí mapy",
55
54
  "Change tilelayers": "Změnit pozadí mapy",
56
55
  "Change": "Změnit",
57
- "Choose a preset": "Zvolte přednastavení",
58
56
  "Choose the data format": "Vyberte formát dat",
59
- "Choose the format of the data to import": "Zvolte v jakém formátu jsou importovaná data",
60
- "Choose the layer to import in": "Zvolte vrstvu, do které se bude importovat",
61
57
  "Choropleth breakpoints": "Choropleth breakpoints",
62
58
  "Choropleth classes": "Choropleth třídy",
63
59
  "Choropleth color palette": "Choropleth paleta barev",
@@ -87,10 +83,9 @@ const locale = {
87
83
  "Congratulations, your map has been created!": "Gratulujeme, vaše mapa byla vytvořena!",
88
84
  "Continue line": "Pokračovat v čáře",
89
85
  "Coordinates": "Souřadnice",
90
- "Copy link": "Kopírovat odkaz",
91
- "copy": "copy",
86
+ "copy": "kopírovat",
92
87
  "Credits": "Autorství",
93
- "Current map view": "Current map view",
88
+ "Current map view": "Aktuální zobrazení mapy",
94
89
  "Current view instead of default map view?": "Současný pohled namísto výchozího?",
95
90
  "Custom background": "Vlastní pozadí",
96
91
  "Custom overlay": "Vlastní překryv",
@@ -152,8 +147,7 @@ const locale = {
152
147
  "Edit the title of the map": "Upravit název mapy",
153
148
  "Edit this feature": "Upravit tento objekt",
154
149
  "Edit": "Upravit",
155
- "Email": "E-mail",
156
- "Embed and link options": "Embed and link options",
150
+ "Embed and link options": "Možnosti vložení a propojení",
157
151
  "Embed the map": "Vložit mapu do jiného webu",
158
152
  "Emoji & Character": "Emoji & Character",
159
153
  "Empty": "Vyprázdnit",
@@ -172,11 +166,11 @@ const locale = {
172
166
  "Fit all data": "Přizpůsobení všech dat",
173
167
  "Format": "Formát",
174
168
  "From zoom": "Maximální oddálení",
175
- "full backup": "full backup",
169
+ "full backup": "plná záloha",
176
170
  "Generic": "Generický",
177
171
  "GeoRSS (only link)": "GeoRSS (jen odkaz)",
178
172
  "GeoRSS (title + image)": "GeoRSS (titulek + obrázek)",
179
- "Go to \"{coords}\"": "Go to \"{coords}\"",
173
+ "Go to \"{coords}\"": "Přejít na {coords}",
180
174
  "Go to the homepage": "Přejít na domovskou stránku",
181
175
  "Go to «{feature}»": "Jdi na \"{feature}\"",
182
176
  "Heatmap intensity property": "Vlastnost pro intenzitu teplotní mapy",
@@ -200,7 +194,6 @@ const locale = {
200
194
  "Image: {{http://image.url.com}}": "Obrázek: {{http://priklad.cz/obrazek.jpg}}",
201
195
  "Import data": "Import dat",
202
196
  "Import in a new layer": "Importovat do nové vrstvy",
203
- "Import": "Importovat",
204
197
  "Imports all umap data, including layers and settings.": "Importuje všechy data umapy, včetně vrstev a nastavení",
205
198
  "Include full screen link?": "Zahrnout odkaz na celou obrazovku?",
206
199
  "Inherit": "výchozí",
@@ -225,7 +218,7 @@ const locale = {
225
218
  "Licence": "Licence",
226
219
  "licence": "licence",
227
220
  "Limit bounds": "Hranice zobrazení",
228
- "Link to view the map": "Link to view the map",
221
+ "Link to view the map": "Odkaz pro zobrazení mapy",
229
222
  "Link to…": "Odkaz na…",
230
223
  "Link with text: [[http://example.com|text of the link]]": "Odkaz: [[http://priklad.cz/stranka|text odkazu]]",
231
224
  "Long credits": "Dlouhý text autorství",
@@ -263,19 +256,19 @@ const locale = {
263
256
  "No licence has been set": "Nebyla nastavena licence",
264
257
  "No results": "Žádné výsledky",
265
258
  "no": "ne",
266
- "No.": "No.",
259
+ "No.": "Ne.",
267
260
  "None": "Žádný",
268
261
  "Number of desired classes (default 5)": "Počet požadovaných tříd (výchozí 5)",
269
262
  "On the bottom": "Zespod",
270
263
  "On the left": "Nalevo",
271
264
  "On the right": "Napravo",
272
265
  "On the top": "Shora",
273
- "Only visible layers' data": "Only visible layers' data",
266
+ "Only visible layers' data": "Pouze data viditelných vrstev",
274
267
  "opacity": "průhlednost",
275
268
  "Opacity": "Průhlednost",
276
269
  "Open current feature on load": "Otevřít současnou funkci při zatížení",
277
270
  "Open link in…": "Otevřít adresu v…",
278
- "Open share & download panel": "Open share & download panel",
271
+ "Open share & download panel": "Otevřít panel na sdílení a stahování",
279
272
  "Open this map extent in a map editor to provide more accurate data to OpenStreetMap": "Otevři tuto oblast v editoru OpenStreetMap. Toto vám umožní editovat přímo základní mapová data a přispět tak v tvorbě svobodné mapy pro všechny.",
280
273
  "OpenStreetMap": "OpenStreetMap",
281
274
  "Optional intensity property for heatmap": "Volitelná vlastnost pro výpočet intenzity v teplotní mapě",
@@ -300,18 +293,17 @@ const locale = {
300
293
  "Popup": "Popup",
301
294
  "Powered by uMap": "Běží na uMap",
302
295
  "previous": "předchozí",
303
- "Problem in the response": "Problem in the response",
296
+ "Problem in the response": "Problém při odpovědi",
304
297
  "Properties imported:": "Importované vlastnosti:",
305
298
  "Provide an URL here": "Sem vložte odkaz",
306
299
  "Proxy request": "Požadavky přes proxy",
307
300
  "Quantiles": "Kvantily",
308
- "Recent": "Recent",
301
+ "Recent": "Nedávné",
309
302
  "Remote data": "Vzdálená data",
310
303
  "Remove shape from the multi": "Odebrat tvar z multi",
311
304
  "Rename this property on all the features": "Přejmenovat tuto vlastnost na všech objektech",
312
305
  "Replace layer content": "Nahradit obsah vrstvy",
313
306
  "Restore this version": "Obnovit tuto verzi",
314
- "Save anyway": "I tak uložit",
315
307
  "Save current edits": "Ulož nedávné změny",
316
308
  "Save map": "Uložit mapu",
317
309
  "Save this center and zoom": "Ulož tuto pozici mapy a její přiblížení",
@@ -320,19 +312,16 @@ const locale = {
320
312
  "Saved center and zoom": "Uložený střed a zoom",
321
313
  "Search location": "Vyhledat místo na mapě",
322
314
  "Search": "Hledat",
323
- "Secret edit link copied to clipboard!": "Tajný odkaz na úpravy do schránky!",
324
315
  "Secret edit link:": "Tajný odkaz na úpravy:",
325
- "See layers": "See layers",
326
316
  "See full screen": "Na celou obrazovku",
327
- "See on OpenStreetMap": "See on OpenStreetMap",
328
- "Send me the link": "Pošlete mi odkaz",
317
+ "See on OpenStreetMap": "Zobrazit na OpenStreetMap",
329
318
  "Set it to false to hide this layer from the slideshow, the data browser, the popup navigation…": "Nastavte na false pro ukrytí této vrstvy z prezentace, prohlížeče dat, vyskakovací navigace...",
330
- "settings": "settings",
319
+ "settings": "nastavení",
331
320
  "Shape properties": "Vlastností tvaru",
332
- "Share and download": "Share and download",
333
- "Share this link to open a customized map view": "Share this link to open a customized map view",
321
+ "Share and download": "Sdílet a stáhnout",
322
+ "Share this link to open a customized map view": "Sdílet tento odkaz pro otevření přizpůsobeného zobrazení mapy",
334
323
  "Short credits": "Krátký text autorství",
335
- "Short link": "Short link",
324
+ "Short link": "Krátký odkaz",
336
325
  "Show this layer in the caption": "Zobrazit tuto vrstvu v nadpisu",
337
326
  "Show/hide layer": "Skrytí/zobrazení vrstvy",
338
327
  "Side panel": "Boční panel",
@@ -347,7 +336,7 @@ const locale = {
347
336
  "Start slideshow": "Spustit prezentaci",
348
337
  "Stop editing": "Přerušit úpravy",
349
338
  "Stop slideshow": "Zastavit prezentaci",
350
- "Street": "Street",
339
+ "Street": "Ulice",
351
340
  "stroke": "linka",
352
341
  "Supported scheme": "Podporované schéma",
353
342
  "Supported variables that will be dynamically replaced": "Podporované proměnné, které budou automaticky nahrazeny",
@@ -355,7 +344,7 @@ const locale = {
355
344
  "Table": "Tabulka",
356
345
  "Text color for the cluster label": "Barva textu popisku shluku",
357
346
  "Text formatting": "Formátování textu",
358
- "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}\")",
347
+ "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}\")": "Název vlastnosti, která se použít jako popis funkce (např.: \"nom\"). Můžete také použít vlastnosti uvnitř hranatých závorek a použít více než jednu nebo je kombinovat se statickým obsahem (např.: \"{jméno} v {místo}\")",
359
348
  "The name of the property to use as feature unique identifier.": "Název vlastnosti pro použití v popisku jedinečného identifikátoru objektu.",
360
349
  "The zoom and center have been modified.": "Přiblížení a střed mapy byly modifikovány",
361
350
  "TMS format": "formát TMS",
@@ -366,7 +355,7 @@ const locale = {
366
355
  "Transfer shape to edited feature": "Přenést tvar do editovaného objektu",
367
356
  "Transform to lines": "Převést na čáry",
368
357
  "Transform to polygon": "Převést na polygon",
369
- "Type a place name or coordinates": "Type a place name or coordinates",
358
+ "Type a place name or coordinates": "Zadejte název místa nebo souřadnice",
370
359
  "Type char or paste emoji": "Zadejte znak nebo vložte emoji",
371
360
  "Type of layer": "Druh vrstvy",
372
361
  "Unable to detect format of file {filename}": "Nepodařilo se detekovat formát souboru {filename}",
@@ -398,9 +387,7 @@ const locale = {
398
387
  "Will be displayed in the bottom right corner of the map": "Bude zobrazeno s mapou napravo dole",
399
388
  "Will be permanently visible in the bottom left corner of the map": "Will be permanently visible in the bottom left corner of the map",
400
389
  "Will be visible in the caption of the map": "Bude zobrazeno v popisu mapy",
401
- "Woops! Someone else seems to have edited the data. You can save anyway, but this will erase the changes made by others.": "Ojoj! Někdo jiný mezitím také upravil data. Můžete je uložit bez ohledu na to, ale smažete tak jeho změny.",
402
390
  "yes": "ano",
403
- "Your map has been created! As you are not logged in, here is your secret link to edit the map, please keep it safe:": "Vaše mapa byla vytvořena! Protože nejste přihlášeni, zde je váš tajný odkaz na úpravu mapy, uschovejte jej prosím:",
404
391
  "Zoom in": "Přiblížit",
405
392
  "Zoom level for automatic zooms": "Úroveň přiblížení pro automatické přiblížení",
406
393
  "Zoom out": "Oddálit",
@@ -421,32 +408,80 @@ const locale = {
421
408
  "{distance} miles": "{distance} míle",
422
409
  "{distance} NM": "{distance} NM",
423
410
  "{distance} yd": "{distance} yd",
424
- "Edit map name and caption": "Edit map name and caption",
425
- "Map advanced properties": "Map advanced properties",
426
- "Edit map details": "Edit map details",
427
- "Back to browser": "Back to browser",
428
- "Toggle size": "Toggle size",
429
- "Display the caption control": "Display the caption control",
411
+ "Edit map name and caption": "Upravit název mapy a popisek",
412
+ "Map advanced properties": "Pokročilé vlastnosti mapy",
413
+ "Edit map details": "Podrobnosti mapy",
414
+ "Back to browser": "Zpět na prohlížeč",
415
+ "Toggle size": "Přepnout velikost",
416
+ "Display the caption control": "Zobrazit ovládání popisků",
430
417
  "<empty value>": "<empty value>",
431
418
  "Min": "Min",
432
419
  "Max": "Max",
433
- "From": "From",
434
- "Until": "Until",
435
- "Example: key1,key2|Label 2,key3|Label 3|checkbox": "Example: key1,key2|Label 2,key3|Label 3|checkbox",
436
- "Edit in OpenStreetMap": "Edit in OpenStreetMap",
437
- "Cannot determine latitude and longitude columns.": "Cannot determine latitude and longitude columns.",
438
- "Back to layers": "Back to layers",
439
- "Filters": "Filters",
440
- "Comma separated list of properties to use when filtering features by text input": "Comma separated list of properties to use when filtering features by text input",
441
- "Comma separated list of properties to use for filters (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key). To control input field type, add it after another | (eg.: mykey|My Key|checkbox,otherkey|Other Key|datetime). Allowed values for the input field type are checkbox (default), radio, number, date and datetime.": "Comma separated list of properties to use for filters (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key). To control input field type, add it after another | (eg.: mykey|My Key|checkbox,otherkey|Other Key|datetime). Allowed values for the input field type are checkbox (default), radio, number, date and datetime.",
442
- "Search keys": "Search keys",
443
- "Filters keys": "Filters keys",
444
- "Filter data": "Filter data",
445
- "Search map features…": "Search map features…",
446
- "Reset all": "Reset all",
447
- "Browser in data mode": "Browser in data mode",
448
- "Browser in layers mode": "Browser in layers mode",
449
- "Browser in filters mode": "Browser in filters mode"
420
+ "From": "Z",
421
+ "Until": "Dokud",
422
+ "Example: key1,key2|Label 2,key3|Label 3|checkbox": "Příklad: klíč1,klíč2|Popisek 2, klíč3|Popisek 3|checkbox",
423
+ "Edit in OpenStreetMap": "Upravit v OpenStreetMap",
424
+ "Cannot determine latitude and longitude columns.": "Nelze určit sloupce zeměpisné šířky a délky.",
425
+ "Back to layers": "Zpět na vrstvy",
426
+ "Filters": "Filtry",
427
+ "Comma separated list of properties to use when filtering features by text input": "Čárkami oddělený seznam vlastností pro filtrování objektů podle zadávání textu",
428
+ "Comma separated list of properties to use for filters (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key). To control input field type, add it after another | (eg.: mykey|My Key|checkbox,otherkey|Other Key|datetime). Allowed values for the input field type are checkbox (default), radio, number, date and datetime.": "Čárkami oddělený seznam vlastností, které se mají použít pro filtry (např.: můjklíč,jinýklíč). Chcete-li ovládat štítek, přidejte jej za | (např.: můjklíč|Můj klíč,jinýklíč|Jiný klíč). Chcete-li ovládat typ vstupního pole, přidejte jej za další | (např.: můjklíč|Můj klíč|checkbox,jinýklíč|Jiný klíč|datetime). Povolené hodnoty pro typ vstupního pole jsou checkbox (výchozí), radio, number, date a datetime.",
429
+ "Search keys": "Hledat klíče",
430
+ "Filters keys": "Filtry klíčů",
431
+ "Filter data": "Filtrovat data",
432
+ "Search map features…": "Hledat objekty mapy…",
433
+ "Reset all": "Obnovit vše",
434
+ "Open browser": "Open browser",
435
+ "Open caption": "Open caption",
436
+ "Your map has been created with an anonymous account!": "Your map has been created with an anonymous account!",
437
+ "Real-time collaboration": "Real-time collaboration",
438
+ "Cannot parse data": "Cannot parse data",
439
+ "Start typing...": "Start typing...",
440
+ "No result": "No result",
441
+ "Data browser": "Data browser",
442
+ "When providing an URL, uMap can copy the remote data in a layer, or add this URL as remote source of the layer. In that case, data will always be fetched from that URL, and thus be up to date, but it will not be possible to edit it inside uMap.": "When providing an URL, uMap can copy the remote data in a layer, or add this URL as remote source of the layer. In that case, data will always be fetched from that URL, and thus be up to date, but it will not be possible to edit it inside uMap.",
443
+ "Overpass supported expressions": "Overpass supported expressions",
444
+ "key (eg. building)": "key (eg. building)",
445
+ "!key (eg. !name)": "!key (eg. !name)",
446
+ "key=value (eg. building=yes)": "key=value (eg. building=yes)",
447
+ "key!=value (eg. building!=yes)": "key!=value (eg. building!=yes)",
448
+ "key~value (eg. name~Grisy)": "key~value (eg. name~Grisy)",
449
+ "key=\"value|value2\" (eg. name=\"Paris|Berlin\")": "key=\"value|value2\" (eg. name=\"Paris|Berlin\")",
450
+ "More info about Overpass syntax": "More info about Overpass syntax",
451
+ "For more complex needs, see": "For more complex needs, see",
452
+ "Choose data": "Choose data",
453
+ "Import helpers:": "Import helpers:",
454
+ "Choose the format": "Choose the format",
455
+ "Choose the layer": "Choose the layer",
456
+ "Layer name": "Layer name",
457
+ "Choose import mode": "Choose import mode",
458
+ "Copy into the layer": "Copy into the layer",
459
+ "Link to the layer as remote data": "Link to the layer as remote data",
460
+ "Condition": "Condition",
461
+ "key=value or key!=value": "key=value or key!=value",
462
+ "Are you sure you want to delete this rule?": "Are you sure you want to delete this rule?",
463
+ "empty rule": "empty rule",
464
+ "Conditional style rules": "Conditional style rules",
465
+ "Add rule": "Add rule",
466
+ "Browser: data": "Browser: data",
467
+ "Browser: layers": "Browser: layers",
468
+ "Browser: filters": "Browser: filters",
469
+ "Enable real-time collaboration": "Enable real-time collaboration",
470
+ "✅ Copied!": "✅ Copied!",
471
+ "Choose a dataset": "Choose a dataset",
472
+ "Choose this dataset": "Choose this dataset",
473
+ "GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: thematic data from OpenStreetMap",
474
+ "Choose a theme": "Choose a theme",
475
+ "Symplify all geometries to points": "Symplify all geometries to points",
476
+ "Choose this data": "Choose this data",
477
+ "Search admin boundary": "Search admin boundary",
478
+ "Please choose a theme and a boundary first.": "Please choose a theme and a boundary first.",
479
+ "Expression": "Expression",
480
+ "Geometry mode": "Geometry mode",
481
+ "Only geometry centers": "Only geometry centers",
482
+ "Search area": "Search area",
483
+ "Type area name, or let empty to load data in current map view": "Type area name, or let empty to load data in current map view",
484
+ "Please define an expression for the query first": "Please define an expression for the query first"
450
485
  }
451
486
  L.registerLocale("cs_CZ", locale)
452
487
  L.setLocale("cs_CZ")
@@ -12,7 +12,7 @@
12
12
  "5 min": "5 minut",
13
13
  "A comma separated list of numbers that defines the stroke dash pattern. Ex.: \"5, 10, 15\".": "Čárkami oddělený seznam čísel, který popisuje vzorek přerušované čáry. Např. «5, 10, 15».",
14
14
  "About": "O mapě",
15
- "Action not allowed :(": "Action not allowed :(",
15
+ "Action not allowed :(": "Akce nepovolena :(",
16
16
  "Activate slideshow mode": "Aktivovat prezentační mód",
17
17
  "Add a layer": "Přidat vrstvu",
18
18
  "Add a line to the current multi": "Přidat čáru k současnému multi",
@@ -22,7 +22,7 @@
22
22
  "Add": "Přidat",
23
23
  "Advanced actions": "Pokročilé akce",
24
24
  "Advanced properties": "Pokročilé vlastnosti",
25
- "All data and settings of the map": "All data and settings of the map",
25
+ "All data and settings of the map": "Všechna data a nastavení mapy",
26
26
  "All properties are imported.": "Všechny vlastnosti jsou importovány.",
27
27
  "Allow interactions": "Povolit interakce",
28
28
  "Allow scroll wheel zoom?": "Povolit přibližování kolečkem myši?",
@@ -43,21 +43,17 @@
43
43
  "Back to preview": "Zpět na náhled",
44
44
  "Background overlay url": "Url překrytí pozadí",
45
45
  "Ball": "špendlík",
46
- "Bring feature to center": "Bring feature to center",
46
+ "Bring feature to center": "Centruj mapu na objektu",
47
47
  "Browse data": "Prohlížet data",
48
48
  "by": "od",
49
49
  "Cache proxied request": "Požadavek na zástupnou mezipaměť",
50
50
  "Cancel edits": "Stornovat úpravy",
51
- "Cancel": "Storno",
52
51
  "Caption": "Popisek",
53
52
  "Center map on your location": "Přemístit se na mapě na vaši polohu",
54
53
  "Change map background": "Změnit pozadí mapy",
55
54
  "Change tilelayers": "Změnit pozadí mapy",
56
55
  "Change": "Změnit",
57
- "Choose a preset": "Zvolte přednastavení",
58
56
  "Choose the data format": "Vyberte formát dat",
59
- "Choose the format of the data to import": "Zvolte v jakém formátu jsou importovaná data",
60
- "Choose the layer to import in": "Zvolte vrstvu, do které se bude importovat",
61
57
  "Choropleth breakpoints": "Choropleth breakpoints",
62
58
  "Choropleth classes": "Choropleth třídy",
63
59
  "Choropleth color palette": "Choropleth paleta barev",
@@ -87,10 +83,9 @@
87
83
  "Congratulations, your map has been created!": "Gratulujeme, vaše mapa byla vytvořena!",
88
84
  "Continue line": "Pokračovat v čáře",
89
85
  "Coordinates": "Souřadnice",
90
- "Copy link": "Kopírovat odkaz",
91
- "copy": "copy",
86
+ "copy": "kopírovat",
92
87
  "Credits": "Autorství",
93
- "Current map view": "Current map view",
88
+ "Current map view": "Aktuální zobrazení mapy",
94
89
  "Current view instead of default map view?": "Současný pohled namísto výchozího?",
95
90
  "Custom background": "Vlastní pozadí",
96
91
  "Custom overlay": "Vlastní překryv",
@@ -152,8 +147,7 @@
152
147
  "Edit the title of the map": "Upravit název mapy",
153
148
  "Edit this feature": "Upravit tento objekt",
154
149
  "Edit": "Upravit",
155
- "Email": "E-mail",
156
- "Embed and link options": "Embed and link options",
150
+ "Embed and link options": "Možnosti vložení a propojení",
157
151
  "Embed the map": "Vložit mapu do jiného webu",
158
152
  "Emoji & Character": "Emoji & Character",
159
153
  "Empty": "Vyprázdnit",
@@ -172,11 +166,11 @@
172
166
  "Fit all data": "Přizpůsobení všech dat",
173
167
  "Format": "Formát",
174
168
  "From zoom": "Maximální oddálení",
175
- "full backup": "full backup",
169
+ "full backup": "plná záloha",
176
170
  "Generic": "Generický",
177
171
  "GeoRSS (only link)": "GeoRSS (jen odkaz)",
178
172
  "GeoRSS (title + image)": "GeoRSS (titulek + obrázek)",
179
- "Go to \"{coords}\"": "Go to \"{coords}\"",
173
+ "Go to \"{coords}\"": "Přejít na {coords}",
180
174
  "Go to the homepage": "Přejít na domovskou stránku",
181
175
  "Go to «{feature}»": "Jdi na \"{feature}\"",
182
176
  "Heatmap intensity property": "Vlastnost pro intenzitu teplotní mapy",
@@ -200,7 +194,6 @@
200
194
  "Image: {{http://image.url.com}}": "Obrázek: {{http://priklad.cz/obrazek.jpg}}",
201
195
  "Import data": "Import dat",
202
196
  "Import in a new layer": "Importovat do nové vrstvy",
203
- "Import": "Importovat",
204
197
  "Imports all umap data, including layers and settings.": "Importuje všechy data umapy, včetně vrstev a nastavení",
205
198
  "Include full screen link?": "Zahrnout odkaz na celou obrazovku?",
206
199
  "Inherit": "výchozí",
@@ -225,7 +218,7 @@
225
218
  "Licence": "Licence",
226
219
  "licence": "licence",
227
220
  "Limit bounds": "Hranice zobrazení",
228
- "Link to view the map": "Link to view the map",
221
+ "Link to view the map": "Odkaz pro zobrazení mapy",
229
222
  "Link to…": "Odkaz na…",
230
223
  "Link with text: [[http://example.com|text of the link]]": "Odkaz: [[http://priklad.cz/stranka|text odkazu]]",
231
224
  "Long credits": "Dlouhý text autorství",
@@ -263,19 +256,19 @@
263
256
  "No licence has been set": "Nebyla nastavena licence",
264
257
  "No results": "Žádné výsledky",
265
258
  "no": "ne",
266
- "No.": "No.",
259
+ "No.": "Ne.",
267
260
  "None": "Žádný",
268
261
  "Number of desired classes (default 5)": "Počet požadovaných tříd (výchozí 5)",
269
262
  "On the bottom": "Zespod",
270
263
  "On the left": "Nalevo",
271
264
  "On the right": "Napravo",
272
265
  "On the top": "Shora",
273
- "Only visible layers' data": "Only visible layers' data",
266
+ "Only visible layers' data": "Pouze data viditelných vrstev",
274
267
  "opacity": "průhlednost",
275
268
  "Opacity": "Průhlednost",
276
269
  "Open current feature on load": "Otevřít současnou funkci při zatížení",
277
270
  "Open link in…": "Otevřít adresu v…",
278
- "Open share & download panel": "Open share & download panel",
271
+ "Open share & download panel": "Otevřít panel na sdílení a stahování",
279
272
  "Open this map extent in a map editor to provide more accurate data to OpenStreetMap": "Otevři tuto oblast v editoru OpenStreetMap. Toto vám umožní editovat přímo základní mapová data a přispět tak v tvorbě svobodné mapy pro všechny.",
280
273
  "OpenStreetMap": "OpenStreetMap",
281
274
  "Optional intensity property for heatmap": "Volitelná vlastnost pro výpočet intenzity v teplotní mapě",
@@ -300,18 +293,17 @@
300
293
  "Popup": "Popup",
301
294
  "Powered by uMap": "Běží na uMap",
302
295
  "previous": "předchozí",
303
- "Problem in the response": "Problem in the response",
296
+ "Problem in the response": "Problém při odpovědi",
304
297
  "Properties imported:": "Importované vlastnosti:",
305
298
  "Provide an URL here": "Sem vložte odkaz",
306
299
  "Proxy request": "Požadavky přes proxy",
307
300
  "Quantiles": "Kvantily",
308
- "Recent": "Recent",
301
+ "Recent": "Nedávné",
309
302
  "Remote data": "Vzdálená data",
310
303
  "Remove shape from the multi": "Odebrat tvar z multi",
311
304
  "Rename this property on all the features": "Přejmenovat tuto vlastnost na všech objektech",
312
305
  "Replace layer content": "Nahradit obsah vrstvy",
313
306
  "Restore this version": "Obnovit tuto verzi",
314
- "Save anyway": "I tak uložit",
315
307
  "Save current edits": "Ulož nedávné změny",
316
308
  "Save map": "Uložit mapu",
317
309
  "Save this center and zoom": "Ulož tuto pozici mapy a její přiblížení",
@@ -320,19 +312,16 @@
320
312
  "Saved center and zoom": "Uložený střed a zoom",
321
313
  "Search location": "Vyhledat místo na mapě",
322
314
  "Search": "Hledat",
323
- "Secret edit link copied to clipboard!": "Tajný odkaz na úpravy do schránky!",
324
315
  "Secret edit link:": "Tajný odkaz na úpravy:",
325
- "See layers": "See layers",
326
316
  "See full screen": "Na celou obrazovku",
327
- "See on OpenStreetMap": "See on OpenStreetMap",
328
- "Send me the link": "Pošlete mi odkaz",
317
+ "See on OpenStreetMap": "Zobrazit na OpenStreetMap",
329
318
  "Set it to false to hide this layer from the slideshow, the data browser, the popup navigation…": "Nastavte na false pro ukrytí této vrstvy z prezentace, prohlížeče dat, vyskakovací navigace...",
330
- "settings": "settings",
319
+ "settings": "nastavení",
331
320
  "Shape properties": "Vlastností tvaru",
332
- "Share and download": "Share and download",
333
- "Share this link to open a customized map view": "Share this link to open a customized map view",
321
+ "Share and download": "Sdílet a stáhnout",
322
+ "Share this link to open a customized map view": "Sdílet tento odkaz pro otevření přizpůsobeného zobrazení mapy",
334
323
  "Short credits": "Krátký text autorství",
335
- "Short link": "Short link",
324
+ "Short link": "Krátký odkaz",
336
325
  "Show this layer in the caption": "Zobrazit tuto vrstvu v nadpisu",
337
326
  "Show/hide layer": "Skrytí/zobrazení vrstvy",
338
327
  "Side panel": "Boční panel",
@@ -347,7 +336,7 @@
347
336
  "Start slideshow": "Spustit prezentaci",
348
337
  "Stop editing": "Přerušit úpravy",
349
338
  "Stop slideshow": "Zastavit prezentaci",
350
- "Street": "Street",
339
+ "Street": "Ulice",
351
340
  "stroke": "linka",
352
341
  "Supported scheme": "Podporované schéma",
353
342
  "Supported variables that will be dynamically replaced": "Podporované proměnné, které budou automaticky nahrazeny",
@@ -355,7 +344,7 @@
355
344
  "Table": "Tabulka",
356
345
  "Text color for the cluster label": "Barva textu popisku shluku",
357
346
  "Text formatting": "Formátování textu",
358
- "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.: \"&lcub;name&rcub; in &lcub;place&rcub;\")": "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.: \"&lcub;name&rcub; in &lcub;place&rcub;\")",
347
+ "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.: \"&lcub;name&rcub; in &lcub;place&rcub;\")": "Název vlastnosti, která se použít jako popis funkce (např.: \"nom\"). Můžete také použít vlastnosti uvnitř hranatých závorek a použít více než jednu nebo je kombinovat se statickým obsahem (např.: \"&lcub;jméno&rcub; v &lcub;místo&rcub;\")",
359
348
  "The name of the property to use as feature unique identifier.": "Název vlastnosti pro použití v popisku jedinečného identifikátoru objektu.",
360
349
  "The zoom and center have been modified.": "Přiblížení a střed mapy byly modifikovány",
361
350
  "TMS format": "formát TMS",
@@ -366,7 +355,7 @@
366
355
  "Transfer shape to edited feature": "Přenést tvar do editovaného objektu",
367
356
  "Transform to lines": "Převést na čáry",
368
357
  "Transform to polygon": "Převést na polygon",
369
- "Type a place name or coordinates": "Type a place name or coordinates",
358
+ "Type a place name or coordinates": "Zadejte název místa nebo souřadnice",
370
359
  "Type char or paste emoji": "Zadejte znak nebo vložte emoji",
371
360
  "Type of layer": "Druh vrstvy",
372
361
  "Unable to detect format of file {filename}": "Nepodařilo se detekovat formát souboru {filename}",
@@ -398,9 +387,7 @@
398
387
  "Will be displayed in the bottom right corner of the map": "Bude zobrazeno s mapou napravo dole",
399
388
  "Will be permanently visible in the bottom left corner of the map": "Will be permanently visible in the bottom left corner of the map",
400
389
  "Will be visible in the caption of the map": "Bude zobrazeno v popisu mapy",
401
- "Woops! Someone else seems to have edited the data. You can save anyway, but this will erase the changes made by others.": "Ojoj! Někdo jiný mezitím také upravil data. Můžete je uložit bez ohledu na to, ale smažete tak jeho změny.",
402
390
  "yes": "ano",
403
- "Your map has been created! As you are not logged in, here is your secret link to edit the map, please keep it safe:": "Vaše mapa byla vytvořena! Protože nejste přihlášeni, zde je váš tajný odkaz na úpravu mapy, uschovejte jej prosím:",
404
391
  "Zoom in": "Přiblížit",
405
392
  "Zoom level for automatic zooms": "Úroveň přiblížení pro automatické přiblížení",
406
393
  "Zoom out": "Oddálit",
@@ -421,30 +408,78 @@
421
408
  "{distance}&#8239;miles": "{distance} míle",
422
409
  "{distance}&#8239;NM": "{distance} NM",
423
410
  "{distance}&#8239;yd": "{distance} yd",
424
- "Edit map name and caption": "Edit map name and caption",
425
- "Map advanced properties": "Map advanced properties",
426
- "Edit map details": "Edit map details",
427
- "Back to browser": "Back to browser",
428
- "Toggle size": "Toggle size",
429
- "Display the caption control": "Display the caption control",
411
+ "Edit map name and caption": "Upravit název mapy a popisek",
412
+ "Map advanced properties": "Pokročilé vlastnosti mapy",
413
+ "Edit map details": "Podrobnosti mapy",
414
+ "Back to browser": "Zpět na prohlížeč",
415
+ "Toggle size": "Přepnout velikost",
416
+ "Display the caption control": "Zobrazit ovládání popisků",
430
417
  "<empty value>": "<empty value>",
431
418
  "Min": "Min",
432
419
  "Max": "Max",
433
- "From": "From",
434
- "Until": "Until",
435
- "Example: key1,key2|Label 2,key3|Label 3|checkbox": "Example: key1,key2|Label 2,key3|Label 3|checkbox",
436
- "Edit in OpenStreetMap": "Edit in OpenStreetMap",
437
- "Cannot determine latitude and longitude columns.": "Cannot determine latitude and longitude columns.",
438
- "Back to layers": "Back to layers",
439
- "Filters": "Filters",
440
- "Comma separated list of properties to use when filtering features by text input": "Comma separated list of properties to use when filtering features by text input",
441
- "Comma separated list of properties to use for filters (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key). To control input field type, add it after another | (eg.: mykey|My Key|checkbox,otherkey|Other Key|datetime). Allowed values for the input field type are checkbox (default), radio, number, date and datetime.": "Comma separated list of properties to use for filters (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key). To control input field type, add it after another | (eg.: mykey|My Key|checkbox,otherkey|Other Key|datetime). Allowed values for the input field type are checkbox (default), radio, number, date and datetime.",
442
- "Search keys": "Search keys",
443
- "Filters keys": "Filters keys",
444
- "Filter data": "Filter data",
445
- "Search map features…": "Search map features…",
446
- "Reset all": "Reset all",
447
- "Browser in data mode": "Browser in data mode",
448
- "Browser in layers mode": "Browser in layers mode",
449
- "Browser in filters mode": "Browser in filters mode"
420
+ "From": "Z",
421
+ "Until": "Dokud",
422
+ "Example: key1,key2|Label 2,key3|Label 3|checkbox": "Příklad: klíč1,klíč2|Popisek 2, klíč3|Popisek 3|checkbox",
423
+ "Edit in OpenStreetMap": "Upravit v OpenStreetMap",
424
+ "Cannot determine latitude and longitude columns.": "Nelze určit sloupce zeměpisné šířky a délky.",
425
+ "Back to layers": "Zpět na vrstvy",
426
+ "Filters": "Filtry",
427
+ "Comma separated list of properties to use when filtering features by text input": "Čárkami oddělený seznam vlastností pro filtrování objektů podle zadávání textu",
428
+ "Comma separated list of properties to use for filters (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key). To control input field type, add it after another | (eg.: mykey|My Key|checkbox,otherkey|Other Key|datetime). Allowed values for the input field type are checkbox (default), radio, number, date and datetime.": "Čárkami oddělený seznam vlastností, které se mají použít pro filtry (např.: můjklíč,jinýklíč). Chcete-li ovládat štítek, přidejte jej za | (např.: můjklíč|Můj klíč,jinýklíč|Jiný klíč). Chcete-li ovládat typ vstupního pole, přidejte jej za další | (např.: můjklíč|Můj klíč|checkbox,jinýklíč|Jiný klíč|datetime). Povolené hodnoty pro typ vstupního pole jsou checkbox (výchozí), radio, number, date a datetime.",
429
+ "Search keys": "Hledat klíče",
430
+ "Filters keys": "Filtry klíčů",
431
+ "Filter data": "Filtrovat data",
432
+ "Search map features…": "Hledat objekty mapy…",
433
+ "Reset all": "Obnovit vše",
434
+ "Open browser": "Open browser",
435
+ "Open caption": "Open caption",
436
+ "Your map has been created with an anonymous account!": "Your map has been created with an anonymous account!",
437
+ "Real-time collaboration": "Real-time collaboration",
438
+ "Cannot parse data": "Cannot parse data",
439
+ "Start typing...": "Start typing...",
440
+ "No result": "No result",
441
+ "Data browser": "Data browser",
442
+ "When providing an URL, uMap can copy the remote data in a layer, or add this URL as remote source of the layer. In that case, data will always be fetched from that URL, and thus be up to date, but it will not be possible to edit it inside uMap.": "When providing an URL, uMap can copy the remote data in a layer, or add this URL as remote source of the layer. In that case, data will always be fetched from that URL, and thus be up to date, but it will not be possible to edit it inside uMap.",
443
+ "Overpass supported expressions": "Overpass supported expressions",
444
+ "key (eg. building)": "key (eg. building)",
445
+ "!key (eg. !name)": "!key (eg. !name)",
446
+ "key=value (eg. building=yes)": "key=value (eg. building=yes)",
447
+ "key!=value (eg. building!=yes)": "key!=value (eg. building!=yes)",
448
+ "key~value (eg. name~Grisy)": "key~value (eg. name~Grisy)",
449
+ "key=\"value|value2\" (eg. name=\"Paris|Berlin\")": "key=\"value|value2\" (eg. name=\"Paris|Berlin\")",
450
+ "More info about Overpass syntax": "More info about Overpass syntax",
451
+ "For more complex needs, see": "For more complex needs, see",
452
+ "Choose data": "Choose data",
453
+ "Import helpers:": "Import helpers:",
454
+ "Choose the format": "Choose the format",
455
+ "Choose the layer": "Choose the layer",
456
+ "Layer name": "Layer name",
457
+ "Choose import mode": "Choose import mode",
458
+ "Copy into the layer": "Copy into the layer",
459
+ "Link to the layer as remote data": "Link to the layer as remote data",
460
+ "Condition": "Condition",
461
+ "key=value or key!=value": "key=value or key!=value",
462
+ "Are you sure you want to delete this rule?": "Are you sure you want to delete this rule?",
463
+ "empty rule": "empty rule",
464
+ "Conditional style rules": "Conditional style rules",
465
+ "Add rule": "Add rule",
466
+ "Browser: data": "Browser: data",
467
+ "Browser: layers": "Browser: layers",
468
+ "Browser: filters": "Browser: filters",
469
+ "Enable real-time collaboration": "Enable real-time collaboration",
470
+ "✅ Copied!": "✅ Copied!",
471
+ "Choose a dataset": "Choose a dataset",
472
+ "Choose this dataset": "Choose this dataset",
473
+ "GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: thematic data from OpenStreetMap",
474
+ "Choose a theme": "Choose a theme",
475
+ "Symplify all geometries to points": "Symplify all geometries to points",
476
+ "Choose this data": "Choose this data",
477
+ "Search admin boundary": "Search admin boundary",
478
+ "Please choose a theme and a boundary first.": "Please choose a theme and a boundary first.",
479
+ "Expression": "Expression",
480
+ "Geometry mode": "Geometry mode",
481
+ "Only geometry centers": "Only geometry centers",
482
+ "Search area": "Search area",
483
+ "Type area name, or let empty to load data in current map view": "Type area name, or let empty to load data in current map view",
484
+ "Please define an expression for the query first": "Please define an expression for the query first"
450
485
  }