umap-project 2.5.1__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.

Files changed (276) hide show
  1. umap/__init__.py +1 -1
  2. umap/admin.py +6 -1
  3. umap/context_processors.py +2 -1
  4. umap/decorators.py +13 -2
  5. umap/forms.py +26 -2
  6. umap/locale/br/LC_MESSAGES/django.mo +0 -0
  7. umap/locale/br/LC_MESSAGES/django.po +252 -146
  8. umap/locale/ca/LC_MESSAGES/django.mo +0 -0
  9. umap/locale/ca/LC_MESSAGES/django.po +274 -162
  10. umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
  11. umap/locale/cs_CZ/LC_MESSAGES/django.po +261 -150
  12. umap/locale/de/LC_MESSAGES/django.mo +0 -0
  13. umap/locale/de/LC_MESSAGES/django.po +299 -187
  14. umap/locale/el/LC_MESSAGES/django.mo +0 -0
  15. umap/locale/el/LC_MESSAGES/django.po +215 -159
  16. umap/locale/en/LC_MESSAGES/django.po +211 -155
  17. umap/locale/es/LC_MESSAGES/django.mo +0 -0
  18. umap/locale/es/LC_MESSAGES/django.po +255 -144
  19. umap/locale/eu/LC_MESSAGES/django.mo +0 -0
  20. umap/locale/eu/LC_MESSAGES/django.po +254 -198
  21. umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
  22. umap/locale/fa_IR/LC_MESSAGES/django.po +347 -235
  23. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  24. umap/locale/fr/LC_MESSAGES/django.po +216 -160
  25. umap/locale/hu/LC_MESSAGES/django.mo +0 -0
  26. umap/locale/hu/LC_MESSAGES/django.po +215 -159
  27. umap/locale/it/LC_MESSAGES/django.mo +0 -0
  28. umap/locale/it/LC_MESSAGES/django.po +252 -146
  29. umap/locale/ms/LC_MESSAGES/django.mo +0 -0
  30. umap/locale/ms/LC_MESSAGES/django.po +252 -146
  31. umap/locale/pl/LC_MESSAGES/django.mo +0 -0
  32. umap/locale/pl/LC_MESSAGES/django.po +254 -148
  33. umap/locale/pt/LC_MESSAGES/django.mo +0 -0
  34. umap/locale/pt/LC_MESSAGES/django.po +215 -159
  35. umap/locale/sv/LC_MESSAGES/django.mo +0 -0
  36. umap/locale/sv/LC_MESSAGES/django.po +254 -143
  37. umap/locale/th_TH/LC_MESSAGES/django.mo +0 -0
  38. umap/locale/th_TH/LC_MESSAGES/django.po +125 -70
  39. umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
  40. umap/locale/zh_TW/LC_MESSAGES/django.po +256 -145
  41. umap/migrations/0022_add_team.py +94 -0
  42. umap/models.py +45 -10
  43. umap/settings/__init__.py +2 -0
  44. umap/settings/base.py +9 -2
  45. umap/static/umap/base.css +32 -41
  46. umap/static/umap/content.css +19 -25
  47. umap/static/umap/css/icon.css +63 -37
  48. umap/static/umap/css/importers.css +1 -1
  49. umap/static/umap/css/slideshow.css +7 -5
  50. umap/static/umap/css/tableeditor.css +4 -3
  51. umap/static/umap/img/16-white.svg +1 -4
  52. umap/static/umap/img/16.svg +2 -6
  53. umap/static/umap/img/24-white.svg +4 -4
  54. umap/static/umap/img/24.svg +6 -6
  55. umap/static/umap/img/source/16-white.svg +2 -5
  56. umap/static/umap/img/source/16.svg +3 -7
  57. umap/static/umap/img/source/24-white.svg +7 -14
  58. umap/static/umap/img/source/24.svg +10 -17
  59. umap/static/umap/js/components/alerts/alert.css +20 -8
  60. umap/static/umap/js/modules/autocomplete.js +8 -12
  61. umap/static/umap/js/modules/browser.js +4 -3
  62. umap/static/umap/js/modules/caption.js +9 -11
  63. umap/static/umap/js/modules/data/features.js +993 -0
  64. umap/static/umap/js/modules/data/layer.js +1210 -0
  65. umap/static/umap/js/modules/formatter.js +12 -3
  66. umap/static/umap/js/modules/global.js +21 -5
  67. umap/static/umap/js/modules/importers/overpass.js +22 -8
  68. umap/static/umap/js/modules/permissions.js +280 -0
  69. umap/static/umap/js/{umap.icon.js → modules/rendering/icon.js} +77 -56
  70. umap/static/umap/js/modules/rendering/layers/base.js +105 -0
  71. umap/static/umap/js/modules/rendering/layers/classified.js +484 -0
  72. umap/static/umap/js/modules/rendering/layers/cluster.js +103 -0
  73. umap/static/umap/js/modules/rendering/layers/heat.js +182 -0
  74. umap/static/umap/js/modules/rendering/popup.js +99 -0
  75. umap/static/umap/js/modules/rendering/template.js +217 -0
  76. umap/static/umap/js/modules/rendering/ui.js +610 -0
  77. umap/static/umap/js/modules/rules.js +16 -3
  78. umap/static/umap/js/modules/schema.js +25 -1
  79. umap/static/umap/js/modules/share.js +66 -45
  80. umap/static/umap/js/modules/sync/updaters.js +9 -10
  81. umap/static/umap/js/modules/tableeditor.js +7 -7
  82. umap/static/umap/js/modules/ui/dialog.js +8 -4
  83. umap/static/umap/js/modules/utils.js +22 -13
  84. umap/static/umap/js/umap.controls.js +80 -146
  85. umap/static/umap/js/umap.core.js +9 -9
  86. umap/static/umap/js/umap.forms.js +41 -17
  87. umap/static/umap/js/umap.js +72 -65
  88. umap/static/umap/locale/am_ET.js +8 -2
  89. umap/static/umap/locale/am_ET.json +8 -2
  90. umap/static/umap/locale/ar.js +8 -2
  91. umap/static/umap/locale/ar.json +8 -2
  92. umap/static/umap/locale/ast.js +8 -2
  93. umap/static/umap/locale/ast.json +8 -2
  94. umap/static/umap/locale/bg.js +8 -2
  95. umap/static/umap/locale/bg.json +8 -2
  96. umap/static/umap/locale/br.js +42 -36
  97. umap/static/umap/locale/br.json +42 -36
  98. umap/static/umap/locale/ca.js +67 -61
  99. umap/static/umap/locale/ca.json +67 -61
  100. umap/static/umap/locale/cs_CZ.js +8 -2
  101. umap/static/umap/locale/cs_CZ.json +8 -2
  102. umap/static/umap/locale/da.js +8 -2
  103. umap/static/umap/locale/da.json +8 -2
  104. umap/static/umap/locale/de.js +143 -137
  105. umap/static/umap/locale/de.json +143 -137
  106. umap/static/umap/locale/el.js +54 -48
  107. umap/static/umap/locale/el.json +54 -48
  108. umap/static/umap/locale/en.js +10 -2
  109. umap/static/umap/locale/en.json +10 -2
  110. umap/static/umap/locale/en_US.json +8 -2
  111. umap/static/umap/locale/es.js +8 -2
  112. umap/static/umap/locale/es.json +8 -2
  113. umap/static/umap/locale/et.js +8 -2
  114. umap/static/umap/locale/et.json +8 -2
  115. umap/static/umap/locale/eu.js +346 -338
  116. umap/static/umap/locale/eu.json +346 -338
  117. umap/static/umap/locale/fa_IR.js +415 -407
  118. umap/static/umap/locale/fa_IR.json +415 -407
  119. umap/static/umap/locale/fi.js +8 -2
  120. umap/static/umap/locale/fi.json +8 -2
  121. umap/static/umap/locale/fr.js +11 -3
  122. umap/static/umap/locale/fr.json +11 -3
  123. umap/static/umap/locale/gl.js +8 -2
  124. umap/static/umap/locale/gl.json +8 -2
  125. umap/static/umap/locale/he.js +8 -2
  126. umap/static/umap/locale/he.json +8 -2
  127. umap/static/umap/locale/hr.js +8 -2
  128. umap/static/umap/locale/hr.json +8 -2
  129. umap/static/umap/locale/hu.js +31 -23
  130. umap/static/umap/locale/hu.json +31 -23
  131. umap/static/umap/locale/id.js +8 -2
  132. umap/static/umap/locale/id.json +8 -2
  133. umap/static/umap/locale/is.js +8 -2
  134. umap/static/umap/locale/is.json +8 -2
  135. umap/static/umap/locale/it.js +8 -2
  136. umap/static/umap/locale/it.json +8 -2
  137. umap/static/umap/locale/ja.js +8 -2
  138. umap/static/umap/locale/ja.json +8 -2
  139. umap/static/umap/locale/ko.js +8 -2
  140. umap/static/umap/locale/ko.json +8 -2
  141. umap/static/umap/locale/lt.js +8 -2
  142. umap/static/umap/locale/lt.json +8 -2
  143. umap/static/umap/locale/ms.js +8 -2
  144. umap/static/umap/locale/ms.json +8 -2
  145. umap/static/umap/locale/nl.js +8 -2
  146. umap/static/umap/locale/nl.json +8 -2
  147. umap/static/umap/locale/no.js +8 -2
  148. umap/static/umap/locale/no.json +8 -2
  149. umap/static/umap/locale/pl.js +54 -48
  150. umap/static/umap/locale/pl.json +54 -48
  151. umap/static/umap/locale/pl_PL.json +8 -2
  152. umap/static/umap/locale/pt.js +24 -18
  153. umap/static/umap/locale/pt.json +24 -18
  154. umap/static/umap/locale/pt_BR.js +8 -2
  155. umap/static/umap/locale/pt_BR.json +8 -2
  156. umap/static/umap/locale/pt_PT.js +214 -208
  157. umap/static/umap/locale/pt_PT.json +214 -208
  158. umap/static/umap/locale/ro.js +8 -2
  159. umap/static/umap/locale/ro.json +8 -2
  160. umap/static/umap/locale/ru.js +8 -2
  161. umap/static/umap/locale/ru.json +8 -2
  162. umap/static/umap/locale/sk_SK.js +8 -2
  163. umap/static/umap/locale/sk_SK.json +8 -2
  164. umap/static/umap/locale/sl.js +8 -2
  165. umap/static/umap/locale/sl.json +8 -2
  166. umap/static/umap/locale/sr.js +8 -2
  167. umap/static/umap/locale/sr.json +8 -2
  168. umap/static/umap/locale/sv.js +8 -2
  169. umap/static/umap/locale/sv.json +8 -2
  170. umap/static/umap/locale/th_TH.js +33 -27
  171. umap/static/umap/locale/th_TH.json +33 -27
  172. umap/static/umap/locale/tr.js +8 -2
  173. umap/static/umap/locale/tr.json +8 -2
  174. umap/static/umap/locale/uk_UA.js +8 -2
  175. umap/static/umap/locale/uk_UA.json +8 -2
  176. umap/static/umap/locale/vi.js +8 -2
  177. umap/static/umap/locale/vi.json +8 -2
  178. umap/static/umap/locale/vi_VN.json +8 -2
  179. umap/static/umap/locale/zh.js +8 -2
  180. umap/static/umap/locale/zh.json +8 -2
  181. umap/static/umap/locale/zh_CN.json +8 -2
  182. umap/static/umap/locale/zh_TW.Big5.json +8 -2
  183. umap/static/umap/locale/zh_TW.js +102 -96
  184. umap/static/umap/locale/zh_TW.json +102 -96
  185. umap/static/umap/map.css +111 -108
  186. umap/static/umap/nav.css +19 -10
  187. umap/static/umap/unittests/utils.js +230 -107
  188. umap/static/umap/vars.css +1 -0
  189. umap/static/umap/vendors/csv2geojson/csv2geojson.js +62 -40
  190. umap/static/umap/vendors/editable/Leaflet.Editable.js +2079 -1937
  191. umap/storage.py +1 -0
  192. umap/templates/404.html +5 -1
  193. umap/templates/500.html +3 -1
  194. umap/templates/auth/user_detail.html +8 -2
  195. umap/templates/auth/user_form.html +19 -10
  196. umap/templates/auth/user_stars.html +8 -2
  197. umap/templates/base.html +1 -0
  198. umap/templates/registration/login.html +18 -3
  199. umap/templates/umap/about.html +1 -0
  200. umap/templates/umap/about_summary.html +22 -7
  201. umap/templates/umap/components/alerts/alert.html +42 -21
  202. umap/templates/umap/content.html +2 -0
  203. umap/templates/umap/content_footer.html +7 -3
  204. umap/templates/umap/css.html +1 -0
  205. umap/templates/umap/dashboard_menu.html +15 -0
  206. umap/templates/umap/home.html +14 -4
  207. umap/templates/umap/js.html +4 -9
  208. umap/templates/umap/login_popup_end.html +10 -4
  209. umap/templates/umap/map_detail.html +8 -2
  210. umap/templates/umap/map_fragment.html +3 -1
  211. umap/templates/umap/map_init.html +2 -1
  212. umap/templates/umap/map_list.html +6 -3
  213. umap/templates/umap/map_table.html +36 -12
  214. umap/templates/umap/messages.html +0 -1
  215. umap/templates/umap/navigation.html +2 -1
  216. umap/templates/umap/password_change.html +5 -1
  217. umap/templates/umap/password_change_done.html +8 -2
  218. umap/templates/umap/search.html +8 -2
  219. umap/templates/umap/search_bar.html +1 -0
  220. umap/templates/umap/team_confirm_delete.html +19 -0
  221. umap/templates/umap/team_detail.html +27 -0
  222. umap/templates/umap/team_form.html +60 -0
  223. umap/templates/umap/user_dashboard.html +7 -9
  224. umap/templates/umap/user_teams.html +51 -0
  225. umap/tests/base.py +8 -1
  226. umap/tests/conftest.py +6 -0
  227. umap/tests/fixtures/test_circles_layer.geojson +219 -0
  228. umap/tests/fixtures/test_upload_georss.xml +20 -0
  229. umap/tests/integration/conftest.py +18 -4
  230. umap/tests/integration/helpers.py +12 -0
  231. umap/tests/integration/test_anonymous_owned_map.py +23 -0
  232. umap/tests/integration/test_basics.py +29 -0
  233. umap/tests/integration/test_browser.py +20 -0
  234. umap/tests/integration/test_caption.py +20 -0
  235. umap/tests/integration/test_circles_layer.py +69 -0
  236. umap/tests/integration/test_conditional_rules.py +102 -17
  237. umap/tests/integration/test_draw_polygon.py +138 -13
  238. umap/tests/integration/test_draw_polyline.py +8 -18
  239. umap/tests/integration/test_edit_datalayer.py +3 -3
  240. umap/tests/integration/test_import.py +124 -5
  241. umap/tests/integration/test_owned_map.py +21 -13
  242. umap/tests/integration/test_querystring.py +7 -0
  243. umap/tests/integration/test_team.py +47 -0
  244. umap/tests/integration/test_tilelayer.py +19 -2
  245. umap/tests/integration/test_view_marker.py +28 -1
  246. umap/tests/integration/test_websocket_sync.py +5 -5
  247. umap/tests/test_datalayer.py +32 -7
  248. umap/tests/test_datalayer_views.py +1 -1
  249. umap/tests/test_map.py +30 -4
  250. umap/tests/test_map_views.py +2 -2
  251. umap/tests/test_statics.py +40 -0
  252. umap/tests/test_team_views.py +131 -0
  253. umap/tests/test_views.py +15 -1
  254. umap/urls.py +23 -13
  255. umap/views.py +116 -10
  256. {umap_project-2.5.1.dist-info → umap_project-2.6.0.dist-info}/METADATA +14 -14
  257. {umap_project-2.5.1.dist-info → umap_project-2.6.0.dist-info}/RECORD +260 -253
  258. umap/static/umap/js/umap.datalayer.permissions.js +0 -70
  259. umap/static/umap/js/umap.features.js +0 -1290
  260. umap/static/umap/js/umap.layer.js +0 -1837
  261. umap/static/umap/js/umap.permissions.js +0 -208
  262. umap/static/umap/js/umap.popup.js +0 -341
  263. umap/static/umap/test/TableEditor.js +0 -104
  264. umap/static/umap/vendors/leaflet/leaflet-src.js +0 -14512
  265. umap/static/umap/vendors/leaflet/leaflet-src.js.map +0 -1
  266. umap/static/umap/vendors/leaflet/leaflet.js +0 -6
  267. umap/static/umap/vendors/leaflet/leaflet.js.map +0 -1
  268. umap/static/umap/vendors/markercluster/WhereAreTheJavascriptFiles.txt +0 -5
  269. umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js +0 -2718
  270. umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js.map +0 -1
  271. umap/static/umap/vendors/toolbar/leaflet.toolbar-src.css +0 -117
  272. umap/static/umap/vendors/toolbar/leaflet.toolbar-src.js +0 -365
  273. umap/tests/integration/test_statics.py +0 -47
  274. {umap_project-2.5.1.dist-info → umap_project-2.6.0.dist-info}/WHEEL +0 -0
  275. {umap_project-2.5.1.dist-info → umap_project-2.6.0.dist-info}/entry_points.txt +0 -0
  276. {umap_project-2.5.1.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-02-15 13:53+0000\n"
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: *Sociologist Abedi*, 2021,2023\n"
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:371
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:50
41
+ #: models.py:54 models.py:73
41
42
  msgid "name"
42
43
  msgstr "نام"
43
44
 
44
- #: models.py:81
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:82
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:92
57
+ #: models.py:115
53
58
  msgid "URL template using OSM tile format"
54
- msgstr "قالب آدرس اینترنتی با استفاده از قالب کاشی OSM"
59
+ msgstr "الگوی نشانی اینترنتی با توجه به قالب کاشی OSM"
55
60
 
56
- #: models.py:98
61
+ #: models.py:121
57
62
  msgid "Order of the tilelayers in the edit box"
58
- msgstr "ترتیب لایه های کاشی در جعبه ویرایش"
63
+ msgstr "ترتیب لایه‌های کاشی در جعبهٔ ویرایش"
59
64
 
60
- #: models.py:144 models.py:372
65
+ #: models.py:167 models.py:424
61
66
  msgid "Everyone"
62
- msgstr ""
67
+ msgstr "همه"
63
68
 
64
- #: models.py:145 models.py:151 models.py:373
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:146 models.py:374
73
+ #: models.py:169 models.py:426
69
74
  msgid "Owner only"
70
- msgstr ""
75
+ msgstr "فقط مالک"
71
76
 
72
- #: models.py:149
77
+ #: models.py:172
73
78
  msgid "Everyone (public)"
74
- msgstr ""
79
+ msgstr "همه (عمومی)"
75
80
 
76
- #: models.py:150
81
+ #: models.py:173
77
82
  msgid "Anyone with link"
78
- msgstr ""
83
+ msgstr "هر کسی با پیوند"
79
84
 
80
- #: models.py:152
85
+ #: models.py:175
81
86
  msgid "Blocked"
82
87
  msgstr ""
83
88
 
84
- #: models.py:155 models.py:378
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:157
93
+ #: models.py:179
93
94
  msgid "zoom"
94
- msgstr "بزرگ‌نمایی"
95
+ msgstr "زوم"
95
96
 
96
- #: models.py:159
97
+ #: models.py:181
97
98
  msgid "locate"
98
- msgstr "مکان یابی"
99
+ msgstr "مکان‌یابی"
99
100
 
100
- #: models.py:159
101
+ #: models.py:181
101
102
  msgid "Locate user on load?"
102
- msgstr "کاربر را در حال بارگیری مکان یابی کنید؟"
103
+ msgstr "کاربر هنگام بارشدن مکان‌یابی شود؟"
103
104
 
104
- #: models.py:163
105
+ #: models.py:185
105
106
  msgid "Choose the map licence."
106
107
  msgstr "مجوز نقشه را انتخاب کنید."
107
108
 
108
- #: models.py:164
109
+ #: models.py:186
109
110
  msgid "licence"
110
111
  msgstr "مجوز"
111
112
 
112
- #: models.py:175
113
+ #: models.py:197
113
114
  msgid "owner"
114
115
  msgstr "مالک"
115
116
 
116
- #: models.py:179
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:184 models.py:392
125
+ #: models.py:213 models.py:447
121
126
  msgid "edit status"
122
127
  msgstr "ویرایش وضعیت"
123
128
 
124
- #: models.py:189
129
+ #: models.py:218
125
130
  msgid "share status"
126
- msgstr "وضعیت اشتراک گذاری"
131
+ msgstr "وضعیت همرسانی"
127
132
 
128
- #: models.py:192 models.py:387
133
+ #: models.py:221 models.py:442
129
134
  msgid "settings"
130
135
  msgstr "تنظیمات"
131
136
 
132
- #: models.py:320
137
+ #: models.py:364
133
138
  msgid "Clone of"
134
- msgstr "کلون از"
139
+ msgstr "همانندسازی‌شده از"
135
140
 
136
- #: models.py:382
141
+ #: models.py:437
137
142
  msgid "display on load"
138
- msgstr "نمایش روی بارگذاری"
143
+ msgstr "نمایش هنگام بارشدن"
139
144
 
140
- #: models.py:383
145
+ #: models.py:438
141
146
  msgid "Display this layer on load."
142
- msgstr "این لایه را روی بارگذاری نمایش دهید."
147
+ msgstr "این لایه هنگام بارشدن نمایش داده شود."
143
148
 
144
- #: templates/404.html:6
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:5
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:12
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:6
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:25
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:31
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:33
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:5
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:12
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:12
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:16
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:28
205
+ #: templates/registration/login.html:41
205
206
  msgid "Username"
206
207
  msgstr "نام کاربری"
207
208
 
208
- #: templates/registration/login.html:31
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:37
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:11
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 "uMap به شما این امکان را می‌دهد تا در یک دقیقه با لایه‌های <a href=\"%(osm_url)s\" />اوپن‌استریت‌مپ</a> نقشه ایجاد کنید و آن‌ها را در سایت خود قرار دهید."
222
+ msgstr "در uMap می‌توانید با لایه‌های <a href=\"%(osm_url)s\" />اوپن‌استریت‌مپ</a> خیلی سریع یک نقشه بسازید و در وبسایت خود جاسازی کنید."
226
223
 
227
- #: templates/umap/about_summary.html:21
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:22
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:23
232
+ #: templates/umap/about_summary.html:29
236
233
  msgid "Manage POIs colours and icons"
237
- msgstr "رنگ‌ها و آیکون‌های POI را مدیریت کنید"
234
+ msgstr "مدیریت رنگ و نماد نقاط توجه"
238
235
 
239
- #: templates/umap/about_summary.html:24
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:25
240
+ #: templates/umap/about_summary.html:35
244
241
  msgid "Batch import geostructured data (geojson, gpx, kml, osm...)"
245
- msgstr "واردات داده های زمین ساختار (geojson ، gpx ، kml ، osm ...)"
242
+ msgstr "درون‌برد داده‌های زمین‌مرجع (geojson،‏ gpx،‏ kml،‏ osm و...)"
246
243
 
247
- #: templates/umap/about_summary.html:26
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:27
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:37
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\">متن باز</a> است!"
255
+ msgstr "و <a href=\"%(repo_url)s\">متن‌باز</a> است!"
259
256
 
260
- #: templates/umap/about_summary.html:48 templates/umap/navigation.html:38
261
- #: templates/umap/user_dashboard.html:42
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:51
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/content.html:22
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:30
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 "این یک نمونه آزمایشی است که برای آزمایشات و نسخه های پیش از انتشار استفاده می شود. اگر به نمونه پایدار نیاز دارید، لطفاً <a href=\"%(stable_url)s\">%(stable_url)s</a> استفاده کنید. همچنین می توانید نمونه شخصی خود را میزبانی کنید، <a href=\"%(repo_url)s\"> منبع باز است!"
325
+ msgstr "این یک نمونهٔ نمایشی است که برای آزمایش و نسخه‌های پیشا-انتشار استفاده می‌شود. اگر به نمونهٔ پایدار نیاز دارید، لطفاً <a href=\"%(stable_url)s\">%(stable_url)s</a> استفاده کنید. همچنین می‌توانید نمونهٔ شخصی خود را میزبانی کنید؛ زیرا <a href=\"%(repo_url)s\">متن‌باز</a> است!"
283
326
 
284
- #: templates/umap/home.html:8
285
- msgid "Map of the uMaps"
286
- msgstr "نقشه uMaps"
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:2
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:9 views.py:341
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:17
380
+ #: templates/umap/map_list.html:20
301
381
  msgid "More"
302
382
  msgstr "بیشتر"
303
383
 
304
- #: templates/umap/map_table.html:6
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:7
388
+ #: templates/umap/map_table.html:11
309
389
  msgid "Preview"
310
- msgstr ""
390
+ msgstr "پیش‌نمایش"
311
391
 
312
- #: templates/umap/map_table.html:8
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:9
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:10
400
+ #: templates/umap/map_table.html:20
321
401
  msgid "Last save"
322
- msgstr ""
402
+ msgstr "آخرین ذخیره‌سازی"
323
403
 
324
- #: templates/umap/map_table.html:11
404
+ #: templates/umap/map_table.html:23
325
405
  msgid "Owner"
326
- msgstr ""
406
+ msgstr "مالک"
327
407
 
328
- #: templates/umap/map_table.html:12
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:25 templates/umap/map_table.html:27
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:46 templates/umap/map_table.html:48
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:51 templates/umap/map_table.html:53
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:56 templates/umap/map_table.html:58
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:63 templates/umap/map_table.html:65
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:73 templates/umap/map_table.html:75
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:88
437
+ #: templates/umap/map_table.html:117
357
438
  msgid "first"
358
- msgstr ""
439
+ msgstr "اول"
359
440
 
360
- #: templates/umap/map_table.html:89
441
+ #: templates/umap/map_table.html:118
361
442
  msgid "previous"
362
- msgstr ""
443
+ msgstr "قبلی"
363
444
 
364
- #: templates/umap/map_table.html:98
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:104
450
+ #: templates/umap/map_table.html:131
370
451
  msgid "next"
371
- msgstr ""
452
+ msgstr "بعدی"
372
453
 
373
- #: templates/umap/map_table.html:105
454
+ #: templates/umap/map_table.html:132
374
455
  msgid "last"
375
- msgstr ""
456
+ msgstr "آخر"
376
457
 
377
- #: templates/umap/map_table.html:113
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:118
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:10 templates/umap/user_dashboard.html:4
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:13
472
+ #: templates/umap/navigation.html:14
392
473
  msgid "Starred maps"
393
- msgstr ""
474
+ msgstr "نقشه‌های ستاره‌دار"
394
475
 
395
- #: templates/umap/navigation.html:17
476
+ #: templates/umap/navigation.html:18
396
477
  msgid "Log in"
397
478
  msgstr "ورود"
398
479
 
399
- #: templates/umap/navigation.html:17
480
+ #: templates/umap/navigation.html:18
400
481
  msgid "Sign in"
401
- msgstr "ثبت نام"
482
+ msgstr "ثبت‌نام"
402
483
 
403
- #: templates/umap/navigation.html:21
484
+ #: templates/umap/navigation.html:22
404
485
  msgid "About"
405
486
  msgstr "درباره"
406
487
 
407
- #: templates/umap/navigation.html:24
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:33
492
+ #: templates/umap/navigation.html:34
416
493
  msgid "Log out"
417
494
  msgstr "خروج"
418
495
 
419
- #: templates/umap/password_change.html:4
496
+ #: templates/umap/password_change.html:7
420
497
  msgid "Password change"
421
- msgstr "تغییر رمز عبور"
498
+ msgstr "تغییر گذرواژه"
422
499
 
423
- #: templates/umap/password_change.html:6
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:13
506
+ #: templates/umap/password_change.html:17
430
507
  msgid "Old password"
431
- msgstr "رمز عبور قدیمی"
508
+ msgstr "گذرواژهٔ قدیمی"
432
509
 
433
- #: templates/umap/password_change.html:18
510
+ #: templates/umap/password_change.html:22
434
511
  msgid "New password"
435
- msgstr "رمز عبور جدید"
512
+ msgstr "گذرواژهٔ جدید"
436
513
 
437
- #: templates/umap/password_change.html:22
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:23
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:4
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:5
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:10
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:18
537
+ #: templates/umap/search.html:24
461
538
  msgid "No map found."
462
- msgstr ""
539
+ msgstr "نقشه‌ای پیدا نشد."
463
540
 
464
- #: templates/umap/search.html:21
541
+ #: templates/umap/search.html:29
465
542
  msgid "Latest created maps"
466
- msgstr ""
543
+ msgstr "آخرین نقشه‌های ساخته‌شده"
467
544
 
468
- #: templates/umap/search_bar.html:3
545
+ #: templates/umap/search_bar.html:4
469
546
  msgid "Search maps"
470
547
  msgstr "جستجوی نقشه‌ها"
471
548
 
472
- #: templates/umap/search_bar.html:14
549
+ #: templates/umap/search_bar.html:15
473
550
  msgid "Search"
474
551
  msgstr "جستجو"
475
552
 
476
- #: templates/umap/user_dashboard.html:7 templates/umap/user_dashboard.html:26
477
- msgid "Search my maps"
478
- msgstr ""
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/user_dashboard.html:11
558
+ #: templates/umap/team_detail.html:22
481
559
  #, python-format
482
- msgid "My Maps (%(count)s)"
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/user_dashboard.html:13
486
- msgid "My profile"
567
+ #: templates/umap/team_form.html:47
568
+ msgid "Add user"
487
569
  msgstr ""
488
570
 
489
- #: templates/umap/user_dashboard.html:21 templates/umap/user_dashboard.html:23
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:32
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:42
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:346
605
+ #: views.py:438
503
606
  msgid "View the map"
504
- msgstr "مشاهده نقشه"
607
+ msgstr "مشاهدهٔ نقشه"
505
608
 
506
- #: views.py:704
609
+ #: views.py:824
507
610
  msgid "See full screen"
508
- msgstr ""
611
+ msgstr "تمام‌صفحه ببینید"
509
612
 
510
- #: views.py:803
613
+ #: views.py:953
511
614
  msgid "Map editors updated with success!"
512
- msgstr "ویراستاران نقشه با موفقیت به روز شد!"
615
+ msgstr "ویرایشگران نقشه با موفقیت روزآمد شد!"
513
616
 
514
- #: views.py:841
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:844
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:850
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:861
637
+ #: views.py:1013
530
638
  msgid "Only its owner can delete the map."
531
639
  msgstr "فقط مالک آن می‌تواند نقشه را حذف کند."
532
640
 
533
- #: views.py:889
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 "نقشه شما شبیه سازی شده است! اگر می خواهید این نقشه را از رایانه دیگری ویرایش کنید، لطفاً از این پیوند استفاده کنید: %(anonymous_url)s"
650
+ msgstr "از نقشهٔ شما همانندسازی شد! اگر می‌خواهید این نقشه را از رایانهٔ دیگری ویرایش کنید، لطفاً از این پیوند استفاده کنید: %(anonymous_url)s"
539
651
 
540
- #: views.py:894
652
+ #: views.py:1047
541
653
  msgid "Congratulations, your map has been cloned!"
542
- msgstr "تبریک می گویم، نقشه شما شبیه سازی شده است!"
654
+ msgstr "تبریک، نقشهٔ شما همانندسازی شد!"
543
655
 
544
- #: views.py:1130
656
+ #: views.py:1282
545
657
  msgid "Layer successfully deleted."
546
658
  msgstr "لایه با موفقیت حذف شد."
547
659
 
548
- #: views.py:1152
660
+ #: views.py:1304
549
661
  msgid "Permissions updated with success!"
550
- msgstr ""
662
+ msgstr "مجوزها با موفقیت روزآمد شد!"