umap-project 3.0.5__py3-none-any.whl → 3.1.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 (145) hide show
  1. umap/__init__.py +1 -1
  2. umap/forms.py +1 -1
  3. umap/locale/br/LC_MESSAGES/django.mo +0 -0
  4. umap/locale/br/LC_MESSAGES/django.po +219 -72
  5. umap/locale/ca/LC_MESSAGES/django.mo +0 -0
  6. umap/locale/ca/LC_MESSAGES/django.po +286 -95
  7. umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
  8. umap/locale/cs_CZ/LC_MESSAGES/django.po +211 -65
  9. umap/locale/da/LC_MESSAGES/django.mo +0 -0
  10. umap/locale/da/LC_MESSAGES/django.po +394 -202
  11. umap/locale/de/LC_MESSAGES/django.mo +0 -0
  12. umap/locale/de/LC_MESSAGES/django.po +146 -75
  13. umap/locale/el/LC_MESSAGES/django.mo +0 -0
  14. umap/locale/el/LC_MESSAGES/django.po +125 -59
  15. umap/locale/en/LC_MESSAGES/django.mo +0 -0
  16. umap/locale/en/LC_MESSAGES/django.po +124 -58
  17. umap/locale/es/LC_MESSAGES/django.mo +0 -0
  18. umap/locale/es/LC_MESSAGES/django.po +125 -59
  19. umap/locale/et/LC_MESSAGES/django.mo +0 -0
  20. umap/locale/et/LC_MESSAGES/django.po +210 -64
  21. umap/locale/eu/LC_MESSAGES/django.mo +0 -0
  22. umap/locale/eu/LC_MESSAGES/django.po +212 -65
  23. umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
  24. umap/locale/fa_IR/LC_MESSAGES/django.po +286 -95
  25. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  26. umap/locale/fr/LC_MESSAGES/django.po +125 -59
  27. umap/locale/gl/LC_MESSAGES/django.mo +0 -0
  28. umap/locale/gl/LC_MESSAGES/django.po +212 -66
  29. umap/locale/hu/LC_MESSAGES/django.mo +0 -0
  30. umap/locale/hu/LC_MESSAGES/django.po +148 -78
  31. umap/locale/is/LC_MESSAGES/django.mo +0 -0
  32. umap/locale/is/LC_MESSAGES/django.po +130 -60
  33. umap/locale/it/LC_MESSAGES/django.mo +0 -0
  34. umap/locale/it/LC_MESSAGES/django.po +219 -73
  35. umap/locale/ms/LC_MESSAGES/django.mo +0 -0
  36. umap/locale/ms/LC_MESSAGES/django.po +289 -98
  37. umap/locale/nl/LC_MESSAGES/django.mo +0 -0
  38. umap/locale/nl/LC_MESSAGES/django.po +128 -61
  39. umap/locale/pl/LC_MESSAGES/django.mo +0 -0
  40. umap/locale/pl/LC_MESSAGES/django.po +287 -96
  41. umap/locale/pt/LC_MESSAGES/django.mo +0 -0
  42. umap/locale/pt/LC_MESSAGES/django.po +211 -65
  43. umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
  44. umap/locale/zh_TW/LC_MESSAGES/django.po +212 -66
  45. umap/management/commands/migrate_to_S3.py +42 -20
  46. umap/management/commands/purge_old_versions.py +63 -0
  47. umap/management/commands/switch_user.py +52 -0
  48. umap/managers.py +29 -2
  49. umap/middleware.py +1 -1
  50. umap/migrations/0028_map_is_template.py +21 -0
  51. umap/models.py +14 -4
  52. umap/settings/base.py +22 -0
  53. umap/static/umap/base.css +4 -2
  54. umap/static/umap/content.css +1 -1
  55. umap/static/umap/css/dialog.css +5 -2
  56. umap/static/umap/css/form.css +19 -12
  57. umap/static/umap/css/icon.css +6 -0
  58. umap/static/umap/css/importers.css +4 -0
  59. umap/static/umap/css/panel.css +2 -0
  60. umap/static/umap/img/16-white.svg +5 -1
  61. umap/static/umap/img/16.svg +1 -1
  62. umap/static/umap/img/24-white.svg +3 -2
  63. umap/static/umap/img/24.svg +3 -4
  64. umap/static/umap/img/importers/opendata.svg +1 -0
  65. umap/static/umap/img/source/16-white.svg +8 -4
  66. umap/static/umap/img/source/16.svg +1 -1
  67. umap/static/umap/img/source/24-white.svg +5 -4
  68. umap/static/umap/img/source/24.svg +5 -6
  69. umap/static/umap/js/components/modal.js +27 -0
  70. umap/static/umap/js/modules/caption.js +4 -4
  71. umap/static/umap/js/modules/data/features.js +40 -4
  72. umap/static/umap/js/modules/data/layer.js +208 -138
  73. umap/static/umap/js/modules/form/builder.js +6 -14
  74. umap/static/umap/js/modules/form/fields.js +2 -2
  75. umap/static/umap/js/modules/help.js +15 -3
  76. umap/static/umap/js/modules/importer.js +7 -4
  77. umap/static/umap/js/modules/importers/opendata.js +142 -0
  78. umap/static/umap/js/modules/permissions.js +3 -3
  79. umap/static/umap/js/modules/rendering/controls.js +34 -2
  80. umap/static/umap/js/modules/rendering/icon.js +2 -2
  81. umap/static/umap/js/modules/rendering/layers/base.js +1 -1
  82. umap/static/umap/js/modules/rendering/layers/classified.js +55 -49
  83. umap/static/umap/js/modules/rendering/layers/cluster.js +16 -9
  84. umap/static/umap/js/modules/rendering/layers/heat.js +13 -11
  85. umap/static/umap/js/modules/rendering/map.js +5 -0
  86. umap/static/umap/js/modules/rendering/ui.js +23 -0
  87. umap/static/umap/js/modules/rules.js +24 -23
  88. umap/static/umap/js/modules/schema.js +60 -4
  89. umap/static/umap/js/modules/sync/updaters.js +7 -3
  90. umap/static/umap/js/modules/tableeditor.js +7 -30
  91. umap/static/umap/js/modules/templates.js +122 -0
  92. umap/static/umap/js/modules/ui/bar.js +13 -3
  93. umap/static/umap/js/modules/ui/panel.js +1 -1
  94. umap/static/umap/js/modules/umap.js +28 -13
  95. umap/static/umap/js/umap.controls.js +11 -4
  96. umap/static/umap/locale/br.js +51 -18
  97. umap/static/umap/locale/br.json +51 -18
  98. umap/static/umap/locale/da.js +343 -310
  99. umap/static/umap/locale/da.json +343 -310
  100. umap/static/umap/locale/de.js +40 -7
  101. umap/static/umap/locale/de.json +40 -7
  102. umap/static/umap/locale/el.js +31 -4
  103. umap/static/umap/locale/el.json +31 -4
  104. umap/static/umap/locale/en.js +34 -1
  105. umap/static/umap/locale/en.json +34 -1
  106. umap/static/umap/locale/es.js +37 -4
  107. umap/static/umap/locale/es.json +37 -4
  108. umap/static/umap/locale/fr.js +34 -1
  109. umap/static/umap/locale/fr.json +34 -1
  110. umap/static/umap/locale/hu.js +44 -17
  111. umap/static/umap/locale/hu.json +44 -17
  112. umap/static/umap/locale/it.js +74 -41
  113. umap/static/umap/locale/it.json +74 -41
  114. umap/static/umap/locale/nl.js +42 -9
  115. umap/static/umap/locale/nl.json +42 -9
  116. umap/static/umap/map.css +3 -23
  117. umap/static/umap/vendors/textpath/leaflet.textpath.js +184 -0
  118. umap/storage/fs.py +19 -9
  119. umap/templates/umap/dashboard_menu.html +5 -0
  120. umap/templates/umap/design_system.html +9 -0
  121. umap/templates/umap/js.html +3 -0
  122. umap/templates/umap/map_init.html +3 -1
  123. umap/templates/umap/map_list.html +2 -2
  124. umap/templates/umap/map_table.html +18 -18
  125. umap/templates/umap/user_dashboard.html +9 -58
  126. umap/templates/umap/user_map_table.html +36 -0
  127. umap/templates/umap/user_templates.html +19 -0
  128. umap/templatetags/umap_tags.py +5 -0
  129. umap/tests/integration/test_basics.py +9 -1
  130. umap/tests/integration/test_conditional_rules.py +57 -0
  131. umap/tests/integration/test_datalayer.py +16 -9
  132. umap/tests/integration/test_edit_marker.py +11 -0
  133. umap/tests/integration/test_tableeditor.py +42 -7
  134. umap/tests/integration/test_templates.py +44 -0
  135. umap/tests/test_dashboard.py +19 -0
  136. umap/tests/test_purge_old_versions.py +91 -0
  137. umap/tests/test_switch_user.py +31 -0
  138. umap/tests/test_views.py +67 -0
  139. umap/urls.py +7 -1
  140. umap/views.py +65 -19
  141. {umap_project-3.0.5.dist-info → umap_project-3.1.0.dist-info}/METADATA +15 -15
  142. {umap_project-3.0.5.dist-info → umap_project-3.1.0.dist-info}/RECORD +145 -132
  143. {umap_project-3.0.5.dist-info → umap_project-3.1.0.dist-info}/WHEEL +0 -0
  144. {umap_project-3.0.5.dist-info → umap_project-3.1.0.dist-info}/entry_points.txt +0 -0
  145. {umap_project-3.0.5.dist-info → umap_project-3.1.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: 2024-12-24 08:39+0000\n"
15
+ "POT-Creation-Date: 2025-06-10 09:19+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"
@@ -30,138 +30,238 @@ msgstr ""
30
30
  msgid "This map is not publicly available"
31
31
  msgstr ""
32
32
 
33
- #: middleware.py:13
33
+ #: middleware.py:19
34
34
  msgid "Site is readonly for maintenance"
35
35
  msgstr "سایت برای امور نگهداری در حالت فقط‌خواندنی قرار دارد"
36
36
 
37
- #: models.py:60 models.py:79
37
+ #: middleware.py:34
38
+ #, python-format
39
+ msgid ""
40
+ "Using “%(name)s” to authenticate is deprecated and will be removed soon. "
41
+ "Please configure another provider below before losing access to your account"
42
+ " and maps. Then, please logout and login again with the new provider."
43
+ msgstr ""
44
+
45
+ #: models.py:61 models.py:80
38
46
  msgid "name"
39
47
  msgstr "نام"
40
48
 
41
- #: models.py:62 models.py:475
49
+ #: models.py:63 models.py:503
42
50
  msgid "description"
43
51
  msgstr "توضیحات"
44
52
 
45
- #: models.py:110
53
+ #: models.py:111
46
54
  msgid "details"
47
55
  msgstr "جزئیات"
48
56
 
49
- #: models.py:111
57
+ #: models.py:112
50
58
  msgid "Link to a page where the licence is detailed."
51
59
  msgstr "پیوند به صفحه‌ای که شرح مجوز در آن آمده است."
52
60
 
53
- #: models.py:121
61
+ #: models.py:122
54
62
  msgid "URL template using OSM tile format"
55
63
  msgstr "الگوی نشانی اینترنتی با توجه به قالب کاشی OSM"
56
64
 
57
- #: models.py:127
65
+ #: models.py:128
58
66
  msgid "Order of the tilelayers in the edit box"
59
67
  msgstr "ترتیب لایه‌های کاشی در جعبهٔ ویرایش"
60
68
 
61
- #: models.py:175 models.py:469
69
+ #: models.py:176 models.py:497
62
70
  msgid "Only editable with secret edit link"
63
71
  msgstr "فقط با پیوند محرمانهٔ ویرایش، ویرایش می‌شود"
64
72
 
65
- #: models.py:176 models.py:470
73
+ #: models.py:177 models.py:498
66
74
  msgid "Everyone can edit"
67
75
  msgstr "همه می‌توانند ویرایش کنند"
68
76
 
69
- #: models.py:179 models.py:463
77
+ #: models.py:180 models.py:491
70
78
  msgid "Everyone"
71
79
  msgstr "همه"
72
80
 
73
- #: models.py:180 models.py:189 models.py:464
81
+ #: models.py:181 models.py:190 models.py:492
74
82
  msgid "Editors and team only"
75
83
  msgstr ""
76
84
 
77
- #: models.py:181 models.py:465
85
+ #: models.py:182 models.py:493
78
86
  msgid "Owner only"
79
87
  msgstr "فقط مالک"
80
88
 
81
- #: models.py:184
89
+ #: models.py:185
82
90
  msgid "Draft (private)"
83
91
  msgstr ""
84
92
 
85
- #: models.py:185
93
+ #: models.py:186
86
94
  msgid "Everyone (public)"
87
95
  msgstr "همه (عمومی)"
88
96
 
89
- #: models.py:188
97
+ #: models.py:189
90
98
  msgid "Anyone with link"
91
99
  msgstr "هر کسی با پیوند"
92
100
 
93
- #: models.py:190
101
+ #: models.py:191
94
102
  msgid "Blocked"
95
103
  msgstr ""
96
104
 
97
- #: models.py:191
105
+ #: models.py:192 models.py:487
98
106
  msgid "Deleted"
99
107
  msgstr ""
100
108
 
101
- #: models.py:194
109
+ #: models.py:195
102
110
  msgid "center"
103
111
  msgstr "مرکز"
104
112
 
105
- #: models.py:195
113
+ #: models.py:196
106
114
  msgid "zoom"
107
115
  msgstr "زوم"
108
116
 
109
- #: models.py:197
117
+ #: models.py:198
110
118
  msgid "locate"
111
119
  msgstr "مکان‌یابی"
112
120
 
113
- #: models.py:197
121
+ #: models.py:198
114
122
  msgid "Locate user on load?"
115
123
  msgstr "کاربر هنگام بارشدن مکان‌یابی شود؟"
116
124
 
117
- #: models.py:201
125
+ #: models.py:202
118
126
  msgid "Choose the map licence."
119
127
  msgstr "مجوز نقشه را انتخاب کنید."
120
128
 
121
- #: models.py:202
129
+ #: models.py:203
122
130
  msgid "licence"
123
131
  msgstr "مجوز"
124
132
 
125
- #: models.py:213
133
+ #: models.py:214
126
134
  msgid "owner"
127
135
  msgstr "مالک"
128
136
 
129
- #: models.py:217
137
+ #: models.py:218
130
138
  msgid "editors"
131
139
  msgstr "ویرایشگران"
132
140
 
133
- #: models.py:223
141
+ #: models.py:224
134
142
  msgid "team"
135
143
  msgstr ""
136
144
 
137
- #: models.py:229 models.py:491
145
+ #: models.py:230 models.py:519
138
146
  msgid "edit status"
139
147
  msgstr "ویرایش وضعیت"
140
148
 
141
- #: models.py:234
149
+ #: models.py:235 models.py:524
142
150
  msgid "share status"
143
151
  msgstr "وضعیت همرسانی"
144
152
 
145
- #: models.py:237 models.py:486
153
+ #: models.py:238 models.py:514
146
154
  msgid "settings"
147
155
  msgstr "تنظیمات"
148
156
 
149
- #: models.py:402
157
+ #: models.py:243
158
+ msgid "save as template"
159
+ msgstr ""
160
+
161
+ #: models.py:244
162
+ msgid "This map is a template map."
163
+ msgstr ""
164
+
165
+ #: models.py:420
150
166
  msgid "Clone of"
151
167
  msgstr "همانندسازی‌شده از"
152
168
 
153
- #: models.py:462 models.py:468
169
+ #: models.py:486 models.py:490 models.py:496
154
170
  msgid "Inherit"
155
171
  msgstr "ارث‌بردن"
156
172
 
157
- #: models.py:481
173
+ #: models.py:509
158
174
  msgid "display on load"
159
175
  msgstr "نمایش هنگام بارشدن"
160
176
 
161
- #: models.py:482
177
+ #: models.py:510
162
178
  msgid "Display this layer on load."
163
179
  msgstr "این لایه هنگام بارشدن نمایش داده شود."
164
180
 
181
+ #: settings/base.py:283
182
+ msgid "uMap user documentation"
183
+ msgstr ""
184
+
185
+ #: settings/base.py:288
186
+ msgid "Video tutorials"
187
+ msgstr ""
188
+
189
+ #: settings/base.py:293
190
+ msgid "OpenStreetMap.org forum"
191
+ msgstr ""
192
+
193
+ #: settings/base.py:298
194
+ msgid "OpenStreetMap France forum"
195
+ msgstr ""
196
+
197
+ #: settings/base.py:318
198
+ msgid "Art and Culture"
199
+ msgstr ""
200
+
201
+ #: settings/base.py:319
202
+ msgid "Cycling"
203
+ msgstr ""
204
+
205
+ #: settings/base.py:320
206
+ msgid "Business"
207
+ msgstr ""
208
+
209
+ #: settings/base.py:321
210
+ msgid "Environment"
211
+ msgstr ""
212
+
213
+ #: settings/base.py:322
214
+ msgid "Education"
215
+ msgstr ""
216
+
217
+ #: settings/base.py:323
218
+ msgid "Food and Agriculture"
219
+ msgstr ""
220
+
221
+ #: settings/base.py:324
222
+ msgid "Geopolitics"
223
+ msgstr ""
224
+
225
+ #: settings/base.py:325
226
+ msgid "Health"
227
+ msgstr ""
228
+
229
+ #: settings/base.py:326
230
+ msgid "Hiking"
231
+ msgstr ""
232
+
233
+ #: settings/base.py:327
234
+ msgid "History"
235
+ msgstr ""
236
+
237
+ #: settings/base.py:328
238
+ msgid "Public sector"
239
+ msgstr ""
240
+
241
+ #: settings/base.py:329
242
+ msgid "Science"
243
+ msgstr ""
244
+
245
+ #: settings/base.py:330
246
+ msgid "Shopping"
247
+ msgstr ""
248
+
249
+ #: settings/base.py:331
250
+ msgid "Sport and Leisure"
251
+ msgstr ""
252
+
253
+ #: settings/base.py:332
254
+ msgid "Travel"
255
+ msgstr ""
256
+
257
+ #: settings/base.py:333
258
+ msgid "Transports"
259
+ msgstr ""
260
+
261
+ #: settings/base.py:334
262
+ msgid "Tourism"
263
+ msgstr ""
264
+
165
265
  #: templates/403.html:8
166
266
  msgid ""
167
267
  "<a href=\"https://discover.umap-project.org/support/faq/#map-statuses\" "
@@ -177,40 +277,54 @@ msgstr ""
177
277
  msgid "404 Page Not Found"
178
278
  msgstr ""
179
279
 
180
- #: templates/auth/user_detail.html:8
280
+ #: templates/auth/user_detail.html:6
281
+ #, python-format
282
+ msgid "%(current_user)s’s maps"
283
+ msgstr ""
284
+
285
+ #: templates/auth/user_detail.html:12
181
286
  #, python-format
182
287
  msgid "Browse %(current_user)s's maps"
183
288
  msgstr "نقشه‌های %(current_user)s را مرور کنید"
184
289
 
185
- #: templates/auth/user_detail.html:17
290
+ #: templates/auth/user_detail.html:21
186
291
  #, python-format
187
292
  msgid "%(current_user)s has no maps."
188
293
  msgstr "%(current_user)s هیچ نقشه‌ای ندارد"
189
294
 
190
- #: templates/auth/user_form.html:21 templates/umap/team_form.html:21
295
+ #: templates/auth/user_form.html:6
296
+ msgid "My Profile"
297
+ msgstr ""
298
+
299
+ #: templates/auth/user_form.html:24 templates/umap/team_form.html:25
191
300
  msgid "Save"
192
301
  msgstr "ذخیره"
193
302
 
194
- #: templates/auth/user_form.html:27
303
+ #: templates/auth/user_form.html:30
195
304
  msgid "Your current providers"
196
305
  msgstr "خدمات‌دهندگان فعلی شما"
197
306
 
198
- #: templates/auth/user_form.html:39
307
+ #: templates/auth/user_form.html:44
199
308
  msgid "Connect to another provider"
200
309
  msgstr "اتصال به خدمات‌دهندهٔ دیگر"
201
310
 
202
- #: templates/auth/user_form.html:42
311
+ #: templates/auth/user_form.html:47
203
312
  msgid ""
204
313
  "It's a good habit to connect your account to more than one provider, in case"
205
314
  " one provider becomes unavailable, temporarily or even permanently."
206
315
  msgstr "رویهٔ خوبی است اگر حساب کاربری خود را به بیش از یک خدمات‌دهنده متصل کنید. زیرا ممکن است یکی از خدمات‌دهندگان به‌طور موقت یا دائم از دسترس خارج شود."
207
316
 
208
- #: templates/auth/user_stars.html:8
317
+ #: templates/auth/user_stars.html:6
318
+ #, python-format
319
+ msgid "%(current_user)s’s starred maps"
320
+ msgstr ""
321
+
322
+ #: templates/auth/user_stars.html:12
209
323
  #, python-format
210
324
  msgid "Browse %(current_user)s's starred maps"
211
325
  msgstr "نقشه‌های ستاره‌دار %(current_user)s را مرور کنید"
212
326
 
213
- #: templates/auth/user_stars.html:17
327
+ #: templates/auth/user_stars.html:21
214
328
  #, python-format
215
329
  msgid "%(current_user)s has no starred maps yet."
216
330
  msgstr "%(current_user)s هنوز نقشهٔ ستاره‌داری ندارد."
@@ -245,6 +359,10 @@ msgstr "گذرواژه"
245
359
  msgid "Please choose a provider:"
246
360
  msgstr ""
247
361
 
362
+ #: templates/umap/about.html:5 templates/umap/navigation.html:22
363
+ msgid "About"
364
+ msgstr "درباره"
365
+
248
366
  #: templates/umap/about_summary.html:12
249
367
  #, python-format
250
368
  msgid ""
@@ -286,7 +404,7 @@ msgid "And it's <a href=\"%(repo_url)s\">open source</a>!"
286
404
  msgstr "و <a href=\"%(repo_url)s\">متن‌باز</a> است!"
287
405
 
288
406
  #: templates/umap/about_summary.html:63 templates/umap/navigation.html:39
289
- #: templates/umap/user_dashboard.html:40
407
+ #: templates/umap/user_dashboard.html:16
290
408
  msgid "Create a map"
291
409
  msgstr "ساخت نقشه"
292
410
 
@@ -384,11 +502,20 @@ msgstr "نقشه‌های من (%(count)s)"
384
502
  msgid "My Maps"
385
503
  msgstr "نقشه‌های من"
386
504
 
387
- #: templates/umap/dashboard_menu.html:12
505
+ #: templates/umap/dashboard_menu.html:11
506
+ #, python-format
507
+ msgid "My Templates (%(count)s)"
508
+ msgstr ""
509
+
510
+ #: templates/umap/dashboard_menu.html:13 templates/umap/user_templates.html:6
511
+ msgid "My Templates"
512
+ msgstr ""
513
+
514
+ #: templates/umap/dashboard_menu.html:17
388
515
  msgid "My profile"
389
516
  msgstr "نمایهٔ من"
390
517
 
391
- #: templates/umap/dashboard_menu.html:15
518
+ #: templates/umap/dashboard_menu.html:20
392
519
  msgid "My teams"
393
520
  msgstr ""
394
521
 
@@ -396,7 +523,7 @@ msgstr ""
396
523
  msgid "Map of the uMaps"
397
524
  msgstr "نقشهٔ uMapها"
398
525
 
399
- #: templates/umap/home.html:24
526
+ #: templates/umap/home.html:25
400
527
  msgid "Get inspired, browse maps"
401
528
  msgstr "الهام بگیرید، نقشه‌ها را مرور کنید"
402
529
 
@@ -404,15 +531,27 @@ msgstr "الهام بگیرید، نقشه‌ها را مرور کنید"
404
531
  msgid "You are logged in. Continuing..."
405
532
  msgstr "شما وارد شده‌اید. ادامه..."
406
533
 
407
- #: templates/umap/map_list.html:11 views.py:437
534
+ #: templates/umap/map_list.html:15
535
+ msgid "template"
536
+ msgstr ""
537
+
538
+ #: templates/umap/map_list.html:18 views.py:458
408
539
  msgid "by"
409
540
  msgstr "ساختهٔ"
410
541
 
411
- #: templates/umap/map_list.html:20
542
+ #: templates/umap/map_list.html:22
543
+ msgid "See the template"
544
+ msgstr ""
545
+
546
+ #: templates/umap/map_list.html:22
547
+ msgid "See the map"
548
+ msgstr ""
549
+
550
+ #: templates/umap/map_list.html:28
412
551
  msgid "More"
413
552
  msgstr "بیشتر"
414
553
 
415
- #: templates/umap/map_table.html:8 templates/umap/user_teams.html:14
554
+ #: templates/umap/map_table.html:8 templates/umap/user_teams.html:18
416
555
  msgid "Name"
417
556
  msgstr "نام"
418
557
 
@@ -436,11 +575,11 @@ msgstr "آخرین ذخیره‌سازی"
436
575
  msgid "Owner"
437
576
  msgstr "مالک"
438
577
 
439
- #: templates/umap/map_table.html:26 templates/umap/user_teams.html:20
578
+ #: templates/umap/map_table.html:26 templates/umap/user_teams.html:24
440
579
  msgid "Actions"
441
580
  msgstr "کنش‌ها"
442
581
 
443
- #: templates/umap/map_table.html:41 templates/umap/map_table.html:43
582
+ #: templates/umap/map_table.html:40 templates/umap/map_table.html:42
444
583
  msgid "Open preview"
445
584
  msgstr "بازکردن پیش‌نمایش"
446
585
 
@@ -449,7 +588,7 @@ msgid "Share"
449
588
  msgstr "همرسانی"
450
589
 
451
590
  #: templates/umap/map_table.html:78 templates/umap/map_table.html:80
452
- #: templates/umap/user_teams.html:38 templates/umap/user_teams.html:40
591
+ #: templates/umap/user_teams.html:42 templates/umap/user_teams.html:44
453
592
  msgid "Edit"
454
593
  msgstr "ویرایش"
455
594
 
@@ -512,10 +651,6 @@ msgstr "ورود"
512
651
  msgid "Sign in"
513
652
  msgstr "ثبت‌نام"
514
653
 
515
- #: templates/umap/navigation.html:22
516
- msgid "About"
517
- msgstr "درباره"
518
-
519
654
  #: templates/umap/navigation.html:30
520
655
  msgid "Change password"
521
656
  msgstr "تغییر گذرواژه"
@@ -524,52 +659,62 @@ msgstr "تغییر گذرواژه"
524
659
  msgid "Log out"
525
660
  msgstr "خروج"
526
661
 
527
- #: templates/umap/password_change.html:7
662
+ #: templates/umap/password_change.html:6
663
+ #: templates/umap/password_change.html:11
528
664
  msgid "Password change"
529
665
  msgstr "تغییر گذرواژه"
530
666
 
531
- #: templates/umap/password_change.html:10
667
+ #: templates/umap/password_change.html:14
532
668
  msgid ""
533
669
  "Please enter your old password, for security's sake, and then enter your new"
534
670
  " password twice so we can verify you typed it in correctly."
535
671
  msgstr "لطفاً برای حفظ امنیت گذرواژهٔ قدیمی خود را وارد کنید و سپس گذرواژهٔ جدید خود را دو بار وارد کنید تا مطمئن شویم آن را درست وارد کرده‌اید."
536
672
 
537
- #: templates/umap/password_change.html:17
673
+ #: templates/umap/password_change.html:21
538
674
  msgid "Old password"
539
675
  msgstr "گذرواژهٔ قدیمی"
540
676
 
541
- #: templates/umap/password_change.html:22
677
+ #: templates/umap/password_change.html:26
542
678
  msgid "New password"
543
679
  msgstr "گذرواژهٔ جدید"
544
680
 
545
- #: templates/umap/password_change.html:26
681
+ #: templates/umap/password_change.html:30
546
682
  msgid "New password confirmation"
547
683
  msgstr "تأیید گذرواژهٔ جدید"
548
684
 
549
- #: templates/umap/password_change.html:27
685
+ #: templates/umap/password_change.html:31
550
686
  msgid "Change my password"
551
687
  msgstr "گذرواژه‌ام را تغییر بده"
552
688
 
553
- #: templates/umap/password_change_done.html:7
689
+ #: templates/umap/password_change_done.html:6
690
+ #: templates/umap/password_change_done.html:11
554
691
  msgid "Password change successful"
555
692
  msgstr "تغییر گذرواژه موفقیت‌آمیز بود"
556
693
 
557
- #: templates/umap/password_change_done.html:10
694
+ #: templates/umap/password_change_done.html:14
558
695
  msgid "Your password was changed."
559
696
  msgstr "گذرواژهٔ شما تغییر کرد"
560
697
 
561
- #: templates/umap/search.html:15
698
+ #: templates/umap/search.html:6
699
+ msgid "Explore maps"
700
+ msgstr ""
701
+
702
+ #: templates/umap/search.html:19
562
703
  #, python-format
563
704
  msgid "%(count)s map found:"
564
705
  msgid_plural "%(count)s maps found:"
565
706
  msgstr[0] "%(count)s نقشه پیدا شد:"
566
707
  msgstr[1] "%(count)s نقشه پیدا شد:"
567
708
 
568
- #: templates/umap/search.html:24
709
+ #: templates/umap/search.html:30 templates/umap/user_dashboard.html:17
569
710
  msgid "No map found."
570
711
  msgstr "نقشه‌ای پیدا نشد."
571
712
 
572
- #: templates/umap/search.html:29
713
+ #: templates/umap/search.html:36
714
+ msgid "Latest created maps in category"
715
+ msgstr ""
716
+
717
+ #: templates/umap/search.html:43
573
718
  msgid "Latest created maps"
574
719
  msgstr "آخرین نقشه‌های ساخته‌شده"
575
720
 
@@ -577,117 +722,163 @@ msgstr "آخرین نقشه‌های ساخته‌شده"
577
722
  msgid "Search maps"
578
723
  msgstr "جستجوی نقشه‌ها"
579
724
 
580
- #: templates/umap/search_bar.html:15
725
+ #: templates/umap/search_bar.html:14
726
+ msgid "Any category"
727
+ msgstr ""
728
+
729
+ #: templates/umap/search_bar.html:19
581
730
  msgid "Search"
582
731
  msgstr "جستجو"
583
732
 
584
- #: templates/umap/team_detail.html:10
733
+ #: templates/umap/team_confirm_delete.html:6
734
+ msgid "Team deletion"
735
+ msgstr ""
736
+
737
+ #: templates/umap/team_detail.html:6
738
+ #, python-format
739
+ msgid "%(current_team)s’s maps"
740
+ msgstr ""
741
+
742
+ #: templates/umap/team_detail.html:14
585
743
  #, python-format
586
744
  msgid "Browse %(current_team)s's maps"
587
745
  msgstr "مرور نقشه‌های %(current_team)s"
588
746
 
589
- #: templates/umap/team_detail.html:22
747
+ #: templates/umap/team_detail.html:26
590
748
  #, python-format
591
749
  msgid "%(current_team)s has no public maps."
592
750
  msgstr "%(current_team)s نقشهٔ عمومی ندارد."
593
751
 
594
- #: templates/umap/team_form.html:24
752
+ #: templates/umap/team_form.html:6
753
+ msgid "Create or edit a team"
754
+ msgstr ""
755
+
756
+ #: templates/umap/team_form.html:28
595
757
  msgid "Delete this team"
596
758
  msgstr ""
597
759
 
598
- #: templates/umap/team_form.html:47
760
+ #: templates/umap/team_form.html:51
599
761
  msgid "Add user"
600
762
  msgstr ""
601
763
 
602
- #: templates/umap/user_dashboard.html:9 templates/umap/user_dashboard.html:25
764
+ #: templates/umap/user_dashboard.html:10
603
765
  msgid "Search my maps"
604
766
  msgstr "جستجو در نقشه‌های من"
605
767
 
606
- #: templates/umap/user_dashboard.html:17 templates/umap/user_dashboard.html:22
607
- msgid "Map’s title"
608
- msgstr "عنوان نقشه"
768
+ #: templates/umap/user_dashboard.html:11
769
+ msgid "Map’s name"
770
+ msgstr ""
609
771
 
610
- #: templates/umap/user_dashboard.html:30
772
+ #: templates/umap/user_dashboard.html:12
611
773
  #, python-format
612
774
  msgid "Download %(count)s maps"
613
775
  msgstr "بارگیری %(count)s نقشه"
614
776
 
615
- #: templates/umap/user_dashboard.html:40
777
+ #: templates/umap/user_dashboard.html:15
616
778
  msgid "You have no map yet."
617
779
  msgstr "هنوز نقشه‌ای ندارید"
618
780
 
619
- #: templates/umap/user_teams.html:17
781
+ #: templates/umap/user_teams.html:6
782
+ msgid "My Teams"
783
+ msgstr ""
784
+
785
+ #: templates/umap/user_teams.html:21
620
786
  msgid "Users"
621
787
  msgstr ""
622
788
 
623
- #: templates/umap/user_teams.html:48
789
+ #: templates/umap/user_teams.html:52
624
790
  msgid "New team"
625
791
  msgstr ""
626
792
 
627
- #: views.py:234
793
+ #: templates/umap/user_templates.html:10
794
+ msgid "Search my templates"
795
+ msgstr ""
796
+
797
+ #: templates/umap/user_templates.html:11
798
+ msgid "Template’s name"
799
+ msgstr ""
800
+
801
+ #: templates/umap/user_templates.html:12
802
+ #, python-format
803
+ msgid "Download %(count)s templates"
804
+ msgstr ""
805
+
806
+ #: templates/umap/user_templates.html:15
807
+ msgid "You have no template yet."
808
+ msgstr ""
809
+
810
+ #: templates/umap/user_templates.html:16
811
+ msgid "Create a template"
812
+ msgstr ""
813
+
814
+ #: templates/umap/user_templates.html:17
815
+ msgid "No template found."
816
+ msgstr ""
817
+
818
+ #: views.py:233
628
819
  msgid "Cannot delete a team with more than one member"
629
820
  msgstr ""
630
821
 
631
- #: views.py:238
822
+ #: views.py:237
632
823
  #, python-format
633
824
  msgid "Team “%(name)s” has been deleted"
634
825
  msgstr ""
635
826
 
636
- #: views.py:442
827
+ #: views.py:463
637
828
  msgid "View the map"
638
829
  msgstr "مشاهدهٔ نقشه"
639
830
 
640
- #: views.py:825
831
+ #: views.py:864
641
832
  msgid "See full screen"
642
833
  msgstr "تمام‌صفحه ببینید"
643
834
 
644
- #: views.py:968
835
+ #: views.py:1007
645
836
  msgid "Map editors updated with success!"
646
837
  msgstr "ویرایشگران نقشه با موفقیت روزآمد شد!"
647
838
 
648
- #: views.py:1004
839
+ #: views.py:1043
649
840
  #, python-format
650
841
  msgid "The uMap edit link for your map: %(map_name)s"
651
842
  msgstr "پیوند ویرایش uMap برای نقشهٔ شما: %(map_name)s"
652
843
 
653
- #: views.py:1007
844
+ #: views.py:1046
654
845
  #, python-format
655
846
  msgid "Here is your secret edit link: %(link)s"
656
847
  msgstr "این پیوند محرمانهٔ ویرایش برای شماست: %(link)s"
657
848
 
658
- #: views.py:1014
849
+ #: views.py:1053
659
850
  #, python-format
660
851
  msgid "Can't send email to %(email)s"
661
852
  msgstr "رایانامه به %(email)s فرستاده نشد"
662
853
 
663
- #: views.py:1017
854
+ #: views.py:1056
664
855
  #, python-format
665
856
  msgid "Email sent to %(email)s"
666
857
  msgstr "رایانامه به %(email)s فرستاده شد"
667
858
 
668
- #: views.py:1028
859
+ #: views.py:1067
669
860
  msgid "Only its owner can delete the map."
670
861
  msgstr "فقط مالک آن می‌تواند نقشه را حذف کند."
671
862
 
672
- #: views.py:1031
863
+ #: views.py:1073
673
864
  msgid "Map successfully deleted."
674
865
  msgstr "نقشه با موفقیت حذف شد."
675
866
 
676
- #: views.py:1057
867
+ #: views.py:1099
677
868
  #, python-format
678
869
  msgid ""
679
870
  "Your map has been cloned! If you want to edit this map from another "
680
871
  "computer, please use this link: %(anonymous_url)s"
681
872
  msgstr "از نقشهٔ شما همانندسازی شد! اگر می‌خواهید این نقشه را از رایانهٔ دیگری ویرایش کنید، لطفاً از این پیوند استفاده کنید: %(anonymous_url)s"
682
873
 
683
- #: views.py:1062
874
+ #: views.py:1104
684
875
  msgid "Congratulations, your map has been cloned!"
685
876
  msgstr "تبریک، نقشهٔ شما همانندسازی شد!"
686
877
 
687
- #: views.py:1313
878
+ #: views.py:1358
688
879
  msgid "Layer successfully deleted."
689
880
  msgstr "لایه با موفقیت حذف شد."
690
881
 
691
- #: views.py:1335
882
+ #: views.py:1380
692
883
  msgid "Permissions updated with success!"
693
884
  msgstr "مجوزها با موفقیت روزآمد شد!"