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
@@ -24,9 +24,9 @@ msgid ""
24
24
  msgstr ""
25
25
  "Project-Id-Version: uMap\n"
26
26
  "Report-Msgid-Bugs-To: \n"
27
- "POT-Creation-Date: 2024-06-14 17:49+0000\n"
27
+ "POT-Creation-Date: 2024-08-30 18:23+0000\n"
28
28
  "PO-Revision-Date: 2013-11-22 14:00+0000\n"
29
- "Last-Translator: Larlet David <david@larlet.fr>, 2024\n"
29
+ "Last-Translator: yohanboniface <yohanboniface@free.fr>, 2013-2014,2018-2019,2023-2024\n"
30
30
  "Language-Team: French (http://app.transifex.com/openstreetmap/umap/language/fr/)\n"
31
31
  "MIME-Version: 1.0\n"
32
32
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -42,7 +42,7 @@ msgstr "Modifiable seulement avec le lien de modification secret"
42
42
  msgid "Everyone can edit"
43
43
  msgstr "Tout le monde peut modifier"
44
44
 
45
- #: forms.py:69 models.py:389
45
+ #: forms.py:69 models.py:423
46
46
  msgid "Inherit"
47
47
  msgstr "Par défaut"
48
48
 
@@ -50,242 +50,238 @@ msgstr "Par défaut"
50
50
  msgid "Site is readonly for maintenance"
51
51
  msgstr "Le site est en lecture seule pour maintenance."
52
52
 
53
- #: models.py:53
53
+ #: models.py:54 models.py:73
54
54
  msgid "name"
55
55
  msgstr "nom"
56
56
 
57
- #: models.py:84
57
+ #: models.py:56 models.py:433
58
+ msgid "description"
59
+ msgstr "description"
60
+
61
+ #: models.py:104
58
62
  msgid "details"
59
63
  msgstr "détails"
60
64
 
61
- #: models.py:85
65
+ #: models.py:105
62
66
  msgid "Link to a page where the licence is detailed."
63
67
  msgstr "Lien vers une page détaillant la licence."
64
68
 
65
- #: models.py:95
69
+ #: models.py:115
66
70
  msgid "URL template using OSM tile format"
67
71
  msgstr "Modèle d'URL au format des tuiles OSM"
68
72
 
69
- #: models.py:101
73
+ #: models.py:121
70
74
  msgid "Order of the tilelayers in the edit box"
71
75
  msgstr "Ordre des calques de tuiles dans le panneau de modification"
72
76
 
73
- #: models.py:147 models.py:390
77
+ #: models.py:167 models.py:424
74
78
  msgid "Everyone"
75
79
  msgstr "Tout le monde"
76
80
 
77
- #: models.py:148 models.py:154 models.py:391
78
- msgid "Editors only"
79
- msgstr "Éditeurs uniquement"
81
+ #: models.py:168 models.py:174 models.py:425
82
+ msgid "Editors and team only"
83
+ msgstr "Éditeurs et équipe seulement"
80
84
 
81
- #: models.py:149 models.py:392
85
+ #: models.py:169 models.py:426
82
86
  msgid "Owner only"
83
87
  msgstr "Propriétaire uniquement"
84
88
 
85
- #: models.py:152
89
+ #: models.py:172
86
90
  msgid "Everyone (public)"
87
91
  msgstr "Tout le monde (public)"
88
92
 
89
- #: models.py:153
93
+ #: models.py:173
90
94
  msgid "Anyone with link"
91
95
  msgstr "Quiconque a le lien"
92
96
 
93
- #: models.py:155
97
+ #: models.py:175
94
98
  msgid "Blocked"
95
99
  msgstr "Bloquée"
96
100
 
97
- #: models.py:158
101
+ #: models.py:178
98
102
  msgid "center"
99
103
  msgstr "centre"
100
104
 
101
- #: models.py:159
105
+ #: models.py:179
102
106
  msgid "zoom"
103
107
  msgstr "zoom"
104
108
 
105
- #: models.py:161
109
+ #: models.py:181
106
110
  msgid "locate"
107
111
  msgstr "géolocaliser"
108
112
 
109
- #: models.py:161
113
+ #: models.py:181
110
114
  msgid "Locate user on load?"
111
115
  msgstr "Géolocaliser l'utilisateur au chargement ?"
112
116
 
113
- #: models.py:165
117
+ #: models.py:185
114
118
  msgid "Choose the map licence."
115
119
  msgstr "Choisir une licence pour la carte"
116
120
 
117
- #: models.py:166
121
+ #: models.py:186
118
122
  msgid "licence"
119
123
  msgstr "licence"
120
124
 
121
- #: models.py:177
125
+ #: models.py:197
122
126
  msgid "owner"
123
127
  msgstr "créateur"
124
128
 
125
- #: models.py:181
129
+ #: models.py:201
126
130
  msgid "editors"
127
131
  msgstr "éditeurs"
128
132
 
129
- #: models.py:186 models.py:413
133
+ #: models.py:207
134
+ msgid "team"
135
+ msgstr "équipe"
136
+
137
+ #: models.py:213 models.py:447
130
138
  msgid "edit status"
131
139
  msgstr "statut de modification"
132
140
 
133
- #: models.py:191
141
+ #: models.py:218
134
142
  msgid "share status"
135
143
  msgstr "qui a accès"
136
144
 
137
- #: models.py:194 models.py:408
145
+ #: models.py:221 models.py:442
138
146
  msgid "settings"
139
147
  msgstr "réglages"
140
148
 
141
- #: models.py:330
149
+ #: models.py:364
142
150
  msgid "Clone of"
143
151
  msgstr "Clone de"
144
152
 
145
- #: models.py:399
146
- msgid "description"
147
- msgstr "description"
148
-
149
- #: models.py:403
153
+ #: models.py:437
150
154
  msgid "display on load"
151
155
  msgstr "afficher au chargement."
152
156
 
153
- #: models.py:404
157
+ #: models.py:438
154
158
  msgid "Display this layer on load."
155
159
  msgstr "Afficher ce calque au chargement."
156
160
 
157
- #: templates/404.html:6
161
+ #: templates/404.html:8
158
162
  msgid "Take me to the home page"
159
163
  msgstr "Retour à la page d'accueil"
160
164
 
161
- #: templates/auth/user_detail.html:5
165
+ #: templates/auth/user_detail.html:8
162
166
  #, python-format
163
167
  msgid "Browse %(current_user)s's maps"
164
168
  msgstr "Consulter les cartes de %(current_user)s"
165
169
 
166
- #: templates/auth/user_detail.html:12
170
+ #: templates/auth/user_detail.html:17
167
171
  #, python-format
168
172
  msgid "%(current_user)s has no maps."
169
173
  msgstr "%(current_user)s n'a aucune carte."
170
174
 
171
- #: templates/auth/user_form.html:6
172
- msgid "My Maps"
173
- msgstr "Mes cartes"
174
-
175
- #: templates/auth/user_form.html:7
176
- msgid "My Profile"
177
- msgstr "Mon profil"
178
-
179
- #: templates/auth/user_form.html:20
175
+ #: templates/auth/user_form.html:21 templates/umap/team_form.html:21
180
176
  msgid "Save"
181
177
  msgstr "Enregistrer"
182
178
 
183
- #: templates/auth/user_form.html:25
179
+ #: templates/auth/user_form.html:27
184
180
  msgid "Your current providers"
185
181
  msgstr "Vos fournisseurs associés"
186
182
 
187
- #: templates/auth/user_form.html:31
183
+ #: templates/auth/user_form.html:39
188
184
  msgid "Connect to another provider"
189
185
  msgstr "Associer un autre fournisseur"
190
186
 
191
- #: templates/auth/user_form.html:33
187
+ #: templates/auth/user_form.html:42
192
188
  msgid ""
193
189
  "It's a good habit to connect your account to more than one provider, in case"
194
190
  " one provider becomes unavailable, temporarily or even permanently."
195
191
  msgstr "C'est une bonne habitude d'avoir plusieurs fournisseurs d'identité, notamment dans le cas où l'un d'eux deviendrait inaccessible, temporairement ou même définitivement."
196
192
 
197
- #: templates/auth/user_stars.html:5
193
+ #: templates/auth/user_stars.html:8
198
194
  #, python-format
199
195
  msgid "Browse %(current_user)s's starred maps"
200
196
  msgstr "Consulter les cartes favorites de %(current_user)s"
201
197
 
202
- #: templates/auth/user_stars.html:12
198
+ #: templates/auth/user_stars.html:17
203
199
  #, python-format
204
200
  msgid "%(current_user)s has no starred maps yet."
205
201
  msgstr "%(current_user)s n'a aucune carte favorite."
206
202
 
207
- #: templates/base.html:12
203
+ #: templates/base.html:13
208
204
  msgid ""
209
205
  "uMap lets you create maps with OpenStreetMap layers in a minute and embed "
210
206
  "them in your site."
211
207
  msgstr "uMap permet de créer des cartes personnalisées sur des fonds OpenStreetMap en un instant et les afficher dans votre site."
212
208
 
213
- #: templates/registration/login.html:16
209
+ #: templates/registration/login.html:6 templates/registration/login.html:45
210
+ msgid "Login"
211
+ msgstr "Connexion"
212
+
213
+ #: templates/registration/login.html:24
214
214
  msgid "Please log in with your account"
215
215
  msgstr "Identifiez-vous"
216
216
 
217
- #: templates/registration/login.html:28
217
+ #: templates/registration/login.html:41
218
218
  msgid "Username"
219
219
  msgstr "Nom d'utilisateur"
220
220
 
221
- #: templates/registration/login.html:31
221
+ #: templates/registration/login.html:44
222
222
  msgid "Password"
223
223
  msgstr "Mot de passe"
224
224
 
225
- #: templates/registration/login.html:32
226
- msgid "Login"
227
- msgstr "Connexion"
228
-
229
- #: templates/registration/login.html:37
225
+ #: templates/registration/login.html:51
230
226
  msgid "Please choose a provider"
231
227
  msgstr "Merci de choisir un fournisseur"
232
228
 
233
- #: templates/umap/about_summary.html:11
229
+ #: templates/umap/about_summary.html:12
234
230
  #, python-format
235
231
  msgid ""
236
232
  "uMap lets you create maps with <a href=\"%(osm_url)s\" />OpenStreetMap</a> "
237
233
  "layers in a minute and embed them in your site."
238
234
  msgstr "uMap permet de créer des cartes personnalisées sur des fonds <a href=\"%(osm_url)s\" />OpenStreetMap</a> en un instant et les afficher dans votre site."
239
235
 
240
- #: templates/umap/about_summary.html:21
236
+ #: templates/umap/about_summary.html:23
241
237
  msgid "Choose the layers of your map"
242
238
  msgstr "Choisir les fonds pour votre carte"
243
239
 
244
- #: templates/umap/about_summary.html:22
240
+ #: templates/umap/about_summary.html:26
245
241
  msgid "Add POIs: markers, lines, polygons..."
246
242
  msgstr "Ajouter des points d'intérêt : marqueurs, lignes, polygones..."
247
243
 
248
- #: templates/umap/about_summary.html:23
244
+ #: templates/umap/about_summary.html:29
249
245
  msgid "Manage POIs colours and icons"
250
246
  msgstr "Choisir la couleur et les icônes"
251
247
 
252
- #: templates/umap/about_summary.html:24
248
+ #: templates/umap/about_summary.html:32
253
249
  msgid "Manage map options: display a minimap, locate user on load…"
254
250
  msgstr "Gérer les options de la carte : afficher une minicarte, géolocaliser l'utilisateur..."
255
251
 
256
- #: templates/umap/about_summary.html:25
252
+ #: templates/umap/about_summary.html:35
257
253
  msgid "Batch import geostructured data (geojson, gpx, kml, osm...)"
258
254
  msgstr "Importer des données géographiques en masse (geojson, gpx, kml, osm...)"
259
255
 
260
- #: templates/umap/about_summary.html:26
256
+ #: templates/umap/about_summary.html:38
261
257
  msgid "Choose the license for your data"
262
258
  msgstr "Choisir la licence de vos données"
263
259
 
264
- #: templates/umap/about_summary.html:27
260
+ #: templates/umap/about_summary.html:41
265
261
  msgid "Embed and share your map"
266
262
  msgstr "Exporter et partager votre carte"
267
263
 
268
- #: templates/umap/about_summary.html:37
264
+ #: templates/umap/about_summary.html:52
269
265
  #, python-format
270
266
  msgid "And it's <a href=\"%(repo_url)s\">open source</a>!"
271
267
  msgstr "Et c'est <a href=\"%(repo_url)s\">open source</a> !"
272
268
 
273
- #: templates/umap/about_summary.html:48 templates/umap/navigation.html:38
274
- #: templates/umap/user_dashboard.html:42
269
+ #: templates/umap/about_summary.html:63 templates/umap/navigation.html:39
270
+ #: templates/umap/user_dashboard.html:40
275
271
  msgid "Create a map"
276
272
  msgstr "Créer une carte"
277
273
 
278
- #: templates/umap/about_summary.html:51
274
+ #: templates/umap/about_summary.html:66
279
275
  msgid "Play with the demo"
280
276
  msgstr "Tester la démo"
281
277
 
282
- #: templates/umap/components/alerts/alert.html:14
283
- #: templates/umap/components/alerts/alert.html:49
284
- #: templates/umap/components/alerts/alert.html:71
278
+ #: templates/umap/components/alerts/alert.html:15
279
+ #: templates/umap/components/alerts/alert.html:64
280
+ #: templates/umap/components/alerts/alert.html:92
285
281
  msgid "Close"
286
282
  msgstr "Fermer"
287
283
 
288
- #: templates/umap/components/alerts/alert.html:27
284
+ #: templates/umap/components/alerts/alert.html:30
289
285
  #, python-format
290
286
  msgid ""
291
287
  "Pro-tip: to easily find back your maps, <a href=\"%(login_url)s\" "
@@ -293,45 +289,45 @@ msgid ""
293
289
  "target=\"_blank\">log in</a>."
294
290
  msgstr "Astuce : pour retrouver facilement vos cartes, <a href=\"%(login_url)s\" target=\"_blank\">créez un compte</a> ou <a href=\"%(login_url)s\" target=\"_blank\">identifiez-vous</a>."
295
291
 
296
- #: templates/umap/components/alerts/alert.html:30
292
+ #: templates/umap/components/alerts/alert.html:35
297
293
  msgid "Here is your secret link to edit the map, please keep it safe:"
298
294
  msgstr "Ceci est le lien d'édition secret, gardez-le en lieu sûr :"
299
295
 
300
- #: templates/umap/components/alerts/alert.html:33
296
+ #: templates/umap/components/alerts/alert.html:39
301
297
  msgid "Copy link"
302
298
  msgstr "Copier le lien"
303
299
 
304
- #: templates/umap/components/alerts/alert.html:39
300
+ #: templates/umap/components/alerts/alert.html:46
305
301
  msgid "Enter your email address to receive the secret link:"
306
302
  msgstr "Entrez votre courriel pour recevoir le lien secret :"
307
303
 
308
- #: templates/umap/components/alerts/alert.html:41
304
+ #: templates/umap/components/alerts/alert.html:52
309
305
  msgid "Email"
310
306
  msgstr "Courriel"
311
307
 
312
- #: templates/umap/components/alerts/alert.html:42
308
+ #: templates/umap/components/alerts/alert.html:55
313
309
  msgid "Send me the link"
314
310
  msgstr "Envoyer le lien"
315
311
 
316
- #: templates/umap/components/alerts/alert.html:63
312
+ #: templates/umap/components/alerts/alert.html:79
317
313
  msgid "See their edits in another tab"
318
314
  msgstr "Voir leurs changements dans un nouvel onglet"
319
315
 
320
- #: templates/umap/components/alerts/alert.html:64
316
+ #: templates/umap/components/alerts/alert.html:82
321
317
  msgid "Keep your changes and loose theirs"
322
318
  msgstr "Garder mes changements et écraser les leurs"
323
319
 
324
- #: templates/umap/components/alerts/alert.html:65
320
+ #: templates/umap/components/alerts/alert.html:85
325
321
  msgid "Keep their changes and loose yours"
326
322
  msgstr "Garder leurs changements et écraser les miens"
327
323
 
328
- #: templates/umap/content.html:24
324
+ #: templates/umap/content.html:26
329
325
  msgid ""
330
326
  "This instance of uMap is currently in read only mode, no creation/edit is "
331
327
  "allowed."
332
328
  msgstr "uMap est actuellement en mode lecture seule, aucune création ou modification n'est possible."
333
329
 
334
- #: templates/umap/content.html:32
330
+ #: templates/umap/content.html:34
335
331
  #, python-format
336
332
  msgid ""
337
333
  "This is a demo instance, used for tests and pre-rolling releases. If you "
@@ -340,176 +336,210 @@ msgid ""
340
336
  "instance, it's <a href=\"%(repo_url)s\">open source</a>!"
341
337
  msgstr "Il s'agit d'un site de démonstration, utilisé pour les tests et validation avant diffusion. Si vous avez besoin d'une version stable, utilisez plutôt <a href=\"%(stable_url)s\">%(stable_url)s</a>. Vous pouvez aussi mettre en place votre propre version, c'est <a href=\"%(repo_url)s\">open source</a> !"
342
338
 
343
- #: templates/umap/home.html:11
339
+ #: templates/umap/content_footer.html:5
340
+ msgid "An OpenStreetMap project"
341
+ msgstr "Un projet OpenStreetMap"
342
+
343
+ #: templates/umap/content_footer.html:6
344
+ msgid "version"
345
+ msgstr "version"
346
+
347
+ #: templates/umap/content_footer.html:7
348
+ msgid "Hosted by"
349
+ msgstr "Hébergé par"
350
+
351
+ #: templates/umap/content_footer.html:8
352
+ msgid "Contact"
353
+ msgstr "Contact"
354
+
355
+ #: templates/umap/content_footer.html:9 templates/umap/navigation.html:25
356
+ msgid "Help"
357
+ msgstr "Aide"
358
+
359
+ #: templates/umap/dashboard_menu.html:6
360
+ #, python-format
361
+ msgid "My Maps (%(count)s)"
362
+ msgstr "Mes cartes (%(count)s)"
363
+
364
+ #: templates/umap/dashboard_menu.html:8
365
+ msgid "My Maps"
366
+ msgstr "Mes cartes"
367
+
368
+ #: templates/umap/dashboard_menu.html:11
369
+ msgid "My profile"
370
+ msgstr "Mon profil"
371
+
372
+ #: templates/umap/dashboard_menu.html:13
373
+ msgid "My teams"
374
+ msgstr "Mes équipes"
375
+
376
+ #: templates/umap/home.html:14
344
377
  msgid "Map of the uMaps"
345
378
  msgstr "La carte des uMaps"
346
379
 
347
- #: templates/umap/home.html:17
380
+ #: templates/umap/home.html:24
348
381
  msgid "Get inspired, browse maps"
349
382
  msgstr "Naviguer dans les cartes"
350
383
 
351
- #: templates/umap/login_popup_end.html:2
384
+ #: templates/umap/login_popup_end.html:4
352
385
  msgid "You are logged in. Continuing..."
353
386
  msgstr "Vous êtes maintenant identifié. Merci de patienter..."
354
387
 
355
- #: templates/umap/map_list.html:9 views.py:348
388
+ #: templates/umap/map_list.html:10 views.py:433
356
389
  msgid "by"
357
390
  msgstr "par"
358
391
 
359
- #: templates/umap/map_list.html:17
392
+ #: templates/umap/map_list.html:18
360
393
  msgid "More"
361
394
  msgstr "Plus"
362
395
 
363
- #: templates/umap/map_table.html:6
396
+ #: templates/umap/map_table.html:8 templates/umap/user_teams.html:14
364
397
  msgid "Name"
365
398
  msgstr "Nom"
366
399
 
367
- #: templates/umap/map_table.html:7
400
+ #: templates/umap/map_table.html:11
368
401
  msgid "Preview"
369
402
  msgstr "Aperçu"
370
403
 
371
- #: templates/umap/map_table.html:8
404
+ #: templates/umap/map_table.html:14
372
405
  msgid "Who can see"
373
406
  msgstr "Qui peut voir"
374
407
 
375
- #: templates/umap/map_table.html:9
408
+ #: templates/umap/map_table.html:17
376
409
  msgid "Who can edit"
377
410
  msgstr "Qui peut modifier"
378
411
 
379
- #: templates/umap/map_table.html:10
412
+ #: templates/umap/map_table.html:20
380
413
  msgid "Last save"
381
414
  msgstr "Dernière modification"
382
415
 
383
- #: templates/umap/map_table.html:11
416
+ #: templates/umap/map_table.html:23
384
417
  msgid "Owner"
385
418
  msgstr "Propriétaire"
386
419
 
387
- #: templates/umap/map_table.html:12
420
+ #: templates/umap/map_table.html:26 templates/umap/user_teams.html:20
388
421
  msgid "Actions"
389
422
  msgstr "Actions"
390
423
 
391
- #: templates/umap/map_table.html:26 templates/umap/map_table.html:28
424
+ #: templates/umap/map_table.html:41 templates/umap/map_table.html:43
392
425
  msgid "Open preview"
393
426
  msgstr "Ouvrir l'aperçu"
394
427
 
395
- #: templates/umap/map_table.html:48 templates/umap/map_table.html:50
428
+ #: templates/umap/map_table.html:72 templates/umap/map_table.html:74
396
429
  msgid "Share"
397
430
  msgstr "Partager"
398
431
 
399
- #: templates/umap/map_table.html:54 templates/umap/map_table.html:56
432
+ #: templates/umap/map_table.html:78 templates/umap/map_table.html:80
433
+ #: templates/umap/user_teams.html:38 templates/umap/user_teams.html:40
400
434
  msgid "Edit"
401
435
  msgstr "Éditer"
402
436
 
403
- #: templates/umap/map_table.html:60 templates/umap/map_table.html:62
437
+ #: templates/umap/map_table.html:84 templates/umap/map_table.html:86
404
438
  msgid "Download"
405
439
  msgstr "Télécharger"
406
440
 
407
- #: templates/umap/map_table.html:66 templates/umap/map_table.html:68
441
+ #: templates/umap/map_table.html:90 templates/umap/map_table.html:92
408
442
  msgid "Clone"
409
443
  msgstr "Cloner"
410
444
 
411
- #: templates/umap/map_table.html:77 templates/umap/map_table.html:79
445
+ #: templates/umap/map_table.html:101 templates/umap/map_table.html:103
412
446
  msgid "Delete"
413
447
  msgstr "Supprimer"
414
448
 
415
- #: templates/umap/map_table.html:93
449
+ #: templates/umap/map_table.html:117
416
450
  msgid "first"
417
451
  msgstr "début"
418
452
 
419
- #: templates/umap/map_table.html:94
453
+ #: templates/umap/map_table.html:118
420
454
  msgid "previous"
421
455
  msgstr "précédente"
422
456
 
423
- #: templates/umap/map_table.html:102
457
+ #: templates/umap/map_table.html:126
424
458
  #, python-format
425
459
  msgid "Page %(maps_number)s of %(num_pages)s"
426
460
  msgstr "Page %(maps_number)s de %(num_pages)s"
427
461
 
428
- #: templates/umap/map_table.html:107
462
+ #: templates/umap/map_table.html:131
429
463
  msgid "next"
430
464
  msgstr "suivante"
431
465
 
432
- #: templates/umap/map_table.html:108
466
+ #: templates/umap/map_table.html:132
433
467
  msgid "last"
434
468
  msgstr "fin"
435
469
 
436
- #: templates/umap/map_table.html:116
470
+ #: templates/umap/map_table.html:140
437
471
  #, python-format
438
472
  msgid "Lines per page: %(per_page)s"
439
473
  msgstr "Lignes par page : %(per_page)s"
440
474
 
441
- #: templates/umap/map_table.html:121
475
+ #: templates/umap/map_table.html:145
442
476
  #, python-format
443
477
  msgid "%(count)s maps"
444
478
  msgstr "%(count)s cartes"
445
479
 
446
- #: templates/umap/navigation.html:10 templates/umap/user_dashboard.html:4
480
+ #: templates/umap/navigation.html:11 templates/umap/user_dashboard.html:6
447
481
  msgid "My Dashboard"
448
482
  msgstr "Mon espace"
449
483
 
450
- #: templates/umap/navigation.html:13
484
+ #: templates/umap/navigation.html:14
451
485
  msgid "Starred maps"
452
486
  msgstr "Favoris"
453
487
 
454
- #: templates/umap/navigation.html:17
488
+ #: templates/umap/navigation.html:18
455
489
  msgid "Log in"
456
490
  msgstr "Connexion"
457
491
 
458
- #: templates/umap/navigation.html:17
492
+ #: templates/umap/navigation.html:18
459
493
  msgid "Sign in"
460
494
  msgstr "Créer un compte"
461
495
 
462
- #: templates/umap/navigation.html:21
496
+ #: templates/umap/navigation.html:22
463
497
  msgid "About"
464
498
  msgstr "À propos"
465
499
 
466
- #: templates/umap/navigation.html:24
467
- msgid "Help"
468
- msgstr "Aide"
469
-
470
- #: templates/umap/navigation.html:29
500
+ #: templates/umap/navigation.html:30
471
501
  msgid "Change password"
472
502
  msgstr "Changer le mot de passe"
473
503
 
474
- #: templates/umap/navigation.html:33
504
+ #: templates/umap/navigation.html:34
475
505
  msgid "Log out"
476
506
  msgstr "Déconnexion"
477
507
 
478
- #: templates/umap/password_change.html:4
508
+ #: templates/umap/password_change.html:7
479
509
  msgid "Password change"
480
510
  msgstr "Changer le mot de passe"
481
511
 
482
- #: templates/umap/password_change.html:6
512
+ #: templates/umap/password_change.html:10
483
513
  msgid ""
484
514
  "Please enter your old password, for security's sake, and then enter your new"
485
515
  " password twice so we can verify you typed it in correctly."
486
516
  msgstr "Merci de renseigner votre mot de passe actuel, puis deux fois le nouveau."
487
517
 
488
- #: templates/umap/password_change.html:13
518
+ #: templates/umap/password_change.html:17
489
519
  msgid "Old password"
490
520
  msgstr "Ancien mot de passe"
491
521
 
492
- #: templates/umap/password_change.html:18
522
+ #: templates/umap/password_change.html:22
493
523
  msgid "New password"
494
524
  msgstr "Nouveau mot de passe"
495
525
 
496
- #: templates/umap/password_change.html:22
526
+ #: templates/umap/password_change.html:26
497
527
  msgid "New password confirmation"
498
528
  msgstr "Confirmation du nouveau mot de passe"
499
529
 
500
- #: templates/umap/password_change.html:23
530
+ #: templates/umap/password_change.html:27
501
531
  msgid "Change my password"
502
532
  msgstr "Changer de mot de passe"
503
533
 
504
- #: templates/umap/password_change_done.html:4
534
+ #: templates/umap/password_change_done.html:7
505
535
  msgid "Password change successful"
506
536
  msgstr "Le mot de passe a été modifié"
507
537
 
508
- #: templates/umap/password_change_done.html:5
538
+ #: templates/umap/password_change_done.html:10
509
539
  msgid "Your password was changed."
510
540
  msgstr "Votre mot de passe a été modifié"
511
541
 
512
- #: templates/umap/search.html:13
542
+ #: templates/umap/search.html:15
513
543
  #, python-format
514
544
  msgid "%(count)s map found:"
515
545
  msgid_plural "%(count)s maps found:"
@@ -517,103 +547,129 @@ msgstr[0] "%(count)s carte trouvée:"
517
547
  msgstr[1] "%(count)s cartes trouvées:"
518
548
  msgstr[2] "%(count)s cartes trouvées :"
519
549
 
520
- #: templates/umap/search.html:21
550
+ #: templates/umap/search.html:24
521
551
  msgid "No map found."
522
552
  msgstr "Aucune carte trouvée."
523
553
 
524
- #: templates/umap/search.html:24
554
+ #: templates/umap/search.html:29
525
555
  msgid "Latest created maps"
526
556
  msgstr "Dernières cartes créées."
527
557
 
528
- #: templates/umap/search_bar.html:3
558
+ #: templates/umap/search_bar.html:4
529
559
  msgid "Search maps"
530
560
  msgstr "Chercher des cartes"
531
561
 
532
- #: templates/umap/search_bar.html:14
562
+ #: templates/umap/search_bar.html:15
533
563
  msgid "Search"
534
564
  msgstr "Chercher"
535
565
 
536
- #: templates/umap/user_dashboard.html:7 templates/umap/user_dashboard.html:27
537
- msgid "Search my maps"
538
- msgstr "Chercher dans mes cartes"
566
+ #: templates/umap/team_detail.html:10
567
+ #, python-format
568
+ msgid "Browse %(current_team)s's maps"
569
+ msgstr "Les cartes de %(current_team)s"
539
570
 
540
- #: templates/umap/user_dashboard.html:10
571
+ #: templates/umap/team_detail.html:22
541
572
  #, python-format
542
- msgid "My Maps (%(count)s)"
543
- msgstr "Mes cartes (%(count)s)"
573
+ msgid "%(current_team)s has no public maps."
574
+ msgstr "%(current_team)s n'a pas de cartes publiques"
544
575
 
545
- #: templates/umap/user_dashboard.html:12
546
- msgid "My profile"
547
- msgstr "Mon profil"
576
+ #: templates/umap/team_form.html:24
577
+ msgid "Delete this team"
578
+ msgstr "Supprimer cette équipe"
548
579
 
549
- #: templates/umap/user_dashboard.html:20 templates/umap/user_dashboard.html:24
580
+ #: templates/umap/team_form.html:47
581
+ msgid "Add user"
582
+ msgstr "Ajouter un membre"
583
+
584
+ #: templates/umap/user_dashboard.html:9 templates/umap/user_dashboard.html:25
585
+ msgid "Search my maps"
586
+ msgstr "Chercher dans mes cartes"
587
+
588
+ #: templates/umap/user_dashboard.html:17 templates/umap/user_dashboard.html:22
550
589
  msgid "Map’s title"
551
590
  msgstr "Titre de la carte"
552
591
 
553
- #: templates/umap/user_dashboard.html:32
592
+ #: templates/umap/user_dashboard.html:30
554
593
  #, python-format
555
594
  msgid "Download %(count)s maps"
556
595
  msgstr "Télécharger %(count)s cartes"
557
596
 
558
- #: templates/umap/user_dashboard.html:42
597
+ #: templates/umap/user_dashboard.html:40
559
598
  msgid "You have no map yet."
560
599
  msgstr "Vous n'avez pas encore de carte."
561
600
 
562
- #: views.py:353
601
+ #: templates/umap/user_teams.html:17
602
+ msgid "Users"
603
+ msgstr "Membres"
604
+
605
+ #: templates/umap/user_teams.html:48
606
+ msgid "New team"
607
+ msgstr "Nouvelle équipe"
608
+
609
+ #: views.py:235
610
+ msgid "Cannot delete a team with more than one member"
611
+ msgstr "Impossible de supprimer une équipe ayant plus d'un membre"
612
+
613
+ #: views.py:239
614
+ #, python-format
615
+ msgid "Team “%(name)s” has been deleted"
616
+ msgstr "L'équipe «%(name)s» a été supprimée"
617
+
618
+ #: views.py:438
563
619
  msgid "View the map"
564
620
  msgstr "Voir la carte"
565
621
 
566
- #: views.py:718
622
+ #: views.py:824
567
623
  msgid "See full screen"
568
624
  msgstr "Plein écran"
569
625
 
570
- #: views.py:846
626
+ #: views.py:953
571
627
  msgid "Map editors updated with success!"
572
628
  msgstr "Éditeurs de la carte mis à jour !"
573
629
 
574
- #: views.py:883
630
+ #: views.py:989
575
631
  #, python-format
576
632
  msgid "The uMap edit link for your map: %(map_name)s"
577
633
  msgstr "La lien d'édition uMap pour votre carte : %(map_name)s"
578
634
 
579
- #: views.py:886
635
+ #: views.py:992
580
636
  #, python-format
581
637
  msgid "Here is your secret edit link: %(link)s"
582
638
  msgstr "Voici votre lien d'édition secret : %(link)s"
583
639
 
584
- #: views.py:893
640
+ #: views.py:999
585
641
  #, python-format
586
642
  msgid "Can't send email to %(email)s"
587
643
  msgstr "Impossible d'envoyer un courriel vers %(email)s"
588
644
 
589
- #: views.py:896
645
+ #: views.py:1002
590
646
  #, python-format
591
647
  msgid "Email sent to %(email)s"
592
648
  msgstr "Courriel envoyé à %(email)s"
593
649
 
594
- #: views.py:907
650
+ #: views.py:1013
595
651
  msgid "Only its owner can delete the map."
596
652
  msgstr "Seul le créateur de la carte peut la supprimer."
597
653
 
598
- #: views.py:910
654
+ #: views.py:1016
599
655
  msgid "Map successfully deleted."
600
656
  msgstr "La bien été supprimée."
601
657
 
602
- #: views.py:936
658
+ #: views.py:1042
603
659
  #, python-format
604
660
  msgid ""
605
661
  "Your map has been cloned! If you want to edit this map from another "
606
662
  "computer, please use this link: %(anonymous_url)s"
607
663
  msgstr "Votre carte a été dupliquée ! Si vous souhaitez la modifier depuis un autre ordinateur, veuillez utiliser ce lien : %(anonymous_url)s"
608
664
 
609
- #: views.py:941
665
+ #: views.py:1047
610
666
  msgid "Congratulations, your map has been cloned!"
611
667
  msgstr "Votre carte a été dupliquée !"
612
668
 
613
- #: views.py:1176
669
+ #: views.py:1282
614
670
  msgid "Layer successfully deleted."
615
671
  msgstr "Calque supprimé."
616
672
 
617
- #: views.py:1198
673
+ #: views.py:1304
618
674
  msgid "Permissions updated with success!"
619
675
  msgstr "Les permissions ont bien été modifiées !"