umap-project 3.3.2__py3-none-any.whl → 3.4.0__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 +64 -53
- 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 +47 -41
- 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 +114 -103
- 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/migrations/0018_datalayer_uuid.py +1 -1
- umap/models.py +7 -3
- umap/settings/local.py.sample +1 -1
- 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 +123 -33
- 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/components/base.js +1 -1
- umap/static/umap/js/modules/browser.js +69 -61
- umap/static/umap/js/modules/caption.js +10 -7
- umap/static/umap/js/modules/data/features.js +89 -63
- umap/static/umap/js/modules/data/fields.js +446 -0
- umap/static/umap/js/modules/data/layer.js +116 -196
- umap/static/umap/js/modules/domutils.js +109 -0
- umap/static/umap/js/modules/filters.js +780 -0
- umap/static/umap/js/modules/form/builder.js +8 -5
- umap/static/umap/js/modules/form/fields.js +111 -221
- umap/static/umap/js/modules/formatter.js +24 -1
- umap/static/umap/js/modules/help.js +4 -3
- umap/static/umap/js/modules/i18n.js +1 -1
- umap/static/umap/js/modules/importer.js +1 -1
- umap/static/umap/js/modules/importers/opendata.js +15 -0
- umap/static/umap/js/modules/importers/openrouteservice.js +6 -1
- umap/static/umap/js/modules/managers.js +2 -1
- umap/static/umap/js/modules/permissions.js +39 -31
- umap/static/umap/js/modules/rendering/controls.js +11 -9
- umap/static/umap/js/modules/rendering/icon.js +3 -8
- umap/static/umap/js/modules/rendering/layers/base.js +3 -3
- umap/static/umap/js/modules/rendering/layers/classified.js +18 -11
- umap/static/umap/js/modules/rendering/layers/cluster.js +23 -11
- umap/static/umap/js/modules/rendering/layers/heat.js +27 -21
- umap/static/umap/js/modules/rendering/map.js +1 -0
- umap/static/umap/js/modules/rendering/template.js +50 -23
- umap/static/umap/js/modules/rendering/ui.js +33 -25
- umap/static/umap/js/modules/rules.js +38 -44
- umap/static/umap/js/modules/schema.js +3 -6
- umap/static/umap/js/modules/share.js +5 -4
- 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 +55 -23
- umap/static/umap/js/modules/ui/dialog.js +38 -27
- umap/static/umap/js/modules/ui/panel.js +23 -8
- umap/static/umap/js/modules/ui/tooltip.js +6 -5
- umap/static/umap/js/modules/umap.js +158 -51
- umap/static/umap/js/modules/utils.js +24 -2
- umap/static/umap/js/umap.core.js +1 -110
- umap/static/umap/locale/am_ET.js +52 -17
- umap/static/umap/locale/am_ET.json +52 -17
- umap/static/umap/locale/ar.js +52 -17
- umap/static/umap/locale/ar.json +52 -17
- umap/static/umap/locale/ast.js +52 -17
- umap/static/umap/locale/ast.json +52 -17
- umap/static/umap/locale/bg.js +52 -17
- umap/static/umap/locale/bg.json +52 -17
- umap/static/umap/locale/br.js +48 -22
- umap/static/umap/locale/br.json +48 -22
- umap/static/umap/locale/ca.js +52 -17
- umap/static/umap/locale/ca.json +52 -17
- umap/static/umap/locale/cs_CZ.js +52 -17
- umap/static/umap/locale/cs_CZ.json +52 -17
- umap/static/umap/locale/da.js +54 -17
- umap/static/umap/locale/da.json +54 -17
- umap/static/umap/locale/de.js +102 -67
- umap/static/umap/locale/de.json +102 -67
- umap/static/umap/locale/el.js +52 -17
- umap/static/umap/locale/el.json +52 -17
- umap/static/umap/locale/en.js +54 -16
- umap/static/umap/locale/en.json +54 -16
- umap/static/umap/locale/en_US.json +52 -17
- umap/static/umap/locale/es.js +54 -17
- umap/static/umap/locale/es.json +54 -17
- umap/static/umap/locale/et.js +91 -56
- umap/static/umap/locale/et.json +91 -56
- umap/static/umap/locale/eu.js +84 -49
- umap/static/umap/locale/eu.json +84 -49
- umap/static/umap/locale/fa_IR.js +52 -17
- umap/static/umap/locale/fa_IR.json +52 -17
- umap/static/umap/locale/fi.js +52 -17
- umap/static/umap/locale/fi.json +52 -17
- umap/static/umap/locale/fr.js +54 -17
- umap/static/umap/locale/fr.json +54 -17
- umap/static/umap/locale/gl.js +52 -17
- umap/static/umap/locale/gl.json +52 -17
- umap/static/umap/locale/he.js +52 -17
- umap/static/umap/locale/he.json +52 -17
- umap/static/umap/locale/hr.js +52 -17
- umap/static/umap/locale/hr.json +52 -17
- umap/static/umap/locale/hu.js +59 -24
- umap/static/umap/locale/hu.json +59 -24
- umap/static/umap/locale/id.js +52 -17
- umap/static/umap/locale/id.json +52 -17
- umap/static/umap/locale/is.js +52 -17
- umap/static/umap/locale/is.json +52 -17
- umap/static/umap/locale/it.js +52 -17
- umap/static/umap/locale/it.json +52 -17
- umap/static/umap/locale/ja.js +52 -17
- umap/static/umap/locale/ja.json +52 -17
- umap/static/umap/locale/ko.js +52 -17
- umap/static/umap/locale/ko.json +52 -17
- umap/static/umap/locale/lt.js +52 -17
- umap/static/umap/locale/lt.json +52 -17
- umap/static/umap/locale/ms.js +52 -17
- umap/static/umap/locale/ms.json +52 -17
- umap/static/umap/locale/nl.js +52 -17
- umap/static/umap/locale/nl.json +52 -17
- umap/static/umap/locale/no.js +52 -17
- umap/static/umap/locale/no.json +52 -17
- umap/static/umap/locale/pl.js +53 -17
- umap/static/umap/locale/pl.json +53 -17
- umap/static/umap/locale/pl_PL.json +52 -17
- umap/static/umap/locale/pt.js +52 -17
- umap/static/umap/locale/pt.json +52 -17
- umap/static/umap/locale/pt_BR.js +52 -17
- umap/static/umap/locale/pt_BR.json +52 -17
- umap/static/umap/locale/pt_PT.js +52 -17
- umap/static/umap/locale/pt_PT.json +52 -17
- umap/static/umap/locale/ro.js +52 -17
- umap/static/umap/locale/ro.json +52 -17
- umap/static/umap/locale/ru.js +52 -17
- umap/static/umap/locale/ru.json +52 -17
- umap/static/umap/locale/si.js +1 -1
- umap/static/umap/locale/si.json +1 -1
- umap/static/umap/locale/sk_SK.js +52 -17
- umap/static/umap/locale/sk_SK.json +52 -17
- umap/static/umap/locale/sl.js +52 -17
- umap/static/umap/locale/sl.json +52 -17
- umap/static/umap/locale/sr.js +52 -17
- umap/static/umap/locale/sr.json +52 -17
- umap/static/umap/locale/sv.js +52 -17
- umap/static/umap/locale/sv.json +52 -17
- umap/static/umap/locale/th_TH.js +52 -17
- umap/static/umap/locale/th_TH.json +52 -17
- umap/static/umap/locale/tr.js +52 -17
- umap/static/umap/locale/tr.json +52 -17
- umap/static/umap/locale/uk_UA.js +52 -17
- umap/static/umap/locale/uk_UA.json +52 -17
- umap/static/umap/locale/vi.js +52 -17
- umap/static/umap/locale/vi.json +52 -17
- umap/static/umap/locale/vi_VN.json +52 -17
- umap/static/umap/locale/zh.js +52 -17
- umap/static/umap/locale/zh.json +52 -17
- umap/static/umap/locale/zh_CN.json +52 -17
- umap/static/umap/locale/zh_TW.Big5.json +52 -17
- umap/static/umap/locale/zh_TW.js +53 -17
- umap/static/umap/locale/zh_TW.json +53 -17
- umap/static/umap/map.css +63 -226
- 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 +10 -6
- umap/tests/integration/test_anonymous_owned_map.py +90 -37
- umap/tests/integration/test_basics.py +25 -1
- umap/tests/integration/test_browser.py +37 -0
- umap/tests/integration/test_cluster.py +110 -0
- umap/tests/integration/test_conditional_rules.py +107 -52
- umap/tests/integration/test_datalayer.py +9 -16
- umap/tests/integration/test_draw_polygon.py +6 -0
- umap/tests/integration/test_draw_polyline.py +11 -0
- umap/tests/integration/test_edit_marker.py +12 -1
- umap/tests/integration/test_export_map.py +19 -0
- umap/tests/integration/test_fields.py +541 -0
- umap/tests/integration/test_filters.py +616 -0
- umap/tests/integration/test_iframe.py +1 -1
- umap/tests/integration/test_import.py +38 -42
- umap/tests/integration/test_map_preview.py +1 -1
- umap/tests/integration/test_picto.py +1 -1
- umap/tests/integration/test_popup.py +31 -0
- umap/tests/integration/test_remote_data.py +60 -4
- umap/tests/integration/test_save.py +1 -1
- umap/tests/integration/test_share.py +4 -4
- umap/tests/integration/test_tableeditor.py +31 -7
- umap/tests/integration/test_websocket_sync.py +71 -20
- umap/tests/test_dashboard.py +11 -1
- umap/tests/test_statics.py +2 -2
- umap/tests/test_utils.py +19 -2
- umap/tests/test_views.py +1 -1
- umap/urls.py +1 -0
- umap/utils.py +8 -1
- umap/views.py +5 -0
- {umap_project-3.3.2.dist-info → umap_project-3.4.0.dist-info}/METADATA +15 -15
- {umap_project-3.3.2.dist-info → umap_project-3.4.0.dist-info}/RECORD +240 -236
- umap/static/umap/js/modules/facets.js +0 -164
- umap/tests/integration/test_facets_browser.py +0 -279
- {umap_project-3.3.2.dist-info → umap_project-3.4.0.dist-info}/WHEEL +0 -0
- {umap_project-3.3.2.dist-info → umap_project-3.4.0.dist-info}/entry_points.txt +0 -0
- {umap_project-3.3.2.dist-info → umap_project-3.4.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -8,7 +8,7 @@ msgid ""
|
|
|
8
8
|
msgstr ""
|
|
9
9
|
"Project-Id-Version: PACKAGE VERSION\n"
|
|
10
10
|
"Report-Msgid-Bugs-To: \n"
|
|
11
|
-
"POT-Creation-Date: 2025-
|
|
11
|
+
"POT-Creation-Date: 2025-10-17 06:00+0000\n"
|
|
12
12
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
|
13
13
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
14
14
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
|
@@ -41,7 +41,7 @@ msgstr ""
|
|
|
41
41
|
msgid "name"
|
|
42
42
|
msgstr ""
|
|
43
43
|
|
|
44
|
-
#: models.py:63 models.py:
|
|
44
|
+
#: models.py:63 models.py:507
|
|
45
45
|
msgid "description"
|
|
46
46
|
msgstr ""
|
|
47
47
|
|
|
@@ -61,23 +61,23 @@ msgstr ""
|
|
|
61
61
|
msgid "Order of the tilelayers in the edit box"
|
|
62
62
|
msgstr ""
|
|
63
63
|
|
|
64
|
-
#: models.py:176 models.py:
|
|
64
|
+
#: models.py:176 models.py:501
|
|
65
65
|
msgid "Only editable with secret edit link"
|
|
66
66
|
msgstr ""
|
|
67
67
|
|
|
68
|
-
#: models.py:177 models.py:
|
|
68
|
+
#: models.py:177 models.py:502
|
|
69
69
|
msgid "Everyone can edit"
|
|
70
70
|
msgstr ""
|
|
71
71
|
|
|
72
|
-
#: models.py:180 models.py:
|
|
72
|
+
#: models.py:180 models.py:495
|
|
73
73
|
msgid "Everyone"
|
|
74
74
|
msgstr ""
|
|
75
75
|
|
|
76
|
-
#: models.py:181 models.py:190 models.py:
|
|
76
|
+
#: models.py:181 models.py:190 models.py:496
|
|
77
77
|
msgid "Editors and team only"
|
|
78
78
|
msgstr ""
|
|
79
79
|
|
|
80
|
-
#: models.py:182 models.py:
|
|
80
|
+
#: models.py:182 models.py:497
|
|
81
81
|
msgid "Owner only"
|
|
82
82
|
msgstr ""
|
|
83
83
|
|
|
@@ -97,7 +97,7 @@ msgstr ""
|
|
|
97
97
|
msgid "Blocked"
|
|
98
98
|
msgstr ""
|
|
99
99
|
|
|
100
|
-
#: models.py:192 models.py:
|
|
100
|
+
#: models.py:192 models.py:491
|
|
101
101
|
msgid "Deleted"
|
|
102
102
|
msgstr ""
|
|
103
103
|
|
|
@@ -137,15 +137,15 @@ msgstr ""
|
|
|
137
137
|
msgid "team"
|
|
138
138
|
msgstr ""
|
|
139
139
|
|
|
140
|
-
#: models.py:230 models.py:
|
|
140
|
+
#: models.py:230 models.py:523
|
|
141
141
|
msgid "edit status"
|
|
142
142
|
msgstr ""
|
|
143
143
|
|
|
144
|
-
#: models.py:235 models.py:
|
|
144
|
+
#: models.py:235 models.py:528
|
|
145
145
|
msgid "share status"
|
|
146
146
|
msgstr ""
|
|
147
147
|
|
|
148
|
-
#: models.py:238 models.py:
|
|
148
|
+
#: models.py:238 models.py:518
|
|
149
149
|
msgid "settings"
|
|
150
150
|
msgstr ""
|
|
151
151
|
|
|
@@ -161,15 +161,15 @@ msgstr ""
|
|
|
161
161
|
msgid "Clone of"
|
|
162
162
|
msgstr ""
|
|
163
163
|
|
|
164
|
-
#: models.py:
|
|
164
|
+
#: models.py:490 models.py:494 models.py:500
|
|
165
165
|
msgid "Inherit"
|
|
166
166
|
msgstr ""
|
|
167
167
|
|
|
168
|
-
#: models.py:
|
|
168
|
+
#: models.py:513
|
|
169
169
|
msgid "display on load"
|
|
170
170
|
msgstr ""
|
|
171
171
|
|
|
172
|
-
#: models.py:
|
|
172
|
+
#: models.py:514
|
|
173
173
|
msgid "Display this layer on load."
|
|
174
174
|
msgstr ""
|
|
175
175
|
|
|
@@ -408,48 +408,54 @@ msgid "Play with the demo"
|
|
|
408
408
|
msgstr ""
|
|
409
409
|
|
|
410
410
|
#: templates/umap/components/alerts/alert.html:17
|
|
411
|
-
#: templates/umap/components/alerts/alert.html:
|
|
412
|
-
#: templates/umap/components/alerts/alert.html:
|
|
411
|
+
#: templates/umap/components/alerts/alert.html:69
|
|
412
|
+
#: templates/umap/components/alerts/alert.html:97
|
|
413
413
|
msgid "Close"
|
|
414
414
|
msgstr ""
|
|
415
415
|
|
|
416
416
|
#: templates/umap/components/alerts/alert.html:32
|
|
417
417
|
#, python-format
|
|
418
418
|
msgid ""
|
|
419
|
-
"
|
|
420
|
-
"
|
|
421
|
-
"
|
|
419
|
+
"Oops, I didn't mean it, I want to <a href=\"%(login_url)s\" "
|
|
420
|
+
"class=\"login\">create an account</a> or <a href=\"%(login_url)s\" "
|
|
421
|
+
"class=\"login\">log in</a> (no worry, we'll attach the map to your account)."
|
|
422
422
|
msgstr ""
|
|
423
423
|
|
|
424
|
-
#: templates/umap/components/alerts/alert.html:
|
|
424
|
+
#: templates/umap/components/alerts/alert.html:35
|
|
425
|
+
msgid ""
|
|
426
|
+
"Yes, I want to continue editing anonymously, I will save the secret edit "
|
|
427
|
+
"link to be able to edit this map later or on another device"
|
|
428
|
+
msgstr ""
|
|
429
|
+
|
|
430
|
+
#: templates/umap/components/alerts/alert.html:39
|
|
425
431
|
msgid "Here is your secret link to edit the map, please keep it safe:"
|
|
426
432
|
msgstr ""
|
|
427
433
|
|
|
428
|
-
#: templates/umap/components/alerts/alert.html:
|
|
434
|
+
#: templates/umap/components/alerts/alert.html:43
|
|
429
435
|
msgid "Copy link"
|
|
430
436
|
msgstr ""
|
|
431
437
|
|
|
432
|
-
#: templates/umap/components/alerts/alert.html:
|
|
438
|
+
#: templates/umap/components/alerts/alert.html:50
|
|
433
439
|
msgid "Enter your email address to receive the secret link:"
|
|
434
440
|
msgstr ""
|
|
435
441
|
|
|
436
|
-
#: templates/umap/components/alerts/alert.html:
|
|
442
|
+
#: templates/umap/components/alerts/alert.html:56
|
|
437
443
|
msgid "Email"
|
|
438
444
|
msgstr ""
|
|
439
445
|
|
|
440
|
-
#: templates/umap/components/alerts/alert.html:
|
|
446
|
+
#: templates/umap/components/alerts/alert.html:59
|
|
441
447
|
msgid "Send me the link"
|
|
442
448
|
msgstr ""
|
|
443
449
|
|
|
444
|
-
#: templates/umap/components/alerts/alert.html:
|
|
450
|
+
#: templates/umap/components/alerts/alert.html:84
|
|
445
451
|
msgid "See their edits in another tab"
|
|
446
452
|
msgstr ""
|
|
447
453
|
|
|
448
|
-
#: templates/umap/components/alerts/alert.html:
|
|
454
|
+
#: templates/umap/components/alerts/alert.html:87
|
|
449
455
|
msgid "Keep your changes and loose theirs"
|
|
450
456
|
msgstr ""
|
|
451
457
|
|
|
452
|
-
#: templates/umap/components/alerts/alert.html:
|
|
458
|
+
#: templates/umap/components/alerts/alert.html:90
|
|
453
459
|
msgid "Keep their changes and loose yours"
|
|
454
460
|
msgstr ""
|
|
455
461
|
|
|
@@ -716,7 +722,7 @@ msgstr ""
|
|
|
716
722
|
msgid "Search maps"
|
|
717
723
|
msgstr ""
|
|
718
724
|
|
|
719
|
-
#: templates/umap/search_bar.html:14
|
|
725
|
+
#: templates/umap/search_bar.html:14 templates/umap/user_map_table.html:15
|
|
720
726
|
msgid "Any category"
|
|
721
727
|
msgstr ""
|
|
722
728
|
|
|
@@ -822,61 +828,61 @@ msgstr ""
|
|
|
822
828
|
msgid "View the map"
|
|
823
829
|
msgstr ""
|
|
824
830
|
|
|
825
|
-
#: views.py:
|
|
831
|
+
#: views.py:872
|
|
826
832
|
msgid "See full screen"
|
|
827
833
|
msgstr ""
|
|
828
834
|
|
|
829
|
-
#: views.py:
|
|
835
|
+
#: views.py:1015
|
|
830
836
|
msgid "Map editors updated with success!"
|
|
831
837
|
msgstr ""
|
|
832
838
|
|
|
833
|
-
#: views.py:
|
|
839
|
+
#: views.py:1051
|
|
834
840
|
#, python-format
|
|
835
841
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
836
842
|
msgstr ""
|
|
837
843
|
|
|
838
|
-
#: views.py:
|
|
844
|
+
#: views.py:1054
|
|
839
845
|
#, python-format
|
|
840
846
|
msgid "Here is your secret edit link: %(link)s"
|
|
841
847
|
msgstr ""
|
|
842
848
|
|
|
843
|
-
#: views.py:
|
|
849
|
+
#: views.py:1061
|
|
844
850
|
#, python-format
|
|
845
851
|
msgid "Can't send email to %(email)s"
|
|
846
852
|
msgstr ""
|
|
847
853
|
|
|
848
|
-
#: views.py:
|
|
854
|
+
#: views.py:1064
|
|
849
855
|
#, python-format
|
|
850
856
|
msgid "Email sent to %(email)s"
|
|
851
857
|
msgstr ""
|
|
852
858
|
|
|
853
|
-
#: views.py:
|
|
859
|
+
#: views.py:1075
|
|
854
860
|
msgid "Only its owner can delete the map."
|
|
855
861
|
msgstr ""
|
|
856
862
|
|
|
857
|
-
#: views.py:
|
|
863
|
+
#: views.py:1081
|
|
858
864
|
msgid "Map successfully deleted."
|
|
859
865
|
msgstr ""
|
|
860
866
|
|
|
861
|
-
#: views.py:
|
|
867
|
+
#: views.py:1107
|
|
862
868
|
#, python-format
|
|
863
869
|
msgid ""
|
|
864
870
|
"Your map has been cloned! If you want to edit this map from another "
|
|
865
871
|
"computer, please use this link: %(anonymous_url)s"
|
|
866
872
|
msgstr ""
|
|
867
873
|
|
|
868
|
-
#: views.py:
|
|
874
|
+
#: views.py:1112
|
|
869
875
|
msgid "Congratulations, your map has been cloned!"
|
|
870
876
|
msgstr ""
|
|
871
877
|
|
|
872
|
-
#: views.py:
|
|
878
|
+
#: views.py:1366
|
|
873
879
|
msgid "Layer successfully deleted."
|
|
874
880
|
msgstr ""
|
|
875
881
|
|
|
876
|
-
#: views.py:
|
|
882
|
+
#: views.py:1388
|
|
877
883
|
msgid "Permissions updated with success!"
|
|
878
884
|
msgstr ""
|
|
879
885
|
|
|
880
|
-
#: views.py:
|
|
886
|
+
#: views.py:1405
|
|
881
887
|
msgid "Generic"
|
|
882
888
|
msgstr ""
|
|
Binary file
|
|
@@ -17,7 +17,7 @@ msgid ""
|
|
|
17
17
|
msgstr ""
|
|
18
18
|
"Project-Id-Version: uMap\n"
|
|
19
19
|
"Report-Msgid-Bugs-To: \n"
|
|
20
|
-
"POT-Creation-Date: 2025-
|
|
20
|
+
"POT-Creation-Date: 2025-10-14 15:28+0000\n"
|
|
21
21
|
"PO-Revision-Date: 2013-11-22 14:00+0000\n"
|
|
22
22
|
"Last-Translator: Ignacio L'Episcopo, 2024-2025\n"
|
|
23
23
|
"Language-Team: Spanish (http://app.transifex.com/openstreetmap/umap/language/es/)\n"
|
|
@@ -334,7 +334,7 @@ msgstr "Explorar los mapas destacados de %(current_user)s"
|
|
|
334
334
|
msgid "%(current_user)s has no starred maps yet."
|
|
335
335
|
msgstr "%(current_user)s no tiene mapas destacados todavía."
|
|
336
336
|
|
|
337
|
-
#: templates/base.html:
|
|
337
|
+
#: templates/base.html:16
|
|
338
338
|
msgid ""
|
|
339
339
|
"uMap lets you create maps with OpenStreetMap layers in a minute and embed "
|
|
340
340
|
"them in your site."
|
|
@@ -418,48 +418,54 @@ msgid "Play with the demo"
|
|
|
418
418
|
msgstr "Juega con la demo"
|
|
419
419
|
|
|
420
420
|
#: templates/umap/components/alerts/alert.html:17
|
|
421
|
-
#: templates/umap/components/alerts/alert.html:
|
|
422
|
-
#: templates/umap/components/alerts/alert.html:
|
|
421
|
+
#: templates/umap/components/alerts/alert.html:69
|
|
422
|
+
#: templates/umap/components/alerts/alert.html:97
|
|
423
423
|
msgid "Close"
|
|
424
424
|
msgstr "Cerrar"
|
|
425
425
|
|
|
426
426
|
#: templates/umap/components/alerts/alert.html:32
|
|
427
427
|
#, python-format
|
|
428
428
|
msgid ""
|
|
429
|
-
"
|
|
430
|
-
"
|
|
431
|
-
"
|
|
432
|
-
msgstr "
|
|
429
|
+
"Oops, I didn't mean it, I want to <a href=\"%(login_url)s\" "
|
|
430
|
+
"class=\"login\">create an account</a> or <a href=\"%(login_url)s\" "
|
|
431
|
+
"class=\"login\">log in</a> (no worry, we'll attach the map to your account)."
|
|
432
|
+
msgstr ""
|
|
433
433
|
|
|
434
|
-
#: templates/umap/components/alerts/alert.html:
|
|
434
|
+
#: templates/umap/components/alerts/alert.html:35
|
|
435
|
+
msgid ""
|
|
436
|
+
"Yes, I want to continue editing anonymously, I will save the secret edit "
|
|
437
|
+
"link to be able to edit this map later or on another device"
|
|
438
|
+
msgstr ""
|
|
439
|
+
|
|
440
|
+
#: templates/umap/components/alerts/alert.html:39
|
|
435
441
|
msgid "Here is your secret link to edit the map, please keep it safe:"
|
|
436
442
|
msgstr "Aquí está tu enlace secreto para editar el mapa, guárdalo bien:"
|
|
437
443
|
|
|
438
|
-
#: templates/umap/components/alerts/alert.html:
|
|
444
|
+
#: templates/umap/components/alerts/alert.html:43
|
|
439
445
|
msgid "Copy link"
|
|
440
446
|
msgstr "Copiar enlace"
|
|
441
447
|
|
|
442
|
-
#: templates/umap/components/alerts/alert.html:
|
|
448
|
+
#: templates/umap/components/alerts/alert.html:50
|
|
443
449
|
msgid "Enter your email address to receive the secret link:"
|
|
444
450
|
msgstr "Introduce tu dirección de correo electrónico para recibir el enlace secreto:"
|
|
445
451
|
|
|
446
|
-
#: templates/umap/components/alerts/alert.html:
|
|
452
|
+
#: templates/umap/components/alerts/alert.html:56
|
|
447
453
|
msgid "Email"
|
|
448
454
|
msgstr "Correo electrónico"
|
|
449
455
|
|
|
450
|
-
#: templates/umap/components/alerts/alert.html:
|
|
456
|
+
#: templates/umap/components/alerts/alert.html:59
|
|
451
457
|
msgid "Send me the link"
|
|
452
458
|
msgstr "Enviarme el enlace"
|
|
453
459
|
|
|
454
|
-
#: templates/umap/components/alerts/alert.html:
|
|
460
|
+
#: templates/umap/components/alerts/alert.html:84
|
|
455
461
|
msgid "See their edits in another tab"
|
|
456
462
|
msgstr "Ver sus ediciones en otra pestaña"
|
|
457
463
|
|
|
458
|
-
#: templates/umap/components/alerts/alert.html:
|
|
464
|
+
#: templates/umap/components/alerts/alert.html:87
|
|
459
465
|
msgid "Keep your changes and loose theirs"
|
|
460
466
|
msgstr "Mantén tus cambios y descarta los suyos"
|
|
461
467
|
|
|
462
|
-
#: templates/umap/components/alerts/alert.html:
|
|
468
|
+
#: templates/umap/components/alerts/alert.html:90
|
|
463
469
|
msgid "Keep their changes and loose yours"
|
|
464
470
|
msgstr "Mantén sus cambios y descarta los tuyos"
|
|
465
471
|
|
|
@@ -540,7 +546,7 @@ msgstr "Has iniciado sesión. Continuando..."
|
|
|
540
546
|
msgid "template"
|
|
541
547
|
msgstr "plantilla"
|
|
542
548
|
|
|
543
|
-
#: templates/umap/map_list.html:18 views.py:
|
|
549
|
+
#: templates/umap/map_list.html:18 views.py:459
|
|
544
550
|
msgid "by"
|
|
545
551
|
msgstr "por"
|
|
546
552
|
|
|
@@ -728,7 +734,7 @@ msgstr "Últimos mapas creados"
|
|
|
728
734
|
msgid "Search maps"
|
|
729
735
|
msgstr "Buscar mapas"
|
|
730
736
|
|
|
731
|
-
#: templates/umap/search_bar.html:14
|
|
737
|
+
#: templates/umap/search_bar.html:14 templates/umap/user_map_table.html:15
|
|
732
738
|
msgid "Any category"
|
|
733
739
|
msgstr "Cualquier categoría"
|
|
734
740
|
|
|
@@ -821,70 +827,74 @@ msgstr "Crear una plantilla"
|
|
|
821
827
|
msgid "No template found."
|
|
822
828
|
msgstr "No se encontró ninguna plantilla."
|
|
823
829
|
|
|
824
|
-
#: views.py:
|
|
830
|
+
#: views.py:235
|
|
825
831
|
msgid "Cannot delete a team with more than one member"
|
|
826
832
|
msgstr "No se puede eliminar un equipo con más de un miembro"
|
|
827
833
|
|
|
828
|
-
#: views.py:
|
|
834
|
+
#: views.py:239
|
|
829
835
|
#, python-format
|
|
830
836
|
msgid "Team “%(name)s” has been deleted"
|
|
831
837
|
msgstr "El equipo “%(name)s” ha sido eliminado"
|
|
832
838
|
|
|
833
|
-
#: views.py:
|
|
839
|
+
#: views.py:464
|
|
834
840
|
msgid "View the map"
|
|
835
841
|
msgstr "Ver el mapa"
|
|
836
842
|
|
|
837
|
-
#: views.py:
|
|
843
|
+
#: views.py:872
|
|
838
844
|
msgid "See full screen"
|
|
839
845
|
msgstr "Ver en pantalla completa"
|
|
840
846
|
|
|
841
|
-
#: views.py:
|
|
847
|
+
#: views.py:1015
|
|
842
848
|
msgid "Map editors updated with success!"
|
|
843
849
|
msgstr "¡Los editores del mapas han sido actualizados con éxito!"
|
|
844
850
|
|
|
845
|
-
#: views.py:
|
|
851
|
+
#: views.py:1051
|
|
846
852
|
#, python-format
|
|
847
853
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
848
854
|
msgstr "El enlace de edición de uMap para tu mapa: %(map_name)s"
|
|
849
855
|
|
|
850
|
-
#: views.py:
|
|
856
|
+
#: views.py:1054
|
|
851
857
|
#, python-format
|
|
852
858
|
msgid "Here is your secret edit link: %(link)s"
|
|
853
859
|
msgstr "Aquí está tu enlace secreto de edición: %(link)s"
|
|
854
860
|
|
|
855
|
-
#: views.py:
|
|
861
|
+
#: views.py:1061
|
|
856
862
|
#, python-format
|
|
857
863
|
msgid "Can't send email to %(email)s"
|
|
858
864
|
msgstr "No se puede enviar correo electrónico a %(email)s"
|
|
859
865
|
|
|
860
|
-
#: views.py:
|
|
866
|
+
#: views.py:1064
|
|
861
867
|
#, python-format
|
|
862
868
|
msgid "Email sent to %(email)s"
|
|
863
869
|
msgstr "Correo electrónico enviado a %(email)s"
|
|
864
870
|
|
|
865
|
-
#: views.py:
|
|
871
|
+
#: views.py:1075
|
|
866
872
|
msgid "Only its owner can delete the map."
|
|
867
873
|
msgstr "Sólo el propietario puede borrar el mapa."
|
|
868
874
|
|
|
869
|
-
#: views.py:
|
|
875
|
+
#: views.py:1081
|
|
870
876
|
msgid "Map successfully deleted."
|
|
871
877
|
msgstr "Mapa eliminado correctamente."
|
|
872
878
|
|
|
873
|
-
#: views.py:
|
|
879
|
+
#: views.py:1107
|
|
874
880
|
#, python-format
|
|
875
881
|
msgid ""
|
|
876
882
|
"Your map has been cloned! If you want to edit this map from another "
|
|
877
883
|
"computer, please use this link: %(anonymous_url)s"
|
|
878
884
|
msgstr "¡Tu mapa ha sido clonado! Si quieres editar este mapa desde otro ordenador, usa este enlace: %(anonymous_url)s"
|
|
879
885
|
|
|
880
|
-
#: views.py:
|
|
886
|
+
#: views.py:1112
|
|
881
887
|
msgid "Congratulations, your map has been cloned!"
|
|
882
888
|
msgstr "¡Enhorabuena! ¡Tu mapa ha sido clonado!"
|
|
883
889
|
|
|
884
|
-
#: views.py:
|
|
890
|
+
#: views.py:1366
|
|
885
891
|
msgid "Layer successfully deleted."
|
|
886
892
|
msgstr "Se eliminó la capa con éxito."
|
|
887
893
|
|
|
888
|
-
#: views.py:
|
|
894
|
+
#: views.py:1388
|
|
889
895
|
msgid "Permissions updated with success!"
|
|
890
896
|
msgstr "¡Permisos actualizados con éxito!"
|
|
897
|
+
|
|
898
|
+
#: views.py:1405
|
|
899
|
+
msgid "Generic"
|
|
900
|
+
msgstr "Genérico"
|
|
Binary file
|