umap-project 1.14.0a4__py3-none-any.whl → 2.0.0a0__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 (226) hide show
  1. umap/__init__.py +1 -1
  2. umap/decorators.py +0 -14
  3. umap/locale/br/LC_MESSAGES/django.mo +0 -0
  4. umap/locale/br/LC_MESSAGES/django.po +137 -85
  5. umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
  6. umap/locale/cs_CZ/LC_MESSAGES/django.po +136 -84
  7. umap/locale/el/LC_MESSAGES/django.mo +0 -0
  8. umap/locale/el/LC_MESSAGES/django.po +136 -84
  9. umap/locale/en/LC_MESSAGES/django.po +128 -88
  10. umap/locale/es/LC_MESSAGES/django.mo +0 -0
  11. umap/locale/es/LC_MESSAGES/django.po +136 -84
  12. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  13. umap/locale/fr/LC_MESSAGES/django.po +131 -91
  14. umap/locale/hu/LC_MESSAGES/django.mo +0 -0
  15. umap/locale/hu/LC_MESSAGES/django.po +137 -85
  16. umap/locale/it/LC_MESSAGES/django.mo +0 -0
  17. umap/locale/it/LC_MESSAGES/django.po +136 -84
  18. umap/locale/ms/LC_MESSAGES/django.mo +0 -0
  19. umap/locale/ms/LC_MESSAGES/django.po +136 -84
  20. umap/locale/pl/LC_MESSAGES/django.mo +0 -0
  21. umap/locale/pl/LC_MESSAGES/django.po +136 -84
  22. umap/locale/sv/LC_MESSAGES/django.mo +0 -0
  23. umap/locale/sv/LC_MESSAGES/django.po +135 -83
  24. umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
  25. umap/locale/zh_TW/LC_MESSAGES/django.po +143 -91
  26. umap/models.py +23 -1
  27. umap/settings/__init__.py +1 -4
  28. umap/settings/base.py +1 -0
  29. umap/static/umap/base.css +5 -0
  30. umap/static/umap/content.css +185 -13
  31. umap/static/umap/favicons/icon.svg +2 -2
  32. umap/static/umap/img/edit.svg +3 -3
  33. umap/static/umap/img/icon-delete.svg +4 -0
  34. umap/static/umap/img/icon-download.svg +13 -0
  35. umap/static/umap/img/icon-duplicate.svg +5 -0
  36. umap/static/umap/img/icon-edit.svg +12 -0
  37. umap/static/umap/img/icon-share.svg +11 -0
  38. umap/static/umap/img/icon-view.svg +12 -0
  39. umap/static/umap/img/logo.svg +2 -2
  40. umap/static/umap/img/logo_small.svg +2 -2
  41. umap/static/umap/img/marker.svg +4 -0
  42. umap/static/umap/img/opensource.svg +2 -2
  43. umap/static/umap/img/osm.svg +2 -2
  44. umap/static/umap/js/components/fragment.js +1 -1
  45. umap/static/umap/js/modules/browser.js +159 -0
  46. umap/static/umap/js/modules/global.js +3 -1
  47. umap/static/umap/js/modules/request.js +155 -0
  48. umap/static/umap/js/umap.autocomplete.js +28 -38
  49. umap/static/umap/js/umap.controls.js +73 -58
  50. umap/static/umap/js/umap.core.js +4 -9
  51. umap/static/umap/js/umap.datalayer.permissions.js +13 -12
  52. umap/static/umap/js/umap.features.js +51 -49
  53. umap/static/umap/js/umap.forms.js +19 -19
  54. umap/static/umap/js/umap.icon.js +17 -17
  55. umap/static/umap/js/umap.importer.js +2 -1
  56. umap/static/umap/js/umap.js +242 -291
  57. umap/static/umap/js/umap.layer.js +173 -140
  58. umap/static/umap/js/umap.permissions.js +24 -25
  59. umap/static/umap/js/umap.popup.js +14 -14
  60. umap/static/umap/js/umap.share.js +4 -4
  61. umap/static/umap/js/umap.slideshow.js +4 -4
  62. umap/static/umap/js/umap.tableeditor.js +2 -2
  63. umap/static/umap/js/umap.ui.js +1 -1
  64. umap/static/umap/locale/am_ET.js +1 -11
  65. umap/static/umap/locale/am_ET.json +1 -11
  66. umap/static/umap/locale/ar.js +1 -11
  67. umap/static/umap/locale/ar.json +1 -11
  68. umap/static/umap/locale/ast.js +1 -11
  69. umap/static/umap/locale/ast.json +1 -11
  70. umap/static/umap/locale/bg.js +1 -11
  71. umap/static/umap/locale/bg.json +1 -11
  72. umap/static/umap/locale/br.js +1 -11
  73. umap/static/umap/locale/br.json +1 -11
  74. umap/static/umap/locale/ca.js +1 -11
  75. umap/static/umap/locale/ca.json +1 -11
  76. umap/static/umap/locale/cs_CZ.js +1 -11
  77. umap/static/umap/locale/cs_CZ.json +1 -11
  78. umap/static/umap/locale/da.js +1 -11
  79. umap/static/umap/locale/da.json +1 -11
  80. umap/static/umap/locale/de.js +1 -11
  81. umap/static/umap/locale/de.json +1 -11
  82. umap/static/umap/locale/el.js +1 -11
  83. umap/static/umap/locale/el.json +1 -11
  84. umap/static/umap/locale/en.js +1 -11
  85. umap/static/umap/locale/en.json +1 -11
  86. umap/static/umap/locale/en_US.json +1 -11
  87. umap/static/umap/locale/es.js +1 -11
  88. umap/static/umap/locale/es.json +1 -11
  89. umap/static/umap/locale/et.js +1 -11
  90. umap/static/umap/locale/et.json +1 -11
  91. umap/static/umap/locale/fa_IR.js +6 -16
  92. umap/static/umap/locale/fa_IR.json +6 -16
  93. umap/static/umap/locale/fi.js +1 -11
  94. umap/static/umap/locale/fi.json +1 -11
  95. umap/static/umap/locale/fr.js +1 -11
  96. umap/static/umap/locale/fr.json +1 -11
  97. umap/static/umap/locale/gl.js +1 -11
  98. umap/static/umap/locale/gl.json +1 -11
  99. umap/static/umap/locale/he.js +1 -11
  100. umap/static/umap/locale/he.json +1 -11
  101. umap/static/umap/locale/hr.js +1 -11
  102. umap/static/umap/locale/hr.json +1 -11
  103. umap/static/umap/locale/hu.js +1 -11
  104. umap/static/umap/locale/hu.json +1 -11
  105. umap/static/umap/locale/id.js +1 -11
  106. umap/static/umap/locale/id.json +1 -11
  107. umap/static/umap/locale/is.js +1 -11
  108. umap/static/umap/locale/is.json +1 -11
  109. umap/static/umap/locale/it.js +1 -11
  110. umap/static/umap/locale/it.json +1 -11
  111. umap/static/umap/locale/ja.js +1 -11
  112. umap/static/umap/locale/ja.json +1 -11
  113. umap/static/umap/locale/ko.js +1 -11
  114. umap/static/umap/locale/ko.json +1 -11
  115. umap/static/umap/locale/lt.js +1 -11
  116. umap/static/umap/locale/lt.json +1 -11
  117. umap/static/umap/locale/ms.js +1 -11
  118. umap/static/umap/locale/ms.json +1 -11
  119. umap/static/umap/locale/nl.js +1 -11
  120. umap/static/umap/locale/nl.json +1 -11
  121. umap/static/umap/locale/no.js +1 -11
  122. umap/static/umap/locale/no.json +1 -11
  123. umap/static/umap/locale/pl.js +1 -11
  124. umap/static/umap/locale/pl.json +1 -11
  125. umap/static/umap/locale/pl_PL.json +1 -11
  126. umap/static/umap/locale/pt.js +1 -11
  127. umap/static/umap/locale/pt.json +1 -11
  128. umap/static/umap/locale/pt_BR.js +1 -11
  129. umap/static/umap/locale/pt_BR.json +1 -11
  130. umap/static/umap/locale/pt_PT.js +1 -11
  131. umap/static/umap/locale/pt_PT.json +1 -11
  132. umap/static/umap/locale/ro.js +1 -11
  133. umap/static/umap/locale/ro.json +1 -11
  134. umap/static/umap/locale/ru.js +1 -11
  135. umap/static/umap/locale/ru.json +1 -11
  136. umap/static/umap/locale/sk_SK.js +1 -11
  137. umap/static/umap/locale/sk_SK.json +1 -11
  138. umap/static/umap/locale/sl.js +1 -11
  139. umap/static/umap/locale/sl.json +1 -11
  140. umap/static/umap/locale/sr.js +1 -11
  141. umap/static/umap/locale/sr.json +1 -11
  142. umap/static/umap/locale/sv.js +1 -11
  143. umap/static/umap/locale/sv.json +1 -11
  144. umap/static/umap/locale/th_TH.js +1 -11
  145. umap/static/umap/locale/th_TH.json +1 -11
  146. umap/static/umap/locale/tr.js +1 -11
  147. umap/static/umap/locale/tr.json +1 -11
  148. umap/static/umap/locale/uk_UA.js +1 -11
  149. umap/static/umap/locale/uk_UA.json +1 -11
  150. umap/static/umap/locale/vi.js +1 -11
  151. umap/static/umap/locale/vi.json +1 -11
  152. umap/static/umap/locale/vi_VN.json +1 -11
  153. umap/static/umap/locale/zh.js +1 -11
  154. umap/static/umap/locale/zh.json +1 -11
  155. umap/static/umap/locale/zh_CN.json +1 -11
  156. umap/static/umap/locale/zh_TW.Big5.json +1 -11
  157. umap/static/umap/locale/zh_TW.js +17 -27
  158. umap/static/umap/locale/zh_TW.json +17 -27
  159. umap/static/umap/map.css +2 -2
  160. umap/static/umap/nav.css +2 -1
  161. umap/static/umap/test/.eslintrc +0 -1
  162. umap/static/umap/test/Choropleth.js +29 -27
  163. umap/static/umap/test/DataLayer.js +207 -239
  164. umap/static/umap/test/Feature.js +33 -58
  165. umap/static/umap/test/Map.Export.js +11 -11
  166. umap/static/umap/test/Map.js +66 -67
  167. umap/static/umap/test/Marker.js +36 -32
  168. umap/static/umap/test/Polygon.js +95 -95
  169. umap/static/umap/test/Polyline.js +31 -31
  170. umap/static/umap/test/TableEditor.js +29 -25
  171. umap/static/umap/test/_pre.js +2 -7
  172. umap/static/umap/test/index.html +4 -4
  173. umap/static/umap/vendors/contextmenu/leaflet.contextmenu.css +54 -0
  174. umap/static/umap/vendors/contextmenu/leaflet.contextmenu.js +586 -0
  175. umap/static/umap/vendors/csv2geojson/index.js +259 -0
  176. umap/static/umap/vendors/dompurify/purify.js +1633 -0
  177. umap/static/umap/vendors/locatecontrol/L.Control.Locate.css +63 -0
  178. umap/static/umap/vendors/locatecontrol/L.Control.Locate.js +950 -0
  179. umap/static/umap/vendors/minimap/Control.MiniMap.css +88 -0
  180. umap/static/umap/vendors/minimap/Control.MiniMap.js +352 -0
  181. umap/static/umap/vendors/togeojson/togeojson.js +2 -0
  182. umap/templates/auth/user_form.html +3 -2
  183. umap/templates/base.html +1 -0
  184. umap/templates/registration/login.html +51 -36
  185. umap/templates/umap/about_summary.html +1 -1
  186. umap/templates/umap/branding.html +3 -0
  187. umap/templates/umap/content.html +15 -39
  188. umap/templates/umap/header.html +0 -0
  189. umap/templates/umap/home.html +4 -2
  190. umap/templates/umap/js.html +0 -1
  191. umap/templates/umap/map_detail.html +9 -0
  192. umap/templates/umap/map_init.html +1 -1
  193. umap/templates/umap/map_messages.html +4 -2
  194. umap/templates/umap/map_table.html +130 -69
  195. umap/templates/umap/navigation.html +2 -4
  196. umap/templates/umap/user_dashboard.html +29 -6
  197. umap/tests/base.py +1 -1
  198. umap/tests/integration/conftest.py +18 -0
  199. umap/tests/integration/test_anonymous_owned_map.py +6 -3
  200. umap/tests/integration/test_browser.py +166 -6
  201. umap/tests/integration/test_collaborative_editing.py +142 -0
  202. umap/tests/integration/test_dashboard.py +17 -0
  203. umap/tests/integration/test_edit_datalayer.py +4 -3
  204. umap/tests/integration/test_export_map.py +1 -1
  205. umap/tests/integration/test_import.py +9 -4
  206. umap/tests/integration/test_map.py +64 -0
  207. umap/tests/integration/test_map_preview.py +75 -0
  208. umap/tests/integration/test_owned_map.py +11 -25
  209. umap/tests/integration/test_picto.py +3 -3
  210. umap/tests/integration/test_querystring.py +52 -0
  211. umap/tests/integration/test_share.py +22 -0
  212. umap/tests/test_map_views.py +157 -14
  213. umap/tests/test_merge_features.py +5 -5
  214. umap/tests/test_views.py +50 -11
  215. umap/urls.py +6 -12
  216. umap/utils.py +1 -1
  217. umap/views.py +170 -47
  218. {umap_project-1.14.0a4.dist-info → umap_project-2.0.0a0.dist-info}/METADATA +13 -15
  219. {umap_project-1.14.0a4.dist-info → umap_project-2.0.0a0.dist-info}/RECORD +222 -200
  220. umap/static/umap/js/umap.browser.js +0 -148
  221. umap/static/umap/js/umap.xhr.js +0 -304
  222. umap/static/umap/test/Controls.js +0 -100
  223. umap/static/umap/test/Map.Init.js +0 -46
  224. {umap_project-1.14.0a4.dist-info → umap_project-2.0.0a0.dist-info}/WHEEL +0 -0
  225. {umap_project-1.14.0a4.dist-info → umap_project-2.0.0a0.dist-info}/entry_points.txt +0 -0
  226. {umap_project-1.14.0a4.dist-info → umap_project-2.0.0a0.dist-info}/licenses/LICENSE +0 -0
@@ -23,7 +23,7 @@ msgid ""
23
23
  msgstr ""
24
24
  "Project-Id-Version: uMap\n"
25
25
  "Report-Msgid-Bugs-To: \n"
26
- "POT-Creation-Date: 2024-01-08 12:33+0000\n"
26
+ "POT-Creation-Date: 2024-02-09 15:19+0000\n"
27
27
  "PO-Revision-Date: 2013-11-22 14:00+0000\n"
28
28
  "Last-Translator: yohanboniface <yohanboniface@free.fr>, 2013-2014,2018-2019,2023-2024\n"
29
29
  "Language-Team: French (http://app.transifex.com/openstreetmap/umap/language/fr/)\n"
@@ -41,7 +41,7 @@ msgstr "Modifiable seulement avec le lien de modification secret"
41
41
  msgid "Everyone can edit"
42
42
  msgstr "Tout le monde peut modifier"
43
43
 
44
- #: forms.py:69 models.py:349
44
+ #: forms.py:69 models.py:371
45
45
  msgid "Inherit"
46
46
  msgstr "Par défaut"
47
47
 
@@ -49,107 +49,107 @@ msgstr "Par défaut"
49
49
  msgid "Site is readonly for maintenance"
50
50
  msgstr "Le site est en lecture seule pour maintenance."
51
51
 
52
- #: models.py:49
52
+ #: models.py:50
53
53
  msgid "name"
54
54
  msgstr "nom"
55
55
 
56
- #: models.py:80
56
+ #: models.py:81
57
57
  msgid "details"
58
58
  msgstr "détails"
59
59
 
60
- #: models.py:81
60
+ #: models.py:82
61
61
  msgid "Link to a page where the licence is detailed."
62
62
  msgstr "Lien vers une page détaillant la licence."
63
63
 
64
- #: models.py:91
64
+ #: models.py:92
65
65
  msgid "URL template using OSM tile format"
66
66
  msgstr "Modèle d'URL au format des tuiles OSM"
67
67
 
68
- #: models.py:97
68
+ #: models.py:98
69
69
  msgid "Order of the tilelayers in the edit box"
70
70
  msgstr "Ordre des calques de tuiles dans le panneau de modification"
71
71
 
72
- #: models.py:143 models.py:350
72
+ #: models.py:144 models.py:372
73
73
  msgid "Everyone"
74
74
  msgstr "Tout le monde"
75
75
 
76
- #: models.py:144 models.py:150 models.py:351
76
+ #: models.py:145 models.py:151 models.py:373
77
77
  msgid "Editors only"
78
78
  msgstr "Éditeurs uniquement"
79
79
 
80
- #: models.py:145 models.py:352
80
+ #: models.py:146 models.py:374
81
81
  msgid "Owner only"
82
82
  msgstr "Propriétaire uniquement"
83
83
 
84
- #: models.py:148
84
+ #: models.py:149
85
85
  msgid "Everyone (public)"
86
86
  msgstr "Tout le monde (public)"
87
87
 
88
- #: models.py:149
88
+ #: models.py:150
89
89
  msgid "Anyone with link"
90
90
  msgstr "Quiconque a le lien"
91
91
 
92
- #: models.py:151
92
+ #: models.py:152
93
93
  msgid "Blocked"
94
94
  msgstr "Bloquée"
95
95
 
96
- #: models.py:154 models.py:356
96
+ #: models.py:155 models.py:378
97
97
  msgid "description"
98
98
  msgstr "description"
99
99
 
100
- #: models.py:155
100
+ #: models.py:156
101
101
  msgid "center"
102
102
  msgstr "centre"
103
103
 
104
- #: models.py:156
104
+ #: models.py:157
105
105
  msgid "zoom"
106
106
  msgstr "zoom"
107
107
 
108
- #: models.py:158
108
+ #: models.py:159
109
109
  msgid "locate"
110
110
  msgstr "géolocaliser"
111
111
 
112
- #: models.py:158
112
+ #: models.py:159
113
113
  msgid "Locate user on load?"
114
114
  msgstr "Géolocaliser l'utilisateur au chargement ?"
115
115
 
116
- #: models.py:162
116
+ #: models.py:163
117
117
  msgid "Choose the map licence."
118
118
  msgstr "Choisir une licence pour la carte"
119
119
 
120
- #: models.py:163
120
+ #: models.py:164
121
121
  msgid "licence"
122
122
  msgstr "licence"
123
123
 
124
- #: models.py:174
124
+ #: models.py:175
125
125
  msgid "owner"
126
126
  msgstr "créateur"
127
127
 
128
- #: models.py:178
128
+ #: models.py:179
129
129
  msgid "editors"
130
130
  msgstr "éditeurs"
131
131
 
132
- #: models.py:183 models.py:370
132
+ #: models.py:184 models.py:392
133
133
  msgid "edit status"
134
134
  msgstr "statut de modification"
135
135
 
136
- #: models.py:188
136
+ #: models.py:189
137
137
  msgid "share status"
138
138
  msgstr "qui a accès"
139
139
 
140
- #: models.py:191 models.py:365
140
+ #: models.py:192 models.py:387
141
141
  msgid "settings"
142
142
  msgstr "réglages"
143
143
 
144
- #: models.py:298
144
+ #: models.py:320
145
145
  msgid "Clone of"
146
146
  msgstr "Clone de"
147
147
 
148
- #: models.py:360
148
+ #: models.py:382
149
149
  msgid "display on load"
150
150
  msgstr "afficher au chargement."
151
151
 
152
- #: models.py:361
152
+ #: models.py:383
153
153
  msgid "Display this layer on load."
154
154
  msgstr "Afficher ce calque au chargement."
155
155
 
@@ -167,28 +167,27 @@ msgstr "Consulter les cartes de %(current_user)s"
167
167
  msgid "%(current_user)s has no maps."
168
168
  msgstr "%(current_user)s n'a aucune carte."
169
169
 
170
- #: templates/auth/user_form.html:6 templates/umap/navigation.html:12
171
- #: templates/umap/user_dashboard.html:4 templates/umap/user_dashboard.html:10
172
- msgid "My Dashboard"
173
- msgstr "Mon espace"
174
-
175
170
  #: templates/auth/user_form.html:6
171
+ msgid "My Maps"
172
+ msgstr "Mes cartes"
173
+
174
+ #: templates/auth/user_form.html:7
176
175
  msgid "My Profile"
177
176
  msgstr "Mon profil"
178
177
 
179
- #: templates/auth/user_form.html:19
178
+ #: templates/auth/user_form.html:20
180
179
  msgid "Save"
181
180
  msgstr "Enregistrer"
182
181
 
183
- #: templates/auth/user_form.html:24
182
+ #: templates/auth/user_form.html:25
184
183
  msgid "Your current providers"
185
184
  msgstr "Vos fournisseurs associés"
186
185
 
187
- #: templates/auth/user_form.html:30
186
+ #: templates/auth/user_form.html:31
188
187
  msgid "Connect to another provider"
189
188
  msgstr "Associer un autre fournisseur"
190
189
 
191
- #: templates/auth/user_form.html:32
190
+ #: templates/auth/user_form.html:33
192
191
  msgid ""
193
192
  "It's a good habit to connect your account to more than one provider, in case"
194
193
  " one provider becomes unavailable, temporarily or even permanently."
@@ -210,23 +209,23 @@ msgid ""
210
209
  "them in your site."
211
210
  msgstr "uMap permet de créer des cartes personnalisées sur des fonds OpenStreetMap en un instant et les afficher dans votre site."
212
211
 
213
- #: templates/registration/login.html:3
212
+ #: templates/registration/login.html:16
214
213
  msgid "Please log in with your account"
215
214
  msgstr "Identifiez-vous"
216
215
 
217
- #: templates/registration/login.html:15
216
+ #: templates/registration/login.html:28
218
217
  msgid "Username"
219
218
  msgstr "Nom d'utilisateur"
220
219
 
221
- #: templates/registration/login.html:18
220
+ #: templates/registration/login.html:31
222
221
  msgid "Password"
223
222
  msgstr "Mot de passe"
224
223
 
225
- #: templates/registration/login.html:19
224
+ #: templates/registration/login.html:32
226
225
  msgid "Login"
227
226
  msgstr "Connexion"
228
227
 
229
- #: templates/registration/login.html:24
228
+ #: templates/registration/login.html:37
230
229
  msgid "Please choose a provider"
231
230
  msgstr "Merci de choisir un fournisseur"
232
231
 
@@ -270,8 +269,8 @@ msgstr "Exporter et partager votre carte"
270
269
  msgid "And it's <a href=\"%(repo_url)s\">open source</a>!"
271
270
  msgstr "Et c'est <a href=\"%(repo_url)s\">open source</a>!"
272
271
 
273
- #: templates/umap/about_summary.html:48 templates/umap/navigation.html:42
274
- #: templates/umap/user_dashboard.html:20
272
+ #: templates/umap/about_summary.html:48 templates/umap/navigation.html:40
273
+ #: templates/umap/user_dashboard.html:41
275
274
  msgid "Create a map"
276
275
  msgstr "Créer une carte"
277
276
 
@@ -279,13 +278,13 @@ msgstr "Créer une carte"
279
278
  msgid "Play with the demo"
280
279
  msgstr "Tester la démo"
281
280
 
282
- #: templates/umap/content.html:23
281
+ #: templates/umap/content.html:22
283
282
  msgid ""
284
283
  "This instance of uMap is currently in read only mode, no creation/edit is "
285
284
  "allowed."
286
285
  msgstr "uMap est actuellement en mode lecture seule, aucune création ou modification n'est possible."
287
286
 
288
- #: templates/umap/content.html:31
287
+ #: templates/umap/content.html:30
289
288
  #, python-format
290
289
  msgid ""
291
290
  "This is a demo instance, used for tests and pre-rolling releases. If you "
@@ -298,7 +297,7 @@ msgstr "Il s'agit d'un site de démonstration, utilisé pour les tests et valida
298
297
  msgid "Map of the uMaps"
299
298
  msgstr "La carte des uMaps"
300
299
 
301
- #: templates/umap/home.html:13
300
+ #: templates/umap/home.html:14
302
301
  msgid "Get inspired, browse maps"
303
302
  msgstr "Naviguer dans les cartes"
304
303
 
@@ -306,7 +305,7 @@ msgstr "Naviguer dans les cartes"
306
305
  msgid "You are logged in. Continuing..."
307
306
  msgstr "Vous êtes maintenant identifié. Merci de patienter..."
308
307
 
309
- #: templates/umap/map_list.html:9 views.py:296
308
+ #: templates/umap/map_list.html:9 views.py:341
310
309
  msgid "by"
311
310
  msgstr "par"
312
311
 
@@ -314,95 +313,118 @@ msgstr "par"
314
313
  msgid "More"
315
314
  msgstr "Plus"
316
315
 
317
- #: templates/umap/map_table.html:5
316
+ #: templates/umap/map_table.html:6
318
317
  msgid "Name"
319
318
  msgstr "Nom"
320
319
 
321
- #: templates/umap/map_table.html:6
320
+ #: templates/umap/map_table.html:7
322
321
  msgid "Preview"
323
322
  msgstr "Aperçu"
324
323
 
325
- #: templates/umap/map_table.html:7
326
- msgid "Who can see / edit"
327
- msgstr "Qui peut voir / modifier"
328
-
329
324
  #: templates/umap/map_table.html:8
325
+ msgid "Who can see"
326
+ msgstr "Qui peut voir"
327
+
328
+ #: templates/umap/map_table.html:9
329
+ msgid "Who can edit"
330
+ msgstr "Qui peut modifier"
331
+
332
+ #: templates/umap/map_table.html:10
330
333
  msgid "Last save"
331
334
  msgstr "Dernière modification"
332
335
 
333
- #: templates/umap/map_table.html:9
336
+ #: templates/umap/map_table.html:11
334
337
  msgid "Owner"
335
338
  msgstr "Propriétaire"
336
339
 
337
- #: templates/umap/map_table.html:10
340
+ #: templates/umap/map_table.html:12
338
341
  msgid "Actions"
339
342
  msgstr "Actions"
340
343
 
341
- #: templates/umap/map_table.html:22
344
+ #: templates/umap/map_table.html:25 templates/umap/map_table.html:27
342
345
  msgid "Open preview"
343
346
  msgstr "Ouvrir l'aperçu"
344
347
 
345
- #: templates/umap/map_table.html:38
348
+ #: templates/umap/map_table.html:46 templates/umap/map_table.html:48
346
349
  msgid "Share"
347
350
  msgstr "Partager"
348
351
 
349
- #: templates/umap/map_table.html:39
352
+ #: templates/umap/map_table.html:51 templates/umap/map_table.html:53
350
353
  msgid "Edit"
351
354
  msgstr "Éditer"
352
355
 
353
- #: templates/umap/map_table.html:40
356
+ #: templates/umap/map_table.html:56 templates/umap/map_table.html:58
354
357
  msgid "Download"
355
358
  msgstr "Télécharger"
356
359
 
357
- #: templates/umap/map_table.html:49
360
+ #: templates/umap/map_table.html:63 templates/umap/map_table.html:65
361
+ msgid "Clone"
362
+ msgstr "Cloner"
363
+
364
+ #: templates/umap/map_table.html:73 templates/umap/map_table.html:75
365
+ msgid "Delete"
366
+ msgstr "Supprimer"
367
+
368
+ #: templates/umap/map_table.html:88
358
369
  msgid "first"
359
370
  msgstr "début"
360
371
 
361
- #: templates/umap/map_table.html:50
372
+ #: templates/umap/map_table.html:89
362
373
  msgid "previous"
363
374
  msgstr "précédente"
364
375
 
365
- #: templates/umap/map_table.html:59
376
+ #: templates/umap/map_table.html:98
366
377
  #, python-format
367
- msgid ""
368
- "\n"
369
- " Page %(maps_number)s of %(num_pages)s\n"
370
- " "
371
- msgstr "\n Page %(maps_number)s de %(num_pages)s\n "
378
+ msgid "Page %(maps_number)s of %(num_pages)s"
379
+ msgstr "Page %(maps_number)s de %(num_pages)s"
372
380
 
373
- #: templates/umap/map_table.html:65
381
+ #: templates/umap/map_table.html:104
374
382
  msgid "next"
375
383
  msgstr "suivante"
376
384
 
377
- #: templates/umap/map_table.html:66
385
+ #: templates/umap/map_table.html:105
378
386
  msgid "last"
379
387
  msgstr "fin"
380
388
 
381
- #: templates/umap/navigation.html:15
389
+ #: templates/umap/map_table.html:113
390
+ #, python-format
391
+ msgid "Lines per page: %(per_page)s"
392
+ msgstr "Lignes par page: %(per_page)s"
393
+
394
+ #: templates/umap/map_table.html:118
395
+ #, python-format
396
+ msgid "%(count)s maps"
397
+ msgstr "%(count)s cartes"
398
+
399
+ #: templates/umap/navigation.html:10 templates/umap/user_dashboard.html:4
400
+ msgid "My Dashboard"
401
+ msgstr "Mon espace"
402
+
403
+ #: templates/umap/navigation.html:13
382
404
  msgid "Starred maps"
383
405
  msgstr "Favoris"
384
406
 
385
- #: templates/umap/navigation.html:19
407
+ #: templates/umap/navigation.html:17
386
408
  msgid "Log in"
387
409
  msgstr "Connexion"
388
410
 
389
- #: templates/umap/navigation.html:19
411
+ #: templates/umap/navigation.html:17
390
412
  msgid "Sign in"
391
413
  msgstr "Créer un compte"
392
414
 
393
- #: templates/umap/navigation.html:23
415
+ #: templates/umap/navigation.html:21
394
416
  msgid "About"
395
417
  msgstr "À propos"
396
418
 
397
- #: templates/umap/navigation.html:26
419
+ #: templates/umap/navigation.html:24
398
420
  msgid "Help"
399
421
  msgstr "Aide"
400
422
 
401
- #: templates/umap/navigation.html:31
423
+ #: templates/umap/navigation.html:29
402
424
  msgid "Change password"
403
425
  msgstr "Changer le mot de passe"
404
426
 
405
- #: templates/umap/navigation.html:35
427
+ #: templates/umap/navigation.html:33
406
428
  msgid "Log out"
407
429
  msgstr "Déconnexion"
408
430
 
@@ -460,7 +482,7 @@ msgstr "Dernières cartes créées."
460
482
  msgid "Search maps"
461
483
  msgstr "Chercher des cartes"
462
484
 
463
- #: templates/umap/search_bar.html:14
485
+ #: templates/umap/search_bar.html:14 templates/umap/user_dashboard.html:25
464
486
  msgid "Search"
465
487
  msgstr "Chercher"
466
488
 
@@ -468,60 +490,78 @@ msgstr "Chercher"
468
490
  msgid "Search my maps"
469
491
  msgstr "Chercher dans mes cartes"
470
492
 
471
- #: templates/umap/user_dashboard.html:10
493
+ #: templates/umap/user_dashboard.html:11
494
+ #, python-format
495
+ msgid "My Maps (%(count)s)"
496
+ msgstr "Mes cartes (%(count)s)"
497
+
498
+ #: templates/umap/user_dashboard.html:13
472
499
  msgid "My profile"
473
500
  msgstr "Mon profil"
474
501
 
475
- #: templates/umap/user_dashboard.html:20
502
+ #: templates/umap/user_dashboard.html:21
503
+ msgid "Map’s title"
504
+ msgstr "Titre de la carte"
505
+
506
+ #: templates/umap/user_dashboard.html:31
507
+ #, python-format
508
+ msgid "Download %(count)s maps"
509
+ msgstr "Télécharger %(count)s cartes"
510
+
511
+ #: templates/umap/user_dashboard.html:41
476
512
  msgid "You have no map yet."
477
513
  msgstr "Vous n'avez pas encore de carte."
478
514
 
479
- #: views.py:301
515
+ #: views.py:346
480
516
  msgid "View the map"
481
517
  msgstr "Voir la carte"
482
518
 
483
- #: views.py:660
519
+ #: views.py:704
520
+ msgid "See full screen"
521
+ msgstr "Plein écran"
522
+
523
+ #: views.py:779
484
524
  msgid "Map has been updated!"
485
525
  msgstr "La carte a été mise à jour !"
486
526
 
487
- #: views.py:685
527
+ #: views.py:804
488
528
  msgid "Map editors updated with success!"
489
529
  msgstr "Éditeurs de la carte mis à jour !"
490
530
 
491
- #: views.py:723
531
+ #: views.py:842
492
532
  #, python-format
493
533
  msgid "The uMap edit link for your map: %(map_name)s"
494
534
  msgstr "La lien d'édition uMap pour votre carte %(map_name)s"
495
535
 
496
- #: views.py:726
536
+ #: views.py:845
497
537
  #, python-format
498
538
  msgid "Here is your secret edit link: %(link)s"
499
539
  msgstr "Voici votre lien d'édition secret: %(link)s"
500
540
 
501
- #: views.py:732
541
+ #: views.py:851
502
542
  #, python-format
503
543
  msgid "Email sent to %(email)s"
504
544
  msgstr "Courriel envoyé à %(email)s"
505
545
 
506
- #: views.py:743
546
+ #: views.py:862
507
547
  msgid "Only its owner can delete the map."
508
548
  msgstr "Seul le créateur de la carte peut la supprimer."
509
549
 
510
- #: views.py:766
550
+ #: views.py:890
511
551
  #, python-format
512
552
  msgid ""
513
553
  "Your map has been cloned! If you want to edit this map from another "
514
554
  "computer, please use this link: %(anonymous_url)s"
515
555
  msgstr "Votre carte a été dupliquée ! Si vous souhaitez la modifier depuis un autre ordinateur, veuillez utiliser ce lien : %(anonymous_url)s"
516
556
 
517
- #: views.py:771
557
+ #: views.py:895
518
558
  msgid "Congratulations, your map has been cloned!"
519
559
  msgstr "Votre carte a été dupliquée !"
520
560
 
521
- #: views.py:1007
561
+ #: views.py:1131
522
562
  msgid "Layer successfully deleted."
523
563
  msgstr "Calque supprimé."
524
564
 
525
- #: views.py:1029
565
+ #: views.py:1153
526
566
  msgid "Permissions updated with success!"
527
567
  msgstr "Les permissions ont bien été modifiées !"
Binary file