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?": "Povoliť približovanie kolieskom myši?",
3
- "Automatic": "Automaticky",
4
- "Ball": "Špendlík",
5
- "Cancel": "Zrušiť",
6
- "Caption": "Nadpis",
7
- "Choose the data format": "Zvoľte formát údajov",
8
- "Choose the layer of the feature": "Zvoľte vrstvu do ktorej objekt patrí",
9
- "Circle": "Kruh",
10
- "Clustered": "Zhluková",
11
- "Data browser": "Prehliadač",
12
- "Default": "Predvolené",
13
- "Default zoom level": "Predvolené priblíženie",
14
- "Default: name": "Štandardná hodnota: názov",
15
- "Display label": "Zobraziť popis",
16
- "Display the control to open OpenStreetMap editor": "Zobraziť ovládanie na otvorenie editora OpenStreetMap",
17
- "Display the data layers control": "Zobraziť ovládanie údajov vrstiev",
18
- "Display the embed control": "Zobraziť ovládanie vkladania",
19
- "Display the fullscreen control": "Zobraziť ovládanie celej obrazovky",
20
- "Display the locate control": "Zobraziť ovládanie polohy",
21
- "Display the measure control": "Zobraziť ovládanie merania",
22
- "Display the search control": "Zobraziť ovládanie vyhľadávania",
23
- "Display the tile layers control": "Zobraziť ovládanie dlaždíc vrstiev",
24
- "Display the zoom control": "Zobraziť ovládanie priblíženia",
25
- "Do you want to display a caption bar?": "Chcete zobraziť lištu s nadpismi?",
26
- "Do you want to display a minimap?": "Chcete zobraziť minimapu?",
27
- "Do you want to display a panel on load?": "Prajete si zobraziť panel pri štarte?",
28
- "Do you want to display popup footer?": "Chcete zobraziť v bubline navigačný panel?",
29
- "Do you want to display the scale control?": "Chcete zobraziť mierku mapy?",
30
- "Do you want to display the «more» control?": "Prajete si zobrazit «viac» nastavení?",
31
- "Drop": "Pustiť",
32
- "GeoRSS (only link)": "GeoRSS (iba odkaz)",
33
- "GeoRSS (title + image)": "GeoRSS (názov + obrázok)",
34
- "Heatmap": "Teplotná mapa",
35
- "Icon shape": "Tvar ikony",
36
- "Icon symbol": "Symbol ikony",
37
- "Inherit": "Predvolené",
38
- "Label direction": "Orientácia popisu",
39
- "Label key": "Kľúč popisu",
40
- "Labels are clickable": "Popis je klikateľný",
41
- "None": "Žiadny",
42
- "On the bottom": "V spodnej časti",
43
- "On the left": "Naľavo",
44
- "On the right": "Napravo",
45
- "On the top": "V hornej časti",
46
- "Popup content template": "Šablóna obsahu bubliny",
47
- "Side panel": "Bočný panel",
48
- "Simplify": "Zjednodušiť",
49
- "Table": "Tabuľka",
50
- "always": "vždy",
51
- "clear": "vyčistiť",
52
- "collapsed": "zbalené",
53
- "color": "farba",
54
- "dash array": "štýl prerušovanej čiary",
55
- "define": "definovať",
56
- "description": "popis",
57
- "expanded": "rozbalené",
58
- "fill": "výplň",
59
- "fill color": "farba výplne",
60
- "fill opacity": "priehľadnosť výplne",
61
- "hidden": "skryté",
62
- "iframe": "iframe",
63
- "inherit": "predvolené",
64
- "name": "názov",
65
- "never": "nikdy",
66
- "new window": "nové okno",
67
- "no": "nie",
68
- "on hover": "on hover",
69
- "opacity": "priehľadnosť",
70
- "parent window": "nadradené okno",
71
- "stroke": "linka",
72
- "weight": "šírka linky",
73
- "yes": "áno",
74
- "{delay} seconds": "{delay} seconds",
2
+ " (area: {measure})": "(area: {measure})",
3
+ " (length: {measure})": "(length: {measure})",
75
4
  "# one hash for main heading": "# jedna mriežka pre hlavný nadpis",
76
5
  "## two hashes for second heading": "## dve mriežky pre nadpis druhej úrovne",
77
6
  "### three hashes for third heading": "## tri mriežky pre nadpis tretej úrovne",
78
7
  "**double star for bold**": "**všetko medzi dvoma hviezdičkami je tučně**",
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\".": "Čiarkami oddelený zoznam čísel, ktorý popisuje vzor prerušovanej čiary. Napr. \"5, 10, 15\".",
80
14
  "About": "O uMap",
15
+ "Action not allowed :(": "Action not allowed :(",
81
16
  "Activate slideshow mode": "Activate slideshow mode",
82
17
  "Add a layer": "Pridať vrstvu",
83
18
  "Add a line to the current multi": "Pridať čiaru k aktuálnemu multi",
84
19
  "Add a new property": "Pridať novú vlastnosť",
85
20
  "Add a polygon to the current multi": "Pridať polygón k aktuálnemu multi",
21
+ "Add image URL": "Add image URL",
22
+ "Add": "Add",
86
23
  "Advanced actions": "Pokročilé akcie",
87
24
  "Advanced properties": "Pokročilé vlastnosti",
25
+ "All data and settings of the map": "All data and settings of the map",
88
26
  "All properties are imported.": "Všetky vlastnosti sú naimportované.",
89
27
  "Allow interactions": "Povoliť interakcie",
28
+ "Allow scroll wheel zoom?": "Povoliť približovanie kolieskom myši?",
29
+ "always": "vždy",
30
+ "Animated transitions": "Animated transitions",
90
31
  "Are you sure you want to cancel your changes?": "Ste si istí že chcete zrušiť vaše úpravy?",
91
32
  "Are you sure you want to clone this map and all its datalayers?": "Určite chcete vytvoriť kópiu celej tejto mapy a všetkých jej vrstiev?",
92
33
  "Are you sure you want to delete the feature?": "Určite chcete vymazať tento objekt?",
@@ -95,186 +36,386 @@
95
36
  "Are you sure you want to delete this property on all the features?": "Ste si istí že chcete vymazať túto vlastnosť na všetkých objektoch?",
96
37
  "Are you sure you want to restore this version?": "Určite chcete obnoviť túto verziu?",
97
38
  "Attach the map to my account": "Attach the map to my account",
39
+ "attribution": "autorstvo",
98
40
  "Auto": "Automatická",
41
+ "Automatic": "Automaticky",
99
42
  "Autostart when map is loaded": "Aut. spustenie pri načítaní mapy",
43
+ "Back to preview": "Back to preview",
44
+ "Background overlay url": "Background overlay url",
45
+ "Ball": "Špendlík",
46
+ "Bring feature to center": "Bring feature to center",
100
47
  "Browse data": "Prezerať údaje",
48
+ "by": "od",
49
+ "Cache proxied request": "Cache proxied request",
101
50
  "Cancel edits": "Zrušiť zmeny",
51
+ "Cancel": "Zrušiť",
52
+ "Caption": "Nadpis",
102
53
  "Center map on your location": "Vycentrovať mapu na vašu polohu",
103
54
  "Change map background": "Zmeniť pozadie mapy",
104
55
  "Change tilelayers": "Zmeniť pozadie mapy",
56
+ "Change": "Change",
105
57
  "Choose a preset": "Vyberte predvoľbu",
58
+ "Choose the data format": "Zvoľte formát údajov",
106
59
  "Choose the format of the data to import": "Zvoľte v akom formáte sú importované údaje",
107
60
  "Choose the layer to import in": "Zvoľte vrstvu, do ktorej sa bude importovať",
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": "Kruh",
68
+ "clear": "vyčistiť",
108
69
  "Click last point to finish shape": "Kliknite na posledný bod pre dokončenie tvaru",
109
70
  "Click to add a marker": "Kliknutím pridáte značku",
110
71
  "Click to continue drawing": "Kliknutím môžete pokračovať v kreslení",
111
72
  "Click to edit": "Kliknutím upravte",
112
73
  "Click to start drawing a line": "Kliknutím začnete kresliť čiaru",
113
74
  "Click to start drawing a polygon": "Kliknutím začnete kresliť polygón",
114
- "Clone": "Vytvoriť kópiu",
115
75
  "Clone of {name}": "Kópia {name}",
116
76
  "Clone this feature": "Vytvoriť kópiu objektu",
117
77
  "Clone this map": "Vytvoriť kópiu tejto mapy",
78
+ "Clone": "Vytvoriť kópiu",
118
79
  "Close": "Zatvoriť",
80
+ "Clustered": "Zhluková",
119
81
  "Clustering radius": "Polomer zhlukovania",
82
+ "collapsed": "zbalené",
83
+ "color": "farba",
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": "Čiarkami oddelený zoznam vlastností pre filtrovanie objektov",
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.": "Hodnoty oddelené čiarkou, tabulátorom, alebo bodkočiarkou. Predpokladá sa SRS WGS84 a sú importované iba polohy bodov. Import hľadá záhlavie stĺpcov začínajúcich na \"lat\" a \"lon\" a tie považuje za súradnice (na veľkosti písmien nezáleži). Ostatné stĺpce sú importované ako vlastnosti.",
122
- "Continue line": "Pokračovať v čiare",
89
+ "Congratulations, your map has been created!": "Congratulations, your map has been created!",
123
90
  "Continue line (Ctrl+Click)": "Pokračovať v čiare (Ctrl+Klik)",
91
+ "Continue line": "Pokračovať v čiare",
124
92
  "Coordinates": "Súradnice",
93
+ "Copy link": "Copy link",
94
+ "copy": "copy",
125
95
  "Credits": "Poďakovania",
96
+ "Current map view": "Current map view",
126
97
  "Current view instead of default map view?": "Aktuálne zobrazenie namiesto štandardného zobrazenia mapy?",
127
98
  "Custom background": "Vlastné pozadie",
99
+ "Custom overlay": "Custom overlay",
100
+ "dash array": "štýl prerušovanej čiary",
101
+ "Data browser": "Prehliadač",
128
102
  "Data is browsable": "Data is browsable",
103
+ "Datalayers": "Datalayers",
129
104
  "Default interaction options": "Predvolené možnosti interakcie",
130
105
  "Default properties": "Predvolené vlastnosti",
131
106
  "Default shape properties": "Predvolené vlastnosti tvaru",
107
+ "Default view": "Default view",
108
+ "Default zoom level": "Predvolené priblíženie",
109
+ "Default": "Predvolené",
110
+ "Default: name": "Štandardná hodnota: názov",
132
111
  "Define link to open in a new window on polygon click.": "Definujte odkaz na otvorenie, ktorý otvorí nové okno po kliknutí na polygón.",
112
+ "define": "definovať",
133
113
  "Delay between two transitions when in play mode": "Delay between two transitions when in play mode",
134
- "Delete": "Vymazať",
135
114
  "Delete all layers": "Vymazať všetky vrstvy",
136
115
  "Delete layer": "Vymazať vrstvu",
137
116
  "Delete this feature": "Vymazať tento objekt",
138
117
  "Delete this property on all the features": "Vymazať túto vlastnosť na všetkých objektoch",
139
118
  "Delete this shape": "Vymazať tento tvar",
140
119
  "Delete this vertex (Alt+Click)": "Vymazať tento bod (Alt+Klik)",
120
+ "Delete": "Vymazať",
121
+ "description": "popis",
122
+ "Direct link": "Direct link",
141
123
  "Directions from here": "Navigovať odtiaľto",
124
+ "Display label": "Zobraziť popis",
142
125
  "Display measure": "Display measure",
126
+ "display name": "zobraziť názov",
143
127
  "Display on load": "Zobraziť pri štarte",
128
+ "Display the control to open OpenStreetMap editor": "Zobraziť ovládanie na otvorenie editora OpenStreetMap",
129
+ "Display the data layers control": "Zobraziť ovládanie údajov vrstiev",
130
+ "Display the embed control": "Zobraziť ovládanie vkladania",
131
+ "Display the fullscreen control": "Zobraziť ovládanie celej obrazovky",
132
+ "Display the locate control": "Zobraziť ovládanie polohy",
133
+ "Display the measure control": "Zobraziť ovládanie merania",
134
+ "Display the search control": "Zobraziť ovládanie vyhľadávania",
135
+ "Display the star map button": "Display the star map button",
136
+ "Display the tile layers control": "Zobraziť ovládanie dlaždíc vrstiev",
137
+ "Display the zoom control": "Zobraziť ovládanie priblíženia",
138
+ "Do you want to display a caption bar?": "Chcete zobraziť lištu s nadpismi?",
139
+ "Do you want to display a minimap?": "Chcete zobraziť minimapu?",
140
+ "Do you want to display a panel on load?": "Prajete si zobraziť panel pri štarte?",
141
+ "Do you want to display caption menus?": "Do you want to display caption menus?",
142
+ "Do you want to display popup footer?": "Chcete zobraziť v bubline navigačný panel?",
143
+ "Do you want to display the scale control?": "Chcete zobraziť mierku mapy?",
144
+ "Do you want to display the «more» control?": "Prajete si zobrazit «viac» nastavení?",
144
145
  "Download": "Download",
145
146
  "Drag to reorder": "Presunutím zmeníte poradie",
146
147
  "Draw a marker": "Nakresliť značku miesta",
147
148
  "Draw a polygon": "Nakresliť polygon",
148
149
  "Draw a polyline": "Nakresliť krivku",
149
- "Dynamic": "Dynamicky",
150
+ "Drawing": "Drawing",
151
+ "Drop": "Pustiť",
150
152
  "Dynamic properties": "Dynamické vlastnosti",
151
- "Edit": "Upraviť",
153
+ "Dynamic": "Dynamicky",
152
154
  "Edit feature's layer": "Upraviť vrstvu objektu",
153
155
  "Edit map properties": "Upraviť vlastnosti mapy",
154
156
  "Edit properties in a table": "Upraviť vlastnosti v tabuľke",
157
+ "Edit the title of the map": "Edit the title of the map",
155
158
  "Edit this feature": "Upraviť tento objekt",
159
+ "Edit": "Upraviť",
160
+ "Email": "Email",
161
+ "Embed and link options": "Embed and link options",
156
162
  "Embed the map": "Vložiť mapu na iný web",
163
+ "Emoji & Character": "Emoji & Character",
157
164
  "Empty": "Vyprázdniť",
165
+ "Equidistant": "Equidistant",
166
+ "Error in the overlay URL": "Error in the overlay URL",
158
167
  "Error in the tilelayer URL": "Chyba URL dlaždicovej vrstvy",
168
+ "Example: key1,key2,key3": "Example: key1,key2,key3",
159
169
  "Exit Fullscreen": "Ukončiť režim celej obrazovky",
170
+ "expanded": "rozbalené",
160
171
  "Extract shape to separate feature": "Vyňať tvar do samostatného objektu",
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.": "Načítanie údajov pri každej zmene zobrazenia mapy.",
178
+ "fill color": "farba výplne",
179
+ "fill opacity": "priehľadnosť výplne",
180
+ "fill": "výplň",
162
181
  "Filter keys": "Kľúče filtra",
182
+ "Filter": "Filter",
183
+ "Fit all data": "Fit all data",
163
184
  "Format": "Formát",
164
185
  "From zoom": "Max. oddialenie",
186
+ "full backup": "full backup",
187
+ "Generic": "Generic",
188
+ "GeoRSS (only link)": "GeoRSS (iba odkaz)",
189
+ "GeoRSS (title + image)": "GeoRSS (názov + obrázok)",
190
+ "Go to \"{coords}\"": "Go to \"{coords}\"",
191
+ "Go to the homepage": "Go to the homepage",
165
192
  "Go to «{feature}»": "Prejsť na «{feature}»",
166
193
  "Heatmap intensity property": "Vlastnosti intenzity heatmapy",
167
194
  "Heatmap radius": "Polomer teplotnej mapy",
195
+ "Heatmap": "Teplotná mapa",
196
+ "height": "Výška",
168
197
  "Help": "Nápoveda",
198
+ "hidden": "skryté",
169
199
  "Hide controls": "Skryť ovládacie prvky",
170
200
  "Home": "Domov",
171
201
  "How much to simplify the polyline on each zoom level (more = better performance and smoother look, less = more accurate)": "Ako veľmi vyhladzovať a zjednodušovať pri oddialeni (väčšie = rýchlejša odozva a plynulejší vzhľad, menšie = presnejšie)",
202
+ "icon opacity": "icon opacity",
203
+ "Icon shape": "Tvar ikony",
204
+ "Icon symbol": "Symbol ikony",
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 s vlastnou výškou (v px): {{{http://iframe.url.com|height}}}",
173
207
  "Iframe with custom height and width (in px): {{{http://iframe.url.com|height*width}}}": "Iframe s vlastnou výškou a šírkou (v px): {{{http://iframe.url.com|height*widht}}}",
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}}": "Obraz s vlastnou šírkou (v pixeloch): {{http://image.url.com|width}}",
176
211
  "Image: {{http://image.url.com}}": "Obrázok: {{http://url.obrazka.sk}}",
177
- "Import": "Importovať",
178
212
  "Import data": "Import údajov",
179
213
  "Import in a new layer": "Importovať do novej vrstvy",
214
+ "Import": "Importovať",
180
215
  "Imports all umap data, including layers and settings.": "Importuje všetky údaje umapy, vrátane vrstiev a nastavení.",
181
216
  "Include full screen link?": "Zahrnúť odkaz na celú obrazovku?",
217
+ "Inherit": "Predvolené",
218
+ "inherit": "predvolené",
182
219
  "Interaction options": "Možnosti interakcie",
183
- "Invalid umap data": "Neplatné údaje umapy",
220
+ "Invalid latitude or longitude": "Invalid latitude or longitude",
184
221
  "Invalid umap data in {filename}": "Neplatné údaje umapy v súbore {filename}",
222
+ "Invalid umap data": "Neplatné údaje umapy",
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": "Použiť pre aktuálne zobrazenie vrstiev",
227
+ "kilometers": "kilometers",
228
+ "km": "km",
229
+ "Label direction": "Orientácia popisu",
230
+ "Label key": "Kľúč popisu",
231
+ "Labels are clickable": "Popis je klikateľný",
232
+ "Latest feature": "Latest feature",
186
233
  "Latitude": "Zem. šírka",
187
- "Layer": "Vrstva",
188
234
  "Layer properties": "Vlastnosti vrstvy",
235
+ "Layer": "Vrstva",
189
236
  "Licence": "Licencia",
237
+ "licence": "licencia",
190
238
  "Limit bounds": "Obmedziť hranice",
239
+ "Link to view the map": "Link to view the map",
191
240
  "Link to…": "Odkaz na…",
192
241
  "Link with text: [[http://example.com|text of the link]]": "Odkaz s textom: [[http://priklad.sk|text odkazu]]",
193
242
  "Long credits": "Dlhý text autorstva",
194
243
  "Longitude": "Zem. dĺžka",
195
244
  "Make main shape": "Urobiť hlavným tvarom",
196
245
  "Manage layers": "Nastavenie vrstiev",
246
+ "Manual": "Manual",
197
247
  "Map background credits": "Autor mapy pozadia",
198
248
  "Map has been attached to your account": "Map has been attached to your account",
199
249
  "Map has been saved!": "Mapa bola uložená!",
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": "Použivateľské údaje sú zverejnené pod licenciou",
201
253
  "Map's editors": "Map's editors",
202
254
  "Map's owner": "Map's owner",
255
+ "max East": "max. Východ",
256
+ "max North": "max. Sever",
257
+ "max South": "max. Juh",
258
+ "max West": "max. Západ",
259
+ "max zoom": "max. priblíženie",
260
+ "Measure distances": "Measure distances",
203
261
  "Merge lines": "Spojiť čiary",
262
+ "mi": "mi",
263
+ "miles": "miles",
264
+ "min zoom": "max. oddialenie",
204
265
  "More controls": "Viac ovládacích prvkov",
205
266
  "Must be a valid CSS value (eg.: DarkBlue or #123456)": "Musí byť platná hodnota CSS (napr.: DarkBlue or #123456)",
267
+ "name": "názov",
268
+ "nautical miles": "nautical miles",
269
+ "never": "nikdy",
270
+ "new window": "nové okno",
271
+ "next": "ďalší",
272
+ "NM": "NM",
273
+ "No cache": "No cache",
206
274
  "No licence has been set": "Nebola nastavená žiadna licencia",
275
+ "No results for these facets": "No results for these facets",
207
276
  "No results": "Žiadne výsledky",
277
+ "no": "nie",
278
+ "No.": "No.",
279
+ "None": "Žiadny",
280
+ "Number of desired classes (default 5)": "Number of desired classes (default 5)",
281
+ "On the bottom": "V spodnej časti",
282
+ "On the left": "Naľavo",
283
+ "On the right": "Napravo",
284
+ "On the top": "V hornej časti",
285
+ "Only visible layers' data": "Only visible layers' data",
286
+ "opacity": "priehľadnosť",
287
+ "Opacity": "Opacity",
288
+ "Open current feature on load": "Open current feature on load",
208
289
  "Open link in…": "Otvoriť odkaz v…",
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": "Otvoriť túto mapovú oblasť v mapovom editore pre presnenie dát v OpenStreetMap",
292
+ "OpenStreetMap": "OpenStreetMap",
210
293
  "Optional intensity property for heatmap": "Voliteľné vlastnosti intenzity pre heatmapu",
211
294
  "Optional. Same as color if not set.": "Nepovinné. Rovnaké ako farba, ak nie je nastavené.",
295
+ "Optional.": "Optional.",
212
296
  "Override clustering radius (default 80)": "Prepísať polomer zhlukovania (predvolené 80)",
213
297
  "Override heatmap radius (default 25)": "Prepísať polomer teplotnej mapy (predvolené 25)",
298
+ "parent window": "nadradené okno",
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.": "Prosíme uistite sa, že licencia je v zhode s tým ako mapu používate.",
215
304
  "Please choose a format": "Prosím, zvoľte formát",
216
305
  "Please enter the name of the property": "Prosím, zadajte názov vlastnosti",
217
306
  "Please enter the new name of this property": "Prosím, zadajte nový názov tejto vlastnosti",
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": "Šablóna obsahu bubliny",
311
+ "Popup shape": "Popup shape",
312
+ "Popup": "Popup",
313
+ "Powered by uMap": "Powered by uMap",
314
+ "previous": "predchádzajúci",
315
+ "Problem in the response": "Problem in the response",
218
316
  "Properties imported:": "Importované vlastnosti:",
219
317
  "Provide an URL here": "Sem vložte odkaz URL",
220
318
  "Proxy request": "Požiadavky cez proxy",
319
+ "Quantiles": "Quantiles",
320
+ "Recent": "Recent",
221
321
  "Remote data": "Vzdialené údaje",
222
322
  "Remove shape from the multi": "Odobrať tvar z multi",
223
323
  "Rename this property on all the features": "Premenovať túto vlastnosť na všetkých objektoch",
224
324
  "Replace layer content": "Nahradiť obsah vrstvy",
225
325
  "Restore this version": "Obnoviť túto verziu",
226
- "Save": "Uložiť",
227
326
  "Save anyway": "Uložiť napriek tomu",
228
327
  "Save current edits": "Uložiť nedávne zmeny",
328
+ "Save map": "Save map",
229
329
  "Save this center and zoom": "Uložiť túto pozíciu mapy a jej priblíženie",
230
330
  "Save this location as new feature": "Uložiť túto polohu ako nový objekt",
331
+ "Save": "Uložiť",
332
+ "Saved center and zoom": "Saved center and zoom",
231
333
  "Search location": "Vyhľadať polohu",
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": "Zobraziť všetko",
233
338
  "See data layers": "See data layers",
234
339
  "See full screen": "Na celú obrazovku",
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": "Vlastnosti tvaru",
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": "Krátky text autorstva",
349
+ "Short link": "Short link",
350
+ "Show this layer in the caption": "Show this layer in the caption",
238
351
  "Show/hide layer": "Ukázať/skryť vrstvu",
352
+ "Side panel": "Bočný panel",
239
353
  "Simple link: [[http://example.com]]": "Jednoduchý odkaz: [[http://priklad.sk]]",
354
+ "Simplify": "Zjednodušiť",
355
+ "Skipping unknown geometry.type: {type}": "Skipping unknown geometry.type: {type}",
240
356
  "Slideshow": "Prezentácia",
241
357
  "Sort key": "Kľúč radenia",
242
358
  "Split line": "Rozdelit čiaru",
359
+ "Star this map": "Star this map",
243
360
  "Start a hole here": "Tu začať dieru",
244
361
  "Start slideshow": "Spustiť prezentáciu",
245
362
  "Stop editing": "Ukončiť úpravy",
246
363
  "Stop slideshow": "Zastaviť prezentáciu",
364
+ "Street": "Street",
365
+ "stroke": "linka",
247
366
  "Supported scheme": "Podporovaná schéma",
248
367
  "Supported variables that will be dynamically replaced": "Podporované premenné, ktoré budú automaticky nahradené",
249
- "TMS format": "Formát TMS",
368
+ "Switch to edit mode": "Switch to edit mode",
369
+ "Symbol": "Symbol",
370
+ "Table": "Tabuľka",
250
371
  "Text color for the cluster label": "Farba textu pre popis zhluku",
251
372
  "Text formatting": "Formátovanie textu",
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": "Formát TMS",
252
377
  "To use if remote server doesn't allow cross domain (slower)": "Použiť keď vzdialený server nepovoľuje cross-domain (pomalšie)",
253
378
  "To zoom": "Max. priblíženie",
379
+ "Toggle edit mode (⇧+Click)": "Toggle edit mode (⇧+Click)",
380
+ "Toggle edit mode": "Toggle edit mode",
254
381
  "Transfer shape to edited feature": "Preniesť tvar do upravovaného objektu",
255
382
  "Transform to lines": "Transformuj na čiary",
256
383
  "Transform to polygon": "Transformuj na mnohouholník",
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": "Typ vrstvy",
258
387
  "Unable to detect format of file {filename}": "Nepodarilo sa rozpoznať formát súboru {filename}",
259
388
  "Untitled layer": "Nepomenovaná vrstva",
260
389
  "Untitled map": "Nepomenovaná mapa",
261
- "Update permissions": "Update permissions",
262
390
  "Update permissions and editors": "Nastaviť prístupové práva a prispievateľov",
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": "Použiť aktuálne hranice",
265
396
  "Use placeholders with feature properties between brackets, eg. {name}, they will be dynamically replaced by the corresponding values.": "Použite zástupné znaky s vlastnosťami objektov medzi zloženými zátvorkami, napr. {name}, a budú dynamicky nahradené zodpovedajúcimi hodnotami.",
266
397
  "User content credits": "Autor používateľského obsahu",
267
398
  "User interface options": "Možnosti používateľského rozhrania",
399
+ "User location": "User location",
400
+ "Verify remote URL": "Verify remote URL",
268
401
  "Versions": "Verzie",
269
402
  "View Fullscreen": "Zobraziť na celú obrazovky",
403
+ "View": "View",
404
+ "Visibility: {status}": "Visibility: {status}",
405
+ "weight": "šírka linky",
270
406
  "Where do we go from here?": "Kam sa dá odtiaľto dostať?",
271
407
  "Whether to display or not polygons paths.": "Či sa má alebo nemá zobraziť cesty polygónov.",
272
408
  "Whether to fill polygons with color.": "Či sa má vyplniť polygón farbou.",
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": "Šírka",
275
413
  "Will be displayed in the bottom right corner of the map": "Bude zobrazené s mapou vpravo dole",
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": "Bude zobrazené v nadpise mapy",
277
416
  "Woops! Someone else seems to have edited the data. You can save anyway, but this will erase the changes made by others.": "Ojoj! Niekto iný medzitým taktiež upravil údaje. Môžete ich napriek tomu uložiť, ale zmažete tak jeho zmeny.",
417
+ "yes": "áno",
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": "Priblížiť",
279
420
  "Zoom level for automatic zooms": "Úroveň priblíženia pre automatické približovanie",
280
421
  "Zoom out": "Oddialiť",
@@ -283,153 +424,16 @@
283
424
  "Zoom to the previous": "Priblížiť k predošlému",
284
425
  "Zoom to this feature": "Priblížiť na tento objekt",
285
426
  "Zoom to this place": "Priblížiť na toto miesto",
286
- "attribution": "autorstvo",
287
- "by": "od",
288
- "display name": "zobraziť názov",
289
- "height": "Výška",
290
- "licence": "licencia",
291
- "max East": "max. Východ",
292
- "max North": "max. Sever",
293
- "max South": "max. Juh",
294
- "max West": "max. Západ",
295
- "max zoom": "max. priblíženie",
296
- "min zoom": "max. oddialenie",
297
- "next": "ďalší",
298
- "previous": "predchádzajúci",
299
- "width": "Šírka",
300
- "{count} errors during import: {message}": "Počet chýb počas importu {count}: {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}": "Počet chýb počas importu {count}: {message}",
433
+ "{delay} seconds": "{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
  }