umap-project 3.0.6__py3-none-any.whl → 3.1.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- umap/__init__.py +1 -1
- umap/forms.py +1 -1
- umap/locale/br/LC_MESSAGES/django.mo +0 -0
- umap/locale/br/LC_MESSAGES/django.po +219 -72
- umap/locale/ca/LC_MESSAGES/django.mo +0 -0
- umap/locale/ca/LC_MESSAGES/django.po +286 -95
- umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- umap/locale/cs_CZ/LC_MESSAGES/django.po +211 -65
- umap/locale/da/LC_MESSAGES/django.mo +0 -0
- umap/locale/da/LC_MESSAGES/django.po +394 -202
- umap/locale/de/LC_MESSAGES/django.mo +0 -0
- umap/locale/de/LC_MESSAGES/django.po +146 -75
- umap/locale/el/LC_MESSAGES/django.mo +0 -0
- umap/locale/el/LC_MESSAGES/django.po +125 -59
- umap/locale/en/LC_MESSAGES/django.po +124 -58
- umap/locale/es/LC_MESSAGES/django.mo +0 -0
- umap/locale/es/LC_MESSAGES/django.po +125 -59
- umap/locale/et/LC_MESSAGES/django.mo +0 -0
- umap/locale/et/LC_MESSAGES/django.po +210 -64
- umap/locale/eu/LC_MESSAGES/django.mo +0 -0
- umap/locale/eu/LC_MESSAGES/django.po +212 -65
- umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
- umap/locale/fa_IR/LC_MESSAGES/django.po +286 -95
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +125 -59
- umap/locale/gl/LC_MESSAGES/django.mo +0 -0
- umap/locale/gl/LC_MESSAGES/django.po +212 -66
- umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- umap/locale/hu/LC_MESSAGES/django.po +148 -78
- umap/locale/is/LC_MESSAGES/django.mo +0 -0
- umap/locale/is/LC_MESSAGES/django.po +130 -60
- umap/locale/it/LC_MESSAGES/django.mo +0 -0
- umap/locale/it/LC_MESSAGES/django.po +125 -59
- umap/locale/ms/LC_MESSAGES/django.mo +0 -0
- umap/locale/ms/LC_MESSAGES/django.po +289 -98
- umap/locale/nl/LC_MESSAGES/django.mo +0 -0
- umap/locale/nl/LC_MESSAGES/django.po +128 -61
- umap/locale/pl/LC_MESSAGES/django.mo +0 -0
- umap/locale/pl/LC_MESSAGES/django.po +287 -96
- umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- umap/locale/pt/LC_MESSAGES/django.po +211 -65
- umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
- umap/locale/zh_TW/LC_MESSAGES/django.po +212 -66
- umap/management/commands/migrate_to_S3.py +42 -20
- umap/management/commands/purge_old_versions.py +63 -0
- umap/management/commands/switch_user.py +52 -0
- umap/managers.py +29 -2
- umap/middleware.py +1 -1
- umap/migrations/0028_map_is_template.py +21 -0
- umap/models.py +14 -4
- umap/settings/base.py +22 -0
- umap/static/umap/base.css +4 -2
- umap/static/umap/content.css +1 -1
- umap/static/umap/css/dialog.css +5 -2
- umap/static/umap/css/form.css +19 -12
- umap/static/umap/css/icon.css +6 -0
- umap/static/umap/css/importers.css +4 -0
- umap/static/umap/css/panel.css +2 -0
- umap/static/umap/img/16-white.svg +5 -1
- umap/static/umap/img/16.svg +1 -1
- umap/static/umap/img/24-white.svg +3 -2
- umap/static/umap/img/24.svg +3 -4
- umap/static/umap/img/importers/opendata.svg +1 -0
- umap/static/umap/img/providers/bitbucket.png +0 -0
- umap/static/umap/img/source/16-white.svg +8 -4
- umap/static/umap/img/source/16.svg +1 -1
- umap/static/umap/img/source/24-white.svg +5 -4
- umap/static/umap/img/source/24.svg +5 -6
- umap/static/umap/js/components/modal.js +27 -0
- umap/static/umap/js/modules/caption.js +4 -4
- umap/static/umap/js/modules/data/features.js +40 -4
- umap/static/umap/js/modules/data/layer.js +208 -138
- umap/static/umap/js/modules/form/builder.js +6 -14
- umap/static/umap/js/modules/form/fields.js +2 -2
- umap/static/umap/js/modules/help.js +11 -3
- umap/static/umap/js/modules/importer.js +7 -4
- umap/static/umap/js/modules/importers/opendata.js +142 -0
- umap/static/umap/js/modules/permissions.js +3 -3
- umap/static/umap/js/modules/rendering/controls.js +34 -2
- umap/static/umap/js/modules/rendering/icon.js +2 -2
- umap/static/umap/js/modules/rendering/layers/base.js +1 -1
- umap/static/umap/js/modules/rendering/layers/classified.js +55 -49
- umap/static/umap/js/modules/rendering/layers/cluster.js +16 -9
- umap/static/umap/js/modules/rendering/layers/heat.js +13 -11
- umap/static/umap/js/modules/rendering/map.js +5 -0
- umap/static/umap/js/modules/rendering/ui.js +23 -0
- umap/static/umap/js/modules/rules.js +24 -23
- umap/static/umap/js/modules/schema.js +60 -4
- umap/static/umap/js/modules/sync/updaters.js +7 -3
- umap/static/umap/js/modules/tableeditor.js +7 -30
- umap/static/umap/js/modules/templates.js +122 -0
- umap/static/umap/js/modules/ui/bar.js +13 -3
- umap/static/umap/js/modules/ui/panel.js +1 -1
- umap/static/umap/js/modules/umap.js +28 -13
- umap/static/umap/js/umap.controls.js +11 -4
- umap/static/umap/locale/br.js +51 -18
- umap/static/umap/locale/br.json +51 -18
- umap/static/umap/locale/da.js +343 -310
- umap/static/umap/locale/da.json +343 -310
- umap/static/umap/locale/de.js +40 -7
- umap/static/umap/locale/de.json +40 -7
- umap/static/umap/locale/el.js +31 -4
- umap/static/umap/locale/el.json +31 -4
- umap/static/umap/locale/en.js +33 -1
- umap/static/umap/locale/en.json +33 -1
- umap/static/umap/locale/es.js +37 -4
- umap/static/umap/locale/es.json +37 -4
- umap/static/umap/locale/fr.js +34 -1
- umap/static/umap/locale/fr.json +34 -1
- umap/static/umap/locale/hu.js +44 -17
- umap/static/umap/locale/hu.json +44 -17
- umap/static/umap/locale/it.js +74 -41
- umap/static/umap/locale/it.json +74 -41
- umap/static/umap/locale/nl.js +42 -9
- umap/static/umap/locale/nl.json +42 -9
- umap/static/umap/map.css +3 -23
- umap/static/umap/vendors/textpath/leaflet.textpath.js +184 -0
- umap/storage/fs.py +19 -9
- umap/templates/umap/dashboard_menu.html +5 -0
- umap/templates/umap/design_system.html +9 -0
- umap/templates/umap/js.html +3 -0
- umap/templates/umap/map_list.html +2 -2
- umap/templates/umap/map_table.html +18 -18
- umap/templates/umap/user_dashboard.html +9 -58
- umap/templates/umap/user_map_table.html +36 -0
- umap/templates/umap/user_templates.html +19 -0
- umap/templatetags/umap_tags.py +5 -0
- umap/tests/integration/test_conditional_rules.py +57 -0
- umap/tests/integration/test_datalayer.py +16 -9
- umap/tests/integration/test_edit_marker.py +11 -0
- umap/tests/integration/test_tableeditor.py +42 -7
- umap/tests/integration/test_templates.py +44 -0
- umap/tests/test_dashboard.py +19 -0
- umap/tests/test_purge_old_versions.py +91 -0
- umap/tests/test_switch_user.py +31 -0
- umap/tests/test_views.py +67 -0
- umap/urls.py +7 -1
- umap/views.py +64 -18
- {umap_project-3.0.6.dist-info → umap_project-3.1.1.dist-info}/METADATA +13 -13
- {umap_project-3.0.6.dist-info → umap_project-3.1.1.dist-info}/RECORD +143 -130
- {umap_project-3.0.6.dist-info → umap_project-3.1.1.dist-info}/WHEEL +0 -0
- {umap_project-3.0.6.dist-info → umap_project-3.1.1.dist-info}/entry_points.txt +0 -0
- {umap_project-3.0.6.dist-info → umap_project-3.1.1.dist-info}/licenses/LICENSE +0 -0
|
Binary file
|
|
@@ -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: 2025-
|
|
19
|
+
"POT-Creation-Date: 2025-06-10 09:19+0000\n"
|
|
20
20
|
"PO-Revision-Date: 2013-11-22 14:00+0000\n"
|
|
21
21
|
"Last-Translator: Jiří Podhorecký <jirka.p@volny.cz>, 2018-2019,2023-2025\n"
|
|
22
22
|
"Language-Team: Czech (Czech Republic) (http://app.transifex.com/openstreetmap/umap/language/cs_CZ/)\n"
|
|
@@ -43,137 +43,229 @@ msgstr "Stránka je jen ke čtení kvůli údržbě"
|
|
|
43
43
|
msgid ""
|
|
44
44
|
"Using “%(name)s” to authenticate is deprecated and will be removed soon. "
|
|
45
45
|
"Please configure another provider below before losing access to your account"
|
|
46
|
-
" and maps."
|
|
46
|
+
" and maps. Then, please logout and login again with the new provider."
|
|
47
47
|
msgstr ""
|
|
48
48
|
|
|
49
|
-
#: models.py:
|
|
49
|
+
#: models.py:61 models.py:80
|
|
50
50
|
msgid "name"
|
|
51
51
|
msgstr "název"
|
|
52
52
|
|
|
53
|
-
#: models.py:
|
|
53
|
+
#: models.py:63 models.py:503
|
|
54
54
|
msgid "description"
|
|
55
55
|
msgstr "popis"
|
|
56
56
|
|
|
57
|
-
#: models.py:
|
|
57
|
+
#: models.py:111
|
|
58
58
|
msgid "details"
|
|
59
59
|
msgstr "podrobnosti"
|
|
60
60
|
|
|
61
|
-
#: models.py:
|
|
61
|
+
#: models.py:112
|
|
62
62
|
msgid "Link to a page where the licence is detailed."
|
|
63
63
|
msgstr "Odkaz na stránku s podrobnějším popisem licence."
|
|
64
64
|
|
|
65
|
-
#: models.py:
|
|
65
|
+
#: models.py:122
|
|
66
66
|
msgid "URL template using OSM tile format"
|
|
67
67
|
msgstr "Vzor URL ve formátu pro dlaždice OSM "
|
|
68
68
|
|
|
69
|
-
#: models.py:
|
|
69
|
+
#: models.py:128
|
|
70
70
|
msgid "Order of the tilelayers in the edit box"
|
|
71
71
|
msgstr "Pořadí vrstev při editaci"
|
|
72
72
|
|
|
73
|
-
#: models.py:
|
|
73
|
+
#: models.py:176 models.py:497
|
|
74
74
|
msgid "Only editable with secret edit link"
|
|
75
75
|
msgstr "Lze upravovat jen pomocí tajného odkazu"
|
|
76
76
|
|
|
77
|
-
#: models.py:
|
|
77
|
+
#: models.py:177 models.py:498
|
|
78
78
|
msgid "Everyone can edit"
|
|
79
79
|
msgstr "Kdokoli může editovat"
|
|
80
80
|
|
|
81
|
-
#: models.py:
|
|
81
|
+
#: models.py:180 models.py:491
|
|
82
82
|
msgid "Everyone"
|
|
83
83
|
msgstr "Kdokoli"
|
|
84
84
|
|
|
85
|
-
#: models.py:
|
|
85
|
+
#: models.py:181 models.py:190 models.py:492
|
|
86
86
|
msgid "Editors and team only"
|
|
87
87
|
msgstr "Pouze pro editory a tým"
|
|
88
88
|
|
|
89
|
-
#: models.py:
|
|
89
|
+
#: models.py:182 models.py:493
|
|
90
90
|
msgid "Owner only"
|
|
91
91
|
msgstr "Jen vlastník"
|
|
92
92
|
|
|
93
|
-
#: models.py:
|
|
93
|
+
#: models.py:185
|
|
94
94
|
msgid "Draft (private)"
|
|
95
95
|
msgstr "Koncept (soukromý)"
|
|
96
96
|
|
|
97
|
-
#: models.py:
|
|
97
|
+
#: models.py:186
|
|
98
98
|
msgid "Everyone (public)"
|
|
99
99
|
msgstr "Kdokoli (veřejná)"
|
|
100
100
|
|
|
101
|
-
#: models.py:
|
|
101
|
+
#: models.py:189
|
|
102
102
|
msgid "Anyone with link"
|
|
103
103
|
msgstr "Kdokoli kdo má odkaz"
|
|
104
104
|
|
|
105
|
-
#: models.py:
|
|
105
|
+
#: models.py:191
|
|
106
106
|
msgid "Blocked"
|
|
107
107
|
msgstr "Blokováno"
|
|
108
108
|
|
|
109
|
-
#: models.py:
|
|
109
|
+
#: models.py:192 models.py:487
|
|
110
110
|
msgid "Deleted"
|
|
111
111
|
msgstr "Smazáno"
|
|
112
112
|
|
|
113
|
-
#: models.py:
|
|
113
|
+
#: models.py:195
|
|
114
114
|
msgid "center"
|
|
115
115
|
msgstr "střed"
|
|
116
116
|
|
|
117
|
-
#: models.py:
|
|
117
|
+
#: models.py:196
|
|
118
118
|
msgid "zoom"
|
|
119
119
|
msgstr "přiblížení"
|
|
120
120
|
|
|
121
|
-
#: models.py:
|
|
121
|
+
#: models.py:198
|
|
122
122
|
msgid "locate"
|
|
123
123
|
msgstr "lokalizuj"
|
|
124
124
|
|
|
125
|
-
#: models.py:
|
|
125
|
+
#: models.py:198
|
|
126
126
|
msgid "Locate user on load?"
|
|
127
127
|
msgstr "Najdi poluhu uživatele na startu?"
|
|
128
128
|
|
|
129
|
-
#: models.py:
|
|
129
|
+
#: models.py:202
|
|
130
130
|
msgid "Choose the map licence."
|
|
131
131
|
msgstr "Vyberte si licenci mapy."
|
|
132
132
|
|
|
133
|
-
#: models.py:
|
|
133
|
+
#: models.py:203
|
|
134
134
|
msgid "licence"
|
|
135
135
|
msgstr "licence"
|
|
136
136
|
|
|
137
|
-
#: models.py:
|
|
137
|
+
#: models.py:214
|
|
138
138
|
msgid "owner"
|
|
139
139
|
msgstr "vlastník"
|
|
140
140
|
|
|
141
|
-
#: models.py:
|
|
141
|
+
#: models.py:218
|
|
142
142
|
msgid "editors"
|
|
143
143
|
msgstr "přispěvovatelé"
|
|
144
144
|
|
|
145
|
-
#: models.py:
|
|
145
|
+
#: models.py:224
|
|
146
146
|
msgid "team"
|
|
147
147
|
msgstr "tým"
|
|
148
148
|
|
|
149
|
-
#: models.py:
|
|
149
|
+
#: models.py:230 models.py:519
|
|
150
150
|
msgid "edit status"
|
|
151
151
|
msgstr "kdo může provádět úpravy"
|
|
152
152
|
|
|
153
|
-
#: models.py:
|
|
153
|
+
#: models.py:235 models.py:524
|
|
154
154
|
msgid "share status"
|
|
155
155
|
msgstr "nastavení sdílení"
|
|
156
156
|
|
|
157
|
-
#: models.py:
|
|
157
|
+
#: models.py:238 models.py:514
|
|
158
158
|
msgid "settings"
|
|
159
159
|
msgstr "nastavení"
|
|
160
160
|
|
|
161
|
-
#: models.py:
|
|
161
|
+
#: models.py:243
|
|
162
|
+
msgid "save as template"
|
|
163
|
+
msgstr ""
|
|
164
|
+
|
|
165
|
+
#: models.py:244
|
|
166
|
+
msgid "This map is a template map."
|
|
167
|
+
msgstr ""
|
|
168
|
+
|
|
169
|
+
#: models.py:420
|
|
162
170
|
msgid "Clone of"
|
|
163
171
|
msgstr "Kopie"
|
|
164
172
|
|
|
165
|
-
#: models.py:
|
|
173
|
+
#: models.py:486 models.py:490 models.py:496
|
|
166
174
|
msgid "Inherit"
|
|
167
175
|
msgstr "Zdědit"
|
|
168
176
|
|
|
169
|
-
#: models.py:
|
|
177
|
+
#: models.py:509
|
|
170
178
|
msgid "display on load"
|
|
171
179
|
msgstr "zobrazit při startu"
|
|
172
180
|
|
|
173
|
-
#: models.py:
|
|
181
|
+
#: models.py:510
|
|
174
182
|
msgid "Display this layer on load."
|
|
175
183
|
msgstr "Zobrazit tuto vrstvu na startu."
|
|
176
184
|
|
|
185
|
+
#: settings/base.py:283
|
|
186
|
+
msgid "uMap user documentation"
|
|
187
|
+
msgstr ""
|
|
188
|
+
|
|
189
|
+
#: settings/base.py:288
|
|
190
|
+
msgid "Video tutorials"
|
|
191
|
+
msgstr ""
|
|
192
|
+
|
|
193
|
+
#: settings/base.py:293
|
|
194
|
+
msgid "OpenStreetMap.org forum"
|
|
195
|
+
msgstr ""
|
|
196
|
+
|
|
197
|
+
#: settings/base.py:298
|
|
198
|
+
msgid "OpenStreetMap France forum"
|
|
199
|
+
msgstr ""
|
|
200
|
+
|
|
201
|
+
#: settings/base.py:318
|
|
202
|
+
msgid "Art and Culture"
|
|
203
|
+
msgstr ""
|
|
204
|
+
|
|
205
|
+
#: settings/base.py:319
|
|
206
|
+
msgid "Cycling"
|
|
207
|
+
msgstr ""
|
|
208
|
+
|
|
209
|
+
#: settings/base.py:320
|
|
210
|
+
msgid "Business"
|
|
211
|
+
msgstr ""
|
|
212
|
+
|
|
213
|
+
#: settings/base.py:321
|
|
214
|
+
msgid "Environment"
|
|
215
|
+
msgstr ""
|
|
216
|
+
|
|
217
|
+
#: settings/base.py:322
|
|
218
|
+
msgid "Education"
|
|
219
|
+
msgstr ""
|
|
220
|
+
|
|
221
|
+
#: settings/base.py:323
|
|
222
|
+
msgid "Food and Agriculture"
|
|
223
|
+
msgstr ""
|
|
224
|
+
|
|
225
|
+
#: settings/base.py:324
|
|
226
|
+
msgid "Geopolitics"
|
|
227
|
+
msgstr ""
|
|
228
|
+
|
|
229
|
+
#: settings/base.py:325
|
|
230
|
+
msgid "Health"
|
|
231
|
+
msgstr ""
|
|
232
|
+
|
|
233
|
+
#: settings/base.py:326
|
|
234
|
+
msgid "Hiking"
|
|
235
|
+
msgstr ""
|
|
236
|
+
|
|
237
|
+
#: settings/base.py:327
|
|
238
|
+
msgid "History"
|
|
239
|
+
msgstr ""
|
|
240
|
+
|
|
241
|
+
#: settings/base.py:328
|
|
242
|
+
msgid "Public sector"
|
|
243
|
+
msgstr ""
|
|
244
|
+
|
|
245
|
+
#: settings/base.py:329
|
|
246
|
+
msgid "Science"
|
|
247
|
+
msgstr ""
|
|
248
|
+
|
|
249
|
+
#: settings/base.py:330
|
|
250
|
+
msgid "Shopping"
|
|
251
|
+
msgstr ""
|
|
252
|
+
|
|
253
|
+
#: settings/base.py:331
|
|
254
|
+
msgid "Sport and Leisure"
|
|
255
|
+
msgstr ""
|
|
256
|
+
|
|
257
|
+
#: settings/base.py:332
|
|
258
|
+
msgid "Travel"
|
|
259
|
+
msgstr ""
|
|
260
|
+
|
|
261
|
+
#: settings/base.py:333
|
|
262
|
+
msgid "Transports"
|
|
263
|
+
msgstr ""
|
|
264
|
+
|
|
265
|
+
#: settings/base.py:334
|
|
266
|
+
msgid "Tourism"
|
|
267
|
+
msgstr ""
|
|
268
|
+
|
|
177
269
|
#: templates/403.html:8
|
|
178
270
|
msgid ""
|
|
179
271
|
"<a href=\"https://discover.umap-project.org/support/faq/#map-statuses\" "
|
|
@@ -316,7 +408,7 @@ msgid "And it's <a href=\"%(repo_url)s\">open source</a>!"
|
|
|
316
408
|
msgstr "A je to celé <a href=\"%(repo_url)s\">open source</a>!"
|
|
317
409
|
|
|
318
410
|
#: templates/umap/about_summary.html:63 templates/umap/navigation.html:39
|
|
319
|
-
#: templates/umap/user_dashboard.html:
|
|
411
|
+
#: templates/umap/user_dashboard.html:16
|
|
320
412
|
msgid "Create a map"
|
|
321
413
|
msgstr "Vytvořit mapu"
|
|
322
414
|
|
|
@@ -414,11 +506,20 @@ msgstr "Moje mapy (%(count)s)"
|
|
|
414
506
|
msgid "My Maps"
|
|
415
507
|
msgstr "Moje mapy"
|
|
416
508
|
|
|
417
|
-
#: templates/umap/dashboard_menu.html:
|
|
509
|
+
#: templates/umap/dashboard_menu.html:11
|
|
510
|
+
#, python-format
|
|
511
|
+
msgid "My Templates (%(count)s)"
|
|
512
|
+
msgstr ""
|
|
513
|
+
|
|
514
|
+
#: templates/umap/dashboard_menu.html:13 templates/umap/user_templates.html:6
|
|
515
|
+
msgid "My Templates"
|
|
516
|
+
msgstr ""
|
|
517
|
+
|
|
518
|
+
#: templates/umap/dashboard_menu.html:17
|
|
418
519
|
msgid "My profile"
|
|
419
520
|
msgstr "Můj profil"
|
|
420
521
|
|
|
421
|
-
#: templates/umap/dashboard_menu.html:
|
|
522
|
+
#: templates/umap/dashboard_menu.html:20
|
|
422
523
|
msgid "My teams"
|
|
423
524
|
msgstr "Moje týmy"
|
|
424
525
|
|
|
@@ -426,7 +527,7 @@ msgstr "Moje týmy"
|
|
|
426
527
|
msgid "Map of the uMaps"
|
|
427
528
|
msgstr "Mapa všch uMap"
|
|
428
529
|
|
|
429
|
-
#: templates/umap/home.html:
|
|
530
|
+
#: templates/umap/home.html:25
|
|
430
531
|
msgid "Get inspired, browse maps"
|
|
431
532
|
msgstr "Inspirujte se, koukněte na mapy jiných"
|
|
432
533
|
|
|
@@ -434,11 +535,23 @@ msgstr "Inspirujte se, koukněte na mapy jiných"
|
|
|
434
535
|
msgid "You are logged in. Continuing..."
|
|
435
536
|
msgstr "Jste přihlášeni. Jedeme dál ..."
|
|
436
537
|
|
|
437
|
-
#: templates/umap/map_list.html:
|
|
538
|
+
#: templates/umap/map_list.html:15
|
|
539
|
+
msgid "template"
|
|
540
|
+
msgstr ""
|
|
541
|
+
|
|
542
|
+
#: templates/umap/map_list.html:18 views.py:458
|
|
438
543
|
msgid "by"
|
|
439
544
|
msgstr ", autor:"
|
|
440
545
|
|
|
441
|
-
#: templates/umap/map_list.html:
|
|
546
|
+
#: templates/umap/map_list.html:22
|
|
547
|
+
msgid "See the template"
|
|
548
|
+
msgstr ""
|
|
549
|
+
|
|
550
|
+
#: templates/umap/map_list.html:22
|
|
551
|
+
msgid "See the map"
|
|
552
|
+
msgstr ""
|
|
553
|
+
|
|
554
|
+
#: templates/umap/map_list.html:28
|
|
442
555
|
msgid "More"
|
|
443
556
|
msgstr "Více"
|
|
444
557
|
|
|
@@ -470,7 +583,7 @@ msgstr "Vlastník"
|
|
|
470
583
|
msgid "Actions"
|
|
471
584
|
msgstr "Akce"
|
|
472
585
|
|
|
473
|
-
#: templates/umap/map_table.html:
|
|
586
|
+
#: templates/umap/map_table.html:40 templates/umap/map_table.html:42
|
|
474
587
|
msgid "Open preview"
|
|
475
588
|
msgstr "Otevřít náhled"
|
|
476
589
|
|
|
@@ -599,11 +712,15 @@ msgstr[1] "%(count)s nalezené mapy:"
|
|
|
599
712
|
msgstr[2] "%(count)s nalezené mapy:"
|
|
600
713
|
msgstr[3] "%(count)s nalezených map:"
|
|
601
714
|
|
|
602
|
-
#: templates/umap/search.html:
|
|
715
|
+
#: templates/umap/search.html:30 templates/umap/user_dashboard.html:17
|
|
603
716
|
msgid "No map found."
|
|
604
717
|
msgstr "Mapa nenalezena."
|
|
605
718
|
|
|
606
|
-
#: templates/umap/search.html:
|
|
719
|
+
#: templates/umap/search.html:36
|
|
720
|
+
msgid "Latest created maps in category"
|
|
721
|
+
msgstr ""
|
|
722
|
+
|
|
723
|
+
#: templates/umap/search.html:43
|
|
607
724
|
msgid "Latest created maps"
|
|
608
725
|
msgstr "Nedávno vytvořené mapy"
|
|
609
726
|
|
|
@@ -611,7 +728,11 @@ msgstr "Nedávno vytvořené mapy"
|
|
|
611
728
|
msgid "Search maps"
|
|
612
729
|
msgstr "Prohledávejte mapy"
|
|
613
730
|
|
|
614
|
-
#: templates/umap/search_bar.html:
|
|
731
|
+
#: templates/umap/search_bar.html:14
|
|
732
|
+
msgid "Any category"
|
|
733
|
+
msgstr ""
|
|
734
|
+
|
|
735
|
+
#: templates/umap/search_bar.html:19
|
|
615
736
|
msgid "Search"
|
|
616
737
|
msgstr "Hledej"
|
|
617
738
|
|
|
@@ -646,20 +767,20 @@ msgstr "Smazat tento tým"
|
|
|
646
767
|
msgid "Add user"
|
|
647
768
|
msgstr "Přidat uživatele"
|
|
648
769
|
|
|
649
|
-
#: templates/umap/user_dashboard.html:
|
|
770
|
+
#: templates/umap/user_dashboard.html:10
|
|
650
771
|
msgid "Search my maps"
|
|
651
772
|
msgstr "Prohledávat moje mapy"
|
|
652
773
|
|
|
653
|
-
#: templates/umap/user_dashboard.html:
|
|
654
|
-
msgid "Map’s
|
|
655
|
-
msgstr "
|
|
774
|
+
#: templates/umap/user_dashboard.html:11
|
|
775
|
+
msgid "Map’s name"
|
|
776
|
+
msgstr ""
|
|
656
777
|
|
|
657
|
-
#: templates/umap/user_dashboard.html:
|
|
778
|
+
#: templates/umap/user_dashboard.html:12
|
|
658
779
|
#, python-format
|
|
659
780
|
msgid "Download %(count)s maps"
|
|
660
781
|
msgstr "Stáhnout %(count)s map"
|
|
661
782
|
|
|
662
|
-
#: templates/umap/user_dashboard.html:
|
|
783
|
+
#: templates/umap/user_dashboard.html:15
|
|
663
784
|
msgid "You have no map yet."
|
|
664
785
|
msgstr "Zatím nemáte žádnou mapu."
|
|
665
786
|
|
|
@@ -675,70 +796,95 @@ msgstr "Uživatelé"
|
|
|
675
796
|
msgid "New team"
|
|
676
797
|
msgstr "Nový tým"
|
|
677
798
|
|
|
678
|
-
#:
|
|
799
|
+
#: templates/umap/user_templates.html:10
|
|
800
|
+
msgid "Search my templates"
|
|
801
|
+
msgstr ""
|
|
802
|
+
|
|
803
|
+
#: templates/umap/user_templates.html:11
|
|
804
|
+
msgid "Template’s name"
|
|
805
|
+
msgstr ""
|
|
806
|
+
|
|
807
|
+
#: templates/umap/user_templates.html:12
|
|
808
|
+
#, python-format
|
|
809
|
+
msgid "Download %(count)s templates"
|
|
810
|
+
msgstr ""
|
|
811
|
+
|
|
812
|
+
#: templates/umap/user_templates.html:15
|
|
813
|
+
msgid "You have no template yet."
|
|
814
|
+
msgstr ""
|
|
815
|
+
|
|
816
|
+
#: templates/umap/user_templates.html:16
|
|
817
|
+
msgid "Create a template"
|
|
818
|
+
msgstr ""
|
|
819
|
+
|
|
820
|
+
#: templates/umap/user_templates.html:17
|
|
821
|
+
msgid "No template found."
|
|
822
|
+
msgstr ""
|
|
823
|
+
|
|
824
|
+
#: views.py:233
|
|
679
825
|
msgid "Cannot delete a team with more than one member"
|
|
680
826
|
msgstr "Nelze smazat tým s více než jedním členem"
|
|
681
827
|
|
|
682
|
-
#: views.py:
|
|
828
|
+
#: views.py:237
|
|
683
829
|
#, python-format
|
|
684
830
|
msgid "Team “%(name)s” has been deleted"
|
|
685
831
|
msgstr "Tým \"%(name)s\" byl smazán"
|
|
686
832
|
|
|
687
|
-
#: views.py:
|
|
833
|
+
#: views.py:463
|
|
688
834
|
msgid "View the map"
|
|
689
835
|
msgstr "Prohlídnout si tuto mapu"
|
|
690
836
|
|
|
691
|
-
#: views.py:
|
|
837
|
+
#: views.py:864
|
|
692
838
|
msgid "See full screen"
|
|
693
839
|
msgstr "Zobrazit celou obrazovku"
|
|
694
840
|
|
|
695
|
-
#: views.py:
|
|
841
|
+
#: views.py:1007
|
|
696
842
|
msgid "Map editors updated with success!"
|
|
697
843
|
msgstr "Seznam přispěvovatelů byl úspěšně upraven!"
|
|
698
844
|
|
|
699
|
-
#: views.py:
|
|
845
|
+
#: views.py:1043
|
|
700
846
|
#, python-format
|
|
701
847
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
702
848
|
msgstr "Odkaz na úpravu uMap pro vaši mapu: %(map_name)s"
|
|
703
849
|
|
|
704
|
-
#: views.py:
|
|
850
|
+
#: views.py:1046
|
|
705
851
|
#, python-format
|
|
706
852
|
msgid "Here is your secret edit link: %(link)s"
|
|
707
853
|
msgstr "Zde je váš tajný odkaz na úpravu: %(link)s"
|
|
708
854
|
|
|
709
|
-
#: views.py:
|
|
855
|
+
#: views.py:1053
|
|
710
856
|
#, python-format
|
|
711
857
|
msgid "Can't send email to %(email)s"
|
|
712
858
|
msgstr "Nelze odeslat e-mail na %(email)s"
|
|
713
859
|
|
|
714
|
-
#: views.py:
|
|
860
|
+
#: views.py:1056
|
|
715
861
|
#, python-format
|
|
716
862
|
msgid "Email sent to %(email)s"
|
|
717
863
|
msgstr "E-mail odeslán na %(email)s"
|
|
718
864
|
|
|
719
|
-
#: views.py:
|
|
865
|
+
#: views.py:1067
|
|
720
866
|
msgid "Only its owner can delete the map."
|
|
721
867
|
msgstr "Jen vlastník může vymzat tuto mapu."
|
|
722
868
|
|
|
723
|
-
#: views.py:
|
|
869
|
+
#: views.py:1073
|
|
724
870
|
msgid "Map successfully deleted."
|
|
725
871
|
msgstr "Mapa byla úspěšně smazána."
|
|
726
872
|
|
|
727
|
-
#: views.py:
|
|
873
|
+
#: views.py:1099
|
|
728
874
|
#, python-format
|
|
729
875
|
msgid ""
|
|
730
876
|
"Your map has been cloned! If you want to edit this map from another "
|
|
731
877
|
"computer, please use this link: %(anonymous_url)s"
|
|
732
878
|
msgstr "Byla vytvořena kopie mapy! Pokud chcete upravovat tuto mapu z jiného počítače, použijte tento odkaz: %(anonymous_url)s"
|
|
733
879
|
|
|
734
|
-
#: views.py:
|
|
880
|
+
#: views.py:1104
|
|
735
881
|
msgid "Congratulations, your map has been cloned!"
|
|
736
882
|
msgstr "Gratulujeme, byla vytvořena kopie mapy!"
|
|
737
883
|
|
|
738
|
-
#: views.py:
|
|
884
|
+
#: views.py:1358
|
|
739
885
|
msgid "Layer successfully deleted."
|
|
740
886
|
msgstr "Vrstva úspěšně vymazána."
|
|
741
887
|
|
|
742
|
-
#: views.py:
|
|
888
|
+
#: views.py:1380
|
|
743
889
|
msgid "Permissions updated with success!"
|
|
744
890
|
msgstr "Oprávnění úspěšně aktualizována!"
|
|
Binary file
|