umap-project 3.3.6__py3-none-any.whl → 3.4.0b1__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/context_processors.py +4 -1
- umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- umap/locale/cs_CZ/LC_MESSAGES/django.po +43 -33
- umap/locale/da/LC_MESSAGES/django.mo +0 -0
- umap/locale/da/LC_MESSAGES/django.po +43 -33
- umap/locale/de/LC_MESSAGES/django.mo +0 -0
- umap/locale/de/LC_MESSAGES/django.po +35 -29
- umap/locale/el/LC_MESSAGES/django.mo +0 -0
- umap/locale/el/LC_MESSAGES/django.po +35 -29
- umap/locale/en/LC_MESSAGES/django.po +34 -28
- umap/locale/es/LC_MESSAGES/django.mo +0 -0
- umap/locale/es/LC_MESSAGES/django.po +43 -33
- umap/locale/et/LC_MESSAGES/django.mo +0 -0
- umap/locale/et/LC_MESSAGES/django.po +58 -54
- umap/locale/eu/LC_MESSAGES/django.mo +0 -0
- umap/locale/eu/LC_MESSAGES/django.po +43 -33
- umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
- umap/locale/fa_IR/LC_MESSAGES/django.po +43 -33
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +36 -30
- umap/locale/gl/LC_MESSAGES/django.mo +0 -0
- umap/locale/gl/LC_MESSAGES/django.po +43 -33
- umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- umap/locale/hu/LC_MESSAGES/django.po +35 -29
- umap/locale/is/LC_MESSAGES/django.mo +0 -0
- umap/locale/is/LC_MESSAGES/django.po +43 -33
- umap/locale/it/LC_MESSAGES/django.mo +0 -0
- umap/locale/it/LC_MESSAGES/django.po +43 -33
- umap/locale/nl/LC_MESSAGES/django.mo +0 -0
- umap/locale/nl/LC_MESSAGES/django.po +35 -29
- umap/locale/pl/LC_MESSAGES/django.mo +0 -0
- umap/locale/pl/LC_MESSAGES/django.po +43 -33
- umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- umap/locale/pt/LC_MESSAGES/django.po +43 -33
- umap/locale/th_TH/LC_MESSAGES/django.mo +0 -0
- umap/locale/th_TH/LC_MESSAGES/django.po +310 -109
- umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
- umap/locale/zh_TW/LC_MESSAGES/django.po +80 -70
- umap/management/commands/switch_user.py +2 -2
- umap/static/umap/base.css +89 -32
- umap/static/umap/content.css +129 -33
- umap/static/umap/css/bar.css +82 -20
- umap/static/umap/css/browser.css +163 -0
- umap/static/umap/css/contextmenu.css +15 -0
- umap/static/umap/css/dialog.css +36 -16
- umap/static/umap/css/form.css +122 -32
- umap/static/umap/css/icon.css +46 -3
- umap/static/umap/css/panel.css +7 -3
- umap/static/umap/css/popup.css +34 -8
- umap/static/umap/css/tooltip.css +8 -4
- umap/static/umap/img/16-white.svg +26 -8
- umap/static/umap/img/16.svg +1 -1
- umap/static/umap/img/source/16-white.svg +36 -18
- umap/static/umap/img/source/16.svg +1 -1
- umap/static/umap/js/components/alerts/alert.css +69 -31
- umap/static/umap/js/components/alerts/alert.js +20 -2
- umap/static/umap/js/modules/browser.js +63 -55
- umap/static/umap/js/modules/caption.js +10 -7
- umap/static/umap/js/modules/data/features.js +82 -59
- umap/static/umap/js/modules/data/layer.js +56 -157
- umap/static/umap/js/modules/domutils.js +109 -0
- umap/static/umap/js/modules/filters.js +807 -0
- umap/static/umap/js/modules/form/builder.js +8 -5
- umap/static/umap/js/modules/form/fields.js +110 -220
- umap/static/umap/js/modules/formatter.js +24 -1
- umap/static/umap/js/modules/help.js +3 -2
- umap/static/umap/js/modules/importers/opendata.js +5 -0
- umap/static/umap/js/modules/importers/openrouteservice.js +6 -1
- umap/static/umap/js/modules/managers.js +265 -1
- umap/static/umap/js/modules/permissions.js +39 -31
- umap/static/umap/js/modules/rendering/controls.js +7 -7
- umap/static/umap/js/modules/rendering/icon.js +3 -8
- umap/static/umap/js/modules/rendering/layers/classified.js +17 -10
- umap/static/umap/js/modules/rendering/layers/cluster.js +5 -3
- umap/static/umap/js/modules/rendering/template.js +44 -8
- umap/static/umap/js/modules/rendering/ui.js +29 -23
- umap/static/umap/js/modules/rules.js +4 -3
- umap/static/umap/js/modules/schema.js +3 -6
- umap/static/umap/js/modules/share.js +4 -3
- umap/static/umap/js/modules/tableeditor.js +50 -38
- umap/static/umap/js/modules/templates.js +2 -3
- umap/static/umap/js/modules/ui/bar.js +42 -18
- umap/static/umap/js/modules/ui/dialog.js +33 -31
- umap/static/umap/js/modules/ui/panel.js +21 -7
- umap/static/umap/js/modules/ui/tooltip.js +6 -5
- umap/static/umap/js/modules/umap.js +149 -51
- umap/static/umap/js/modules/utils.js +23 -1
- umap/static/umap/js/umap.core.js +1 -110
- umap/static/umap/locale/am_ET.js +40 -14
- umap/static/umap/locale/am_ET.json +40 -14
- umap/static/umap/locale/ar.js +40 -14
- umap/static/umap/locale/ar.json +40 -14
- umap/static/umap/locale/ast.js +40 -14
- umap/static/umap/locale/ast.json +40 -14
- umap/static/umap/locale/bg.js +40 -14
- umap/static/umap/locale/bg.json +40 -14
- umap/static/umap/locale/br.js +47 -21
- umap/static/umap/locale/br.json +47 -21
- umap/static/umap/locale/ca.js +40 -14
- umap/static/umap/locale/ca.json +40 -14
- umap/static/umap/locale/cs_CZ.js +40 -14
- umap/static/umap/locale/cs_CZ.json +40 -14
- umap/static/umap/locale/da.js +40 -14
- umap/static/umap/locale/da.json +40 -14
- umap/static/umap/locale/de.js +39 -13
- umap/static/umap/locale/de.json +39 -13
- umap/static/umap/locale/el.js +40 -14
- umap/static/umap/locale/el.json +40 -14
- umap/static/umap/locale/en.js +39 -13
- umap/static/umap/locale/en.json +39 -13
- umap/static/umap/locale/en_US.json +40 -14
- umap/static/umap/locale/es.js +40 -14
- umap/static/umap/locale/es.json +40 -14
- umap/static/umap/locale/et.js +79 -53
- umap/static/umap/locale/et.json +79 -53
- umap/static/umap/locale/eu.js +72 -46
- umap/static/umap/locale/eu.json +72 -46
- umap/static/umap/locale/fa_IR.js +40 -14
- umap/static/umap/locale/fa_IR.json +40 -14
- umap/static/umap/locale/fi.js +40 -14
- umap/static/umap/locale/fi.json +40 -14
- umap/static/umap/locale/fr.js +39 -13
- umap/static/umap/locale/fr.json +39 -13
- umap/static/umap/locale/gl.js +40 -14
- umap/static/umap/locale/gl.json +40 -14
- umap/static/umap/locale/he.js +40 -14
- umap/static/umap/locale/he.json +40 -14
- umap/static/umap/locale/hr.js +40 -14
- umap/static/umap/locale/hr.json +40 -14
- umap/static/umap/locale/hu.js +40 -14
- umap/static/umap/locale/hu.json +40 -14
- umap/static/umap/locale/id.js +40 -14
- umap/static/umap/locale/id.json +40 -14
- umap/static/umap/locale/is.js +40 -14
- umap/static/umap/locale/is.json +40 -14
- umap/static/umap/locale/it.js +40 -14
- umap/static/umap/locale/it.json +40 -14
- umap/static/umap/locale/ja.js +40 -14
- umap/static/umap/locale/ja.json +40 -14
- umap/static/umap/locale/ko.js +40 -14
- umap/static/umap/locale/ko.json +40 -14
- umap/static/umap/locale/lt.js +40 -14
- umap/static/umap/locale/lt.json +40 -14
- umap/static/umap/locale/ms.js +40 -14
- umap/static/umap/locale/ms.json +40 -14
- umap/static/umap/locale/nl.js +40 -14
- umap/static/umap/locale/nl.json +40 -14
- umap/static/umap/locale/no.js +40 -14
- umap/static/umap/locale/no.json +40 -14
- umap/static/umap/locale/pl.js +40 -14
- umap/static/umap/locale/pl.json +40 -14
- umap/static/umap/locale/pl_PL.json +40 -14
- umap/static/umap/locale/pt.js +40 -14
- umap/static/umap/locale/pt.json +40 -14
- umap/static/umap/locale/pt_BR.js +40 -14
- umap/static/umap/locale/pt_BR.json +40 -14
- umap/static/umap/locale/pt_PT.js +40 -14
- umap/static/umap/locale/pt_PT.json +40 -14
- umap/static/umap/locale/ro.js +40 -14
- umap/static/umap/locale/ro.json +40 -14
- umap/static/umap/locale/ru.js +40 -14
- umap/static/umap/locale/ru.json +40 -14
- umap/static/umap/locale/sk_SK.js +40 -14
- umap/static/umap/locale/sk_SK.json +40 -14
- umap/static/umap/locale/sl.js +40 -14
- umap/static/umap/locale/sl.json +40 -14
- umap/static/umap/locale/sr.js +40 -14
- umap/static/umap/locale/sr.json +40 -14
- umap/static/umap/locale/sv.js +40 -14
- umap/static/umap/locale/sv.json +40 -14
- umap/static/umap/locale/th_TH.js +40 -14
- umap/static/umap/locale/th_TH.json +40 -14
- umap/static/umap/locale/tr.js +40 -14
- umap/static/umap/locale/tr.json +40 -14
- umap/static/umap/locale/uk_UA.js +40 -14
- umap/static/umap/locale/uk_UA.json +40 -14
- umap/static/umap/locale/vi.js +40 -14
- umap/static/umap/locale/vi.json +40 -14
- umap/static/umap/locale/vi_VN.json +40 -14
- umap/static/umap/locale/zh.js +40 -14
- umap/static/umap/locale/zh.json +40 -14
- umap/static/umap/locale/zh_CN.json +40 -14
- umap/static/umap/locale/zh_TW.Big5.json +40 -14
- umap/static/umap/locale/zh_TW.js +39 -13
- umap/static/umap/locale/zh_TW.json +39 -13
- umap/static/umap/map.css +60 -223
- umap/static/umap/unittests/utils.js +18 -0
- umap/static/umap/vars.css +23 -5
- umap/templates/umap/components/alerts/alert.html +32 -29
- umap/templates/umap/css.html +2 -1
- umap/templates/umap/login_popup_end.html +18 -9
- umap/templates/umap/user_map_table.html +7 -2
- umap/tests/integration/conftest.py +2 -6
- umap/tests/integration/test_anonymous_owned_map.py +89 -36
- umap/tests/integration/test_basics.py +25 -1
- umap/tests/integration/test_browser.py +37 -0
- umap/tests/integration/test_draw_polygon.py +2 -0
- umap/tests/integration/test_edit_marker.py +1 -1
- umap/tests/integration/test_export_map.py +19 -0
- umap/tests/integration/test_fields.py +522 -0
- umap/tests/integration/test_filters.py +617 -0
- umap/tests/integration/test_import.py +15 -42
- umap/tests/integration/test_remote_data.py +60 -4
- umap/tests/integration/test_share.py +4 -4
- umap/tests/integration/test_tableeditor.py +31 -7
- umap/tests/integration/test_websocket_sync.py +3 -1
- umap/tests/test_dashboard.py +10 -0
- umap/tests/test_utils.py +15 -1
- umap/urls.py +1 -0
- umap/utils.py +6 -0
- umap/views.py +5 -0
- {umap_project-3.3.6.dist-info → umap_project-3.4.0b1.dist-info}/METADATA +12 -12
- {umap_project-3.3.6.dist-info → umap_project-3.4.0b1.dist-info}/RECORD +217 -214
- umap/static/umap/js/modules/facets.js +0 -164
- umap/tests/integration/test_facets_browser.py +0 -279
- {umap_project-3.3.6.dist-info → umap_project-3.4.0b1.dist-info}/WHEEL +0 -0
- {umap_project-3.3.6.dist-info → umap_project-3.4.0b1.dist-info}/entry_points.txt +0 -0
- {umap_project-3.3.6.dist-info → umap_project-3.4.0b1.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-08-14 15:22+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"
|
|
@@ -93,7 +93,7 @@ msgstr "Kõik (avalik)"
|
|
|
93
93
|
|
|
94
94
|
#: models.py:189
|
|
95
95
|
msgid "Anyone with link"
|
|
96
|
-
msgstr ""
|
|
96
|
+
msgstr "Kõik, kellel on link"
|
|
97
97
|
|
|
98
98
|
#: models.py:191
|
|
99
99
|
msgid "Blocked"
|
|
@@ -153,7 +153,7 @@ msgstr "seaded"
|
|
|
153
153
|
|
|
154
154
|
#: models.py:243
|
|
155
155
|
msgid "save as template"
|
|
156
|
-
msgstr ""
|
|
156
|
+
msgstr "salvesta mallina"
|
|
157
157
|
|
|
158
158
|
#: models.py:244
|
|
159
159
|
msgid "This map is a template map."
|
|
@@ -181,7 +181,7 @@ msgstr ""
|
|
|
181
181
|
|
|
182
182
|
#: settings/base.py:288
|
|
183
183
|
msgid "Video tutorials"
|
|
184
|
-
msgstr ""
|
|
184
|
+
msgstr "Videojuhendid"
|
|
185
185
|
|
|
186
186
|
#: settings/base.py:293
|
|
187
187
|
msgid "OpenStreetMap.org forum"
|
|
@@ -193,71 +193,71 @@ msgstr ""
|
|
|
193
193
|
|
|
194
194
|
#: settings/base.py:318
|
|
195
195
|
msgid "Art and Culture"
|
|
196
|
-
msgstr ""
|
|
196
|
+
msgstr "Kunst ja kultuur"
|
|
197
197
|
|
|
198
198
|
#: settings/base.py:319
|
|
199
199
|
msgid "Cycling"
|
|
200
|
-
msgstr ""
|
|
200
|
+
msgstr "Rattasõit"
|
|
201
201
|
|
|
202
202
|
#: settings/base.py:320
|
|
203
203
|
msgid "Business"
|
|
204
|
-
msgstr ""
|
|
204
|
+
msgstr "Äri"
|
|
205
205
|
|
|
206
206
|
#: settings/base.py:321
|
|
207
207
|
msgid "Environment"
|
|
208
|
-
msgstr ""
|
|
208
|
+
msgstr "Keskkond"
|
|
209
209
|
|
|
210
210
|
#: settings/base.py:322
|
|
211
211
|
msgid "Education"
|
|
212
|
-
msgstr ""
|
|
212
|
+
msgstr "Haridus"
|
|
213
213
|
|
|
214
214
|
#: settings/base.py:323
|
|
215
215
|
msgid "Food and Agriculture"
|
|
216
|
-
msgstr ""
|
|
216
|
+
msgstr "Toit ja põllumajandus"
|
|
217
217
|
|
|
218
218
|
#: settings/base.py:324
|
|
219
219
|
msgid "Geopolitics"
|
|
220
|
-
msgstr ""
|
|
220
|
+
msgstr "Geopliitika"
|
|
221
221
|
|
|
222
222
|
#: settings/base.py:325
|
|
223
223
|
msgid "Health"
|
|
224
|
-
msgstr ""
|
|
224
|
+
msgstr "Tervis"
|
|
225
225
|
|
|
226
226
|
#: settings/base.py:326
|
|
227
227
|
msgid "Hiking"
|
|
228
|
-
msgstr ""
|
|
228
|
+
msgstr "Matkamine"
|
|
229
229
|
|
|
230
230
|
#: settings/base.py:327
|
|
231
231
|
msgid "History"
|
|
232
|
-
msgstr ""
|
|
232
|
+
msgstr "Ajalugu"
|
|
233
233
|
|
|
234
234
|
#: settings/base.py:328
|
|
235
235
|
msgid "Public sector"
|
|
236
|
-
msgstr ""
|
|
236
|
+
msgstr "Avalik sektor"
|
|
237
237
|
|
|
238
238
|
#: settings/base.py:329
|
|
239
239
|
msgid "Science"
|
|
240
|
-
msgstr ""
|
|
240
|
+
msgstr "Teadus"
|
|
241
241
|
|
|
242
242
|
#: settings/base.py:330
|
|
243
243
|
msgid "Shopping"
|
|
244
|
-
msgstr ""
|
|
244
|
+
msgstr "Kaubandus"
|
|
245
245
|
|
|
246
246
|
#: settings/base.py:331
|
|
247
247
|
msgid "Sport and Leisure"
|
|
248
|
-
msgstr ""
|
|
248
|
+
msgstr "Sport ja vaba aeg"
|
|
249
249
|
|
|
250
250
|
#: settings/base.py:332
|
|
251
251
|
msgid "Travel"
|
|
252
|
-
msgstr ""
|
|
252
|
+
msgstr "Reisimine"
|
|
253
253
|
|
|
254
254
|
#: settings/base.py:333
|
|
255
255
|
msgid "Transports"
|
|
256
|
-
msgstr ""
|
|
256
|
+
msgstr "Transport"
|
|
257
257
|
|
|
258
258
|
#: settings/base.py:334
|
|
259
259
|
msgid "Tourism"
|
|
260
|
-
msgstr ""
|
|
260
|
+
msgstr "Turism"
|
|
261
261
|
|
|
262
262
|
#: templates/403.html:8
|
|
263
263
|
msgid ""
|
|
@@ -277,7 +277,7 @@ msgstr "404 Lehte ei leitud"
|
|
|
277
277
|
#: templates/auth/user_detail.html:6
|
|
278
278
|
#, python-format
|
|
279
279
|
msgid "%(current_user)s’s maps"
|
|
280
|
-
msgstr ""
|
|
280
|
+
msgstr "Kasutaja %(current_user)s kaardid"
|
|
281
281
|
|
|
282
282
|
#: templates/auth/user_detail.html:12
|
|
283
283
|
#, python-format
|
|
@@ -326,7 +326,7 @@ msgstr ""
|
|
|
326
326
|
msgid "%(current_user)s has no starred maps yet."
|
|
327
327
|
msgstr ""
|
|
328
328
|
|
|
329
|
-
#: templates/base.html:
|
|
329
|
+
#: templates/base.html:16
|
|
330
330
|
msgid ""
|
|
331
331
|
"uMap lets you create maps with OpenStreetMap layers in a minute and embed "
|
|
332
332
|
"them in your site."
|
|
@@ -413,7 +413,7 @@ msgstr "Mängi demoga"
|
|
|
413
413
|
#: templates/umap/components/alerts/alert.html:66
|
|
414
414
|
#: templates/umap/components/alerts/alert.html:94
|
|
415
415
|
msgid "Close"
|
|
416
|
-
msgstr ""
|
|
416
|
+
msgstr "Sulge"
|
|
417
417
|
|
|
418
418
|
#: templates/umap/components/alerts/alert.html:32
|
|
419
419
|
#, python-format
|
|
@@ -506,7 +506,7 @@ msgstr ""
|
|
|
506
506
|
|
|
507
507
|
#: templates/umap/dashboard_menu.html:13 templates/umap/user_templates.html:6
|
|
508
508
|
msgid "My Templates"
|
|
509
|
-
msgstr ""
|
|
509
|
+
msgstr "Minu mallid"
|
|
510
510
|
|
|
511
511
|
#: templates/umap/dashboard_menu.html:17
|
|
512
512
|
msgid "My profile"
|
|
@@ -530,19 +530,19 @@ msgstr "Oled sisse logitud. Jätkamine..."
|
|
|
530
530
|
|
|
531
531
|
#: templates/umap/map_list.html:15
|
|
532
532
|
msgid "template"
|
|
533
|
-
msgstr ""
|
|
533
|
+
msgstr "mall"
|
|
534
534
|
|
|
535
|
-
#: templates/umap/map_list.html:18 views.py:
|
|
535
|
+
#: templates/umap/map_list.html:18 views.py:459
|
|
536
536
|
msgid "by"
|
|
537
537
|
msgstr "kasutajalt"
|
|
538
538
|
|
|
539
539
|
#: templates/umap/map_list.html:22
|
|
540
540
|
msgid "See the template"
|
|
541
|
-
msgstr ""
|
|
541
|
+
msgstr "Vaata malli"
|
|
542
542
|
|
|
543
543
|
#: templates/umap/map_list.html:22
|
|
544
544
|
msgid "See the map"
|
|
545
|
-
msgstr ""
|
|
545
|
+
msgstr "Vaata kaarti"
|
|
546
546
|
|
|
547
547
|
#: templates/umap/map_list.html:28
|
|
548
548
|
msgid "More"
|
|
@@ -578,7 +578,7 @@ msgstr ""
|
|
|
578
578
|
|
|
579
579
|
#: templates/umap/map_table.html:40 templates/umap/map_table.html:42
|
|
580
580
|
msgid "Open preview"
|
|
581
|
-
msgstr ""
|
|
581
|
+
msgstr "Ava eelvaade"
|
|
582
582
|
|
|
583
583
|
#: templates/umap/map_table.html:72 templates/umap/map_table.html:74
|
|
584
584
|
msgid "Share"
|
|
@@ -709,7 +709,7 @@ msgstr "Kaarti ei leitud."
|
|
|
709
709
|
|
|
710
710
|
#: templates/umap/search.html:36
|
|
711
711
|
msgid "Latest created maps in category"
|
|
712
|
-
msgstr ""
|
|
712
|
+
msgstr "Viimati selles kategoorias loodud kaardid "
|
|
713
713
|
|
|
714
714
|
#: templates/umap/search.html:43
|
|
715
715
|
msgid "Latest created maps"
|
|
@@ -764,7 +764,7 @@ msgstr "Otsi minu kaarte"
|
|
|
764
764
|
|
|
765
765
|
#: templates/umap/user_dashboard.html:11
|
|
766
766
|
msgid "Map’s name"
|
|
767
|
-
msgstr ""
|
|
767
|
+
msgstr "Kaardi nimi"
|
|
768
768
|
|
|
769
769
|
#: templates/umap/user_dashboard.html:12
|
|
770
770
|
#, python-format
|
|
@@ -773,7 +773,7 @@ msgstr ""
|
|
|
773
773
|
|
|
774
774
|
#: templates/umap/user_dashboard.html:15
|
|
775
775
|
msgid "You have no map yet."
|
|
776
|
-
msgstr ""
|
|
776
|
+
msgstr "Sul ei ole veel kaarte."
|
|
777
777
|
|
|
778
778
|
#: templates/umap/user_teams.html:6
|
|
779
779
|
msgid "My Teams"
|
|
@@ -789,93 +789,97 @@ msgstr "Uus meeskond"
|
|
|
789
789
|
|
|
790
790
|
#: templates/umap/user_templates.html:10
|
|
791
791
|
msgid "Search my templates"
|
|
792
|
-
msgstr ""
|
|
792
|
+
msgstr "Otsi minu malle"
|
|
793
793
|
|
|
794
794
|
#: templates/umap/user_templates.html:11
|
|
795
795
|
msgid "Template’s name"
|
|
796
|
-
msgstr ""
|
|
796
|
+
msgstr "Malli nimi"
|
|
797
797
|
|
|
798
798
|
#: templates/umap/user_templates.html:12
|
|
799
799
|
#, python-format
|
|
800
800
|
msgid "Download %(count)s templates"
|
|
801
|
-
msgstr ""
|
|
801
|
+
msgstr "Laadi alla %(count)s mall(i)"
|
|
802
802
|
|
|
803
803
|
#: templates/umap/user_templates.html:15
|
|
804
804
|
msgid "You have no template yet."
|
|
805
|
-
msgstr ""
|
|
805
|
+
msgstr "Sul ei ole veel malle."
|
|
806
806
|
|
|
807
807
|
#: templates/umap/user_templates.html:16
|
|
808
808
|
msgid "Create a template"
|
|
809
|
-
msgstr ""
|
|
809
|
+
msgstr "Loo mall"
|
|
810
810
|
|
|
811
811
|
#: templates/umap/user_templates.html:17
|
|
812
812
|
msgid "No template found."
|
|
813
|
-
msgstr ""
|
|
813
|
+
msgstr "Malle ei leitud."
|
|
814
814
|
|
|
815
|
-
#: views.py:
|
|
815
|
+
#: views.py:235
|
|
816
816
|
msgid "Cannot delete a team with more than one member"
|
|
817
817
|
msgstr ""
|
|
818
818
|
|
|
819
|
-
#: views.py:
|
|
819
|
+
#: views.py:239
|
|
820
820
|
#, python-format
|
|
821
821
|
msgid "Team “%(name)s” has been deleted"
|
|
822
822
|
msgstr "Meeskond “%(name)s” on kustutatud"
|
|
823
823
|
|
|
824
|
-
#: views.py:
|
|
824
|
+
#: views.py:464
|
|
825
825
|
msgid "View the map"
|
|
826
826
|
msgstr "Vaata kaarti"
|
|
827
827
|
|
|
828
|
-
#: views.py:
|
|
828
|
+
#: views.py:867
|
|
829
829
|
msgid "See full screen"
|
|
830
830
|
msgstr "Vaata täisekraanil"
|
|
831
831
|
|
|
832
|
-
#: views.py:
|
|
832
|
+
#: views.py:1010
|
|
833
833
|
msgid "Map editors updated with success!"
|
|
834
834
|
msgstr "Kaardi toimetajaid uuendati edukalt!"
|
|
835
835
|
|
|
836
|
-
#: views.py:
|
|
836
|
+
#: views.py:1046
|
|
837
837
|
#, python-format
|
|
838
838
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
839
839
|
msgstr "Redigeerimislink sinu uMapi kaardile: %(map_name)s"
|
|
840
840
|
|
|
841
|
-
#: views.py:
|
|
841
|
+
#: views.py:1049
|
|
842
842
|
#, python-format
|
|
843
843
|
msgid "Here is your secret edit link: %(link)s"
|
|
844
844
|
msgstr "Siin on sinu salajane redigeerimislink: %(link)s"
|
|
845
845
|
|
|
846
|
-
#: views.py:
|
|
846
|
+
#: views.py:1056
|
|
847
847
|
#, python-format
|
|
848
848
|
msgid "Can't send email to %(email)s"
|
|
849
849
|
msgstr "Ei saa saata e-kirja aadressile %(email)s"
|
|
850
850
|
|
|
851
|
-
#: views.py:
|
|
851
|
+
#: views.py:1059
|
|
852
852
|
#, python-format
|
|
853
853
|
msgid "Email sent to %(email)s"
|
|
854
854
|
msgstr "E-kiri saadetud aadressile %(email)s"
|
|
855
855
|
|
|
856
|
-
#: views.py:
|
|
856
|
+
#: views.py:1070
|
|
857
857
|
msgid "Only its owner can delete the map."
|
|
858
858
|
msgstr "Kaardi saab kustutada vaid selle omanik."
|
|
859
859
|
|
|
860
|
-
#: views.py:
|
|
860
|
+
#: views.py:1076
|
|
861
861
|
msgid "Map successfully deleted."
|
|
862
862
|
msgstr "Kaart on kustutatud."
|
|
863
863
|
|
|
864
|
-
#: views.py:
|
|
864
|
+
#: views.py:1102
|
|
865
865
|
#, python-format
|
|
866
866
|
msgid ""
|
|
867
867
|
"Your map has been cloned! If you want to edit this map from another "
|
|
868
868
|
"computer, please use this link: %(anonymous_url)s"
|
|
869
869
|
msgstr "Sinu kaart on kopeeritud! Kui sa soovid oma kaarti muuta teisest arvutist, kasuta palun seda linki: %(anonymous_url)s"
|
|
870
870
|
|
|
871
|
-
#: views.py:
|
|
871
|
+
#: views.py:1107
|
|
872
872
|
msgid "Congratulations, your map has been cloned!"
|
|
873
873
|
msgstr "Sinu kaart on kopeeritud!"
|
|
874
874
|
|
|
875
|
-
#: views.py:
|
|
875
|
+
#: views.py:1361
|
|
876
876
|
msgid "Layer successfully deleted."
|
|
877
877
|
msgstr "Kiht on kustutatud."
|
|
878
878
|
|
|
879
|
-
#: views.py:
|
|
879
|
+
#: views.py:1383
|
|
880
880
|
msgid "Permissions updated with success!"
|
|
881
881
|
msgstr ""
|
|
882
|
+
|
|
883
|
+
#: views.py:1400
|
|
884
|
+
msgid "Generic"
|
|
885
|
+
msgstr ""
|
|
Binary file
|
|
@@ -10,7 +10,7 @@ msgid ""
|
|
|
10
10
|
msgstr ""
|
|
11
11
|
"Project-Id-Version: uMap\n"
|
|
12
12
|
"Report-Msgid-Bugs-To: \n"
|
|
13
|
-
"POT-Creation-Date: 2025-
|
|
13
|
+
"POT-Creation-Date: 2025-10-14 15:28+0000\n"
|
|
14
14
|
"PO-Revision-Date: 2013-11-22 14:00+0000\n"
|
|
15
15
|
"Last-Translator: Alexander Gabilondo <alexgabi@disroot.org>, 2024-2025\n"
|
|
16
16
|
"Language-Team: Basque (http://app.transifex.com/openstreetmap/umap/language/eu/)\n"
|
|
@@ -327,7 +327,7 @@ msgstr "Arakatu %(current_user)s erabiltzailearen gogoko mapak"
|
|
|
327
327
|
msgid "%(current_user)s has no starred maps yet."
|
|
328
328
|
msgstr "%(current_user)s erabiltzaileak ez du gogoko maparik oraindik."
|
|
329
329
|
|
|
330
|
-
#: templates/base.html:
|
|
330
|
+
#: templates/base.html:16
|
|
331
331
|
msgid ""
|
|
332
332
|
"uMap lets you create maps with OpenStreetMap layers in a minute and embed "
|
|
333
333
|
"them in your site."
|
|
@@ -411,48 +411,54 @@ msgid "Play with the demo"
|
|
|
411
411
|
msgstr "Jolastu probatako ingurunean"
|
|
412
412
|
|
|
413
413
|
#: templates/umap/components/alerts/alert.html:17
|
|
414
|
-
#: templates/umap/components/alerts/alert.html:
|
|
415
|
-
#: templates/umap/components/alerts/alert.html:
|
|
414
|
+
#: templates/umap/components/alerts/alert.html:69
|
|
415
|
+
#: templates/umap/components/alerts/alert.html:97
|
|
416
416
|
msgid "Close"
|
|
417
417
|
msgstr "Itxi"
|
|
418
418
|
|
|
419
419
|
#: templates/umap/components/alerts/alert.html:32
|
|
420
420
|
#, python-format
|
|
421
421
|
msgid ""
|
|
422
|
-
"
|
|
423
|
-
"
|
|
424
|
-
"
|
|
425
|
-
msgstr "
|
|
422
|
+
"Oops, I didn't mean it, I want to <a href=\"%(login_url)s\" "
|
|
423
|
+
"class=\"login\">create an account</a> or <a href=\"%(login_url)s\" "
|
|
424
|
+
"class=\"login\">log in</a> (no worry, we'll attach the map to your account)."
|
|
425
|
+
msgstr ""
|
|
426
426
|
|
|
427
|
-
#: templates/umap/components/alerts/alert.html:
|
|
427
|
+
#: templates/umap/components/alerts/alert.html:35
|
|
428
|
+
msgid ""
|
|
429
|
+
"Yes, I want to continue editing anonymously, I will save the secret edit "
|
|
430
|
+
"link to be able to edit this map later or on another device"
|
|
431
|
+
msgstr ""
|
|
432
|
+
|
|
433
|
+
#: templates/umap/components/alerts/alert.html:39
|
|
428
434
|
msgid "Here is your secret link to edit the map, please keep it safe:"
|
|
429
435
|
msgstr "Hona hemen mapa editatzeko zure esteka sekretua, gorde ezazu seguru:"
|
|
430
436
|
|
|
431
|
-
#: templates/umap/components/alerts/alert.html:
|
|
437
|
+
#: templates/umap/components/alerts/alert.html:43
|
|
432
438
|
msgid "Copy link"
|
|
433
439
|
msgstr "Kopiatu esteka"
|
|
434
440
|
|
|
435
|
-
#: templates/umap/components/alerts/alert.html:
|
|
441
|
+
#: templates/umap/components/alerts/alert.html:50
|
|
436
442
|
msgid "Enter your email address to receive the secret link:"
|
|
437
443
|
msgstr "Sartu zure helbide elektronikoa esteka sekretua jasotzeko:"
|
|
438
444
|
|
|
439
|
-
#: templates/umap/components/alerts/alert.html:
|
|
445
|
+
#: templates/umap/components/alerts/alert.html:56
|
|
440
446
|
msgid "Email"
|
|
441
447
|
msgstr "Helbide elektronikoa"
|
|
442
448
|
|
|
443
|
-
#: templates/umap/components/alerts/alert.html:
|
|
449
|
+
#: templates/umap/components/alerts/alert.html:59
|
|
444
450
|
msgid "Send me the link"
|
|
445
451
|
msgstr "Bidalidazu esteka"
|
|
446
452
|
|
|
447
|
-
#: templates/umap/components/alerts/alert.html:
|
|
453
|
+
#: templates/umap/components/alerts/alert.html:84
|
|
448
454
|
msgid "See their edits in another tab"
|
|
449
455
|
msgstr "Ikusi haien aldaketak beste fitxa batean"
|
|
450
456
|
|
|
451
|
-
#: templates/umap/components/alerts/alert.html:
|
|
457
|
+
#: templates/umap/components/alerts/alert.html:87
|
|
452
458
|
msgid "Keep your changes and loose theirs"
|
|
453
459
|
msgstr "Mantendu zure aldaketak eta baztertu haienak"
|
|
454
460
|
|
|
455
|
-
#: templates/umap/components/alerts/alert.html:
|
|
461
|
+
#: templates/umap/components/alerts/alert.html:90
|
|
456
462
|
msgid "Keep their changes and loose yours"
|
|
457
463
|
msgstr "Mantendu haien aldaketak eta baztertu zureak"
|
|
458
464
|
|
|
@@ -533,7 +539,7 @@ msgstr "Sartu egin zara. Jarraitu..."
|
|
|
533
539
|
msgid "template"
|
|
534
540
|
msgstr "txantiloia"
|
|
535
541
|
|
|
536
|
-
#: templates/umap/map_list.html:18 views.py:
|
|
542
|
+
#: templates/umap/map_list.html:18 views.py:459
|
|
537
543
|
msgid "by"
|
|
538
544
|
msgstr "nork eginda"
|
|
539
545
|
|
|
@@ -720,7 +726,7 @@ msgstr "Sortutako azken mapak"
|
|
|
720
726
|
msgid "Search maps"
|
|
721
727
|
msgstr "Bilatu mapak"
|
|
722
728
|
|
|
723
|
-
#: templates/umap/search_bar.html:14
|
|
729
|
+
#: templates/umap/search_bar.html:14 templates/umap/user_map_table.html:15
|
|
724
730
|
msgid "Any category"
|
|
725
731
|
msgstr "Edozein kategoria"
|
|
726
732
|
|
|
@@ -813,70 +819,74 @@ msgstr "Sortu txantiloi bat"
|
|
|
813
819
|
msgid "No template found."
|
|
814
820
|
msgstr "Ez da txantiloirik aurkitu."
|
|
815
821
|
|
|
816
|
-
#: views.py:
|
|
822
|
+
#: views.py:235
|
|
817
823
|
msgid "Cannot delete a team with more than one member"
|
|
818
824
|
msgstr "Ezin da ezabatu kide bat baino gehiago dituen talde bat"
|
|
819
825
|
|
|
820
|
-
#: views.py:
|
|
826
|
+
#: views.py:239
|
|
821
827
|
#, python-format
|
|
822
828
|
msgid "Team “%(name)s” has been deleted"
|
|
823
829
|
msgstr "“%(name)s” taldea ezabatu da"
|
|
824
830
|
|
|
825
|
-
#: views.py:
|
|
831
|
+
#: views.py:464
|
|
826
832
|
msgid "View the map"
|
|
827
833
|
msgstr "Mapa ikusi"
|
|
828
834
|
|
|
829
|
-
#: views.py:
|
|
835
|
+
#: views.py:872
|
|
830
836
|
msgid "See full screen"
|
|
831
837
|
msgstr "Ikusi pantaila osoan"
|
|
832
838
|
|
|
833
|
-
#: views.py:
|
|
839
|
+
#: views.py:1015
|
|
834
840
|
msgid "Map editors updated with success!"
|
|
835
841
|
msgstr "Maparen editoreak ondo eguneratu dira!"
|
|
836
842
|
|
|
837
|
-
#: views.py:
|
|
843
|
+
#: views.py:1051
|
|
838
844
|
#, python-format
|
|
839
845
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
840
846
|
msgstr "Zure mapa editatzeko uMap-en esteka: %(map_name)s"
|
|
841
847
|
|
|
842
|
-
#: views.py:
|
|
848
|
+
#: views.py:1054
|
|
843
849
|
#, python-format
|
|
844
850
|
msgid "Here is your secret edit link: %(link)s"
|
|
845
851
|
msgstr "Hona hemen zure editatzeko esteka sekretua:: %(link)s"
|
|
846
852
|
|
|
847
|
-
#: views.py:
|
|
853
|
+
#: views.py:1061
|
|
848
854
|
#, python-format
|
|
849
855
|
msgid "Can't send email to %(email)s"
|
|
850
856
|
msgstr "Ezin da posta elektronikorik bidali %(email)s-ri"
|
|
851
857
|
|
|
852
|
-
#: views.py:
|
|
858
|
+
#: views.py:1064
|
|
853
859
|
#, python-format
|
|
854
860
|
msgid "Email sent to %(email)s"
|
|
855
861
|
msgstr "Posta elektronikoa bidalita %(email)s-ri"
|
|
856
862
|
|
|
857
|
-
#: views.py:
|
|
863
|
+
#: views.py:1075
|
|
858
864
|
msgid "Only its owner can delete the map."
|
|
859
865
|
msgstr "Jabeak bakarrik ezabatu dezake mapa."
|
|
860
866
|
|
|
861
|
-
#: views.py:
|
|
867
|
+
#: views.py:1081
|
|
862
868
|
msgid "Map successfully deleted."
|
|
863
869
|
msgstr "Mapa behar bezala ezabatu da."
|
|
864
870
|
|
|
865
|
-
#: views.py:
|
|
871
|
+
#: views.py:1107
|
|
866
872
|
#, python-format
|
|
867
873
|
msgid ""
|
|
868
874
|
"Your map has been cloned! If you want to edit this map from another "
|
|
869
875
|
"computer, please use this link: %(anonymous_url)s"
|
|
870
876
|
msgstr "Zure mapa klonatu egin da! Mapa hau beste nabigatzaile batetik editatzeko erabili esteka hau: %(anonymous_url)s"
|
|
871
877
|
|
|
872
|
-
#: views.py:
|
|
878
|
+
#: views.py:1112
|
|
873
879
|
msgid "Congratulations, your map has been cloned!"
|
|
874
880
|
msgstr "Zorionak, zure mapa ondo klonatu da!"
|
|
875
881
|
|
|
876
|
-
#: views.py:
|
|
882
|
+
#: views.py:1366
|
|
877
883
|
msgid "Layer successfully deleted."
|
|
878
884
|
msgstr "Geruza ondo ezabatu da."
|
|
879
885
|
|
|
880
|
-
#: views.py:
|
|
886
|
+
#: views.py:1388
|
|
881
887
|
msgid "Permissions updated with success!"
|
|
882
888
|
msgstr "Baimenak behar bezala eguneratu dira!"
|
|
889
|
+
|
|
890
|
+
#: views.py:1405
|
|
891
|
+
msgid "Generic"
|
|
892
|
+
msgstr "Generikoa"
|
|
Binary file
|