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
|
@@ -9,7 +9,7 @@ msgid ""
|
|
|
9
9
|
msgstr ""
|
|
10
10
|
"Project-Id-Version: uMap\n"
|
|
11
11
|
"Report-Msgid-Bugs-To: \n"
|
|
12
|
-
"POT-Creation-Date: 2025-
|
|
12
|
+
"POT-Creation-Date: 2025-06-10 09:19+0000\n"
|
|
13
13
|
"PO-Revision-Date: 2013-11-22 14:00+0000\n"
|
|
14
14
|
"Last-Translator: Moon Ika, 2020,2025\n"
|
|
15
15
|
"Language-Team: Estonian (http://app.transifex.com/openstreetmap/umap/language/et/)\n"
|
|
@@ -39,134 +39,226 @@ msgid ""
|
|
|
39
39
|
" and maps. Then, please logout and login again with the new provider."
|
|
40
40
|
msgstr ""
|
|
41
41
|
|
|
42
|
-
#: models.py:
|
|
42
|
+
#: models.py:61 models.py:80
|
|
43
43
|
msgid "name"
|
|
44
44
|
msgstr "nimi"
|
|
45
45
|
|
|
46
|
-
#: models.py:
|
|
46
|
+
#: models.py:63 models.py:503
|
|
47
47
|
msgid "description"
|
|
48
48
|
msgstr "kirjeldus"
|
|
49
49
|
|
|
50
|
-
#: models.py:
|
|
50
|
+
#: models.py:111
|
|
51
51
|
msgid "details"
|
|
52
52
|
msgstr "detailid"
|
|
53
53
|
|
|
54
|
-
#: models.py:
|
|
54
|
+
#: models.py:112
|
|
55
55
|
msgid "Link to a page where the licence is detailed."
|
|
56
56
|
msgstr "Link litsentsi selgitavale lehele."
|
|
57
57
|
|
|
58
|
-
#: models.py:
|
|
58
|
+
#: models.py:122
|
|
59
59
|
msgid "URL template using OSM tile format"
|
|
60
60
|
msgstr ""
|
|
61
61
|
|
|
62
|
-
#: models.py:
|
|
62
|
+
#: models.py:128
|
|
63
63
|
msgid "Order of the tilelayers in the edit box"
|
|
64
64
|
msgstr ""
|
|
65
65
|
|
|
66
|
-
#: models.py:
|
|
66
|
+
#: models.py:176 models.py:497
|
|
67
67
|
msgid "Only editable with secret edit link"
|
|
68
68
|
msgstr "Muudetav ainult salajase muutmislingiga"
|
|
69
69
|
|
|
70
|
-
#: models.py:
|
|
70
|
+
#: models.py:177 models.py:498
|
|
71
71
|
msgid "Everyone can edit"
|
|
72
72
|
msgstr "Igaüks saab muuta"
|
|
73
73
|
|
|
74
|
-
#: models.py:
|
|
74
|
+
#: models.py:180 models.py:491
|
|
75
75
|
msgid "Everyone"
|
|
76
76
|
msgstr "Kõik"
|
|
77
77
|
|
|
78
|
-
#: models.py:
|
|
78
|
+
#: models.py:181 models.py:190 models.py:492
|
|
79
79
|
msgid "Editors and team only"
|
|
80
80
|
msgstr "Ainult toimetajad ja meeskond"
|
|
81
81
|
|
|
82
|
-
#: models.py:
|
|
82
|
+
#: models.py:182 models.py:493
|
|
83
83
|
msgid "Owner only"
|
|
84
84
|
msgstr "Ainult omanik"
|
|
85
85
|
|
|
86
|
-
#: models.py:
|
|
86
|
+
#: models.py:185
|
|
87
87
|
msgid "Draft (private)"
|
|
88
88
|
msgstr "Mustand (privaatne)"
|
|
89
89
|
|
|
90
|
-
#: models.py:
|
|
90
|
+
#: models.py:186
|
|
91
91
|
msgid "Everyone (public)"
|
|
92
92
|
msgstr "Kõik (avalik)"
|
|
93
93
|
|
|
94
|
-
#: models.py:
|
|
94
|
+
#: models.py:189
|
|
95
95
|
msgid "Anyone with link"
|
|
96
96
|
msgstr ""
|
|
97
97
|
|
|
98
|
-
#: models.py:
|
|
98
|
+
#: models.py:191
|
|
99
99
|
msgid "Blocked"
|
|
100
100
|
msgstr "Blokeeritud"
|
|
101
101
|
|
|
102
|
-
#: models.py:
|
|
102
|
+
#: models.py:192 models.py:487
|
|
103
103
|
msgid "Deleted"
|
|
104
104
|
msgstr "Kustutatud"
|
|
105
105
|
|
|
106
|
-
#: models.py:
|
|
106
|
+
#: models.py:195
|
|
107
107
|
msgid "center"
|
|
108
108
|
msgstr "tsentreeri"
|
|
109
109
|
|
|
110
|
-
#: models.py:
|
|
110
|
+
#: models.py:196
|
|
111
111
|
msgid "zoom"
|
|
112
112
|
msgstr "suurenda"
|
|
113
113
|
|
|
114
|
-
#: models.py:
|
|
114
|
+
#: models.py:198
|
|
115
115
|
msgid "locate"
|
|
116
116
|
msgstr "määra asukoht"
|
|
117
117
|
|
|
118
|
-
#: models.py:
|
|
118
|
+
#: models.py:198
|
|
119
119
|
msgid "Locate user on load?"
|
|
120
120
|
msgstr "Määra laadimisel kasutaja asukoht?"
|
|
121
121
|
|
|
122
|
-
#: models.py:
|
|
122
|
+
#: models.py:202
|
|
123
123
|
msgid "Choose the map licence."
|
|
124
124
|
msgstr "Vali kaardi litsents."
|
|
125
125
|
|
|
126
|
-
#: models.py:
|
|
126
|
+
#: models.py:203
|
|
127
127
|
msgid "licence"
|
|
128
128
|
msgstr "litsents"
|
|
129
129
|
|
|
130
|
-
#: models.py:
|
|
130
|
+
#: models.py:214
|
|
131
131
|
msgid "owner"
|
|
132
132
|
msgstr "omanik"
|
|
133
133
|
|
|
134
|
-
#: models.py:
|
|
134
|
+
#: models.py:218
|
|
135
135
|
msgid "editors"
|
|
136
136
|
msgstr "toimetajad"
|
|
137
137
|
|
|
138
|
-
#: models.py:
|
|
138
|
+
#: models.py:224
|
|
139
139
|
msgid "team"
|
|
140
140
|
msgstr "meeskond"
|
|
141
141
|
|
|
142
|
-
#: models.py:
|
|
142
|
+
#: models.py:230 models.py:519
|
|
143
143
|
msgid "edit status"
|
|
144
144
|
msgstr "muutmise staatus"
|
|
145
145
|
|
|
146
|
-
#: models.py:
|
|
146
|
+
#: models.py:235 models.py:524
|
|
147
147
|
msgid "share status"
|
|
148
148
|
msgstr "jagamise staatus"
|
|
149
149
|
|
|
150
|
-
#: models.py:
|
|
150
|
+
#: models.py:238 models.py:514
|
|
151
151
|
msgid "settings"
|
|
152
152
|
msgstr "seaded"
|
|
153
153
|
|
|
154
|
-
#: models.py:
|
|
154
|
+
#: models.py:243
|
|
155
|
+
msgid "save as template"
|
|
156
|
+
msgstr ""
|
|
157
|
+
|
|
158
|
+
#: models.py:244
|
|
159
|
+
msgid "This map is a template map."
|
|
160
|
+
msgstr ""
|
|
161
|
+
|
|
162
|
+
#: models.py:420
|
|
155
163
|
msgid "Clone of"
|
|
156
164
|
msgstr "Koopia"
|
|
157
165
|
|
|
158
|
-
#: models.py:
|
|
166
|
+
#: models.py:486 models.py:490 models.py:496
|
|
159
167
|
msgid "Inherit"
|
|
160
168
|
msgstr ""
|
|
161
169
|
|
|
162
|
-
#: models.py:
|
|
170
|
+
#: models.py:509
|
|
163
171
|
msgid "display on load"
|
|
164
172
|
msgstr "kuva laadimisel"
|
|
165
173
|
|
|
166
|
-
#: models.py:
|
|
174
|
+
#: models.py:510
|
|
167
175
|
msgid "Display this layer on load."
|
|
168
176
|
msgstr "Kuva seda kihti laadimisel"
|
|
169
177
|
|
|
178
|
+
#: settings/base.py:283
|
|
179
|
+
msgid "uMap user documentation"
|
|
180
|
+
msgstr ""
|
|
181
|
+
|
|
182
|
+
#: settings/base.py:288
|
|
183
|
+
msgid "Video tutorials"
|
|
184
|
+
msgstr ""
|
|
185
|
+
|
|
186
|
+
#: settings/base.py:293
|
|
187
|
+
msgid "OpenStreetMap.org forum"
|
|
188
|
+
msgstr ""
|
|
189
|
+
|
|
190
|
+
#: settings/base.py:298
|
|
191
|
+
msgid "OpenStreetMap France forum"
|
|
192
|
+
msgstr ""
|
|
193
|
+
|
|
194
|
+
#: settings/base.py:318
|
|
195
|
+
msgid "Art and Culture"
|
|
196
|
+
msgstr ""
|
|
197
|
+
|
|
198
|
+
#: settings/base.py:319
|
|
199
|
+
msgid "Cycling"
|
|
200
|
+
msgstr ""
|
|
201
|
+
|
|
202
|
+
#: settings/base.py:320
|
|
203
|
+
msgid "Business"
|
|
204
|
+
msgstr ""
|
|
205
|
+
|
|
206
|
+
#: settings/base.py:321
|
|
207
|
+
msgid "Environment"
|
|
208
|
+
msgstr ""
|
|
209
|
+
|
|
210
|
+
#: settings/base.py:322
|
|
211
|
+
msgid "Education"
|
|
212
|
+
msgstr ""
|
|
213
|
+
|
|
214
|
+
#: settings/base.py:323
|
|
215
|
+
msgid "Food and Agriculture"
|
|
216
|
+
msgstr ""
|
|
217
|
+
|
|
218
|
+
#: settings/base.py:324
|
|
219
|
+
msgid "Geopolitics"
|
|
220
|
+
msgstr ""
|
|
221
|
+
|
|
222
|
+
#: settings/base.py:325
|
|
223
|
+
msgid "Health"
|
|
224
|
+
msgstr ""
|
|
225
|
+
|
|
226
|
+
#: settings/base.py:326
|
|
227
|
+
msgid "Hiking"
|
|
228
|
+
msgstr ""
|
|
229
|
+
|
|
230
|
+
#: settings/base.py:327
|
|
231
|
+
msgid "History"
|
|
232
|
+
msgstr ""
|
|
233
|
+
|
|
234
|
+
#: settings/base.py:328
|
|
235
|
+
msgid "Public sector"
|
|
236
|
+
msgstr ""
|
|
237
|
+
|
|
238
|
+
#: settings/base.py:329
|
|
239
|
+
msgid "Science"
|
|
240
|
+
msgstr ""
|
|
241
|
+
|
|
242
|
+
#: settings/base.py:330
|
|
243
|
+
msgid "Shopping"
|
|
244
|
+
msgstr ""
|
|
245
|
+
|
|
246
|
+
#: settings/base.py:331
|
|
247
|
+
msgid "Sport and Leisure"
|
|
248
|
+
msgstr ""
|
|
249
|
+
|
|
250
|
+
#: settings/base.py:332
|
|
251
|
+
msgid "Travel"
|
|
252
|
+
msgstr ""
|
|
253
|
+
|
|
254
|
+
#: settings/base.py:333
|
|
255
|
+
msgid "Transports"
|
|
256
|
+
msgstr ""
|
|
257
|
+
|
|
258
|
+
#: settings/base.py:334
|
|
259
|
+
msgid "Tourism"
|
|
260
|
+
msgstr ""
|
|
261
|
+
|
|
170
262
|
#: templates/403.html:8
|
|
171
263
|
msgid ""
|
|
172
264
|
"<a href=\"https://discover.umap-project.org/support/faq/#map-statuses\" "
|
|
@@ -309,7 +401,7 @@ msgid "And it's <a href=\"%(repo_url)s\">open source</a>!"
|
|
|
309
401
|
msgstr "Ja see kõik on <a href=\"%(repo_url)s\">avatud lähtekoodiga</a>!"
|
|
310
402
|
|
|
311
403
|
#: templates/umap/about_summary.html:63 templates/umap/navigation.html:39
|
|
312
|
-
#: templates/umap/user_dashboard.html:
|
|
404
|
+
#: templates/umap/user_dashboard.html:16
|
|
313
405
|
msgid "Create a map"
|
|
314
406
|
msgstr "Loo kaart"
|
|
315
407
|
|
|
@@ -407,11 +499,20 @@ msgstr "Minu kaardid (%(count)s)"
|
|
|
407
499
|
msgid "My Maps"
|
|
408
500
|
msgstr "Minu kaardid"
|
|
409
501
|
|
|
410
|
-
#: templates/umap/dashboard_menu.html:
|
|
502
|
+
#: templates/umap/dashboard_menu.html:11
|
|
503
|
+
#, python-format
|
|
504
|
+
msgid "My Templates (%(count)s)"
|
|
505
|
+
msgstr ""
|
|
506
|
+
|
|
507
|
+
#: templates/umap/dashboard_menu.html:13 templates/umap/user_templates.html:6
|
|
508
|
+
msgid "My Templates"
|
|
509
|
+
msgstr ""
|
|
510
|
+
|
|
511
|
+
#: templates/umap/dashboard_menu.html:17
|
|
411
512
|
msgid "My profile"
|
|
412
513
|
msgstr "Minu profiil"
|
|
413
514
|
|
|
414
|
-
#: templates/umap/dashboard_menu.html:
|
|
515
|
+
#: templates/umap/dashboard_menu.html:20
|
|
415
516
|
msgid "My teams"
|
|
416
517
|
msgstr "Minu meeskonnad"
|
|
417
518
|
|
|
@@ -419,7 +520,7 @@ msgstr "Minu meeskonnad"
|
|
|
419
520
|
msgid "Map of the uMaps"
|
|
420
521
|
msgstr "uMapsi kaart"
|
|
421
522
|
|
|
422
|
-
#: templates/umap/home.html:
|
|
523
|
+
#: templates/umap/home.html:25
|
|
423
524
|
msgid "Get inspired, browse maps"
|
|
424
525
|
msgstr "Sirvi kaarte ja ammuta inspiratsiooni"
|
|
425
526
|
|
|
@@ -427,11 +528,23 @@ msgstr "Sirvi kaarte ja ammuta inspiratsiooni"
|
|
|
427
528
|
msgid "You are logged in. Continuing..."
|
|
428
529
|
msgstr "Oled sisse logitud. Jätkamine..."
|
|
429
530
|
|
|
430
|
-
#: templates/umap/map_list.html:
|
|
531
|
+
#: templates/umap/map_list.html:15
|
|
532
|
+
msgid "template"
|
|
533
|
+
msgstr ""
|
|
534
|
+
|
|
535
|
+
#: templates/umap/map_list.html:18 views.py:458
|
|
431
536
|
msgid "by"
|
|
432
537
|
msgstr "kasutajalt"
|
|
433
538
|
|
|
434
|
-
#: templates/umap/map_list.html:
|
|
539
|
+
#: templates/umap/map_list.html:22
|
|
540
|
+
msgid "See the template"
|
|
541
|
+
msgstr ""
|
|
542
|
+
|
|
543
|
+
#: templates/umap/map_list.html:22
|
|
544
|
+
msgid "See the map"
|
|
545
|
+
msgstr ""
|
|
546
|
+
|
|
547
|
+
#: templates/umap/map_list.html:28
|
|
435
548
|
msgid "More"
|
|
436
549
|
msgstr "Rohkem"
|
|
437
550
|
|
|
@@ -463,7 +576,7 @@ msgstr "Omanik"
|
|
|
463
576
|
msgid "Actions"
|
|
464
577
|
msgstr ""
|
|
465
578
|
|
|
466
|
-
#: templates/umap/map_table.html:
|
|
579
|
+
#: templates/umap/map_table.html:40 templates/umap/map_table.html:42
|
|
467
580
|
msgid "Open preview"
|
|
468
581
|
msgstr ""
|
|
469
582
|
|
|
@@ -590,11 +703,15 @@ msgid_plural "%(count)s maps found:"
|
|
|
590
703
|
msgstr[0] ""
|
|
591
704
|
msgstr[1] ""
|
|
592
705
|
|
|
593
|
-
#: templates/umap/search.html:
|
|
706
|
+
#: templates/umap/search.html:30 templates/umap/user_dashboard.html:17
|
|
594
707
|
msgid "No map found."
|
|
595
708
|
msgstr "Kaarti ei leitud."
|
|
596
709
|
|
|
597
|
-
#: templates/umap/search.html:
|
|
710
|
+
#: templates/umap/search.html:36
|
|
711
|
+
msgid "Latest created maps in category"
|
|
712
|
+
msgstr ""
|
|
713
|
+
|
|
714
|
+
#: templates/umap/search.html:43
|
|
598
715
|
msgid "Latest created maps"
|
|
599
716
|
msgstr "Viimati loodud kaardid."
|
|
600
717
|
|
|
@@ -602,7 +719,11 @@ msgstr "Viimati loodud kaardid."
|
|
|
602
719
|
msgid "Search maps"
|
|
603
720
|
msgstr "Otsi kaarte"
|
|
604
721
|
|
|
605
|
-
#: templates/umap/search_bar.html:
|
|
722
|
+
#: templates/umap/search_bar.html:14
|
|
723
|
+
msgid "Any category"
|
|
724
|
+
msgstr ""
|
|
725
|
+
|
|
726
|
+
#: templates/umap/search_bar.html:19
|
|
606
727
|
msgid "Search"
|
|
607
728
|
msgstr "Otsi"
|
|
608
729
|
|
|
@@ -637,20 +758,20 @@ msgstr "Kustuta see meeskond"
|
|
|
637
758
|
msgid "Add user"
|
|
638
759
|
msgstr "Lisa kasutaja"
|
|
639
760
|
|
|
640
|
-
#: templates/umap/user_dashboard.html:
|
|
761
|
+
#: templates/umap/user_dashboard.html:10
|
|
641
762
|
msgid "Search my maps"
|
|
642
763
|
msgstr "Otsi minu kaarte"
|
|
643
764
|
|
|
644
|
-
#: templates/umap/user_dashboard.html:
|
|
645
|
-
msgid "Map’s
|
|
646
|
-
msgstr "
|
|
765
|
+
#: templates/umap/user_dashboard.html:11
|
|
766
|
+
msgid "Map’s name"
|
|
767
|
+
msgstr ""
|
|
647
768
|
|
|
648
|
-
#: templates/umap/user_dashboard.html:
|
|
769
|
+
#: templates/umap/user_dashboard.html:12
|
|
649
770
|
#, python-format
|
|
650
771
|
msgid "Download %(count)s maps"
|
|
651
772
|
msgstr ""
|
|
652
773
|
|
|
653
|
-
#: templates/umap/user_dashboard.html:
|
|
774
|
+
#: templates/umap/user_dashboard.html:15
|
|
654
775
|
msgid "You have no map yet."
|
|
655
776
|
msgstr ""
|
|
656
777
|
|
|
@@ -666,70 +787,95 @@ msgstr "Kasutajad"
|
|
|
666
787
|
msgid "New team"
|
|
667
788
|
msgstr "Uus meeskond"
|
|
668
789
|
|
|
669
|
-
#:
|
|
790
|
+
#: templates/umap/user_templates.html:10
|
|
791
|
+
msgid "Search my templates"
|
|
792
|
+
msgstr ""
|
|
793
|
+
|
|
794
|
+
#: templates/umap/user_templates.html:11
|
|
795
|
+
msgid "Template’s name"
|
|
796
|
+
msgstr ""
|
|
797
|
+
|
|
798
|
+
#: templates/umap/user_templates.html:12
|
|
799
|
+
#, python-format
|
|
800
|
+
msgid "Download %(count)s templates"
|
|
801
|
+
msgstr ""
|
|
802
|
+
|
|
803
|
+
#: templates/umap/user_templates.html:15
|
|
804
|
+
msgid "You have no template yet."
|
|
805
|
+
msgstr ""
|
|
806
|
+
|
|
807
|
+
#: templates/umap/user_templates.html:16
|
|
808
|
+
msgid "Create a template"
|
|
809
|
+
msgstr ""
|
|
810
|
+
|
|
811
|
+
#: templates/umap/user_templates.html:17
|
|
812
|
+
msgid "No template found."
|
|
813
|
+
msgstr ""
|
|
814
|
+
|
|
815
|
+
#: views.py:233
|
|
670
816
|
msgid "Cannot delete a team with more than one member"
|
|
671
817
|
msgstr ""
|
|
672
818
|
|
|
673
|
-
#: views.py:
|
|
819
|
+
#: views.py:237
|
|
674
820
|
#, python-format
|
|
675
821
|
msgid "Team “%(name)s” has been deleted"
|
|
676
822
|
msgstr "Meeskond “%(name)s” on kustutatud"
|
|
677
823
|
|
|
678
|
-
#: views.py:
|
|
824
|
+
#: views.py:463
|
|
679
825
|
msgid "View the map"
|
|
680
826
|
msgstr "Vaata kaarti"
|
|
681
827
|
|
|
682
|
-
#: views.py:
|
|
828
|
+
#: views.py:864
|
|
683
829
|
msgid "See full screen"
|
|
684
830
|
msgstr "Vaata täisekraanil"
|
|
685
831
|
|
|
686
|
-
#: views.py:
|
|
832
|
+
#: views.py:1007
|
|
687
833
|
msgid "Map editors updated with success!"
|
|
688
834
|
msgstr "Kaardi toimetajaid uuendati edukalt!"
|
|
689
835
|
|
|
690
|
-
#: views.py:
|
|
836
|
+
#: views.py:1043
|
|
691
837
|
#, python-format
|
|
692
838
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
693
839
|
msgstr "Redigeerimislink sinu uMapi kaardile: %(map_name)s"
|
|
694
840
|
|
|
695
|
-
#: views.py:
|
|
841
|
+
#: views.py:1046
|
|
696
842
|
#, python-format
|
|
697
843
|
msgid "Here is your secret edit link: %(link)s"
|
|
698
844
|
msgstr "Siin on sinu salajane redigeerimislink: %(link)s"
|
|
699
845
|
|
|
700
|
-
#: views.py:
|
|
846
|
+
#: views.py:1053
|
|
701
847
|
#, python-format
|
|
702
848
|
msgid "Can't send email to %(email)s"
|
|
703
849
|
msgstr "Ei saa saata e-kirja aadressile %(email)s"
|
|
704
850
|
|
|
705
|
-
#: views.py:
|
|
851
|
+
#: views.py:1056
|
|
706
852
|
#, python-format
|
|
707
853
|
msgid "Email sent to %(email)s"
|
|
708
854
|
msgstr "E-kiri saadetud aadressile %(email)s"
|
|
709
855
|
|
|
710
|
-
#: views.py:
|
|
856
|
+
#: views.py:1067
|
|
711
857
|
msgid "Only its owner can delete the map."
|
|
712
858
|
msgstr "Kaardi saab kustutada vaid selle omanik."
|
|
713
859
|
|
|
714
|
-
#: views.py:
|
|
860
|
+
#: views.py:1073
|
|
715
861
|
msgid "Map successfully deleted."
|
|
716
862
|
msgstr "Kaart on kustutatud."
|
|
717
863
|
|
|
718
|
-
#: views.py:
|
|
864
|
+
#: views.py:1099
|
|
719
865
|
#, python-format
|
|
720
866
|
msgid ""
|
|
721
867
|
"Your map has been cloned! If you want to edit this map from another "
|
|
722
868
|
"computer, please use this link: %(anonymous_url)s"
|
|
723
869
|
msgstr "Sinu kaart on kopeeritud! Kui sa soovid oma kaarti muuta teisest arvutist, kasuta palun seda linki: %(anonymous_url)s"
|
|
724
870
|
|
|
725
|
-
#: views.py:
|
|
871
|
+
#: views.py:1104
|
|
726
872
|
msgid "Congratulations, your map has been cloned!"
|
|
727
873
|
msgstr "Sinu kaart on kopeeritud!"
|
|
728
874
|
|
|
729
|
-
#: views.py:
|
|
875
|
+
#: views.py:1358
|
|
730
876
|
msgid "Layer successfully deleted."
|
|
731
877
|
msgstr "Kiht on kustutatud."
|
|
732
878
|
|
|
733
|
-
#: views.py:
|
|
879
|
+
#: views.py:1380
|
|
734
880
|
msgid "Permissions updated with success!"
|
|
735
881
|
msgstr ""
|
|
Binary file
|