umap-project 2.5.1__py3-none-any.whl → 2.6.0b0__py3-none-any.whl

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

Potentially problematic release.


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

Files changed (193) hide show
  1. umap/__init__.py +1 -1
  2. umap/admin.py +6 -1
  3. umap/context_processors.py +2 -1
  4. umap/decorators.py +13 -2
  5. umap/forms.py +26 -2
  6. umap/locale/br/LC_MESSAGES/django.mo +0 -0
  7. umap/locale/br/LC_MESSAGES/django.po +252 -146
  8. umap/locale/ca/LC_MESSAGES/django.mo +0 -0
  9. umap/locale/ca/LC_MESSAGES/django.po +274 -162
  10. umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
  11. umap/locale/cs_CZ/LC_MESSAGES/django.po +261 -150
  12. umap/locale/de/LC_MESSAGES/django.mo +0 -0
  13. umap/locale/de/LC_MESSAGES/django.po +299 -187
  14. umap/locale/el/LC_MESSAGES/django.mo +0 -0
  15. umap/locale/el/LC_MESSAGES/django.po +215 -159
  16. umap/locale/en/LC_MESSAGES/django.po +211 -155
  17. umap/locale/es/LC_MESSAGES/django.mo +0 -0
  18. umap/locale/es/LC_MESSAGES/django.po +255 -144
  19. umap/locale/eu/LC_MESSAGES/django.mo +0 -0
  20. umap/locale/eu/LC_MESSAGES/django.po +254 -198
  21. umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
  22. umap/locale/fa_IR/LC_MESSAGES/django.po +346 -234
  23. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  24. umap/locale/fr/LC_MESSAGES/django.po +216 -160
  25. umap/locale/hu/LC_MESSAGES/django.mo +0 -0
  26. umap/locale/hu/LC_MESSAGES/django.po +215 -159
  27. umap/locale/it/LC_MESSAGES/django.mo +0 -0
  28. umap/locale/it/LC_MESSAGES/django.po +252 -146
  29. umap/locale/ms/LC_MESSAGES/django.mo +0 -0
  30. umap/locale/ms/LC_MESSAGES/django.po +252 -146
  31. umap/locale/pl/LC_MESSAGES/django.mo +0 -0
  32. umap/locale/pl/LC_MESSAGES/django.po +254 -148
  33. umap/locale/pt/LC_MESSAGES/django.mo +0 -0
  34. umap/locale/pt/LC_MESSAGES/django.po +215 -159
  35. umap/locale/sv/LC_MESSAGES/django.mo +0 -0
  36. umap/locale/sv/LC_MESSAGES/django.po +254 -143
  37. umap/locale/th_TH/LC_MESSAGES/django.mo +0 -0
  38. umap/locale/th_TH/LC_MESSAGES/django.po +125 -70
  39. umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
  40. umap/locale/zh_TW/LC_MESSAGES/django.po +256 -145
  41. umap/migrations/0022_add_team.py +94 -0
  42. umap/models.py +45 -10
  43. umap/settings/__init__.py +2 -0
  44. umap/settings/base.py +3 -2
  45. umap/static/umap/base.css +32 -41
  46. umap/static/umap/content.css +19 -25
  47. umap/static/umap/css/icon.css +63 -37
  48. umap/static/umap/css/importers.css +1 -1
  49. umap/static/umap/css/slideshow.css +7 -5
  50. umap/static/umap/css/tableeditor.css +4 -3
  51. umap/static/umap/img/16-white.svg +1 -4
  52. umap/static/umap/img/16.svg +2 -6
  53. umap/static/umap/img/24-white.svg +4 -4
  54. umap/static/umap/img/24.svg +6 -6
  55. umap/static/umap/img/source/16-white.svg +2 -5
  56. umap/static/umap/img/source/16.svg +3 -7
  57. umap/static/umap/img/source/24-white.svg +7 -14
  58. umap/static/umap/img/source/24.svg +10 -17
  59. umap/static/umap/js/components/alerts/alert.css +20 -8
  60. umap/static/umap/js/modules/autocomplete.js +3 -3
  61. umap/static/umap/js/modules/browser.js +4 -3
  62. umap/static/umap/js/modules/caption.js +9 -11
  63. umap/static/umap/js/modules/data/features.js +994 -0
  64. umap/static/umap/js/modules/data/layer.js +1210 -0
  65. umap/static/umap/js/modules/formatter.js +12 -3
  66. umap/static/umap/js/modules/global.js +21 -5
  67. umap/static/umap/js/modules/permissions.js +280 -0
  68. umap/static/umap/js/{umap.icon.js → modules/rendering/icon.js} +77 -56
  69. umap/static/umap/js/modules/rendering/layers/base.js +105 -0
  70. umap/static/umap/js/modules/rendering/layers/classified.js +484 -0
  71. umap/static/umap/js/modules/rendering/layers/cluster.js +103 -0
  72. umap/static/umap/js/modules/rendering/layers/heat.js +182 -0
  73. umap/static/umap/js/modules/rendering/popup.js +99 -0
  74. umap/static/umap/js/modules/rendering/template.js +217 -0
  75. umap/static/umap/js/modules/rendering/ui.js +573 -0
  76. umap/static/umap/js/modules/schema.js +24 -0
  77. umap/static/umap/js/modules/share.js +66 -45
  78. umap/static/umap/js/modules/sync/updaters.js +9 -10
  79. umap/static/umap/js/modules/tableeditor.js +7 -7
  80. umap/static/umap/js/modules/ui/dialog.js +8 -4
  81. umap/static/umap/js/modules/utils.js +22 -13
  82. umap/static/umap/js/umap.controls.js +79 -146
  83. umap/static/umap/js/umap.core.js +9 -9
  84. umap/static/umap/js/umap.forms.js +32 -12
  85. umap/static/umap/js/umap.js +65 -63
  86. umap/static/umap/locale/br.js +35 -35
  87. umap/static/umap/locale/br.json +35 -35
  88. umap/static/umap/locale/ca.js +50 -50
  89. umap/static/umap/locale/ca.json +50 -50
  90. umap/static/umap/locale/de.js +136 -136
  91. umap/static/umap/locale/de.json +136 -136
  92. umap/static/umap/locale/el.js +47 -47
  93. umap/static/umap/locale/el.json +47 -47
  94. umap/static/umap/locale/en.js +7 -1
  95. umap/static/umap/locale/en.json +7 -1
  96. umap/static/umap/locale/fa_IR.js +44 -44
  97. umap/static/umap/locale/fa_IR.json +44 -44
  98. umap/static/umap/locale/fr.js +8 -2
  99. umap/static/umap/locale/fr.json +8 -2
  100. umap/static/umap/locale/pt.js +17 -17
  101. umap/static/umap/locale/pt.json +17 -17
  102. umap/static/umap/locale/pt_PT.js +207 -207
  103. umap/static/umap/locale/pt_PT.json +207 -207
  104. umap/static/umap/locale/th_TH.js +25 -25
  105. umap/static/umap/locale/th_TH.json +25 -25
  106. umap/static/umap/map.css +107 -104
  107. umap/static/umap/nav.css +19 -10
  108. umap/static/umap/unittests/utils.js +230 -107
  109. umap/static/umap/vendors/csv2geojson/csv2geojson.js +62 -40
  110. umap/static/umap/vendors/markercluster/MarkerCluster.Default.css +1 -1
  111. umap/storage.py +1 -0
  112. umap/templates/404.html +5 -1
  113. umap/templates/500.html +3 -1
  114. umap/templates/auth/user_detail.html +8 -2
  115. umap/templates/auth/user_form.html +19 -10
  116. umap/templates/auth/user_stars.html +8 -2
  117. umap/templates/base.html +1 -0
  118. umap/templates/registration/login.html +18 -3
  119. umap/templates/umap/about.html +1 -0
  120. umap/templates/umap/about_summary.html +22 -7
  121. umap/templates/umap/components/alerts/alert.html +42 -21
  122. umap/templates/umap/content.html +2 -0
  123. umap/templates/umap/content_footer.html +6 -2
  124. umap/templates/umap/css.html +1 -0
  125. umap/templates/umap/dashboard_menu.html +15 -0
  126. umap/templates/umap/home.html +14 -4
  127. umap/templates/umap/js.html +4 -9
  128. umap/templates/umap/login_popup_end.html +10 -4
  129. umap/templates/umap/map_detail.html +8 -2
  130. umap/templates/umap/map_fragment.html +3 -1
  131. umap/templates/umap/map_init.html +2 -1
  132. umap/templates/umap/map_list.html +4 -3
  133. umap/templates/umap/map_table.html +36 -12
  134. umap/templates/umap/messages.html +0 -1
  135. umap/templates/umap/navigation.html +2 -1
  136. umap/templates/umap/password_change.html +5 -1
  137. umap/templates/umap/password_change_done.html +8 -2
  138. umap/templates/umap/search.html +8 -2
  139. umap/templates/umap/search_bar.html +1 -0
  140. umap/templates/umap/team_confirm_delete.html +19 -0
  141. umap/templates/umap/team_detail.html +27 -0
  142. umap/templates/umap/team_form.html +60 -0
  143. umap/templates/umap/user_dashboard.html +7 -9
  144. umap/templates/umap/user_teams.html +51 -0
  145. umap/tests/base.py +8 -1
  146. umap/tests/conftest.py +6 -0
  147. umap/tests/fixtures/test_circles_layer.geojson +219 -0
  148. umap/tests/fixtures/test_upload_georss.xml +20 -0
  149. umap/tests/integration/conftest.py +18 -4
  150. umap/tests/integration/helpers.py +12 -0
  151. umap/tests/integration/test_anonymous_owned_map.py +23 -0
  152. umap/tests/integration/test_basics.py +29 -0
  153. umap/tests/integration/test_caption.py +20 -0
  154. umap/tests/integration/test_circles_layer.py +69 -0
  155. umap/tests/integration/test_draw_polygon.py +110 -13
  156. umap/tests/integration/test_draw_polyline.py +8 -18
  157. umap/tests/integration/test_edit_datalayer.py +1 -1
  158. umap/tests/integration/test_import.py +64 -5
  159. umap/tests/integration/test_owned_map.py +21 -13
  160. umap/tests/integration/test_team.py +47 -0
  161. umap/tests/integration/test_tilelayer.py +19 -2
  162. umap/tests/integration/test_view_marker.py +28 -1
  163. umap/tests/integration/test_websocket_sync.py +5 -5
  164. umap/tests/test_datalayer.py +32 -7
  165. umap/tests/test_datalayer_views.py +1 -1
  166. umap/tests/test_map.py +30 -4
  167. umap/tests/test_map_views.py +2 -2
  168. umap/tests/test_statics.py +40 -0
  169. umap/tests/test_team_views.py +131 -0
  170. umap/tests/test_views.py +15 -1
  171. umap/urls.py +23 -13
  172. umap/views.py +116 -10
  173. {umap_project-2.5.1.dist-info → umap_project-2.6.0b0.dist-info}/METADATA +9 -9
  174. {umap_project-2.5.1.dist-info → umap_project-2.6.0b0.dist-info}/RECORD +177 -170
  175. umap/static/umap/js/umap.datalayer.permissions.js +0 -70
  176. umap/static/umap/js/umap.features.js +0 -1290
  177. umap/static/umap/js/umap.layer.js +0 -1837
  178. umap/static/umap/js/umap.permissions.js +0 -208
  179. umap/static/umap/js/umap.popup.js +0 -341
  180. umap/static/umap/test/TableEditor.js +0 -104
  181. umap/static/umap/vendors/leaflet/leaflet-src.js +0 -14512
  182. umap/static/umap/vendors/leaflet/leaflet-src.js.map +0 -1
  183. umap/static/umap/vendors/leaflet/leaflet.js +0 -6
  184. umap/static/umap/vendors/leaflet/leaflet.js.map +0 -1
  185. umap/static/umap/vendors/markercluster/WhereAreTheJavascriptFiles.txt +0 -5
  186. umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js +0 -2718
  187. umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js.map +0 -1
  188. umap/static/umap/vendors/toolbar/leaflet.toolbar-src.css +0 -117
  189. umap/static/umap/vendors/toolbar/leaflet.toolbar-src.js +0 -365
  190. umap/tests/integration/test_statics.py +0 -47
  191. {umap_project-2.5.1.dist-info → umap_project-2.6.0b0.dist-info}/WHEEL +0 -0
  192. {umap_project-2.5.1.dist-info → umap_project-2.6.0b0.dist-info}/entry_points.txt +0 -0
  193. {umap_project-2.5.1.dist-info → umap_project-2.6.0b0.dist-info}/licenses/LICENSE +0 -0
@@ -7,18 +7,18 @@
7
7
  # Jakub A. Tesinsky, 2014
8
8
  # Jakub A. Tesinsky, 2014
9
9
  # Jiří Podhorecký, 2018-2019
10
- # Jiří Podhorecký, 2023
11
- # Jiří Podhorecký, 2019
12
- # Jiří Podhorecký, 2018
13
- # Jiří Podhorecký, 2018
14
- # Jiří Podhorecký, 2018-2019
10
+ # Jiří Podhorecký <jirka.p@volny.cz>, 2023
11
+ # Jiří Podhorecký <jirka.p@volny.cz>, 2019
12
+ # Jiří Podhorecký <jirka.p@volny.cz>, 2018
13
+ # Jiří Podhorecký <jirka.p@volny.cz>, 2018
14
+ # Jiří Podhorecký <jirka.p@volny.cz>, 2018-2019
15
15
  msgid ""
16
16
  msgstr ""
17
17
  "Project-Id-Version: uMap\n"
18
18
  "Report-Msgid-Bugs-To: \n"
19
- "POT-Creation-Date: 2024-02-15 13:53+0000\n"
19
+ "POT-Creation-Date: 2024-08-30 18:23+0000\n"
20
20
  "PO-Revision-Date: 2013-11-22 14:00+0000\n"
21
- "Last-Translator: Jiří Podhorecký, 2023\n"
21
+ "Last-Translator: Jiří Podhorecký <jirka.p@volny.cz>, 2023\n"
22
22
  "Language-Team: Czech (Czech Republic) (http://app.transifex.com/openstreetmap/umap/language/cs_CZ/)\n"
23
23
  "MIME-Version: 1.0\n"
24
24
  "Content-Type: text/plain; charset=UTF-8\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:371
37
+ #: forms.py:69 models.py:423
38
38
  msgid "Inherit"
39
39
  msgstr "Zdědit"
40
40
 
@@ -42,242 +42,284 @@ 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:50
45
+ #: models.py:54 models.py:73
46
46
  msgid "name"
47
47
  msgstr "název"
48
48
 
49
- #: models.py:81
49
+ #: models.py:56 models.py:433
50
+ msgid "description"
51
+ msgstr "popis"
52
+
53
+ #: models.py:104
50
54
  msgid "details"
51
55
  msgstr "podrobnosti"
52
56
 
53
- #: models.py:82
57
+ #: models.py:105
54
58
  msgid "Link to a page where the licence is detailed."
55
59
  msgstr "Odkaz na stránku s podrobnějším popisem licence."
56
60
 
57
- #: models.py:92
61
+ #: models.py:115
58
62
  msgid "URL template using OSM tile format"
59
63
  msgstr "Vzor URL ve formátu pro dlaždice OSM "
60
64
 
61
- #: models.py:98
65
+ #: models.py:121
62
66
  msgid "Order of the tilelayers in the edit box"
63
67
  msgstr "Pořadí vrstev při editaci"
64
68
 
65
- #: models.py:144 models.py:372
69
+ #: models.py:167 models.py:424
66
70
  msgid "Everyone"
67
71
  msgstr "Kdokoli"
68
72
 
69
- #: models.py:145 models.py:151 models.py:373
70
- msgid "Editors only"
71
- msgstr "Jen přispěvatelé"
73
+ #: models.py:168 models.py:174 models.py:425
74
+ msgid "Editors and team only"
75
+ msgstr ""
72
76
 
73
- #: models.py:146 models.py:374
77
+ #: models.py:169 models.py:426
74
78
  msgid "Owner only"
75
79
  msgstr "Jen vlastník"
76
80
 
77
- #: models.py:149
81
+ #: models.py:172
78
82
  msgid "Everyone (public)"
79
83
  msgstr "Kdokoli (veřejná)"
80
84
 
81
- #: models.py:150
85
+ #: models.py:173
82
86
  msgid "Anyone with link"
83
87
  msgstr "Kdokoli kdo má odkaz"
84
88
 
85
- #: models.py:152
89
+ #: models.py:175
86
90
  msgid "Blocked"
87
91
  msgstr "Blokováno"
88
92
 
89
- #: models.py:155 models.py:378
90
- msgid "description"
91
- msgstr "popis"
92
-
93
- #: models.py:156
93
+ #: models.py:178
94
94
  msgid "center"
95
95
  msgstr "střed"
96
96
 
97
- #: models.py:157
97
+ #: models.py:179
98
98
  msgid "zoom"
99
99
  msgstr "přiblížení"
100
100
 
101
- #: models.py:159
101
+ #: models.py:181
102
102
  msgid "locate"
103
103
  msgstr "lokalizuj"
104
104
 
105
- #: models.py:159
105
+ #: models.py:181
106
106
  msgid "Locate user on load?"
107
107
  msgstr "Najdi poluhu uživatele na startu?"
108
108
 
109
- #: models.py:163
109
+ #: models.py:185
110
110
  msgid "Choose the map licence."
111
111
  msgstr "Vyberte si licenci mapy."
112
112
 
113
- #: models.py:164
113
+ #: models.py:186
114
114
  msgid "licence"
115
115
  msgstr "licence"
116
116
 
117
- #: models.py:175
117
+ #: models.py:197
118
118
  msgid "owner"
119
119
  msgstr "vlastník"
120
120
 
121
- #: models.py:179
121
+ #: models.py:201
122
122
  msgid "editors"
123
123
  msgstr "přispěvovatelé"
124
124
 
125
- #: models.py:184 models.py:392
125
+ #: models.py:207
126
+ msgid "team"
127
+ msgstr ""
128
+
129
+ #: models.py:213 models.py:447
126
130
  msgid "edit status"
127
131
  msgstr "kdo může provádět úpravy"
128
132
 
129
- #: models.py:189
133
+ #: models.py:218
130
134
  msgid "share status"
131
135
  msgstr "nastavení sdílení"
132
136
 
133
- #: models.py:192 models.py:387
137
+ #: models.py:221 models.py:442
134
138
  msgid "settings"
135
139
  msgstr "nastavení"
136
140
 
137
- #: models.py:320
141
+ #: models.py:364
138
142
  msgid "Clone of"
139
143
  msgstr "Kopie"
140
144
 
141
- #: models.py:382
145
+ #: models.py:437
142
146
  msgid "display on load"
143
147
  msgstr "zobrazit při startu"
144
148
 
145
- #: models.py:383
149
+ #: models.py:438
146
150
  msgid "Display this layer on load."
147
151
  msgstr "Zobrazit tuto vrstvu na startu."
148
152
 
149
- #: templates/404.html:6
153
+ #: templates/404.html:8
150
154
  msgid "Take me to the home page"
151
155
  msgstr "Vezměte mě na domovskou stránku"
152
156
 
153
- #: templates/auth/user_detail.html:5
157
+ #: templates/auth/user_detail.html:8
154
158
  #, python-format
155
159
  msgid "Browse %(current_user)s's maps"
156
160
  msgstr "Prohlížej si mapy uživatele %(current_user)s'"
157
161
 
158
- #: templates/auth/user_detail.html:12
162
+ #: templates/auth/user_detail.html:17
159
163
  #, python-format
160
164
  msgid "%(current_user)s has no maps."
161
165
  msgstr "%(current_user)s nemá mapy."
162
166
 
163
- #: templates/auth/user_form.html:6
164
- msgid "My Maps"
165
- msgstr ""
166
-
167
- #: templates/auth/user_form.html:7
168
- msgid "My Profile"
169
- msgstr "Můj profil"
170
-
171
- #: templates/auth/user_form.html:20
167
+ #: templates/auth/user_form.html:21 templates/umap/team_form.html:21
172
168
  msgid "Save"
173
169
  msgstr "Uložit"
174
170
 
175
- #: templates/auth/user_form.html:25
171
+ #: templates/auth/user_form.html:27
176
172
  msgid "Your current providers"
177
173
  msgstr "Vaši současní poskytovatelé"
178
174
 
179
- #: templates/auth/user_form.html:31
175
+ #: templates/auth/user_form.html:39
180
176
  msgid "Connect to another provider"
181
177
  msgstr "Připojit se k jinému poskytovateli"
182
178
 
183
- #: templates/auth/user_form.html:33
179
+ #: templates/auth/user_form.html:42
184
180
  msgid ""
185
181
  "It's a good habit to connect your account to more than one provider, in case"
186
182
  " one provider becomes unavailable, temporarily or even permanently."
187
183
  msgstr "Je dobrým zvykem připojit svůj účet k více poskytovatelům pro případ, že by jeden z nich byl dočasně nebo dokonce trvale nedostupný."
188
184
 
189
- #: templates/auth/user_stars.html:5
185
+ #: templates/auth/user_stars.html:8
190
186
  #, python-format
191
187
  msgid "Browse %(current_user)s's starred maps"
192
188
  msgstr "Prohlížet mapy označené hvězdičkou uživatele %(current_user)s"
193
189
 
194
- #: templates/auth/user_stars.html:12
190
+ #: templates/auth/user_stars.html:17
195
191
  #, python-format
196
192
  msgid "%(current_user)s has no starred maps yet."
197
193
  msgstr "%(current_user)s nemá zatím žádné mapy označené hvězdičkou."
198
194
 
199
- #: templates/base.html:12
195
+ #: templates/base.html:13
200
196
  msgid ""
201
197
  "uMap lets you create maps with OpenStreetMap layers in a minute and embed "
202
198
  "them in your site."
203
199
  msgstr "uMap umožňuje vytvářet mapy s vrstvami OpenStreetMap za okamžik a vložit je do svých stránek."
204
200
 
205
- #: templates/registration/login.html:16
201
+ #: templates/registration/login.html:6 templates/registration/login.html:45
202
+ msgid "Login"
203
+ msgstr "Přihlásit se"
204
+
205
+ #: templates/registration/login.html:24
206
206
  msgid "Please log in with your account"
207
207
  msgstr "Přihlaste se prosím k účtu"
208
208
 
209
- #: templates/registration/login.html:28
209
+ #: templates/registration/login.html:41
210
210
  msgid "Username"
211
211
  msgstr "Uživatelské jméno"
212
212
 
213
- #: templates/registration/login.html:31
213
+ #: templates/registration/login.html:44
214
214
  msgid "Password"
215
215
  msgstr "Heslo"
216
216
 
217
- #: templates/registration/login.html:32
218
- msgid "Login"
219
- msgstr "Přihlásit se"
220
-
221
- #: templates/registration/login.html:37
217
+ #: templates/registration/login.html:51
222
218
  msgid "Please choose a provider"
223
219
  msgstr "Vyberte poskytovatele mapy"
224
220
 
225
- #: templates/umap/about_summary.html:11
221
+ #: templates/umap/about_summary.html:12
226
222
  #, python-format
227
223
  msgid ""
228
224
  "uMap lets you create maps with <a href=\"%(osm_url)s\" />OpenStreetMap</a> "
229
225
  "layers in a minute and embed them in your site."
230
226
  msgstr "uMap umožňuje vytvářet mapy s vrstvami <a href=\"%(osm_url)s\" />OpenStreetMap</a> za okamžik a vložit je do svých stránek."
231
227
 
232
- #: templates/umap/about_summary.html:21
228
+ #: templates/umap/about_summary.html:23
233
229
  msgid "Choose the layers of your map"
234
230
  msgstr "Vyberte si vrstvy své mapy."
235
231
 
236
- #: templates/umap/about_summary.html:22
232
+ #: templates/umap/about_summary.html:26
237
233
  msgid "Add POIs: markers, lines, polygons..."
238
234
  msgstr "Přidejte značky, čáry, trasy, oblasti."
239
235
 
240
- #: templates/umap/about_summary.html:23
236
+ #: templates/umap/about_summary.html:29
241
237
  msgid "Manage POIs colours and icons"
242
238
  msgstr "Vyberte si barvy a grafické styly"
243
239
 
244
- #: templates/umap/about_summary.html:24
240
+ #: templates/umap/about_summary.html:32
245
241
  msgid "Manage map options: display a minimap, locate user on load…"
246
242
  msgstr "Nastavte další možnosti - minimapu, lokalizaci uživatele, ..."
247
243
 
248
- #: templates/umap/about_summary.html:25
244
+ #: templates/umap/about_summary.html:35
249
245
  msgid "Batch import geostructured data (geojson, gpx, kml, osm...)"
250
246
  msgstr "Import existujících geodat v mnoha formátech (geojson, gpx, kml, osm...)"
251
247
 
252
- #: templates/umap/about_summary.html:26
248
+ #: templates/umap/about_summary.html:38
253
249
  msgid "Choose the license for your data"
254
250
  msgstr "Vyberte si licenci pro svá data"
255
251
 
256
- #: templates/umap/about_summary.html:27
252
+ #: templates/umap/about_summary.html:41
257
253
  msgid "Embed and share your map"
258
254
  msgstr "Sdílejte a vložte svou mapu do jiných webů"
259
255
 
260
- #: templates/umap/about_summary.html:37
256
+ #: templates/umap/about_summary.html:52
261
257
  #, python-format
262
258
  msgid "And it's <a href=\"%(repo_url)s\">open source</a>!"
263
259
  msgstr "A je to celé <a href=\"%(repo_url)s\">open source</a>!"
264
260
 
265
- #: templates/umap/about_summary.html:48 templates/umap/navigation.html:38
266
- #: templates/umap/user_dashboard.html:42
261
+ #: templates/umap/about_summary.html:63 templates/umap/navigation.html:39
262
+ #: templates/umap/user_dashboard.html:40
267
263
  msgid "Create a map"
268
264
  msgstr "Vytvořit mapu"
269
265
 
270
- #: templates/umap/about_summary.html:51
266
+ #: templates/umap/about_summary.html:66
271
267
  msgid "Play with the demo"
272
268
  msgstr "Vyzkoušejte si to hned"
273
269
 
274
- #: templates/umap/content.html:22
270
+ #: templates/umap/components/alerts/alert.html:15
271
+ #: templates/umap/components/alerts/alert.html:64
272
+ #: templates/umap/components/alerts/alert.html:92
273
+ msgid "Close"
274
+ msgstr ""
275
+
276
+ #: templates/umap/components/alerts/alert.html:30
277
+ #, python-format
278
+ msgid ""
279
+ "Pro-tip: to easily find back your maps, <a href=\"%(login_url)s\" "
280
+ "target=\"_blank\">create an account</a> or <a href=\"%(login_url)s\" "
281
+ "target=\"_blank\">log in</a>."
282
+ msgstr ""
283
+
284
+ #: templates/umap/components/alerts/alert.html:35
285
+ msgid "Here is your secret link to edit the map, please keep it safe:"
286
+ msgstr ""
287
+
288
+ #: templates/umap/components/alerts/alert.html:39
289
+ msgid "Copy link"
290
+ msgstr ""
291
+
292
+ #: templates/umap/components/alerts/alert.html:46
293
+ msgid "Enter your email address to receive the secret link:"
294
+ msgstr ""
295
+
296
+ #: templates/umap/components/alerts/alert.html:52
297
+ msgid "Email"
298
+ msgstr ""
299
+
300
+ #: templates/umap/components/alerts/alert.html:55
301
+ msgid "Send me the link"
302
+ msgstr ""
303
+
304
+ #: templates/umap/components/alerts/alert.html:79
305
+ msgid "See their edits in another tab"
306
+ msgstr ""
307
+
308
+ #: templates/umap/components/alerts/alert.html:82
309
+ msgid "Keep your changes and loose theirs"
310
+ msgstr ""
311
+
312
+ #: templates/umap/components/alerts/alert.html:85
313
+ msgid "Keep their changes and loose yours"
314
+ msgstr ""
315
+
316
+ #: templates/umap/content.html:26
275
317
  msgid ""
276
318
  "This instance of uMap is currently in read only mode, no creation/edit is "
277
319
  "allowed."
278
320
  msgstr "Tato instance uMap je aktuálně v režimu pouze pro čtení, není povoleno žádné vytváření/úpravy."
279
321
 
280
- #: templates/umap/content.html:30
322
+ #: templates/umap/content.html:34
281
323
  #, python-format
282
324
  msgid ""
283
325
  "This is a demo instance, used for tests and pre-rolling releases. If you "
@@ -286,176 +328,210 @@ msgid ""
286
328
  "instance, it's <a href=\"%(repo_url)s\">open source</a>!"
287
329
  msgstr "Toto je ukázková verze, používaná na testování nových vydání uMap. Pokud potřebujete stabilní verzi, použijte <a href=\"%(stable_url)s\">%(stable_url)s</a>. Můžete si taky stáhnout celý projekt a nainstalovat na svém serveru, je to <a href=\"%(repo_url)s\">open source</a>!"
288
330
 
289
- #: templates/umap/home.html:8
331
+ #: templates/umap/content_footer.html:5
332
+ msgid "An OpenStreetMap project"
333
+ msgstr ""
334
+
335
+ #: templates/umap/content_footer.html:6
336
+ msgid "version"
337
+ msgstr ""
338
+
339
+ #: templates/umap/content_footer.html:7
340
+ msgid "Hosted by"
341
+ msgstr ""
342
+
343
+ #: templates/umap/content_footer.html:8
344
+ msgid "Contact"
345
+ msgstr ""
346
+
347
+ #: templates/umap/content_footer.html:9 templates/umap/navigation.html:25
348
+ msgid "Help"
349
+ msgstr "Nápověda"
350
+
351
+ #: templates/umap/dashboard_menu.html:6
352
+ #, python-format
353
+ msgid "My Maps (%(count)s)"
354
+ msgstr ""
355
+
356
+ #: templates/umap/dashboard_menu.html:8
357
+ msgid "My Maps"
358
+ msgstr ""
359
+
360
+ #: templates/umap/dashboard_menu.html:11
361
+ msgid "My profile"
362
+ msgstr "Můj profil"
363
+
364
+ #: templates/umap/dashboard_menu.html:13
365
+ msgid "My teams"
366
+ msgstr ""
367
+
368
+ #: templates/umap/home.html:14
290
369
  msgid "Map of the uMaps"
291
370
  msgstr "Mapa všch uMap"
292
371
 
293
- #: templates/umap/home.html:14
372
+ #: templates/umap/home.html:24
294
373
  msgid "Get inspired, browse maps"
295
374
  msgstr "Inspirujte se, koukněte na mapy jiných"
296
375
 
297
- #: templates/umap/login_popup_end.html:2
376
+ #: templates/umap/login_popup_end.html:4
298
377
  msgid "You are logged in. Continuing..."
299
378
  msgstr "Jste přihlášeni. Jedeme dál ..."
300
379
 
301
- #: templates/umap/map_list.html:9 views.py:341
380
+ #: templates/umap/map_list.html:10 views.py:433
302
381
  msgid "by"
303
382
  msgstr ", autor:"
304
383
 
305
- #: templates/umap/map_list.html:17
384
+ #: templates/umap/map_list.html:18
306
385
  msgid "More"
307
386
  msgstr "Více"
308
387
 
309
- #: templates/umap/map_table.html:6
388
+ #: templates/umap/map_table.html:8 templates/umap/user_teams.html:14
310
389
  msgid "Name"
311
390
  msgstr "Název"
312
391
 
313
- #: templates/umap/map_table.html:7
392
+ #: templates/umap/map_table.html:11
314
393
  msgid "Preview"
315
394
  msgstr ""
316
395
 
317
- #: templates/umap/map_table.html:8
396
+ #: templates/umap/map_table.html:14
318
397
  msgid "Who can see"
319
398
  msgstr ""
320
399
 
321
- #: templates/umap/map_table.html:9
400
+ #: templates/umap/map_table.html:17
322
401
  msgid "Who can edit"
323
402
  msgstr ""
324
403
 
325
- #: templates/umap/map_table.html:10
404
+ #: templates/umap/map_table.html:20
326
405
  msgid "Last save"
327
406
  msgstr "Poslední uložení"
328
407
 
329
- #: templates/umap/map_table.html:11
408
+ #: templates/umap/map_table.html:23
330
409
  msgid "Owner"
331
410
  msgstr "Vlastník"
332
411
 
333
- #: templates/umap/map_table.html:12
412
+ #: templates/umap/map_table.html:26 templates/umap/user_teams.html:20
334
413
  msgid "Actions"
335
414
  msgstr "Akce"
336
415
 
337
- #: templates/umap/map_table.html:25 templates/umap/map_table.html:27
416
+ #: templates/umap/map_table.html:41 templates/umap/map_table.html:43
338
417
  msgid "Open preview"
339
418
  msgstr ""
340
419
 
341
- #: templates/umap/map_table.html:46 templates/umap/map_table.html:48
420
+ #: templates/umap/map_table.html:72 templates/umap/map_table.html:74
342
421
  msgid "Share"
343
422
  msgstr "Sdílet"
344
423
 
345
- #: templates/umap/map_table.html:51 templates/umap/map_table.html:53
424
+ #: templates/umap/map_table.html:78 templates/umap/map_table.html:80
425
+ #: templates/umap/user_teams.html:38 templates/umap/user_teams.html:40
346
426
  msgid "Edit"
347
427
  msgstr "Upravit"
348
428
 
349
- #: templates/umap/map_table.html:56 templates/umap/map_table.html:58
429
+ #: templates/umap/map_table.html:84 templates/umap/map_table.html:86
350
430
  msgid "Download"
351
431
  msgstr "Stažení"
352
432
 
353
- #: templates/umap/map_table.html:63 templates/umap/map_table.html:65
433
+ #: templates/umap/map_table.html:90 templates/umap/map_table.html:92
354
434
  msgid "Clone"
355
435
  msgstr ""
356
436
 
357
- #: templates/umap/map_table.html:73 templates/umap/map_table.html:75
437
+ #: templates/umap/map_table.html:101 templates/umap/map_table.html:103
358
438
  msgid "Delete"
359
439
  msgstr ""
360
440
 
361
- #: templates/umap/map_table.html:88
441
+ #: templates/umap/map_table.html:117
362
442
  msgid "first"
363
443
  msgstr ""
364
444
 
365
- #: templates/umap/map_table.html:89
445
+ #: templates/umap/map_table.html:118
366
446
  msgid "previous"
367
447
  msgstr ""
368
448
 
369
- #: templates/umap/map_table.html:98
449
+ #: templates/umap/map_table.html:126
370
450
  #, python-format
371
451
  msgid "Page %(maps_number)s of %(num_pages)s"
372
452
  msgstr ""
373
453
 
374
- #: templates/umap/map_table.html:104
454
+ #: templates/umap/map_table.html:131
375
455
  msgid "next"
376
456
  msgstr ""
377
457
 
378
- #: templates/umap/map_table.html:105
458
+ #: templates/umap/map_table.html:132
379
459
  msgid "last"
380
460
  msgstr ""
381
461
 
382
- #: templates/umap/map_table.html:113
462
+ #: templates/umap/map_table.html:140
383
463
  #, python-format
384
464
  msgid "Lines per page: %(per_page)s"
385
465
  msgstr ""
386
466
 
387
- #: templates/umap/map_table.html:118
467
+ #: templates/umap/map_table.html:145
388
468
  #, python-format
389
469
  msgid "%(count)s maps"
390
470
  msgstr ""
391
471
 
392
- #: templates/umap/navigation.html:10 templates/umap/user_dashboard.html:4
472
+ #: templates/umap/navigation.html:11 templates/umap/user_dashboard.html:6
393
473
  msgid "My Dashboard"
394
474
  msgstr "Můj ovládací panel"
395
475
 
396
- #: templates/umap/navigation.html:13
476
+ #: templates/umap/navigation.html:14
397
477
  msgid "Starred maps"
398
478
  msgstr "Mapy označené hvězdičkou"
399
479
 
400
- #: templates/umap/navigation.html:17
480
+ #: templates/umap/navigation.html:18
401
481
  msgid "Log in"
402
482
  msgstr "Přihlásit se"
403
483
 
404
- #: templates/umap/navigation.html:17
484
+ #: templates/umap/navigation.html:18
405
485
  msgid "Sign in"
406
486
  msgstr "Registrovat"
407
487
 
408
- #: templates/umap/navigation.html:21
488
+ #: templates/umap/navigation.html:22
409
489
  msgid "About"
410
490
  msgstr "O uMap"
411
491
 
412
- #: templates/umap/navigation.html:24
413
- msgid "Help"
414
- msgstr "Nápověda"
415
-
416
- #: templates/umap/navigation.html:29
492
+ #: templates/umap/navigation.html:30
417
493
  msgid "Change password"
418
494
  msgstr "Změnit heslo"
419
495
 
420
- #: templates/umap/navigation.html:33
496
+ #: templates/umap/navigation.html:34
421
497
  msgid "Log out"
422
498
  msgstr "Odhlásit se"
423
499
 
424
- #: templates/umap/password_change.html:4
500
+ #: templates/umap/password_change.html:7
425
501
  msgid "Password change"
426
502
  msgstr "Změna hesla"
427
503
 
428
- #: templates/umap/password_change.html:6
504
+ #: templates/umap/password_change.html:10
429
505
  msgid ""
430
506
  "Please enter your old password, for security's sake, and then enter your new"
431
507
  " password twice so we can verify you typed it in correctly."
432
508
  msgstr "Z bezpečnostních důvodů zadejte své staré heslo a dvakrát zadejte nové heslo, abychom mohli ověřit, že jste jej zadali správně."
433
509
 
434
- #: templates/umap/password_change.html:13
510
+ #: templates/umap/password_change.html:17
435
511
  msgid "Old password"
436
512
  msgstr "Staré heslo"
437
513
 
438
- #: templates/umap/password_change.html:18
514
+ #: templates/umap/password_change.html:22
439
515
  msgid "New password"
440
516
  msgstr "Nové heslo"
441
517
 
442
- #: templates/umap/password_change.html:22
518
+ #: templates/umap/password_change.html:26
443
519
  msgid "New password confirmation"
444
520
  msgstr "Potvrzení nového hesla"
445
521
 
446
- #: templates/umap/password_change.html:23
522
+ #: templates/umap/password_change.html:27
447
523
  msgid "Change my password"
448
524
  msgstr "Změnit moje heslo"
449
525
 
450
- #: templates/umap/password_change_done.html:4
526
+ #: templates/umap/password_change_done.html:7
451
527
  msgid "Password change successful"
452
528
  msgstr "Změna hesla byla úspěšná"
453
529
 
454
- #: templates/umap/password_change_done.html:5
530
+ #: templates/umap/password_change_done.html:10
455
531
  msgid "Your password was changed."
456
532
  msgstr "Vaše heslo bylo změněno."
457
533
 
458
- #: templates/umap/search.html:10
534
+ #: templates/umap/search.html:15
459
535
  #, python-format
460
536
  msgid "%(count)s map found:"
461
537
  msgid_plural "%(count)s maps found:"
@@ -464,94 +540,129 @@ msgstr[1] "%(count)s nalezené mapy:"
464
540
  msgstr[2] "%(count)s nalezené mapy:"
465
541
  msgstr[3] "%(count)s nalezených map:"
466
542
 
467
- #: templates/umap/search.html:18
543
+ #: templates/umap/search.html:24
468
544
  msgid "No map found."
469
545
  msgstr "Mapa nenalezena."
470
546
 
471
- #: templates/umap/search.html:21
547
+ #: templates/umap/search.html:29
472
548
  msgid "Latest created maps"
473
549
  msgstr "Nedávno vytvořené mapy"
474
550
 
475
- #: templates/umap/search_bar.html:3
551
+ #: templates/umap/search_bar.html:4
476
552
  msgid "Search maps"
477
553
  msgstr "Prohledávejte mapy"
478
554
 
479
- #: templates/umap/search_bar.html:14
555
+ #: templates/umap/search_bar.html:15
480
556
  msgid "Search"
481
557
  msgstr "Hledej"
482
558
 
483
- #: templates/umap/user_dashboard.html:7 templates/umap/user_dashboard.html:26
484
- msgid "Search my maps"
485
- msgstr "Prohledávat moje mapy"
559
+ #: templates/umap/team_detail.html:10
560
+ #, python-format
561
+ msgid "Browse %(current_team)s's maps"
562
+ msgstr ""
486
563
 
487
- #: templates/umap/user_dashboard.html:11
564
+ #: templates/umap/team_detail.html:22
488
565
  #, python-format
489
- msgid "My Maps (%(count)s)"
566
+ msgid "%(current_team)s has no public maps."
490
567
  msgstr ""
491
568
 
492
- #: templates/umap/user_dashboard.html:13
493
- msgid "My profile"
494
- msgstr "Můj profil"
569
+ #: templates/umap/team_form.html:24
570
+ msgid "Delete this team"
571
+ msgstr ""
572
+
573
+ #: templates/umap/team_form.html:47
574
+ msgid "Add user"
575
+ msgstr ""
576
+
577
+ #: templates/umap/user_dashboard.html:9 templates/umap/user_dashboard.html:25
578
+ msgid "Search my maps"
579
+ msgstr "Prohledávat moje mapy"
495
580
 
496
- #: templates/umap/user_dashboard.html:21 templates/umap/user_dashboard.html:23
581
+ #: templates/umap/user_dashboard.html:17 templates/umap/user_dashboard.html:22
497
582
  msgid "Map’s title"
498
583
  msgstr ""
499
584
 
500
- #: templates/umap/user_dashboard.html:32
585
+ #: templates/umap/user_dashboard.html:30
501
586
  #, python-format
502
587
  msgid "Download %(count)s maps"
503
588
  msgstr ""
504
589
 
505
- #: templates/umap/user_dashboard.html:42
590
+ #: templates/umap/user_dashboard.html:40
506
591
  msgid "You have no map yet."
507
592
  msgstr "Zatím nemáte žádnou mapu."
508
593
 
509
- #: views.py:346
594
+ #: templates/umap/user_teams.html:17
595
+ msgid "Users"
596
+ msgstr ""
597
+
598
+ #: templates/umap/user_teams.html:48
599
+ msgid "New team"
600
+ msgstr ""
601
+
602
+ #: views.py:235
603
+ msgid "Cannot delete a team with more than one member"
604
+ msgstr ""
605
+
606
+ #: views.py:239
607
+ #, python-format
608
+ msgid "Team “%(name)s” has been deleted"
609
+ msgstr ""
610
+
611
+ #: views.py:438
510
612
  msgid "View the map"
511
613
  msgstr "Prohlídnout si tuto mapu"
512
614
 
513
- #: views.py:704
615
+ #: views.py:824
514
616
  msgid "See full screen"
515
617
  msgstr ""
516
618
 
517
- #: views.py:803
619
+ #: views.py:953
518
620
  msgid "Map editors updated with success!"
519
621
  msgstr "Seznam přispěvovatelů byl úspěšně upraven!"
520
622
 
521
- #: views.py:841
623
+ #: views.py:989
522
624
  #, python-format
523
625
  msgid "The uMap edit link for your map: %(map_name)s"
524
626
  msgstr "Odkaz na úpravu uMap pro vaši mapu: %(map_name)s"
525
627
 
526
- #: views.py:844
628
+ #: views.py:992
527
629
  #, python-format
528
630
  msgid "Here is your secret edit link: %(link)s"
529
631
  msgstr "Zde je váš tajný odkaz na úpravu: %(link)s"
530
632
 
531
- #: views.py:850
633
+ #: views.py:999
634
+ #, python-format
635
+ msgid "Can't send email to %(email)s"
636
+ msgstr ""
637
+
638
+ #: views.py:1002
532
639
  #, python-format
533
640
  msgid "Email sent to %(email)s"
534
641
  msgstr "E-mail odeslán na %(email)s"
535
642
 
536
- #: views.py:861
643
+ #: views.py:1013
537
644
  msgid "Only its owner can delete the map."
538
645
  msgstr "Jen vlastník může vymzat tuto mapu."
539
646
 
540
- #: views.py:889
647
+ #: views.py:1016
648
+ msgid "Map successfully deleted."
649
+ msgstr ""
650
+
651
+ #: views.py:1042
541
652
  #, python-format
542
653
  msgid ""
543
654
  "Your map has been cloned! If you want to edit this map from another "
544
655
  "computer, please use this link: %(anonymous_url)s"
545
656
  msgstr "Byla vytvořena kopie mapy! Pokud chcete upravovat tuto mapu z jiného počítače, použijte tento odkaz: %(anonymous_url)s"
546
657
 
547
- #: views.py:894
658
+ #: views.py:1047
548
659
  msgid "Congratulations, your map has been cloned!"
549
660
  msgstr "Gratulujeme, byla vytvořena kopie mapy!"
550
661
 
551
- #: views.py:1130
662
+ #: views.py:1282
552
663
  msgid "Layer successfully deleted."
553
664
  msgstr "Vrstva úspěšně vymazána."
554
665
 
555
- #: views.py:1152
666
+ #: views.py:1304
556
667
  msgid "Permissions updated with success!"
557
668
  msgstr "Oprávnění úspěšně aktualizována!"