umap-project 2.5.0__py3-none-any.whl → 2.6.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.
Potentially problematic release.
This version of umap-project might be problematic. Click here for more details.
- umap/__init__.py +1 -1
- umap/admin.py +6 -1
- umap/context_processors.py +2 -1
- umap/decorators.py +13 -2
- umap/forms.py +26 -2
- umap/locale/br/LC_MESSAGES/django.mo +0 -0
- umap/locale/br/LC_MESSAGES/django.po +252 -146
- umap/locale/ca/LC_MESSAGES/django.mo +0 -0
- umap/locale/ca/LC_MESSAGES/django.po +274 -162
- umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- umap/locale/cs_CZ/LC_MESSAGES/django.po +261 -150
- umap/locale/de/LC_MESSAGES/django.mo +0 -0
- umap/locale/de/LC_MESSAGES/django.po +299 -187
- umap/locale/el/LC_MESSAGES/django.mo +0 -0
- umap/locale/el/LC_MESSAGES/django.po +215 -159
- umap/locale/en/LC_MESSAGES/django.po +211 -155
- umap/locale/es/LC_MESSAGES/django.mo +0 -0
- umap/locale/es/LC_MESSAGES/django.po +255 -144
- umap/locale/eu/LC_MESSAGES/django.mo +0 -0
- umap/locale/eu/LC_MESSAGES/django.po +254 -198
- umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
- umap/locale/fa_IR/LC_MESSAGES/django.po +347 -235
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +216 -160
- umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- umap/locale/hu/LC_MESSAGES/django.po +215 -159
- umap/locale/it/LC_MESSAGES/django.mo +0 -0
- umap/locale/it/LC_MESSAGES/django.po +252 -146
- umap/locale/ms/LC_MESSAGES/django.mo +0 -0
- umap/locale/ms/LC_MESSAGES/django.po +252 -146
- umap/locale/pl/LC_MESSAGES/django.mo +0 -0
- umap/locale/pl/LC_MESSAGES/django.po +254 -148
- umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- umap/locale/pt/LC_MESSAGES/django.po +215 -159
- umap/locale/sv/LC_MESSAGES/django.mo +0 -0
- umap/locale/sv/LC_MESSAGES/django.po +254 -143
- umap/locale/th_TH/LC_MESSAGES/django.mo +0 -0
- umap/locale/th_TH/LC_MESSAGES/django.po +125 -70
- umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
- umap/locale/zh_TW/LC_MESSAGES/django.po +256 -145
- umap/migrations/0022_add_team.py +94 -0
- umap/models.py +45 -10
- umap/settings/__init__.py +2 -0
- umap/settings/base.py +9 -2
- umap/static/umap/base.css +32 -41
- umap/static/umap/content.css +19 -25
- umap/static/umap/css/icon.css +63 -37
- umap/static/umap/css/importers.css +1 -1
- umap/static/umap/css/slideshow.css +7 -5
- umap/static/umap/css/tableeditor.css +4 -3
- umap/static/umap/img/16-white.svg +1 -4
- umap/static/umap/img/16.svg +2 -6
- umap/static/umap/img/24-white.svg +4 -4
- umap/static/umap/img/24.svg +6 -6
- umap/static/umap/img/source/16-white.svg +2 -5
- umap/static/umap/img/source/16.svg +3 -7
- umap/static/umap/img/source/24-white.svg +7 -14
- umap/static/umap/img/source/24.svg +10 -17
- umap/static/umap/js/components/alerts/alert.css +20 -8
- umap/static/umap/js/modules/autocomplete.js +8 -12
- umap/static/umap/js/modules/browser.js +4 -3
- umap/static/umap/js/modules/caption.js +9 -11
- umap/static/umap/js/modules/data/features.js +993 -0
- umap/static/umap/js/modules/data/layer.js +1210 -0
- umap/static/umap/js/modules/formatter.js +12 -3
- umap/static/umap/js/modules/global.js +21 -5
- umap/static/umap/js/modules/importers/overpass.js +22 -8
- umap/static/umap/js/modules/permissions.js +280 -0
- umap/static/umap/js/{umap.icon.js → modules/rendering/icon.js} +77 -56
- umap/static/umap/js/modules/rendering/layers/base.js +105 -0
- umap/static/umap/js/modules/rendering/layers/classified.js +484 -0
- umap/static/umap/js/modules/rendering/layers/cluster.js +103 -0
- umap/static/umap/js/modules/rendering/layers/heat.js +182 -0
- umap/static/umap/js/modules/rendering/popup.js +99 -0
- umap/static/umap/js/modules/rendering/template.js +217 -0
- umap/static/umap/js/modules/rendering/ui.js +610 -0
- umap/static/umap/js/modules/rules.js +16 -3
- umap/static/umap/js/modules/schema.js +25 -1
- umap/static/umap/js/modules/share.js +66 -45
- umap/static/umap/js/modules/sync/updaters.js +9 -10
- umap/static/umap/js/modules/tableeditor.js +7 -7
- umap/static/umap/js/modules/ui/dialog.js +8 -4
- umap/static/umap/js/modules/utils.js +22 -13
- umap/static/umap/js/umap.controls.js +80 -146
- umap/static/umap/js/umap.core.js +9 -9
- umap/static/umap/js/umap.forms.js +41 -17
- umap/static/umap/js/umap.js +72 -65
- umap/static/umap/locale/am_ET.js +8 -2
- umap/static/umap/locale/am_ET.json +8 -2
- umap/static/umap/locale/ar.js +8 -2
- umap/static/umap/locale/ar.json +8 -2
- umap/static/umap/locale/ast.js +8 -2
- umap/static/umap/locale/ast.json +8 -2
- umap/static/umap/locale/bg.js +8 -2
- umap/static/umap/locale/bg.json +8 -2
- umap/static/umap/locale/br.js +42 -36
- umap/static/umap/locale/br.json +42 -36
- umap/static/umap/locale/ca.js +67 -61
- umap/static/umap/locale/ca.json +67 -61
- umap/static/umap/locale/cs_CZ.js +8 -2
- umap/static/umap/locale/cs_CZ.json +8 -2
- umap/static/umap/locale/da.js +8 -2
- umap/static/umap/locale/da.json +8 -2
- umap/static/umap/locale/de.js +143 -137
- umap/static/umap/locale/de.json +143 -137
- umap/static/umap/locale/el.js +54 -48
- umap/static/umap/locale/el.json +54 -48
- umap/static/umap/locale/en.js +10 -2
- umap/static/umap/locale/en.json +10 -2
- umap/static/umap/locale/en_US.json +8 -2
- umap/static/umap/locale/es.js +8 -2
- umap/static/umap/locale/es.json +8 -2
- umap/static/umap/locale/et.js +8 -2
- umap/static/umap/locale/et.json +8 -2
- umap/static/umap/locale/eu.js +346 -338
- umap/static/umap/locale/eu.json +346 -338
- umap/static/umap/locale/fa_IR.js +415 -407
- umap/static/umap/locale/fa_IR.json +415 -407
- umap/static/umap/locale/fi.js +8 -2
- umap/static/umap/locale/fi.json +8 -2
- umap/static/umap/locale/fr.js +11 -3
- umap/static/umap/locale/fr.json +11 -3
- umap/static/umap/locale/gl.js +8 -2
- umap/static/umap/locale/gl.json +8 -2
- umap/static/umap/locale/he.js +8 -2
- umap/static/umap/locale/he.json +8 -2
- umap/static/umap/locale/hr.js +8 -2
- umap/static/umap/locale/hr.json +8 -2
- umap/static/umap/locale/hu.js +31 -23
- umap/static/umap/locale/hu.json +31 -23
- umap/static/umap/locale/id.js +8 -2
- umap/static/umap/locale/id.json +8 -2
- umap/static/umap/locale/is.js +8 -2
- umap/static/umap/locale/is.json +8 -2
- umap/static/umap/locale/it.js +8 -2
- umap/static/umap/locale/it.json +8 -2
- umap/static/umap/locale/ja.js +8 -2
- umap/static/umap/locale/ja.json +8 -2
- umap/static/umap/locale/ko.js +8 -2
- umap/static/umap/locale/ko.json +8 -2
- umap/static/umap/locale/lt.js +8 -2
- umap/static/umap/locale/lt.json +8 -2
- umap/static/umap/locale/ms.js +8 -2
- umap/static/umap/locale/ms.json +8 -2
- umap/static/umap/locale/nl.js +8 -2
- umap/static/umap/locale/nl.json +8 -2
- umap/static/umap/locale/no.js +8 -2
- umap/static/umap/locale/no.json +8 -2
- umap/static/umap/locale/pl.js +54 -48
- umap/static/umap/locale/pl.json +54 -48
- umap/static/umap/locale/pl_PL.json +8 -2
- umap/static/umap/locale/pt.js +24 -18
- umap/static/umap/locale/pt.json +24 -18
- umap/static/umap/locale/pt_BR.js +8 -2
- umap/static/umap/locale/pt_BR.json +8 -2
- umap/static/umap/locale/pt_PT.js +214 -208
- umap/static/umap/locale/pt_PT.json +214 -208
- umap/static/umap/locale/ro.js +8 -2
- umap/static/umap/locale/ro.json +8 -2
- umap/static/umap/locale/ru.js +8 -2
- umap/static/umap/locale/ru.json +8 -2
- umap/static/umap/locale/sk_SK.js +8 -2
- umap/static/umap/locale/sk_SK.json +8 -2
- umap/static/umap/locale/sl.js +8 -2
- umap/static/umap/locale/sl.json +8 -2
- umap/static/umap/locale/sr.js +8 -2
- umap/static/umap/locale/sr.json +8 -2
- umap/static/umap/locale/sv.js +8 -2
- umap/static/umap/locale/sv.json +8 -2
- umap/static/umap/locale/th_TH.js +33 -27
- umap/static/umap/locale/th_TH.json +33 -27
- umap/static/umap/locale/tr.js +8 -2
- umap/static/umap/locale/tr.json +8 -2
- umap/static/umap/locale/uk_UA.js +8 -2
- umap/static/umap/locale/uk_UA.json +8 -2
- umap/static/umap/locale/vi.js +8 -2
- umap/static/umap/locale/vi.json +8 -2
- umap/static/umap/locale/vi_VN.json +8 -2
- umap/static/umap/locale/zh.js +8 -2
- umap/static/umap/locale/zh.json +8 -2
- umap/static/umap/locale/zh_CN.json +8 -2
- umap/static/umap/locale/zh_TW.Big5.json +8 -2
- umap/static/umap/locale/zh_TW.js +102 -96
- umap/static/umap/locale/zh_TW.json +102 -96
- umap/static/umap/map.css +111 -108
- umap/static/umap/nav.css +19 -10
- umap/static/umap/unittests/utils.js +230 -107
- umap/static/umap/vars.css +1 -0
- umap/static/umap/vendors/csv2geojson/csv2geojson.js +62 -40
- umap/static/umap/vendors/editable/Leaflet.Editable.js +2079 -1937
- umap/storage.py +4 -3
- umap/templates/404.html +5 -1
- umap/templates/500.html +3 -1
- umap/templates/auth/user_detail.html +8 -2
- umap/templates/auth/user_form.html +19 -10
- umap/templates/auth/user_stars.html +8 -2
- umap/templates/base.html +1 -0
- umap/templates/registration/login.html +18 -3
- umap/templates/umap/about.html +1 -0
- umap/templates/umap/about_summary.html +22 -7
- umap/templates/umap/components/alerts/alert.html +42 -21
- umap/templates/umap/content.html +2 -0
- umap/templates/umap/content_footer.html +7 -3
- umap/templates/umap/css.html +1 -0
- umap/templates/umap/dashboard_menu.html +15 -0
- umap/templates/umap/home.html +14 -4
- umap/templates/umap/js.html +4 -9
- umap/templates/umap/login_popup_end.html +10 -4
- umap/templates/umap/map_detail.html +8 -2
- umap/templates/umap/map_fragment.html +3 -1
- umap/templates/umap/map_init.html +2 -1
- umap/templates/umap/map_list.html +6 -3
- umap/templates/umap/map_table.html +36 -12
- umap/templates/umap/messages.html +0 -1
- umap/templates/umap/navigation.html +2 -1
- umap/templates/umap/password_change.html +5 -1
- umap/templates/umap/password_change_done.html +8 -2
- umap/templates/umap/search.html +8 -2
- umap/templates/umap/search_bar.html +1 -0
- umap/templates/umap/team_confirm_delete.html +19 -0
- umap/templates/umap/team_detail.html +27 -0
- umap/templates/umap/team_form.html +60 -0
- umap/templates/umap/user_dashboard.html +7 -9
- umap/templates/umap/user_teams.html +51 -0
- umap/tests/base.py +8 -1
- umap/tests/conftest.py +6 -0
- umap/tests/fixtures/test_circles_layer.geojson +219 -0
- umap/tests/fixtures/test_upload_georss.xml +20 -0
- umap/tests/integration/conftest.py +18 -4
- umap/tests/integration/helpers.py +12 -0
- umap/tests/integration/test_anonymous_owned_map.py +23 -0
- umap/tests/integration/test_basics.py +29 -0
- umap/tests/integration/test_browser.py +20 -0
- umap/tests/integration/test_caption.py +20 -0
- umap/tests/integration/test_circles_layer.py +69 -0
- umap/tests/integration/test_conditional_rules.py +102 -17
- umap/tests/integration/test_draw_polygon.py +138 -13
- umap/tests/integration/test_draw_polyline.py +8 -18
- umap/tests/integration/test_edit_datalayer.py +3 -3
- umap/tests/integration/test_import.py +124 -5
- umap/tests/integration/test_owned_map.py +21 -13
- umap/tests/integration/test_querystring.py +7 -0
- umap/tests/integration/test_team.py +47 -0
- umap/tests/integration/test_tilelayer.py +19 -2
- umap/tests/integration/test_view_marker.py +28 -1
- umap/tests/integration/test_websocket_sync.py +5 -5
- umap/tests/test_datalayer.py +32 -7
- umap/tests/test_datalayer_views.py +1 -1
- umap/tests/test_map.py +30 -4
- umap/tests/test_map_views.py +2 -2
- umap/tests/test_statics.py +40 -0
- umap/tests/test_team_views.py +131 -0
- umap/tests/test_views.py +15 -1
- umap/urls.py +23 -13
- umap/views.py +116 -10
- {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/METADATA +14 -14
- {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/RECORD +260 -253
- umap/static/umap/js/umap.datalayer.permissions.js +0 -70
- umap/static/umap/js/umap.features.js +0 -1290
- umap/static/umap/js/umap.layer.js +0 -1837
- umap/static/umap/js/umap.permissions.js +0 -208
- umap/static/umap/js/umap.popup.js +0 -341
- umap/static/umap/test/TableEditor.js +0 -104
- umap/static/umap/vendors/leaflet/leaflet-src.js +0 -14512
- umap/static/umap/vendors/leaflet/leaflet-src.js.map +0 -1
- umap/static/umap/vendors/leaflet/leaflet.js +0 -6
- umap/static/umap/vendors/leaflet/leaflet.js.map +0 -1
- umap/static/umap/vendors/markercluster/WhereAreTheJavascriptFiles.txt +0 -5
- umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js +0 -2718
- umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js.map +0 -1
- umap/static/umap/vendors/toolbar/leaflet.toolbar-src.css +0 -117
- umap/static/umap/vendors/toolbar/leaflet.toolbar-src.js +0 -365
- umap/tests/integration/test_statics.py +0 -47
- {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/WHEEL +0 -0
- {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/entry_points.txt +0 -0
- {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
#
|
|
5
5
|
# Translators:
|
|
6
6
|
# Goudarz Jafari <goudarz.jafari@gmail.com>, 2020
|
|
7
|
+
# imni <iriman@chmail.ir>, 2024
|
|
7
8
|
# *Sociologist Abedi*, 2021,2023
|
|
8
9
|
# *Sociologist Abedi*, 2023
|
|
9
10
|
# *Sociologist Abedi*, 2021
|
|
@@ -11,9 +12,9 @@ msgid ""
|
|
|
11
12
|
msgstr ""
|
|
12
13
|
"Project-Id-Version: uMap\n"
|
|
13
14
|
"Report-Msgid-Bugs-To: \n"
|
|
14
|
-
"POT-Creation-Date: 2024-
|
|
15
|
+
"POT-Creation-Date: 2024-09-04 14:02+0000\n"
|
|
15
16
|
"PO-Revision-Date: 2013-11-22 14:00+0000\n"
|
|
16
|
-
"Last-Translator:
|
|
17
|
+
"Last-Translator: imni <iriman@chmail.ir>, 2024\n"
|
|
17
18
|
"Language-Team: Persian (Iran) (http://app.transifex.com/openstreetmap/umap/language/fa_IR/)\n"
|
|
18
19
|
"MIME-Version: 1.0\n"
|
|
19
20
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
@@ -23,528 +24,639 @@ msgstr ""
|
|
|
23
24
|
|
|
24
25
|
#: forms.py:44 forms.py:70
|
|
25
26
|
msgid "Only editable with secret edit link"
|
|
26
|
-
msgstr "فقط با
|
|
27
|
+
msgstr "فقط با پیوند محرمانهٔ ویرایش، ویرایش میشود"
|
|
27
28
|
|
|
28
29
|
#: forms.py:45 forms.py:71
|
|
29
30
|
msgid "Everyone can edit"
|
|
30
31
|
msgstr "همه میتوانند ویرایش کنند"
|
|
31
32
|
|
|
32
|
-
#: forms.py:69 models.py:
|
|
33
|
+
#: forms.py:69 models.py:423
|
|
33
34
|
msgid "Inherit"
|
|
34
|
-
msgstr ""
|
|
35
|
+
msgstr "ارثبردن"
|
|
35
36
|
|
|
36
37
|
#: middleware.py:13
|
|
37
38
|
msgid "Site is readonly for maintenance"
|
|
38
|
-
msgstr "سایت
|
|
39
|
+
msgstr "سایت برای امور نگهداری در حالت فقطخواندنی قرار دارد"
|
|
39
40
|
|
|
40
|
-
#: models.py:
|
|
41
|
+
#: models.py:54 models.py:73
|
|
41
42
|
msgid "name"
|
|
42
43
|
msgstr "نام"
|
|
43
44
|
|
|
44
|
-
#: models.py:
|
|
45
|
+
#: models.py:56 models.py:433
|
|
46
|
+
msgid "description"
|
|
47
|
+
msgstr "توضیحات"
|
|
48
|
+
|
|
49
|
+
#: models.py:104
|
|
45
50
|
msgid "details"
|
|
46
51
|
msgstr "جزئیات"
|
|
47
52
|
|
|
48
|
-
#: models.py:
|
|
53
|
+
#: models.py:105
|
|
49
54
|
msgid "Link to a page where the licence is detailed."
|
|
50
|
-
msgstr "
|
|
55
|
+
msgstr "پیوند به صفحهای که شرح مجوز در آن آمده است."
|
|
51
56
|
|
|
52
|
-
#: models.py:
|
|
57
|
+
#: models.py:115
|
|
53
58
|
msgid "URL template using OSM tile format"
|
|
54
|
-
msgstr "
|
|
59
|
+
msgstr "الگوی نشانی اینترنتی با توجه به قالب کاشی OSM"
|
|
55
60
|
|
|
56
|
-
#: models.py:
|
|
61
|
+
#: models.py:121
|
|
57
62
|
msgid "Order of the tilelayers in the edit box"
|
|
58
|
-
msgstr "ترتیب
|
|
63
|
+
msgstr "ترتیب لایههای کاشی در جعبهٔ ویرایش"
|
|
59
64
|
|
|
60
|
-
#: models.py:
|
|
65
|
+
#: models.py:167 models.py:424
|
|
61
66
|
msgid "Everyone"
|
|
62
|
-
msgstr ""
|
|
67
|
+
msgstr "همه"
|
|
63
68
|
|
|
64
|
-
#: models.py:
|
|
65
|
-
msgid "Editors only"
|
|
69
|
+
#: models.py:168 models.py:174 models.py:425
|
|
70
|
+
msgid "Editors and team only"
|
|
66
71
|
msgstr ""
|
|
67
72
|
|
|
68
|
-
#: models.py:
|
|
73
|
+
#: models.py:169 models.py:426
|
|
69
74
|
msgid "Owner only"
|
|
70
|
-
msgstr ""
|
|
75
|
+
msgstr "فقط مالک"
|
|
71
76
|
|
|
72
|
-
#: models.py:
|
|
77
|
+
#: models.py:172
|
|
73
78
|
msgid "Everyone (public)"
|
|
74
|
-
msgstr ""
|
|
79
|
+
msgstr "همه (عمومی)"
|
|
75
80
|
|
|
76
|
-
#: models.py:
|
|
81
|
+
#: models.py:173
|
|
77
82
|
msgid "Anyone with link"
|
|
78
|
-
msgstr ""
|
|
83
|
+
msgstr "هر کسی با پیوند"
|
|
79
84
|
|
|
80
|
-
#: models.py:
|
|
85
|
+
#: models.py:175
|
|
81
86
|
msgid "Blocked"
|
|
82
87
|
msgstr ""
|
|
83
88
|
|
|
84
|
-
#: models.py:
|
|
85
|
-
msgid "description"
|
|
86
|
-
msgstr "توضیحات"
|
|
87
|
-
|
|
88
|
-
#: models.py:156
|
|
89
|
+
#: models.py:178
|
|
89
90
|
msgid "center"
|
|
90
91
|
msgstr "مرکز"
|
|
91
92
|
|
|
92
|
-
#: models.py:
|
|
93
|
+
#: models.py:179
|
|
93
94
|
msgid "zoom"
|
|
94
|
-
msgstr "
|
|
95
|
+
msgstr "زوم"
|
|
95
96
|
|
|
96
|
-
#: models.py:
|
|
97
|
+
#: models.py:181
|
|
97
98
|
msgid "locate"
|
|
98
|
-
msgstr "
|
|
99
|
+
msgstr "مکانیابی"
|
|
99
100
|
|
|
100
|
-
#: models.py:
|
|
101
|
+
#: models.py:181
|
|
101
102
|
msgid "Locate user on load?"
|
|
102
|
-
msgstr "کاربر
|
|
103
|
+
msgstr "کاربر هنگام بارشدن مکانیابی شود؟"
|
|
103
104
|
|
|
104
|
-
#: models.py:
|
|
105
|
+
#: models.py:185
|
|
105
106
|
msgid "Choose the map licence."
|
|
106
107
|
msgstr "مجوز نقشه را انتخاب کنید."
|
|
107
108
|
|
|
108
|
-
#: models.py:
|
|
109
|
+
#: models.py:186
|
|
109
110
|
msgid "licence"
|
|
110
111
|
msgstr "مجوز"
|
|
111
112
|
|
|
112
|
-
#: models.py:
|
|
113
|
+
#: models.py:197
|
|
113
114
|
msgid "owner"
|
|
114
115
|
msgstr "مالک"
|
|
115
116
|
|
|
116
|
-
#: models.py:
|
|
117
|
+
#: models.py:201
|
|
117
118
|
msgid "editors"
|
|
118
|
-
msgstr "
|
|
119
|
+
msgstr "ویرایشگران"
|
|
120
|
+
|
|
121
|
+
#: models.py:207
|
|
122
|
+
msgid "team"
|
|
123
|
+
msgstr ""
|
|
119
124
|
|
|
120
|
-
#: models.py:
|
|
125
|
+
#: models.py:213 models.py:447
|
|
121
126
|
msgid "edit status"
|
|
122
127
|
msgstr "ویرایش وضعیت"
|
|
123
128
|
|
|
124
|
-
#: models.py:
|
|
129
|
+
#: models.py:218
|
|
125
130
|
msgid "share status"
|
|
126
|
-
msgstr "وضعیت
|
|
131
|
+
msgstr "وضعیت همرسانی"
|
|
127
132
|
|
|
128
|
-
#: models.py:
|
|
133
|
+
#: models.py:221 models.py:442
|
|
129
134
|
msgid "settings"
|
|
130
135
|
msgstr "تنظیمات"
|
|
131
136
|
|
|
132
|
-
#: models.py:
|
|
137
|
+
#: models.py:364
|
|
133
138
|
msgid "Clone of"
|
|
134
|
-
msgstr "
|
|
139
|
+
msgstr "همانندسازیشده از"
|
|
135
140
|
|
|
136
|
-
#: models.py:
|
|
141
|
+
#: models.py:437
|
|
137
142
|
msgid "display on load"
|
|
138
|
-
msgstr "نمایش
|
|
143
|
+
msgstr "نمایش هنگام بارشدن"
|
|
139
144
|
|
|
140
|
-
#: models.py:
|
|
145
|
+
#: models.py:438
|
|
141
146
|
msgid "Display this layer on load."
|
|
142
|
-
msgstr "این لایه
|
|
147
|
+
msgstr "این لایه هنگام بارشدن نمایش داده شود."
|
|
143
148
|
|
|
144
|
-
#: templates/404.html:
|
|
149
|
+
#: templates/404.html:8
|
|
145
150
|
msgid "Take me to the home page"
|
|
146
|
-
msgstr "مرا به صفحه اصلی
|
|
151
|
+
msgstr "مرا به صفحه اصلی ببر"
|
|
147
152
|
|
|
148
|
-
#: templates/auth/user_detail.html:
|
|
153
|
+
#: templates/auth/user_detail.html:8
|
|
149
154
|
#, python-format
|
|
150
155
|
msgid "Browse %(current_user)s's maps"
|
|
151
156
|
msgstr "نقشههای %(current_user)s را مرور کنید"
|
|
152
157
|
|
|
153
|
-
#: templates/auth/user_detail.html:
|
|
158
|
+
#: templates/auth/user_detail.html:17
|
|
154
159
|
#, python-format
|
|
155
160
|
msgid "%(current_user)s has no maps."
|
|
156
161
|
msgstr "%(current_user)s هیچ نقشهای ندارد"
|
|
157
162
|
|
|
158
|
-
#: templates/auth/user_form.html:
|
|
159
|
-
msgid "My Maps"
|
|
160
|
-
msgstr ""
|
|
161
|
-
|
|
162
|
-
#: templates/auth/user_form.html:7
|
|
163
|
-
msgid "My Profile"
|
|
164
|
-
msgstr ""
|
|
165
|
-
|
|
166
|
-
#: templates/auth/user_form.html:20
|
|
163
|
+
#: templates/auth/user_form.html:21 templates/umap/team_form.html:21
|
|
167
164
|
msgid "Save"
|
|
168
|
-
msgstr ""
|
|
165
|
+
msgstr "ذخیره"
|
|
169
166
|
|
|
170
|
-
#: templates/auth/user_form.html:
|
|
167
|
+
#: templates/auth/user_form.html:27
|
|
171
168
|
msgid "Your current providers"
|
|
172
|
-
msgstr ""
|
|
169
|
+
msgstr "خدماتدهندگان فعلی شما"
|
|
173
170
|
|
|
174
|
-
#: templates/auth/user_form.html:
|
|
171
|
+
#: templates/auth/user_form.html:39
|
|
175
172
|
msgid "Connect to another provider"
|
|
176
|
-
msgstr ""
|
|
173
|
+
msgstr "اتصال به خدماتدهندهٔ دیگر"
|
|
177
174
|
|
|
178
|
-
#: templates/auth/user_form.html:
|
|
175
|
+
#: templates/auth/user_form.html:42
|
|
179
176
|
msgid ""
|
|
180
177
|
"It's a good habit to connect your account to more than one provider, in case"
|
|
181
178
|
" one provider becomes unavailable, temporarily or even permanently."
|
|
182
|
-
msgstr ""
|
|
179
|
+
msgstr "رویهٔ خوبی است اگر حساب کاربری خود را به بیش از یک خدماتدهنده متصل کنید. زیرا ممکن است یکی از خدماتدهندگان بهطور موقت یا دائم از دسترس خارج شود."
|
|
183
180
|
|
|
184
|
-
#: templates/auth/user_stars.html:
|
|
181
|
+
#: templates/auth/user_stars.html:8
|
|
185
182
|
#, python-format
|
|
186
183
|
msgid "Browse %(current_user)s's starred maps"
|
|
187
|
-
msgstr ""
|
|
184
|
+
msgstr "نقشههای ستارهدار %(current_user)s را مرور کنید"
|
|
188
185
|
|
|
189
|
-
#: templates/auth/user_stars.html:
|
|
186
|
+
#: templates/auth/user_stars.html:17
|
|
190
187
|
#, python-format
|
|
191
188
|
msgid "%(current_user)s has no starred maps yet."
|
|
192
|
-
msgstr ""
|
|
189
|
+
msgstr "%(current_user)s هنوز نقشهٔ ستارهداری ندارد."
|
|
193
190
|
|
|
194
|
-
#: templates/base.html:
|
|
191
|
+
#: templates/base.html:13
|
|
195
192
|
msgid ""
|
|
196
193
|
"uMap lets you create maps with OpenStreetMap layers in a minute and embed "
|
|
197
194
|
"them in your site."
|
|
198
|
-
msgstr ""
|
|
195
|
+
msgstr "در uMap میتوانید با لایههای اوپناستریتمپ خیلی سریع یک نقشه بسازید و در وبسایت خود جاسازی کنید."
|
|
199
196
|
|
|
200
|
-
#: templates/registration/login.html:
|
|
197
|
+
#: templates/registration/login.html:6 templates/registration/login.html:45
|
|
198
|
+
msgid "Login"
|
|
199
|
+
msgstr "ورود"
|
|
200
|
+
|
|
201
|
+
#: templates/registration/login.html:24
|
|
201
202
|
msgid "Please log in with your account"
|
|
202
|
-
msgstr "
|
|
203
|
+
msgstr "لطفاً با حساب خود وارد شوید"
|
|
203
204
|
|
|
204
|
-
#: templates/registration/login.html:
|
|
205
|
+
#: templates/registration/login.html:41
|
|
205
206
|
msgid "Username"
|
|
206
207
|
msgstr "نام کاربری"
|
|
207
208
|
|
|
208
|
-
#: templates/registration/login.html:
|
|
209
|
+
#: templates/registration/login.html:44
|
|
209
210
|
msgid "Password"
|
|
210
|
-
msgstr "
|
|
211
|
-
|
|
212
|
-
#: templates/registration/login.html:32
|
|
213
|
-
msgid "Login"
|
|
214
|
-
msgstr "ورود"
|
|
211
|
+
msgstr "گذرواژه"
|
|
215
212
|
|
|
216
|
-
#: templates/registration/login.html:
|
|
213
|
+
#: templates/registration/login.html:51
|
|
217
214
|
msgid "Please choose a provider"
|
|
218
|
-
msgstr "
|
|
215
|
+
msgstr "لطفاً یک خدماتدهنده را انتخاب کنید"
|
|
219
216
|
|
|
220
|
-
#: templates/umap/about_summary.html:
|
|
217
|
+
#: templates/umap/about_summary.html:12
|
|
221
218
|
#, python-format
|
|
222
219
|
msgid ""
|
|
223
220
|
"uMap lets you create maps with <a href=\"%(osm_url)s\" />OpenStreetMap</a> "
|
|
224
221
|
"layers in a minute and embed them in your site."
|
|
225
|
-
msgstr "
|
|
222
|
+
msgstr "در uMap میتوانید با لایههای <a href=\"%(osm_url)s\" />اوپناستریتمپ</a> خیلی سریع یک نقشه بسازید و در وبسایت خود جاسازی کنید."
|
|
226
223
|
|
|
227
|
-
#: templates/umap/about_summary.html:
|
|
224
|
+
#: templates/umap/about_summary.html:23
|
|
228
225
|
msgid "Choose the layers of your map"
|
|
229
|
-
msgstr "لایههای
|
|
226
|
+
msgstr "لایههای نقشهٔ خود را انتخاب کنید"
|
|
230
227
|
|
|
231
|
-
#: templates/umap/about_summary.html:
|
|
228
|
+
#: templates/umap/about_summary.html:26
|
|
232
229
|
msgid "Add POIs: markers, lines, polygons..."
|
|
233
|
-
msgstr "POI
|
|
230
|
+
msgstr "افزودن POIها: نشانگرها، خطوط، چندضلعیها..."
|
|
234
231
|
|
|
235
|
-
#: templates/umap/about_summary.html:
|
|
232
|
+
#: templates/umap/about_summary.html:29
|
|
236
233
|
msgid "Manage POIs colours and icons"
|
|
237
|
-
msgstr "
|
|
234
|
+
msgstr "مدیریت رنگ و نماد نقاط توجه"
|
|
238
235
|
|
|
239
|
-
#: templates/umap/about_summary.html:
|
|
236
|
+
#: templates/umap/about_summary.html:32
|
|
240
237
|
msgid "Manage map options: display a minimap, locate user on load…"
|
|
241
|
-
msgstr "مدیریت
|
|
238
|
+
msgstr "مدیریت گزینههای نقشه: نمایش نقشهٔ کوچک، مکانیابی کاربر در هنگام بارشدن نقشه…"
|
|
242
239
|
|
|
243
|
-
#: templates/umap/about_summary.html:
|
|
240
|
+
#: templates/umap/about_summary.html:35
|
|
244
241
|
msgid "Batch import geostructured data (geojson, gpx, kml, osm...)"
|
|
245
|
-
msgstr "
|
|
242
|
+
msgstr "درونبرد دادههای زمینمرجع (geojson، gpx، kml، osm و...)"
|
|
246
243
|
|
|
247
|
-
#: templates/umap/about_summary.html:
|
|
244
|
+
#: templates/umap/about_summary.html:38
|
|
248
245
|
msgid "Choose the license for your data"
|
|
249
|
-
msgstr "مجوز
|
|
246
|
+
msgstr "مجوز دادههای خود را انتخاب کنید"
|
|
250
247
|
|
|
251
|
-
#: templates/umap/about_summary.html:
|
|
248
|
+
#: templates/umap/about_summary.html:41
|
|
252
249
|
msgid "Embed and share your map"
|
|
253
|
-
msgstr "
|
|
250
|
+
msgstr "نقشهٔ خود را جاسازی و همرسانی کنید"
|
|
254
251
|
|
|
255
|
-
#: templates/umap/about_summary.html:
|
|
252
|
+
#: templates/umap/about_summary.html:52
|
|
256
253
|
#, python-format
|
|
257
254
|
msgid "And it's <a href=\"%(repo_url)s\">open source</a>!"
|
|
258
|
-
msgstr "و <a href=\"%(repo_url)s\"
|
|
255
|
+
msgstr "و <a href=\"%(repo_url)s\">متنباز</a> است!"
|
|
259
256
|
|
|
260
|
-
#: templates/umap/about_summary.html:
|
|
261
|
-
#: templates/umap/user_dashboard.html:
|
|
257
|
+
#: templates/umap/about_summary.html:63 templates/umap/navigation.html:39
|
|
258
|
+
#: templates/umap/user_dashboard.html:40
|
|
262
259
|
msgid "Create a map"
|
|
263
|
-
msgstr "
|
|
260
|
+
msgstr "ساخت نقشه"
|
|
264
261
|
|
|
265
|
-
#: templates/umap/about_summary.html:
|
|
262
|
+
#: templates/umap/about_summary.html:66
|
|
266
263
|
msgid "Play with the demo"
|
|
267
|
-
msgstr "با
|
|
264
|
+
msgstr "با نسخهٔ نمایشی کار کنید"
|
|
265
|
+
|
|
266
|
+
#: templates/umap/components/alerts/alert.html:15
|
|
267
|
+
#: templates/umap/components/alerts/alert.html:64
|
|
268
|
+
#: templates/umap/components/alerts/alert.html:92
|
|
269
|
+
msgid "Close"
|
|
270
|
+
msgstr "بستن"
|
|
268
271
|
|
|
269
|
-
#: templates/umap/
|
|
272
|
+
#: templates/umap/components/alerts/alert.html:30
|
|
273
|
+
#, python-format
|
|
274
|
+
msgid ""
|
|
275
|
+
"Pro-tip: to easily find back your maps, <a href=\"%(login_url)s\" "
|
|
276
|
+
"target=\"_blank\">create an account</a> or <a href=\"%(login_url)s\" "
|
|
277
|
+
"target=\"_blank\">log in</a>."
|
|
278
|
+
msgstr "نکتهٔ طلایی: برای اینکه نقشههای خود را به آسانی پیدا کنید، <a href=\"%(login_url)s\" target=\"_blank\">حساب کاربری بسازید</a> یا <a href=\"%(login_url)s\" target=\"_blank\">وارد شوید</a>."
|
|
279
|
+
|
|
280
|
+
#: templates/umap/components/alerts/alert.html:35
|
|
281
|
+
msgid "Here is your secret link to edit the map, please keep it safe:"
|
|
282
|
+
msgstr "این پیوند محرمانهٔ شما برای ویرایش نقشه است. لطفاً در جای امنی نگهش دارید:"
|
|
283
|
+
|
|
284
|
+
#: templates/umap/components/alerts/alert.html:39
|
|
285
|
+
msgid "Copy link"
|
|
286
|
+
msgstr "کپی پیوند"
|
|
287
|
+
|
|
288
|
+
#: templates/umap/components/alerts/alert.html:46
|
|
289
|
+
msgid "Enter your email address to receive the secret link:"
|
|
290
|
+
msgstr "رایانامهٔ خود را وارد کنید تا پیوند محرمانه را دریافت کنید:"
|
|
291
|
+
|
|
292
|
+
#: templates/umap/components/alerts/alert.html:52
|
|
293
|
+
msgid "Email"
|
|
294
|
+
msgstr "رایانامه"
|
|
295
|
+
|
|
296
|
+
#: templates/umap/components/alerts/alert.html:55
|
|
297
|
+
msgid "Send me the link"
|
|
298
|
+
msgstr "پیوند را برایم بفرست"
|
|
299
|
+
|
|
300
|
+
#: templates/umap/components/alerts/alert.html:79
|
|
301
|
+
msgid "See their edits in another tab"
|
|
302
|
+
msgstr "ویرایشهایشان را در زبانهٔ دیگری ببینید"
|
|
303
|
+
|
|
304
|
+
#: templates/umap/components/alerts/alert.html:82
|
|
305
|
+
msgid "Keep your changes and loose theirs"
|
|
306
|
+
msgstr "تغییرات خود را نگه دارید و از آنها را رها کنید"
|
|
307
|
+
|
|
308
|
+
#: templates/umap/components/alerts/alert.html:85
|
|
309
|
+
msgid "Keep their changes and loose yours"
|
|
310
|
+
msgstr "تغییرات آنها را نگه دارید و از خودتان را رها کنید"
|
|
311
|
+
|
|
312
|
+
#: templates/umap/content.html:26
|
|
270
313
|
msgid ""
|
|
271
314
|
"This instance of uMap is currently in read only mode, no creation/edit is "
|
|
272
315
|
"allowed."
|
|
273
|
-
msgstr ""
|
|
316
|
+
msgstr "این نمونه از uMap فعلاً در حالت فقطخواندنی قرار گرفته است. ایجاد/ویرایش مجاز نیست."
|
|
274
317
|
|
|
275
|
-
#: templates/umap/content.html:
|
|
318
|
+
#: templates/umap/content.html:34
|
|
276
319
|
#, python-format
|
|
277
320
|
msgid ""
|
|
278
321
|
"This is a demo instance, used for tests and pre-rolling releases. If you "
|
|
279
322
|
"need a stable instance, please use <a "
|
|
280
323
|
"href=\"%(stable_url)s\">%(stable_url)s</a>. You can also host your own "
|
|
281
324
|
"instance, it's <a href=\"%(repo_url)s\">open source</a>!"
|
|
282
|
-
msgstr "این یک
|
|
325
|
+
msgstr "این یک نمونهٔ نمایشی است که برای آزمایش و نسخههای پیشا-انتشار استفاده میشود. اگر به نمونهٔ پایدار نیاز دارید، لطفاً <a href=\"%(stable_url)s\">%(stable_url)s</a> استفاده کنید. همچنین میتوانید نمونهٔ شخصی خود را میزبانی کنید؛ زیرا <a href=\"%(repo_url)s\">متنباز</a> است!"
|
|
283
326
|
|
|
284
|
-
#: templates/umap/
|
|
285
|
-
msgid "
|
|
286
|
-
msgstr "
|
|
327
|
+
#: templates/umap/content_footer.html:5
|
|
328
|
+
msgid "An OpenStreetMap project"
|
|
329
|
+
msgstr "پروژهای با اوپناستریتمپ"
|
|
330
|
+
|
|
331
|
+
#: templates/umap/content_footer.html:6
|
|
332
|
+
msgid "version"
|
|
333
|
+
msgstr "نسخه"
|
|
334
|
+
|
|
335
|
+
#: templates/umap/content_footer.html:7
|
|
336
|
+
msgid "Hosted by"
|
|
337
|
+
msgstr "میزبانیشده در"
|
|
338
|
+
|
|
339
|
+
#: templates/umap/content_footer.html:8
|
|
340
|
+
msgid "Contact"
|
|
341
|
+
msgstr "تماس"
|
|
342
|
+
|
|
343
|
+
#: templates/umap/content_footer.html:9 templates/umap/navigation.html:25
|
|
344
|
+
msgid "Help"
|
|
345
|
+
msgstr "راهنما"
|
|
346
|
+
|
|
347
|
+
#: templates/umap/dashboard_menu.html:6
|
|
348
|
+
#, python-format
|
|
349
|
+
msgid "My Maps (%(count)s)"
|
|
350
|
+
msgstr "نقشههای من (%(count)s)"
|
|
351
|
+
|
|
352
|
+
#: templates/umap/dashboard_menu.html:8
|
|
353
|
+
msgid "My Maps"
|
|
354
|
+
msgstr "نقشههای من"
|
|
355
|
+
|
|
356
|
+
#: templates/umap/dashboard_menu.html:11
|
|
357
|
+
msgid "My profile"
|
|
358
|
+
msgstr "نمایهٔ من"
|
|
359
|
+
|
|
360
|
+
#: templates/umap/dashboard_menu.html:13
|
|
361
|
+
msgid "My teams"
|
|
362
|
+
msgstr ""
|
|
287
363
|
|
|
288
364
|
#: templates/umap/home.html:14
|
|
365
|
+
msgid "Map of the uMaps"
|
|
366
|
+
msgstr "نقشهٔ uMapها"
|
|
367
|
+
|
|
368
|
+
#: templates/umap/home.html:24
|
|
289
369
|
msgid "Get inspired, browse maps"
|
|
290
370
|
msgstr "الهام بگیرید، نقشهها را مرور کنید"
|
|
291
371
|
|
|
292
|
-
#: templates/umap/login_popup_end.html:
|
|
372
|
+
#: templates/umap/login_popup_end.html:4
|
|
293
373
|
msgid "You are logged in. Continuing..."
|
|
294
|
-
msgstr "شما وارد
|
|
374
|
+
msgstr "شما وارد شدهاید. ادامه..."
|
|
295
375
|
|
|
296
|
-
#: templates/umap/map_list.html:
|
|
376
|
+
#: templates/umap/map_list.html:11 views.py:433
|
|
297
377
|
msgid "by"
|
|
298
|
-
msgstr "
|
|
378
|
+
msgstr "ساختهٔ"
|
|
299
379
|
|
|
300
|
-
#: templates/umap/map_list.html:
|
|
380
|
+
#: templates/umap/map_list.html:20
|
|
301
381
|
msgid "More"
|
|
302
382
|
msgstr "بیشتر"
|
|
303
383
|
|
|
304
|
-
#: templates/umap/map_table.html:
|
|
384
|
+
#: templates/umap/map_table.html:8 templates/umap/user_teams.html:14
|
|
305
385
|
msgid "Name"
|
|
306
|
-
msgstr ""
|
|
386
|
+
msgstr "نام"
|
|
307
387
|
|
|
308
|
-
#: templates/umap/map_table.html:
|
|
388
|
+
#: templates/umap/map_table.html:11
|
|
309
389
|
msgid "Preview"
|
|
310
|
-
msgstr ""
|
|
390
|
+
msgstr "پیشنمایش"
|
|
311
391
|
|
|
312
|
-
#: templates/umap/map_table.html:
|
|
392
|
+
#: templates/umap/map_table.html:14
|
|
313
393
|
msgid "Who can see"
|
|
314
|
-
msgstr ""
|
|
394
|
+
msgstr "آنکه میتواند ببیند"
|
|
315
395
|
|
|
316
|
-
#: templates/umap/map_table.html:
|
|
396
|
+
#: templates/umap/map_table.html:17
|
|
317
397
|
msgid "Who can edit"
|
|
318
|
-
msgstr ""
|
|
398
|
+
msgstr "آنکه میتواند ویرایش کند"
|
|
319
399
|
|
|
320
|
-
#: templates/umap/map_table.html:
|
|
400
|
+
#: templates/umap/map_table.html:20
|
|
321
401
|
msgid "Last save"
|
|
322
|
-
msgstr ""
|
|
402
|
+
msgstr "آخرین ذخیرهسازی"
|
|
323
403
|
|
|
324
|
-
#: templates/umap/map_table.html:
|
|
404
|
+
#: templates/umap/map_table.html:23
|
|
325
405
|
msgid "Owner"
|
|
326
|
-
msgstr ""
|
|
406
|
+
msgstr "مالک"
|
|
327
407
|
|
|
328
|
-
#: templates/umap/map_table.html:
|
|
408
|
+
#: templates/umap/map_table.html:26 templates/umap/user_teams.html:20
|
|
329
409
|
msgid "Actions"
|
|
330
|
-
msgstr ""
|
|
410
|
+
msgstr "کنشها"
|
|
331
411
|
|
|
332
|
-
#: templates/umap/map_table.html:
|
|
412
|
+
#: templates/umap/map_table.html:41 templates/umap/map_table.html:43
|
|
333
413
|
msgid "Open preview"
|
|
334
|
-
msgstr ""
|
|
414
|
+
msgstr "بازکردن پیشنمایش"
|
|
335
415
|
|
|
336
|
-
#: templates/umap/map_table.html:
|
|
416
|
+
#: templates/umap/map_table.html:72 templates/umap/map_table.html:74
|
|
337
417
|
msgid "Share"
|
|
338
|
-
msgstr ""
|
|
418
|
+
msgstr "همرسانی"
|
|
339
419
|
|
|
340
|
-
#: templates/umap/map_table.html:
|
|
420
|
+
#: templates/umap/map_table.html:78 templates/umap/map_table.html:80
|
|
421
|
+
#: templates/umap/user_teams.html:38 templates/umap/user_teams.html:40
|
|
341
422
|
msgid "Edit"
|
|
342
|
-
msgstr ""
|
|
423
|
+
msgstr "ویرایش"
|
|
343
424
|
|
|
344
|
-
#: templates/umap/map_table.html:
|
|
425
|
+
#: templates/umap/map_table.html:84 templates/umap/map_table.html:86
|
|
345
426
|
msgid "Download"
|
|
346
|
-
msgstr ""
|
|
427
|
+
msgstr "بارگیری"
|
|
347
428
|
|
|
348
|
-
#: templates/umap/map_table.html:
|
|
429
|
+
#: templates/umap/map_table.html:90 templates/umap/map_table.html:92
|
|
349
430
|
msgid "Clone"
|
|
350
|
-
msgstr ""
|
|
431
|
+
msgstr "همانندسازی"
|
|
351
432
|
|
|
352
|
-
#: templates/umap/map_table.html:
|
|
433
|
+
#: templates/umap/map_table.html:101 templates/umap/map_table.html:103
|
|
353
434
|
msgid "Delete"
|
|
354
|
-
msgstr ""
|
|
435
|
+
msgstr "حذف"
|
|
355
436
|
|
|
356
|
-
#: templates/umap/map_table.html:
|
|
437
|
+
#: templates/umap/map_table.html:117
|
|
357
438
|
msgid "first"
|
|
358
|
-
msgstr ""
|
|
439
|
+
msgstr "اول"
|
|
359
440
|
|
|
360
|
-
#: templates/umap/map_table.html:
|
|
441
|
+
#: templates/umap/map_table.html:118
|
|
361
442
|
msgid "previous"
|
|
362
|
-
msgstr ""
|
|
443
|
+
msgstr "قبلی"
|
|
363
444
|
|
|
364
|
-
#: templates/umap/map_table.html:
|
|
445
|
+
#: templates/umap/map_table.html:126
|
|
365
446
|
#, python-format
|
|
366
447
|
msgid "Page %(maps_number)s of %(num_pages)s"
|
|
367
|
-
msgstr ""
|
|
448
|
+
msgstr "صفحهٔ %(maps_number)s از %(num_pages)s"
|
|
368
449
|
|
|
369
|
-
#: templates/umap/map_table.html:
|
|
450
|
+
#: templates/umap/map_table.html:131
|
|
370
451
|
msgid "next"
|
|
371
|
-
msgstr ""
|
|
452
|
+
msgstr "بعدی"
|
|
372
453
|
|
|
373
|
-
#: templates/umap/map_table.html:
|
|
454
|
+
#: templates/umap/map_table.html:132
|
|
374
455
|
msgid "last"
|
|
375
|
-
msgstr ""
|
|
456
|
+
msgstr "آخر"
|
|
376
457
|
|
|
377
|
-
#: templates/umap/map_table.html:
|
|
458
|
+
#: templates/umap/map_table.html:140
|
|
378
459
|
#, python-format
|
|
379
460
|
msgid "Lines per page: %(per_page)s"
|
|
380
|
-
msgstr ""
|
|
461
|
+
msgstr "خطوط در صفحه: %(per_page)s"
|
|
381
462
|
|
|
382
|
-
#: templates/umap/map_table.html:
|
|
463
|
+
#: templates/umap/map_table.html:145
|
|
383
464
|
#, python-format
|
|
384
465
|
msgid "%(count)s maps"
|
|
385
|
-
msgstr ""
|
|
466
|
+
msgstr "%(count)s نقشه"
|
|
386
467
|
|
|
387
|
-
#: templates/umap/navigation.html:
|
|
468
|
+
#: templates/umap/navigation.html:11 templates/umap/user_dashboard.html:6
|
|
388
469
|
msgid "My Dashboard"
|
|
389
|
-
msgstr ""
|
|
470
|
+
msgstr "پیشخان من"
|
|
390
471
|
|
|
391
|
-
#: templates/umap/navigation.html:
|
|
472
|
+
#: templates/umap/navigation.html:14
|
|
392
473
|
msgid "Starred maps"
|
|
393
|
-
msgstr ""
|
|
474
|
+
msgstr "نقشههای ستارهدار"
|
|
394
475
|
|
|
395
|
-
#: templates/umap/navigation.html:
|
|
476
|
+
#: templates/umap/navigation.html:18
|
|
396
477
|
msgid "Log in"
|
|
397
478
|
msgstr "ورود"
|
|
398
479
|
|
|
399
|
-
#: templates/umap/navigation.html:
|
|
480
|
+
#: templates/umap/navigation.html:18
|
|
400
481
|
msgid "Sign in"
|
|
401
|
-
msgstr "
|
|
482
|
+
msgstr "ثبتنام"
|
|
402
483
|
|
|
403
|
-
#: templates/umap/navigation.html:
|
|
484
|
+
#: templates/umap/navigation.html:22
|
|
404
485
|
msgid "About"
|
|
405
486
|
msgstr "درباره"
|
|
406
487
|
|
|
407
|
-
#: templates/umap/navigation.html:
|
|
408
|
-
msgid "Help"
|
|
409
|
-
msgstr "راهنما"
|
|
410
|
-
|
|
411
|
-
#: templates/umap/navigation.html:29
|
|
488
|
+
#: templates/umap/navigation.html:30
|
|
412
489
|
msgid "Change password"
|
|
413
|
-
msgstr "
|
|
490
|
+
msgstr "تغییر گذرواژه"
|
|
414
491
|
|
|
415
|
-
#: templates/umap/navigation.html:
|
|
492
|
+
#: templates/umap/navigation.html:34
|
|
416
493
|
msgid "Log out"
|
|
417
494
|
msgstr "خروج"
|
|
418
495
|
|
|
419
|
-
#: templates/umap/password_change.html:
|
|
496
|
+
#: templates/umap/password_change.html:7
|
|
420
497
|
msgid "Password change"
|
|
421
|
-
msgstr "تغییر
|
|
498
|
+
msgstr "تغییر گذرواژه"
|
|
422
499
|
|
|
423
|
-
#: templates/umap/password_change.html:
|
|
500
|
+
#: templates/umap/password_change.html:10
|
|
424
501
|
msgid ""
|
|
425
502
|
"Please enter your old password, for security's sake, and then enter your new"
|
|
426
503
|
" password twice so we can verify you typed it in correctly."
|
|
427
|
-
msgstr "لطفاً برای حفظ امنیت
|
|
504
|
+
msgstr "لطفاً برای حفظ امنیت گذرواژهٔ قدیمی خود را وارد کنید و سپس گذرواژهٔ جدید خود را دو بار وارد کنید تا مطمئن شویم آن را درست وارد کردهاید."
|
|
428
505
|
|
|
429
|
-
#: templates/umap/password_change.html:
|
|
506
|
+
#: templates/umap/password_change.html:17
|
|
430
507
|
msgid "Old password"
|
|
431
|
-
msgstr "
|
|
508
|
+
msgstr "گذرواژهٔ قدیمی"
|
|
432
509
|
|
|
433
|
-
#: templates/umap/password_change.html:
|
|
510
|
+
#: templates/umap/password_change.html:22
|
|
434
511
|
msgid "New password"
|
|
435
|
-
msgstr "
|
|
512
|
+
msgstr "گذرواژهٔ جدید"
|
|
436
513
|
|
|
437
|
-
#: templates/umap/password_change.html:
|
|
514
|
+
#: templates/umap/password_change.html:26
|
|
438
515
|
msgid "New password confirmation"
|
|
439
|
-
msgstr "
|
|
516
|
+
msgstr "تأیید گذرواژهٔ جدید"
|
|
440
517
|
|
|
441
|
-
#: templates/umap/password_change.html:
|
|
518
|
+
#: templates/umap/password_change.html:27
|
|
442
519
|
msgid "Change my password"
|
|
443
|
-
msgstr "
|
|
520
|
+
msgstr "گذرواژهام را تغییر بده"
|
|
444
521
|
|
|
445
|
-
#: templates/umap/password_change_done.html:
|
|
522
|
+
#: templates/umap/password_change_done.html:7
|
|
446
523
|
msgid "Password change successful"
|
|
447
|
-
msgstr "تغییر
|
|
524
|
+
msgstr "تغییر گذرواژه موفقیتآمیز بود"
|
|
448
525
|
|
|
449
|
-
#: templates/umap/password_change_done.html:
|
|
526
|
+
#: templates/umap/password_change_done.html:10
|
|
450
527
|
msgid "Your password was changed."
|
|
451
|
-
msgstr "
|
|
528
|
+
msgstr "گذرواژهٔ شما تغییر کرد"
|
|
452
529
|
|
|
453
|
-
#: templates/umap/search.html:
|
|
530
|
+
#: templates/umap/search.html:15
|
|
454
531
|
#, python-format
|
|
455
532
|
msgid "%(count)s map found:"
|
|
456
533
|
msgid_plural "%(count)s maps found:"
|
|
457
|
-
msgstr[0] ""
|
|
458
|
-
msgstr[1] ""
|
|
534
|
+
msgstr[0] "%(count)s نقشه پیدا شد:"
|
|
535
|
+
msgstr[1] "%(count)s نقشه پیدا شد:"
|
|
459
536
|
|
|
460
|
-
#: templates/umap/search.html:
|
|
537
|
+
#: templates/umap/search.html:24
|
|
461
538
|
msgid "No map found."
|
|
462
|
-
msgstr ""
|
|
539
|
+
msgstr "نقشهای پیدا نشد."
|
|
463
540
|
|
|
464
|
-
#: templates/umap/search.html:
|
|
541
|
+
#: templates/umap/search.html:29
|
|
465
542
|
msgid "Latest created maps"
|
|
466
|
-
msgstr ""
|
|
543
|
+
msgstr "آخرین نقشههای ساختهشده"
|
|
467
544
|
|
|
468
|
-
#: templates/umap/search_bar.html:
|
|
545
|
+
#: templates/umap/search_bar.html:4
|
|
469
546
|
msgid "Search maps"
|
|
470
547
|
msgstr "جستجوی نقشهها"
|
|
471
548
|
|
|
472
|
-
#: templates/umap/search_bar.html:
|
|
549
|
+
#: templates/umap/search_bar.html:15
|
|
473
550
|
msgid "Search"
|
|
474
551
|
msgstr "جستجو"
|
|
475
552
|
|
|
476
|
-
#: templates/umap/
|
|
477
|
-
|
|
478
|
-
|
|
553
|
+
#: templates/umap/team_detail.html:10
|
|
554
|
+
#, python-format
|
|
555
|
+
msgid "Browse %(current_team)s's maps"
|
|
556
|
+
msgstr "مرور نقشههای %(current_team)s"
|
|
479
557
|
|
|
480
|
-
#: templates/umap/
|
|
558
|
+
#: templates/umap/team_detail.html:22
|
|
481
559
|
#, python-format
|
|
482
|
-
msgid "
|
|
560
|
+
msgid "%(current_team)s has no public maps."
|
|
561
|
+
msgstr "%(current_team)s نقشهٔ عمومی ندارد."
|
|
562
|
+
|
|
563
|
+
#: templates/umap/team_form.html:24
|
|
564
|
+
msgid "Delete this team"
|
|
483
565
|
msgstr ""
|
|
484
566
|
|
|
485
|
-
#: templates/umap/
|
|
486
|
-
msgid "
|
|
567
|
+
#: templates/umap/team_form.html:47
|
|
568
|
+
msgid "Add user"
|
|
487
569
|
msgstr ""
|
|
488
570
|
|
|
489
|
-
#: templates/umap/user_dashboard.html:
|
|
571
|
+
#: templates/umap/user_dashboard.html:9 templates/umap/user_dashboard.html:25
|
|
572
|
+
msgid "Search my maps"
|
|
573
|
+
msgstr "جستجو در نقشههای من"
|
|
574
|
+
|
|
575
|
+
#: templates/umap/user_dashboard.html:17 templates/umap/user_dashboard.html:22
|
|
490
576
|
msgid "Map’s title"
|
|
491
|
-
msgstr ""
|
|
577
|
+
msgstr "عنوان نقشه"
|
|
492
578
|
|
|
493
|
-
#: templates/umap/user_dashboard.html:
|
|
579
|
+
#: templates/umap/user_dashboard.html:30
|
|
494
580
|
#, python-format
|
|
495
581
|
msgid "Download %(count)s maps"
|
|
496
|
-
msgstr ""
|
|
582
|
+
msgstr "بارگیری %(count)s نقشه"
|
|
497
583
|
|
|
498
|
-
#: templates/umap/user_dashboard.html:
|
|
584
|
+
#: templates/umap/user_dashboard.html:40
|
|
499
585
|
msgid "You have no map yet."
|
|
586
|
+
msgstr "هنوز نقشهای ندارید"
|
|
587
|
+
|
|
588
|
+
#: templates/umap/user_teams.html:17
|
|
589
|
+
msgid "Users"
|
|
590
|
+
msgstr ""
|
|
591
|
+
|
|
592
|
+
#: templates/umap/user_teams.html:48
|
|
593
|
+
msgid "New team"
|
|
594
|
+
msgstr ""
|
|
595
|
+
|
|
596
|
+
#: views.py:235
|
|
597
|
+
msgid "Cannot delete a team with more than one member"
|
|
598
|
+
msgstr ""
|
|
599
|
+
|
|
600
|
+
#: views.py:239
|
|
601
|
+
#, python-format
|
|
602
|
+
msgid "Team “%(name)s” has been deleted"
|
|
500
603
|
msgstr ""
|
|
501
604
|
|
|
502
|
-
#: views.py:
|
|
605
|
+
#: views.py:438
|
|
503
606
|
msgid "View the map"
|
|
504
|
-
msgstr "
|
|
607
|
+
msgstr "مشاهدهٔ نقشه"
|
|
505
608
|
|
|
506
|
-
#: views.py:
|
|
609
|
+
#: views.py:824
|
|
507
610
|
msgid "See full screen"
|
|
508
|
-
msgstr ""
|
|
611
|
+
msgstr "تمامصفحه ببینید"
|
|
509
612
|
|
|
510
|
-
#: views.py:
|
|
613
|
+
#: views.py:953
|
|
511
614
|
msgid "Map editors updated with success!"
|
|
512
|
-
msgstr "
|
|
615
|
+
msgstr "ویرایشگران نقشه با موفقیت روزآمد شد!"
|
|
513
616
|
|
|
514
|
-
#: views.py:
|
|
617
|
+
#: views.py:989
|
|
515
618
|
#, python-format
|
|
516
619
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
517
|
-
msgstr ""
|
|
620
|
+
msgstr "پیوند ویرایش uMap برای نقشهٔ شما: %(map_name)s"
|
|
518
621
|
|
|
519
|
-
#: views.py:
|
|
622
|
+
#: views.py:992
|
|
520
623
|
#, python-format
|
|
521
624
|
msgid "Here is your secret edit link: %(link)s"
|
|
522
|
-
msgstr ""
|
|
625
|
+
msgstr "این پیوند محرمانهٔ ویرایش برای شماست: %(link)s"
|
|
626
|
+
|
|
627
|
+
#: views.py:999
|
|
628
|
+
#, python-format
|
|
629
|
+
msgid "Can't send email to %(email)s"
|
|
630
|
+
msgstr "رایانامه به %(email)s فرستاده نشد"
|
|
523
631
|
|
|
524
|
-
#: views.py:
|
|
632
|
+
#: views.py:1002
|
|
525
633
|
#, python-format
|
|
526
634
|
msgid "Email sent to %(email)s"
|
|
527
|
-
msgstr ""
|
|
635
|
+
msgstr "رایانامه به %(email)s فرستاده شد"
|
|
528
636
|
|
|
529
|
-
#: views.py:
|
|
637
|
+
#: views.py:1013
|
|
530
638
|
msgid "Only its owner can delete the map."
|
|
531
639
|
msgstr "فقط مالک آن میتواند نقشه را حذف کند."
|
|
532
640
|
|
|
533
|
-
#: views.py:
|
|
641
|
+
#: views.py:1016
|
|
642
|
+
msgid "Map successfully deleted."
|
|
643
|
+
msgstr "نقشه با موفقیت حذف شد."
|
|
644
|
+
|
|
645
|
+
#: views.py:1042
|
|
534
646
|
#, python-format
|
|
535
647
|
msgid ""
|
|
536
648
|
"Your map has been cloned! If you want to edit this map from another "
|
|
537
649
|
"computer, please use this link: %(anonymous_url)s"
|
|
538
|
-
msgstr "
|
|
650
|
+
msgstr "از نقشهٔ شما همانندسازی شد! اگر میخواهید این نقشه را از رایانهٔ دیگری ویرایش کنید، لطفاً از این پیوند استفاده کنید: %(anonymous_url)s"
|
|
539
651
|
|
|
540
|
-
#: views.py:
|
|
652
|
+
#: views.py:1047
|
|
541
653
|
msgid "Congratulations, your map has been cloned!"
|
|
542
|
-
msgstr "
|
|
654
|
+
msgstr "تبریک، نقشهٔ شما همانندسازی شد!"
|
|
543
655
|
|
|
544
|
-
#: views.py:
|
|
656
|
+
#: views.py:1282
|
|
545
657
|
msgid "Layer successfully deleted."
|
|
546
658
|
msgstr "لایه با موفقیت حذف شد."
|
|
547
659
|
|
|
548
|
-
#: views.py:
|
|
660
|
+
#: views.py:1304
|
|
549
661
|
msgid "Permissions updated with success!"
|
|
550
|
-
msgstr ""
|
|
662
|
+
msgstr "مجوزها با موفقیت روزآمد شد!"
|