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
|
@@ -12,7 +12,7 @@ msgid ""
|
|
|
12
12
|
msgstr ""
|
|
13
13
|
"Project-Id-Version: uMap\n"
|
|
14
14
|
"Report-Msgid-Bugs-To: \n"
|
|
15
|
-
"POT-Creation-Date: 2025-
|
|
15
|
+
"POT-Creation-Date: 2025-10-14 15:28+0000\n"
|
|
16
16
|
"PO-Revision-Date: 2013-11-22 14:00+0000\n"
|
|
17
17
|
"Last-Translator: imni <iriman@chmail.ir>, 2024\n"
|
|
18
18
|
"Language-Team: Persian (Iran) (http://app.transifex.com/openstreetmap/umap/language/fa_IR/)\n"
|
|
@@ -329,7 +329,7 @@ msgstr "نقشههای ستارهدار %(current_user)s را مرور ک
|
|
|
329
329
|
msgid "%(current_user)s has no starred maps yet."
|
|
330
330
|
msgstr "%(current_user)s هنوز نقشهٔ ستارهداری ندارد."
|
|
331
331
|
|
|
332
|
-
#: templates/base.html:
|
|
332
|
+
#: templates/base.html:16
|
|
333
333
|
msgid ""
|
|
334
334
|
"uMap lets you create maps with OpenStreetMap layers in a minute and embed "
|
|
335
335
|
"them in your site."
|
|
@@ -413,48 +413,54 @@ msgid "Play with the demo"
|
|
|
413
413
|
msgstr "با نسخهٔ نمایشی کار کنید"
|
|
414
414
|
|
|
415
415
|
#: templates/umap/components/alerts/alert.html:17
|
|
416
|
-
#: templates/umap/components/alerts/alert.html:
|
|
417
|
-
#: templates/umap/components/alerts/alert.html:
|
|
416
|
+
#: templates/umap/components/alerts/alert.html:69
|
|
417
|
+
#: templates/umap/components/alerts/alert.html:97
|
|
418
418
|
msgid "Close"
|
|
419
419
|
msgstr "بستن"
|
|
420
420
|
|
|
421
421
|
#: templates/umap/components/alerts/alert.html:32
|
|
422
422
|
#, python-format
|
|
423
423
|
msgid ""
|
|
424
|
-
"
|
|
425
|
-
"
|
|
426
|
-
"
|
|
427
|
-
msgstr "
|
|
424
|
+
"Oops, I didn't mean it, I want to <a href=\"%(login_url)s\" "
|
|
425
|
+
"class=\"login\">create an account</a> or <a href=\"%(login_url)s\" "
|
|
426
|
+
"class=\"login\">log in</a> (no worry, we'll attach the map to your account)."
|
|
427
|
+
msgstr ""
|
|
428
428
|
|
|
429
|
-
#: templates/umap/components/alerts/alert.html:
|
|
429
|
+
#: templates/umap/components/alerts/alert.html:35
|
|
430
|
+
msgid ""
|
|
431
|
+
"Yes, I want to continue editing anonymously, I will save the secret edit "
|
|
432
|
+
"link to be able to edit this map later or on another device"
|
|
433
|
+
msgstr ""
|
|
434
|
+
|
|
435
|
+
#: templates/umap/components/alerts/alert.html:39
|
|
430
436
|
msgid "Here is your secret link to edit the map, please keep it safe:"
|
|
431
437
|
msgstr "این پیوند محرمانهٔ شما برای ویرایش نقشه است. لطفاً در جای امنی نگهش دارید:"
|
|
432
438
|
|
|
433
|
-
#: templates/umap/components/alerts/alert.html:
|
|
439
|
+
#: templates/umap/components/alerts/alert.html:43
|
|
434
440
|
msgid "Copy link"
|
|
435
441
|
msgstr "کپی پیوند"
|
|
436
442
|
|
|
437
|
-
#: templates/umap/components/alerts/alert.html:
|
|
443
|
+
#: templates/umap/components/alerts/alert.html:50
|
|
438
444
|
msgid "Enter your email address to receive the secret link:"
|
|
439
445
|
msgstr "رایانامهٔ خود را وارد کنید تا پیوند محرمانه را دریافت کنید:"
|
|
440
446
|
|
|
441
|
-
#: templates/umap/components/alerts/alert.html:
|
|
447
|
+
#: templates/umap/components/alerts/alert.html:56
|
|
442
448
|
msgid "Email"
|
|
443
449
|
msgstr "رایانامه"
|
|
444
450
|
|
|
445
|
-
#: templates/umap/components/alerts/alert.html:
|
|
451
|
+
#: templates/umap/components/alerts/alert.html:59
|
|
446
452
|
msgid "Send me the link"
|
|
447
453
|
msgstr "پیوند را برایم بفرست"
|
|
448
454
|
|
|
449
|
-
#: templates/umap/components/alerts/alert.html:
|
|
455
|
+
#: templates/umap/components/alerts/alert.html:84
|
|
450
456
|
msgid "See their edits in another tab"
|
|
451
457
|
msgstr "ویرایشهایشان را در زبانهٔ دیگری ببینید"
|
|
452
458
|
|
|
453
|
-
#: templates/umap/components/alerts/alert.html:
|
|
459
|
+
#: templates/umap/components/alerts/alert.html:87
|
|
454
460
|
msgid "Keep your changes and loose theirs"
|
|
455
461
|
msgstr "تغییرات خود را نگه دارید و از آنها را رها کنید"
|
|
456
462
|
|
|
457
|
-
#: templates/umap/components/alerts/alert.html:
|
|
463
|
+
#: templates/umap/components/alerts/alert.html:90
|
|
458
464
|
msgid "Keep their changes and loose yours"
|
|
459
465
|
msgstr "تغییرات آنها را نگه دارید و از خودتان را رها کنید"
|
|
460
466
|
|
|
@@ -535,7 +541,7 @@ msgstr "شما وارد شدهاید. ادامه..."
|
|
|
535
541
|
msgid "template"
|
|
536
542
|
msgstr ""
|
|
537
543
|
|
|
538
|
-
#: templates/umap/map_list.html:18 views.py:
|
|
544
|
+
#: templates/umap/map_list.html:18 views.py:459
|
|
539
545
|
msgid "by"
|
|
540
546
|
msgstr "ساختهٔ"
|
|
541
547
|
|
|
@@ -722,7 +728,7 @@ msgstr "آخرین نقشههای ساختهشده"
|
|
|
722
728
|
msgid "Search maps"
|
|
723
729
|
msgstr "جستجوی نقشهها"
|
|
724
730
|
|
|
725
|
-
#: templates/umap/search_bar.html:14
|
|
731
|
+
#: templates/umap/search_bar.html:14 templates/umap/user_map_table.html:15
|
|
726
732
|
msgid "Any category"
|
|
727
733
|
msgstr ""
|
|
728
734
|
|
|
@@ -815,70 +821,74 @@ msgstr ""
|
|
|
815
821
|
msgid "No template found."
|
|
816
822
|
msgstr ""
|
|
817
823
|
|
|
818
|
-
#: views.py:
|
|
824
|
+
#: views.py:235
|
|
819
825
|
msgid "Cannot delete a team with more than one member"
|
|
820
826
|
msgstr ""
|
|
821
827
|
|
|
822
|
-
#: views.py:
|
|
828
|
+
#: views.py:239
|
|
823
829
|
#, python-format
|
|
824
830
|
msgid "Team “%(name)s” has been deleted"
|
|
825
831
|
msgstr ""
|
|
826
832
|
|
|
827
|
-
#: views.py:
|
|
833
|
+
#: views.py:464
|
|
828
834
|
msgid "View the map"
|
|
829
835
|
msgstr "مشاهدهٔ نقشه"
|
|
830
836
|
|
|
831
|
-
#: views.py:
|
|
837
|
+
#: views.py:872
|
|
832
838
|
msgid "See full screen"
|
|
833
839
|
msgstr "تمامصفحه ببینید"
|
|
834
840
|
|
|
835
|
-
#: views.py:
|
|
841
|
+
#: views.py:1015
|
|
836
842
|
msgid "Map editors updated with success!"
|
|
837
843
|
msgstr "ویرایشگران نقشه با موفقیت روزآمد شد!"
|
|
838
844
|
|
|
839
|
-
#: views.py:
|
|
845
|
+
#: views.py:1051
|
|
840
846
|
#, python-format
|
|
841
847
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
842
848
|
msgstr "پیوند ویرایش uMap برای نقشهٔ شما: %(map_name)s"
|
|
843
849
|
|
|
844
|
-
#: views.py:
|
|
850
|
+
#: views.py:1054
|
|
845
851
|
#, python-format
|
|
846
852
|
msgid "Here is your secret edit link: %(link)s"
|
|
847
853
|
msgstr "این پیوند محرمانهٔ ویرایش برای شماست: %(link)s"
|
|
848
854
|
|
|
849
|
-
#: views.py:
|
|
855
|
+
#: views.py:1061
|
|
850
856
|
#, python-format
|
|
851
857
|
msgid "Can't send email to %(email)s"
|
|
852
858
|
msgstr "رایانامه به %(email)s فرستاده نشد"
|
|
853
859
|
|
|
854
|
-
#: views.py:
|
|
860
|
+
#: views.py:1064
|
|
855
861
|
#, python-format
|
|
856
862
|
msgid "Email sent to %(email)s"
|
|
857
863
|
msgstr "رایانامه به %(email)s فرستاده شد"
|
|
858
864
|
|
|
859
|
-
#: views.py:
|
|
865
|
+
#: views.py:1075
|
|
860
866
|
msgid "Only its owner can delete the map."
|
|
861
867
|
msgstr "فقط مالک آن میتواند نقشه را حذف کند."
|
|
862
868
|
|
|
863
|
-
#: views.py:
|
|
869
|
+
#: views.py:1081
|
|
864
870
|
msgid "Map successfully deleted."
|
|
865
871
|
msgstr "نقشه با موفقیت حذف شد."
|
|
866
872
|
|
|
867
|
-
#: views.py:
|
|
873
|
+
#: views.py:1107
|
|
868
874
|
#, python-format
|
|
869
875
|
msgid ""
|
|
870
876
|
"Your map has been cloned! If you want to edit this map from another "
|
|
871
877
|
"computer, please use this link: %(anonymous_url)s"
|
|
872
878
|
msgstr "از نقشهٔ شما همانندسازی شد! اگر میخواهید این نقشه را از رایانهٔ دیگری ویرایش کنید، لطفاً از این پیوند استفاده کنید: %(anonymous_url)s"
|
|
873
879
|
|
|
874
|
-
#: views.py:
|
|
880
|
+
#: views.py:1112
|
|
875
881
|
msgid "Congratulations, your map has been cloned!"
|
|
876
882
|
msgstr "تبریک، نقشهٔ شما همانندسازی شد!"
|
|
877
883
|
|
|
878
|
-
#: views.py:
|
|
884
|
+
#: views.py:1366
|
|
879
885
|
msgid "Layer successfully deleted."
|
|
880
886
|
msgstr "لایه با موفقیت حذف شد."
|
|
881
887
|
|
|
882
|
-
#: views.py:
|
|
888
|
+
#: views.py:1388
|
|
883
889
|
msgid "Permissions updated with success!"
|
|
884
890
|
msgstr "مجوزها با موفقیت روزآمد شد!"
|
|
891
|
+
|
|
892
|
+
#: views.py:1405
|
|
893
|
+
msgid "Generic"
|
|
894
|
+
msgstr ""
|
|
Binary file
|
|
@@ -24,7 +24,7 @@ msgid ""
|
|
|
24
24
|
msgstr ""
|
|
25
25
|
"Project-Id-Version: uMap\n"
|
|
26
26
|
"Report-Msgid-Bugs-To: \n"
|
|
27
|
-
"POT-Creation-Date: 2025-
|
|
27
|
+
"POT-Creation-Date: 2025-10-14 15:28+0000\n"
|
|
28
28
|
"PO-Revision-Date: 2013-11-22 14:00+0000\n"
|
|
29
29
|
"Last-Translator: yohanboniface <yohanboniface@free.fr>, 2013-2014,2018-2019,2023-2025\n"
|
|
30
30
|
"Language-Team: French (http://app.transifex.com/openstreetmap/umap/language/fr/)\n"
|
|
@@ -341,7 +341,7 @@ msgstr "Consulter les cartes favorites de %(current_user)s"
|
|
|
341
341
|
msgid "%(current_user)s has no starred maps yet."
|
|
342
342
|
msgstr "%(current_user)s n'a aucune carte favorite."
|
|
343
343
|
|
|
344
|
-
#: templates/base.html:
|
|
344
|
+
#: templates/base.html:16
|
|
345
345
|
msgid ""
|
|
346
346
|
"uMap lets you create maps with OpenStreetMap layers in a minute and embed "
|
|
347
347
|
"them in your site."
|
|
@@ -425,48 +425,54 @@ msgid "Play with the demo"
|
|
|
425
425
|
msgstr "Tester la démo"
|
|
426
426
|
|
|
427
427
|
#: templates/umap/components/alerts/alert.html:17
|
|
428
|
-
#: templates/umap/components/alerts/alert.html:
|
|
429
|
-
#: templates/umap/components/alerts/alert.html:
|
|
428
|
+
#: templates/umap/components/alerts/alert.html:69
|
|
429
|
+
#: templates/umap/components/alerts/alert.html:97
|
|
430
430
|
msgid "Close"
|
|
431
431
|
msgstr "Fermer"
|
|
432
432
|
|
|
433
433
|
#: templates/umap/components/alerts/alert.html:32
|
|
434
434
|
#, python-format
|
|
435
435
|
msgid ""
|
|
436
|
-
"
|
|
437
|
-
"
|
|
438
|
-
"
|
|
439
|
-
msgstr "
|
|
436
|
+
"Oops, I didn't mean it, I want to <a href=\"%(login_url)s\" "
|
|
437
|
+
"class=\"login\">create an account</a> or <a href=\"%(login_url)s\" "
|
|
438
|
+
"class=\"login\">log in</a> (no worry, we'll attach the map to your account)."
|
|
439
|
+
msgstr "Oups, c'est involontaire, je voudrais <a href=\"%(login_url)s\" class=\"login\">créer un compte</a> ou <a href=\"%(login_url)s\" class=\"login\">me connecter</a> (pas de panique, on va lier la carte à votre compte)."
|
|
440
440
|
|
|
441
|
-
#: templates/umap/components/alerts/alert.html:
|
|
441
|
+
#: templates/umap/components/alerts/alert.html:35
|
|
442
|
+
msgid ""
|
|
443
|
+
"Yes, I want to continue editing anonymously, I will save the secret edit "
|
|
444
|
+
"link to be able to edit this map later or on another device"
|
|
445
|
+
msgstr "Oui, je veux continuer à éditer sans être connecté, je vais bien conserver le lien secret d'édition afin de pouvoir modifier ma carte plus tard ou sur un autre appareil."
|
|
446
|
+
|
|
447
|
+
#: templates/umap/components/alerts/alert.html:39
|
|
442
448
|
msgid "Here is your secret link to edit the map, please keep it safe:"
|
|
443
449
|
msgstr "Ceci est le lien d'édition secret, gardez-le en lieu sûr :"
|
|
444
450
|
|
|
445
|
-
#: templates/umap/components/alerts/alert.html:
|
|
451
|
+
#: templates/umap/components/alerts/alert.html:43
|
|
446
452
|
msgid "Copy link"
|
|
447
453
|
msgstr "Copier le lien"
|
|
448
454
|
|
|
449
|
-
#: templates/umap/components/alerts/alert.html:
|
|
455
|
+
#: templates/umap/components/alerts/alert.html:50
|
|
450
456
|
msgid "Enter your email address to receive the secret link:"
|
|
451
457
|
msgstr "Entrez votre courriel pour recevoir le lien secret :"
|
|
452
458
|
|
|
453
|
-
#: templates/umap/components/alerts/alert.html:
|
|
459
|
+
#: templates/umap/components/alerts/alert.html:56
|
|
454
460
|
msgid "Email"
|
|
455
461
|
msgstr "Courriel"
|
|
456
462
|
|
|
457
|
-
#: templates/umap/components/alerts/alert.html:
|
|
463
|
+
#: templates/umap/components/alerts/alert.html:59
|
|
458
464
|
msgid "Send me the link"
|
|
459
465
|
msgstr "Envoyer le lien"
|
|
460
466
|
|
|
461
|
-
#: templates/umap/components/alerts/alert.html:
|
|
467
|
+
#: templates/umap/components/alerts/alert.html:84
|
|
462
468
|
msgid "See their edits in another tab"
|
|
463
469
|
msgstr "Voir leurs changements dans un nouvel onglet"
|
|
464
470
|
|
|
465
|
-
#: templates/umap/components/alerts/alert.html:
|
|
471
|
+
#: templates/umap/components/alerts/alert.html:87
|
|
466
472
|
msgid "Keep your changes and loose theirs"
|
|
467
473
|
msgstr "Garder mes changements et écraser les leurs"
|
|
468
474
|
|
|
469
|
-
#: templates/umap/components/alerts/alert.html:
|
|
475
|
+
#: templates/umap/components/alerts/alert.html:90
|
|
470
476
|
msgid "Keep their changes and loose yours"
|
|
471
477
|
msgstr "Garder leurs changements et écraser les miens"
|
|
472
478
|
|
|
@@ -735,7 +741,7 @@ msgstr "Dernières cartes créées."
|
|
|
735
741
|
msgid "Search maps"
|
|
736
742
|
msgstr "Chercher des cartes"
|
|
737
743
|
|
|
738
|
-
#: templates/umap/search_bar.html:14
|
|
744
|
+
#: templates/umap/search_bar.html:14 templates/umap/user_map_table.html:15
|
|
739
745
|
msgid "Any category"
|
|
740
746
|
msgstr "Toutes catégories"
|
|
741
747
|
|
|
@@ -841,61 +847,61 @@ msgstr "L'équipe «%(name)s» a été supprimée"
|
|
|
841
847
|
msgid "View the map"
|
|
842
848
|
msgstr "Voir la carte"
|
|
843
849
|
|
|
844
|
-
#: views.py:
|
|
850
|
+
#: views.py:872
|
|
845
851
|
msgid "See full screen"
|
|
846
852
|
msgstr "Plein écran"
|
|
847
853
|
|
|
848
|
-
#: views.py:
|
|
854
|
+
#: views.py:1015
|
|
849
855
|
msgid "Map editors updated with success!"
|
|
850
856
|
msgstr "Éditeurs de la carte mis à jour !"
|
|
851
857
|
|
|
852
|
-
#: views.py:
|
|
858
|
+
#: views.py:1051
|
|
853
859
|
#, python-format
|
|
854
860
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
855
861
|
msgstr "Le lien d'édition uMap pour votre carte : %(map_name)s"
|
|
856
862
|
|
|
857
|
-
#: views.py:
|
|
863
|
+
#: views.py:1054
|
|
858
864
|
#, python-format
|
|
859
865
|
msgid "Here is your secret edit link: %(link)s"
|
|
860
866
|
msgstr "Voici votre lien d'édition secret : %(link)s"
|
|
861
867
|
|
|
862
|
-
#: views.py:
|
|
868
|
+
#: views.py:1061
|
|
863
869
|
#, python-format
|
|
864
870
|
msgid "Can't send email to %(email)s"
|
|
865
871
|
msgstr "Impossible d'envoyer un courriel vers %(email)s"
|
|
866
872
|
|
|
867
|
-
#: views.py:
|
|
873
|
+
#: views.py:1064
|
|
868
874
|
#, python-format
|
|
869
875
|
msgid "Email sent to %(email)s"
|
|
870
876
|
msgstr "Courriel envoyé à %(email)s"
|
|
871
877
|
|
|
872
|
-
#: views.py:
|
|
878
|
+
#: views.py:1075
|
|
873
879
|
msgid "Only its owner can delete the map."
|
|
874
880
|
msgstr "Seul le créateur de la carte peut la supprimer."
|
|
875
881
|
|
|
876
|
-
#: views.py:
|
|
882
|
+
#: views.py:1081
|
|
877
883
|
msgid "Map successfully deleted."
|
|
878
884
|
msgstr "La carte a bien été supprimée."
|
|
879
885
|
|
|
880
|
-
#: views.py:
|
|
886
|
+
#: views.py:1107
|
|
881
887
|
#, python-format
|
|
882
888
|
msgid ""
|
|
883
889
|
"Your map has been cloned! If you want to edit this map from another "
|
|
884
890
|
"computer, please use this link: %(anonymous_url)s"
|
|
885
891
|
msgstr "Votre carte a été dupliquée ! Si vous souhaitez la modifier depuis un autre ordinateur, veuillez utiliser ce lien : %(anonymous_url)s"
|
|
886
892
|
|
|
887
|
-
#: views.py:
|
|
893
|
+
#: views.py:1112
|
|
888
894
|
msgid "Congratulations, your map has been cloned!"
|
|
889
895
|
msgstr "Votre carte a été dupliquée !"
|
|
890
896
|
|
|
891
|
-
#: views.py:
|
|
897
|
+
#: views.py:1366
|
|
892
898
|
msgid "Layer successfully deleted."
|
|
893
899
|
msgstr "Calque supprimé."
|
|
894
900
|
|
|
895
|
-
#: views.py:
|
|
901
|
+
#: views.py:1388
|
|
896
902
|
msgid "Permissions updated with success!"
|
|
897
903
|
msgstr "Les permissions ont bien été modifiées !"
|
|
898
904
|
|
|
899
|
-
#: views.py:
|
|
905
|
+
#: views.py:1405
|
|
900
906
|
msgid "Generic"
|
|
901
907
|
msgstr "Générique"
|
|
Binary file
|
|
@@ -13,7 +13,7 @@ msgid ""
|
|
|
13
13
|
msgstr ""
|
|
14
14
|
"Project-Id-Version: uMap\n"
|
|
15
15
|
"Report-Msgid-Bugs-To: \n"
|
|
16
|
-
"POT-Creation-Date: 2025-
|
|
16
|
+
"POT-Creation-Date: 2025-10-14 15:28+0000\n"
|
|
17
17
|
"PO-Revision-Date: 2013-11-22 14:00+0000\n"
|
|
18
18
|
"Last-Translator: Miguel Anxo Bouzada <mbouzada@gmail.com>, 2025\n"
|
|
19
19
|
"Language-Team: Galician (http://app.transifex.com/openstreetmap/umap/language/gl/)\n"
|
|
@@ -330,7 +330,7 @@ msgstr "Consultar os mapas favoritos de %(current_user)s"
|
|
|
330
330
|
msgid "%(current_user)s has no starred maps yet."
|
|
331
331
|
msgstr "%(current_user)s aínda non ten mapas destacados con estrela."
|
|
332
332
|
|
|
333
|
-
#: templates/base.html:
|
|
333
|
+
#: templates/base.html:16
|
|
334
334
|
msgid ""
|
|
335
335
|
"uMap lets you create maps with OpenStreetMap layers in a minute and embed "
|
|
336
336
|
"them in your site."
|
|
@@ -414,48 +414,54 @@ msgid "Play with the demo"
|
|
|
414
414
|
msgstr "Xogar ca versión de proba"
|
|
415
415
|
|
|
416
416
|
#: templates/umap/components/alerts/alert.html:17
|
|
417
|
-
#: templates/umap/components/alerts/alert.html:
|
|
418
|
-
#: templates/umap/components/alerts/alert.html:
|
|
417
|
+
#: templates/umap/components/alerts/alert.html:69
|
|
418
|
+
#: templates/umap/components/alerts/alert.html:97
|
|
419
419
|
msgid "Close"
|
|
420
420
|
msgstr "Pechar"
|
|
421
421
|
|
|
422
422
|
#: templates/umap/components/alerts/alert.html:32
|
|
423
423
|
#, python-format
|
|
424
424
|
msgid ""
|
|
425
|
-
"
|
|
426
|
-
"
|
|
427
|
-
"
|
|
428
|
-
msgstr "
|
|
425
|
+
"Oops, I didn't mean it, I want to <a href=\"%(login_url)s\" "
|
|
426
|
+
"class=\"login\">create an account</a> or <a href=\"%(login_url)s\" "
|
|
427
|
+
"class=\"login\">log in</a> (no worry, we'll attach the map to your account)."
|
|
428
|
+
msgstr ""
|
|
429
429
|
|
|
430
|
-
#: templates/umap/components/alerts/alert.html:
|
|
430
|
+
#: templates/umap/components/alerts/alert.html:35
|
|
431
|
+
msgid ""
|
|
432
|
+
"Yes, I want to continue editing anonymously, I will save the secret edit "
|
|
433
|
+
"link to be able to edit this map later or on another device"
|
|
434
|
+
msgstr ""
|
|
435
|
+
|
|
436
|
+
#: templates/umap/components/alerts/alert.html:39
|
|
431
437
|
msgid "Here is your secret link to edit the map, please keep it safe:"
|
|
432
438
|
msgstr "Aquí tes a túa ligazón secreta para editar o mapa, gárdeo a seguro:"
|
|
433
439
|
|
|
434
|
-
#: templates/umap/components/alerts/alert.html:
|
|
440
|
+
#: templates/umap/components/alerts/alert.html:43
|
|
435
441
|
msgid "Copy link"
|
|
436
442
|
msgstr "Copiar a ligazón"
|
|
437
443
|
|
|
438
|
-
#: templates/umap/components/alerts/alert.html:
|
|
444
|
+
#: templates/umap/components/alerts/alert.html:50
|
|
439
445
|
msgid "Enter your email address to receive the secret link:"
|
|
440
446
|
msgstr "Introduce o teu enderezo de correo para recibir a ligazón secreta:"
|
|
441
447
|
|
|
442
|
-
#: templates/umap/components/alerts/alert.html:
|
|
448
|
+
#: templates/umap/components/alerts/alert.html:56
|
|
443
449
|
msgid "Email"
|
|
444
450
|
msgstr "Correo"
|
|
445
451
|
|
|
446
|
-
#: templates/umap/components/alerts/alert.html:
|
|
452
|
+
#: templates/umap/components/alerts/alert.html:59
|
|
447
453
|
msgid "Send me the link"
|
|
448
454
|
msgstr "Enviádeme a ligazón"
|
|
449
455
|
|
|
450
|
-
#: templates/umap/components/alerts/alert.html:
|
|
456
|
+
#: templates/umap/components/alerts/alert.html:84
|
|
451
457
|
msgid "See their edits in another tab"
|
|
452
458
|
msgstr "Consulta as súas edicións noutra lapela"
|
|
453
459
|
|
|
454
|
-
#: templates/umap/components/alerts/alert.html:
|
|
460
|
+
#: templates/umap/components/alerts/alert.html:87
|
|
455
461
|
msgid "Keep your changes and loose theirs"
|
|
456
462
|
msgstr "Conserva os teus cambios e deixa os seus"
|
|
457
463
|
|
|
458
|
-
#: templates/umap/components/alerts/alert.html:
|
|
464
|
+
#: templates/umap/components/alerts/alert.html:90
|
|
459
465
|
msgid "Keep their changes and loose yours"
|
|
460
466
|
msgstr "Conserva os seus cambios e deixa os teus"
|
|
461
467
|
|
|
@@ -536,7 +542,7 @@ msgstr "Iniciaches a sesión. Estase a continuar..."
|
|
|
536
542
|
msgid "template"
|
|
537
543
|
msgstr ""
|
|
538
544
|
|
|
539
|
-
#: templates/umap/map_list.html:18 views.py:
|
|
545
|
+
#: templates/umap/map_list.html:18 views.py:459
|
|
540
546
|
msgid "by"
|
|
541
547
|
msgstr "por"
|
|
542
548
|
|
|
@@ -723,7 +729,7 @@ msgstr "Últimos mapas creados"
|
|
|
723
729
|
msgid "Search maps"
|
|
724
730
|
msgstr "Buscar mapas"
|
|
725
731
|
|
|
726
|
-
#: templates/umap/search_bar.html:14
|
|
732
|
+
#: templates/umap/search_bar.html:14 templates/umap/user_map_table.html:15
|
|
727
733
|
msgid "Any category"
|
|
728
734
|
msgstr ""
|
|
729
735
|
|
|
@@ -816,70 +822,74 @@ msgstr ""
|
|
|
816
822
|
msgid "No template found."
|
|
817
823
|
msgstr ""
|
|
818
824
|
|
|
819
|
-
#: views.py:
|
|
825
|
+
#: views.py:235
|
|
820
826
|
msgid "Cannot delete a team with more than one member"
|
|
821
827
|
msgstr "Non é posíbel eliminar un equipo con máis dun membro"
|
|
822
828
|
|
|
823
|
-
#: views.py:
|
|
829
|
+
#: views.py:239
|
|
824
830
|
#, python-format
|
|
825
831
|
msgid "Team “%(name)s” has been deleted"
|
|
826
832
|
msgstr "Foi eliminado o equipo %(name)s"
|
|
827
833
|
|
|
828
|
-
#: views.py:
|
|
834
|
+
#: views.py:464
|
|
829
835
|
msgid "View the map"
|
|
830
836
|
msgstr "Ver o mapa"
|
|
831
837
|
|
|
832
|
-
#: views.py:
|
|
838
|
+
#: views.py:872
|
|
833
839
|
msgid "See full screen"
|
|
834
840
|
msgstr "Ver a pantalla completa"
|
|
835
841
|
|
|
836
|
-
#: views.py:
|
|
842
|
+
#: views.py:1015
|
|
837
843
|
msgid "Map editors updated with success!"
|
|
838
844
|
msgstr "O editores do mapa foron actualizados correctamente!"
|
|
839
845
|
|
|
840
|
-
#: views.py:
|
|
846
|
+
#: views.py:1051
|
|
841
847
|
#, python-format
|
|
842
848
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
843
849
|
msgstr "A ligazón de edición de uMap para o teu mapa: %(map_name)s"
|
|
844
850
|
|
|
845
|
-
#: views.py:
|
|
851
|
+
#: views.py:1054
|
|
846
852
|
#, python-format
|
|
847
853
|
msgid "Here is your secret edit link: %(link)s"
|
|
848
854
|
msgstr "Aquí tes a túa ligazón secret de edicióna: %(link)s"
|
|
849
855
|
|
|
850
|
-
#: views.py:
|
|
856
|
+
#: views.py:1061
|
|
851
857
|
#, python-format
|
|
852
858
|
msgid "Can't send email to %(email)s"
|
|
853
859
|
msgstr "Non é posíbel enviar o correo a %(email)s"
|
|
854
860
|
|
|
855
|
-
#: views.py:
|
|
861
|
+
#: views.py:1064
|
|
856
862
|
#, python-format
|
|
857
863
|
msgid "Email sent to %(email)s"
|
|
858
864
|
msgstr "Correo enviado a %(email)s"
|
|
859
865
|
|
|
860
|
-
#: views.py:
|
|
866
|
+
#: views.py:1075
|
|
861
867
|
msgid "Only its owner can delete the map."
|
|
862
868
|
msgstr "Só o seu dono pode eliminar o mapa."
|
|
863
869
|
|
|
864
|
-
#: views.py:
|
|
870
|
+
#: views.py:1081
|
|
865
871
|
msgid "Map successfully deleted."
|
|
866
872
|
msgstr "O mapa foi eliminado correctamente."
|
|
867
873
|
|
|
868
|
-
#: views.py:
|
|
874
|
+
#: views.py:1107
|
|
869
875
|
#, python-format
|
|
870
876
|
msgid ""
|
|
871
877
|
"Your map has been cloned! If you want to edit this map from another "
|
|
872
878
|
"computer, please use this link: %(anonymous_url)s"
|
|
873
879
|
msgstr "O teu mapa foi clonado! Se queres editar este mapa desde outro computador, emprega esta ligazón: %(anonymous_url)s"
|
|
874
880
|
|
|
875
|
-
#: views.py:
|
|
881
|
+
#: views.py:1112
|
|
876
882
|
msgid "Congratulations, your map has been cloned!"
|
|
877
883
|
msgstr "Parabéns! O teu mapa foi clonado!"
|
|
878
884
|
|
|
879
|
-
#: views.py:
|
|
885
|
+
#: views.py:1366
|
|
880
886
|
msgid "Layer successfully deleted."
|
|
881
887
|
msgstr "A capa foi eliminada correctamente."
|
|
882
888
|
|
|
883
|
-
#: views.py:
|
|
889
|
+
#: views.py:1388
|
|
884
890
|
msgid "Permissions updated with success!"
|
|
885
891
|
msgstr "Os permisos foron actualizados correctamente!"
|
|
892
|
+
|
|
893
|
+
#: views.py:1405
|
|
894
|
+
msgid "Generic"
|
|
895
|
+
msgstr ""
|
|
Binary file
|