umap-project 1.14.0a4__py3-none-any.whl → 2.0.0a0__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 (226) hide show
  1. umap/__init__.py +1 -1
  2. umap/decorators.py +0 -14
  3. umap/locale/br/LC_MESSAGES/django.mo +0 -0
  4. umap/locale/br/LC_MESSAGES/django.po +137 -85
  5. umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
  6. umap/locale/cs_CZ/LC_MESSAGES/django.po +136 -84
  7. umap/locale/el/LC_MESSAGES/django.mo +0 -0
  8. umap/locale/el/LC_MESSAGES/django.po +136 -84
  9. umap/locale/en/LC_MESSAGES/django.po +128 -88
  10. umap/locale/es/LC_MESSAGES/django.mo +0 -0
  11. umap/locale/es/LC_MESSAGES/django.po +136 -84
  12. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  13. umap/locale/fr/LC_MESSAGES/django.po +131 -91
  14. umap/locale/hu/LC_MESSAGES/django.mo +0 -0
  15. umap/locale/hu/LC_MESSAGES/django.po +137 -85
  16. umap/locale/it/LC_MESSAGES/django.mo +0 -0
  17. umap/locale/it/LC_MESSAGES/django.po +136 -84
  18. umap/locale/ms/LC_MESSAGES/django.mo +0 -0
  19. umap/locale/ms/LC_MESSAGES/django.po +136 -84
  20. umap/locale/pl/LC_MESSAGES/django.mo +0 -0
  21. umap/locale/pl/LC_MESSAGES/django.po +136 -84
  22. umap/locale/sv/LC_MESSAGES/django.mo +0 -0
  23. umap/locale/sv/LC_MESSAGES/django.po +135 -83
  24. umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
  25. umap/locale/zh_TW/LC_MESSAGES/django.po +143 -91
  26. umap/models.py +23 -1
  27. umap/settings/__init__.py +1 -4
  28. umap/settings/base.py +1 -0
  29. umap/static/umap/base.css +5 -0
  30. umap/static/umap/content.css +185 -13
  31. umap/static/umap/favicons/icon.svg +2 -2
  32. umap/static/umap/img/edit.svg +3 -3
  33. umap/static/umap/img/icon-delete.svg +4 -0
  34. umap/static/umap/img/icon-download.svg +13 -0
  35. umap/static/umap/img/icon-duplicate.svg +5 -0
  36. umap/static/umap/img/icon-edit.svg +12 -0
  37. umap/static/umap/img/icon-share.svg +11 -0
  38. umap/static/umap/img/icon-view.svg +12 -0
  39. umap/static/umap/img/logo.svg +2 -2
  40. umap/static/umap/img/logo_small.svg +2 -2
  41. umap/static/umap/img/marker.svg +4 -0
  42. umap/static/umap/img/opensource.svg +2 -2
  43. umap/static/umap/img/osm.svg +2 -2
  44. umap/static/umap/js/components/fragment.js +1 -1
  45. umap/static/umap/js/modules/browser.js +159 -0
  46. umap/static/umap/js/modules/global.js +3 -1
  47. umap/static/umap/js/modules/request.js +155 -0
  48. umap/static/umap/js/umap.autocomplete.js +28 -38
  49. umap/static/umap/js/umap.controls.js +73 -58
  50. umap/static/umap/js/umap.core.js +4 -9
  51. umap/static/umap/js/umap.datalayer.permissions.js +13 -12
  52. umap/static/umap/js/umap.features.js +51 -49
  53. umap/static/umap/js/umap.forms.js +19 -19
  54. umap/static/umap/js/umap.icon.js +17 -17
  55. umap/static/umap/js/umap.importer.js +2 -1
  56. umap/static/umap/js/umap.js +242 -291
  57. umap/static/umap/js/umap.layer.js +173 -140
  58. umap/static/umap/js/umap.permissions.js +24 -25
  59. umap/static/umap/js/umap.popup.js +14 -14
  60. umap/static/umap/js/umap.share.js +4 -4
  61. umap/static/umap/js/umap.slideshow.js +4 -4
  62. umap/static/umap/js/umap.tableeditor.js +2 -2
  63. umap/static/umap/js/umap.ui.js +1 -1
  64. umap/static/umap/locale/am_ET.js +1 -11
  65. umap/static/umap/locale/am_ET.json +1 -11
  66. umap/static/umap/locale/ar.js +1 -11
  67. umap/static/umap/locale/ar.json +1 -11
  68. umap/static/umap/locale/ast.js +1 -11
  69. umap/static/umap/locale/ast.json +1 -11
  70. umap/static/umap/locale/bg.js +1 -11
  71. umap/static/umap/locale/bg.json +1 -11
  72. umap/static/umap/locale/br.js +1 -11
  73. umap/static/umap/locale/br.json +1 -11
  74. umap/static/umap/locale/ca.js +1 -11
  75. umap/static/umap/locale/ca.json +1 -11
  76. umap/static/umap/locale/cs_CZ.js +1 -11
  77. umap/static/umap/locale/cs_CZ.json +1 -11
  78. umap/static/umap/locale/da.js +1 -11
  79. umap/static/umap/locale/da.json +1 -11
  80. umap/static/umap/locale/de.js +1 -11
  81. umap/static/umap/locale/de.json +1 -11
  82. umap/static/umap/locale/el.js +1 -11
  83. umap/static/umap/locale/el.json +1 -11
  84. umap/static/umap/locale/en.js +1 -11
  85. umap/static/umap/locale/en.json +1 -11
  86. umap/static/umap/locale/en_US.json +1 -11
  87. umap/static/umap/locale/es.js +1 -11
  88. umap/static/umap/locale/es.json +1 -11
  89. umap/static/umap/locale/et.js +1 -11
  90. umap/static/umap/locale/et.json +1 -11
  91. umap/static/umap/locale/fa_IR.js +6 -16
  92. umap/static/umap/locale/fa_IR.json +6 -16
  93. umap/static/umap/locale/fi.js +1 -11
  94. umap/static/umap/locale/fi.json +1 -11
  95. umap/static/umap/locale/fr.js +1 -11
  96. umap/static/umap/locale/fr.json +1 -11
  97. umap/static/umap/locale/gl.js +1 -11
  98. umap/static/umap/locale/gl.json +1 -11
  99. umap/static/umap/locale/he.js +1 -11
  100. umap/static/umap/locale/he.json +1 -11
  101. umap/static/umap/locale/hr.js +1 -11
  102. umap/static/umap/locale/hr.json +1 -11
  103. umap/static/umap/locale/hu.js +1 -11
  104. umap/static/umap/locale/hu.json +1 -11
  105. umap/static/umap/locale/id.js +1 -11
  106. umap/static/umap/locale/id.json +1 -11
  107. umap/static/umap/locale/is.js +1 -11
  108. umap/static/umap/locale/is.json +1 -11
  109. umap/static/umap/locale/it.js +1 -11
  110. umap/static/umap/locale/it.json +1 -11
  111. umap/static/umap/locale/ja.js +1 -11
  112. umap/static/umap/locale/ja.json +1 -11
  113. umap/static/umap/locale/ko.js +1 -11
  114. umap/static/umap/locale/ko.json +1 -11
  115. umap/static/umap/locale/lt.js +1 -11
  116. umap/static/umap/locale/lt.json +1 -11
  117. umap/static/umap/locale/ms.js +1 -11
  118. umap/static/umap/locale/ms.json +1 -11
  119. umap/static/umap/locale/nl.js +1 -11
  120. umap/static/umap/locale/nl.json +1 -11
  121. umap/static/umap/locale/no.js +1 -11
  122. umap/static/umap/locale/no.json +1 -11
  123. umap/static/umap/locale/pl.js +1 -11
  124. umap/static/umap/locale/pl.json +1 -11
  125. umap/static/umap/locale/pl_PL.json +1 -11
  126. umap/static/umap/locale/pt.js +1 -11
  127. umap/static/umap/locale/pt.json +1 -11
  128. umap/static/umap/locale/pt_BR.js +1 -11
  129. umap/static/umap/locale/pt_BR.json +1 -11
  130. umap/static/umap/locale/pt_PT.js +1 -11
  131. umap/static/umap/locale/pt_PT.json +1 -11
  132. umap/static/umap/locale/ro.js +1 -11
  133. umap/static/umap/locale/ro.json +1 -11
  134. umap/static/umap/locale/ru.js +1 -11
  135. umap/static/umap/locale/ru.json +1 -11
  136. umap/static/umap/locale/sk_SK.js +1 -11
  137. umap/static/umap/locale/sk_SK.json +1 -11
  138. umap/static/umap/locale/sl.js +1 -11
  139. umap/static/umap/locale/sl.json +1 -11
  140. umap/static/umap/locale/sr.js +1 -11
  141. umap/static/umap/locale/sr.json +1 -11
  142. umap/static/umap/locale/sv.js +1 -11
  143. umap/static/umap/locale/sv.json +1 -11
  144. umap/static/umap/locale/th_TH.js +1 -11
  145. umap/static/umap/locale/th_TH.json +1 -11
  146. umap/static/umap/locale/tr.js +1 -11
  147. umap/static/umap/locale/tr.json +1 -11
  148. umap/static/umap/locale/uk_UA.js +1 -11
  149. umap/static/umap/locale/uk_UA.json +1 -11
  150. umap/static/umap/locale/vi.js +1 -11
  151. umap/static/umap/locale/vi.json +1 -11
  152. umap/static/umap/locale/vi_VN.json +1 -11
  153. umap/static/umap/locale/zh.js +1 -11
  154. umap/static/umap/locale/zh.json +1 -11
  155. umap/static/umap/locale/zh_CN.json +1 -11
  156. umap/static/umap/locale/zh_TW.Big5.json +1 -11
  157. umap/static/umap/locale/zh_TW.js +17 -27
  158. umap/static/umap/locale/zh_TW.json +17 -27
  159. umap/static/umap/map.css +2 -2
  160. umap/static/umap/nav.css +2 -1
  161. umap/static/umap/test/.eslintrc +0 -1
  162. umap/static/umap/test/Choropleth.js +29 -27
  163. umap/static/umap/test/DataLayer.js +207 -239
  164. umap/static/umap/test/Feature.js +33 -58
  165. umap/static/umap/test/Map.Export.js +11 -11
  166. umap/static/umap/test/Map.js +66 -67
  167. umap/static/umap/test/Marker.js +36 -32
  168. umap/static/umap/test/Polygon.js +95 -95
  169. umap/static/umap/test/Polyline.js +31 -31
  170. umap/static/umap/test/TableEditor.js +29 -25
  171. umap/static/umap/test/_pre.js +2 -7
  172. umap/static/umap/test/index.html +4 -4
  173. umap/static/umap/vendors/contextmenu/leaflet.contextmenu.css +54 -0
  174. umap/static/umap/vendors/contextmenu/leaflet.contextmenu.js +586 -0
  175. umap/static/umap/vendors/csv2geojson/index.js +259 -0
  176. umap/static/umap/vendors/dompurify/purify.js +1633 -0
  177. umap/static/umap/vendors/locatecontrol/L.Control.Locate.css +63 -0
  178. umap/static/umap/vendors/locatecontrol/L.Control.Locate.js +950 -0
  179. umap/static/umap/vendors/minimap/Control.MiniMap.css +88 -0
  180. umap/static/umap/vendors/minimap/Control.MiniMap.js +352 -0
  181. umap/static/umap/vendors/togeojson/togeojson.js +2 -0
  182. umap/templates/auth/user_form.html +3 -2
  183. umap/templates/base.html +1 -0
  184. umap/templates/registration/login.html +51 -36
  185. umap/templates/umap/about_summary.html +1 -1
  186. umap/templates/umap/branding.html +3 -0
  187. umap/templates/umap/content.html +15 -39
  188. umap/templates/umap/header.html +0 -0
  189. umap/templates/umap/home.html +4 -2
  190. umap/templates/umap/js.html +0 -1
  191. umap/templates/umap/map_detail.html +9 -0
  192. umap/templates/umap/map_init.html +1 -1
  193. umap/templates/umap/map_messages.html +4 -2
  194. umap/templates/umap/map_table.html +130 -69
  195. umap/templates/umap/navigation.html +2 -4
  196. umap/templates/umap/user_dashboard.html +29 -6
  197. umap/tests/base.py +1 -1
  198. umap/tests/integration/conftest.py +18 -0
  199. umap/tests/integration/test_anonymous_owned_map.py +6 -3
  200. umap/tests/integration/test_browser.py +166 -6
  201. umap/tests/integration/test_collaborative_editing.py +142 -0
  202. umap/tests/integration/test_dashboard.py +17 -0
  203. umap/tests/integration/test_edit_datalayer.py +4 -3
  204. umap/tests/integration/test_export_map.py +1 -1
  205. umap/tests/integration/test_import.py +9 -4
  206. umap/tests/integration/test_map.py +64 -0
  207. umap/tests/integration/test_map_preview.py +75 -0
  208. umap/tests/integration/test_owned_map.py +11 -25
  209. umap/tests/integration/test_picto.py +3 -3
  210. umap/tests/integration/test_querystring.py +52 -0
  211. umap/tests/integration/test_share.py +22 -0
  212. umap/tests/test_map_views.py +157 -14
  213. umap/tests/test_merge_features.py +5 -5
  214. umap/tests/test_views.py +50 -11
  215. umap/urls.py +6 -12
  216. umap/utils.py +1 -1
  217. umap/views.py +170 -47
  218. {umap_project-1.14.0a4.dist-info → umap_project-2.0.0a0.dist-info}/METADATA +13 -15
  219. {umap_project-1.14.0a4.dist-info → umap_project-2.0.0a0.dist-info}/RECORD +222 -200
  220. umap/static/umap/js/umap.browser.js +0 -148
  221. umap/static/umap/js/umap.xhr.js +0 -304
  222. umap/static/umap/test/Controls.js +0 -100
  223. umap/static/umap/test/Map.Init.js +0 -46
  224. {umap_project-1.14.0a4.dist-info → umap_project-2.0.0a0.dist-info}/WHEEL +0 -0
  225. {umap_project-1.14.0a4.dist-info → umap_project-2.0.0a0.dist-info}/entry_points.txt +0 -0
  226. {umap_project-1.14.0a4.dist-info → umap_project-2.0.0a0.dist-info}/licenses/LICENSE +0 -0
@@ -16,7 +16,7 @@ msgid ""
16
16
  msgstr ""
17
17
  "Project-Id-Version: uMap\n"
18
18
  "Report-Msgid-Bugs-To: \n"
19
- "POT-Creation-Date: 2024-01-08 12:33+0000\n"
19
+ "POT-Creation-Date: 2024-02-09 10:52+0000\n"
20
20
  "PO-Revision-Date: 2013-11-22 14:00+0000\n"
21
21
  "Last-Translator: Jiří Podhorecký, 2023\n"
22
22
  "Language-Team: Czech (Czech Republic) (http://app.transifex.com/openstreetmap/umap/language/cs_CZ/)\n"
@@ -34,7 +34,7 @@ msgstr "Lze upravovat jen pomocí tajného odkazu"
34
34
  msgid "Everyone can edit"
35
35
  msgstr "Kdokoli může editovat"
36
36
 
37
- #: forms.py:69 models.py:349
37
+ #: forms.py:69 models.py:371
38
38
  msgid "Inherit"
39
39
  msgstr "Zdědit"
40
40
 
@@ -42,107 +42,107 @@ msgstr "Zdědit"
42
42
  msgid "Site is readonly for maintenance"
43
43
  msgstr "Stránka je jen ke čtení kvůli údržbě"
44
44
 
45
- #: models.py:49
45
+ #: models.py:50
46
46
  msgid "name"
47
47
  msgstr "název"
48
48
 
49
- #: models.py:80
49
+ #: models.py:81
50
50
  msgid "details"
51
51
  msgstr "podrobnosti"
52
52
 
53
- #: models.py:81
53
+ #: models.py:82
54
54
  msgid "Link to a page where the licence is detailed."
55
55
  msgstr "Odkaz na stránku s podrobnějším popisem licence."
56
56
 
57
- #: models.py:91
57
+ #: models.py:92
58
58
  msgid "URL template using OSM tile format"
59
59
  msgstr "Vzor URL ve formátu pro dlaždice OSM "
60
60
 
61
- #: models.py:97
61
+ #: models.py:98
62
62
  msgid "Order of the tilelayers in the edit box"
63
63
  msgstr "Pořadí vrstev při editaci"
64
64
 
65
- #: models.py:143 models.py:350
65
+ #: models.py:144 models.py:372
66
66
  msgid "Everyone"
67
67
  msgstr "Kdokoli"
68
68
 
69
- #: models.py:144 models.py:150 models.py:351
69
+ #: models.py:145 models.py:151 models.py:373
70
70
  msgid "Editors only"
71
71
  msgstr "Jen přispěvatelé"
72
72
 
73
- #: models.py:145 models.py:352
73
+ #: models.py:146 models.py:374
74
74
  msgid "Owner only"
75
75
  msgstr "Jen vlastník"
76
76
 
77
- #: models.py:148
77
+ #: models.py:149
78
78
  msgid "Everyone (public)"
79
79
  msgstr "Kdokoli (veřejná)"
80
80
 
81
- #: models.py:149
81
+ #: models.py:150
82
82
  msgid "Anyone with link"
83
83
  msgstr "Kdokoli kdo má odkaz"
84
84
 
85
- #: models.py:151
85
+ #: models.py:152
86
86
  msgid "Blocked"
87
87
  msgstr "Blokováno"
88
88
 
89
- #: models.py:154 models.py:356
89
+ #: models.py:155 models.py:378
90
90
  msgid "description"
91
91
  msgstr "popis"
92
92
 
93
- #: models.py:155
93
+ #: models.py:156
94
94
  msgid "center"
95
95
  msgstr "střed"
96
96
 
97
- #: models.py:156
97
+ #: models.py:157
98
98
  msgid "zoom"
99
99
  msgstr "přiblížení"
100
100
 
101
- #: models.py:158
101
+ #: models.py:159
102
102
  msgid "locate"
103
103
  msgstr "lokalizuj"
104
104
 
105
- #: models.py:158
105
+ #: models.py:159
106
106
  msgid "Locate user on load?"
107
107
  msgstr "Najdi poluhu uživatele na startu?"
108
108
 
109
- #: models.py:162
109
+ #: models.py:163
110
110
  msgid "Choose the map licence."
111
111
  msgstr "Vyberte si licenci mapy."
112
112
 
113
- #: models.py:163
113
+ #: models.py:164
114
114
  msgid "licence"
115
115
  msgstr "licence"
116
116
 
117
- #: models.py:174
117
+ #: models.py:175
118
118
  msgid "owner"
119
119
  msgstr "vlastník"
120
120
 
121
- #: models.py:178
121
+ #: models.py:179
122
122
  msgid "editors"
123
123
  msgstr "přispěvovatelé"
124
124
 
125
- #: models.py:183 models.py:370
125
+ #: models.py:184 models.py:392
126
126
  msgid "edit status"
127
127
  msgstr "kdo může provádět úpravy"
128
128
 
129
- #: models.py:188
129
+ #: models.py:189
130
130
  msgid "share status"
131
131
  msgstr "nastavení sdílení"
132
132
 
133
- #: models.py:191 models.py:365
133
+ #: models.py:192 models.py:387
134
134
  msgid "settings"
135
135
  msgstr "nastavení"
136
136
 
137
- #: models.py:298
137
+ #: models.py:320
138
138
  msgid "Clone of"
139
139
  msgstr "Kopie"
140
140
 
141
- #: models.py:360
141
+ #: models.py:382
142
142
  msgid "display on load"
143
143
  msgstr "zobrazit při startu"
144
144
 
145
- #: models.py:361
145
+ #: models.py:383
146
146
  msgid "Display this layer on load."
147
147
  msgstr "Zobrazit tuto vrstvu na startu."
148
148
 
@@ -160,28 +160,27 @@ msgstr "Prohlížej si mapy uživatele %(current_user)s'"
160
160
  msgid "%(current_user)s has no maps."
161
161
  msgstr "%(current_user)s nemá mapy."
162
162
 
163
- #: templates/auth/user_form.html:6 templates/umap/navigation.html:12
164
- #: templates/umap/user_dashboard.html:4 templates/umap/user_dashboard.html:10
165
- msgid "My Dashboard"
166
- msgstr "Můj ovládací panel"
167
-
168
163
  #: templates/auth/user_form.html:6
164
+ msgid "My Maps"
165
+ msgstr ""
166
+
167
+ #: templates/auth/user_form.html:7
169
168
  msgid "My Profile"
170
169
  msgstr "Můj profil"
171
170
 
172
- #: templates/auth/user_form.html:19
171
+ #: templates/auth/user_form.html:20
173
172
  msgid "Save"
174
173
  msgstr "Uložit"
175
174
 
176
- #: templates/auth/user_form.html:24
175
+ #: templates/auth/user_form.html:25
177
176
  msgid "Your current providers"
178
177
  msgstr "Vaši současní poskytovatelé"
179
178
 
180
- #: templates/auth/user_form.html:30
179
+ #: templates/auth/user_form.html:31
181
180
  msgid "Connect to another provider"
182
181
  msgstr "Připojit se k jinému poskytovateli"
183
182
 
184
- #: templates/auth/user_form.html:32
183
+ #: templates/auth/user_form.html:33
185
184
  msgid ""
186
185
  "It's a good habit to connect your account to more than one provider, in case"
187
186
  " one provider becomes unavailable, temporarily or even permanently."
@@ -203,23 +202,23 @@ msgid ""
203
202
  "them in your site."
204
203
  msgstr "uMap umožňuje vytvářet mapy s vrstvami OpenStreetMap za okamžik a vložit je do svých stránek."
205
204
 
206
- #: templates/registration/login.html:3
205
+ #: templates/registration/login.html:16
207
206
  msgid "Please log in with your account"
208
207
  msgstr "Přihlaste se prosím k účtu"
209
208
 
210
- #: templates/registration/login.html:15
209
+ #: templates/registration/login.html:28
211
210
  msgid "Username"
212
211
  msgstr "Uživatelské jméno"
213
212
 
214
- #: templates/registration/login.html:18
213
+ #: templates/registration/login.html:31
215
214
  msgid "Password"
216
215
  msgstr "Heslo"
217
216
 
218
- #: templates/registration/login.html:19
217
+ #: templates/registration/login.html:32
219
218
  msgid "Login"
220
219
  msgstr "Přihlásit se"
221
220
 
222
- #: templates/registration/login.html:24
221
+ #: templates/registration/login.html:37
223
222
  msgid "Please choose a provider"
224
223
  msgstr "Vyberte poskytovatele mapy"
225
224
 
@@ -263,8 +262,8 @@ msgstr "Sdílejte a vložte svou mapu do jiných webů"
263
262
  msgid "And it's <a href=\"%(repo_url)s\">open source</a>!"
264
263
  msgstr "A je to celé <a href=\"%(repo_url)s\">open source</a>!"
265
264
 
266
- #: templates/umap/about_summary.html:48 templates/umap/navigation.html:42
267
- #: templates/umap/user_dashboard.html:20
265
+ #: templates/umap/about_summary.html:48 templates/umap/navigation.html:40
266
+ #: templates/umap/user_dashboard.html:41
268
267
  msgid "Create a map"
269
268
  msgstr "Vytvořit mapu"
270
269
 
@@ -272,13 +271,13 @@ msgstr "Vytvořit mapu"
272
271
  msgid "Play with the demo"
273
272
  msgstr "Vyzkoušejte si to hned"
274
273
 
275
- #: templates/umap/content.html:23
274
+ #: templates/umap/content.html:22
276
275
  msgid ""
277
276
  "This instance of uMap is currently in read only mode, no creation/edit is "
278
277
  "allowed."
279
278
  msgstr "Tato instance uMap je aktuálně v režimu pouze pro čtení, není povoleno žádné vytváření/úpravy."
280
279
 
281
- #: templates/umap/content.html:31
280
+ #: templates/umap/content.html:30
282
281
  #, python-format
283
282
  msgid ""
284
283
  "This is a demo instance, used for tests and pre-rolling releases. If you "
@@ -291,7 +290,7 @@ msgstr "Toto je ukázková verze, používaná na testování nových vydání u
291
290
  msgid "Map of the uMaps"
292
291
  msgstr "Mapa všch uMap"
293
292
 
294
- #: templates/umap/home.html:13
293
+ #: templates/umap/home.html:14
295
294
  msgid "Get inspired, browse maps"
296
295
  msgstr "Inspirujte se, koukněte na mapy jiných"
297
296
 
@@ -299,7 +298,7 @@ msgstr "Inspirujte se, koukněte na mapy jiných"
299
298
  msgid "You are logged in. Continuing..."
300
299
  msgstr "Jste přihlášeni. Jedeme dál ..."
301
300
 
302
- #: templates/umap/map_list.html:9 views.py:296
301
+ #: templates/umap/map_list.html:9 views.py:341
303
302
  msgid "by"
304
303
  msgstr ", autor:"
305
304
 
@@ -316,86 +315,118 @@ msgid "Preview"
316
315
  msgstr ""
317
316
 
318
317
  #: templates/umap/map_table.html:7
319
- msgid "Who can see / edit"
320
- msgstr "Kdo může zobrazit / upravit"
318
+ msgid "Who can see"
319
+ msgstr ""
321
320
 
322
321
  #: templates/umap/map_table.html:8
322
+ msgid "Who can edit"
323
+ msgstr ""
324
+
325
+ #: templates/umap/map_table.html:9
323
326
  msgid "Last save"
324
327
  msgstr "Poslední uložení"
325
328
 
326
- #: templates/umap/map_table.html:9
329
+ #: templates/umap/map_table.html:10
327
330
  msgid "Owner"
328
331
  msgstr "Vlastník"
329
332
 
330
- #: templates/umap/map_table.html:10
333
+ #: templates/umap/map_table.html:11
331
334
  msgid "Actions"
332
335
  msgstr "Akce"
333
336
 
334
- #: templates/umap/map_table.html:22
337
+ #: templates/umap/map_table.html:24 templates/umap/map_table.html:26
335
338
  msgid "Open preview"
336
339
  msgstr ""
337
340
 
338
- #: templates/umap/map_table.html:38
341
+ #: templates/umap/map_table.html:45 templates/umap/map_table.html:47
339
342
  msgid "Share"
340
343
  msgstr "Sdílet"
341
344
 
342
- #: templates/umap/map_table.html:39
345
+ #: templates/umap/map_table.html:50 templates/umap/map_table.html:52
343
346
  msgid "Edit"
344
347
  msgstr "Upravit"
345
348
 
346
- #: templates/umap/map_table.html:40
349
+ #: templates/umap/map_table.html:55 templates/umap/map_table.html:57
347
350
  msgid "Download"
348
351
  msgstr "Stažení"
349
352
 
350
- #: templates/umap/map_table.html:49
353
+ #: templates/umap/map_table.html:62 templates/umap/map_table.html:64
354
+ msgid "Clone"
355
+ msgstr ""
356
+
357
+ #: templates/umap/map_table.html:72 templates/umap/map_table.html:74
358
+ msgid "Delete"
359
+ msgstr ""
360
+
361
+ #: templates/umap/map_table.html:86
351
362
  msgid "first"
352
363
  msgstr ""
353
364
 
354
- #: templates/umap/map_table.html:50
365
+ #: templates/umap/map_table.html:87
355
366
  msgid "previous"
356
367
  msgstr ""
357
368
 
358
- #: templates/umap/map_table.html:59
369
+ #: templates/umap/map_table.html:96
359
370
  #, python-format
360
371
  msgid ""
361
372
  "\n"
362
- " Page %(maps_number)s of %(num_pages)s\n"
363
- " "
373
+ " Page %(maps_number)s of %(num_pages)s\n"
374
+ " "
364
375
  msgstr ""
365
376
 
366
- #: templates/umap/map_table.html:65
377
+ #: templates/umap/map_table.html:102
367
378
  msgid "next"
368
379
  msgstr ""
369
380
 
370
- #: templates/umap/map_table.html:66
381
+ #: templates/umap/map_table.html:103
371
382
  msgid "last"
372
383
  msgstr ""
373
384
 
374
- #: templates/umap/navigation.html:15
385
+ #: templates/umap/map_table.html:111
386
+ #, python-format
387
+ msgid ""
388
+ "\n"
389
+ " Lines per page: %(per_page)s\n"
390
+ " "
391
+ msgstr ""
392
+
393
+ #: templates/umap/map_table.html:116
394
+ #, python-format
395
+ msgid ""
396
+ "\n"
397
+ " %(count)s maps\n"
398
+ " "
399
+ msgstr ""
400
+
401
+ #: templates/umap/navigation.html:10 templates/umap/user_dashboard.html:4
402
+ msgid "My Dashboard"
403
+ msgstr "Můj ovládací panel"
404
+
405
+ #: templates/umap/navigation.html:13
375
406
  msgid "Starred maps"
376
407
  msgstr "Mapy označené hvězdičkou"
377
408
 
378
- #: templates/umap/navigation.html:19
409
+ #: templates/umap/navigation.html:17
379
410
  msgid "Log in"
380
411
  msgstr "Přihlásit se"
381
412
 
382
- #: templates/umap/navigation.html:19
413
+ #: templates/umap/navigation.html:17
383
414
  msgid "Sign in"
384
415
  msgstr "Registrovat"
385
416
 
386
- #: templates/umap/navigation.html:23
417
+ #: templates/umap/navigation.html:21
387
418
  msgid "About"
388
419
  msgstr "O uMap"
389
420
 
390
- #: templates/umap/navigation.html:26
421
+ #: templates/umap/navigation.html:24
391
422
  msgid "Help"
392
423
  msgstr "Nápověda"
393
424
 
394
- #: templates/umap/navigation.html:31
425
+ #: templates/umap/navigation.html:29
395
426
  msgid "Change password"
396
427
  msgstr "Změnit heslo"
397
428
 
398
- #: templates/umap/navigation.html:35
429
+ #: templates/umap/navigation.html:33
399
430
  msgid "Log out"
400
431
  msgstr "Odhlásit se"
401
432
 
@@ -454,7 +485,7 @@ msgstr "Nedávno vytvořené mapy"
454
485
  msgid "Search maps"
455
486
  msgstr "Prohledávejte mapy"
456
487
 
457
- #: templates/umap/search_bar.html:14
488
+ #: templates/umap/search_bar.html:14 templates/umap/user_dashboard.html:25
458
489
  msgid "Search"
459
490
  msgstr "Hledej"
460
491
 
@@ -462,60 +493,81 @@ msgstr "Hledej"
462
493
  msgid "Search my maps"
463
494
  msgstr "Prohledávat moje mapy"
464
495
 
465
- #: templates/umap/user_dashboard.html:10
496
+ #: templates/umap/user_dashboard.html:11
497
+ #, python-format
498
+ msgid "My Maps (%(count)s)"
499
+ msgstr ""
500
+
501
+ #: templates/umap/user_dashboard.html:13
466
502
  msgid "My profile"
467
503
  msgstr "Můj profil"
468
504
 
469
- #: templates/umap/user_dashboard.html:20
505
+ #: templates/umap/user_dashboard.html:21
506
+ msgid "Map’s title"
507
+ msgstr ""
508
+
509
+ #: templates/umap/user_dashboard.html:31
510
+ #, python-format
511
+ msgid ""
512
+ "\n"
513
+ " Download %(count)s maps\n"
514
+ " "
515
+ msgstr ""
516
+
517
+ #: templates/umap/user_dashboard.html:41
470
518
  msgid "You have no map yet."
471
519
  msgstr "Zatím nemáte žádnou mapu."
472
520
 
473
- #: views.py:301
521
+ #: views.py:346
474
522
  msgid "View the map"
475
523
  msgstr "Prohlídnout si tuto mapu"
476
524
 
477
- #: views.py:660
525
+ #: views.py:704
526
+ msgid "See full screen"
527
+ msgstr ""
528
+
529
+ #: views.py:779
478
530
  msgid "Map has been updated!"
479
531
  msgstr "Mapa byla aktualizována!"
480
532
 
481
- #: views.py:685
533
+ #: views.py:804
482
534
  msgid "Map editors updated with success!"
483
535
  msgstr "Seznam přispěvovatelů byl úspěšně upraven!"
484
536
 
485
- #: views.py:723
537
+ #: views.py:842
486
538
  #, python-format
487
539
  msgid "The uMap edit link for your map: %(map_name)s"
488
540
  msgstr "Odkaz na úpravu uMap pro vaši mapu: %(map_name)s"
489
541
 
490
- #: views.py:726
542
+ #: views.py:845
491
543
  #, python-format
492
544
  msgid "Here is your secret edit link: %(link)s"
493
545
  msgstr "Zde je váš tajný odkaz na úpravu: %(link)s"
494
546
 
495
- #: views.py:732
547
+ #: views.py:851
496
548
  #, python-format
497
549
  msgid "Email sent to %(email)s"
498
550
  msgstr "E-mail odeslán na %(email)s"
499
551
 
500
- #: views.py:743
552
+ #: views.py:862
501
553
  msgid "Only its owner can delete the map."
502
554
  msgstr "Jen vlastník může vymzat tuto mapu."
503
555
 
504
- #: views.py:766
556
+ #: views.py:890
505
557
  #, python-format
506
558
  msgid ""
507
559
  "Your map has been cloned! If you want to edit this map from another "
508
560
  "computer, please use this link: %(anonymous_url)s"
509
561
  msgstr "Byla vytvořena kopie mapy! Pokud chcete upravovat tuto mapu z jiného počítače, použijte tento odkaz: %(anonymous_url)s"
510
562
 
511
- #: views.py:771
563
+ #: views.py:895
512
564
  msgid "Congratulations, your map has been cloned!"
513
565
  msgstr "Gratulujeme, byla vytvořena kopie mapy!"
514
566
 
515
- #: views.py:1007
567
+ #: views.py:1131
516
568
  msgid "Layer successfully deleted."
517
569
  msgstr "Vrstva úspěšně vymazána."
518
570
 
519
- #: views.py:1029
571
+ #: views.py:1153
520
572
  msgid "Permissions updated with success!"
521
573
  msgstr "Oprávnění úspěšně aktualizována!"
Binary file