umap-project 1.14.0a1__py3-none-any.whl → 1.14.0a2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of umap-project might be problematic. Click here for more details.

Files changed (182) hide show
  1. umap/__init__.py +1 -1
  2. umap/static/.gitignore +0 -0
  3. umap/static/umap/base.css +994 -0
  4. umap/static/umap/bitbucket.png +0 -0
  5. umap/static/umap/content.css +395 -0
  6. umap/static/umap/favicons/apple-touch-icon.png +0 -0
  7. umap/static/umap/favicons/favicon.ico +0 -0
  8. umap/static/umap/favicons/icon-192.png +0 -0
  9. umap/static/umap/favicons/icon-512.png +0 -0
  10. umap/static/umap/favicons/icon.svg +5 -0
  11. umap/static/umap/font/FiraSans-Light.woff +0 -0
  12. umap/static/umap/font/FiraSans-Light.woff2 +0 -0
  13. umap/static/umap/font/FiraSans-LightItalic.woff +0 -0
  14. umap/static/umap/font/FiraSans-LightItalic.woff2 +0 -0
  15. umap/static/umap/font/FiraSans-SemiBold.woff +0 -0
  16. umap/static/umap/font/FiraSans-SemiBold.woff2 +0 -0
  17. umap/static/umap/font.css +33 -0
  18. umap/static/umap/github.png +0 -0
  19. umap/static/umap/img/16-white.svg +190 -0
  20. umap/static/umap/img/16.svg +182 -0
  21. umap/static/umap/img/24-white.svg +62 -0
  22. umap/static/umap/img/24.svg +90 -0
  23. umap/static/umap/img/edit.svg +7 -0
  24. umap/static/umap/img/icon-bg.png +0 -0
  25. umap/static/umap/img/logo.svg +4 -0
  26. umap/static/umap/img/logo_filigree.png +0 -0
  27. umap/static/umap/img/logo_small.svg +14 -0
  28. umap/static/umap/img/marker.png +0 -0
  29. umap/static/umap/img/opensource.svg +7 -0
  30. umap/static/umap/img/osm.svg +7 -0
  31. umap/static/umap/img/search.gif +0 -0
  32. umap/static/umap/img/source/16-white.svg +980 -0
  33. umap/static/umap/img/source/16.svg +201 -0
  34. umap/static/umap/img/source/24-white.svg +83 -0
  35. umap/static/umap/img/source/24.svg +110 -0
  36. umap/static/umap/js/components/fragment.js +13 -0
  37. umap/static/umap/js/modules/global.js +8 -0
  38. umap/static/umap/js/modules/urls.js +29 -0
  39. umap/static/umap/js/umap.autocomplete.js +336 -0
  40. umap/static/umap/js/umap.browser.js +148 -0
  41. umap/static/umap/js/umap.controls.js +1542 -0
  42. umap/static/umap/js/umap.core.js +851 -0
  43. umap/static/umap/js/umap.datalayer.permissions.js +72 -0
  44. umap/static/umap/js/umap.features.js +1216 -0
  45. umap/static/umap/js/umap.forms.js +1267 -0
  46. umap/static/umap/js/umap.icon.js +234 -0
  47. umap/static/umap/js/umap.importer.js +166 -0
  48. umap/static/umap/js/umap.js +2010 -0
  49. umap/static/umap/js/umap.layer.js +1636 -0
  50. umap/static/umap/js/umap.permissions.js +212 -0
  51. umap/static/umap/js/umap.popup.js +340 -0
  52. umap/static/umap/js/umap.share.js +254 -0
  53. umap/static/umap/js/umap.slideshow.js +165 -0
  54. umap/static/umap/js/umap.tableeditor.js +120 -0
  55. umap/static/umap/js/umap.ui.js +240 -0
  56. umap/static/umap/js/umap.xhr.js +304 -0
  57. umap/static/umap/locale/am_ET.js +447 -0
  58. umap/static/umap/locale/am_ET.json +445 -0
  59. umap/static/umap/locale/ar.js +447 -0
  60. umap/static/umap/locale/ar.json +445 -0
  61. umap/static/umap/locale/ast.js +447 -0
  62. umap/static/umap/locale/ast.json +445 -0
  63. umap/static/umap/locale/bg.js +447 -0
  64. umap/static/umap/locale/bg.json +445 -0
  65. umap/static/umap/locale/br.js +447 -0
  66. umap/static/umap/locale/br.json +445 -0
  67. umap/static/umap/locale/ca.js +447 -0
  68. umap/static/umap/locale/ca.json +445 -0
  69. umap/static/umap/locale/cs_CZ.js +447 -0
  70. umap/static/umap/locale/cs_CZ.json +445 -0
  71. umap/static/umap/locale/da.js +447 -0
  72. umap/static/umap/locale/da.json +445 -0
  73. umap/static/umap/locale/de.js +447 -0
  74. umap/static/umap/locale/de.json +445 -0
  75. umap/static/umap/locale/el.js +447 -0
  76. umap/static/umap/locale/el.json +445 -0
  77. umap/static/umap/locale/en.js +447 -0
  78. umap/static/umap/locale/en.json +445 -0
  79. umap/static/umap/locale/en_US.json +445 -0
  80. umap/static/umap/locale/es.js +447 -0
  81. umap/static/umap/locale/es.json +445 -0
  82. umap/static/umap/locale/et.js +447 -0
  83. umap/static/umap/locale/et.json +445 -0
  84. umap/static/umap/locale/eu.js +413 -0
  85. umap/static/umap/locale/eu.json +411 -0
  86. umap/static/umap/locale/fa_IR.js +447 -0
  87. umap/static/umap/locale/fa_IR.json +445 -0
  88. umap/static/umap/locale/fi.js +447 -0
  89. umap/static/umap/locale/fi.json +445 -0
  90. umap/static/umap/locale/fr.js +447 -0
  91. umap/static/umap/locale/fr.json +445 -0
  92. umap/static/umap/locale/gl.js +447 -0
  93. umap/static/umap/locale/gl.json +445 -0
  94. umap/static/umap/locale/he.js +447 -0
  95. umap/static/umap/locale/he.json +445 -0
  96. umap/static/umap/locale/hr.js +447 -0
  97. umap/static/umap/locale/hr.json +445 -0
  98. umap/static/umap/locale/hu.js +447 -0
  99. umap/static/umap/locale/hu.json +445 -0
  100. umap/static/umap/locale/id.js +447 -0
  101. umap/static/umap/locale/id.json +445 -0
  102. umap/static/umap/locale/is.js +447 -0
  103. umap/static/umap/locale/is.json +445 -0
  104. umap/static/umap/locale/it.js +447 -0
  105. umap/static/umap/locale/it.json +445 -0
  106. umap/static/umap/locale/ja.js +447 -0
  107. umap/static/umap/locale/ja.json +445 -0
  108. umap/static/umap/locale/ko.js +447 -0
  109. umap/static/umap/locale/ko.json +445 -0
  110. umap/static/umap/locale/lt.js +447 -0
  111. umap/static/umap/locale/lt.json +445 -0
  112. umap/static/umap/locale/ms.js +447 -0
  113. umap/static/umap/locale/ms.json +445 -0
  114. umap/static/umap/locale/nl.js +447 -0
  115. umap/static/umap/locale/nl.json +445 -0
  116. umap/static/umap/locale/no.js +447 -0
  117. umap/static/umap/locale/no.json +445 -0
  118. umap/static/umap/locale/pl.js +447 -0
  119. umap/static/umap/locale/pl.json +445 -0
  120. umap/static/umap/locale/pl_PL.json +445 -0
  121. umap/static/umap/locale/pt.js +447 -0
  122. umap/static/umap/locale/pt.json +445 -0
  123. umap/static/umap/locale/pt_BR.js +447 -0
  124. umap/static/umap/locale/pt_BR.json +445 -0
  125. umap/static/umap/locale/pt_PT.js +447 -0
  126. umap/static/umap/locale/pt_PT.json +445 -0
  127. umap/static/umap/locale/ro.js +447 -0
  128. umap/static/umap/locale/ro.json +445 -0
  129. umap/static/umap/locale/ru.js +447 -0
  130. umap/static/umap/locale/ru.json +445 -0
  131. umap/static/umap/locale/si.js +439 -0
  132. umap/static/umap/locale/si.json +437 -0
  133. umap/static/umap/locale/sk_SK.js +447 -0
  134. umap/static/umap/locale/sk_SK.json +445 -0
  135. umap/static/umap/locale/sl.js +447 -0
  136. umap/static/umap/locale/sl.json +445 -0
  137. umap/static/umap/locale/sr.js +447 -0
  138. umap/static/umap/locale/sr.json +445 -0
  139. umap/static/umap/locale/sv.js +447 -0
  140. umap/static/umap/locale/sv.json +445 -0
  141. umap/static/umap/locale/th_TH.js +447 -0
  142. umap/static/umap/locale/th_TH.json +445 -0
  143. umap/static/umap/locale/tr.js +447 -0
  144. umap/static/umap/locale/tr.json +445 -0
  145. umap/static/umap/locale/uk_UA.js +447 -0
  146. umap/static/umap/locale/uk_UA.json +445 -0
  147. umap/static/umap/locale/vi.js +447 -0
  148. umap/static/umap/locale/vi.json +445 -0
  149. umap/static/umap/locale/vi_VN.json +445 -0
  150. umap/static/umap/locale/zh.js +447 -0
  151. umap/static/umap/locale/zh.json +445 -0
  152. umap/static/umap/locale/zh_CN.json +445 -0
  153. umap/static/umap/locale/zh_TW.Big5.json +445 -0
  154. umap/static/umap/locale/zh_TW.js +447 -0
  155. umap/static/umap/locale/zh_TW.json +445 -0
  156. umap/static/umap/map.css +1843 -0
  157. umap/static/umap/nav.css +81 -0
  158. umap/static/umap/openstreetmap.png +0 -0
  159. umap/static/umap/test/.eslintrc +22 -0
  160. umap/static/umap/test/Choropleth.js +243 -0
  161. umap/static/umap/test/Controls.js +100 -0
  162. umap/static/umap/test/DataLayer.js +495 -0
  163. umap/static/umap/test/Feature.js +382 -0
  164. umap/static/umap/test/Map.Export.js +106 -0
  165. umap/static/umap/test/Map.Init.js +46 -0
  166. umap/static/umap/test/Map.js +342 -0
  167. umap/static/umap/test/Marker.js +122 -0
  168. umap/static/umap/test/Permissions.js +74 -0
  169. umap/static/umap/test/Polygon.js +367 -0
  170. umap/static/umap/test/Polyline.js +402 -0
  171. umap/static/umap/test/TableEditor.js +100 -0
  172. umap/static/umap/test/URLs.js +54 -0
  173. umap/static/umap/test/Util.js +549 -0
  174. umap/static/umap/test/_pre.js +460 -0
  175. umap/static/umap/test/index.html +135 -0
  176. umap/static/umap/theme.css +1 -0
  177. umap/static/umap/twitter.png +0 -0
  178. {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/METADATA +1 -1
  179. {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/RECORD +182 -6
  180. {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/WHEEL +0 -0
  181. {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/entry_points.txt +0 -0
  182. {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,445 @@
1
+ {
2
+ "Allow scroll wheel zoom?": "Pozwalać na przybliżanie kółkiem?",
3
+ "Automatic": "Automatyczny",
4
+ "Ball": "Pinezka",
5
+ "Cancel": "Anuluj",
6
+ "Caption": "Podpis",
7
+ "Choose the data format": "Wybierz format danych",
8
+ "Choose the layer of the feature": "Wybierz warstwę obiektu",
9
+ "Circle": "Kółko",
10
+ "Clustered": "Zgrupowane",
11
+ "Data browser": "Przeglądanie danych",
12
+ "Default": "Domyślne",
13
+ "Default zoom level": "Domyślne przybliżenie",
14
+ "Default: name": "Domyślnie: name",
15
+ "Display label": "Wyświetl etykietę",
16
+ "Display the control to open OpenStreetMap editor": "Wyświetlaj panel otwierający edytor OSM",
17
+ "Display the data layers control": "Wyświetlaj panel warstw z danymi",
18
+ "Display the embed control": "Wyświetlaj panel sterujący osadzaniem",
19
+ "Display the fullscreen control": "Wyświetlaj panel widoku pełnoekranowego",
20
+ "Display the locate control": "Wyświetlaj panel lokalizacji",
21
+ "Display the measure control": "Wyświetlaj panel miarek",
22
+ "Display the search control": "Wyświetlaj panel wyszukiwania",
23
+ "Display the tile layers control": "Wyświetlaj panel warstw kafelków",
24
+ "Display the zoom control": "Wyświetlaj panel sterujący powiększeniem",
25
+ "Do you want to display a caption bar?": "Wyświetlać pasek z nagłówkiem?",
26
+ "Do you want to display a minimap?": "Wyświetlać minimapę?",
27
+ "Do you want to display a panel on load?": "Wyświetlać panel po załadowaniu?",
28
+ "Do you want to display popup footer?": "Wyświetlać stopkę dymku?",
29
+ "Do you want to display the scale control?": "Wyświetlać kontrolkę ze skalą?",
30
+ "Do you want to display the «more» control?": "Wyświetlać „więcej kontrolek”?",
31
+ "Drop": "Kropla",
32
+ "GeoRSS (only link)": "GeoRSS (tylko link)",
33
+ "GeoRSS (title + image)": "GeoRSS (tytuł i obrazek)",
34
+ "Heatmap": "Mapa cieplna",
35
+ "Icon shape": "Kształt ikony",
36
+ "Icon symbol": "Symbol ikony",
37
+ "Inherit": "Dziedziczne",
38
+ "Label direction": "Kierunek etykiety",
39
+ "Label key": "Klucz etykiety",
40
+ "Labels are clickable": "Etykiety są klikalne",
41
+ "None": "Brak",
42
+ "On the bottom": "Na dole",
43
+ "On the left": "Po lewej",
44
+ "On the right": "Po prawej",
45
+ "On the top": "Na górze",
46
+ "Popup content template": "Szablon treści dymku",
47
+ "Side panel": "Panel boczny",
48
+ "Simplify": "Uprość",
49
+ "Table": "Tabela",
50
+ "always": "zawsze",
51
+ "clear": "wyczyść",
52
+ "collapsed": "zwinięty",
53
+ "color": "kolor",
54
+ "dash array": "przerywana linia",
55
+ "define": "określ",
56
+ "description": "opis",
57
+ "expanded": "rozwinięty",
58
+ "fill": "wypełnienie",
59
+ "fill color": "kolor wypełnienia",
60
+ "fill opacity": "stopień wypełnienia",
61
+ "hidden": "ukryte",
62
+ "iframe": "iframe",
63
+ "inherit": "dziedziczny",
64
+ "name": "nazwa",
65
+ "never": "nigdy",
66
+ "new window": "nowe okno",
67
+ "no": "nie",
68
+ "on hover": "po najechaniu",
69
+ "opacity": "przeźroczystość",
70
+ "parent window": "to samo okno",
71
+ "stroke": "obramowanie",
72
+ "weight": "waga",
73
+ "yes": "tak",
74
+ "{delay} seconds": "{delay} sekund",
75
+ "# one hash for main heading": "# jeden krzyżyk – nagłówek pierwszego poziomu",
76
+ "## two hashes for second heading": "## dwa krzyżyki – nagłówek drugiego poziomu",
77
+ "### three hashes for third heading": "### trzy krzyżyki – nagłówek trzeciego poziomu",
78
+ "**double star for bold**": "**podwójna gwiazdka do pogrubienia**",
79
+ "A comma separated list of numbers that defines the stroke dash pattern. Ex.: \"5, 10, 15\".": "Rozdzielona przecinkami lista liczb, która definiuje wzór kreski linii, np. „5, 10, 15”.",
80
+ "About": "Informacje",
81
+ "Action not allowed :(": "Operacja niedozwolona :(",
82
+ "Activate slideshow mode": "Aktywuj pokaz slajdów",
83
+ "Add a layer": "Dodaj warstwę",
84
+ "Add a line to the current multi": "Dodaj linię do wybranego obszaru",
85
+ "Add a new property": "Dodaj nową właściwość",
86
+ "Add a polygon to the current multi": "Dodaj wielobok do wybranego obszaru",
87
+ "Advanced actions": "Zaawansowane operacje",
88
+ "Advanced properties": "Zaawansowane właściwości",
89
+ "All properties are imported.": "Importowane są wszystkie właściwości.",
90
+ "Allow interactions": "Zezwalaj na interakcję",
91
+ "An error occured": "Wystąpił błąd",
92
+ "Are you sure you want to cancel your changes?": "Na pewno chcesz porzucić swoje zmiany?",
93
+ "Are you sure you want to clone this map and all its datalayers?": "Na pewno chcesz sklonować tę mapę razem z jej warstwami?",
94
+ "Are you sure you want to delete the feature?": "Na pewno chcesz usunąć ten obiekt?",
95
+ "Are you sure you want to delete this layer?": "Na pewno chcesz usunąć tę warstwę?",
96
+ "Are you sure you want to delete this map?": "Na pewno chcesz usunąć tą mapę?",
97
+ "Are you sure you want to delete this property on all the features?": "Na pewno chcesz usunąć tę właściwość we wszystkich obiektach?",
98
+ "Are you sure you want to restore this version?": "Na pewno chcesz przywrócić tę wersję?",
99
+ "Attach the map to my account": "Dołącz mapę do mojego konta",
100
+ "Auto": "Auto",
101
+ "Autostart when map is loaded": "Autostart po załadowaniu mapy",
102
+ "Bring feature to center": "Przenieś obiekt do środka",
103
+ "Browse data": "Przeglądaj dane",
104
+ "Cancel edits": "Anuluj edycje",
105
+ "Center map on your location": "Wyśrodkuj mapę na twojej lokalizacji",
106
+ "Change map background": "Zmień podkład mapy",
107
+ "Change tilelayers": "Zmień podkład",
108
+ "Choose a preset": "Wybierz szablon",
109
+ "Choose the format of the data to import": "Wybierz format importowanych danych",
110
+ "Choose the layer to import in": "Wybierz warstwę docelową",
111
+ "Click last point to finish shape": "Kliknij ostatni punkt, aby zakończyć rysowanie",
112
+ "Click to add a marker": "Kliknij, aby dodać znacznik",
113
+ "Click to continue drawing": "Kliknij, aby kontynuować rysowanie",
114
+ "Click to edit": "Kliknij, aby edytować",
115
+ "Click to start drawing a line": "Kliknij, aby zacząć rysować linię",
116
+ "Click to start drawing a polygon": "Kliknij, aby zacząć rysować obszar",
117
+ "Clone": "Klonuj",
118
+ "Clone of {name}": "Sklonowane z {name}",
119
+ "Clone this feature": "Sklonuj ten obiekt",
120
+ "Clone this map": "Sklonuj mapę",
121
+ "Close": "Zamknij",
122
+ "Clustering radius": "Promień grupowania",
123
+ "Comma separated list of properties to use when filtering features": "Lista właściwości oddzielona przecinkiem do używania przy sortowaniu obiektów",
124
+ "Comma, tab or semi-colon separated values. SRS WGS84 is implied. Only Point geometries are imported. The import will look at the column headers for any mention of «lat» and «lon» at the begining of the header, case insensitive. All other column are imported as properties.": "Wartości powinny być oddzielone przecinkiem, średnikiem lub znakiem tabulacji. Układ współrzędnych WGS84 jest wymagany. Tylko geometrie typu punkt zostaną zaimportowane. Import sprawdzi nagłówki kolumn czy zawierają „lat” i „lon” na początku nagłówka, wielkość liter nie ma znaczenia. Wszystkie inne kolumny zostaną zaimportowane jako właściwości tych punktów.",
125
+ "Continue line": "Kontynuuj linię",
126
+ "Continue line (Ctrl+Click)": "Kontynuuj linię (Ctrl+Klik)",
127
+ "Coordinates": "Współrzędne",
128
+ "Credits": "Źródło",
129
+ "Current view instead of default map view?": "Obecny widok mapy zamiast domyślnego?",
130
+ "Custom background": "Własne tło",
131
+ "Data is browsable": "Dane można przeglądać",
132
+ "Default interaction options": "Domyślne ustawienia interakcji",
133
+ "Default properties": "Domyślne właściwości",
134
+ "Default shape properties": "Domyślne właściwości kształtu",
135
+ "Define link to open in a new window on polygon click.": "Ustaw odnośnik, który otworzy się w nowym oknie po kliknięciu wielokąta.",
136
+ "Delay between two transitions when in play mode": "Opóźnienie pomiędzy dwoma przejściami w trybie odtwarzania",
137
+ "Delete": "Usuń",
138
+ "Delete all layers": "Usuń wszystkie warstwy",
139
+ "Delete layer": "Usuń warstwę",
140
+ "Delete this feature": "Usuń ten obiekt",
141
+ "Delete this property on all the features": "Usuń tę właściwość ze wszystkich obiektów",
142
+ "Delete this shape": "Usuń tę figurę",
143
+ "Delete this vertex (Alt+Click)": "Usuń ten wierzchołek (Alt+Klik)",
144
+ "Directions from here": "Kierunki stąd",
145
+ "Display measure": "Wyświetl pomiar",
146
+ "Display on load": "Wyświetl przy ładowaniu",
147
+ "Download": "Pobieranie",
148
+ "Drag to reorder": "Przeciągnij, by zmienić kolejność",
149
+ "Draw a marker": "Dodaj znacznik",
150
+ "Draw a polygon": "Rysuj obszar",
151
+ "Draw a polyline": "Rysuj linię",
152
+ "Dynamic": "Dynamiczne",
153
+ "Dynamic properties": "Właściwości dynamiczne",
154
+ "Edit": "Edytuj",
155
+ "Edit feature's layer": "Edytuj warstwę z obiektami",
156
+ "Edit map properties": "Edytuj właściwości mapy",
157
+ "Edit properties in a table": "Edytuj właściwości w tabeli",
158
+ "Edit this feature": "Edytuj ten obiekt",
159
+ "Embed the map": "Osadź mapę na stronie",
160
+ "Empty": "Wyczyść",
161
+ "Error in the tilelayer URL": "Błąd w adresie URL podkładu",
162
+ "Error while fetching {url}": "Błąd wczytywania {url}",
163
+ "Exit Fullscreen": "Zamknij pełny ekran",
164
+ "Extract shape to separate feature": "Wydziel figurę jako odrębny obiekt",
165
+ "Fetch data each time map view changes.": "Załaduj dane za każdym razem, gdy zmienia się widok mapy.",
166
+ "Filter keys": "Klucze filtrów",
167
+ "Format": "Format",
168
+ "From zoom": "Od przybliżenia",
169
+ "Go to «{feature}»": "Idź do „{feature}”",
170
+ "Heatmap intensity property": "Intensywność mapy cieplnej",
171
+ "Heatmap radius": "Promień mapy cieplnej",
172
+ "Help": "Pomoc",
173
+ "Hide controls": "Ukryj przyciski",
174
+ "Home": "Strona główna",
175
+ "How much to simplify the polyline on each zoom level (more = better performance and smoother look, less = more accurate)": "Jak bardzo uprościć obszar na każdym poziomie przybliżenia (więcej = większa wydajność i gładki wygląd, mniej = większa dokładność)",
176
+ "Iframe with custom height (in px): {{{http://iframe.url.com|height}}}": "Ramka z podaną wysokością (w pikselach) {{{http://iframe.url.com|height}}}",
177
+ "Iframe with custom height and width (in px): {{{http://iframe.url.com|height*width}}}": "Ramka z podaną wysokością i szerokością (w pikselach): {{{http://iframe.url.com|height*width}}}",
178
+ "Iframe: {{{http://iframe.url.com}}}": "Ramka: {{{http://iframe.url.com}}}",
179
+ "Image with custom width (in px): {{http://image.url.com|width}}": "Obrazek z własną szerokością (w pikselach) {{http://image.url.com|width}}",
180
+ "Image: {{http://image.url.com}}": "Obrazek: {{http://image.url.com}}",
181
+ "Import": "Importuj",
182
+ "Import data": "Importuj dane",
183
+ "Import in a new layer": "Importuj do nowej warstwy",
184
+ "Imports all umap data, including layers and settings.": "Import wszystkich danych umap, razem z warstwami i ustawieniami.",
185
+ "Include full screen link?": "Dołączyć link do pełnego ekranu?",
186
+ "Interaction options": "Opcje interakcji",
187
+ "Invalid umap data": "Niepoprawne dane umap",
188
+ "Invalid umap data in {filename}": "Niepoprawne dane umap w {filename}",
189
+ "Keep current visible layers": "Zachowaj obecnie widoczne warstwy",
190
+ "Latitude": "Szerokość geograficzna",
191
+ "Layer": "Warstwa",
192
+ "Layer properties": "Ustawienia warstwy",
193
+ "Licence": "Licencja",
194
+ "Limit bounds": "Limit granic",
195
+ "Link to…": "Łącze do...",
196
+ "Link with text: [[http://example.com|text of the link]]": "Link z tekstem: [[http://example.com|tekst]]",
197
+ "Long credits": "Długie źródło",
198
+ "Longitude": "Długość geograficzna",
199
+ "Make main shape": "Narysuj główny kształt",
200
+ "Manage layers": "Zarządzaj warstwami",
201
+ "Map background credits": "Źródło tła mapy",
202
+ "Map has been attached to your account": "Mapa została dołączona do twojego konta",
203
+ "Map has been saved!": "Mapa została zapisana!",
204
+ "Map user content has been published under licence": "Zawartość mapy użytkownika została opublikowana pod licencją",
205
+ "Map's editors": "Edytorzy mapy",
206
+ "Map's owner": "Właściciel mapy",
207
+ "Merge lines": "Połącz linie",
208
+ "More controls": "Więcej przycisków",
209
+ "Must be a valid CSS value (eg.: DarkBlue or #123456)": "Musi być prawidłową wartością CSS (np. DarkBlue lub #123456)",
210
+ "No licence has been set": "Nie wybrano licencji",
211
+ "No results": "Brak wyników",
212
+ "Open link in…": "Otwieraj odnośnik w...",
213
+ "Open this map extent in a map editor to provide more accurate data to OpenStreetMap": "Otwórz ten zakres mapy w edytorze, by wprowadzić do OpenStreetMap dokładniejsze dane",
214
+ "Optional intensity property for heatmap": "Opcjonalna intensywność mapy cieplnej",
215
+ "Optional. Same as color if not set.": "Opcjonalne. Taki sam jak kolor, jeśli nie podano.",
216
+ "Override clustering radius (default 80)": "Nadpisz promień grupowania (domyślnie 80)",
217
+ "Override heatmap radius (default 25)": "Nadpisz promień mapy cieplnej (domyślnie 25)",
218
+ "Please be sure the licence is compliant with your use.": "Upewnij się, że korzystanie z tych danych jest zgodne z licencją.",
219
+ "Please choose a format": "Wybierz format",
220
+ "Please enter the name of the property": "Podaj nazwę właściwości",
221
+ "Please enter the new name of this property": "Podaj nową nazwę tej właściwości",
222
+ "Problem in the response": "Problem z odpowiedzią",
223
+ "Problem in the response format": "Problem z formatem odpowiedzi",
224
+ "Properties imported:": "Importowane właściwości:",
225
+ "Provide an URL here": "Wprowadź tutaj adres URL",
226
+ "Proxy request": "Żądanie proxy",
227
+ "Remote data": "Zdalne dane",
228
+ "Remove shape from the multi": "Usuń figurę z wybranego obszaru",
229
+ "Rename this property on all the features": "Zmień nazwę tej właściwości we wszystkich obiektach",
230
+ "Replace layer content": "Zamień zawartość warstwy",
231
+ "Restore this version": "Przywróć tę wersję",
232
+ "Save": "Zapisz",
233
+ "Save anyway": "Zapisz mimo wszystko",
234
+ "Save current edits": "Zapisz obecne edycje",
235
+ "Save this center and zoom": "Zapisz obecną pozycję i przybliżenie",
236
+ "Save this location as new feature": "Zapisz to miejsce jako nowy obiekt",
237
+ "Search location": "Znajdź miejsce",
238
+ "See all": "Pokaż wszystko",
239
+ "See data layers": "Zobacz wszystkie warstwy danych",
240
+ "See full screen": "Pełny ekran",
241
+ "Set it to false to hide this layer from the slideshow, the data browser, the popup navigation…": "Ustaw „OFF”, żeby ukryć tę warstwę z pokazu slajdów, przeglądarki danych i okienek nawigacji.",
242
+ "Shape properties": "Właściwości kształtu",
243
+ "Short credits": "Krótkie źródło",
244
+ "Show/hide layer": "Pokaż/ukryj warstwę",
245
+ "Simple link: [[http://example.com]]": "Prosty link: [[http://example.com]]",
246
+ "Slideshow": "Pokaz slajdów",
247
+ "Sort key": "Klucz sortowania",
248
+ "Split line": "Podziel linię",
249
+ "Start a hole here": "Zacznij dziurę tutaj",
250
+ "Start slideshow": "Rozpocznij pokaz",
251
+ "Stop editing": "Zakończ edycję",
252
+ "Stop slideshow": "Zakończ pokaz",
253
+ "Supported scheme": "Obsługiwany schemat",
254
+ "Supported variables that will be dynamically replaced": "Obsługiwane zmienne zostaną dynamicznie zamienione",
255
+ "TMS format": "Format TMS",
256
+ "Text color for the cluster label": "Kolor tekstu etykiety grupy",
257
+ "Text formatting": "Formatowanie tekstu",
258
+ "To use if remote server doesn't allow cross domain (slower)": "Używaj, jeśli zdalny serwer nie zezwala na cross domain (wolne)",
259
+ "To zoom": "Przybliżać",
260
+ "Transfer shape to edited feature": "Dołącz figurę do edytowanego obiektu",
261
+ "Transform to lines": "Przekształć na linie",
262
+ "Transform to polygon": "Przekształć w wielokąt",
263
+ "Type of layer": "Typ warstwy",
264
+ "Unable to detect format of file {filename}": "Nie można wykryć formatu pliku {filename}",
265
+ "Untitled layer": "Warstwa bez nazwy",
266
+ "Untitled map": "Mapa bez nazwy",
267
+ "Update permissions": "Zaktualizuj uprawnienia",
268
+ "Update permissions and editors": "Aktualizuj uprawnienia i edytorów",
269
+ "Url": "Adres URL",
270
+ "Use current bounds": "Użyj bieżących granic",
271
+ "Use placeholders with feature properties between brackets, eg. {name}, they will be dynamically replaced by the corresponding values.": "Użyj nazw pól z właściwości obiektu w klamrach, np. {name}. Zostaną automatycznie zastąpione przez odpowiadające im wartości.",
272
+ "User content credits": "Źródło treści użytkownika",
273
+ "User interface options": "Opcje interfejsu",
274
+ "Versions": "Wersje",
275
+ "View Fullscreen": "Włącz tryb pełnoekranowy",
276
+ "Where do we go from here?": "Gdzie można stąd pojechać?",
277
+ "Whether to display or not polygons paths.": "Czy wyświetlać obrysy obszarów.",
278
+ "Whether to fill polygons with color.": "Czy wypełniać obszary kolorem.",
279
+ "Who can edit": "Kto może edytować",
280
+ "Who can view": "Kto może zobaczyć",
281
+ "Will be displayed in the bottom right corner of the map": "Będzie wyświetlone w prawym dolnym rogu mapy",
282
+ "Will be visible in the caption of the map": "Będzie widoczne w nagłówku mapy",
283
+ "Woops! Someone else seems to have edited the data. You can save anyway, but this will erase the changes made by others.": "Ups! Ktoś jeszcze edytował dane. Możesz mimo wszystko zapisać, ale to usunie zmiany dokonane przez innych.",
284
+ "Zoom in": "Przybliż",
285
+ "Zoom level for automatic zooms": "Poziom automatycznych przybliżeń",
286
+ "Zoom out": "Oddal",
287
+ "Zoom to layer extent": "Przybliż do warstwy",
288
+ "Zoom to the next": "Przybliż do następnego",
289
+ "Zoom to the previous": "Przybliż do poprzedniego",
290
+ "Zoom to this feature": "Przybliż do tego obiektu",
291
+ "Zoom to this place": "Przybliż do tego miejsca",
292
+ "attribution": "oznaczenie autorstwa",
293
+ "by": " ",
294
+ "display name": "wyświetl nazwę",
295
+ "height": "wysokość",
296
+ "licence": "licencja",
297
+ "max East": "granica wschodnia",
298
+ "max North": "granica północna",
299
+ "max South": "granica południowa",
300
+ "max West": "granica zachodnia",
301
+ "max zoom": "maksymalne powiększenie",
302
+ "min zoom": "minimalne powiększenie",
303
+ "next": "następne",
304
+ "previous": "poprzednie",
305
+ "width": "szerokość",
306
+ "{count} errors during import: {message}": "{count} błędów podczas importu: {message}",
307
+ "Measure distances": "Pomiar odległości",
308
+ "NM": "NM",
309
+ "kilometers": "kilometry",
310
+ "km": "km",
311
+ "mi": "mi",
312
+ "miles": "mile",
313
+ "nautical miles": "mile morskie",
314
+ "1 day": "1 dzień",
315
+ "1 hour": "1 godzina",
316
+ "5 min": "5 minut",
317
+ "Cache proxied request": "Zapytanie pośredniczące pamięci podręcznej",
318
+ "No cache": "Brak pamięci podręcznej",
319
+ "Popup": "Wyskakujące okienko",
320
+ "Popup (large)": "Wyskakujące okienko (duże)",
321
+ "Popup content style": "Styl zawartości wyskakującego okienka",
322
+ "Popup shape": "Kształt wyskakującego okienka",
323
+ "Skipping unknown geometry.type: {type}": "Pomijanie nieznanego rodzaju geometrii: {type}",
324
+ "Optional.": "Opcjonalnie.",
325
+ "Paste your data here": "Wklej tutaj swoje dane",
326
+ "Please save the map first": "Prosimy najpierw zapisać mapę",
327
+ "Feature identifier key": "Klucz identyfikacyjny obiektu",
328
+ "Open current feature on load": "Otwórz bieżący obiekt po załadowaniu",
329
+ "Permalink": "Bezpośredni odnośnik.",
330
+ "The name of the property to use as feature unique identifier.": "Nazwa właściwości używana jako unikalny identyfikator obiektu.",
331
+ "Do you want to display caption menus?": "Do you want to display caption menus?",
332
+ "Example: key1,key2,key3": "Example: key1,key2,key3",
333
+ "Invalid latitude or longitude": "Invalid latitude or longitude",
334
+ "Invalide property name: {name}": "Invalide property name: {name}",
335
+ "Permanent credits": "Permanent credits",
336
+ "Permanent credits background": "Permanent credits background",
337
+ "Select data": "Select data",
338
+ "Will be permanently visible in the bottom left corner of the map": "Will be permanently visible in the bottom left corner of the map",
339
+ "{area} acres": "{area} akrów",
340
+ "{area} ha": "{area} ha",
341
+ "{area} m²": "{area} m²",
342
+ "{area} mi²": "{area} mi²",
343
+ "{area} yd²": "{area} jardów kwadratowych",
344
+ "{distance} NM": "{distance} Mm",
345
+ "{distance} km": "{distance} km",
346
+ "{distance} m": "{odległość} m",
347
+ "{distance} miles": "{odległość} mil",
348
+ "{distance} yd": "{odległość} jardów",
349
+ " (area: {measure})": "(obszar: {measure})",
350
+ " (length: {measure})": "(długość: {measure})",
351
+ "Animated transitions": "Animowane przejścia",
352
+ "Background overlay url": "Background overlay url",
353
+ "Custom overlay": "Custom overlay",
354
+ "Display the star map button": "Display the star map button",
355
+ "Error in the overlay URL": "Error in the overlay URL",
356
+ "Map has been starred": "Mapa została oznaczona gwiazdką",
357
+ "Map has been unstarred": "Mapa została usunięta z oznaczonych gwiazdką",
358
+ "Opacity": "Nieprzezroczystość",
359
+ "Star this map": "Oznacz mapę gwiazdką",
360
+ "Symbol can be either a unicode character or an URL. You can use feature properties as variables: ex.: with \"http://myserver.org/images/{name}.png\", the {name} variable will be replaced by the \"name\" value of each marker.": "Symbol can be either a unicode character or an URL. You can use feature properties as variables: ex.: with \"http://myserver.org/images/{name}.png\", the {name} variable will be replaced by the \"name\" value of each marker.",
361
+ "Direct link": "Bezpośredni link",
362
+ "The zoom and center have been modified.": "Przybliżenie i pozycja zostały zmienione.",
363
+ "Congratulations, your map has been created!": "Gratulacje, twoja mapa została utworzona!",
364
+ "Copy link": "Skopiuj link",
365
+ "Email": "Email",
366
+ "Secret edit link copied to clipboard!": "Tajny odnośnik do edycji skopiowany do schowka!",
367
+ "Send me the link": "Wyślij mi link",
368
+ "Your map has been created! As you are not logged in, here is your secret link to edit the map, please keep it safe:": "Your map has been created! As you are not logged in, here is your secret link to edit the map, please keep it safe:",
369
+ "Comma separated list of properties to use for sorting features. To reverse the sort, put a minus sign (-) before. Eg. mykey,-otherkey.": "Comma separated list of properties to use for sorting features. To reverse the sort, put a minus sign (-) before. Eg. mykey,-otherkey.",
370
+ "Toggle edit mode (⇧+Click)": "Przełącz tryb edycji (Shift+Klik)",
371
+ "icon opacity": "nieprzezroczystość ikony",
372
+ "*single star for italic*": "*pojedyncza gwiazdka dla kursywy*",
373
+ "--- for a horizontal rule": "--- for a horizontal rule",
374
+ "The name of the property to use as feature label (eg.: \"nom\"). You can also use properties inside brackets to use more than one or mix with static content (eg.: \"{name} in {place}\")": "The name of the property to use as feature label (eg.: \"nom\"). You can also use properties inside brackets to use more than one or mix with static content (eg.: \"{name} in {place}\")",
375
+ "Comma separated list of properties to use for facet search (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key)": "Comma separated list of properties to use for facet search (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key)",
376
+ "Default view": "Domyślny widok",
377
+ "Facet keys": "Facet keys",
378
+ "Facet search": "Facet search",
379
+ "Feature properties": "Feature properties",
380
+ "Issue reaching that URL (network problem or CORS protection): {url}": "Issue reaching that URL (network problem or CORS protection): {url}",
381
+ "Latest feature": "Latest feature",
382
+ "No results for these facets": "Brak wyników dla tych aspektów",
383
+ "Saved center and zoom": "Zapisano pozycję i przybliżenie",
384
+ "User location": "Lokalizacja użytkownika",
385
+ "Visibility: {status}": "Widoczność: {status}",
386
+ "Fit all data": "Fit all data",
387
+ "Verify remote URL": "Zweryfikuj zdalny URL",
388
+ "Add": "Dodawać",
389
+ "Change": "Zmiana",
390
+ "Powered by uMap": "Napędzane przez uMap",
391
+ "Search": "Szukaj",
392
+ "Datalayers": "Warstwy danych",
393
+ "Secret edit link:": "Sekretny odnośnik edycji:",
394
+ "Who can edit \"{layer}\"": "Kto może edytować \"{layer}\"",
395
+ "Current map view": "Bieżący widok mapy",
396
+ "Filter": "Filtr",
397
+ "Choropleth": "Choropleth",
398
+ "Choropleth breakpoints": "Choropleth breakpoints",
399
+ "Choropleth classes": "Choropleth classes",
400
+ "Choropleth color palette": "Choropleth color palette",
401
+ "Choropleth mode": "Choropleth mode",
402
+ "Choropleth property value": "Choropleth property value",
403
+ "Comma separated list of numbers, including min and max values.": "Comma separated list of numbers, including min and max values.",
404
+ "Equidistant": "Equidistant",
405
+ "Jenks-Fisher": "Jenks-Fisher",
406
+ "K-means": "K-means",
407
+ "Manual": "Manual",
408
+ "Number of desired classes (default 5)": "Number of desired classes (default 5)",
409
+ "Quantiles": "Quantiles",
410
+ "Show this layer in the caption": "Pokaż tę warstwę w podpisie",
411
+ "Back to preview": "Back to preview",
412
+ "Drawing": "Drawing",
413
+ "Edit the title of the map": "Edit the title of the map",
414
+ "Go to the homepage": "Go to the homepage",
415
+ "Switch to edit mode": "Switch to edit mode",
416
+ "Update who can see and edit the map": "Update who can see and edit the map",
417
+ "View": "View",
418
+ "Add image URL": "Add image URL",
419
+ "Emoji & Character": "Emoji & Character",
420
+ "Generic": "Generic",
421
+ "Symbol": "Symbol",
422
+ "Type char or paste emoji": "Type char or paste emoji",
423
+ "URL": "URL",
424
+ "If false, the polygon or line will act as a part of the underlying map.": "If false, the polygon or line will act as a part of the underlying map.",
425
+ "Save map": "Save map",
426
+ "Toggle edit mode": "Toggle edit mode",
427
+ "All data and settings of the map": "All data and settings of the map",
428
+ "Embed and link options": "Embed and link options",
429
+ "Go to \"{coords}\"": "Go to \"{coords}\"",
430
+ "Link to view the map": "Link to view the map",
431
+ "No.": "No.",
432
+ "Only visible layers' data": "Only visible layers' data",
433
+ "Open share & download panel": "Open share & download panel",
434
+ "OpenStreetMap": "OpenStreetMap",
435
+ "See on OpenStreetMap": "See on OpenStreetMap",
436
+ "Share and download": "Share and download",
437
+ "Share this link to open a customized map view": "Share this link to open a customized map view",
438
+ "Short link": "Short link",
439
+ "Street": "Street",
440
+ "Type a place name or coordinates": "Type a place name or coordinates",
441
+ "copy": "copy",
442
+ "full backup": "full backup",
443
+ "settings": "settings",
444
+ "{count} features in this layer": "{count} features in this layer"
445
+ }