umap-project 2.9.3__py3-none-any.whl → 3.0.1__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 (217) hide show
  1. umap/__init__.py +1 -1
  2. umap/context_processors.py +1 -0
  3. umap/forms.py +1 -2
  4. umap/locale/de/LC_MESSAGES/django.mo +0 -0
  5. umap/locale/de/LC_MESSAGES/django.po +218 -96
  6. umap/locale/en/LC_MESSAGES/django.po +128 -52
  7. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  8. umap/locale/fr/LC_MESSAGES/django.po +128 -52
  9. umap/locale/hu/LC_MESSAGES/django.mo +0 -0
  10. umap/locale/hu/LC_MESSAGES/django.po +209 -88
  11. umap/locale/is/LC_MESSAGES/django.mo +0 -0
  12. umap/locale/is/LC_MESSAGES/django.po +296 -175
  13. umap/migrations/0027_map_tags.py +23 -0
  14. umap/models.py +13 -2
  15. umap/settings/base.py +23 -5
  16. umap/static/umap/base.css +41 -8
  17. umap/static/umap/content.css +72 -37
  18. umap/static/umap/css/bar.css +43 -21
  19. umap/static/umap/css/dialog.css +4 -1
  20. umap/static/umap/css/form.css +40 -27
  21. umap/static/umap/css/icon.css +11 -1
  22. umap/static/umap/css/importers.css +7 -0
  23. umap/static/umap/img/16-white.svg +23 -2
  24. umap/static/umap/img/16.svg +1 -1
  25. umap/static/umap/img/24.svg +4 -4
  26. umap/static/umap/img/home.svg +7 -0
  27. umap/static/umap/img/importers/banfr.svg +1 -0
  28. umap/static/umap/img/marker.svg +2 -5
  29. umap/static/umap/img/source/16-white.svg +24 -3
  30. umap/static/umap/img/source/16.svg +1 -1
  31. umap/static/umap/img/source/24.svg +5 -5
  32. umap/static/umap/img/target.svg +1 -0
  33. umap/static/umap/js/components/alerts/alert.js +0 -1
  34. umap/static/umap/js/modules/browser.js +4 -4
  35. umap/static/umap/js/modules/caption.js +1 -1
  36. umap/static/umap/js/modules/data/features.js +25 -25
  37. umap/static/umap/js/modules/data/layer.js +91 -97
  38. umap/static/umap/js/modules/facets.js +9 -5
  39. umap/static/umap/js/modules/form/builder.js +19 -27
  40. umap/static/umap/js/modules/form/fields.js +40 -14
  41. umap/static/umap/js/modules/formatter.js +1 -1
  42. umap/static/umap/js/modules/global.js +9 -5
  43. umap/static/umap/js/modules/help.js +18 -5
  44. umap/static/umap/js/modules/importer.js +5 -2
  45. umap/static/umap/js/modules/importers/banfr.js +93 -0
  46. umap/static/umap/js/modules/importers/cadastrefr.js +2 -2
  47. umap/static/umap/js/modules/importers/communesfr.js +1 -1
  48. umap/static/umap/js/modules/permissions.js +20 -10
  49. umap/static/umap/js/modules/rendering/icon.js +15 -2
  50. umap/static/umap/js/modules/rendering/layers/classified.js +7 -7
  51. umap/static/umap/js/modules/rendering/layers/cluster.js +2 -2
  52. umap/static/umap/js/modules/rendering/layers/heat.js +4 -4
  53. umap/static/umap/js/modules/rendering/map.js +14 -6
  54. umap/static/umap/js/modules/rendering/popup.js +2 -2
  55. umap/static/umap/js/modules/rendering/template.js +3 -3
  56. umap/static/umap/js/modules/rendering/ui.js +17 -11
  57. umap/static/umap/js/modules/rules.js +13 -16
  58. umap/static/umap/js/modules/schema.js +23 -1
  59. umap/static/umap/js/modules/share.js +1 -1
  60. umap/static/umap/js/modules/slideshow.js +1 -0
  61. umap/static/umap/js/modules/sync/engine.js +141 -19
  62. umap/static/umap/js/modules/sync/undo.js +101 -0
  63. umap/static/umap/js/modules/sync/updaters.js +51 -28
  64. umap/static/umap/js/modules/tableeditor.js +1 -1
  65. umap/static/umap/js/modules/ui/bar.js +61 -21
  66. umap/static/umap/js/modules/ui/tooltip.js +1 -1
  67. umap/static/umap/js/modules/umap.js +190 -176
  68. umap/static/umap/js/modules/utils.js +30 -4
  69. umap/static/umap/js/umap.controls.js +82 -38
  70. umap/static/umap/locale/am_ET.js +11 -6
  71. umap/static/umap/locale/am_ET.json +11 -6
  72. umap/static/umap/locale/ar.js +11 -6
  73. umap/static/umap/locale/ar.json +11 -6
  74. umap/static/umap/locale/ast.js +11 -6
  75. umap/static/umap/locale/ast.json +11 -6
  76. umap/static/umap/locale/bg.js +11 -6
  77. umap/static/umap/locale/bg.json +11 -6
  78. umap/static/umap/locale/br.js +12 -7
  79. umap/static/umap/locale/br.json +12 -7
  80. umap/static/umap/locale/ca.js +11 -6
  81. umap/static/umap/locale/ca.json +11 -6
  82. umap/static/umap/locale/cs_CZ.js +11 -6
  83. umap/static/umap/locale/cs_CZ.json +11 -6
  84. umap/static/umap/locale/da.js +11 -6
  85. umap/static/umap/locale/da.json +11 -6
  86. umap/static/umap/locale/de.js +47 -42
  87. umap/static/umap/locale/de.json +47 -42
  88. umap/static/umap/locale/el.js +11 -6
  89. umap/static/umap/locale/el.json +11 -6
  90. umap/static/umap/locale/en.js +11 -6
  91. umap/static/umap/locale/en.json +11 -6
  92. umap/static/umap/locale/en_US.json +11 -6
  93. umap/static/umap/locale/es.js +11 -6
  94. umap/static/umap/locale/es.json +11 -6
  95. umap/static/umap/locale/et.js +11 -6
  96. umap/static/umap/locale/et.json +11 -6
  97. umap/static/umap/locale/eu.js +11 -6
  98. umap/static/umap/locale/eu.json +11 -6
  99. umap/static/umap/locale/fa_IR.js +11 -6
  100. umap/static/umap/locale/fa_IR.json +11 -6
  101. umap/static/umap/locale/fi.js +11 -6
  102. umap/static/umap/locale/fi.json +11 -6
  103. umap/static/umap/locale/fr.js +11 -6
  104. umap/static/umap/locale/fr.json +11 -6
  105. umap/static/umap/locale/gl.js +12 -7
  106. umap/static/umap/locale/gl.json +12 -7
  107. umap/static/umap/locale/he.js +11 -6
  108. umap/static/umap/locale/he.json +11 -6
  109. umap/static/umap/locale/hr.js +11 -6
  110. umap/static/umap/locale/hr.json +11 -6
  111. umap/static/umap/locale/hu.js +25 -20
  112. umap/static/umap/locale/hu.json +25 -20
  113. umap/static/umap/locale/id.js +11 -6
  114. umap/static/umap/locale/id.json +11 -6
  115. umap/static/umap/locale/is.js +151 -146
  116. umap/static/umap/locale/is.json +151 -146
  117. umap/static/umap/locale/it.js +11 -6
  118. umap/static/umap/locale/it.json +11 -6
  119. umap/static/umap/locale/ja.js +11 -6
  120. umap/static/umap/locale/ja.json +11 -6
  121. umap/static/umap/locale/ko.js +11 -6
  122. umap/static/umap/locale/ko.json +11 -6
  123. umap/static/umap/locale/lt.js +11 -6
  124. umap/static/umap/locale/lt.json +11 -6
  125. umap/static/umap/locale/ms.js +11 -6
  126. umap/static/umap/locale/ms.json +11 -6
  127. umap/static/umap/locale/nl.js +12 -7
  128. umap/static/umap/locale/nl.json +12 -7
  129. umap/static/umap/locale/no.js +11 -6
  130. umap/static/umap/locale/no.json +11 -6
  131. umap/static/umap/locale/pl.js +11 -6
  132. umap/static/umap/locale/pl.json +11 -6
  133. umap/static/umap/locale/pl_PL.json +11 -6
  134. umap/static/umap/locale/pt.js +11 -6
  135. umap/static/umap/locale/pt.json +11 -6
  136. umap/static/umap/locale/pt_BR.js +11 -6
  137. umap/static/umap/locale/pt_BR.json +11 -6
  138. umap/static/umap/locale/pt_PT.js +11 -6
  139. umap/static/umap/locale/pt_PT.json +11 -6
  140. umap/static/umap/locale/ro.js +11 -6
  141. umap/static/umap/locale/ro.json +11 -6
  142. umap/static/umap/locale/ru.js +11 -6
  143. umap/static/umap/locale/ru.json +11 -6
  144. umap/static/umap/locale/sk_SK.js +11 -6
  145. umap/static/umap/locale/sk_SK.json +11 -6
  146. umap/static/umap/locale/sl.js +11 -6
  147. umap/static/umap/locale/sl.json +11 -6
  148. umap/static/umap/locale/sr.js +11 -6
  149. umap/static/umap/locale/sr.json +11 -6
  150. umap/static/umap/locale/sv.js +11 -6
  151. umap/static/umap/locale/sv.json +11 -6
  152. umap/static/umap/locale/th_TH.js +11 -6
  153. umap/static/umap/locale/th_TH.json +11 -6
  154. umap/static/umap/locale/tr.js +11 -6
  155. umap/static/umap/locale/tr.json +11 -6
  156. umap/static/umap/locale/uk_UA.js +11 -6
  157. umap/static/umap/locale/uk_UA.json +11 -6
  158. umap/static/umap/locale/vi.js +11 -6
  159. umap/static/umap/locale/vi.json +11 -6
  160. umap/static/umap/locale/vi_VN.json +11 -6
  161. umap/static/umap/locale/zh.js +11 -6
  162. umap/static/umap/locale/zh.json +11 -6
  163. umap/static/umap/locale/zh_CN.json +11 -6
  164. umap/static/umap/locale/zh_TW.Big5.json +11 -6
  165. umap/static/umap/locale/zh_TW.js +19 -14
  166. umap/static/umap/locale/zh_TW.json +19 -14
  167. umap/static/umap/map.css +58 -28
  168. umap/static/umap/unittests/sync.js +0 -57
  169. umap/static/umap/unittests/utils.js +47 -0
  170. umap/static/umap/vars.css +5 -2
  171. umap/static/umap/vendors/photon/leaflet.photon.js +3 -0
  172. umap/sync/payloads.py +3 -2
  173. umap/templates/auth/user_detail.html +1 -1
  174. umap/templates/auth/user_stars.html +1 -1
  175. umap/templates/umap/content.html +17 -12
  176. umap/templates/umap/home.html +7 -5
  177. umap/templates/umap/map_fragment.html +1 -1
  178. umap/templates/umap/map_list.html +20 -13
  179. umap/templates/umap/search.html +7 -3
  180. umap/templates/umap/search_bar.html +13 -11
  181. umap/templates/umap/team_detail.html +1 -1
  182. umap/tests/base.py +2 -1
  183. umap/tests/fixtures/remote_data.umap +55 -0
  184. umap/tests/fixtures/test_upload_data_with_iconurl.umap +122 -0
  185. umap/tests/integration/test_browser.py +1 -3
  186. umap/tests/integration/test_conditional_rules.py +3 -0
  187. umap/tests/integration/test_edit_datalayer.py +2 -7
  188. umap/tests/integration/test_edit_map.py +15 -0
  189. umap/tests/integration/test_edit_polygon.py +1 -2
  190. umap/tests/integration/test_import.py +59 -2
  191. umap/tests/integration/test_optimistic_merge.py +4 -3
  192. umap/tests/integration/test_owned_map.py +0 -1
  193. umap/tests/integration/test_save.py +2 -4
  194. umap/tests/integration/test_undo_redo.py +267 -0
  195. umap/tests/integration/test_websocket_sync.py +78 -11
  196. umap/tests/settings.py +1 -3
  197. umap/tests/test_datalayer_s3.py +1 -0
  198. umap/tests/test_map_views.py +1 -0
  199. umap/tests/test_views.py +34 -0
  200. umap/utils.py +1 -1
  201. umap/views.py +23 -2
  202. {umap_project-2.9.3.dist-info → umap_project-3.0.1.dist-info}/METADATA +13 -12
  203. {umap_project-2.9.3.dist-info → umap_project-3.0.1.dist-info}/RECORD +206 -208
  204. umap/static/umap/js/modules/saving.js +0 -52
  205. umap/static/umap/test/.eslintrc +0 -21
  206. umap/static/umap/test/DataLayer.js +0 -463
  207. umap/static/umap/test/Feature.js +0 -131
  208. umap/static/umap/test/Map.js +0 -37
  209. umap/static/umap/test/Marker.js +0 -126
  210. umap/static/umap/test/Polygon.js +0 -111
  211. umap/static/umap/test/Polyline.js +0 -286
  212. umap/static/umap/test/Util.js +0 -28
  213. umap/static/umap/test/_pre.js +0 -455
  214. umap/static/umap/test/index.html +0 -139
  215. {umap_project-2.9.3.dist-info → umap_project-3.0.1.dist-info}/WHEEL +0 -0
  216. {umap_project-2.9.3.dist-info → umap_project-3.0.1.dist-info}/entry_points.txt +0 -0
  217. {umap_project-2.9.3.dist-info → umap_project-3.0.1.dist-info}/licenses/LICENSE +0 -0
@@ -24,7 +24,7 @@ msgid ""
24
24
  msgstr ""
25
25
  "Project-Id-Version: uMap\n"
26
26
  "Report-Msgid-Bugs-To: \n"
27
- "POT-Creation-Date: 2025-03-07 15:18+0000\n"
27
+ "POT-Creation-Date: 2025-04-04 16:49+0000\n"
28
28
  "PO-Revision-Date: 2013-11-22 14:00+0000\n"
29
29
  "Last-Translator: yohanboniface <yohanboniface@free.fr>, 2013-2014,2018-2019,2023-2025\n"
30
30
  "Language-Team: French (http://app.transifex.com/openstreetmap/umap/language/fr/)\n"
@@ -54,134 +54,202 @@ msgid ""
54
54
  " and maps. Then, please logout and login again with the new provider."
55
55
  msgstr "L’utilisation de “%(name)s” pour s’authentifier est dépréciée et sera bientôt rendue impossible. Veuillez configurer un nouveau fournisseur ci-dessous avant de perdre l’accès à votre compte et à vos cartes. Puis veuillez vous déconnecter et reconnecter avec le nouveau fournisseur."
56
56
 
57
- #: models.py:60 models.py:79
57
+ #: models.py:61 models.py:80
58
58
  msgid "name"
59
59
  msgstr "nom"
60
60
 
61
- #: models.py:62 models.py:485
61
+ #: models.py:63 models.py:493
62
62
  msgid "description"
63
63
  msgstr "description"
64
64
 
65
- #: models.py:110
65
+ #: models.py:111
66
66
  msgid "details"
67
67
  msgstr "détails"
68
68
 
69
- #: models.py:111
69
+ #: models.py:112
70
70
  msgid "Link to a page where the licence is detailed."
71
71
  msgstr "Lien vers une page détaillant la licence."
72
72
 
73
- #: models.py:121
73
+ #: models.py:122
74
74
  msgid "URL template using OSM tile format"
75
75
  msgstr "Modèle d'URL au format des tuiles OSM"
76
76
 
77
- #: models.py:127
77
+ #: models.py:128
78
78
  msgid "Order of the tilelayers in the edit box"
79
79
  msgstr "Ordre des calques de tuiles dans le panneau de modification"
80
80
 
81
- #: models.py:175 models.py:479
81
+ #: models.py:176 models.py:487
82
82
  msgid "Only editable with secret edit link"
83
83
  msgstr "Modifiable seulement avec le lien de modification secret"
84
84
 
85
- #: models.py:176 models.py:480
85
+ #: models.py:177 models.py:488
86
86
  msgid "Everyone can edit"
87
87
  msgstr "Tout le monde peut modifier"
88
88
 
89
- #: models.py:179 models.py:473
89
+ #: models.py:180 models.py:481
90
90
  msgid "Everyone"
91
91
  msgstr "Tout le monde"
92
92
 
93
- #: models.py:180 models.py:189 models.py:474
93
+ #: models.py:181 models.py:190 models.py:482
94
94
  msgid "Editors and team only"
95
95
  msgstr "Éditeurs et équipe seulement"
96
96
 
97
- #: models.py:181 models.py:475
97
+ #: models.py:182 models.py:483
98
98
  msgid "Owner only"
99
99
  msgstr "Propriétaire uniquement"
100
100
 
101
- #: models.py:184
101
+ #: models.py:185
102
102
  msgid "Draft (private)"
103
103
  msgstr "Brouillon (privé)"
104
104
 
105
- #: models.py:185
105
+ #: models.py:186
106
106
  msgid "Everyone (public)"
107
107
  msgstr "Tout le monde (public)"
108
108
 
109
- #: models.py:188
109
+ #: models.py:189
110
110
  msgid "Anyone with link"
111
111
  msgstr "Quiconque a le lien"
112
112
 
113
- #: models.py:190
113
+ #: models.py:191
114
114
  msgid "Blocked"
115
115
  msgstr "Bloquée"
116
116
 
117
- #: models.py:191 models.py:469
117
+ #: models.py:192 models.py:477
118
118
  msgid "Deleted"
119
119
  msgstr "Supprimé"
120
120
 
121
- #: models.py:194
121
+ #: models.py:195
122
122
  msgid "center"
123
123
  msgstr "centre"
124
124
 
125
- #: models.py:195
125
+ #: models.py:196
126
126
  msgid "zoom"
127
127
  msgstr "zoom"
128
128
 
129
- #: models.py:197
129
+ #: models.py:198
130
130
  msgid "locate"
131
131
  msgstr "géolocaliser"
132
132
 
133
- #: models.py:197
133
+ #: models.py:198
134
134
  msgid "Locate user on load?"
135
135
  msgstr "Géolocaliser l'utilisateur au chargement ?"
136
136
 
137
- #: models.py:201
137
+ #: models.py:202
138
138
  msgid "Choose the map licence."
139
139
  msgstr "Choisir une licence pour la carte"
140
140
 
141
- #: models.py:202
141
+ #: models.py:203
142
142
  msgid "licence"
143
143
  msgstr "licence"
144
144
 
145
- #: models.py:213
145
+ #: models.py:214
146
146
  msgid "owner"
147
147
  msgstr "créateur"
148
148
 
149
- #: models.py:217
149
+ #: models.py:218
150
150
  msgid "editors"
151
151
  msgstr "éditeurs"
152
152
 
153
- #: models.py:223
153
+ #: models.py:224
154
154
  msgid "team"
155
155
  msgstr "équipe"
156
156
 
157
- #: models.py:229 models.py:501
157
+ #: models.py:230 models.py:509
158
158
  msgid "edit status"
159
159
  msgstr "statut de modification"
160
160
 
161
- #: models.py:234 models.py:506
161
+ #: models.py:235 models.py:514
162
162
  msgid "share status"
163
163
  msgstr "qui a accès"
164
164
 
165
- #: models.py:237 models.py:496
165
+ #: models.py:238 models.py:504
166
166
  msgid "settings"
167
167
  msgstr "réglages"
168
168
 
169
- #: models.py:407
169
+ #: models.py:410
170
170
  msgid "Clone of"
171
171
  msgstr "Clone de"
172
172
 
173
- #: models.py:468 models.py:472 models.py:478
173
+ #: models.py:476 models.py:480 models.py:486
174
174
  msgid "Inherit"
175
175
  msgstr "Par défaut"
176
176
 
177
- #: models.py:491
177
+ #: models.py:499
178
178
  msgid "display on load"
179
179
  msgstr "afficher au chargement."
180
180
 
181
- #: models.py:492
181
+ #: models.py:500
182
182
  msgid "Display this layer on load."
183
183
  msgstr "Afficher ce calque au chargement."
184
184
 
185
+ #: settings/base.py:295
186
+ msgid "Art and Culture"
187
+ msgstr "Art et culture"
188
+
189
+ #: settings/base.py:296
190
+ msgid "Cycling"
191
+ msgstr "Vélo"
192
+
193
+ #: settings/base.py:297
194
+ msgid "Business"
195
+ msgstr "Économie"
196
+
197
+ #: settings/base.py:298
198
+ msgid "Environment"
199
+ msgstr "Environnement"
200
+
201
+ #: settings/base.py:299
202
+ msgid "Education"
203
+ msgstr "Éducation"
204
+
205
+ #: settings/base.py:300
206
+ msgid "Food and Agriculture"
207
+ msgstr "Nourriture et agriculture"
208
+
209
+ #: settings/base.py:301
210
+ msgid "Geopolitics"
211
+ msgstr "Géopolitique"
212
+
213
+ #: settings/base.py:302
214
+ msgid "Health"
215
+ msgstr "Santé"
216
+
217
+ #: settings/base.py:303
218
+ msgid "Hiking"
219
+ msgstr "Rando"
220
+
221
+ #: settings/base.py:304
222
+ msgid "History"
223
+ msgstr "Histoire"
224
+
225
+ #: settings/base.py:305
226
+ msgid "Public sector"
227
+ msgstr "Secteur public"
228
+
229
+ #: settings/base.py:306
230
+ msgid "Science"
231
+ msgstr "Science"
232
+
233
+ #: settings/base.py:307
234
+ msgid "Shopping"
235
+ msgstr "Commerces"
236
+
237
+ #: settings/base.py:308
238
+ msgid "Sport and Leisure"
239
+ msgstr "Sport et loisirs"
240
+
241
+ #: settings/base.py:309
242
+ msgid "Travel"
243
+ msgstr "Voyage"
244
+
245
+ #: settings/base.py:310
246
+ msgid "Transports"
247
+ msgstr "Transports"
248
+
249
+ #: settings/base.py:311
250
+ msgid "Tourism"
251
+ msgstr "Tourisme"
252
+
185
253
  #: templates/403.html:8
186
254
  msgid ""
187
255
  "<a href=\"https://discover.umap-project.org/support/faq/#map-statuses\" "
@@ -434,7 +502,7 @@ msgstr "Mes équipes"
434
502
  msgid "Map of the uMaps"
435
503
  msgstr "La carte des uMaps"
436
504
 
437
- #: templates/umap/home.html:24
505
+ #: templates/umap/home.html:25
438
506
  msgid "Get inspired, browse maps"
439
507
  msgstr "Naviguer dans les cartes"
440
508
 
@@ -442,11 +510,15 @@ msgstr "Naviguer dans les cartes"
442
510
  msgid "You are logged in. Continuing..."
443
511
  msgstr "Vous êtes maintenant identifié. Merci de patienter..."
444
512
 
445
- #: templates/umap/map_list.html:11 views.py:438
513
+ #: templates/umap/map_list.html:18 views.py:444
446
514
  msgid "by"
447
515
  msgstr "par"
448
516
 
449
- #: templates/umap/map_list.html:20
517
+ #: templates/umap/map_list.html:22
518
+ msgid "See the map"
519
+ msgstr "Voir la carte"
520
+
521
+ #: templates/umap/map_list.html:28
450
522
  msgid "More"
451
523
  msgstr "Plus"
452
524
 
@@ -606,11 +678,11 @@ msgstr[0] "%(count)s carte trouvée:"
606
678
  msgstr[1] "%(count)s cartes trouvées:"
607
679
  msgstr[2] "%(count)s cartes trouvées :"
608
680
 
609
- #: templates/umap/search.html:28
681
+ #: templates/umap/search.html:30
610
682
  msgid "No map found."
611
683
  msgstr "Aucune carte trouvée."
612
684
 
613
- #: templates/umap/search.html:33
685
+ #: templates/umap/search.html:35
614
686
  msgid "Latest created maps"
615
687
  msgstr "Dernières cartes créées."
616
688
 
@@ -618,7 +690,11 @@ msgstr "Dernières cartes créées."
618
690
  msgid "Search maps"
619
691
  msgstr "Chercher des cartes"
620
692
 
621
- #: templates/umap/search_bar.html:16
693
+ #: templates/umap/search_bar.html:14
694
+ msgid "Any category"
695
+ msgstr "Toutes catégories"
696
+
697
+ #: templates/umap/search_bar.html:19
622
698
  msgid "Search"
623
699
  msgstr "Chercher"
624
700
 
@@ -691,61 +767,61 @@ msgstr "Impossible de supprimer une équipe ayant plus d'un membre"
691
767
  msgid "Team “%(name)s” has been deleted"
692
768
  msgstr "L'équipe «%(name)s» a été supprimée"
693
769
 
694
- #: views.py:443
770
+ #: views.py:449
695
771
  msgid "View the map"
696
772
  msgstr "Voir la carte"
697
773
 
698
- #: views.py:839
774
+ #: views.py:845
699
775
  msgid "See full screen"
700
776
  msgstr "Plein écran"
701
777
 
702
- #: views.py:982
778
+ #: views.py:988
703
779
  msgid "Map editors updated with success!"
704
780
  msgstr "Éditeurs de la carte mis à jour !"
705
781
 
706
- #: views.py:1018
782
+ #: views.py:1024
707
783
  #, python-format
708
784
  msgid "The uMap edit link for your map: %(map_name)s"
709
785
  msgstr "Le lien d'édition uMap pour votre carte : %(map_name)s"
710
786
 
711
- #: views.py:1021
787
+ #: views.py:1027
712
788
  #, python-format
713
789
  msgid "Here is your secret edit link: %(link)s"
714
790
  msgstr "Voici votre lien d'édition secret : %(link)s"
715
791
 
716
- #: views.py:1028
792
+ #: views.py:1034
717
793
  #, python-format
718
794
  msgid "Can't send email to %(email)s"
719
795
  msgstr "Impossible d'envoyer un courriel vers %(email)s"
720
796
 
721
- #: views.py:1031
797
+ #: views.py:1037
722
798
  #, python-format
723
799
  msgid "Email sent to %(email)s"
724
800
  msgstr "Courriel envoyé à %(email)s"
725
801
 
726
- #: views.py:1042
802
+ #: views.py:1048
727
803
  msgid "Only its owner can delete the map."
728
804
  msgstr "Seul le créateur de la carte peut la supprimer."
729
805
 
730
- #: views.py:1045
806
+ #: views.py:1051
731
807
  msgid "Map successfully deleted."
732
808
  msgstr "La carte a bien été supprimée."
733
809
 
734
- #: views.py:1071
810
+ #: views.py:1077
735
811
  #, python-format
736
812
  msgid ""
737
813
  "Your map has been cloned! If you want to edit this map from another "
738
814
  "computer, please use this link: %(anonymous_url)s"
739
815
  msgstr "Votre carte a été dupliquée ! Si vous souhaitez la modifier depuis un autre ordinateur, veuillez utiliser ce lien : %(anonymous_url)s"
740
816
 
741
- #: views.py:1076
817
+ #: views.py:1082
742
818
  msgid "Congratulations, your map has been cloned!"
743
819
  msgstr "Votre carte a été dupliquée !"
744
820
 
745
- #: views.py:1330
821
+ #: views.py:1336
746
822
  msgid "Layer successfully deleted."
747
823
  msgstr "Calque supprimé."
748
824
 
749
- #: views.py:1352
825
+ #: views.py:1358
750
826
  msgid "Permissions updated with success!"
751
827
  msgstr "Les permissions ont bien été modifiées !"
Binary file